lazygit: use go1.22 (#361125)
This commit is contained in:
@@ -1,18 +1,19 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
buildGo122Module,
|
||||
fetchFromGitHub,
|
||||
lazygit,
|
||||
testers,
|
||||
}:
|
||||
buildGoModule rec {
|
||||
# Regression in go1.23 see https://github.com/jesseduffield/lazygit/issues/4002
|
||||
buildGo122Module rec {
|
||||
pname = "lazygit";
|
||||
version = "0.44.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jesseduffield";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-BP5PMgRq8LHLuUYDrWaX1PgfT9VEhj3xeLE2aDMAPF0=";
|
||||
};
|
||||
|
||||
@@ -26,12 +27,12 @@ buildGoModule rec {
|
||||
|
||||
passthru.tests.version = testers.testVersion { package = lazygit; };
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
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; [
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
Br1ght0ne
|
||||
equirosa
|
||||
khaneliman
|
||||
|
||||
Reference in New Issue
Block a user