1{ stdenv, fetchurl, pkgconfig, ucommon, openssl, libgcrypt }:
2
3stdenv.mkDerivation rec {
4 name = "ccrtp-2.1.2";
5
6 src = fetchurl {
7 url = "mirror://gnu/ccrtp/${name}.tar.gz";
8 sha256 = "17ili8l7zqbbkzr1rcy4hlnazkf50mds41wg6n7bfdsx3c7cldgh";
9 };
10
11 nativeBuildInputs = [ pkgconfig ];
12 propagatedBuildInputs = [ ucommon openssl libgcrypt ];
13
14 configureFlags = [
15 "--disable-demos"
16 ];
17
18 doCheck = true;
19
20 meta = {
21 description = "An implementation of the IETF real-time transport protocol (RTP)";
22 homepage = http://www.gnu.org/software/ccrtp/;
23 license = stdenv.lib.licenses.gpl2;
24 maintainers = with stdenv.lib.maintainers; [ marcweber ];
25 platforms = stdenv.lib.platforms.linux;
26 };
27}