Merge pull request #51556 from sveitser/hivemind-init
hivemind: init at 1.0.4
This commit is contained in:
commit
906bad8fe1
2 changed files with 23 additions and 0 deletions
21
pkgs/applications/misc/hivemind/default.nix
Normal file
21
pkgs/applications/misc/hivemind/default.nix
Normal file
|
@ -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 ({
|
||||
|
|
Loading…
Reference in a new issue