2011-05-30 21:49:56 +00:00
|
|
|
{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, ucommon }:
|
2010-07-28 11:55:54 +00:00
|
|
|
|
2009-09-20 17:01:19 +00:00
|
|
|
stdenv.mkDerivation {
|
2011-08-22 17:38:08 +00:00
|
|
|
name = "ccrtp-2.0.1";
|
2009-09-20 17:01:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-08-22 17:38:08 +00:00
|
|
|
url = mirror://gnu/ccrtp/ccrtp-2.0.1.tar.gz;
|
|
|
|
sha256 = "0wksiq55zq8yvjgzkaxyg15w9kfr4sni8a0yqk11qdqpl8x0al9x";
|
2009-09-20 17:01:19 +00:00
|
|
|
};
|
|
|
|
|
2011-05-30 21:49:56 +00:00
|
|
|
buildInputs = [ openssl pkgconfig libgcrypt ucommon ];
|
2009-09-20 17:01:19 +00:00
|
|
|
|
2011-05-30 21:49:56 +00: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 17:01:19 +00:00
|
|
|
license = "GPLv2";
|
2011-05-30 21:49:56 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber ludo ];
|
2010-07-28 11:55:54 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-20 17:01:19 +00:00
|
|
|
};
|
|
|
|
}
|