Author: simons
Date: Wed Apr 13 17:53:26 2011
New Revision: 26827
URL: https://svn.nixos.org/websvn/nix/?rev=26827&sc=1

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

Modified:
   nixpkgs/trunk/pkgs/applications/version-management/git-and-tools/default.nix
   nixpkgs/trunk/pkgs/top-level/all-packages.nix

Modified: 
nixpkgs/trunk/pkgs/applications/version-management/git-and-tools/default.nix
==============================================================================
--- 
nixpkgs/trunk/pkgs/applications/version-management/git-and-tools/default.nix    
    Wed Apr 13 17:53:20 2011        (r26826)
+++ 
nixpkgs/trunk/pkgs/applications/version-management/git-and-tools/default.nix    
    Wed Apr 13 17:53:26 2011        (r26827)
@@ -24,6 +24,11 @@
     ];
   };
 
+  # 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;

Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix       Wed Apr 13 17:53:20 
2011        (r26826)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix       Wed Apr 13 17:53:26 
2011        (r26827)
@@ -6155,6 +6155,7 @@
   });
   git = gitAndTools.git;
   gitFull = gitAndTools.gitFull;
+  gitSVN = gitAndTools.gitSVN;
 
   giv = callPackage ../applications/graphics/giv {
     inherit (gtkLibs) gdk_pixbuf gtk gob2;
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to