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:
parent
ec23e33d0c
commit
60974e9e87
@ -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.
|
# The full-featured Git.
|
||||||
gitFull = appendToName "full" (git.override {
|
gitFull = appendToName "full" (git.override {
|
||||||
svnSupport = true;
|
svnSupport = true;
|
||||||
|
@ -6155,6 +6155,7 @@ let
|
|||||||
});
|
});
|
||||||
git = gitAndTools.git;
|
git = gitAndTools.git;
|
||||||
gitFull = gitAndTools.gitFull;
|
gitFull = gitAndTools.gitFull;
|
||||||
|
gitSVN = gitAndTools.gitSVN;
|
||||||
|
|
||||||
giv = callPackage ../applications/graphics/giv {
|
giv = callPackage ../applications/graphics/giv {
|
||||||
inherit (gtkLibs) gdk_pixbuf gtk gob2;
|
inherit (gtkLibs) gdk_pixbuf gtk gob2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user