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

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

  src = fetchgit {
    url = https://github.com/junit-team/junit.git;
    rev = "refs/tags/r4.8.2";
    sha256 = "1w73l3x97kg8zmrp44xgvp3gr6sih0crm0dhhky6jiq915ba1dlh";
  };

  inherit unzip;

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