guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#70255] [PATCH 1/4] gnu: Add specification-multihash.


From: Artyom V. Poptsov
Subject: [bug#70255] [PATCH 1/4] gnu: Add specification-multihash.
Date: Sun, 7 Apr 2024 13:01:42 +0300

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

Change-Id: I065898164cc126445a92b33dd628ab06e19d0615
---
 gnu/packages/specifications.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/specifications.scm b/gnu/packages/specifications.scm
index ce57a68bdb..b44f0eaaee 100644
--- a/gnu/packages/specifications.scm
+++ b/gnu/packages/specifications.scm
@@ -51,3 +51,31 @@ (define-public specification-multibase
 base-encoded (e.g., @code{base32}, @code{base36}, @code{base64}, 
@code{base58}, etc.)
 binary appearing in text.")
       (license (list license:expat license:cc-by-sa3.0)))))
+
+(define-public specification-multihash
+  (let ((commit "931febb97565395b1b6cd39ac677799df265a9e7")
+        (revision "0"))
+    (package
+      (name "specification-multihash")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/multiformats/multihash";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1axr35z3iz061fng0170bh873vy20rj2mspznycxm1qkrkrh7p5j"))))
+      (build-system copy-build-system)
+      (arguments
+       '(#:install-plan '(("." "share/multihash/"))
+         #:phases (modify-phases %standard-phases
+                    (delete 'strip))))
+      (home-page "https://github.com/multiformats/multihash";)
+      (synopsis "Self-describing hashes")
+      (description
+       "Multihash is a protocol for differentiating outputs from various
+well-established cryptographic hash functions, addressing size + encoding
+considerations.")
+      (license (list license:expat license:cc-by-sa3.0)))))
-- 
2.41.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]