summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-03-13 10:02:57 +0000
committerLudovic Courtès <ludo@gnu.org>2008-03-13 10:02:57 +0000
commitfdf6a69b3aac2bea921a484889e297c13a57680e (patch)
tree1136c45ee402fb098a65759762a9dff61e8725cc
parentee5789b2669c741d0bd636d8e72a05f7a265b1b5 (diff)
downloadnixpkgs-fdf6a69b3aac2bea921a484889e297c13a57680e.tar
nixpkgs-fdf6a69b3aac2bea921a484889e297c13a57680e.tar.gz
nixpkgs-fdf6a69b3aac2bea921a484889e297c13a57680e.tar.bz2
nixpkgs-fdf6a69b3aac2bea921a484889e297c13a57680e.tar.lz
nixpkgs-fdf6a69b3aac2bea921a484889e297c13a57680e.tar.xz
nixpkgs-fdf6a69b3aac2bea921a484889e297c13a57680e.tar.zst
nixpkgs-fdf6a69b3aac2bea921a484889e297c13a57680e.zip
Add CVSps, needed for instance by `git-cvsimport'.
svn path=/nixpkgs/trunk/; revision=11094
-rw-r--r--pkgs/applications/version-management/cvsps/default.nix23
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/cvsps/default.nix b/pkgs/applications/version-management/cvsps/default.nix
new file mode 100644
index 00000000000..52ea9e9feea
--- /dev/null
+++ b/pkgs/applications/version-management/cvsps/default.nix
@@ -0,0 +1,23 @@
+{ fetchurl, stdenv, cvs, zlib }:
+
+stdenv.mkDerivation rec {
+  name = "cvsps-2.1";
+  src = fetchurl {
+    url = "http://www.cobite.com/cvsps/${name}.tar.gz";
+    sha256 = "0nh7q7zcmagx0i63h6fqqkkq9i55k77myvb8h6jn2f266f5iklwi";
+  };
+
+  buildInputs = [ cvs zlib ];
+
+  installPhase = "make install prefix=$out";
+
+  meta = {
+    description = ''CVSps is a program for generating `patchset' information
+                    from a CVS repository.  A patchset in this case is
+		    defined as a set of changes made to a collection of
+		    files, and all committed at the same time (using a single
+		    "cvs commit" command).'';
+    homepage = http://www.cobite.com/cvsps/;
+    license = "GPLv2";
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index d0f4ab5c5ed..a455daba25c 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4768,6 +4768,10 @@ rec {
     inherit fetchurl stdenv nano;
   };
 
+  cvsps = import ../applications/version-management/cvsps {
+    inherit fetchurl stdenv cvs zlib;
+  };
+
   cvs2svn = import ../applications/version-management/cvs2svn {
     inherit fetchurl stdenv python makeWrapper;
   };