2013-06-26 14:47:09 -07:00
|
|
|
{ stdenv, fetchurl, cmake, openssl, pkgconfig, ccrtp }:
|
2009-10-28 07:06:56 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-07-06 05:33:32 -07:00
|
|
|
name = "libzrtpcpp-2.3.4";
|
2009-09-20 10:01:19 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-10-28 07:06:56 -07:00
|
|
|
url = "mirror://gnu/ccrtp/${name}.tar.gz";
|
2013-07-06 05:33:32 -07:00
|
|
|
sha256 = "020hfyrh8qdwkqdg1r1n65wdzj5i01ba9dzjghbm9lbz93gd9r83";
|
2009-09-20 10:01:19 -07:00
|
|
|
};
|
|
|
|
|
2013-06-26 14:47:09 -07:00
|
|
|
# We disallow 'lib64', or pkgconfig will not find it.
|
|
|
|
prePatch = ''
|
|
|
|
sed -i s/lib64/lib/ CMakeLists.txt
|
|
|
|
'';
|
|
|
|
|
2013-06-29 07:50:56 -07:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2015-04-06 15:05:52 -07:00
|
|
|
buildInputs = [ openssl ccrtp ];
|
2009-09-20 10:01:19 -07: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-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2010-07-28 04:55:54 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-20 10:01:19 -07:00
|
|
|
};
|
|
|
|
}
|