Merge pull request #209362 from amesgen/nvfetcher-docker
nvfetcher: add nix-prefetch-docker to PATH
This commit is contained in:
commit
33be6f87f2
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 ];
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue