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.nix25
1 files changed, 25 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..68e890e33682
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/ortp/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, cmake, fetchFromGitHub, bctoolbox }:
+
+stdenv.mkDerivation rec {
+  pname = "ortp";
+  version = "1.0.2";
+
+  src = fetchFromGitHub {
+    owner = "BelledonneCommunications";
+    repo = pname;
+    rev = version;
+    sha256 = "12cwv593bsdnxs0zfcp07vwyk7ghlz2wv7vdbs1ksv293w3vj2rv";
+  };
+
+  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.gpl2Plus;
+    platforms = platforms.all;
+  };
+}