diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2020-09-12 10:04:29 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2020-09-12 11:18:57 +0200 |
commit | f596b4768fc8f4c87034e3ef7910259fc5a739b2 (patch) | |
tree | ca78f06712c6dd9b053d551e814ead0198b36a0b /gnu | |
parent | e44dd9a4e14c8009f8440b26bf4125a62e902767 (diff) | |
download | guix-f596b4768fc8f4c87034e3ef7910259fc5a739b2.tar.gz |
gnu: sbcl-cl-rdkafka: Fix build.
* gnu/packages/lisp-xyz.scm (sbcl-cl-rdkafka)[arguments]: Remove 'move-bundle' phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 081aef65e0..67cb39b24e 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -9416,15 +9416,7 @@ tables.") (substitute* "src/low-level/librdkafka-bindings.lisp" (("librdkafka" all) (string-append (assoc-ref inputs "librdkafka") "/lib/" - all))))) - (add-before 'cleanup 'move-bundle - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (actual (string-append out "/lib/sbcl/src/cl-rdkafka.fasl")) - (expected (string-append - out "/lib/sbcl/cl-rdkafka--system.fasl"))) - (copy-file actual expected) - #t)))))) + all)))))))) (inputs `(("bordeaux-threads" ,sbcl-bordeaux-threads) ("cffi" ,sbcl-cffi) |