mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: cl-clx: Update to 0.7.5-1.3840045.
* gnu/packages/lisp-xyz.scm (sbcl-clx): Update to 0.7.5-1.3840045. [native-inputs]: Add xorg-server-for-tests. [arguments]: Add 'prepare-test-environment' phase.
This commit is contained in:
parent
57a0637414
commit
da16d56773
1 changed files with 29 additions and 21 deletions
|
@ -1905,30 +1905,38 @@ files.")
|
||||||
(sbcl-package->cl-source-package sbcl-cl-pdf))
|
(sbcl-package->cl-source-package sbcl-cl-pdf))
|
||||||
|
|
||||||
(define-public sbcl-clx
|
(define-public sbcl-clx
|
||||||
(package
|
(let ((commit "38400456d66823e417d1d27d339b09885e25eb59")
|
||||||
(name "sbcl-clx")
|
(revision "1"))
|
||||||
(version "0.7.5")
|
(package
|
||||||
(source
|
(name "sbcl-clx")
|
||||||
(origin
|
(version (git-version "0.7.5" revision commit))
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri
|
(origin
|
||||||
(git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/sharplispers/clx")
|
(uri
|
||||||
(commit version)))
|
(git-reference
|
||||||
(sha256
|
(url "https://github.com/sharplispers/clx")
|
||||||
(base32
|
(commit commit)))
|
||||||
"1vi67z9hpj5rr4xcmfbfwzmlcc0ah7hzhrmfid6lqdkva238v2wf"))
|
(sha256
|
||||||
(file-name (string-append "clx-" version))))
|
(base32 "1c05gjqh5lil2sgma0yap4mxd9y1cjkp933hyx1iaj14950nhfnl"))
|
||||||
(build-system asdf-build-system/sbcl)
|
(file-name (git-file-name "cl-clx" version))))
|
||||||
(native-inputs
|
(build-system asdf-build-system/sbcl)
|
||||||
(list sbcl-fiasco))
|
(native-inputs
|
||||||
(home-page "https://www.cliki.net/portable-clx")
|
(list sbcl-fiasco xorg-server-for-tests))
|
||||||
(synopsis "X11 client library for Common Lisp")
|
(arguments
|
||||||
(description "CLX is an X11 client library for Common Lisp. The code was
|
(list #:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'prepare-test-environment
|
||||||
|
(lambda _
|
||||||
|
(system "Xvfb :1 &")
|
||||||
|
(setenv "DISPLAY" ":1"))))))
|
||||||
|
(home-page "https://www.cliki.net/portable-clx")
|
||||||
|
(synopsis "X11 client library for Common Lisp")
|
||||||
|
(description "CLX is an X11 client library for Common Lisp. The code was
|
||||||
originally taken from a CMUCL distribution, was modified somewhat in order to
|
originally taken from a CMUCL distribution, was modified somewhat in order to
|
||||||
make it compile and run under SBCL, then a selection of patches were added
|
make it compile and run under SBCL, then a selection of patches were added
|
||||||
from other CLXes around the net.")
|
from other CLXes around the net.")
|
||||||
(license license:x11)))
|
(license license:x11))))
|
||||||
|
|
||||||
(define-public cl-clx
|
(define-public cl-clx
|
||||||
(sbcl-package->cl-source-package sbcl-clx))
|
(sbcl-package->cl-source-package sbcl-clx))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue