tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
findbugs: update from 3.0.0 to 3.0.1
Pascal Wittmann
11 years ago
362f2db2
07080828
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
analysis
findbugs
default.nix
+6
-5
pkgs/development/tools/analysis/findbugs/default.nix
···
1
{ stdenv, fetchurl }:
2
3
-
stdenv.mkDerivation {
4
-
name = "findbugs-3.0.0";
5
6
src = fetchurl {
7
-
url = mirror://sourceforge/findbugs/findbugs-3.0.0.tar.gz;
8
-
sha256 = "0csz6drzdz867r2p2wa4cvick6bv9dpz2yym9wrvp3fnxabmgiri";
9
};
10
11
buildPhase = ''
···
34
EOF
35
'';
36
37
-
meta = {
38
description = "A static analysis tool to find bugs in Java programs automatically";
39
homepage = http://findbugs.sourceforge.net/;
0
40
};
41
}
···
1
{ stdenv, fetchurl }:
2
3
+
stdenv.mkDerivation rec {
4
+
name = "findbugs-3.0.1";
5
6
src = fetchurl {
7
+
url = "mirror://sourceforge/findbugs/${name}.tar.gz";
8
+
sha256 = "06b46fz4nid7qvm36r66zw01fr87y4jyz21ixw27b8hkqah0s3p8";
9
};
10
11
buildPhase = ''
···
34
EOF
35
'';
36
37
+
meta = with stdenv.lib; {
38
description = "A static analysis tool to find bugs in Java programs automatically";
39
homepage = http://findbugs.sourceforge.net/;
40
+
maintainers = with maintainers; [ pSub ];
41
};
42
}