summary refs log tree commit diff
path: root/pkgs/applications/misc/hivemind
diff options
context:
space:
mode:
authorsveitser <sveitser@gmail.com>2018-12-05 16:31:08 +0800
committersveitser <sveitser@gmail.com>2018-12-05 16:31:08 +0800
commit09a59a9fa361c8e2eb6720c1f3240b38330347c5 (patch)
tree6f9c0ea9b86a92bed2ea0217ea14830823dbe93e /pkgs/applications/misc/hivemind
parent0d78065299e6be2802804c06d43e16fb2b21e908 (diff)
downloadnixpkgs-09a59a9fa361c8e2eb6720c1f3240b38330347c5.tar
nixpkgs-09a59a9fa361c8e2eb6720c1f3240b38330347c5.tar.gz
nixpkgs-09a59a9fa361c8e2eb6720c1f3240b38330347c5.tar.bz2
nixpkgs-09a59a9fa361c8e2eb6720c1f3240b38330347c5.tar.lz
nixpkgs-09a59a9fa361c8e2eb6720c1f3240b38330347c5.tar.xz
nixpkgs-09a59a9fa361c8e2eb6720c1f3240b38330347c5.tar.zst
nixpkgs-09a59a9fa361c8e2eb6720c1f3240b38330347c5.zip
hivemind: init at 1.0.4
Diffstat (limited to 'pkgs/applications/misc/hivemind')
-rw-r--r--pkgs/applications/misc/hivemind/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/misc/hivemind/default.nix b/pkgs/applications/misc/hivemind/default.nix
new file mode 100644
index 00000000000..0431f35057b
--- /dev/null
+++ b/pkgs/applications/misc/hivemind/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+  name = "hivemind-${version}";
+  version = "1.0.4";
+  goPackagePath = "github.com/DarthSim/hivemind";
+
+  src = fetchFromGitHub {
+    owner = "DarthSim";
+    repo = "hivemind";
+    rev = "v${version}";
+    sha256 = "1z2izvyf0j3gi0cas5v22kkmkls03sg67182k8v3p6kwhzn0jw67";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/DarthSim/;
+    description = "Process manager for Procfile-based applications";
+    license = with licenses; [ mit ];
+    maintainers = [ maintainers.sveitser ];
+  };
+}