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