2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub, runtimeShell }:
|
2018-12-05 00:31:08 -08:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "hivemind";
|
2019-12-12 08:19:03 -08:00
|
|
|
version = "1.0.6";
|
2018-12-05 00:31:08 -08:00
|
|
|
goPackagePath = "github.com/DarthSim/hivemind";
|
|
|
|
|
2020-01-30 12:41:54 -08:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace process.go --replace \"/bin/sh\" \"${runtimeShell}\"
|
|
|
|
'';
|
|
|
|
|
2018-12-05 00:31:08 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "DarthSim";
|
|
|
|
repo = "hivemind";
|
|
|
|
rev = "v${version}";
|
2019-12-12 08:19:03 -08:00
|
|
|
sha256 = "0afcnd03wsdphbbpha65rv5pnv0x6ldnnm6rnv1m6xkkywgnzx95";
|
2018-12-05 00:31:08 -08:00
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/DarthSim/";
|
2018-12-05 00:31:08 -08:00
|
|
|
description = "Process manager for Procfile-based applications";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = [ maintainers.sveitser ];
|
|
|
|
};
|
|
|
|
}
|