Merge pull request #234648 from kranurag7/falcoctl
falcoctl: init at 0.5.0
This commit is contained in:
commit
5953038ff7
3 changed files with 37 additions and 0 deletions
|
@ -9390,6 +9390,12 @@
|
|||
githubId = 59375051;
|
||||
name = "Lucas Ransan";
|
||||
};
|
||||
LucaGuerra = {
|
||||
email = "luca@guerra.sh";
|
||||
github = "LucaGuerra";
|
||||
githubId = 35580196;
|
||||
name = "Luca Guerra";
|
||||
};
|
||||
lucasew = {
|
||||
email = "lucas59356@gmail.com";
|
||||
github = "lucasew";
|
||||
|
|
29
pkgs/applications/networking/cluster/falcoctl/default.nix
Normal file
29
pkgs/applications/networking/cluster/falcoctl/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "falcoctl";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "falcosecurity";
|
||||
repo = "falcoctl";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-+6q7U/ipyIuoOPVo+yFuj2r3WAA2AozSqxjj4f5of68=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-12n5OZtrPSl+XUm+wsaTI5SVfJz/aGEhNQdMyEOGhkw=";
|
||||
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/falcosecurity/falcoctl/cmd/version.semVersion=${version}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Administrative tooling for Falco";
|
||||
homepage = "https://github.com/falcosecurity/falcoctl";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ developer-guy kranurag7 LucaGuerra ];
|
||||
};
|
||||
}
|
|
@ -30464,6 +30464,8 @@ with pkgs;
|
|||
|
||||
f1viewer = callPackage ../applications/video/f1viewer { };
|
||||
|
||||
falcoctl = callPackage ../applications/networking/cluster/falcoctl { };
|
||||
|
||||
faircamp = callPackage ../applications/misc/faircamp { };
|
||||
|
||||
famistudio = callPackage ../applications/audio/famistudio { };
|
||||
|
|
Loading…
Reference in a new issue