mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
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:
parent
e74b591091
commit
4d7a2c860e
1 changed files with 28 additions and 0 deletions
|
@ -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"))
|
||||
|
|
Loading…
Reference in a new issue