Files
nixpkgs/pkgs/development/libraries/ccrtp/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

29 lines
730 B
Nix

{ lib, stdenv, fetchurl, pkg-config, ucommon, openssl, libgcrypt }:
stdenv.mkDerivation rec {
pname = "ccrtp";
version = "2.1.2";
src = fetchurl {
url = "mirror://gnu/ccrtp/ccrtp-${version}.tar.gz";
sha256 = "17ili8l7zqbbkzr1rcy4hlnazkf50mds41wg6n7bfdsx3c7cldgh";
};
nativeBuildInputs = [ pkg-config ];
propagatedBuildInputs = [ ucommon openssl libgcrypt ];
configureFlags = [
"--disable-demos"
];
doCheck = true;
meta = {
description = "Implementation of the IETF real-time transport protocol (RTP)";
homepage = "https://www.gnu.org/software/ccrtp/";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ marcweber ];
platforms = lib.platforms.linux;
};
}