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