5557ff764c
GitOrigin-RevId: 988cc958c57ce4350ec248d2d53087777f9e1949
21 lines
439 B
Nix
21 lines
439 B
Nix
{ 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 = "https://httpunit.sourceforge.net";
|
|
platforms = platforms.unix;
|
|
license = licenses.mit;
|
|
};
|
|
}
|