nixpkgs/pkgs/development/libraries/java/javasvn/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

14 lines
280 B
Nix

{stdenv, fetchurl, unzip} :
stdenv.mkDerivation {
name = "javasvn-1.0.6";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/org.tmatesoft.svn_1.0.6.standalone.zip;
md5 = "459cae849eceef04cd65fd6fb54affcc";
};
inherit unzip;
}