diff options
Diffstat (limited to 'gnu/packages/textutils.scm')
-rw-r--r-- | gnu/packages/textutils.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index ae8bce7b3e..dc5c7c6849 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1402,6 +1402,7 @@ formats (e.g. Bibtex, RIS, etc.) using a common XML intermediate.") (build-system go-build-system) (arguments (list + #:go go-1.23 #:install-source? #f #:import-path "github.com/benhoyt/goawk" #:phases @@ -1615,7 +1616,7 @@ of a Unix terminal to HTML code.") (define-public vale (package (name "vale") - (version "3.9.5") + (version "3.11.2") (source (origin (method git-fetch) @@ -1623,7 +1624,7 @@ of a Unix terminal to HTML code.") (url "https://github.com/errata-ai/vale") (commit (string-append "v" version)))) (sha256 - (base32 "119iiyh164rkj7jlghr2j1kbhc8k1bvfhsfvd972zs092fg7dh4p")) + (base32 "04xgya706ljnbb7kh3kip0p9z67hpw55p7vfa0bl1nnd0is4q07g")) (file-name (git-file-name name version)))) (build-system go-build-system) (arguments @@ -1651,7 +1652,8 @@ of a Unix terminal to HTML code.") (lambda _ (setenv "HOME" "/tmp")))))) (native-inputs - (list go-github-com-adrg-strutil + (list go-github-com-adrg-frontmatter + go-github-com-adrg-strutil go-github-com-adrg-xdg go-github-com-bmatcuk-doublestar-v4 go-github-com-d5-tengo-v2 @@ -1664,14 +1666,13 @@ of a Unix terminal to HTML code.") go-github-com-masterminds-sprig-v3 go-github-com-mitchellh-mapstructure go-github-com-niklasfasching-go-org - go-github-com-olekukonko-tablewriter + go-github-com-olekukonko-tablewriter-0.0.5 go-github-com-otiai10-copy go-github-com-pelletier-go-toml-v2 go-github-com-pterm-pterm go-github-com-remeh-sizedwaitgroup go-github-com-smacker-go-tree-sitter go-github-com-spf13-pflag - go-github-com-stretchr-testify go-github-com-tomwright-dasel-v2 go-github-com-yuin-goldmark go-golang-org-x-exp |