nixpkgs/pkgs/applications/networking/cluster/hetzner-kube/default.nix

26 lines
667 B
Nix
Raw Normal View History

2018-07-10 17:03:58 +01:00
{ lib, buildGoPackage, fetchFromGitHub, ... }:
2018-10-26 21:53:58 +01:00
buildGoPackage rec {
pname = "hetzner-kube";
version = "0.3.2-rc1";
2018-07-10 17:03:58 +01:00
src = fetchFromGitHub {
owner = "xetys";
repo = "hetzner-kube";
2018-10-26 21:53:58 +01:00
rev = version;
sha256 = "16pzcpcr98rcrv5k57fa7h9a82wiv4p2ckhkmisynkr7f1xk60mw";
2018-07-10 17:03:58 +01:00
};
goPackagePath = "github.com/xetys/hetzner-kube";
2018-10-26 21:53:58 +01:00
subPackages = ["."];
goDeps = ./deps.nix;
2018-07-10 17:03:58 +01:00
meta = {
description = "A CLI tool for provisioning Kubernetes clusters on Hetzner Cloud";
homepage = https://github.com/xetys/hetzner-kube;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ eliasp ];
2018-07-10 17:03:58 +01:00
platforms = lib.platforms.unix;
};
}