mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
parent
6e76a618fb
commit
cf00b9aff4
23
pkgs/applications/networking/cluster/ksonnet/default.nix
Normal file
23
pkgs/applications/networking/cluster/ksonnet/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue