tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ksonnet: init at 0.11.0
closes #42596
Florian Klink
7 years ago
cf00b9af
6e76a618
+25
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
cluster
ksonnet
default.nix
top-level
all-packages.nix
+23
pkgs/applications/networking/cluster/ksonnet/default.nix
···
1
1
+
{ lib, buildGoPackage, fetchFromGitHub, ... }:
2
2
+
3
3
+
buildGoPackage rec {
4
4
+
version = "0.11.0";
5
5
+
name = "ksonnet-${version}";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "ksonnet";
9
9
+
repo = "ksonnet";
10
10
+
rev = "v${version}";
11
11
+
sha256 = "0z7gkgcsiclm72bznmzv5jcgx5rblndcsiqc0r2mwhxhmv19bs04";
12
12
+
};
13
13
+
14
14
+
goPackagePath = "github.com/ksonnet/ksonnet";
15
15
+
16
16
+
meta = {
17
17
+
description = "A CLI-supported framework that streamlines writing and deployment of Kubernetes configurations to multiple clusters";
18
18
+
homepage = https://github.com/ksonnet/ksonnet;
19
19
+
license = lib.licenses.asl20;
20
20
+
maintainers = with lib.maintainers; [ flokli ];
21
21
+
platforms = lib.platforms.unix;
22
22
+
};
23
23
+
}
+2
pkgs/top-level/all-packages.nix
···
16948
16948
16949
16949
ktorrent = libsForQt5.callPackage ../applications/networking/p2p/ktorrent { };
16950
16950
16951
16951
+
ksonnet = callPackage ../applications/networking/cluster/ksonnet { };
16952
16952
+
16951
16953
kubecfg = callPackage ../applications/networking/cluster/kubecfg { };
16952
16954
16953
16955
kubernetes = callPackage ../applications/networking/cluster/kubernetes { };