summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-07-13 10:46:17 +0000
committerPeter Simons <simons@cryp.to>2011-07-13 10:46:17 +0000
commit4e5cc9b965b33c2724f4fe20126635c37c604539 (patch)
tree6f1d020f5fc1b656dcfd3a5e6ed7881fe4ca1fbe /pkgs/applications/version-management/git-and-tools
parent9edc2574dd66198d9cb66e153cf5d370213ebdf2 (diff)
downloadnixpkgs-4e5cc9b965b33c2724f4fe20126635c37c604539.tar
nixpkgs-4e5cc9b965b33c2724f4fe20126635c37c604539.tar.gz
nixpkgs-4e5cc9b965b33c2724f4fe20126635c37c604539.tar.bz2
nixpkgs-4e5cc9b965b33c2724f4fe20126635c37c604539.tar.lz
nixpkgs-4e5cc9b965b33c2724f4fe20126635c37c604539.tar.xz
nixpkgs-4e5cc9b965b33c2724f4fe20126635c37c604539.tar.zst
nixpkgs-4e5cc9b965b33c2724f4fe20126635c37c604539.zip
git: removed 'lowPri' wrapper around gitFull
Packages that need git as build-time or run-time dependency typically refer to
the attribute 'git', which is the expression with the least possible set of
features.

Users, however, who run "nix-env -i git", don't want that version, because it
lacks support for SVN, for sending e-mail, and it doesn't include the GUI. In
other words, users want gitFull by default, which is what this change
accomplishes.

svn path=/nixpkgs/trunk/; revision=27748
Diffstat (limited to 'pkgs/applications/version-management/git-and-tools')
-rw-r--r--pkgs/applications/version-management/git-and-tools/default.nix4
1 files 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 506076543f0..cc58a6ff6c6 100644
--- a/pkgs/applications/version-management/git-and-tools/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/default.nix
@@ -29,11 +29,11 @@ rec {
   }));
 
   # The full-featured Git.
-  gitFull = lowPrio (appendToName "full" (git.override {
+  gitFull = 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