2018-10-11 07:17:57 -07:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-06-23 10:09:11 -07:00
|
|
|
pname = "lazygit";
|
2020-01-08 06:10:19 -08:00
|
|
|
version = "0.12.3";
|
2018-10-11 07:17:57 -07:00
|
|
|
|
|
|
|
goPackagePath = "github.com/jesseduffield/lazygit";
|
|
|
|
|
2019-06-23 10:09:11 -07:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2018-10-11 07:17:57 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jesseduffield";
|
2019-06-23 10:09:11 -07:00
|
|
|
repo = pname;
|
2018-10-11 07:17:57 -07:00
|
|
|
rev = "v${version}";
|
2020-01-08 06:10:19 -08:00
|
|
|
sha256 = "1r20543dydp5m9ciw01y8wlw8kxwmjn6zabfalnb13y1pa0zm76q";
|
2018-10-11 07:17:57 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Simple terminal UI for git commands";
|
2019-06-23 10:09:11 -07:00
|
|
|
homepage = "https://github.com/jesseduffield/lazygit";
|
2018-10-11 07:17:57 -07:00
|
|
|
license = licenses.mit;
|
2019-12-02 22:16:25 -08:00
|
|
|
maintainers = with maintainers; [ fpletz equirosa ];
|
2018-10-11 07:17:57 -07:00
|
|
|
};
|
|
|
|
}
|