mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
Merge pull request #86143 from nagisa/nix-prefetch-docker-jq-fix
Add `jq` into path for `nix-prefetch-docker`
This commit is contained in:
commit
87e090cd8a
@ -1,4 +1,4 @@
|
||||
{ stdenv, makeWrapper, nix, skopeo }:
|
||||
{ stdenv, makeWrapper, nix, skopeo, jq }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
||||
installPhase = ''
|
||||
install -vD ${./nix-prefetch-docker} $out/bin/$name;
|
||||
wrapProgram $out/bin/$name \
|
||||
--prefix PATH : ${makeBinPath [ nix skopeo ]} \
|
||||
--prefix PATH : ${makeBinPath [ nix skopeo jq ]} \
|
||||
--set HOME /homeless-shelter
|
||||
'';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user