mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 12:04:40 +00:00
hivemind: init at 1.0.4
This commit is contained in:
parent
0d78065299
commit
09a59a9fa3
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 { };
|
hiera-eyaml = callPackage ../tools/system/hiera-eyaml { };
|
||||||
|
|
||||||
|
hivemind = callPackage ../applications/misc/hivemind { };
|
||||||
|
|
||||||
hfsprogs = callPackage ../tools/filesystems/hfsprogs { };
|
hfsprogs = callPackage ../tools/filesystems/hfsprogs { };
|
||||||
|
|
||||||
highlight = callPackage ../tools/text/highlight ({
|
highlight = callPackage ../tools/text/highlight ({
|
||||||
|
Loading…
Reference in New Issue
Block a user