nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.05 30 lines 804 B view raw
1{ buildGoModule 2, fetchFromGitHub 3, lib 4}: 5 6buildGoModule rec { 7 pname = "git-hound"; 8 version = "1.3"; 9 10 src = fetchFromGitHub { 11 owner = "tillson"; 12 repo = pname; 13 rev = "v${version}"; 14 sha256 = "1l2bif7qpc1yl93ih01g9jci7ba47rsnpq9js88rz216q93dzmsf"; 15 }; 16 17 vendorSha256 = "055hpfjbqng513c9rscb8jhnlxj7p82sr8cbsvwnzk569n71qwma"; 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 }; 30}