all-packages.nix: added low-priority 'gitSVN' expression, a variant of git with SVN support (but no GUI)

svn path=/nixpkgs/trunk/; revision=26827
This commit is contained in:
Peter Simons 2011-04-13 17:53:26 +00:00
parent ec23e33d0c
commit 60974e9e87
2 changed files with 6 additions and 0 deletions

View File

@ -24,6 +24,11 @@ rec {
];
};
# Git with SVN support, but without GUI.
gitSVN = lowPrio (appendToName "with-svn" (git.override {
svnSupport = true;
}));
# The full-featured Git.
gitFull = appendToName "full" (git.override {
svnSupport = true;

View File

@ -6155,6 +6155,7 @@ let
});
git = gitAndTools.git;
gitFull = gitAndTools.gitFull;
gitSVN = gitAndTools.gitSVN;
giv = callPackage ../applications/graphics/giv {
inherit (gtkLibs) gdk_pixbuf gtk gob2;