1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 02:20:53 +02:00

gnu: go-git-sr-ht-emersion-go-scfg: Update to 0.1.0.

*gnu/packages/golang-xyz.scm (go-git-sr-ht-emersion-go-scfg): Update to
0.1.0. Rename to go-codeberg-org-emersion-go-scfg to reflect new import
path.

* gnu/packages/irc.scm (soju) [native-inputs]: Remove
go-git-sr-ht-emersion-go-scfg; add go-codeberg-org-emersion-go-scfg.

* gnu/packages/messaging.scm (senpai): Likewise.

* gnu/packages/version-control.scm (hut) [source] <snippet>: Fix
import-name for go-codeberg-org-emersion-go-scfg.
[native-inputs]: Remove go-git-sr-ht-emersion-go-scfg; add
go-codeberg-org-emersion-go-scfg.

Change-Id: Ide0e5d2d5463991add1d2d99f57298f800535173
Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Daniel Ziltener 2025-04-09 02:14:56 +02:00 committed by Sharlatan Hellseher
parent 391f2c728a
commit 7aa01ccc8a
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
4 changed files with 21 additions and 13 deletions

View file

@ -380,25 +380,25 @@ recursively any exported one. It also won't merge structs inside
maps (because they are not addressable using Go reflection).")
(license license:bsd-3)))
(define-public go-git-sr-ht-emersion-go-scfg
(define-public go-codeberg-org-emersion-go-scfg
(package
(name "go-git-sr-ht-emersion-go-scfg")
(version "0.0.0-20240128091534-2ae16e782082")
(name "go-codeberg-org-emersion-go-scfg")
(version "0.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://git.sr.ht/~emersion/go-scfg")
(commit (go-version->git-ref version))))
(url "https://codeberg.org/emersion/go-scfg")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1gxhg40q4md3lj1wrrnms0jhyqsxhx2hcv6sm5yjbbqana5x26mx"))))
(base32 "0yw35rf6cxk5cwzf9y4qd0rlcryq1pxr9n34q6620i9djhgskwq2"))))
(build-system go-build-system)
(arguments
(list #:import-path "git.sr.ht/~emersion/go-scfg"))
(list #:import-path "codeberg.org/emersion/go-scfg"))
(propagated-inputs
(list go-github-com-davecgh-go-spew))
(home-page "https://git.sr.ht/~emersion/go-scfg")
(home-page "https://codeberg.org/emersion/go-scfg")
(synopsis "Go library for simple configuration file format")
(description
"Package go-scfg parses scfg files.")