diff options
author | Sergei Trofimovich <slyfox@inbox.ru> | 2017-05-06 23:24:08 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2017-05-07 20:22:01 +0200 |
commit | bba6bbba03006fe47eea8254a69dd0f824e91b6f (patch) | |
tree | 0a576eb66266448893404a1ce90d3b3bb5f37db5 /gnu | |
parent | 7cfc200365f3c14f35aa5ebc5a1f1f7c36679e99 (diff) | |
download | patches-bba6bbba03006fe47eea8254a69dd0f824e91b6f.tar patches-bba6bbba03006fe47eea8254a69dd0f824e91b6f.tar.gz |
gnu: serf: Add missing '#:modules' imports.
Fixes <https://bugs.gnu.org/26808>.
* gnu/packages/web.scm (serf): Add missing '#:modules' imports.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/web.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 7215dcbed1..24141b5ecf 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -832,7 +832,10 @@ from streaming URLs. It is a command-line wrapper for the libquvi library.") ;;("gss" ,gss) ("zlib" ,zlib))) (arguments - `(#:phases + `(#:modules ((guix build gnu-build-system) + (guix build utils) + (srfi srfi-1)) + #:phases ;; TODO: Add scons-build-system and use it here. (modify-phases %standard-phases (delete 'configure) |