guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: Add mssilk.


From: guix-commits
Subject: 02/03: gnu: Add mssilk.
Date: Sun, 5 Apr 2020 19:05:51 -0400 (EDT)

dannym pushed a commit to branch master
in repository guix.

commit f689d3d7d9ba3fa25b4839bdd1e4b98905f4869c
Author: Raghav Gururajan <address@hidden>
AuthorDate: Wed Apr 1 22:58:32 2020 -0400

    gnu: Add mssilk.
    
    * gnu/packages/linphone.scm (mssilk): New variable.
    
    Signed-off-by: Danny Milosavljevic <address@hidden>
---
 gnu/packages/linphone.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 1dbf760..75c3476 100644
--- a/gnu/packages/linphone.scm
+++ b/gnu/packages/linphone.scm
@@ -477,3 +477,30 @@ and video calls or instant messaging capabilities to an 
application.")
 mediastreamer2 based on the openh264 library.")
     (home-page "https://gitlab.linphone.org/BC/public/msopenh264";)
     (license license:gpl2+)))
+
+(define-public mssilk
+  (package
+    (name "mssilk")
+    (version "1.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://www.linphone.org/releases/sources/plugins/";
+                       name "/" name "-" version ".tar.gz"))
+       (sha256
+        (base32 "07ip0vd29d1n98lnqs5wpimcsmpm65yl7g5vk4hbqghcbsjw94lj"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f                      ; No test target
+       #:configure-flags
+       (list
+        "-DENABLE_STATIC=NO")))         ; Not required
+    (inputs
+     `(("mediastreamer2" ,mediastreamer2)
+       ("ortp" ,ortp)))
+    (synopsis "Media Streamer SILK Codec")
+    (description "MSSILK is a plugin of MediaStreamer, adding support for
+AMR codec.  It is based on the Skype's SILK implementation.")
+    (home-page "https://gitlab.linphone.org/BC/public/mssilk";)
+    (license license:gpl2+)))



reply via email to

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