all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#26808: [PATCH] serf: add missing '#:modules' imports
@ 2017-05-06 22:24 Sergei Trofimovich
  2017-05-07 16:13 ` Danny Milosavljevic
  0 siblings, 1 reply; 4+ messages in thread
From: Sergei Trofimovich @ 2017-05-06 22:24 UTC (permalink / raw)
  To: 26808

Notced as a 'serf' build failure:

/gnu/store/...-serf-1.3.8-guile-builder:1:2956: source expression failed
to match any pattern in form (%modify-phases phases* (delete (quote configure)))

* gnu/packages/web.scm (serf): add missing '#:modules' imports

Signed-off-by: Sergei Trofimovich <slyfox@inbox.ru>
---
 gnu/packages/web.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 7215dcbed..24141b5ec 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)
-- 
2.12.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-05-07 18:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-06 22:24 bug#26808: [PATCH] serf: add missing '#:modules' imports Sergei Trofimovich
2017-05-07 16:13 ` Danny Milosavljevic
2017-05-07 16:50   ` Sergei Trofimovich
2017-05-07 18:22     ` Danny Milosavljevic

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.