From fbb3103ad2c36c34a5536473c7684687f2e6839e Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 10 Sep 2025 13:18:04 +0100 Subject: [PATCH] gnu: chathistorysync: Update to 0.2.1. * gnu/packages/irc.scm (chathistorysync): Update to 0.2.1. [inputs]: Remove go-golang-org-x-sys, go-golang-org-x-term, go-golang-org-x-crypto, and go-gopkg-in-irc-v3. [native-inputs]: Add go-golang-org-x-term and go-gopkg-in-irc-v3. Change-Id: I45eac3eb9d2884653b472e1ef761d604bb466aeb --- gnu/packages/irc.scm | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm index 257a37640846a5740c92b8dfc9649f2342406370..9e3bde94271e22904c97123e957554c20ea2ef3a 100644 --- a/gnu/packages/irc.scm +++ b/gnu/packages/irc.scm @@ -976,7 +976,7 @@ building block for other projects.") (define-public chathistorysync (package (name "chathistorysync") - (version "0.2.0") + (version "0.2.1") (source (origin (method git-fetch) @@ -985,7 +985,7 @@ building block for other projects.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "03dxr178wnicggx0k95wvyzgyk4s4g0adbi2z0md517a5qd1lh23")))) + (base32 "00l4nba7bdv53g85qc07x32fkyc4n6lzag9xkkk58f61ljja5ill")))) (build-system go-build-system) (arguments (list #:import-path "git.sr.ht/~emersion/chathistorysync" @@ -1006,12 +1006,10 @@ building block for other projects.") (install-file "chathistorysync.1" (string-append out "/share/man/man1"))))))))) - (inputs - (list go-golang-org-x-sys - go-golang-org-x-term - go-golang-org-x-crypto - go-gopkg-in-irc-v3)) - (native-inputs (list scdoc)) + (native-inputs + (list go-golang-org-x-term + go-gopkg-in-irc-v3 + scdoc)) (home-page "https://git.sr.ht/~emersion/chathistorysync") (synopsis "Synchronization tool for IRC chat history") (description