falcoctl: init at 0.5.0

Signed-off-by: Anurag <contact.anurag7@gmail.com>

Update formatting

Co-authored-by: Emily <git@emilylange.de>

use on with GO111MODULE

Co-authored-by: Emily <git@emilylange.de>

Move to nix default (CGO)

Co-authored-by: Emily <git@emilylange.de>
This commit is contained in:
Anurag 2023-05-28 22:23:50 +05:30
parent e0b6ea2f7a
commit 34f8702a48
2 changed files with 31 additions and 0 deletions

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

@ -30381,6 +30381,8 @@ with pkgs;
f1viewer = callPackage ../applications/video/f1viewer { };
falcoctl = callPackage ../applications/networking/cluster/falcoctl { };
faircamp = callPackage ../applications/misc/faircamp { };
famistudio = callPackage ../applications/audio/famistudio { };