about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/java/httpunit/default.nix
blob: 34af97605d2a89e85d15bcfff902221fee46e3b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, unzip} :

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

  src = fetchurl {
    url = "mirror://sourceforge/httpunit/httpunit-1.7.zip";
    sha256 = "09gnayqgizd8cjqayvdpkxrc69ipyxawc96aznfrgdhdiwv8l5zf";
  };

  inherit unzip;

  meta = with stdenv.lib; {
    homepage = "http://httpunit.sourceforge.net";
    platforms = platforms.unix;
    license = licenses.mit;
  };
}