about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/fluxctl
diff options
context:
space:
mode:
authorMax Gonzih <gonzih@gmail.com>2019-07-27 15:22:23 -0400
committerWael Nasreddine <wael.nasreddine@gmail.com>2019-07-27 12:22:23 -0700
commita0c413f71d0d8bee11529e22e2d06ec47d1e2a75 (patch)
tree79be44a22dcad19462f6c5c95b45b29e2eee68a6 /pkgs/applications/networking/cluster/fluxctl
parentace0aced36ca89c19fa5ea6dd678924cec72e743 (diff)
fluxctl: init at 1.13.1 (#65433)
Diffstat (limited to 'pkgs/applications/networking/cluster/fluxctl')
-rw-r--r--pkgs/applications/networking/cluster/fluxctl/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/fluxctl/default.nix b/pkgs/applications/networking/cluster/fluxctl/default.nix
new file mode 100644
index 0000000000000..29ec50ce36241
--- /dev/null
+++ b/pkgs/applications/networking/cluster/fluxctl/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "fluxctl";
+  version = "1.13.1";
+
+  src = fetchFromGitHub {
+    owner = "weaveworks";
+    repo = "flux";
+    rev = version;
+    sha256 = "0g8yfvwh6hjh70a0i4ssbb6hq3i9f75wj8yqy1aaafycq598zbdx";
+  };
+
+  modSha256 = "1q5g9hd0ansdc2acpysf6wi74q50w0psrpyhk4y6mm6kjvhlcn87";
+
+  subPackages = [ "cmd/fluxctl" ];
+
+  meta = with stdenv.lib; {
+    description = "CLI client for Flux, the GitOps Kubernetes operator";
+    homepage = https://github.com/weaveworks/flux;
+    license = licenses.asl20;
+    maintainers = with maintainers; [ Gonzih ];
+  };
+}