mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
gitFull: modify the name of the expression to make it distinct
This also means adding a lowPrio wrapper, because without it nix-env would prefer the "-full" expression over the normal one. Maybe that's desirable, even? svn path=/nixpkgs/trunk/; revision=26828
This commit is contained in:
parent
60974e9e87
commit
864a75d725
@ -30,11 +30,11 @@ rec {
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
# The full-featured Git.
|
# The full-featured Git.
|
||||||
gitFull = appendToName "full" (git.override {
|
gitFull = lowPrio (appendToName "full" (git.override {
|
||||||
svnSupport = true;
|
svnSupport = true;
|
||||||
guiSupport = true;
|
guiSupport = true;
|
||||||
sendEmailSupport = stdenv.isDarwin == false;
|
sendEmailSupport = stdenv.isDarwin == false;
|
||||||
});
|
}));
|
||||||
|
|
||||||
gitGit = import ./git/git-git.nix {
|
gitGit = import ./git/git-git.nix {
|
||||||
inherit fetchurl sourceFromHead stdenv curl openssl zlib expat perl gettext
|
inherit fetchurl sourceFromHead stdenv curl openssl zlib expat perl gettext
|
||||||
|
Loading…
Reference in New Issue
Block a user