summary refs log tree commit diff
path: root/pkgs/development/libraries/java/junit/default.nix
blob: 7a6db1ad4b30aca49cb07c168b4063fc0aaadbce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl, unzip} :

stdenv.mkDerivation {
  name = "junit-4.8.2";
  builder = ./builder.sh;

  src = fetchurl {
    url = https://github.com/downloads/junit-team/junit/junit4.8.2.zip;
    sha256 = "01simvc3pmgp27p7vzavmsx5rphm6hqzwrqfkwllhf3812dcqxy6";
  };

  inherit unzip;

  meta = {
    homepage = http://www.junit.org/;
  };
}