* [bug#43719] [PATCH] gnu: Add sbcl-xmls
@ 2020-09-30 9:18 Adam Kandur via Guix-patches via
2020-10-07 9:40 ` bug#43719: " Guillaume Le Vaillant
0 siblings, 1 reply; 2+ messages in thread
From: Adam Kandur via Guix-patches via @ 2020-09-30 9:18 UTC (permalink / raw)
To: 43719
[-- Attachment #1: Type: text/plain, Size: 1 bytes --]
[-- Attachment #2: 0001-gnu-Add-sbcl-xmls.patch --]
[-- Type: text/x-patch, Size: 1827 bytes --]
From 817e020adbdd6a6c2608e8b02db672f16233f492 Mon Sep 17 00:00:00 2001
From: Adam <rndd@tuta.io>
Date: Wed, 30 Sep 2020 12:17:19 +0300
Subject: [PATCH] gnu: Add sbcl-xmls
* gnu/packages/lisp-xyz.scm (sbcl-xmls): New variable.
---
gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 62fa30b..b84ed36 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -14117,3 +14117,33 @@ web applications. Caveman2 has three design goals:
(define-public ecl-caveman
(sbcl-package->ecl-package sbcl-caveman))
+
+(define-public sbcl-xmls
+ (let ((commit "18546f0850b1338e03997ffd1696add1cb1800d1") ;; no tagged branch
+ (revision "1"))
+ (package
+ (name "sbcl-xmls")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rpgoldman/xmls")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1lmvfml2ldbb1wkhm25jqqk2bhwsz52hhcgljbnzj1xr8xhc3anp"))))
+ (inputs
+ `(("fiveam" ,sbcl-fiveam)))
+ (build-system asdf-build-system/sbcl)
+ (home-page "https://github.com/rpgoldman/xmls")
+ (synopsis "Xmls is a small, simple, non-validating xml parser for Common Lisp.")
+ (description "Xmls is a self-contained, easily embedded parser that recognizes a useful subset of the XML spec.
+It provides a simple mapping from xml to lisp structures or s-expressions and back.")
+ (license license:bsd-2))))
+
+(define-public cl-xmls
+ (sbcl-package->cl-source-package sbcl-xmls))
+
+(define-public ecl-xmls
+ (sbcl-package->ecl-package sbcl-xmls))
--
2.28.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-10-07 9:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-30 9:18 [bug#43719] [PATCH] gnu: Add sbcl-xmls Adam Kandur via Guix-patches via
2020-10-07 9:40 ` bug#43719: " Guillaume Le Vaillant
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).