Linphone 3.6.1

Lots of updates and new/old libs to get the latest linphone

It segfaults on running.
This commit is contained in:
Lluís Batlle i Rossell
2013-06-29 16:59:08 +02:00
parent 26e9afaa28
commit 169c8ce3f7
9 changed files with 96 additions and 27 deletions
+17
View File
@@ -0,0 +1,17 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "3.6.0";
src = fetchurl {
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
sha256 = "1kcndqvsyxgbhkksgydvvjw15znfq6jiznvw058d21h5fq68p8f9";
};
name = "libosip2-${version}";
meta = {
license = "LGPLv2.1+";
homepage = http://www.gnu.org/software/osip/;
description = "The GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)";
maintainers = with stdenv.lib.maintainers; [ raskin ];
platforms = stdenv.lib.platforms.linux;
};
}