[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/07: gnu: Add cl-zpng.
From: |
guix-commits |
Subject: |
03/07: gnu: Add cl-zpng. |
Date: |
Mon, 3 Feb 2020 11:15:05 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit 7b875e4efdbc50f321d7ee0b1ed1b74af289e660
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Mon Feb 3 14:39:07 2020 +0100
gnu: Add cl-zpng.
* gnu/packages/lisp-xyz.scm (sbcl-zpng, cl-zpng, ecl-zpng): New variables.
---
gnu/packages/lisp-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 5f36b5d..016d363 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10102,3 +10102,30 @@ respectively.")
(define-public ecl-png-read
(sbcl-package->ecl-package sbcl-png-read))
+
+(define-public sbcl-zpng
+ (package
+ (name "sbcl-zpng")
+ (version "1.2.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/xach/zpng.git")
+ (commit (string-append "release-" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0b3ag3jhl3z7kdls3ahdsdxsfhhw5qrizk769984f4wkxhb69rcm"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("salza2" ,sbcl-salza2)))
+ (synopsis "PNG encoder for Common Lisp")
+ (description "This is a Common Lisp library for creating PNG images.")
+ (home-page "https://www.xach.com/lisp/zpng/")
+ (license license:bsd-2)))
+
+(define-public cl-zpng
+ (sbcl-package->cl-source-package sbcl-zpng))
+
+(define-public ecl-zpng
+ (sbcl-package->ecl-package sbcl-zpng))
- 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 <=
- 04/07: gnu: Add cl-qrencode., guix-commits, 2020/02/03
- 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