guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/10: services: base: Import the closure of (gnu build file-systems).


From: Ludovic Courtès
Subject: 03/10: services: base: Import the closure of (gnu build file-systems).
Date: Mon, 11 Sep 2017 16:52:34 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 943e1b975fd0c44b2eaacec26df59e24ba9ef455
Author: Ludovic Courtès <address@hidden>
Date:   Tue Sep 5 21:47:08 2017 +0200

    services: base: Import the closure of (gnu build file-systems).
    
    * gnu/services/base.scm (file-system-shepherd-service): Use
    'source-module-closure' in the 'with-imported-modules' form.
---
 gnu/services/base.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 5001298..23ef2d4 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -47,6 +47,7 @@
                 #:select (mount-flags->bit-mask))
   #:use-module (guix gexp)
   #:use-module (guix records)
+  #:use-module (guix modules)
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-26)
   #:use-module (ice-9 match)
@@ -286,8 +287,8 @@ FILE-SYSTEM."
         (dependencies (file-system-dependencies file-system))
         (packages (file-system-packages (list file-system))))
     (and (file-system-mount? file-system)
-         (with-imported-modules '((gnu build file-systems)
-                                  (guix build bournish))
+         (with-imported-modules (source-module-closure
+                                 '((gnu build file-systems)))
            (shepherd-service
             (provision (list (file-system->shepherd-service-name file-system)))
             (requirement `(root-file-system



reply via email to

[Prev in Thread] Current Thread [Next in Thread]