;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017 David Craven ;;; Copyright © 2017, 2020 Mathieu Othacehe ;;; Copyright © 2017 Leo Famulari ;;; Copyright © 2019 Ludovic Courtès ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-10-23 15:26:18 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-10-24 01:07:39 +0200
commita89d08496d7a70db68c1eb26c2709a3abba3c029 (patch)
treeedb269769ed90ea05d7a9ebcbb70a9c60d877b99 /gnu/packages/xorg.scm
parent4d748d344bb1891e2e32bf15db24131703d2f78c (diff)
downloadguix-a89d08496d7a70db68c1eb26c2709a3abba3c029.tar.gz
guix-a89d08496d7a70db68c1eb26c2709a3abba3c029.zip
gnu: monolith: Update to 2.7.0.
* gnu/packages/web.scm (monolith): Update to 2.7.0. [arguments]<#:cargo-inputs>: Update requirements for rust-clap, rust-cssparser, rust-percent-encoding, rust-sha2. Add rust-percent-encoding-2. <#:cargo-development-inputs>: Update requirements for rust-assert-cmd. Change-Id: Ib506412fe5ec0610839d95144aacc12335bff895
Diffstat (limited to 'gnu/packages/xorg.scm')
0 files changed, 0 insertions, 0 deletions
Bootloader configuration record. ;;; ;; The record contains bootloader independant ;; configuration used to fill bootloader configuration file. (define-record-type* bootloader-configuration make-bootloader-configuration bootloader-configuration? (bootloader bootloader-configuration-bootloader) ; (target bootloader-configuration-target ;string (default #f)) (menu-entries bootloader-configuration-menu-entries ;list of (default '())) (default-entry bootloader-configuration-default-entry ;integer (default 0)) (timeout bootloader-configuration-timeout ;seconds as integer (default 5)) (keyboard-layout bootloader-configuration-keyboard-layout ; | #f (default #f)) (theme bootloader-configuration-theme ;bootloader-specific theme (default #f)) (terminal-outputs bootloader-configuration-terminal-outputs ;list of symbols (default '(gfxterm))) (terminal-inputs bootloader-configuration-terminal-inputs ;list of symbols (default '())) (serial-unit bootloader-configuration-serial-unit ;integer | #f (default #f)) (serial-speed bootloader-configuration-serial-speed ;integer | #f (default #f))) ;;; ;;; Bootloaders. ;;; (define (bootloader-modules) "Return the list of bootloader modules." (all-modules (map (lambda (entry) `(,entry . "gnu/bootloader")) %load-path) #:warn warn-about-load-error)) (define %bootloaders ;; The list of publically-known bootloaders. (delay (fold-module-public-variables (lambda (obj result) (if (bootloader? obj) (cons obj result) result)) '() (bootloader-modules)))) (define (lookup-bootloader-by-name name) "Return the bootloader called NAME." (or (find (lambda (bootloader) (eq? name (bootloader-name bootloader))) (force %bootloaders)) (leave (G_ "~a: no such bootloader~%") name)))