diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm index 9b9c5fcd4b..bf6b65dc42 100644 --- a/gnu/packages/linphone.scm +++ b/gnu/packages/linphone.scm @@ -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.")