[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/26: gnu: Add jpl-util.
From: |
Pierre Neidhardt |
Subject: |
08/26: gnu: Add jpl-util. |
Date: |
Fri, 24 Aug 2018 09:14:04 -0400 (EDT) |
ambrevar pushed a commit to branch wip-next-browser
in repository guix.
commit b735306d1fef45008a10dbbabeb8c76b01f52920
Author: Pierre Neidhardt <address@hidden>
Date: Fri Aug 24 11:22:05 2018 +0200
gnu: Add jpl-util.
* gnu/packages/lisp.scm (cl-jpl-util, ecl-jpl-util, sbcl-jpl-util): New
variables.
---
gnu/packages/lisp.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index bc9001e..bf5eb08 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -1626,3 +1626,34 @@ to DeRemer and Pennello, which is used by Bison and
lalr.scm (not lalr.cl).")
(define-public ecl-cl-yacc
(sbcl-package->ecl-package sbcl-cl-yacc))
+
+(define-public sbcl-jpl-util
+ (let ((commit "0311ed374e19a49d43318064d729fe3abd9a3b62"))
+ (package
+ (name "sbcl-jpl-util")
+ (version "20151005")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ ;; Quicklisp uses this fork.
+ (url "https://github.com/hawkir/cl-jpl-util")
+ (commit commit)))
+ (file-name
+ (git-file-name "jpl-util" version))
+ (sha256
+ (base32
+ "0nc0rk9n8grkg3045xsw34whmcmddn2sfrxki4268g7kpgz0d2yz"))))
+ (build-system asdf-build-system/sbcl)
+ (synopsis "Collection of Common Lisp utility functions and macros")
+ (description
+ "@command{cl-jpl-util} is a collection of Common Lisp utility functions
+and macros, primarily for software projects written in CL by the author.")
+ (home-page "https://www.thoughtcrime.us/software/cl-jpl-util/")
+ (license license:isc))))
+
+(define-public cl-jpl-util
+ (sbcl-package->cl-source-package sbcl-jpl-util))
+
+(define-public ecl-jpl-util
+ (sbcl-package->ecl-package sbcl-jpl-util))
- branch wip-next-browser created (now 0ca397a), Pierre Neidhardt, 2018/08/24
- 01/26: build-system/asdf: Fix normalize-string to support versioned dependencies, Pierre Neidhardt, 2018/08/24
- 06/26: gnu: Add babel., Pierre Neidhardt, 2018/08/24
- 02/26: gnu: Add cl-strings., Pierre Neidhardt, 2018/08/24
- 04/26: gnu: Add hu.dwim.asdf., Pierre Neidhardt, 2018/08/24
- 05/26: gnu: Add hu.dwim.stefil., Pierre Neidhardt, 2018/08/24
- 03/26: gnu: Add trivial-features., Pierre Neidhardt, 2018/08/24
- 08/26: gnu: Add jpl-util.,
Pierre Neidhardt <=
- 10/26: gnu: Add eos., Pierre Neidhardt, 2018/08/24
- 07/26: gnu: Add cl-yacc., Pierre Neidhardt, 2018/08/24
- 23/26: gnu: Add mgl-pax., Pierre Neidhardt, 2018/08/24
- 22/26: gnu: Add pythonic-string-reader., Pierre Neidhardt, 2018/08/24
- 19/26: gnu: Add nibbles., Pierre Neidhardt, 2018/08/24
- 11/26: gnu: Add esrap., Pierre Neidhardt, 2018/08/24
- 20/26: gnu: Add ironclad., Pierre Neidhardt, 2018/08/24
- 14/26: gnu: Add colorize., Pierre Neidhardt, 2018/08/24
- 12/26: gnu: Add split-sequence., Pierre Neidhardt, 2018/08/24
- 15/26: gnu: Add 3bmd., Pierre Neidhardt, 2018/08/24