mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
37 lines
817 B
Nix
37 lines
817 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubectl-gadget";
|
|
version = "0.19.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "inspektor-gadget";
|
|
repo = "inspektor-gadget";
|
|
rev = "v${version}";
|
|
hash = "sha256-5FbjD02HsMChaMMvTjsB/hzivO4s1H5tLK1QMIMlBCI=";
|
|
};
|
|
|
|
vendorHash = "sha256-Beas+oXcK5i4ibE5EAa9+avYuax/kr3op1xbtMPJMas=";
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X main.version=v${version}"
|
|
"-extldflags=-static"
|
|
];
|
|
|
|
tags = [
|
|
"withoutebpf"
|
|
];
|
|
|
|
subPackages = [ "cmd/kubectl-gadget" ];
|
|
|
|
meta = with lib; {
|
|
description = "A collection of gadgets for troubleshooting Kubernetes applications using eBPF";
|
|
homepage = "https://inspektor-gadget.io";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ kranurag7 ];
|
|
};
|
|
}
|