1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
svn path=/nixpkgs/trunk/; revision=4084
This commit is contained in:
Armijn Hemel 2005-10-13 12:32:16 +00:00
parent 6795369618
commit e26fb06cdd
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl, vim}:
stdenv.mkDerivation {
name = "cvs-1.12.13";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/non-gnu/cvs/cvs-1.12.13.tar.bz2;
md5 = "956ab476ce276c2d19d583e227dbdbea";
};
buildInputs = [vim];
}

View file

@ -1361,6 +1361,10 @@ rec {
### APPLICATIONS
cvs = (import ../applications/version-management/cvs) {
inherit fetchurl stdenv vim;
};
subversion11x = (import ../applications/version-management/subversion-1.1.x) {
inherit fetchurl stdenv openssl db4 expat swig zlib;
localServer = true;