lol

Merge pull request #171204 from fabaff/wprecon-bump

wprecon: 1.6.3a -> 2.4.5

authored by

Sandro and committed by
GitHub
1641bbe9 c3d24570

+8 -4
+8 -4
pkgs/tools/security/wprecon/default.nix
··· 5 6 buildGoModule rec { 7 pname = "wprecon"; 8 - version = "1.6.3a"; 9 10 src = fetchFromGitHub { 11 owner = "blackbinn"; 12 repo = pname; 13 rev = version; 14 - sha256 = "0gqi4799ha3mf8r7ini0wj4ilkfsh80vnnxijfv9a343r6z5w0dn"; 15 }; 16 17 - vendorSha256 = "1sab58shspll96rqy1rp659s0yikqdcx59z9b88d6p4w8a98ns87"; 18 19 meta = with lib; { 20 description = "WordPress vulnerability recognition tool"; ··· 23 # https://github.com/blackbinn/wprecon/blob/master/LICENSE 24 license = with licenses; [ unfree ]; 25 maintainers = with maintainers; [ fab ]; 26 - broken = true; # build fails, missing tag 27 }; 28 }
··· 5 6 buildGoModule rec { 7 pname = "wprecon"; 8 + version = "2.4.5"; 9 10 src = fetchFromGitHub { 11 owner = "blackbinn"; 12 repo = pname; 13 rev = version; 14 + hash = "sha256-23zJD3Nnkeko+J2FjPq5RA5dIjORMXvwt3wtAYiVlQs="; 15 }; 16 17 + vendorSha256 = "sha256-FYdsLcW6FYxSgixZ5US9cBPABOAVwidC3ejUNbs1lbA="; 18 + 19 + postFixup = '' 20 + # Rename binary 21 + mv $out/bin/cli $out/bin/${pname} 22 + ''; 23 24 meta = with lib; { 25 description = "WordPress vulnerability recognition tool"; ··· 28 # https://github.com/blackbinn/wprecon/blob/master/LICENSE 29 license = with licenses; [ unfree ]; 30 maintainers = with maintainers; [ fab ]; 31 }; 32 }