;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018, 2020 Mathieu Othacehe ;;; Copyright © 2020 Florian Pelz ;;; ;;; 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 record) #:use-module (guix records) #:use-module (srfi srfi-1) #:export ( installer make-installer installer? installer-name installer-init installer-exit installer-exit-error installer-final-page installer-keymap-page installer-locale-page installer-menu-page installer-network-page installer-timezone-page installer-hostname-page installer-user-page installer-partition-page installer-services-page installer-welcome-page installer-parameters-menu installer-parameters-page)) ;;; ;;; Installer record. ;;; ;; The record contains pages that will be run to prompt the user ;; for the system configuration. The goal of the installer is to produce a ;; complete record and install it. (define-record-type* installer make-installer installer? ;; symbol (name installer-name) ;; procedure: void -> void (init installer-init) ;; procedure: void -> void (exit installer-exit) ;; procedure (key arguments) -> void (exit-error installer-exit-error) ;; procedure void -> void (final-page installer-final-page) ;; procedure (layouts context) -> (list layout variant options) (keymap-page installer-keymap-page) ;; procedure: (#:key supported-locales iso639-languages iso3166-territories) ;; -> glibc-locale (locale-page installer-locale-page) ;; procedure: (steps) -> step-id (menu-page installer-menu-page) ;; procedure void -> void (network-page installer-network-page) ;; procedure (zonetab) -> posix-timezone (timezone-page installer-timezone-page) ;; procedure void -> void (hostname-page installer-hostname-page) ;; procedure void -> void (user-page installer-user-page) ;; procedure void -> void (partition-page installer-partition-page) ;; procedure void -> void (services-page installer-services-page) ;; procedure (logo) -> void (welcome-page installer-welcome-page) ;; procedure (menu-proc) -> void (parameters-menu installer-parameters-menu) ;; procedure (keyboard-layout-selection) -> void (parameters-page installer-parameters-page)) f5fcb1301'>gnu: toot: Update to 0.36.0....* gnu/packages/mastodon.scm (toot): Update to 0.36.0. Efraim Flashner 2023-03-08gnu: toot: Update to 0.35.0....* gnu/packages/mastodon.scm (toot): Update to 0.35.0. Efraim Flashner 2022-12-18gnu: toot: Update to 0.32.1....* gnu/packages/mastodon.scm (toot): Update to 0.32.1. Efraim Flashner 2022-12-06gnu: toot: Update to 0.30.1....* gnu/packages/mastodon.scm (toot): Update to 0.30.1. [arguments]: Add a phase to remove integration tests. Efraim Flashner 2022-01-05gnu: tootle: Remove trailing #t in phases....* gnu/packages/mastodon.scm (tootle)[arguments]: Remove trailing #t. Ludovic Courtès 2022-01-05gnu: tootle: Simplify inputs....* gnu/packages/mastodon.scm (tootle)[native-inputs]: Simplify. Ludovic Courtès 2022-01-05gnu: tootle: Fix build....* gnu/packages/patches/tootle-glib-object-naming.patch, gnu/packages/patches/tootle-reason-phrase.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. * gnu/packages/mastodon.scm (tootle)[source]: Use them. [inputs]: Use LIBSOUP-MINIMAL-2 instead of LIBSOUP. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Taiju HIGASHI 2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès 2021-12-05Merge remote-tracking branch 'origin/master' into core-updates-frozenRicardo Wurmus 2021-11-26gnu: toot: Honor the #:tests? flag....* gnu/packages/mastodon.scm (toot)[arguments]: Adjust custom 'check phase to honor the #:tests? flag. Efraim Flashner 2021-11-26gnu: toot: Update to 0.28.0....* gnu/packages/mastodon.scm (toot): Update to 0.28.0. Efraim Flashner it was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès