2018-12-05 08:31:08 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "hivemind";
|
2018-12-05 08:31:08 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|