diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2024-08-26 10:32:34 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2024-08-26 11:04:27 +0200 |
commit | c0a223c7c2c101e455ebae9e6868b871a7e90682 (patch) | |
tree | 69f6fb2402faba580465f442541ac274b7f84b57 /gnu/packages/lisp-xyz.scm | |
parent | a91ac0dea81b95010612abd42872b3a98eb75c79 (diff) | |
download | guix-c0a223c7c2c101e455ebae9e6868b871a7e90682.tar.gz guix-c0a223c7c2c101e455ebae9e6868b871a7e90682.zip |
gnu: cl-s-sysdeps: Add support for bordeaux-threads-2.
This is required to fix the build of cl-prevalence with cl-usocket-0.8.8.
* gnu/packages/patches/sbcl-s-sysdeps-bt2.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/lisp-xyz.scm (sbcl-s-sysdeps)[source]: Use it.
Change-Id: I6addc042e16f71b55a2125c1f8eb313023ada411
Diffstat (limited to 'gnu/packages/lisp-xyz.scm')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 1b684c61bd..1e7825fdb7 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -25144,10 +25144,12 @@ Rucksack with some enhancements.") (uri (git-reference (url home-page) (commit commit))) - (file-name (git-file-name name version)) + (file-name (git-file-name "cl-s-sysdeps" version)) (sha256 (base32 - "0rp81iq0rgl48qdwbmfy89glga81hmry2lp8adjbr5h5ybr92b4n")))) + "0rp81iq0rgl48qdwbmfy89glga81hmry2lp8adjbr5h5ybr92b4n")) + (patches + (search-patches "sbcl-s-sysdeps-bt2.patch")))) (inputs (list sbcl-bordeaux-threads sbcl-usocket)) (synopsis "Common Lisp abstraction layer over platform dependent functionality") |