diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2021-09-28 10:46:40 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2021-09-28 10:46:40 +0200 |
commit | dce9b98d5592917cc83f1f73b30eaef66211e2bc (patch) | |
tree | bd1524c6becb4487cb93c329256f508bbbb01d5c /gnu/packages/lisp-xyz.scm | |
parent | 946ac3467e77c5c190f563979901ccc4ac9dacef (diff) | |
download | guix-dce9b98d5592917cc83f1f73b30eaef66211e2bc.tar guix-dce9b98d5592917cc83f1f73b30eaef66211e2bc.tar.gz |
gnu: sbcl-png: Fix compiling with sbcl >= 2.1.6.
* gnu/packages/patches/sbcl-png-fix-sbcl-compatibility.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/lisp-xyz.scm (sbcl-png)[source]: Use it.
Diffstat (limited to 'gnu/packages/lisp-xyz.scm')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 11955c7dee..b349d44210 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -9408,7 +9408,9 @@ for reading and writing JPEG image files.") (commit commit))) (file-name (git-file-name "cl-png" version)) (sha256 - (base32 "173hqwpd0rwqf95mfx1h9l9c3i8bb0gvnpspzmmz3g5x3440czy4")))) + (base32 "173hqwpd0rwqf95mfx1h9l9c3i8bb0gvnpspzmmz3g5x3440czy4")) + ;; Patch to fix compiling with SBCL >= 2.1.6. + (patches (search-patches "sbcl-png-fix-sbcl-compatibility.patch")))) (build-system asdf-build-system/sbcl) (arguments `(#:phases |