26 lines
665 B
Nix
26 lines
665 B
Nix
{ stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "lazygit";
|
|
version = "0.22.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jesseduffield";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1jq093nsfh7xqvsjvaad9wvqd3rjrpyp5fl8qxwbhaj3sxx19v7g";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
subPackages = [ "." ];
|
|
|
|
buildFlagsArray = [ "-ldflags=-X main.version=${version} -X main.buildSource=nix" ];
|
|
|
|
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 ];
|
|
};
|
|
}
|