lazygit: 0.22.1 -> 0.22.8
This commit is contained in:
parent
d85114062a
commit
1655af5e17
1 changed files with 8 additions and 7 deletions
|
@ -1,12 +1,8 @@
|
||||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "lazygit";
|
pname = "lazygit";
|
||||||
version = "0.22.1";
|
version = "0.22.8";
|
||||||
|
|
||||||
goPackagePath = "github.com/jesseduffield/lazygit";
|
|
||||||
|
|
||||||
subPackages = [ "." ];
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jesseduffield";
|
owner = "jesseduffield";
|
||||||
|
@ -15,6 +11,11 @@ buildGoPackage rec {
|
||||||
sha256 = "1jq093nsfh7xqvsjvaad9wvqd3rjrpyp5fl8qxwbhaj3sxx19v7g";
|
sha256 = "1jq093nsfh7xqvsjvaad9wvqd3rjrpyp5fl8qxwbhaj3sxx19v7g";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vendorSha256 = null;
|
||||||
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
buildFlagsArray = [ "-ldflags=-X main.version=${version} -X main.buildSource=nix" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Simple terminal UI for git commands";
|
description = "Simple terminal UI for git commands";
|
||||||
homepage = "https://github.com/jesseduffield/lazygit";
|
homepage = "https://github.com/jesseduffield/lazygit";
|
||||||
|
|
Loading…
Reference in a new issue