nixpkgs/pkgs/applications/version-management/cvs/default.nix
Ludovic Courtès ee5789b266 CVS: Depend on GNU Nano rather than Vim.
The former is a more reasonable dependency, and a standard one.

svn path=/nixpkgs/trunk/; revision=11093
2008-03-13 10:01:21 +00:00

12 lines
255 B
Nix

{stdenv, fetchurl, nano}:
stdenv.mkDerivation {
name = "cvs-1.12.13";
src = fetchurl {
url = http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13/cvs-1.12.13.tar.bz2;
md5 = "956ab476ce276c2d19d583e227dbdbea";
};
buildInputs = [nano];
}