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.nix35
1 files changed, 35 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..ecd15498432c
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/ortp/default.nix
@@ -0,0 +1,35 @@
+{ bctoolbox
+, cmake
+, fetchFromGitLab
+, stdenv
+}:
+
+stdenv.mkDerivation rec {
+  pname = "ortp";
+  version = "4.4.9";
+
+  src = fetchFromGitLab {
+    domain = "gitlab.linphone.org";
+    owner = "public";
+    group = "BC";
+    repo = pname;
+    rev = version;
+    sha256 = "0igiw863gnf9f626v0igg1pj3fv4anvlvlk6xx3bk2zdi52a9kcc";
+  };
+
+  # Do not build static libraries
+  cmakeFlags = [ "-DENABLE_STATIC=NO" ];
+
+  NIX_CFLAGS_COMPILE = "-Wno-error=stringop-truncation";
+
+  buildInputs = [ bctoolbox ];
+  nativeBuildInputs = [ cmake ];
+
+  meta = with stdenv.lib; {
+    description = "A Real-Time Transport Protocol (RFC3550) stack";
+    homepage = "https://linphone.org/technical-corner/ortp";
+    license = licenses.gpl3Plus;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ jluttine ];
+  };
+}