diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/bootloader.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/bootloader.scm b/gnu/bootloader.scm index 2c36d8c6cf..ba06de7618 100644 --- a/gnu/bootloader.scm +++ b/gnu/bootloader.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2017 David Craven <[email protected]> ;;; Copyright © 2017, 2020, 2022 Mathieu Othacehe <[email protected]> ;;; Copyright © 2017 Leo Famulari <[email protected]> -;;; Copyright © 2019, 2021 Ludovic Courtès <[email protected]> +;;; Copyright © 2019, 2021, 2023 Ludovic Courtès <[email protected]> ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <[email protected]> ;;; Copyright © 2022 Josselin Poiret <[email protected]> ;;; Copyright © 2022 Reza Alizadeh Majd <[email protected]> @@ -335,7 +335,7 @@ FILES may contain file like objects produced by procedures like plain-file, local-file, etc., or package contents produced with file-append. HOOKS lists additional hook functions to modify the profile." - (define (efi-bootloader-profile-hook manifest) + (define* (efi-bootloader-profile-hook manifest #:optional system) (define build (with-imported-modules '((guix build utils)) #~(begin @@ -383,6 +383,7 @@ HOOKS lists additional hook functions to modify the profile." (gexp->derivation "efi-bootloader-profile" build + #:system system #:local-build? #t #:substitutable? #f #:properties |