33 lines
972 B
Nix
33 lines
972 B
Nix
{ stdenv, fetchurl, ed }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "rcs-5.9.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/rcs/${name}.tar.xz";
|
|
sha256 = "1zsx7bb0rgvvvisiy4zlixf56ay8wbd9qqqcp1a1g0m1gl6mlg86";
|
|
};
|
|
|
|
buildInputs = [ ed ];
|
|
|
|
doCheck = true;
|
|
|
|
NIX_CFLAGS_COMPILE = if stdenv.isDarwin then "-std=gnu99" else null;
|
|
|
|
meta = {
|
|
homepage = http://www.gnu.org/software/rcs/;
|
|
description = "Revision control system";
|
|
longDescription =
|
|
'' The GNU Revision Control System (RCS) manages multiple revisions of
|
|
files. RCS automates the storing, retrieval, logging,
|
|
identification, and merging of revisions. RCS is useful for text
|
|
that is revised frequently, including source code, programs,
|
|
documentation, graphics, papers, and form letters.
|
|
'';
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
maintainers = with stdenv.lib.maintainers; [ eelco simons ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|