Merge pull request #234648 from kranurag7/falcoctl

falcoctl: init at 0.5.0
This commit is contained in:
Weijia Wang 2023-06-08 00:51:25 +03:00 committed by GitHub
commit 5953038ff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 37 additions and 0 deletions

View File

@ -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";

View 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 ];
};
}

View File

@ -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 { };