tuicam: init at 0.0.2 (#377825)
[NixPkgs.git] / pkgs / by-name / ea / earlybird / package.nix
blob336082800ba4bbb17638e9ac566804e40a5bd170
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "earlybird";
9   version = "4.0.0";
11   src = fetchFromGitHub {
12     owner = "americanexpress";
13     repo = "earlybird";
14     rev = "v${version}";
15     hash = "sha256-guSm/ha4ICaOcoynvAwFeojE6ikaCykMcdfskD/ehTw=";
16   };
18   vendorHash = "sha256-39jXqCXAwg/C+9gEXiS1X58OD61nMNQifnhgVGEF6ck=";
20   ldflags = [
21     "-s"
22     "-w"
23   ];
25   meta = with lib; {
26     description = "Sensitive data detection tool capable of scanning source code repositories for passwords, key files, and more";
27     mainProgram = "earlybird";
28     homepage = "https://github.com/americanexpress/earlybird";
29     changelog = "https://github.com/americanexpress/earlybird/releases/tag/v${version}";
30     license = licenses.asl20;
31     maintainers = [ ];
32   };