mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
buildbox: Simplify wrapper for buildbox-run
It seems that upstream Buildbox already symlinks `$out/bin/buildbox-run-bubblewrap` -> `$out/bin/buildbox-run`. This commits removes the wrapper saved to `$out/bin/buildbox-run` from `$out/bin/buildbox-run-bubblewrap`, and simply wraps the former with `bubblewrap` in its `$PATH`.
This commit is contained in:
parent
7e1fb0f873
commit
4306e838f8
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
];
|
||||
|
||||
postFixup = ''
|
||||
makeWrapper $out/bin/buildbox-run-bubblewrap $out/bin/buildbox-run --prefix PATH : ${lib.makeBinPath [ bubblewrap ]}
|
||||
wrapProgram $out/bin/buildbox-run --prefix PATH : ${lib.makeBinPath [ bubblewrap ]}
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue