mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 19:23:50 +00:00
22 lines
438 B
Nix
22 lines
438 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 = "http://httpunit.sourceforge.net";
|
|
platforms = platforms.unix;
|
|
license = licenses.mit;
|
|
};
|
|
}
|