mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: lldpd: Use G-expressions.
* gnu/packages/networking.scm (lldpd)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
090667a258
commit
943a5b1ee7
1 changed files with 10 additions and 11 deletions
|
@ -4035,17 +4035,16 @@ (define-public lldpd
|
||||||
;; Drop bundled library.
|
;; Drop bundled library.
|
||||||
(delete-file-recursively "libevent")))))
|
(delete-file-recursively "libevent")))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
(list #:configure-flags
|
||||||
(list
|
#~(list
|
||||||
"--with-privsep-user=nobody"
|
"--with-privsep-user=nobody"
|
||||||
"--with-privsep-group=nogroup"
|
"--with-privsep-group=nogroup"
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
"--enable-pie"
|
"--enable-pie"
|
||||||
"--disable-static"
|
"--disable-static"
|
||||||
"--without-embedded-libevent"
|
"--without-embedded-libevent"
|
||||||
(string-append "--with-systemdsystemunitdir="
|
(string-append "--with-systemdsystemunitdir="
|
||||||
(assoc-ref %outputs "out")
|
#$output "/lib/systemd/system"))))
|
||||||
"/lib/systemd/system"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list libevent libxml2 openssl readline))
|
(list libevent libxml2 openssl readline))
|
||||||
|
|
Loading…
Reference in a new issue