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
+3 -3
View File
@@ -11,10 +11,10 @@ let
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec {
baseName="srtp";
version="1.4.2";
version="1.4.4";
name="${baseName}-${version}";
url="http://srtp.sourceforge.net/${name}.tgz";
hash="1497mcxharnhiccjhny30g4wlv28ckdxhj14jrwvdnnvhl80jf43";
url="mirror://sourceforge/${name}.tgz";
hash="057k191hx7sf84wdvc8wr1nk4whhrvbg1vv3r4nyswjir6qwphnr";
};
in
rec {
@@ -0,0 +1,15 @@
{ stdenv, fetchgit, automake, autoconf, libtool }:
stdenv.mkDerivation {
name = "srtp-linphone-git-20130530-1c9bd9065";
src = fetchgit {
url = git://git.linphone.org/srtp.git;
rev = "1c9bd9065";
sha256 = "0r4wbrih8bggs69fnfmzm17z1pp1zp8x9qwcckcq6wc54b16d9g3";
};
preConfigure = "autoreconf -vfi";
buildInputs = [ automake autoconf libtool ];
}