-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Claudio/pocketic based drun #4557
base: mraszyk/pocketic-based-drun
Are you sure you want to change the base?
Conversation
let drun = | ||
nixpkgs.runCommandNoCC "drun" {} '' | ||
mkdir -p $out/bin | ||
cp -f ${POCKET_IC} $out/bin/pocket-ic.gz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ln -sf
could also work
chmod u+x $out/bin/drun | ||
''; in | ||
/* | ||
let drun = stdenv.mkDerivation { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
right, most common jobs have dedicated wrappers
@@ -565,7 +597,7 @@ rec { | |||
recurseForDerivations = true; | |||
}; | |||
|
|||
inherit (nixpkgs) drun wabt wasmtime wasm nix-update; | |||
inherit (nixpkgs) /* drun */ wabt wasmtime wasm nix-update; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
inherit (nixpkgs) /* drun */ wabt wasmtime wasm nix-update; | |
inherit (nixpkgs) wabt wasmtime wasm nix-update; |
Yeah, drun
is already in scope.
No description provided.