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

27 lines
724 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-10-11 14:17:57 +00:00
2020-09-18 11:52:57 +00:00
buildGoModule rec {
2019-06-23 17:09:11 +00:00
pname = "lazygit";
version = "0.31.3";
2019-06-23 17:09:11 +00:00
2018-10-11 14:17:57 +00:00
src = fetchFromGitHub {
owner = "jesseduffield";
2019-06-23 17:09:11 +00:00
repo = pname;
2018-10-11 14:17:57 +00:00
rev = "v${version}";
sha256 = "sha256-CgWN7xfWX0aSwNAPt2UDftyD0CbQQSUY6SMlyP9TSjc=";
2018-10-11 14:17:57 +00:00
};
2020-09-18 11:52:57 +00:00
vendorSha256 = null;
subPackages = [ "." ];
2021-08-26 06:45:51 +00:00
ldflags = [ "-X main.version=${version}" "-X main.buildSource=nix" ];
2020-09-18 11:52:57 +00:00
meta = with lib; {
2018-10-11 14:17:57 +00:00
description = "Simple terminal UI for git commands";
2019-06-23 17:09:11 +00:00
homepage = "https://github.com/jesseduffield/lazygit";
changelog = "https://github.com/jesseduffield/lazygit/releases/tag/v${version}";
2018-10-11 14:17:57 +00:00
license = licenses.mit;
maintainers = with maintainers; [ fpletz equirosa Br1ght0ne ];
2018-10-11 14:17:57 +00:00
};
}