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-12-01 22:44:39 +00:00
|
|
|
name = "ccrtp-2.0.2";
|
2009-09-20 17:01:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-12-01 22:44:39 +00:00
|
|
|
url = mirror://gnu/ccrtp/ccrtp-2.0.2.tar.gz;
|
|
|
|
sha256 = "1n42nscqwryz9f0jpg8lnv22x9m8mzr6rqir9cvbgm1r2skwjh4f";
|
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
|
|
|
};
|
|
|
|
}
|