at 23.05-pre 31 lines 874 B view raw
1{ buildGoModule 2, fetchFromGitHub 3, lib 4}: 5 6buildGoModule rec { 7 pname = "git-hound"; 8 version = "1.4"; 9 10 src = fetchFromGitHub { 11 owner = "tillson"; 12 repo = pname; 13 rev = "v${version}"; 14 sha256 = "sha256-HD5OK8HjnLDbyC/TmVI2HfBRIUCyyHTbA3JvKoeXV5E="; 15 }; 16 17 vendorSha256 = null; #vendorSha256 = ""; 18 19 meta = with lib; { 20 description = "Reconnaissance tool for GitHub code search"; 21 longDescription = '' 22 GitHound pinpoints exposed API keys and other sensitive information 23 across all of GitHub using pattern matching, commit history searching, 24 and a unique result scoring system. 25 ''; 26 homepage = "https://github.com/tillson/git-hound"; 27 license = with licenses; [ mit ]; 28 maintainers = with maintainers; [ fab ]; 29 broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.go-modules --check 30 }; 31}