add buildInputs option to mkExecutable
This commit is contained in:
parent
15b4c19f42
commit
0b54d6ce44
|
@ -9,6 +9,7 @@
|
|||
version,
|
||||
src,
|
||||
bin ? pname,
|
||||
buildInputs ? [],
|
||||
entrypoint,
|
||||
lockfile,
|
||||
config,
|
||||
|
@ -58,7 +59,7 @@ in
|
|||
inherit pname version src;
|
||||
dontFixup = true;
|
||||
|
||||
buildInputs = with pkgs; [deno jq];
|
||||
buildInputs = with pkgs; [deno jq] ++ buildInputs;
|
||||
buildPhase = ''
|
||||
export DENO_DIR="/tmp/deno2nix"
|
||||
mkdir -p $DENO_DIR
|
||||
|
|
Loading…
Reference in a new issue