743d011616
Update to latest release: https://github.com/DarthSim/hivemind/releases/tag/v1.1.0
26 lines
675 B
Nix
26 lines
675 B
Nix
{ lib, buildGoModule, fetchFromGitHub, runtimeShell }:
|
|
|
|
buildGoModule rec {
|
|
pname = "hivemind";
|
|
version = "1.1.0";
|
|
|
|
postPatch = ''
|
|
substituteInPlace process.go --replace \"/bin/sh\" \"${runtimeShell}\"
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DarthSim";
|
|
repo = "hivemind";
|
|
rev = "v${version}";
|
|
sha256 = "YUR9OwRuH1xSPs8iTsSIjLCt2TyYH357IAYULGTyYUc=";
|
|
};
|
|
vendorSha256 = "KweFhT8Zueg45Q/vw3kNET35hB+0WbUPfz0FYaAiIA8=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/DarthSim/";
|
|
description = "Process manager for Procfile-based applications";
|
|
license = with licenses; [ mit ];
|
|
maintainers = [ maintainers.sveitser ];
|
|
};
|
|
}
|