nixpkgs/pkgs/development/tools/lazygit/default.nix

26 lines
665 B
Nix
Raw Normal View History

2020-09-18 04:52:57 -07:00
{ stdenv, buildGoModule, fetchFromGitHub }:
2018-10-11 07:17:57 -07:00
2020-09-18 04:52:57 -07:00
buildGoModule rec {
2019-06-23 10:09:11 -07:00
pname = "lazygit";
2020-09-18 04:52:57 -07:00
version = "0.22.8";
2019-06-23 10:09:11 -07:00
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-09-04 20:45:47 -07:00
sha256 = "1jq093nsfh7xqvsjvaad9wvqd3rjrpyp5fl8qxwbhaj3sxx19v7g";
2018-10-11 07:17:57 -07:00
};
2020-09-18 04:52:57 -07:00
vendorSha256 = null;
subPackages = [ "." ];
buildFlagsArray = [ "-ldflags=-X main.version=${version} -X main.buildSource=nix" ];
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;
2020-01-08 06:11:29 -08:00
maintainers = with maintainers; [ fpletz equirosa filalex77 ];
2018-10-11 07:17:57 -07:00
};
}