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:
Peter Simons 2011-04-13 17:53:33 +00:00
parent 60974e9e87
commit 864a75d725

View File

@ -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