3
0
Fork 0
forked from mirrors/nixpkgs

* Added Emma, a Java code coverage tool.

svn path=/nixpkgs/trunk/; revision=10865
This commit is contained in:
Eelco Dolstra 2008-02-26 15:48:14 +00:00
parent 72e947949d
commit d1b9dcd68f
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "emma-2.0.5312";
src = fetchurl {
url = mirror://sourceforge/emma/emma-2.0.5312.zip;
sha256 = "0xxy39s2lvgs56vicjzpcz936l1vjaplliwa0dm7v3iyvw6jn7vj";
};
buildInputs = [unzip];
installPhase = ''
ensureDir $out/lib/jars
cp lib/*.jar $out/lib/jars/
'';
meta = {
homepage = http://emma.sourceforge.net/;
description = "A code coverage tool for Java";
};
}

View file

@ -1832,6 +1832,10 @@ rec {
inherit fetchurl stdenv rpm;
};
emma = import ../development/tools/analysis/emma {
inherit fetchurl stdenv unzip;
};
findbugs = import ../development/tools/analysis/findbugs {
inherit fetchurl stdenv;
};