ksonnet: init at 0.11.0

closes #42596

+25
+23
pkgs/applications/networking/cluster/ksonnet/default.nix
··· 1 + { lib, buildGoPackage, fetchFromGitHub, ... }: 2 + 3 + buildGoPackage rec { 4 + version = "0.11.0"; 5 + name = "ksonnet-${version}"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ksonnet"; 9 + repo = "ksonnet"; 10 + rev = "v${version}"; 11 + sha256 = "0z7gkgcsiclm72bznmzv5jcgx5rblndcsiqc0r2mwhxhmv19bs04"; 12 + }; 13 + 14 + goPackagePath = "github.com/ksonnet/ksonnet"; 15 + 16 + meta = { 17 + description = "A CLI-supported framework that streamlines writing and deployment of Kubernetes configurations to multiple clusters"; 18 + homepage = https://github.com/ksonnet/ksonnet; 19 + license = lib.licenses.asl20; 20 + maintainers = with lib.maintainers; [ flokli ]; 21 + platforms = lib.platforms.unix; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 16948 16948 16949 16949 ktorrent = libsForQt5.callPackage ../applications/networking/p2p/ktorrent { }; 16950 16950 16951 + ksonnet = callPackage ../applications/networking/cluster/ksonnet { }; 16952 + 16951 16953 kubecfg = callPackage ../applications/networking/cluster/kubecfg { }; 16952 16954 16953 16955 kubernetes = callPackage ../applications/networking/cluster/kubernetes { };