2008-03-13 11:02:57 +01:00
|
|
|
{ fetchurl, stdenv, cvs, zlib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cvsps-2.1";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.cobite.com/cvsps/${name}.tar.gz";
|
|
|
|
sha256 = "0nh7q7zcmagx0i63h6fqqkkq9i55k77myvb8h6jn2f266f5iklwi";
|
|
|
|
};
|
|
|
|
|
2008-04-06 22:04:40 +02:00
|
|
|
# Patches from Debian's `cvsps-2.1-4'.
|
|
|
|
patches = [ ./01_ignoretrunk.dpatch
|
|
|
|
./02_dynamicbufferalloc.dpatch
|
|
|
|
./03_diffoptstypo.dpatch ];
|
|
|
|
|
2008-03-13 11:02:57 +01:00
|
|
|
buildInputs = [ cvs zlib ];
|
|
|
|
|
|
|
|
installPhase = "make install prefix=$out";
|
|
|
|
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
longDescription = ''
|
|
|
|
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).
|
|
|
|
'';
|
2008-03-13 11:02:57 +01:00
|
|
|
homepage = http://www.cobite.com/cvsps/;
|
|
|
|
license = "GPLv2";
|
|
|
|
};
|
|
|
|
}
|