gnu: lcsync: Simplify package.
* gnu/packages/networking.scm (lcsync) [arguments]: Use G-expressions. Remove redundant 'target' variable which has no use. Change-Id: I19ecadb5259ed0cfa37e12d109141dfc8be98587
This commit is contained in:
parent
74c43acff3
commit
05bbe9993f
1 changed files with 5 additions and 7 deletions
|
@ -351,12 +351,10 @@ (define-public lcsync
|
||||||
(base32 "1rhk80ybd2zranay76z1ysifnnm786lg9kiiijcwv76qy95in9ks"))))
|
(base32 "1rhk80ybd2zranay76z1ysifnnm786lg9kiiijcwv76qy95in9ks"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f
|
(list
|
||||||
#:configure-flags (list (string-append "--prefix="
|
#:parallel-tests? #f
|
||||||
(assoc-ref %outputs "out")))
|
#:configure-flags #~(list (string-append "--prefix=" #$output))
|
||||||
#:make-flags (let ((target ,(%current-target-system)))
|
#:make-flags #~(list (string-append "CC=" #$(cc-for-target)))
|
||||||
(list ,(string-append "CC="
|
|
||||||
(cc-for-target))))
|
|
||||||
#:test-target "test"))
|
#:test-target "test"))
|
||||||
(inputs (list lcrq librecast libsodium libbsd))
|
(inputs (list lcrq librecast libsodium libbsd))
|
||||||
(home-page "https://librecast.net/lcsync.html")
|
(home-page "https://librecast.net/lcsync.html")
|
||||||
|
|
Loading…
Reference in a new issue