[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: gnu: Add cl-qrencode.
From: |
guix-commits |
Subject: |
04/07: gnu: Add cl-qrencode. |
Date: |
Mon, 3 Feb 2020 11:15:05 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit 5d4d4c0179e2938e29a08b4de78dcf3763db8a75
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Mon Feb 3 14:58:16 2020 +0100
gnu: Add cl-qrencode.
* gnu/packages/lisp-xyz.scm (sbcl-cl-qrencode, cl-qrencode,
ecl-cl-qrencode):
New variables.
---
gnu/packages/lisp-xyz.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 016d363..886277a 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10129,3 +10129,34 @@ respectively.")
(define-public ecl-zpng
(sbcl-package->ecl-package sbcl-zpng))
+
+(define-public sbcl-cl-qrencode
+ (package
+ (name "sbcl-cl-qrencode")
+ (version "0.1.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jnjcc/cl-qrencode.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1l5k131dchbf6cj8a8xqa731790p01p3qa1kdy2wa9dawy3ymkxr"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ `(("lisp-unit" ,sbcl-lisp-unit)))
+ (inputs
+ `(("zpng" ,sbcl-zpng)))
+ (synopsis "QR code encoder for Common Lisp")
+ (description
+ "This Common Lisp library provides function to make QR codes and to save
+them as PNG files.")
+ (home-page "https://github.com/jnjcc/cl-qrencode")
+ (license license:gpl2+)))
+
+(define-public cl-qrencode
+ (sbcl-package->cl-source-package sbcl-cl-qrencode))
+
+(define-public ecl-cl-qrencode
+ (sbcl-package->ecl-package sbcl-cl-qrencode))
- branch master updated (a9e5e64 -> 17c015c), guix-commits, 2020/02/03
- 01/07: gnu: Add cl-salza2., guix-commits, 2020/02/03
- 02/07: gnu: Add cl-png-read., guix-commits, 2020/02/03
- 03/07: gnu: Add cl-zpng., guix-commits, 2020/02/03
- 04/07: gnu: Add cl-qrencode.,
guix-commits <=
- 06/07: gnu: sbcl-mgl-pax: Propagate the swank source package., guix-commits, 2020/02/03
- 07/07: gnu: sbcl-graph: Fix build., guix-commits, 2020/02/03
- 05/07: gnu: sbcl-cffi-bootstrap: Update to 0.21.0., guix-commits, 2020/02/03