From 864a75d7253f6dc4a736345e44af3b953ef8aa3d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 13 Apr 2011 17:53:33 +0000 Subject: [PATCH] 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 --- .../applications/version-management/git-and-tools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index bb102771529a..081ee7d2d69a 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -30,11 +30,11 @@ rec { })); # The full-featured Git. - gitFull = appendToName "full" (git.override { + gitFull = lowPrio (appendToName "full" (git.override { svnSupport = true; guiSupport = true; sendEmailSupport = stdenv.isDarwin == false; - }); + })); gitGit = import ./git/git-git.nix { inherit fetchurl sourceFromHead stdenv curl openssl zlib expat perl gettext