;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2024 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 (gnu installer kernel) #:use-module (gnu system hurd) #:use-module (guix read-print) #:export (kernel->configuration)) (define-syntax-rule (G_ str) ;; In this file, translatable strings are annotated with 'G_' so xgettext ;; catches them, but translation happens later on at run time. str) (define (kernel->configuration kernel dry-run?) (if (equal? kernel "Hurd") `((kernel %hurd-default-operating-system-kernel) ,(comment (G_ ";; \"noide\" disables the gnumach IDE driver, enabling rumpdisk.\n")) (kernel-arguments '("noide")) (firmware '()) (hurd hurd) (locale-libcs (list glibc/hurd)) (name-service-switch #f) (essential-services (hurd-default-essential-services this-operating-system)) (privileged-programs '()) (setuid-programs %setuid-programs/hurd)) '())) ='bb118f20fe6581a4acbd3799ed31ab0d21e72e78'/>
AgeCommit message (Expand)Author
2021-04-29gnu: nano: Update to 5.7....* gnu/packages/nano.scm (nano): Update to 5.7. Efraim Flashner
2021-03-04gnu: nano: Update to 5.6.1....* gnu/packages/nano.scm (nano): Update to 5.6.1. Tobias Geerinckx-Rice
2021-02-24gnu: nano: Update to 5.6....* gnu/packages/nano.scm (nano): Update to 5.6. Tobias Geerinckx-Rice
2021-01-14gnu: nano: Update to 5.5....* gnu/packages/nano.scm (nano): Update to 5.5. Tobias Geerinckx-Rice
2020-12-02gnu: nano: Update to 5.4....* gnu/packages/nano.scm (nano): Update to 5.4. Efraim Flashner