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

stdenv.mkDerivation rec {
  pname = "httpunit";
  version = "1.7";

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

  buildCommand = ''
    cp ./* $out
  '';

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