about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/bzrtp
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/bzrtp')
-rw-r--r--nixpkgs/pkgs/development/libraries/bzrtp/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/bzrtp/default.nix b/nixpkgs/pkgs/development/libraries/bzrtp/default.nix
new file mode 100644
index 000000000000..3a6ef0e3562d
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/bzrtp/default.nix
@@ -0,0 +1,35 @@
+{ bctoolbox
+, cmake
+, fetchFromGitLab
+, sqlite
+, lib
+, stdenv
+}:
+
+stdenv.mkDerivation rec {
+  pname = "bzrtp";
+  version = "5.1.12";
+
+  src = fetchFromGitLab {
+    domain = "gitlab.linphone.org";
+    owner = "public";
+    group = "BC";
+    repo = pname;
+    rev = version;
+    sha256 = "sha256-GsHVuNXzLkbKUaHtnyXAr7bR9Emc55zcmKt3RGjCMtA=";
+  };
+
+  buildInputs = [ bctoolbox sqlite ];
+  nativeBuildInputs = [ cmake ];
+
+  # Do not build static libraries
+  cmakeFlags = [ "-DENABLE_STATIC=NO" "-DCMAKE_C_FLAGS=-Wno-error=cast-function-type" ];
+
+  meta = with lib; {
+    description = "An opensource implementation of ZRTP keys exchange protocol. Part of the Linphone project.";
+    homepage = "https://gitlab.linphone.org/BC/public/bzrtp";
+    license = licenses.gpl3Plus;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ jluttine ];
+  };
+}