nixpkgs/pkgs/development/libraries/ortp/default.nix

36 lines
806 B
Nix
Raw Normal View History

2020-03-20 08:32:14 +00:00
{ bctoolbox
, cmake
, fetchFromGitLab
, lib, stdenv
2020-03-20 08:32:14 +00:00
}:
stdenv.mkDerivation rec {
pname = "ortp";
2020-12-07 18:09:40 +00:00
version = "4.4.9";
2020-03-20 08:32:14 +00:00
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
repo = pname;
2020-12-07 18:09:40 +00:00
rev = version;
sha256 = "0igiw863gnf9f626v0igg1pj3fv4anvlvlk6xx3bk2zdi52a9kcc";
};
2020-03-20 08:32:14 +00:00
# Do not build static libraries
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
2019-11-04 22:06:05 +00:00
NIX_CFLAGS_COMPILE = "-Wno-error=stringop-truncation";
2016-09-06 10:16:14 +01:00
buildInputs = [ bctoolbox ];
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "A Real-Time Transport Protocol (RFC3550) stack";
2020-03-20 08:32:14 +00:00
homepage = "https://linphone.org/technical-corner/ortp";
license = licenses.gpl3Plus;
2015-04-06 22:43:33 +01:00
platforms = platforms.all;
2020-03-20 08:32:14 +00:00
maintainers = with maintainers; [ jluttine ];
};
}