release.nix use makeBinPath to construct PATH
makeBinPath takes care to use the correct output. nix-repl> lib.makeSearchPath "bin" [pkgs.nix] "/nix/store/zpp83pr21ihxwsr15l6mkzwkr49zj71d-nix-1.11.2-dev/bin" nix-repl> lib.makeBinPath [pkgs.nix] "/nix/store/9n8c3g541qn43yjjs94f1a0m69wp8scg-nix-1.11.2/bin"
This commit is contained in:
parent
b829be29b6
commit
3f5ccfc7f3
|
@ -133,7 +133,7 @@ rec {
|
||||||
}))
|
}))
|
||||||
];
|
];
|
||||||
|
|
||||||
hydraPath = lib.makeSearchPath "bin" (
|
hydraPath = lib.makeBinPath (
|
||||||
[ libxslt sqlite subversion openssh nix coreutils findutils
|
[ libxslt sqlite subversion openssh nix coreutils findutils
|
||||||
gzip bzip2 lzma gnutar unzip git gitAndTools.topGit mercurial darcs gnused bazaar
|
gzip bzip2 lzma gnutar unzip git gitAndTools.topGit mercurial darcs gnused bazaar
|
||||||
] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] );
|
] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] );
|
||||||
|
|
Loading…
Reference in a new issue