3
0
Fork 0
forked from mirrors/nixpkgs

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
This commit is contained in:
Peter Simons 2008-08-05 17:31:13 +00:00
parent 0e25bb67cf
commit cea5d01592

View file

@ -14,7 +14,7 @@ assert svnSupport -> (subversion != null && perlLibs != [] && subversion.perlBin
assert svnSupport -> subversion.perlBindings; assert svnSupport -> subversion.perlBindings;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "git-git"; name = "git-git-with-glob-patch";
src = sourceByName "git"; src = sourceByName "git";