lazygit: 0.7.2 -> 0.8

This commit is contained in:
Mario Rodas 2019-06-23 12:09:11 -05:00
parent aa54135d2c
commit 0be4e0cca7
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8

View file

@ -1,27 +1,24 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "lazygit-${version}";
version = "0.7.2";
pname = "lazygit";
version = "0.8";
goPackagePath = "github.com/jesseduffield/lazygit";
subPackages = [ "." ];
src = fetchFromGitHub {
owner = "jesseduffield";
repo = "lazygit";
repo = pname;
rev = "v${version}";
sha256 = "1b5mzmxw715cx7b0n22hvrpk0dbavzypljc7skwmh8k1nlx935jj";
sha256 = "0zynw5gr96a59x1qshzhhvld883ndf1plnw6l9dbhmff0wcfv6l1";
};
postPatch = ''
rm -rf scripts
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Simple terminal UI for git commands";
homepage = "https://github.com/jesseduffield/lazygit";
license = licenses.mit;
maintainers = with stdenv.lib.maintainers; [ fpletz ];
platforms = stdenv.lib.platforms.unix;
maintainers = with maintainers; [ fpletz ];
};
}