kubecfg: init at 0.5.0

This commit is contained in:
Benjamin Staffin 2017-10-02 18:26:39 -07:00
parent 6dc9d21cc8
commit a8f2ad6245
No known key found for this signature in database
GPG key ID: A490C0134E09AF4A
2 changed files with 26 additions and 0 deletions

View 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;
};
}

View file

@ -15206,6 +15206,8 @@ with pkgs;
ktorrent = libsForQt5.callPackage ../applications/networking/p2p/ktorrent { };
kubecfg = callPackage ../applications/networking/cluster/kubecfg { };
kubernetes = callPackage ../applications/networking/cluster/kubernetes { };
kubernetes-helm = callPackage ../applications/networking/cluster/helm { };