2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
17 lines
327 B
Nix
17 lines
327 B
Nix
{stdenv, fetchurl, unzip} :
|
|
|
|
stdenv.mkDerivation {
|
|
name = "javasvn-1.0.6";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://tmate.org/svn/org.tmatesoft.svn_1.0.6.standalone.zip;
|
|
md5 = "459cae849eceef04cd65fd6fb54affcc";
|
|
};
|
|
|
|
inherit unzip;
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|