linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / ccrtp / default.nix
blob39792d4fd6a135c7a3c8e1f75edf34ffae2def1e
1 { lib, stdenv, fetchurl, pkg-config, ucommon, openssl, libgcrypt }:
3 stdenv.mkDerivation rec {
4   name = "ccrtp-2.1.2";
6   src = fetchurl {
7     url = "mirror://gnu/ccrtp/${name}.tar.gz";
8     sha256 = "17ili8l7zqbbkzr1rcy4hlnazkf50mds41wg6n7bfdsx3c7cldgh";
9   };
11   nativeBuildInputs = [ pkg-config ];
12   propagatedBuildInputs = [ ucommon openssl libgcrypt ];
14   configureFlags = [
15     "--disable-demos"
16   ];
18   doCheck = true;
20   meta = {
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;
26   };