From 4101a1e690a703713324a8bd9f61d84d0db62107 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 8 Sep 2024 15:54:18 +0100 Subject: gnu: Add go-github-com-josharian-native. * gnu/packages/golang-xyz.scm (go-github-com-josharian-native): New variable. Change-Id: I8eeee42b0855c6dfeb9c8e32d9bd7dcfa17bece2 --- gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 932248a7c3..0e4a796445 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3772,6 +3772,29 @@ storing only one copy of each unique string in memory. All functions may be 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")) -- cgit v1.2.3