diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-08 12:22:35 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-11 21:42:42 +0100 |
| commit | 87661cea77be67d7fdfcc607ee3a621d005e909c (patch) | |
| tree | d5c2df4e5d27f52502b904663ab50597b5692447 /gnu/packages/linux.scm | |
| parent | 0e25b7c1b6594a7f01e26c618763131555f365b3 (diff) | |
gnu: Pin some golang packages to use go-1.23.
After the defult Golang version was set to 1.24 some of the older
packages which had no fresh version started failing on the 'check phase,
this change pins them to go-1.23 helping to resolve the issue.
Go 1.24 requires non-constant format strings to be explicitly handled.
The errors might look like these:
non-constant format string in call to (*testing.common).Errorf
ExampleParseOptionsLifetime refers to unknown identifier: ParseOptionsLifetime
See <https://tip.golang.org/doc/go1.24#vet>.
Change-Id: Ife5093c4fd98af7cea59abf1a9a29351b66602bb
Diffstat (limited to 'gnu/packages/linux.scm')
| -rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 79a72941eed..dedc4b1665a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5315,7 +5315,7 @@ from the module-init-tools project.") (list ;; For the test suite. cppcheck - go))) + go-1.23))) (home-page "https://github.com/rfjakob/earlyoom") (synopsis "Simple out of memory (OOM) daemon for the Linux kernel") (description "Early OOM is a minimalist out of memory (OOM) daemon that |
