nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #64600 from xrelkd/update/overmind

overmind: 2.0.1 -> 2.0.2

authored by

worldofpeace and committed by
GitHub
528a6902 86de1156

+8 -8
+8 -8
pkgs/applications/misc/overmind/default.nix
··· 1 - { stdenv, buildGoPackage, fetchFromGitHub, tmux, which, makeWrapper }: 1 + { lib, buildGoPackage, fetchFromGitHub, tmux, which, makeWrapper }: 2 2 3 3 buildGoPackage rec { 4 - name = "overmind-${version}"; 5 - version = "2.0.1"; 4 + pname = "overmind"; 5 + version = "2.0.2"; 6 6 goPackagePath = "github.com/DarthSim/overmind"; 7 7 8 8 nativeBuildInputs = [ makeWrapper ]; 9 9 10 10 postInstall = '' 11 - wrapProgram "$bin/bin/overmind" --prefix PATH : "${stdenv.lib.makeBinPath [ tmux which ]}" 11 + wrapProgram "$bin/bin/overmind" --prefix PATH : "${lib.makeBinPath [ tmux which ]}" 12 12 ''; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "DarthSim"; 16 - repo = "overmind"; 16 + repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "1j3cpcfgacn5ic19sgrs1djn5jr4d7j7lxaz0vbaf414lrl76qz8"; 18 + sha256 = "0cns19gqkfxsiiyfxhb05cjp1iv2fb40x47gp8djrwwzcd1r6zxh"; 19 19 }; 20 20 21 - meta = with stdenv.lib; { 22 - homepage = https://github.com/DarthSim/overmind; 21 + meta = with lib; { 22 + homepage = "https://github.com/DarthSim/overmind"; 23 23 description = "Process manager for Procfile-based applications and tmux"; 24 24 license = with licenses; [ mit ]; 25 25 maintainers = [ maintainers.adisbladis ];