My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/kubicorn/default.nix

26 lines
661 B

{ lib, buildGoPackage, fetchFromGitHub }:
with lib;
buildGoPackage rec {
pname = "kubicorn";
version = "2018-10-13-${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 lib.maintainers; [ offline ];
license = lib.licenses.asl20;
};
}