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