about summary refs log tree commit diff
path: root/pkgs/development/libraries/libquotient
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2023-01-21 09:26:04 +0800
committerPeter Hoeg <peter@hoeg.com>2023-01-21 09:26:04 +0800
commita9f4ee567cc1132b89fd9f14e94b5bf135f0dba6 (patch)
tree31defb810cccb6c693c01680fcd83905151458b7 /pkgs/development/libraries/libquotient
parent899f2b64c2dd2c79224adf4b3719e2a19b1d7aad (diff)
libquotient: 0.7.0 -> 0.7.1
Diffstat (limited to 'pkgs/development/libraries/libquotient')
-rw-r--r--pkgs/development/libraries/libquotient/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libquotient/default.nix b/pkgs/development/libraries/libquotient/default.nix
index c112f0a33485c..4d029ec8030fb 100644
--- a/pkgs/development/libraries/libquotient/default.nix
+++ b/pkgs/development/libraries/libquotient/default.nix
@@ -1,20 +1,24 @@
-{ mkDerivation, lib, fetchFromGitHub, cmake, qtmultimedia, qtkeychain }:
+{ mkDerivation, lib, fetchFromGitHub, cmake, olm, openssl, qtmultimedia, qtkeychain }:
 
 mkDerivation rec {
   pname = "libquotient";
-  version = "0.7.0";
+  version = "0.7.1";
 
   src = fetchFromGitHub {
     owner = "quotient-im";
     repo = "libQuotient";
     rev = version;
-    sha256 = "sha256-9NAWphpAI7/qWDMjsx26s+hOaQh0hbzjePfESC7PtXc=";
+    hash = "sha256-3xnv1dcyeX3Kl5EH2Tlf6nXobLG1zXsFmYstnvmSAXA=";
   };
 
-  buildInputs = [ qtmultimedia qtkeychain ];
+  buildInputs = [ olm openssl qtmultimedia qtkeychain ];
 
   nativeBuildInputs = [ cmake ];
 
+  cmakeFlags = [
+    "-DQuotient_ENABLE_E2EE=ON"
+  ];
+
   # https://github.com/quotient-im/libQuotient/issues/551
   postPatch = ''
     substituteInPlace Quotient.pc.in \
@@ -23,7 +27,7 @@ mkDerivation rec {
   '';
 
   meta = with lib; {
-    description = "A Qt5 library to write cross-platform clients for Matrix";
+    description = "A Qt5/Qt6 library to write cross-platform clients for Matrix";
     homepage = "https://matrix.org/docs/projects/sdk/quotient";
     license = licenses.lgpl21;
     maintainers = with maintainers; [ colemickens ];