mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +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:
parent
68e08a006a
commit
ee5789b266
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, vim}:
|
||||
{stdenv, fetchurl, nano}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
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;
|
||||
md5 = "956ab476ce276c2d19d583e227dbdbea";
|
||||
};
|
||||
buildInputs = [vim];
|
||||
buildInputs = [nano];
|
||||
}
|
||||
|
|
|
@ -4765,7 +4765,7 @@ rec {
|
|||
};
|
||||
|
||||
cvs = import ../applications/version-management/cvs {
|
||||
inherit fetchurl stdenv vim;
|
||||
inherit fetchurl stdenv nano;
|
||||
};
|
||||
|
||||
cvs2svn = import ../applications/version-management/cvs2svn {
|
||||
|
|
Loading…
Reference in a new issue