gnu: Add specification-multicodec.

* gnu/packages/specifications.scm (specification-multicodec): New variable.

Change-Id: I75de43613c5a1818b1db79aa275c58dc52411957
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Artyom V. Poptsov 2024-04-07 13:01:43 +03:00 committed by Sharlatan Hellseher
parent e74b591091
commit 4d7a2c860e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -52,6 +52,34 @@ (define-public specification-multibase
binary appearing in text.")
(license (list license:expat license:cc-by-sa3.0)))))
(define-public specification-multicodec
(let ((commit "36789e0856be22fa02f4dc55582ec670b2b4318b")
(revision "0"))
(package
(name "specification-multicodec")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/multiformats/multicodec")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0dyawicg8q4f8g6xj5bsj5l3c8rb8mrafjkrabc6a3p65845wp2r"))))
(build-system copy-build-system)
(arguments
'(#:install-plan '(("." "share/multicodec/"))
#:phases (modify-phases %standard-phases
(delete 'strip))))
(home-page "https://github.com/multiformats/multicodec")
(synopsis "Compact self-describing codecs")
(description
"Multicodec is an agreed-upon codec table. It is designed for use in binary
representations, such as keys or identifiers (i.e @url{https://github.com/ipld/cid,
CID}).")
(license (list license:expat license:cc-by-sa3.0)))))
(define-public specification-multihash
(let ((commit "931febb97565395b1b6cd39ac677799df265a9e7")
(revision "0"))