about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/ortp
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/ortp')
-rw-r--r--nixpkgs/pkgs/development/libraries/ortp/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/ortp/default.nix b/nixpkgs/pkgs/development/libraries/ortp/default.nix
new file mode 100644
index 000000000000..cf75de2bf6f3
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/ortp/default.nix
@@ -0,0 +1,36 @@
+{ bctoolbox
+, cmake
+, fetchFromGitLab
+, lib
+, stdenv
+}:
+
+stdenv.mkDerivation rec {
+  pname = "ortp";
+  version = "5.2.16";
+
+  src = fetchFromGitLab {
+    domain = "gitlab.linphone.org";
+    owner = "public";
+    group = "BC";
+    repo = pname;
+    rev = version;
+    hash = "sha256-zGguzrWXSjjrJdFnlAeC6U6w10BucXjeUg7/2D4OxM4=";
+  };
+
+  # Do not build static libraries
+  cmakeFlags = [ "-DENABLE_STATIC=NO" ];
+
+  env.NIX_CFLAGS_COMPILE = "-Wno-error=stringop-truncation";
+
+  buildInputs = [ bctoolbox ];
+  nativeBuildInputs = [ cmake ];
+
+  meta = with lib; {
+    description = "A Real-Time Transport Protocol (RFC3550) stack. Part of the Linphone project.";
+    homepage = "https://linphone.org/technical-corner/ortp";
+    license = licenses.gpl3Plus;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ jluttine ];
+  };
+}