diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-04-22 14:09:40 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-04-22 14:09:40 +0900 |
commit | c6ee7b0f79632d50ad491b75c240547be8f40c31 (patch) | |
tree | 966f1b2cf4c748d683b8e7b63183f022350ec374 | |
parent | 61bfe02ea0d2baebaf8339d5d6e93763694fdb2c (diff) | |
download | guix-c6ee7b0f79632d50ad491b75c240547be8f40c31.tar.gz guix-c6ee7b0f79632d50ad491b75c240547be8f40c31.zip |
tests: Fix failing 'guix-system-tests' derivation during 'guix pull'.
I have no idea why using specifications->packages in a system test OS breaks
this derivation; it'd be nice to find out.
* gnu/tests/messaging.scm (%pounce-os): Do not use `specifications->packages'.
Reported-by: Ada Stevenson <adanskana@gmail.com>
Reported-by: Ian Eure <ian@retrospec.tv>
Change-Id: Iea727bedecff7a140f895e456ef01503ad11dad0
-rw-r--r-- | gnu/tests/messaging.scm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gnu/tests/messaging.scm b/gnu/tests/messaging.scm index e004f160f9..8df67433a7 100644 --- a/gnu/tests/messaging.scm +++ b/gnu/tests/messaging.scm @@ -32,6 +32,7 @@ #:use-module (gnu packages) #:use-module (gnu packages irc) #:use-module (gnu packages messaging) + #:use-module (gnu packages networking) #:use-module (gnu packages screen) #:use-module (gnu packages tls) #:use-module (guix gexp) @@ -388,18 +389,17 @@ (operating-system (inherit %simple-os) (packages - (append (specifications->packages - '("ii" "socat" - ;; Uncomment for debugging. - ;; "gdb" - ;; "gnutls" ;for gnutls-cli - ;; "screen" - ;; "strace" - ;; "ngircd:debug" - ;; "pounce:debug" - ;; "libressl:debug" - ;; "gnutls:debug" - )) + (append (list ii socat) + ;; Uncomment for debugging. + ;; (specifications->packages + ;; '("gdb" + ;; "gnutls" ;for gnutls-cli + ;; "screen" + ;; "strace" + ;; "ngircd:debug" + ;; "pounce:debug" + ;; "libressl:debug" + ;; "gnutls:debug")) %base-packages)) (services (cons* |