1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-28 03:51:53 +02:00

gnu: cl-xkbcommon: Update to 0.2.0.

* gnu/packages/lisp-xyz.scm (cl-xkbcommon): Update to 0.2.0.
Change-Id: I6ce2c9115ad6b1b0926dcceae83270ffaa1dc4d8
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Stuart Dilts
2025-12-20 23:53:45 -07:00
committed by jgart
parent 4281704a25
commit 228154a5bd
+31 -33
View File
@@ -34550,40 +34550,38 @@ arrangements.")
(sbcl-package->clasp-package sbcl-xhtmlambda)) (sbcl-package->clasp-package sbcl-xhtmlambda))
(define-public sbcl-xkbcommon (define-public sbcl-xkbcommon
(let ((commit "aa9513d93f42d7816f88dd1bd8bd21375e7d7512") (package
(revision "0")) (name "sbcl-xkbcommon")
(package (version "0.2.0")
(name "sbcl-xkbcommon") (source
(version (git-version "0.0.0" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://github.com/sdilts/cl-xkbcommon")
(uri (git-reference (commit version)))
(url "https://github.com/sdilts/cl-xkbcommon") (file-name (git-file-name "cl-xkbcommon" version))
(commit commit))) (sha256
(file-name (git-file-name "cl-xkbcommon" version)) (base32 "0qkaamc8sikpn2q6z21s8249sygszj6bhd0slr8f77k9c2ph1mbb"))))
(sha256 (build-system asdf-build-system/sbcl)
(base32 "02zdbkh7yliw9vg8i8wx2xgcpfni0fr4z0w19kkxvaib8xm9rx1q")))) (arguments
(build-system asdf-build-system/sbcl) (list #:phases
(arguments #~(modify-phases %standard-phases
(list #:phases (add-after 'unpack 'fix-paths
#~(modify-phases %standard-phases (lambda* (#:key inputs #:allow-other-keys)
(add-after 'unpack 'fix-paths (substitute* "xkbcommon.lisp"
(lambda* (#:key inputs #:allow-other-keys) (("libxkbcommon.so.0")
(substitute* "xkbcommon.lisp" (search-input-file inputs "/lib/libxkbcommon.so"))))))))
(("libxkbcommon.so.0") (native-inputs
(search-input-file inputs "/lib/libxkbcommon.so")))))))) (list pkg-config))
(native-inputs (inputs
(list pkg-config)) (list libxkbcommon
(inputs sbcl-cffi))
(list libxkbcommon (home-page "https://github.com/sdilts/cl-xkbcommon")
sbcl-cffi)) (synopsis "Common Lisp FFI bindings for xkbcommon")
(home-page "https://github.com/sdilts/cl-xkbcommon") (description
(synopsis "Common Lisp FFI bindings for xkbcommon") "This package provides Common Lisp FFI bindings for xkbcommon
(description
"This package provides Common Lisp FFI bindings for xkbcommon
(libxkbcommon) using cffi-grovel.") (libxkbcommon) using cffi-grovel.")
(license license:expat)))) (license license:expat)))
(define-public cl-xkbcommon (define-public cl-xkbcommon
(sbcl-package->cl-source-package sbcl-xkbcommon)) (sbcl-package->cl-source-package sbcl-xkbcommon))