hivemind: init at 1.0.4

This commit is contained in:
sveitser 2018-12-05 16:31:08 +08:00
parent 0d78065299
commit 09a59a9fa3
No known key found for this signature in database
GPG Key ID: 765E892DAE70682C
2 changed files with 23 additions and 0 deletions

@ -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 ];
};
}

@ -3312,6 +3312,8 @@ in
hiera-eyaml = callPackage ../tools/system/hiera-eyaml { };
hivemind = callPackage ../applications/misc/hivemind { };
hfsprogs = callPackage ../tools/filesystems/hfsprogs { };
highlight = callPackage ../tools/text/highlight ({