Adding sflphone.

Merge branch 'sflphone'
This commit is contained in:
Lluís Batlle i Rossell
2013-06-27 00:10:13 +02:00
6 changed files with 110 additions and 7 deletions

View File

@@ -8,7 +8,8 @@ stdenv.mkDerivation {
sha256 = "1p4zzqn02zvnyjy84khiq8v65pl422fb6ni946h9sxh4yw2lgn01";
};
buildInputs = [ openssl pkgconfig libgcrypt ucommon ];
buildInputs = [ openssl pkgconfig libgcrypt ];
propagatedBuildInputs = [ ucommon ];
doCheck = true;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, ucommon, openssl, pkgconfig, ccrtp }:
{ stdenv, fetchurl, cmake, openssl, pkgconfig, ccrtp }:
stdenv.mkDerivation rec {
name = "libzrtpcpp-2.0.0";
@@ -8,7 +8,12 @@ stdenv.mkDerivation rec {
sha256 = "05yw8n5xpj0jxkvzgsvn3xkxirpypc1japy9k1jqs9301fgb1a3i";
};
buildInputs = [ cmake ucommon openssl pkgconfig ccrtp ];
# We disallow 'lib64', or pkgconfig will not find it.
prePatch = ''
sed -i s/lib64/lib/ CMakeLists.txt
'';
buildInputs = [ cmake openssl pkgconfig ccrtp ];
meta = {
description = "GNU RTP stack for the zrtp protocol developed by Phil Zimmermann";

View File

@@ -1,11 +1,11 @@
{ fetchurl, stdenv, gnutls, pkgconfig, zlib, libgcrypt }:
stdenv.mkDerivation rec {
name = "ucommon-5.2.2";
name = "ucommon-6.0.5";
src = fetchurl {
url = mirror://gnu/commoncpp/ucommon-5.2.2.tar.gz;
sha256 = "1s9r7yhvqnj57aiw7sklp2p6llfzn1jxvc3hwhpli5zq3r6kypwx";
url = mirror://gnu/commoncpp/ucommon-6.0.5.tar.gz;
sha256 = "0w5nl2a2l630n4kvfaz22by1s92ybd87g0q1zpcmsl8i5d00789l";
};
buildInputs = [ pkgconfig gnutls zlib ];