lazygit: 0.22.1 -> 0.22.8

This commit is contained in:
Titouan 2020-09-18 13:52:57 +02:00
parent d85114062a
commit 1655af5e17

View File

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