about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2018-07-12 14:04:26 +0200
committerGitHub <noreply@github.com>2018-07-12 14:04:26 +0200
commit6a4aaf8965cb3b3fe7973f3e98cd4b233fa6634f (patch)
tree4b10d9cce685e39c571aeebed9fecf40eba15038 /pkgs/applications/networking
parent1973580af2d216e4c25eac63a338acbbe463a045 (diff)
parent20f096a8a18a83c731dce472e77b549267c7da8c (diff)
downloadnixlib-6a4aaf8965cb3b3fe7973f3e98cd4b233fa6634f.tar
nixlib-6a4aaf8965cb3b3fe7973f3e98cd4b233fa6634f.tar.gz
nixlib-6a4aaf8965cb3b3fe7973f3e98cd4b233fa6634f.tar.bz2
nixlib-6a4aaf8965cb3b3fe7973f3e98cd4b233fa6634f.tar.lz
nixlib-6a4aaf8965cb3b3fe7973f3e98cd4b233fa6634f.tar.xz
nixlib-6a4aaf8965cb3b3fe7973f3e98cd4b233fa6634f.tar.zst
nixlib-6a4aaf8965cb3b3fe7973f3e98cd4b233fa6634f.zip
Merge pull request #43293 from eliasp/add-hetzner-kube-0.3.1
hetzner-kube: init at version 0.3.1
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/cluster/hetzner-kube/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/hetzner-kube/default.nix b/pkgs/applications/networking/cluster/hetzner-kube/default.nix
new file mode 100644
index 000000000000..fe2420a719d5
--- /dev/null
+++ b/pkgs/applications/networking/cluster/hetzner-kube/default.nix
@@ -0,0 +1,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;
+  };
+}