nixpkgs/pkgs/development/libraries/java/httpunit/default.nix
Tuomas Tynkkynen 2258b21e4b treewide: Add lots of platforms to packages with no meta
Build-tested on x86_64 Linux and on Darwin.
2016-08-02 21:17:44 +03:00

18 lines
334 B
Nix

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