gitmux: unpin Go builder, disable tests

Signed-off-by: Paul Meyer <katexochen0@gmail.com>
This commit is contained in:
Paul Meyer
2025-03-28 08:51:40 +01:00
parent 46f46dd8f7
commit 307365acaa
2 changed files with 7 additions and 3 deletions

View File

@@ -21,6 +21,12 @@ buildGoModule (finalAttrs: {
nativeCheckInputs = [ git ];
# After bump of Go toolchain to version >1.22, tests fail with:
# vendor/github.com/rogpeppe/go-internal/testscript/exe_go118.go:14:27:
# cannot use nopTestDeps{} (value of struct type nopTestDeps) as testing.testDeps value in argument to testing.MainStart:
# nopTestDeps does not implement testing.testDeps (missing method InitRuntimeCoverage)'.
doCheck = false;
ldflags = [ "-X main.version=${finalAttrs.version}" ];
passthru.tests.version = testers.testVersion {

View File

@@ -1387,9 +1387,7 @@ with pkgs;
gitlint = python3Packages.callPackage ../applications/version-management/gitlint { };
gitmux = callPackage ../applications/version-management/gitmux {
buildGoModule = buildGo122Module;
};
gitmux = callPackage ../applications/version-management/gitmux { };
gittyup = libsForQt5.callPackage ../applications/version-management/gittyup { };