summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-04-13 17:53:26 +0000
committerPeter Simons <simons@cryp.to>2011-04-13 17:53:26 +0000
commit60974e9e8724bc8fb0d7f6aee90f2f5351e709fd (patch)
tree430bbd40edd6ec8f27d8110b93fb312e02145e62 /pkgs/applications/version-management
parentec23e33d0cfb709d41ac3239eb7631ca8dbfaa8d (diff)
downloadnixlib-60974e9e8724bc8fb0d7f6aee90f2f5351e709fd.tar
nixlib-60974e9e8724bc8fb0d7f6aee90f2f5351e709fd.tar.gz
nixlib-60974e9e8724bc8fb0d7f6aee90f2f5351e709fd.tar.bz2
nixlib-60974e9e8724bc8fb0d7f6aee90f2f5351e709fd.tar.lz
nixlib-60974e9e8724bc8fb0d7f6aee90f2f5351e709fd.tar.xz
nixlib-60974e9e8724bc8fb0d7f6aee90f2f5351e709fd.tar.zst
nixlib-60974e9e8724bc8fb0d7f6aee90f2f5351e709fd.zip
all-packages.nix: added low-priority 'gitSVN' expression, a variant of git with SVN support (but no GUI)
svn path=/nixpkgs/trunk/; revision=26827
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/git-and-tools/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix
index 587fc57c8743..bb102771529a 100644
--- a/pkgs/applications/version-management/git-and-tools/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/default.nix
@@ -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;