lol

Merge pull request #304674 from r-ryantm/auto-update/cloudfox

cloudfox: 1.13.4 -> 1.14.0

authored by

Fabian Affolter and committed by
GitHub
f76245e6 be0104da

+8 -7
+8 -7
pkgs/tools/security/cloudfox/default.nix
··· 1 - { lib 2 - , buildGoModule 3 - , fetchFromGitHub 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 4 5 }: 5 6 6 7 buildGoModule rec { 7 8 pname = "cloudfox"; 8 - version = "1.13.4"; 9 + version = "1.14.0"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "BishopFox"; 12 13 repo = "cloudfox"; 13 14 rev = "refs/tags/v${version}"; 14 - hash = "sha256-nN/gSvAwKjfZulqH4caGoJmzlY0ik8JrFReuvYWwZTE="; 15 + hash = "sha256-vh7U66od+i1kmTtpHZ1tuMPTl0AnXoYUKMU16ZgxFBQ="; 15 16 }; 16 17 17 - vendorHash = "sha256-aRbGBEci3QT1mH+yaOUVynPysJ1za6CaoLGppJaa94c="; 18 + vendorHash = "sha256-2+UiaU4S64afH8Y8uz5ZclO5NxTi4YlUZ87ZN1MnLj0="; 18 19 19 20 ldflags = [ 20 21 "-w" ··· 26 27 27 28 meta = with lib; { 28 29 description = "Tool for situational awareness of cloud penetration tests"; 29 - mainProgram = "cloudfox"; 30 30 homepage = "https://github.com/BishopFox/cloudfox"; 31 31 changelog = "https://github.com/BishopFox/cloudfox/releases/tag/v${version}"; 32 32 license = licenses.mit; 33 33 maintainers = with maintainers; [ fab ]; 34 + mainProgram = "cloudfox"; 34 35 }; 35 36 }