Merge pull request #98213 from titouanco/lazygit

lazygit: 0.22.1 -> 0.22.8
This commit is contained in:
Anderson Torres 2020-09-19 01:23:46 -03:00 committed by GitHub
commit c0d285c9a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";