[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/12: installer: Use a Guile-Newt snapshot that supports 'form-watch-fd
From: |
guix-commits |
Subject: |
07/12: installer: Use a Guile-Newt snapshot that supports 'form-watch-fd'. |
Date: |
Fri, 21 Feb 2020 17:08:38 -0500 (EST) |
civodul pushed a commit to branch wip-installer-test
in repository guix.
commit 925154447ede7b5a1784b91dc8d5d6605a979730
Author: Ludovic Courtès <address@hidden>
AuthorDate: Wed Jan 22 22:51:20 2020 +0100
installer: Use a Guile-Newt snapshot that supports 'form-watch-fd'.
* gnu/installer.scm (guile-newt): New variable.
---
gnu/installer.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/installer.scm b/gnu/installer.scm
index edef3fd..6c11fa6 100644
--- a/gnu/installer.scm
+++ b/gnu/installer.scm
@@ -26,6 +26,8 @@
#:use-module (guix utils)
#:use-module (guix ui)
#:use-module ((guix self) #:select (make-config.scm))
+ #:use-module (guix packages)
+ #:use-module (guix git-download)
#:use-module (gnu installer utils)
#:use-module (gnu packages admin)
#:use-module (gnu packages base)
@@ -280,6 +282,25 @@ selected keymap."
((installer-final-page current-installer)
result prev-steps))))))))
+(define guile-newt
+ ;; Guile-Newt with 'form-watch-fd'.
+ ;; TODO: Remove once a new release is out.
+ (let ((commit "b3c885d42cfac327d3531c9d064939514ce6bf12")
+ (revision "1"))
+ (package
+ (inherit (@ (gnu packages guile-xyz) guile-newt))
+ (name "guile-newt")
+ (version (git-version "0.0.1" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/mothacehe/guile-newt")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+
"02p0bi6c05699idgx6gfkljhqgi8zf09clhzx81i8wa064s70r1y")))))))
+
(define (installer-program)
"Return a file-like object that runs the given INSTALLER."
(define init-gettext
- branch wip-installer-test created (now 0699b97), guix-commits, 2020/02/21
- 03/12: installer: Add 'syslog' macro to write to syslog., guix-commits, 2020/02/21
- 04/12: installer: Log important bits to syslog., guix-commits, 2020/02/21
- 06/12: tests: 'run-basic-test' can enter a root password., guix-commits, 2020/02/21
- 05/12: tests: Factorize LUKS passphrase., guix-commits, 2020/02/21
- 09/12: installer: Bypass connectivity check when /tmp/installer-assume-online exists., guix-commits, 2020/02/21
- 01/12: marionette: 'wait-for' procedures no longer leak a port., guix-commits, 2020/02/21
- 02/12: marionette: Provide portable US-layout keystrokes for "<" and ">"., guix-commits, 2020/02/21
- 07/12: installer: Use a Guile-Newt snapshot that supports 'form-watch-fd'.,
guix-commits <=
- 11/12: installer: Honor /tmp/installer-system-init-options., guix-commits, 2020/02/21
- 10/12: installer: Run commands without hopping through the shell., guix-commits, 2020/02/21
- 08/12: installer: Implement a dialog on /var/guix/installer-socket., guix-commits, 2020/02/21
- 12/12: tests: install: Add "gui-installed-os"., guix-commits, 2020/02/21