mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
guix: self: Do not install (gnu system install).
As we do not want to add a dependency to newt and the graphical installer in (guix self), do not install (gnu system install). * guix/self.scm (*system-modules*): Remove (gnu system install) from "guix-system" scheme-node.
This commit is contained in:
parent
2e7addd20b
commit
16006a05a1
1 changed files with 5 additions and 2 deletions
|
@ -604,7 +604,11 @@ (define *system-modules*
|
|||
(scheme-node "guix-system"
|
||||
`((gnu system)
|
||||
(gnu services)
|
||||
,@(scheme-modules* source "gnu/system")
|
||||
,@(filter-map
|
||||
(match-lambda
|
||||
(('gnu 'system 'install) #f)
|
||||
(name name))
|
||||
(scheme-modules* source "gnu/system"))
|
||||
,@(scheme-modules* source "gnu/services"))
|
||||
(list *core-package-modules* *package-modules*
|
||||
*extra-modules* *core-modules*)
|
||||
|
@ -806,7 +810,6 @@ (define %libz
|
|||
;; made relative to a nonexistent anonymous module.
|
||||
#:splice? #t))
|
||||
|
||||
|
||||
|
||||
;;;
|
||||
;;; Building.
|
||||
|
|
Loading…
Reference in a new issue