mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-12 01:50:46 +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
|
(inputs
|
||||||
(list libxcrypt linux-pam ncurses perl))
|
(list libxcrypt linux-pam ncurses perl))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
(list
|
||||||
;; GNU_SOURCE must be defined for mallocmock_reset() to be defined
|
#:configure-flags
|
||||||
'("CFLAGS=-O2 -g -D_GNU_SOURCE=1"
|
;; 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
|
;; By default, screen supports 16 colors, but we want 256 when
|
||||||
;; ~/.screenrc contains 'term xterm-256color'.
|
;; ~/.screenrc contains 'term xterm-256color'.
|
||||||
"--enable-colors256")
|
"--enable-colors256")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'chdir
|
(add-after 'unpack 'chdir
|
||||||
(lambda _ (chdir "src"))))))
|
(lambda _ (chdir "src"))))))
|
||||||
(home-page "https://www.gnu.org/software/screen/")
|
(home-page "https://www.gnu.org/software/screen/")
|
||||||
(synopsis "Full-screen window manager providing multiple terminals")
|
(synopsis "Full-screen window manager providing multiple terminals")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue