gnu: Add go-github-com-josharian-native.

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

Change-Id: I8eeee42b0855c6dfeb9c8e32d9bd7dcfa17bece2
This commit is contained in:
Sharlatan Hellseher 2024-09-08 15:54:18 +01:00
parent 6aaa7beb62
commit 4101a1e690
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3772,6 +3772,29 @@ (define-public go-github-com-josharian-intern
called concurrently with themselves and each other.")
(license license:expat)))
(define-public go-github-com-josharian-native
(package
(name "go-github-com-josharian-native")
(version "1.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/josharian/native")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1wa4yzc3r06qjklqjf4n30zx9v660w8hmxkmybzwk03fmlv2rcyj"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/josharian/native"))
(home-page "https://github.com/josharian/native")
(synopsis "Native Golang @code{encoding/binary.ByteOrder} enchantment")
(description
"This package provides an easy access to native byte order.")
(license license:expat)))
(define-public go-github-com-jpillora-backoff
(let ((commit "fab01a9d9810a410d2d95a0a697f0afb604658f9")
(revision "1"))