about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/hetzner-kube/default.nix
blob: fe2420a719d55a0e9469a9fef6835a9a61b3e363 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildGoPackage, fetchFromGitHub, ... }:

let version = "0.3.1"; in

buildGoPackage {
  name = "hetzner-kube-${version}";

  src = fetchFromGitHub {
    owner = "xetys";
    repo = "hetzner-kube";
    rev = "${version}";
    sha256 = "1xldh1ca8ym8cg3w5cxizmhqxwi5kmiin28f320mxdr28fzljc2w";
  };

  goPackagePath = "github.com/xetys/hetzner-kube";

  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 ];
    platforms = lib.platforms.unix;
  };
}