7c07c5aae2
svn path=/nixpkgs/trunk/; revision=24607
24 lines
598 B
Nix
24 lines
598 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "rcs-5.7";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.cs.purdue.edu/pub/RCS/rcs-5.7.tar;
|
|
md5 = "f7b3f106bf87ff6344df38490f6a02c5";
|
|
};
|
|
|
|
patches = [ ./no-root.patch ];
|
|
|
|
preConfigure = ''
|
|
configureFlags="--infodir=$out/share/info --mandir=$out/share/man"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.cs.purdue.edu/homes/trinkle/RCS/;
|
|
description = "Revision Control System, a version management system";
|
|
maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.simons ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|