[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/13: gnu: Add cl-strftime.
From: |
guix-commits |
Subject: |
04/13: gnu: Add cl-strftime. |
Date: |
Tue, 16 Nov 2021 06:52:21 -0500 (EST) |
ambrevar pushed a commit to branch master
in repository guix.
commit 462bb6cca87c5ed8d9d0917de2ba191afaf8988b
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Mon Nov 15 19:20:03 2021 +0100
gnu: Add cl-strftime.
* gnu/packages/lisp-xyz.scm (cl-strftime, ecl-cl-strftime,
sbcl-cl-strftime):
New variables.
---
gnu/packages/lisp-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 2233a5c..bba167f 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -18859,3 +18859,39 @@ information is taken from
@url{https://publicsuffix.org}.")
(define-public ecl-cl-tld
(sbcl-package->ecl-package sbcl-cl-tld))
+
+(define-public sbcl-cl-strftime
+ ;; No release.
+ (let ((commit "21cb57f2595faa26d687893963f24ec41822b63c"))
+ (package
+ (name "sbcl-cl-strftime")
+ (version (git-version "0.0.0" "1" commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ruricolist/cl-strftime/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "00c8hq7vzgb89ab3q7mrp60x743kiqmsk1g51ynhxlqhph2bnslf"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("alexandria" ,sbcl-alexandria)
+ ("local-time" ,sbcl-local-time)
+ ("ppcre" ,sbcl-cl-ppcre)
+ ("serapeum" ,sbcl-serapeum)))
+ (native-inputs
+ `(("fiveam" ,sbcl-fiveam)
+ ("cffi" ,sbcl-cffi)))
+ (home-page "https://github.com/ruricolist/cl-strftime")
+ (synopsis "Common Lisp compiler for the strftime language")
+ (description
+ "CL-STRFTIME is a Common Lisp compiler for the strftime “language.”")
+ (license license:expat))))
+
+(define-public cl-strftime
+ (sbcl-package->cl-source-package sbcl-cl-strftime))
+
+(define-public ecl-cl-strftime
+ (sbcl-package->ecl-package sbcl-cl-strftime))
- branch master updated (1223960 -> e31d48d), guix-commits, 2021/11/16
- 01/13: gnu: sbcl-cmd: Update to 20211009., guix-commits, 2021/11/16
- 04/13: gnu: Add cl-strftime.,
guix-commits <=
- 02/13: gnu: sbcl-cl-webkit: Update to 3.2.0., guix-commits, 2021/11/16
- 03/13: gnu: Add sbcl-cl-tld., guix-commits, 2021/11/16
- 06/13: gnu: Add cl-base58., guix-commits, 2021/11/16
- 05/13: gnu: Add exit-hooks., guix-commits, 2021/11/16
- 08/13: gnu: Add cxml-rng., guix-commits, 2021/11/16
- 12/13: gnu: Add vernacular., guix-commits, 2021/11/16
- 07/13: gnu: Add bit-smasher., guix-commits, 2021/11/16
- 09/13: gnu: Add overlord., guix-commits, 2021/11/16
- 10/13: gnu: Add xpath., guix-commits, 2021/11/16
- 11/13: gnu: Add fxml., guix-commits, 2021/11/16