1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 22:50:49 +00:00

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
This commit is contained in:
Ludovic Courtès 2008-03-13 10:01:21 +00:00
parent 68e08a006a
commit ee5789b266
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -4765,7 +4765,7 @@ rec {
}; };
cvs = import ../applications/version-management/cvs { cvs = import ../applications/version-management/cvs {
inherit fetchurl stdenv vim; inherit fetchurl stdenv nano;
}; };
cvs2svn = import ../applications/version-management/cvs2svn { cvs2svn = import ../applications/version-management/cvs2svn {