mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-10 16:50:43 +02:00
gnu: screen: Use gexps.
* gnu/packages/screen.scm (screen)[arguments]: Use gexps. Change-Id: I7ca183ecf1f70a0552f0d835b3ea16b07a921363
This commit is contained in:
parent
bb5968d755
commit
b0ee68ca23
1 changed files with 10 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue