From 37e35f6f59be0876efdd60f61cd3f3e9b0a2195a Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 28 Apr 2024 15:46:16 +0100 Subject: gnu: Add go-github-com-multiformats-go-multicodec. * gnu/packages/golang-xyz.scm (go-github-com-multiformats-go-multicodec): New variable. Change-Id: I2adf3f8200818675ba1de6322a1280d4b231cda4 --- gnu/packages/golang-xyz.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'gnu/packages/golang-xyz.scm') diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 53832951f6..4e40e148f2 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -2454,6 +2454,41 @@ command line flags, config files, and default struct values.") multibase} (self identifying base encodings) in Go.") (license license:expat))) +(define-public go-github-com-multiformats-go-multicodec + (package + (name "go-github-com-multiformats-go-multicodec") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/multiformats/go-multicodec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vyc85aa9k644l9m3safiz7kk8mm84jclridsp0qnxfj2kcqgipd")))) + (build-system go-build-system) + (arguments + (list + #:go go-1.19 + #:import-path "github.com/multiformats/go-multicodec" + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'copy-multibase-specs + (lambda* (#:key import-path #:allow-other-keys) + (copy-recursively + (string-append #$(this-package-native-input + "specification-multicodec") + "/share/multicodec/") + (string-append "src/" import-path "/spec/multicodec/"))))))) + (native-inputs + (list specification-multicodec)) + (home-page "https://github.com/multiformats/go-multicodec") + (synopsis "Golang constants for the multicodec table") + (description + "Package multicodec exposes the multicodec table as Go constants.") + (license (list license:asl2.0 license:expat)))) + (define-public go-github-com-multiformats-go-varint (package (name "go-github-com-multiformats-go-varint") -- cgit v1.2.3