diff options
author | Sergei Trofimovich <slyfox@inbox.ru> | 2017-05-08 20:55:49 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2017-05-09 17:52:39 +0200 |
commit | f0b7dc7edea730e9648b58cc0e651678a843e490 (patch) | |
tree | fd06f48fda00b9dc22d296d82e47b0b0f0d75eff /gnu/packages/lisp.scm | |
parent | 1d698a8ba6b3e21d4975f9c14f1a10ce7e9d9ea4 (diff) | |
download | patches-f0b7dc7edea730e9648b58cc0e651678a843e490.tar patches-f0b7dc7edea730e9648b58cc0e651678a843e490.tar.gz |
gnu: sbcl: Add missing '#:modules' imports.
Fixes <https://bugs.gnu.org/26843>.
* gnu/packages/lisp.scm (sbcl): Add missing '#:modules' imports.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 43d9c9c9fc..57d0191b70 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -283,7 +283,10 @@ an interpreter, a compiler, a debugger, and much more.") ("texlive" ,texlive) ("texinfo" ,texinfo))) (arguments - '(#:phases + '(#:modules ((guix build gnu-build-system) + (guix build utils) + (srfi srfi-1)) + #:phases (modify-phases %standard-phases (delete 'configure) (add-before 'build 'patch-unix-tool-paths |