summary refs log tree commit diff
path: root/pkgs/development/libraries/java/httpunit/default.nix
blob: 55f0483720ab5d27cdb9ad76d188881b11f3b6f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, unzip} :

stdenv.mkDerivation {
  name = "httpunit-1.6";
  builder = ./builder.sh;

  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/httpunit-1.6.zip;
    md5 = "e94b53b9f4d7bdb706e4baac95b6e424";
  };

  inherit unzip;
}