[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#28377] [PATCH 03/10] services: base: Import the closure of (gnu bui
From: |
Ludovic Courtès |
Subject: |
[bug#28377] [PATCH 03/10] services: base: Import the closure of (gnu build file-systems). |
Date: |
Thu, 7 Sep 2017 00:17:49 +0200 |
* 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 5001298ab..23ef2d4bf 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
--
2.14.1
- [bug#28377] [PATCH 02/10] file-systems: Add UUID type dictionaries., (continued)
[bug#28377] [PATCH 08/10] uuid: 'uuid' macro supports more UUID types., Ludovic Courtès, 2017/09/06
[bug#28377] [PATCH 09/10] vm: Allow users to specify a UUID for the root partition., Ludovic Courtès, 2017/09/06
[bug#28377] [PATCH 06/10] system: Introduce a disjoint UUID type., Ludovic Courtès, 2017/09/06
[bug#28377] [PATCH 04/10] file-systems: Introduce (gnu system uuid)., Ludovic Courtès, 2017/09/06
[bug#28377] [PATCH 03/10] services: base: Import the closure of (gnu build file-systems).,
Ludovic Courtès <=
[bug#28377] [PATCH 05/10] services: file-system: Use 'file-system->spec'., Ludovic Courtès, 2017/09/06
[bug#28377] [PATCH 10/10] vm: Generate a UUID to identify the root file system., Ludovic Courtès, 2017/09/06
[bug#28377] [PATCH 07/10] system: Serialize the UUID type in the "parameters" file., Ludovic Courtès, 2017/09/06