;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Mathieu Othacehe ;;; ;;; 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 newt menu) #:use-module (gnu installer steps) #:use-module (gnu installer newt page) #:use-module (guix i18n) #:use-module (newt) #:export (run-menu-page)) (define (run-menu-page steps) "Run a menu page, asking the user to select where to resume the install process from." (define (steps->items steps) (filter (lambda (step) (installer-step-description step)) steps)) (run-listbox-selection-page #:info-text (G_ "Choose where you want to resume the install. \ You can also abort the installation by pressing the Abort button.") #:title (G_ "Installation menu") #:listbox-items (steps->items steps) #:listbox-item->text installer-step-description #:sort-listbox-items? #f #:button-text (G_ "Abort") #:button-callback-procedure (lambda () (newt-finish) (primitive-exit 1)))) aee2f5d31'/>
AgeCommit message (Expand)Author
2024-10-19gnu: Add asm6f....* gnu/packages/assembly.scm (asm6f): New variable. Change-Id: Ib1c79dce8392bf11aa93d5741b5b61e03f0aa7ed Maxim Cournoyer
2024-08-28gnu: xa: Fix cross-compilation....* gnu/packages/assembly.scm (xa)[arguments]<#:make-flags>: Use cc-for-target. Change-Id: I5454e9c5091bdae95d88b9cdf0b402a89e2ff1f9 Zheng Junjie
2024-08-28gnu: xa: Enable tests....* gnu/packages/assembly.scm (xa) [arguments]: Enable tests. Change-Id: I1866b367fc58542d5c2ae90b82f89b218c0ffa1f Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Artyom V. Poptsov
2024-08-28gnu: xa: Update to 2.4.1....* gnu/packages/assembly.scm (xa): Update to 2.4.1. Change-Id: I7c35a546c5ace3083a28a1bb4ba713dde1e5884b Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Artyom V. Poptsov
2024-08-14gnu: cpu-features: Fix cross-compilation....* gnu/packages/assembly.scm (cpu-features)[arguments]<#:configure-flags>: When cross-compilation, set CMAKE_SYSTEM_PROCESSOR. Change-Id: I8b6f9bdeac66b85ab273f81a320e4b8e0d69b5d0 Signed-off-by: Christopher Baines <mail@cbaines.net> Zheng Junjie
2024-06-26gnu: Add cpu-features....* gnu/packages/assembly.scm (cpu-features): New variable. Change-Id: I9f3e0340024dbdbfb6f2f2a7e0820d71e5e5ba84 Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Andy Tai
2024-06-24gnu: rgbds: Update to 0.7.0....* gnu/packages/assembly.scm (rgbds): Update to 0.7.0. Change-Id: I992e7081fdf5816cba4f0b7437e513734f554a73 Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Felix Gruber
2024-06-20gnu: simde: Update to 0.8.2....* gnu/packages/assembly.scm (simde): Update to 0.8.2. Change-Id: I07f8323ded34bb855fe2315f8d9c7822efe26719 Signed-off-by: jgart <jgart@dismail.de> 宋文武
2024-06-02gnu: asl: Update to 1.42-beta-267....* gnu/packages/assembly.scm (asl): Update to 1.42-beta-267. Change-Id: I47bddede842f3d63f993a93965df0f0302ef45d1 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Simon South