guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add specification-ipld.


From: guix-commits
Subject: branch master updated: gnu: Add specification-ipld.
Date: Thu, 23 May 2024 10:56:09 -0400

This is an automated email from the git hooks/post-receive script.

sharlatan pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 016fd7720d gnu: Add specification-ipld.
016fd7720d is described below

commit 016fd7720db06f0945e345cc9d5043642f3b8720
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Thu May 23 15:53:36 2024 +0100

    gnu: Add specification-ipld.
    
    * gnu/packages/specifications.scm (specification-ipld): New variable.
    
    Change-Id: Ib36d0cdb4a6d20da789ba20830945c8a7d223b69
---
 gnu/packages/specifications.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/specifications.scm b/gnu/packages/specifications.scm
index 125d794932..4e6c7b81ff 100644
--- a/gnu/packages/specifications.scm
+++ b/gnu/packages/specifications.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
+;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -25,6 +26,36 @@
   #:use-module (guix packages)
   #:use-module (guix build-system copy))
 
+(define-public specification-ipld
+  (let ((commit "84a5cc6c168314a26be0d447c26fe76e46ce2a42")
+        (revision "0"))
+    (package
+      (name "specification-ipld")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/ipld/ipld";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0avgjp4hjkh4jmsxx09vnwi74rax6409k28h29jwfl95v42h6yyl"))))
+      (build-system copy-build-system)
+      (arguments
+       '(#:install-plan '(("./specs/schemas" "share/ipld/specs/"))
+         #:phases (modify-phases %standard-phases
+                    (delete 'strip))))
+      (home-page "https://ipld.io/";)
+      (synopsis "InterPlanetary Linked Data")
+      (description
+       "This package provides specification schemas of
+@acronym{InterPlanetary Linked Data, IPLD} which may be used for the test
+suites of application implementing the standard.")
+      ;; This library is dual-licensed under either of Apache 2.0 or MIT
+      ;; terms.
+      (license (list license:expat license:asl2.0)))))
+
 (define-public specification-multibase
   (let ((commit "4c8344e37852773de155f587dcf5897771b3fc19")
         (revision "1"))



reply via email to

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