1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/development/libraries/java/httpunit/default.nix

18 lines
334 B
Nix
Raw Normal View History

{stdenv, fetchurl, unzip} :
stdenv.mkDerivation {
2013-12-15 22:49:32 +00:00
name = "httpunit-1.7";
builder = ./builder.sh;
src = fetchurl {
2013-12-15 22:49:32 +00:00
url = mirror://sourceforge/httpunit/httpunit-1.7.zip;
sha256 = "09gnayqgizd8cjqayvdpkxrc69ipyxawc96aznfrgdhdiwv8l5zf";
};
inherit unzip;
meta = {
platforms = stdenv.lib.platforms.unix;
};
}