gnu: bctoolbox: Drop input labels.

* gnu/packages/linphone.scm (bctoolbox)[inputs]: Drop package labels.
This commit is contained in:
Ricardo Wurmus 2023-04-06 19:39:25 +02:00
parent 3101fe4b8e
commit 724acd6b9c
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -151,7 +151,7 @@ (define-public bctoolbox
(lambda* (#:key inputs #:allow-other-keys)
;; Fix decaf dependency (see:
;; https://gitlab.linphone.org/BC/public/bctoolbox/-/issues/3).
(let* ((decaf (assoc-ref inputs "decaf")))
(let* ((decaf (assoc-ref inputs "libdecaf")))
(substitute* (find-files "." "CMakeLists.txt")
(("find_package\\(Decaf CONFIG\\)")
"set(DECAF_FOUND 1)")
@ -182,9 +182,7 @@ (define-public bctoolbox
(with-directory-excursion "tester"
(invoke "./bctoolbox_tester"))))))))
(inputs
`(("bcunit" ,bcunit)
("decaf" ,libdecaf)
("mbedtls" ,mbedtls-apache)))
(list bcunit libdecaf mbedtls-apache))
(synopsis "Belledonne Communications Tool Box")
(description "BcToolBox is an utilities library used by Belledonne
Communications software like belle-sip, mediastreamer2 and linphone.")