mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: Add cl-opticl-core.
* gnu/packages/lisp-xyz.scm (sbcl-opticl-core, cl-opticl-core, ecl-opticl-core): New variables.
This commit is contained in:
parent
ec2c73b8ed
commit
fc748ff067
1 changed files with 31 additions and 0 deletions
|
@ -12466,3 +12466,34 @@ (define-public cl-freetype2
|
|||
|
||||
(define-public ecl-cl-freetype2
|
||||
(sbcl-package->ecl-package sbcl-cl-freetype2))
|
||||
|
||||
(define-public sbcl-opticl-core
|
||||
(let ((commit "b7cd13d26df6b824b216fbc360dc27bfadf04999")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "sbcl-opticl-core")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/slyrus/opticl-core")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0458bllabcdjghfrqx6aki49c9qmvfmkk8jl75cfpi7q0i12kh95"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs
|
||||
`(("alexandria" ,sbcl-alexandria)))
|
||||
(home-page "https://github.com/slyrus/opticl-core")
|
||||
(synopsis "Core classes and pixel access macros for Opticl")
|
||||
(description
|
||||
"This Common Lisp library contains the core classes and pixel access
|
||||
macros for the Opticl image processing library.")
|
||||
(license license:bsd-2))))
|
||||
|
||||
(define-public cl-opticl-core
|
||||
(sbcl-package->cl-source-package sbcl-opticl-core))
|
||||
|
||||
(define-public ecl-opticl-core
|
||||
(sbcl-package->ecl-package sbcl-opticl-core))
|
||||
|
|
Loading…
Reference in a new issue