mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
44 lines
914 B
Nix
44 lines
914 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
lazygit,
|
|
testers,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "lazygit";
|
|
version = "0.44.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jesseduffield";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-BP5PMgRq8LHLuUYDrWaX1PgfT9VEhj3xeLE2aDMAPF0=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
subPackages = [ "." ];
|
|
|
|
ldflags = [
|
|
"-X main.version=${version}"
|
|
"-X main.buildSource=nix"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion { package = lazygit; };
|
|
|
|
meta = with lib; {
|
|
description = "Simple terminal UI for git commands";
|
|
homepage = "https://github.com/jesseduffield/lazygit";
|
|
changelog = "https://github.com/jesseduffield/lazygit/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
Br1ght0ne
|
|
equirosa
|
|
khaneliman
|
|
paveloom
|
|
starsep
|
|
];
|
|
mainProgram = "lazygit";
|
|
};
|
|
}
|