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:
Sharlatan Hellseher 2024-02-24 20:18:00 +00:00
parent 74c43acff3
commit 05bbe9993f
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 5 additions and 7 deletions

View File

@ -351,13 +351,11 @@ Unix Domain Sockets, SCTP for both IPv4 and IPv6.")
(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")