Merge pull request #30044 from benley/benley/kubecfg

kubecfg: init at 0.5.0
This commit is contained in:
Jörg Thalheim 2017-10-07 16:35:05 +01:00 committed by GitHub
commit 04ce72e40e
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

@ -15252,6 +15252,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 { };