diff options
author | Kei Kebreau <kkebreau@posteo.net> | 2018-01-20 15:42:00 -0500 |
---|---|---|
committer | Kei Kebreau <kkebreau@posteo.net> | 2018-01-20 21:48:47 -0500 |
commit | 75033216ea9f7583d113e999f7b8ce30bbef2bca (patch) | |
tree | 176e6c39d924e677c631bea78acbd868450cc7ca /gnu/packages/lisp.scm | |
parent | 7c291296955ed926377810cb61e251a808f98717 (diff) | |
download | guix-75033216ea9f7583d113e999f7b8ce30bbef2bca.tar guix-75033216ea9f7583d113e999f7b8ce30bbef2bca.tar.gz |
gnu: clisp: Fix build with glibc 2.26.
* gnu/packages/patches/clisp-glibc-2.26.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/lisp.scm (clisp)[source]: Use it.
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 8427a19714..10c49e0c0c 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -262,7 +262,8 @@ supporting ASDF, Sockets, Gray streams, MOP, and other useful components.") (file-name (string-append name "-" version "-checkout")) (sha256 (base32 "0qjv3z274rbdmb941hy03hl63f4z7bmci234f8dyz4skgfr82d3i")) - (patches (search-patches "clisp-remove-failing-test.patch")))) + (patches (search-patches "clisp-glibc-2.26.patch" + "clisp-remove-failing-test.patch")))) (build-system gnu-build-system) (inputs `(("libffcall" ,libffcall) ("ncurses" ,ncurses) |