2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, commoncpp2 }:
|
|
|
|
|
2009-09-20 19:01:19 +02:00
|
|
|
stdenv.mkDerivation {
|
2010-12-12 21:19:08 +01:00
|
|
|
name = "ccrtp-1.7.2";
|
2009-09-20 19:01:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-12-12 21:19:08 +01:00
|
|
|
url = mirror://gnu/ccrtp/ccrtp-1.7.2.tar.gz;
|
|
|
|
sha256 = "1vz759f0342ih95sc7vmzx8als7y2ddr0s3jaaj03x22r7xaqzwy";
|
2009-09-20 19:01:19 +02:00
|
|
|
};
|
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
buildInputs = [ openssl pkgconfig libgcrypt commoncpp2 ];
|
2009-09-20 19:01:19 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU ccRTP is an implementation of RTP, the real-time transport protocol from the IETF";
|
|
|
|
homepage = "http://www.gnu.org/software/ccrtp/";
|
|
|
|
license = "GPLv2";
|
2010-07-28 13:55:54 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-20 19:01:19 +02:00
|
|
|
};
|
|
|
|
}
|