Merge pull request #190760 from arikgrahl/konf

konf: init at 0.2.0
This commit is contained in:
Lassulus 2022-09-13 20:06:15 +02:00 committed by GitHub
commit 065e1d4b9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "konf";
version = "0.2.0";
src = fetchFromGitHub {
owner = "SimonTheLeg";
repo = "konf-go";
rev = "v${version}";
hash = "sha256-UeuR7lsNG2Y0hdpQA5NXBUlSvYeixyKS73N95z5TZ7k=";
};
vendorHash = "sha256-sB3j19HrTtaRqNcooqNy8vBvuzxxyGDa7MOtiGoVgN8=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Lightweight and blazing fast kubeconfig manager which allows to use different kubeconfigs at the same time";
homepage = "https://github.com/SimonTheLeg/konf-go";
license = licenses.asl20;
maintainers = with maintainers; [ arikgrahl ];
};
}

View File

@ -15148,6 +15148,8 @@ with pkgs;
kona = callPackage ../development/interpreters/kona {};
konf = callPackage ../development/tools/konf { };
lolcode = callPackage ../development/interpreters/lolcode { };
love_0_10 = callPackage ../development/interpreters/love/0.10.nix { };