1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +02:00

gnu: Add go-github-com-fatih-structs.

* gnu/packages/golang-xyz.scm (go-github-com-fatih-structs): New variable.

Change-Id: I7c2f90845754991253fcfa9699746d98ac030ff1
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Roman Scherer 2024-12-29 13:14:20 +01:00 committed by Sharlatan Hellseher
parent 2df183a123
commit 8820e3856e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -4269,6 +4269,29 @@ Alphanum Algorithm} developed by Dave Koelle in Go.")
defined output to the standard output.")
(license license:expat)))
(define-public go-github-com-fatih-structs
(package
(name "go-github-com-fatih-structs")
(version "1.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fatih/structs")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1wrhb8wp8zpzggl61lapb627lw8yv281abvr6vqakmf569nswa9q"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/fatih/structs"))
(home-page "https://github.com/fatih/structs")
(synopsis "Utilities for Go structs")
(description "This package provides various utilitiy functions to work
with Go structs.")
(license license:expat)))
;; XXX: This repository has been archived by the owner on Nov 9, 2017. It is
;; now read-only.
(define-public go-github-com-flynn-archive-go-shlex