kubecfg: init at 0.5.0
This commit is contained in:
parent
6dc9d21cc8
commit
a8f2ad6245
2 changed files with 26 additions and 0 deletions
24
pkgs/applications/networking/cluster/kubecfg/default.nix
Normal file
24
pkgs/applications/networking/cluster/kubecfg/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ lib, buildGoPackage, fetchFromGitHub, ... }:
|
||||||
|
|
||||||
|
let version = "0.5.0"; in
|
||||||
|
|
||||||
|
buildGoPackage {
|
||||||
|
name = "kubecfg-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ksonnet";
|
||||||
|
repo = "kubecfg";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1s8w133p8qkj3dr73jimajm9ddp678lw9k9symj8rjw5p35igr93";
|
||||||
|
};
|
||||||
|
|
||||||
|
goPackagePath = "github.com/ksonnet/kubecfg";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A tool for managing Kubernetes resources as code";
|
||||||
|
homepage = https://github.com/ksonnet/kubecfg;
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
maintainers = with lib.maintainers; [ benley ];
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -15206,6 +15206,8 @@ with pkgs;
|
||||||
|
|
||||||
ktorrent = libsForQt5.callPackage ../applications/networking/p2p/ktorrent { };
|
ktorrent = libsForQt5.callPackage ../applications/networking/p2p/ktorrent { };
|
||||||
|
|
||||||
|
kubecfg = callPackage ../applications/networking/cluster/kubecfg { };
|
||||||
|
|
||||||
kubernetes = callPackage ../applications/networking/cluster/kubernetes { };
|
kubernetes = callPackage ../applications/networking/cluster/kubernetes { };
|
||||||
|
|
||||||
kubernetes-helm = callPackage ../applications/networking/cluster/helm { };
|
kubernetes-helm = callPackage ../applications/networking/cluster/helm { };
|
||||||
|
|
Loading…
Reference in a new issue