ksonnet: init at 0.11.0

closes #42596
This commit is contained in:
Florian Klink 2018-07-16 23:29:06 +02:00
parent 6e76a618fb
commit cf00b9aff4
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildGoPackage, fetchFromGitHub, ... }:
buildGoPackage rec {
version = "0.11.0";
name = "ksonnet-${version}";
src = fetchFromGitHub {
owner = "ksonnet";
repo = "ksonnet";
rev = "v${version}";
sha256 = "0z7gkgcsiclm72bznmzv5jcgx5rblndcsiqc0r2mwhxhmv19bs04";
};
goPackagePath = "github.com/ksonnet/ksonnet";
meta = {
description = "A CLI-supported framework that streamlines writing and deployment of Kubernetes configurations to multiple clusters";
homepage = https://github.com/ksonnet/ksonnet;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ flokli ];
platforms = lib.platforms.unix;
};
}

View file

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