2013-06-26 22:47:09 +01:00
|
|
|
{ stdenv, fetchurl, cmake, openssl, pkgconfig, ccrtp }:
|
2009-10-28 14:06:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-06-29 15:50:56 +01:00
|
|
|
name = "libzrtpcpp-2.3.3";
|
2009-09-20 18:01:19 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-10-28 14:06:56 +00:00
|
|
|
url = "mirror://gnu/ccrtp/${name}.tar.gz";
|
2013-06-29 15:50:56 +01:00
|
|
|
sha256 = "1p8i3qb4j1r64r7miva8hamaszk42kncpy1x5xlq1l0465h01rvg";
|
2009-09-20 18:01:19 +01:00
|
|
|
};
|
|
|
|
|
2013-06-26 22:47:09 +01:00
|
|
|
# We disallow 'lib64', or pkgconfig will not find it.
|
|
|
|
prePatch = ''
|
|
|
|
sed -i s/lib64/lib/ CMakeLists.txt
|
|
|
|
'';
|
|
|
|
|
2013-06-29 15:50:56 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ openssl ccrtp ];
|
2009-09-20 18:01:19 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU RTP stack for the zrtp protocol developed by Phil Zimmermann";
|
|
|
|
homepage = "http://www.gnutelephony.org/index.php/GNU_ZRTP";
|
|
|
|
license = "GPLv2";
|
2010-07-28 12:55:54 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-20 18:01:19 +01:00
|
|
|
};
|
|
|
|
}
|