nixpkgs/pkgs/applications/version-management/rcs/default.nix
Eelco Dolstra 4e0ccd63b3 * In NixOS chroot builds, there is no root account. So rcs' configure
should not rely on its existence in deciding whether to use
  getpwuid().  Not using getpwuid() causes rcs to fail with "ci:
  setuid not supported".

svn path=/nixpkgs/trunk/; revision=19957
2010-02-12 14:27:26 +00:00

20 lines
476 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 ];
meta = {
homepage = http://www.cs.purdue.edu/homes/trinkle/RCS/;
description = "Revision Control System, a version management system";
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = [ stdenv.lib.platforms.all ];
};
}