2014-01-27 14:48:30 +00:00
|
|
|
{ stdenv, fetchurl, ed }:
|
2004-11-28 17:28:55 +00:00
|
|
|
|
2011-10-12 20:43:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-07 20:40:06 +00:00
|
|
|
name = "rcs-5.9.3";
|
2010-02-16 14:19:07 +00:00
|
|
|
|
2004-11-28 17:28:55 +00:00
|
|
|
src = fetchurl {
|
2014-01-27 14:48:30 +00:00
|
|
|
url = "mirror://gnu/rcs/${name}.tar.xz";
|
2014-10-07 20:40:06 +00:00
|
|
|
sha256 = "0isvzwfvqkg7zcsznra6wqh650z49ib113n7gp6ncxv5p30x3c38";
|
2004-11-28 17:28:55 +00:00
|
|
|
};
|
2010-02-12 14:27:26 +00:00
|
|
|
|
2014-01-27 14:48:30 +00:00
|
|
|
buildInputs = [ ed ];
|
|
|
|
|
2011-10-12 20:43:44 +00:00
|
|
|
doCheck = true;
|
2010-11-05 14:46:13 +00:00
|
|
|
|
2010-02-12 14:27:26 +00:00
|
|
|
meta = {
|
2011-10-12 20:43:44 +00:00
|
|
|
homepage = http://www.gnu.org/software/rcs/;
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Revision control system";
|
2011-10-12 20:43:44 +00:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2013-08-16 21:44:33 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ eelco simons ];
|
2010-02-16 14:19:07 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2010-02-12 14:27:26 +00:00
|
|
|
};
|
2004-11-28 17:28:55 +00:00
|
|
|
}
|