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

31 lines
758 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-07-10 16:03:58 +00:00
buildGoModule rec {
pname = "hetzner-kube";
2020-03-14 06:36:24 +00:00
version = "0.5.1";
2018-07-10 16:03:58 +00:00
src = fetchFromGitHub {
owner = "xetys";
repo = "hetzner-kube";
2019-09-08 23:38:31 +00:00
rev = version;
2020-03-14 06:36:24 +00:00
sha256 = "1iqgpmljqx6rhmvsir2675waj78amcfiw08knwvlmavjgpxx2ysw";
2018-07-10 16:03:58 +00:00
};
vendorSha256 = "1jh2f66ys6rmrrwrf5zqfprgcvziyq6l4z8bfqwxgf1ysnxx525h";
2018-07-10 16:03:58 +00:00
doCheck = false;
buildFlagsArray = ''
-ldflags=
-X github.com/xetys/hetzner-kube/cmd.version=${version}
'';
meta = {
2018-07-10 16:03:58 +00:00
description = "A CLI tool for provisioning Kubernetes clusters on Hetzner Cloud";
2020-03-14 06:36:24 +00:00
homepage = "https://github.com/xetys/hetzner-kube";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ eliasp ];
platforms = lib.platforms.unix;
2018-07-10 16:03:58 +00:00
};
}