Merge branch 'gitMinimal' of github.com:proger/nixpkgs
since git is used to bootstrap a lot, this can save lots of waiting time.
This commit is contained in:
commit
a75e6c8b45
|
@ -309,7 +309,8 @@ let
|
|||
};
|
||||
|
||||
fetchgit = import ../build-support/fetchgit {
|
||||
inherit stdenv git cacert;
|
||||
inherit stdenv cacert;
|
||||
git = gitMinimal;
|
||||
};
|
||||
|
||||
fetchgitPrivate = import ../build-support/fetchgit/private.nix {
|
||||
|
@ -3983,10 +3984,7 @@ let
|
|||
|
||||
nix-exec = callPackage ../development/interpreters/nix-exec {
|
||||
nix = nixUnstable;
|
||||
git = git.override {
|
||||
withManual = false;
|
||||
pythonSupport = false;
|
||||
};
|
||||
git = gitMinimal;
|
||||
};
|
||||
|
||||
octave = callPackage ../development/interpreters/octave {
|
||||
|
@ -9653,6 +9651,10 @@ let
|
|||
});
|
||||
git = gitAndTools.git;
|
||||
gitFull = gitAndTools.gitFull;
|
||||
gitMinimal = git.override {
|
||||
withManual = false;
|
||||
pythonSupport = false;
|
||||
};
|
||||
gitSVN = gitAndTools.gitSVN;
|
||||
|
||||
gitRepo = callPackage ../applications/version-management/git-repo {
|
||||
|
|
Loading…
Reference in New Issue