nvfetcher: add nix-prefetch-docker to PATH
This commit is contained in:
parent
6d7cf37d78
commit
ca966310f5
1 changed files with 5 additions and 1 deletions
|
@ -840,7 +840,11 @@ self: super: builtins.intersectAttrs super {
|
||||||
buildTools = drv.buildTools or [ ] ++ [ pkgs.buildPackages.makeWrapper ];
|
buildTools = drv.buildTools or [ ] ++ [ pkgs.buildPackages.makeWrapper ];
|
||||||
postInstall = drv.postInstall or "" + ''
|
postInstall = drv.postInstall or "" + ''
|
||||||
wrapProgram "$out/bin/nvfetcher" --prefix 'PATH' ':' "${
|
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);
|
}) super.nvfetcher);
|
||||||
|
|
Loading…
Reference in a new issue