nongnu: Adapt linux-initrd to populate-store changes.

Fixes https://gitlab.com/nonguix/nonguix/-/issues/81.
Reported-by: Jean-Baptiste Volatier.

Depends on https://git.savannah.gnu.org/cgit/guix.git/commit/?id=d88ff09.

* nonguix/modules.scm (import-nonguix-module?): New variable. Export it
instead of nonguix-module-name?.
* nongnu/system/linux-initrd.scm (microcode-initrd): Use
import-nonguix-module? instead of nonguix-module-name?.
(combined-initrd): Dito.
This commit is contained in:
Jonathan Brielmaier 2020-12-18 22:20:23 +01:00
parent 712cdf306b
commit daa0dda76d
No known key found for this signature in database
GPG key ID: ECFC83988B4E4B9F
2 changed files with 11 additions and 3 deletions

View file

@ -46,7 +46,7 @@ MICROCODE-PACKAGES, in the format expected by the kernel."
'((gnu build linux-initrd)
(guix build utils)
(nonguix build utils))
#:select? nonguix-module-name?)
#:select? import-nonguix-module?)
#~(begin
(use-modules (gnu build linux-initrd)
(guix build utils)
@ -84,7 +84,7 @@ MICROCODE-PACKAGES, in the format expected by the kernel."
(with-imported-modules (source-module-closure
'((guix build utils)
(nonguix build utils))
#:select? nonguix-module-name?)
#:select? import-nonguix-module?)
#~(begin
(use-modules (guix build utils)
(nonguix build utils))

View file

@ -15,7 +15,7 @@
(define-module (nonguix modules)
#:use-module (ice-9 match)
#:export (nonguix-module-name?))
#:export (import-nonguix-module?))
(define (nonguix-module-name? name)
"Return true if NAME (a list of symbols) denotes a Guix or Nonguix module."
@ -25,3 +25,11 @@
(('nonguix _ ...) #t)
(('nongnu _ ...) #t)
(_ #f)))
;; Since we don't use deduplication support in 'populate-store', don't
;; import (guix store deduplication) and its dependencies, which
;; includes Guile-Gcrypt.
(define (import-nonguix-module? module)
"Return true if MODULE is not (guix store deduplication)"
(and (nonguix-module-name? module)
(not (equal? module '(guix store deduplication)))))