guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: liblinphone: Fix the input type of some dependencies.


From: guix-commits
Subject: 02/03: gnu: liblinphone: Fix the input type of some dependencies.
Date: Mon, 27 Apr 2020 00:58:09 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit 1ae43257347db6e93c6aac37fa622969f245294c
Author: Maxim Cournoyer <address@hidden>
AuthorDate: Sun Apr 26 23:10:21 2020 -0400

    gnu: liblinphone: Fix the input type of some dependencies.
    
    Libraries being linked to such as libxml2, libiconv and zlib should appear 
as
    'inputs' rather than 'native-inputs'.
    
    * gnu/packages/linphone.scm (liblinphone)[native-inputs]: Move libiconv,
    libxml2 and zlib to...
    [inputs]: ...here.  Move eudev, python-pystache and python-six to
    native-inputs.
---
 gnu/packages/linphone.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index e8aeabe..09d5a11 100644
--- a/gnu/packages/linphone.scm
+++ b/gnu/packages/linphone.scm
@@ -447,27 +447,28 @@ decoding, and rendering.")
                 ""))
              #t)))))
     (native-inputs
-     `(("dot" ,graphviz)
+     `(("gettext" ,gettext-minimal)
+       ("udev" ,eudev)                  ;for libudev.h
+       ;; For generating the C++ wrappers.
+       ("dot" ,graphviz)
        ("doxygen" ,doxygen)
-       ("gettext" ,gettext-minimal)
-       ("iconv" ,libiconv)
        ("python" ,python)
-       ("xml2" ,libxml2)
-       ("zlib" ,zlib)))
+       ("pystache" ,python-pystache)
+       ("six" ,python-six)))
     (inputs
      `(("bctoolbox" ,bctoolbox)
        ("belcard" ,belcard)
        ("bellesip" ,belle-sip)
        ("bzrtp", bzrtp)
+       ("iconv" ,libiconv)
        ("glib" ,glib)
        ("gtk2" ,gtk+-2)
        ("mediastreamer2" ,mediastreamer2)
        ("notify" ,libnotify)
        ("ortp" ,ortp)
-       ("pystache" ,python-pystache)
-       ("six" ,python-six)
        ("sqlite" ,sqlite)
-       ("udev" ,eudev)))
+       ("xml2" ,libxml2)
+       ("zlib" ,zlib)))
     (synopsis "Belledonne Communications Softphone Library")
     (description "Liblinphone is a high-level SIP library integrating
 all calling and instant messaging features into an unified



reply via email to

[Prev in Thread] Current Thread [Next in Thread]