about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authoramesgen <amesgen@amesgen.de>2023-01-06 20:37:02 +0100
committeramesgen <amesgen@amesgen.de>2023-01-06 20:37:02 +0100
commitca966310f558dc91d2144265bf167b0f2864e686 (patch)
tree9ade364e3d0f23f0b244ac87a5936f7549ab8e20 /pkgs/development/haskell-modules
parent6d7cf37d78e89d73556e59757d2fea185d4c4c25 (diff)
downloadnixlib-ca966310f558dc91d2144265bf167b0f2864e686.tar
nixlib-ca966310f558dc91d2144265bf167b0f2864e686.tar.gz
nixlib-ca966310f558dc91d2144265bf167b0f2864e686.tar.bz2
nixlib-ca966310f558dc91d2144265bf167b0f2864e686.tar.lz
nixlib-ca966310f558dc91d2144265bf167b0f2864e686.tar.xz
nixlib-ca966310f558dc91d2144265bf167b0f2864e686.tar.zst
nixlib-ca966310f558dc91d2144265bf167b0f2864e686.zip
nvfetcher: add nix-prefetch-docker to PATH
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 75725a2bf359..55e28fb3053c 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -840,7 +840,11 @@ self: super: builtins.intersectAttrs super {
       buildTools = drv.buildTools or [ ] ++ [ pkgs.buildPackages.makeWrapper ];
       postInstall = drv.postInstall or "" + ''
         wrapProgram "$out/bin/nvfetcher" --prefix 'PATH' ':' "${
-          pkgs.lib.makeBinPath [ pkgs.nvchecker pkgs.nix-prefetch ]
+          pkgs.lib.makeBinPath [
+            pkgs.nvchecker
+            pkgs.nix-prefetch
+            pkgs.nix-prefetch-docker
+          ]
         }"
       '';
     }) super.nvfetcher);