gnu: Add quri.

* gnu/packages/lisp.scm (sbcl-quri, cl-quri): New variables.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
master
Katherine Cox-Buday 2019-03-29 15:49:31 -05:00 committed by 宋文武
parent 9e005948c1
commit 5a4b0f633b
No known key found for this signature in database
GPG Key ID: 26525665AE727D37
1 changed files with 36 additions and 0 deletions

View File

@ -4379,3 +4379,39 @@ addition, removal, and random selection.")
(define-public cl-map-set
(sbcl-package->cl-source-package sbcl-map-set))
(define-public sbcl-quri
(let ((commit "76b75103f21ead092c9f715512fa82441ef61185")
(revision "1"))
(package
(name "sbcl-quri")
(version (git-version "0.1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fukamachi/quri.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1ccbxsgzdibmzq33mmbmmz9vwl6l03xh6nbpsh1hkdvdcl7q0a60"))))
(build-system asdf-build-system/sbcl)
(arguments
;; Tests fail with: Component QURI-ASD::QURI-TEST not found,
;; required by #<SYSTEM "quri">. Why?
'(#:tests? #f))
(native-inputs `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
("sbcl-prove" ,sbcl-prove)))
(inputs `(("sbcl-babel" ,sbcl-babel)
("sbcl-split-sequence" ,sbcl-split-sequence)
("sbcl-utilities" ,sbcl-utilities)
("sbcl-alexandria" ,sbcl-alexandria)))
(home-page "https://github.com/fukamachi/quri")
(synopsis "Yet another URI library for Common Lisp")
(description
"QURI (pronounced \"Q-ree\") is yet another URI library for Common
Lisp. It is intended to be a replacement of PURI.")
(license license:bsd-3))))
(define-public cl-quri
(sbcl-package->cl-source-package sbcl-quri))