about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/ksonnet/default.nix
blob: b8bce931523763fb8a64576311531ddb6d63cd54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
  };
}