dannym pushed a commit to branch core-updates
in repository guix.

commit 809bc3948e2441daae32dfd1beb6c1984b840315
Author: Sergei Trofimovich <[email protected]>
Date:   Sat May 6 16:40:35 2017 +0100

    gnu: gs-fonts: Add missing module imports.
    
    Fixes <https://bugs.gnu.org/26805>.
    
    * gnu/packages/ghostscript.scm (gs-fonts): Add missing modules to
    %modify-phases call: gnu-build-system, utils, srfi-1.
    
    Signed-off-by: Danny Milosavljevic <[email protected]>
---
 gnu/packages/ghostscript.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm
index 076046e..33b8f51 100644
--- a/gnu/packages/ghostscript.scm
+++ b/gnu/packages/ghostscript.scm
@@ -273,6 +273,10 @@ architecture.")
    (build-system gnu-build-system)
    (arguments
     `(#:tests? #f ; nothing to check, just files to copy
+
+      #:modules ((guix build gnu-build-system)
+                 (guix build utils)
+                 (srfi srfi-1))
       #:phases
       (modify-phases %standard-phases
         (delete 'configure)

Reply via email to