nixpkgs/pkgs/applications/version-management/rcs/default.nix
Peter Simons 47e93cd27e rcs: update to version 5.8.2
It's profoundly satisfying to know that we have the very latest version of RCS.
RCS users, you see, live on the bleeding edge.
2013-04-05 08:56:40 +02:00

29 lines
867 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "rcs-5.8.2";
src = fetchurl {
url = "mirror://gnu/rcs/${name}.tar.gz";
sha256 = "1p4kqqrvc7plc3n6ls4xwp6d3mw1jcx9p36pilwd65q31mgbs07a";
};
doCheck = true;
meta = {
homepage = http://www.gnu.org/software/rcs/;
description = "GNU RCS, a 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 = "GPLv3+";
maintainers = with stdenv.lib.maintainers; [ eelco simons ludo ];
platforms = stdenv.lib.platforms.all;
};
}