mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 21:14:52 +00:00
commit
ac570d2ba6
22
pkgs/applications/networking/cluster/kconf/default.nix
Normal file
22
pkgs/applications/networking/cluster/kconf/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kconf";
|
||||
version = "1.10.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "particledecay";
|
||||
repo = "kconf";
|
||||
rev = "v${version}";
|
||||
sha256 = "NlTpHQFOJJcIt/xMT3fvdrlxANyg//wtYMmXzEtaFXo=";
|
||||
};
|
||||
|
||||
vendorSha256 = "2d4o87wE9QZltk2YOHc20XVYF8n0EOrDf5mJ6i6EB0c=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "An opinionated command line tool for managing multiple kubeconfigs";
|
||||
homepage = "https://github.com/particledecay/kconf";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ thmzlt ];
|
||||
};
|
||||
}
|
@ -23631,6 +23631,8 @@ in
|
||||
|
||||
k3s = callPackage ../applications/networking/cluster/k3s {};
|
||||
|
||||
kconf = callPackage ../applications/networking/cluster/kconf { };
|
||||
|
||||
kail = callPackage ../tools/networking/kail { };
|
||||
|
||||
kanboard = callPackage ../applications/misc/kanboard { };
|
||||
|
Loading…
Reference in New Issue
Block a user