25 lines
601 B
Nix
25 lines
601 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "lazygit";
|
|
version = "0.11.3";
|
|
|
|
goPackagePath = "github.com/jesseduffield/lazygit";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jesseduffield";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0v765f93hkq94bmzfwkkb9ndbfka415sxyi01679fg860746rl6l";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Simple terminal UI for git commands";
|
|
homepage = "https://github.com/jesseduffield/lazygit";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fpletz equirosa ];
|
|
};
|
|
}
|