biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / overmind / default.nix
blobceaec16839f9e542e877ed19f9ede7aaabf95f8f
1 { lib, buildGoModule, fetchFromGitHub, tmux, which, makeWrapper }:
3 buildGoModule rec {
4   pname = "overmind";
5   version = "2.5.1";
7   nativeBuildInputs = [ makeWrapper ];
9   postInstall = ''
10     wrapProgram "$out/bin/overmind" --prefix PATH : "${lib.makeBinPath [ tmux which ]}"
11   '';
13   src = fetchFromGitHub {
14     owner = "DarthSim";
15     repo = pname;
16     rev = "v${version}";
17     sha256 = "sha256-wX29nFmzmbxbaXtwIWZNvueXFv9SKIOqexkc5pEITpw=";
18   };
20   vendorHash = "sha256-XhF4oizOZ6g0351Q71Wp9IA3aFpocC5xGovDefIoL78=";
22   meta = with lib; {
23     homepage = "https://github.com/DarthSim/overmind";
24     description = "Process manager for Procfile-based applications and tmux";
25     mainProgram = "overmind";
26     license = with licenses; [ mit ];
27     maintainers = [ ];
28   };