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:
parent
3d8cd48c58
commit
c77f6a0c2f
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue