mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
6c70cee85a
new version released with some improvements and a couple fixes: https://github.com/jesseduffield/lazygit/releases/tag/v0.20.6
25 lines
611 B
Nix
25 lines
611 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "lazygit";
|
|
version = "0.20.6";
|
|
|
|
goPackagePath = "github.com/jesseduffield/lazygit";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jesseduffield";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0zim9ipwh2vkw2g41rw3p35i8fz208hyr71npfn4as8f1nl4gi4i";
|
|
};
|
|
|
|
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 filalex77 ];
|
|
};
|
|
}
|