kfilt: init at 0.0.8

kfilt can filter Kubernetes resources:
https://github.com/ryane/kfilt

authored by

ryane and committed by
Anderson Torres
a133d0b4 7c6e6a29

+33
+31
pkgs/applications/networking/cluster/kfilt/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "kfilt"; 5 + version = "0.0.8"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ryane"; 9 + repo = "kfilt"; 10 + rev = "v${version}"; 11 + hash = "sha256-TUhZKf4fJyJF/qDmvs4jqAMVTXN4MXE+YLc4FcOVlwo="; 12 + }; 13 + 14 + vendorHash = "sha256-c77CzpE9cPyobt87uO0QlkKD+xC/tM7wOy4orM62tnI="; 15 + 16 + subPackages = [ "." ]; 17 + 18 + ldflags = [ 19 + "-s" 20 + "-w" 21 + "-X github.com/ryane/kfilt/cmd.Version=${version}" 22 + "-X github.com/ryane/kfilt/cmd.GitCommit=${src.rev}" 23 + ]; 24 + 25 + meta = { 26 + description = "Command-line tool that filters Kubernetes resources"; 27 + homepage = "https://github.com/ryane/kfilt"; 28 + license = lib.licenses.asl20; 29 + maintainers = [ lib.maintainers.ryane ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 32041 32041 32042 32042 keyfinder-cli = callPackage ../applications/audio/keyfinder-cli { }; 32043 32043 32044 + kfilt = callPackage ../applications/networking/cluster/kfilt { }; 32045 + 32044 32046 kgraphviewer = libsForQt5.callPackage ../applications/graphics/kgraphviewer { }; 32045 32047 32046 32048 khal = callPackage ../applications/misc/khal { };