From 016fd7720db06f0945e345cc9d5043642f3b8720 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 23 May 2024 15:53:36 +0100 Subject: 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 +;;; Copyright © 2024 Sharlatan Hellseher ;;; ;;; 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")) -- cgit v1.2.3