mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
overmind: init at 1.1.1
This commit is contained in:
parent
e2cb020a27
commit
ce78db79a3
27
pkgs/applications/misc/overmind/default.nix
Normal file
27
pkgs/applications/misc/overmind/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -4058,6 +4058,8 @@ with pkgs;
|
||||
|
||||
otpw = callPackage ../os-specific/linux/otpw { };
|
||||
|
||||
overmind = callPackage ../applications/misc/overmind { };
|
||||
|
||||
owncloud = owncloud70;
|
||||
|
||||
inherit (callPackages ../servers/owncloud { })
|
||||
|
Loading…
Reference in New Issue
Block a user