From edb2c247ba27510ebdf1c834419b1a09604be560 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 8 Sep 2025 22:09:41 +0100 Subject: [PATCH] gnu: vale: Update to 3.12.0. * gnu/packages/textutils.scm (vale): Update to 3.12.0. Fix indentation. [arguments] : Use default go-1.24. Change-Id: I84b74e832d1fa29ae3fca1cb8adc8e853af69ad6 --- gnu/packages/textutils.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 01e9eb0c346523679ffed81692e7c65e7e505893..e1a16e8b7e67a7704e8a2fadb84b898f85418528 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1609,20 +1609,19 @@ of a Unix terminal to HTML code.") (define-public vale (package (name "vale") - (version "3.11.2") + (version "3.12.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/errata-ai/vale") - (commit (string-append "v" version)))) + (url "https://github.com/errata-ai/vale") + (commit (string-append "v" version)))) (sha256 - (base32 "04xgya706ljnbb7kh3kip0p9z67hpw55p7vfa0bl1nnd0is4q07g")) + (base32 "1w6216ap8sds6279h39ksjv27hakzahjmzlvbnsl67lwvldbqvcg")) (file-name (git-file-name name version)))) (build-system go-build-system) (arguments (list - #:go go-1.23 #:install-source? #f #:embed-files #~(list ".*\\.gob") #:import-path "github.com/errata-ai/vale/cmd/vale"