evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / fa / falcoctl / package.nix
blob7a73cc8cea29b43d0f4f5e4aa4c6f5d2384c100b
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "falcoctl";
5   version = "0.5.1";
7   src = fetchFromGitHub {
8     owner = "falcosecurity";
9     repo = "falcoctl";
10     rev = "v${version}";
11     hash = "sha256-X4fZBTEbOIQbfmuxDODEkYW43ntVIkwFDULYq+ps+9s=";
12   };
14   vendorHash = "sha256-26EXoXMWK/zPX4M7kG3QRAb4aqtIWgSnSgXcxKUwfZk=";
17   ldflags = [
18     "-s"
19     "-w"
20     "-X github.com/falcosecurity/falcoctl/cmd/version.semVersion=${version}"
21   ];
23   meta = with lib; {
24     description = "Administrative tooling for Falco";
25     mainProgram = "falcoctl";
26     homepage = "https://github.com/falcosecurity/falcoctl";
27     license = licenses.asl20;
28     maintainers = with maintainers; [ developer-guy kranurag7 LucaGuerra ];
29   };