mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -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,8 +4035,8 @@ (define-public lldpd
|
|||
;; Drop bundled library.
|
||||
(delete-file-recursively "libevent")))))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list
|
||||
(list #:configure-flags
|
||||
#~(list
|
||||
"--with-privsep-user=nobody"
|
||||
"--with-privsep-group=nogroup"
|
||||
"--localstatedir=/var"
|
||||
|
@ -4044,8 +4044,7 @@ (define-public lldpd
|
|||
"--disable-static"
|
||||
"--without-embedded-libevent"
|
||||
(string-append "--with-systemdsystemunitdir="
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/systemd/system"))))
|
||||
#$output "/lib/systemd/system"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
(list libevent libxml2 openssl readline))
|
||||
|
|
Loading…
Reference in a new issue