linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / java / junit / default.nix
blob5a10798517729803c638fe8198929b5e56113c1c
1 { lib, antBuild, fetchgit, perl }:
3 let
4   version = "4.11";
5 in antBuild {
6   name = "junit-${version}";
8   # I think this is only used to generate the docs, and will likely disappear
9   # with the next release of junit since its build system completely changes.
10   buildInputs = [perl];
12   src = fetchgit {
13     url = "https://github.com/junit-team/junit.git";
14     sha256 = "1cn5dhs6vpbfbcmnm2vb1212n0kblv8cxrvnwmksjxd6bzlkac1k";
15     rev = "c2e4d911fadfbd64444fb285342a8f1b72336169";
16   };
18   antProperties = [
19     { name = "version"; value = version; }
20   ];
22   meta = {
23     homepage = "http://www.junit.org/";
24     description = "A framework for repeatable tests in Java";
25     license = lib.licenses.epl10;
26     broken = true;
27   };