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-07-06 13:33:32 +01:00
|
|
|
name = "libzrtpcpp-2.3.4";
|
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-07-06 13:33:32 +01:00
|
|
|
sha256 = "020hfyrh8qdwkqdg1r1n65wdzj5i01ba9dzjghbm9lbz93gd9r83";
|
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 ];
|
2015-04-06 23:05:52 +01:00
|
|
|
buildInputs = [ 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";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
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
|
|
|
};
|
|
|
|
}
|