As libccrtp propagates ucommon, it's not needed in libzrtpcpp.

This commit is contained in:
Lluís Batlle i Rossell 2013-06-26 23:47:09 +02:00
parent 3d8cd48c58
commit c77f6a0c2f

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, ucommon, openssl, pkgconfig, ccrtp }: { stdenv, fetchurl, cmake, openssl, pkgconfig, ccrtp }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libzrtpcpp-2.0.0"; name = "libzrtpcpp-2.0.0";
@ -8,7 +8,12 @@ stdenv.mkDerivation rec {
sha256 = "05yw8n5xpj0jxkvzgsvn3xkxirpypc1japy9k1jqs9301fgb1a3i"; 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 = { meta = {
description = "GNU RTP stack for the zrtp protocol developed by Phil Zimmermann"; description = "GNU RTP stack for the zrtp protocol developed by Phil Zimmermann";