Add CVSps, needed for instance by `git-cvsimport'.

svn path=/nixpkgs/trunk/; revision=11094
This commit is contained in:
Ludovic Courtès 2008-03-13 10:02:57 +00:00
parent ee5789b266
commit fdf6a69b3a
2 changed files with 27 additions and 0 deletions

View File

@ -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";
};
}

View File

@ -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;
};