2011-05-30 23:49:56 +02:00
|
|
|
{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, ucommon }:
|
2010-07-28 13:55:54 +02:00
|
|
|
|
2009-09-20 19:01:19 +02:00
|
|
|
stdenv.mkDerivation {
|
2014-10-08 19:05:58 +02:00
|
|
|
name = "ccrtp-2.0.9";
|
2009-09-20 19:01:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-08 19:05:58 +02:00
|
|
|
url = mirror://gnu/ccrtp/ccrtp-2.0.9.tar.gz;
|
|
|
|
sha256 = "1prh2niwa4lzvskk12j4ckr7dv141dfh8yjmpkbhbnv4gmpifci0";
|
2009-09-20 19:01:19 +02:00
|
|
|
};
|
|
|
|
|
2013-06-26 23:46:47 +02:00
|
|
|
buildInputs = [ openssl pkgconfig libgcrypt ];
|
|
|
|
propagatedBuildInputs = [ ucommon ];
|
2009-09-20 19:01:19 +02:00
|
|
|
|
2011-05-30 23:49:56 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "An implementation of the IETF real-time transport protocol (RTP)";
|
2011-05-30 23:49:56 +02:00
|
|
|
homepage = http://www.gnu.org/software/ccrtp/;
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber ];
|
2010-07-28 13:55:54 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-20 19:01:19 +02:00
|
|
|
};
|
|
|
|
}
|