1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/development/libraries/java/junit/default.nix

18 lines
342 B
Nix
Raw Normal View History

2013-07-22 20:28:46 +01:00
{stdenv, fetchurl, unzip} :
stdenv.mkDerivation {
name = "junit-4.8.2";
builder = ./builder.sh;
2013-07-22 20:28:46 +01:00
src = fetchurl {
url = https://github.com/downloads/junit-team/junit/junit4.8.2.zip;
sha256 = "01simvc3pmgp27p7vzavmsx5rphm6hqzwrqfkwllhf3812dcqxy6";
};
inherit unzip;
meta = {
homepage = http://www.junit.org/;
};
}