1 { lib, stdenv, fetchurl, pkg-config, ucommon, openssl, libgcrypt }:
3 stdenv.mkDerivation rec {
7 url = "mirror://gnu/ccrtp/${name}.tar.gz";
8 sha256 = "17ili8l7zqbbkzr1rcy4hlnazkf50mds41wg6n7bfdsx3c7cldgh";
11 nativeBuildInputs = [ pkg-config ];
12 propagatedBuildInputs = [ ucommon openssl libgcrypt ];
21 description = "An implementation of the IETF real-time transport protocol (RTP)";
22 homepage = "https://www.gnu.org/software/ccrtp/";
23 license = lib.licenses.gpl2;
24 maintainers = with lib.maintainers; [ marcweber ];
25 platforms = lib.platforms.linux;