nixpkgs/pkgs/applications/misc/overmind/default.nix

30 lines
775 B
Nix
Raw Normal View History

2019-07-11 02:46:43 +00:00
{ lib, buildGoPackage, fetchFromGitHub, tmux, which, makeWrapper }:
2018-03-13 07:56:24 +00:00
buildGoPackage rec {
2019-07-11 02:46:43 +00:00
pname = "overmind";
2021-01-04 19:36:50 +00:00
version = "2.2.0";
2018-03-13 07:56:24 +00:00
goPackagePath = "github.com/DarthSim/overmind";
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
wrapProgram "$out/bin/overmind" --prefix PATH : "${lib.makeBinPath [ tmux which ]}"
2018-03-13 07:56:24 +00:00
'';
src = fetchFromGitHub {
owner = "DarthSim";
2019-07-11 02:46:43 +00:00
repo = pname;
2018-03-13 07:56:24 +00:00
rev = "v${version}";
2021-01-04 19:36:50 +00:00
sha256 = "00v6l4138vv32bqfkzrhk4hfl52a00rlg9ywhp4difgrnz7zj6xb";
2018-03-13 07:56:24 +00:00
};
2020-06-04 14:01:37 +00:00
goDeps = ./deps.nix;
2019-07-11 02:46:43 +00:00
meta = with lib; {
homepage = "https://github.com/DarthSim/overmind";
2018-03-13 07:56:24 +00:00
description = "Process manager for Procfile-based applications and tmux";
license = with licenses; [ mit ];
maintainers = [ maintainers.adisbladis ];
};
}