Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

findbugs: update from 3.0.0 to 3.0.1

+6 -5
+6 -5
pkgs/development/tools/analysis/findbugs/default.nix
··· 1 1 { stdenv, fetchurl }: 2 2 3 - stdenv.mkDerivation { 4 - name = "findbugs-3.0.0"; 3 + stdenv.mkDerivation rec { 4 + name = "findbugs-3.0.1"; 5 5 6 6 src = fetchurl { 7 - url = mirror://sourceforge/findbugs/findbugs-3.0.0.tar.gz; 8 - sha256 = "0csz6drzdz867r2p2wa4cvick6bv9dpz2yym9wrvp3fnxabmgiri"; 7 + url = "mirror://sourceforge/findbugs/${name}.tar.gz"; 8 + sha256 = "06b46fz4nid7qvm36r66zw01fr87y4jyz21ixw27b8hkqah0s3p8"; 9 9 }; 10 10 11 11 buildPhase = '' ··· 34 34 EOF 35 35 ''; 36 36 37 - meta = { 37 + meta = with stdenv.lib; { 38 38 description = "A static analysis tool to find bugs in Java programs automatically"; 39 39 homepage = http://findbugs.sourceforge.net/; 40 + maintainers = with maintainers; [ pSub ]; 40 41 }; 41 42 }