parameters.scm 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
  3. ;;;
  4. ;;; This file is part of GNU Guix.
  5. ;;;
  6. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 3 of the License, or (at
  9. ;;; your option) any later version.
  10. ;;;
  11. ;;; GNU Guix is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;;; GNU General Public License for more details.
  15. ;;;
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  18. (define-module (gnu installer newt parameters)
  19. #:use-module (gnu installer proxy)
  20. #:use-module (gnu installer steps)
  21. #:use-module (gnu installer newt page)
  22. #:use-module (guix i18n)
  23. #:use-module (ice-9 match)
  24. #:use-module (newt)
  25. #:export (run-parameters-page))
  26. (define (run-proxy-page)
  27. (define proxy
  28. (run-input-page (G_ "Please enter the HTTP proxy URL. If you enter an \
  29. empty string, proxy usage will be disabled.")
  30. (G_ "HTTP proxy configuration")
  31. #:allow-empty-input? #t))
  32. (if (string=? proxy "")
  33. (clear-http-proxy)
  34. (set-http-proxy proxy)))
  35. (define (run-parameters-page keyboard-layout-selection)
  36. "Run a parameters page allowing to change the keyboard layout"
  37. (let* ((items
  38. (list
  39. (cons (G_ "Change keyboard layout") keyboard-layout-selection)
  40. (cons (G_ "Configure HTTP proxy") run-proxy-page)))
  41. (result
  42. (run-listbox-selection-page
  43. #:info-text (G_ "Please choose one of the following parameters or \
  44. press ‘Back’ to go back to the installation process.")
  45. #:title (G_ "Installation parameters")
  46. #:listbox-items items
  47. #:listbox-item->text car
  48. #:sort-listbox-items? #f
  49. #:listbox-height 6
  50. #:button-text (G_ "Back"))))
  51. (match result
  52. ((_ . proc)
  53. (proc))
  54. (_ #f))))