Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

overmind: init at 1.1.1

(cherry picked from commit ce78db79a32c21fa8fe98e39c521c622ffb0637e)

authored by adisbladis and committed by Franz Pletz 06e99e0a 75f8209e

+29
+27
pkgs/applications/misc/overmind/default.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub, tmux, makeWrapper }: 2 + 3 + buildGoPackage rec { 4 + name = "overmind-${version}"; 5 + version = "1.1.1"; 6 + goPackagePath = "github.com/DarthSim/overmind"; 7 + 8 + nativeBuildInputs = [ makeWrapper ]; 9 + 10 + postInstall = '' 11 + wrapProgram "$bin/bin/overmind" --prefix PATH : "${stdenv.lib.makeBinPath [ tmux ]}" 12 + ''; 13 + 14 + src = fetchFromGitHub { 15 + owner = "DarthSim"; 16 + repo = "overmind"; 17 + rev = "v${version}"; 18 + sha256 = "0gdsbm54ln07jv1kgg53fiavx18xxw4f21lfcdl74ijk6bx4jbzv"; 19 + }; 20 + 21 + meta = with stdenv.lib; { 22 + homepage = https://github.com/DarthSim/; 23 + description = "Process manager for Procfile-based applications and tmux"; 24 + license = with licenses; [ mit ]; 25 + maintainers = [ maintainers.adisbladis ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 4045 4045 4046 4046 otpw = callPackage ../os-specific/linux/otpw { }; 4047 4047 4048 + overmind = callPackage ../applications/misc/overmind { }; 4049 + 4048 4050 owncloud = owncloud70; 4049 4051 4050 4052 inherit (callPackages ../servers/owncloud { })