1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

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 {
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";