* Added Findbugs.

svn path=/nixpkgs/trunk/; revision=10854
This commit is contained in:
Eelco Dolstra
2008-02-25 14:55:30 +00:00
parent 23622f6cda
commit 421e413507
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "findbugs-1.3.2";
src = fetchurl {
url = mirror://sourceforge/findbugs/findbugs-1.3.2.tar.gz;
sha256 = "0mbwxzz5m9vizxlbg0i6rh5ywywiiw9zpabq5li7map43768apvr";
};
buildPhase = ''
substituteInPlace bin/findbugs --replace /bin/pwd pwd
'';
installPhase = ''
ensureDir $out
cp -prd bin lib plugin doc $out/
rm $out/bin/*.bat
'';
}