GNU bug report logs - #78430
[PATCH 0/2] Fix vulnerabilities in GNU Screen

Previous Next

Package: guix-patches;

Reported by: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Date: Wed, 14 May 2025 19:20:02 UTC

Severity: normal

Tags: patch

Full log


View this message in rfc822 format

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 78430 <at> debbugs.gnu.org
Subject: [bug#78430] [PATCH 1/2] gnu: screen: Use new package style.
Date: Wed, 14 May 2025 20:44:58 +0200
* gnu/packages/screen.scm (screen)[arguments]: Change to list of G-Expressions.
---
 gnu/packages/screen.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/screen.scm b/gnu/packages/screen.scm
index e791f29190f..284bc86c718 100644
--- a/gnu/packages/screen.scm
+++ b/gnu/packages/screen.scm
@@ -61,13 +61,14 @@ (define-public screen
     (inputs
      (list libxcrypt linux-pam ncurses perl))
     (arguments
-     `(#:configure-flags
+     (list
+      #:configure-flags
+      #~(list
          ;; GNU_SOURCE must be defined for mallocmock_reset() to be defined
-         '("CFLAGS=-O2 -g -D_GNU_SOURCE=1"
-
-       ;; By default, screen supports 16 colors, but we want 256 when
-       ;; ~/.screenrc contains 'term xterm-256color'.
-           "--enable-colors256")))
+         "CFLAGS=-O2 -g -D_GNU_SOURCE=1"
+         ;; By default, screen supports 16 colors, but we want 256 when
+         ;; ~/.screenrc contains 'term xterm-256color'.
+         "--enable-colors256")))
     (home-page "https://www.gnu.org/software/screen/")
     (synopsis "Full-screen window manager providing multiple terminals")
     (description
-- 
2.49.0





This bug report was last modified 28 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.