diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2025-05-15 15:17:32 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-05-15 15:26:48 +0300 |
commit | b0ee68ca23f4e721e3c4baed6b9dc60f6917112e (patch) | |
tree | 6eb2659c8d480746b7bb3db9917d9ec520a3af7d | |
parent | bb5968d755b5f676b630d8b91a9d07ce29f424a8 (diff) |
gnu: screen: Use gexps.
* gnu/packages/screen.scm (screen)[arguments]: Use gexps.
Change-Id: I7ca183ecf1f70a0552f0d835b3ea16b07a921363
-rw-r--r-- | gnu/packages/screen.scm | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/gnu/packages/screen.scm b/gnu/packages/screen.scm index 45500e55a8..2b3480bdfa 100644 --- a/gnu/packages/screen.scm +++ b/gnu/packages/screen.scm @@ -71,17 +71,18 @@ (inputs (list libxcrypt linux-pam ncurses perl)) (arguments - `(#:configure-flags - ;; GNU_SOURCE must be defined for mallocmock_reset() to be defined - '("CFLAGS=-O2 -g -D_GNU_SOURCE=1" + (list + #:configure-flags + ;; GNU_SOURCE must be defined for mallocmock_reset() to be defined + #~(list "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") + ;; By default, screen supports 16 colors, but we want 256 when + ;; ~/.screenrc contains 'term xterm-256color'. + "--enable-colors256") #:phases - (modify-phases %standard-phases - (add-after 'unpack 'chdir - (lambda _ (chdir "src")))))) + #~(modify-phases %standard-phases + (add-after 'unpack 'chdir + (lambda _ (chdir "src")))))) (home-page "https://www.gnu.org/software/screen/") (synopsis "Full-screen window manager providing multiple terminals") (description |