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

@ -1,12 +1,8 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoPackage rec {
buildGoModule rec {
pname = "lazygit";
version = "0.22.1";
goPackagePath = "github.com/jesseduffield/lazygit";
subPackages = [ "." ];
version = "0.22.8";
src = fetchFromGitHub {
owner = "jesseduffield";
@ -15,6 +11,11 @@ buildGoPackage rec {
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";