nixpkgs/pkgs/applications/version-management/git-hound/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-19 20:57:12 +00:00
{ buildGoModule
, fetchFromGitHub
2023-12-25 23:03:27 +00:00
, fetchpatch
2021-01-19 20:57:12 +00:00
, lib
}:
buildGoModule rec {
pname = "git-hound";
2023-12-25 23:03:27 +00:00
version = "1.7.2";
2021-01-19 20:57:12 +00:00
src = fetchFromGitHub {
owner = "tillson";
repo = pname;
rev = "v${version}";
2023-12-25 23:03:27 +00:00
hash = "sha256-W+rYDyRIw4jWWO4UZkUHFq/D/7ZXM+y5vdbclk6S0ro=";
2021-01-19 20:57:12 +00:00
};
2023-12-25 23:03:27 +00:00
patches = [
# https://github.com/tillson/git-hound/pull/66
(fetchpatch {
url = "https://github.com/tillson/git-hound/commit/cd8aa19401cfdec9e4d76c1f6eb4d85928ec4b03.patch";
hash = "sha256-EkdR2KkxxlMLNtKFGpxsQ/msJT5NcMF7irIUcU2WWJY=";
})
];
# tests fail outside of nix
doCheck = false;
vendorHash = "sha256-8teIa083oMXm0SjzMP+mGOVAel1Hbsp3TSMhdvqVbQs=";
2021-01-19 20:57:12 +00:00
meta = with lib; {
description = "Reconnaissance tool for GitHub code search";
longDescription = ''
GitHound pinpoints exposed API keys and other sensitive information
across all of GitHub using pattern matching, commit history searching,
and a unique result scoring system.
'';
homepage = "https://github.com/tillson/git-hound";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
2023-12-25 23:03:27 +00:00
mainProgram = "git-hound";
2021-01-19 20:57:12 +00:00
};
}