Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 29 lines 752 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "cloudfox"; 8 version = "1.10.3"; 9 10 src = fetchFromGitHub { 11 owner = "BishopFox"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 hash = "sha256-XLn2GwoVNPoGTgXZx/q9dEmWigKB1BNylzxO9dBT3Zg="; 15 }; 16 17 vendorHash = "sha256-v8rEsp2mDgfjCO2VvWNIxex8F350MDnZ40bR4szv+3o="; 18 19 # Some tests are failing because of wrong filename/path 20 doCheck = false; 21 22 meta = with lib; { 23 description = "Tool for situational awareness of cloud penetration tests"; 24 homepage = "https://github.com/BishopFox/cloudfox"; 25 changelog = "https://github.com/BishopFox/cloudfox/releases/tag/v${version}"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ fab ]; 28 }; 29}