summary refs log tree commit diff
path: root/pkgs/development/libraries/java/javasvn/default.nix
blob: 2c43ba7043b17ab4ca714b87e738b2631c9d08fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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;
}