summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorSimonas Kazlauskas <git@kazlauskas.me>2020-04-27 22:18:10 +0300
committerSimonas Kazlauskas <git@kazlauskas.me>2020-04-27 22:21:55 +0300
commitdde3e8edf49d46380903773c4826509a2de7a399 (patch)
tree49335b67ff91d34fb1b526a786d519ad78a8577d /pkgs
parenta7ca287ecb3bd5589d2f815a27f1152071d92b57 (diff)
nix-prefetch-docker: Add `jq` into path
Otheriwse running the tool fails with line 41: jq: command not found
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/build-support/docker/nix-prefetch-docker.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/build-support/docker/nix-prefetch-docker.nix b/pkgs/build-support/docker/nix-prefetch-docker.nix
index c1d86adc6d81..6341eb0154b0 100644
--- a/pkgs/build-support/docker/nix-prefetch-docker.nix
+++ b/pkgs/build-support/docker/nix-prefetch-docker.nix
@@ -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
'';