3
0
Fork 0
forked from mirrors/nixpkgs

kubicorn: init at 4c7f3623

This commit is contained in:
Jaka Hudoklin 2018-10-26 23:02:34 +02:00
parent 7c8188df46
commit a37cb90707
No known key found for this signature in database
GPG key ID: 916062A1C4748647
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
with stdenv.lib;
buildGoPackage rec {
name = "kubicorn-${version}";
version = "2018-10-13-${stdenv.lib.strings.substring 0 7 rev}";
rev = "4c7f3623e9188fba43778271afe161a4facfb657";
src = fetchFromGitHub {
rev = rev;
owner = "kubicorn";
repo = "kubicorn";
sha256 = "18h5sj4lcivrwjq2hzn7c3g4mblw17zicb5nma8sh7sakwzyg1k9";
};
subPackages = ["."];
goPackagePath = "github.com/kubicorn/kubicorn";
meta = {
description = "Simple, cloud native infrastructure for Kubernetes";
homepage = http://kubicorn.io/;
maintainers = with stdenv.lib.maintainers; [ offline ];
license = stdenv.lib.licenses.asl20;
};
}

View file

@ -8604,6 +8604,8 @@ with pkgs;
kube-prompt = callPackage ../development/tools/kube-prompt { };
kubicorn = callPackage ../development/tools/kubicorn { };
kustomize = callPackage ../development/tools/kustomize { };
kythe = callPackage ../development/tools/kythe { };