vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / by-name / ko / konf / package.nix
blobdcba4474f0d32a91db6008b1c7260e5f96cd20a5
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "konf";
8   version = "0.7.0";
10   src = fetchFromGitHub {
11     owner = "SimonTheLeg";
12     repo = "konf-go";
13     rev = "v${version}";
14     hash = "sha256-GSrR2uLeGodmE1egRtvTyWhJckYUnI97n7dnmjPvu3k=";
15   };
17   vendorHash = "sha256-sB3j19HrTtaRqNcooqNy8vBvuzxxyGDa7MOtiGoVgN8=";
19   ldflags = [ "-s" "-w" ];
21   meta = with lib; {
22     description = "Lightweight and blazing fast kubeconfig manager which allows to use different kubeconfigs at the same time";
23     mainProgram = "konf-go";
24     homepage = "https://github.com/SimonTheLeg/konf-go";
25     license = licenses.asl20;
26     maintainers = with maintainers; [ arikgrahl ];
27   };