forked from lix-project/hydra
hydra: add bazaar to path
This commit is contained in:
parent
e7c203a3b4
commit
d7c3d06d59
|
@ -25,6 +25,7 @@ rec {
|
||||||
cp ${"${nixpkgs}/pkgs/build-support/fetchsvn/nix-prefetch-svn"} src/script
|
cp ${"${nixpkgs}/pkgs/build-support/fetchsvn/nix-prefetch-svn"} src/script
|
||||||
cp ${"${nixpkgs}/pkgs/build-support/fetchgit/nix-prefetch-git"} src/script
|
cp ${"${nixpkgs}/pkgs/build-support/fetchgit/nix-prefetch-git"} src/script
|
||||||
cp ${"${nixpkgs}/pkgs/build-support/fetchhg/nix-prefetch-hg"} src/script
|
cp ${"${nixpkgs}/pkgs/build-support/fetchhg/nix-prefetch-hg"} src/script
|
||||||
|
cp ${"${nixpkgs}/pkgs/build-support/fetchbzr/nix-prefetch-bzr"} src/script
|
||||||
'';
|
'';
|
||||||
|
|
||||||
configureFlags = "--with-nix=${nix}";
|
configureFlags = "--with-nix=${nix}";
|
||||||
|
@ -56,7 +57,7 @@ rec {
|
||||||
|
|
||||||
hydraPath = stdenv.lib.concatStringsSep ":" (map (p: "${p}/bin") ( [
|
hydraPath = stdenv.lib.concatStringsSep ":" (map (p: "${p}/bin") ( [
|
||||||
libxslt sqlite subversion openssh nix coreutils findutils
|
libxslt sqlite subversion openssh nix coreutils findutils
|
||||||
gzip bzip2 lzma gnutar unzip git mercurial gnused graphviz
|
gzip bzip2 lzma gnutar unzip git mercurial gnused graphviz bazaar
|
||||||
] ++ ( if stdenv.isLinux then [rpm dpkg cdrkit] else [] )));
|
] ++ ( if stdenv.isLinux then [rpm dpkg cdrkit] else [] )));
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
Loading…
Reference in a new issue