summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/helmsman/default.nix
diff options
context:
space:
mode:
authorLynn Dong <ldong@nebulaworks.com>2020-04-28 16:01:54 -0700
committerJon <jonringer@users.noreply.github.com>2020-05-12 18:07:36 -0700
commit60c0d55e09aa2af92a8fe08f0c49775f143ac70f (patch)
treefaadb7c00a73192232573a23922c89eec1a75605 /pkgs/applications/networking/cluster/helmsman/default.nix
parent9f5e9ef4b71a2a1ea8efef56f5876cdc846d6387 (diff)
downloadnixpkgs-60c0d55e09aa2af92a8fe08f0c49775f143ac70f.tar
nixpkgs-60c0d55e09aa2af92a8fe08f0c49775f143ac70f.tar.gz
nixpkgs-60c0d55e09aa2af92a8fe08f0c49775f143ac70f.tar.bz2
nixpkgs-60c0d55e09aa2af92a8fe08f0c49775f143ac70f.tar.lz
nixpkgs-60c0d55e09aa2af92a8fe08f0c49775f143ac70f.tar.xz
nixpkgs-60c0d55e09aa2af92a8fe08f0c49775f143ac70f.tar.zst
nixpkgs-60c0d55e09aa2af92a8fe08f0c49775f143ac70f.zip
helmsman: init at 3.3.0
Diffstat (limited to 'pkgs/applications/networking/cluster/helmsman/default.nix')
-rw-r--r--pkgs/applications/networking/cluster/helmsman/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/helmsman/default.nix b/pkgs/applications/networking/cluster/helmsman/default.nix
new file mode 100644
index 00000000000..f1d81975e1e
--- /dev/null
+++ b/pkgs/applications/networking/cluster/helmsman/default.nix
@@ -0,0 +1,23 @@
+{ lib, buildGoModule, fetchFromGitHub, ... }:
+
+buildGoModule rec {
+  pname = "helmsman";
+  version = "3.3.0";
+
+  src = fetchFromGitHub {
+    owner = "Praqma";
+    repo = "helmsman";
+    rev = "v${version}";
+    sha256 = "0i7sg3iwxb07gjxcz6chpdcx3fqykzldmf7s1c9m02hkps910ca8";
+  };
+
+  modSha256 = "19qdrrwmjc32nw8m0zi251z32wqj2d956wgd1dkcvx1x0n4p435g";
+
+  meta = with lib; {
+    description = "Helm Charts (k8s applications) as Code tool";
+    homepage = "https://github.com/Praqma/helmsman";
+    license = licenses.mit;
+    maintainers = with maintainers; [ lynty ];
+    platforms = platforms.unix;
+  };
+}