gnu: psmisc: Use G-Expressions.

* gnu/packages/linux.scm (psmisc): Use G-Expressions.

Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
Bruno Victal 2023-03-21 19:23:21 +00:00 committed by Tobias Geerinckx-Rice
parent 721030e1e8
commit 32b4f59433
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -2098,12 +2098,12 @@ (define-public psmisc
(base32 "12z5786dnf37n8wvv73wdcqp3nvsqzhwdk3ajna0mag4yz1fqdyw"))))
(build-system gnu-build-system)
(arguments
`(,@(if (%current-target-system)
'(#:configure-flags
(list
"ac_cv_func_malloc_0_nonnull=yes"
"ac_cv_func_realloc_0_nonnull=yes"))
'())))
(list
#:configure-flags
(if (%current-target-system)
#~(list "ac_cv_func_malloc_0_nonnull=yes"
"ac_cv_func_realloc_0_nonnull=yes")
#~'())))
(inputs (list ncurses))
(home-page "https://gitlab.com/psmisc/psmisc")
(synopsis "Small utilities that use the proc file system")