From cea5d015927f91234267f6306f21ece01dde3a89 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 5 Aug 2008 17:31:13 +0000 Subject: [PATCH] git-git: change ${name} to reflect that this is not a pristine version The git-git expression promises to build the current git HEAD, but in fact it builds git HEAD plus a fairly extensive, undocumented, untested patch that is apparently not part of the repository. By changing the name of the installed package to 'git-git-with-glob-patch', we ensure that users aren't mislead about what exactly they'll get when installing this package. Technically, GIT-VERSION-FILE should be patched so that the installed git binaries reflect this change too when called with '--version', but the current solution is probably good enough. svn path=/nixpkgs/trunk/; revision=12506 --- pkgs/applications/version-management/git/git-git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/git/git-git.nix b/pkgs/applications/version-management/git/git-git.nix index dffe9da7904c..a6481a2031f2 100644 --- a/pkgs/applications/version-management/git/git-git.nix +++ b/pkgs/applications/version-management/git/git-git.nix @@ -14,7 +14,7 @@ assert svnSupport -> (subversion != null && perlLibs != [] && subversion.perlBin assert svnSupport -> subversion.perlBindings; stdenv.mkDerivation rec { - name = "git-git"; + name = "git-git-with-glob-patch"; src = sourceByName "git";