nix-prefetch-docker: Add jq
into path
Otheriwse running the tool fails with line 41: jq: command not found
This commit is contained in:
parent
a7ca287ecb
commit
dde3e8edf4
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, makeWrapper, nix, skopeo }:
|
{ stdenv, makeWrapper, nix, skopeo, jq }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -vD ${./nix-prefetch-docker} $out/bin/$name;
|
install -vD ${./nix-prefetch-docker} $out/bin/$name;
|
||||||
wrapProgram $out/bin/$name \
|
wrapProgram $out/bin/$name \
|
||||||
--prefix PATH : ${makeBinPath [ nix skopeo ]} \
|
--prefix PATH : ${makeBinPath [ nix skopeo jq ]} \
|
||||||
--set HOME /homeless-shelter
|
--set HOME /homeless-shelter
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user