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 {
|
2012-04-09 22:51:50 +02:00
|
|
|
name = "ccrtp-2.0.3";
|
2009-09-20 19:01:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-04-09 22:51:50 +02:00
|
|
|
url = mirror://gnu/ccrtp/ccrtp-2.0.3.tar.gz;
|
|
|
|
sha256 = "1p4zzqn02zvnyjy84khiq8v65pl422fb6ni946h9sxh4yw2lgn01";
|
2009-09-20 19:01:19 +02:00
|
|
|
};
|
|
|
|
|
2011-05-30 23:49:56 +02:00
|
|
|
buildInputs = [ openssl pkgconfig libgcrypt ucommon ];
|
2009-09-20 19:01:19 +02:00
|
|
|
|
2011-05-30 23:49:56 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU ccRTP, an implementation of the IETF real-time transport protocol (RTP)";
|
|
|
|
homepage = http://www.gnu.org/software/ccrtp/;
|
2009-09-20 19:01:19 +02:00
|
|
|
license = "GPLv2";
|
2011-05-30 23:49:56 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber ludo ];
|
2010-07-28 13:55:54 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-20 19:01:19 +02:00
|
|
|
};
|
|
|
|
}
|