* Added Emma, a Java code coverage tool.
svn path=/nixpkgs/trunk/; revision=10865
This commit is contained in:
parent
72e947949d
commit
d1b9dcd68f
2 changed files with 26 additions and 0 deletions
22
pkgs/development/tools/analysis/emma/default.nix
Normal file
22
pkgs/development/tools/analysis/emma/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue