Browse Source
linux-container: Use 'source-module-closure' when generating the script.
* gnu/system/linux-container.scm (container-script)[script]: Use
'source-module-closure' in 'with-imported-modules' form.
version-0.12.0
Ludovic Courtès
6 years ago
No known key found for this signature in database
GPG Key ID: 90B11993D9AEBB5
1 changed files with
5 additions and
8 deletions
-
gnu/system/linux-container.scm
|
|
@ -1,5 +1,6 @@ |
|
|
|
;;; GNU Guix --- Functional package management for GNU |
|
|
|
;;; Copyright © 2015 David Thompson <davet@gnu.org> |
|
|
|
;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org> |
|
|
|
;;; |
|
|
|
;;; This file is part of GNU Guix. |
|
|
|
;;; |
|
|
@ -24,6 +25,7 @@ |
|
|
|
#:use-module (guix gexp) |
|
|
|
#:use-module (guix derivations) |
|
|
|
#:use-module (guix monads) |
|
|
|
#:use-module (guix modules) |
|
|
|
#:use-module (gnu build linux-container) |
|
|
|
#:use-module (gnu services) |
|
|
|
#:use-module (gnu system) |
|
|
@ -87,14 +89,9 @@ that will be shared with the host system." |
|
|
|
#:container? #t))) |
|
|
|
|
|
|
|
(define script |
|
|
|
(with-imported-modules '((guix config) |
|
|
|
(guix utils) |
|
|
|
(guix combinators) |
|
|
|
(guix build utils) |
|
|
|
(guix build syscalls) |
|
|
|
(guix build bournish) |
|
|
|
(gnu build file-systems) |
|
|
|
(gnu build linux-container)) |
|
|
|
(with-imported-modules (source-module-closure |
|
|
|
'((guix build utils) |
|
|
|
(gnu build linux-container))) |
|
|
|
#~(begin |
|
|
|
(use-modules (gnu build linux-container) |
|
|
|
(guix build utils)) |
|
|
|