mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: librecast: Simplify package.
* gnu/packages/networking.scm (librecast) [arguments]: Use G-expressions. Remove redundant 'target' variable which has no use. Change-Id: Ib87e04b7fb9d284436659fd0503da4892807a977
This commit is contained in:
parent
04c558dd1b
commit
39195914ec
1 changed files with 6 additions and 7 deletions
|
@ -532,13 +532,12 @@ (define-public librecast
|
|||
(base32 "01m0q4n2hy3csbzil8ivjyzb1mh4w9jlh9iiv6z53kasl7aas27i"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:parallel-tests? #f
|
||||
#:make-flags (let ((target ,(%current-target-system)))
|
||||
(list ,(string-append "CC="
|
||||
(cc-for-target))
|
||||
(string-append "PREFIX="
|
||||
(assoc-ref %outputs "out"))))
|
||||
#:test-target "test"))
|
||||
(list
|
||||
#:parallel-tests? #f
|
||||
#:make-flags
|
||||
#~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "PREFIX=" #$output))
|
||||
#:test-target "test"))
|
||||
(inputs (list libsodium lcrq libbsd))
|
||||
(synopsis "IPv6 multicast library")
|
||||
(description "Librecast is a C library which supports IPv6 multicast
|
||||
|
|
Loading…
Reference in a new issue