nixpkgs/pkgs/applications/networking/cluster/kubecfg/default.nix

25 lines
605 B
Nix
Raw Normal View History

2017-10-03 01:26:39 +00:00
{ lib, buildGoPackage, fetchFromGitHub, ... }:
2018-01-16 16:08:34 +00:00
let version = "0.6.0"; in
2017-10-03 01:26:39 +00:00
buildGoPackage {
name = "kubecfg-${version}";
src = fetchFromGitHub {
owner = "ksonnet";
repo = "kubecfg";
rev = "v${version}";
2018-01-16 16:08:34 +00:00
sha256 = "12kv1p707kdxjx5l8rcikd1gjwp5xjxdmmyvlpnvyagrphgrwpsf";
2017-10-03 01:26:39 +00:00
};
goPackagePath = "github.com/ksonnet/kubecfg";
meta = {
description = "A tool for managing Kubernetes resources as code";
homepage = https://github.com/ksonnet/kubecfg;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ benley ];
platforms = lib.platforms.unix;
};
}