mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
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,13 +351,11 @@ (define-public lcsync
|
|||
(base32 "1rhk80ybd2zranay76z1ysifnnm786lg9kiiijcwv76qy95in9ks"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:parallel-tests? #f
|
||||
#:configure-flags (list (string-append "--prefix="
|
||||
(assoc-ref %outputs "out")))
|
||||
#:make-flags (let ((target ,(%current-target-system)))
|
||||
(list ,(string-append "CC="
|
||||
(cc-for-target))))
|
||||
#:test-target "test"))
|
||||
(list
|
||||
#:parallel-tests? #f
|
||||
#:configure-flags #~(list (string-append "--prefix=" #$output))
|
||||
#:make-flags #~(list (string-append "CC=" #$(cc-for-target)))
|
||||
#:test-target "test"))
|
||||
(inputs (list lcrq librecast libsodium libbsd))
|
||||
(home-page "https://librecast.net/lcsync.html")
|
||||
(synopsis "Librecast file and data syncing tool")
|
||||
|
|
Loading…
Reference in a new issue