overmind: init at 1.1.1

This commit is contained in:
adisbladis 2018-03-13 15:56:24 +08:00
parent e2cb020a27
commit ce78db79a3
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, buildGoPackage, fetchFromGitHub, tmux, makeWrapper }:
buildGoPackage rec {
name = "overmind-${version}";
version = "1.1.1";
goPackagePath = "github.com/DarthSim/overmind";
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
wrapProgram "$bin/bin/overmind" --prefix PATH : "${stdenv.lib.makeBinPath [ tmux ]}"
'';
src = fetchFromGitHub {
owner = "DarthSim";
repo = "overmind";
rev = "v${version}";
sha256 = "0gdsbm54ln07jv1kgg53fiavx18xxw4f21lfcdl74ijk6bx4jbzv";
};
meta = with stdenv.lib; {
homepage = https://github.com/DarthSim/;
description = "Process manager for Procfile-based applications and tmux";
license = with licenses; [ mit ];
maintainers = [ maintainers.adisbladis ];
};
}

View File

@ -4058,6 +4058,8 @@ with pkgs;
otpw = callPackage ../os-specific/linux/otpw { };
overmind = callPackage ../applications/misc/overmind { };
owncloud = owncloud70;
inherit (callPackages ../servers/owncloud { })