mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
26 lines
465 B
Nix
26 lines
465 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "httpunit";
|
|
version = "1.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/httpunit/httpunit-${finalAttrs.version}.zip";
|
|
sha256 = "09gnayqgizd8cjqayvdpkxrc69ipyxawc96aznfrgdhdiwv8l5zf";
|
|
};
|
|
|
|
buildCommand = ''
|
|
cp ./* $out
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://httpunit.sourceforge.net";
|
|
platforms = lib.platforms.unix;
|
|
license = lib.licenses.mit;
|
|
};
|
|
})
|