mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-13 18:36:14 -05:00
gnu: Add cl-zpng.
* gnu/packages/lisp-xyz.scm (sbcl-zpng, cl-zpng, ecl-zpng): New variables.
This commit is contained in:
parent
d165821ecc
commit
7b875e4efd
1 changed files with 27 additions and 0 deletions
|
@ -10102,3 +10102,30 @@ (define-public cl-png-read
|
|||
|
||||
(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))
|
||||
|
|
Loading…
Reference in a new issue