about summary refs log tree commit diff
path: root/pkgs/development/libraries/libquotient
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2023-04-28 15:48:27 +0800
committerPeter Hoeg <peter@hoeg.com>2023-05-09 09:02:13 +0800
commit46fadaaa0f167c4d023e9bc7dc0c3af40245e313 (patch)
tree4e62f4379171e53f3969a6b302381abb8c01ed2e /pkgs/development/libraries/libquotient
parent22ed6b17d29695d88b82603a9d5f881f1291b5f6 (diff)
libquotient: 0.7.1 -> 0.7.2
Diffstat (limited to 'pkgs/development/libraries/libquotient')
-rw-r--r--pkgs/development/libraries/libquotient/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libquotient/default.nix b/pkgs/development/libraries/libquotient/default.nix
index 4d029ec8030fb..c36bddc347f23 100644
--- a/pkgs/development/libraries/libquotient/default.nix
+++ b/pkgs/development/libraries/libquotient/default.nix
@@ -1,17 +1,17 @@
-{ mkDerivation, lib, fetchFromGitHub, cmake, olm, openssl, qtmultimedia, qtkeychain }:
+{ stdenv, lib, fetchFromGitHub, cmake, olm, openssl, qtbase, qtmultimedia, qtkeychain }:
 
-mkDerivation rec {
+stdenv.mkDerivation rec {
   pname = "libquotient";
-  version = "0.7.1";
+  version = "0.7.2";
 
   src = fetchFromGitHub {
     owner = "quotient-im";
     repo = "libQuotient";
     rev = version;
-    hash = "sha256-3xnv1dcyeX3Kl5EH2Tlf6nXobLG1zXsFmYstnvmSAXA=";
+    hash = "sha256-Lq404O2VjZ8vlXOW+rhsvWDvZsNd3APNbv6AadQCjhk=";
   };
 
-  buildInputs = [ olm openssl qtmultimedia qtkeychain ];
+  buildInputs = [ olm openssl qtbase qtmultimedia qtkeychain ];
 
   nativeBuildInputs = [ cmake ];
 
@@ -26,6 +26,8 @@ mkDerivation rec {
       --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
   '';
 
+  dontWrapQtApps = true;
+
   meta = with lib; {
     description = "A Qt5/Qt6 library to write cross-platform clients for Matrix";
     homepage = "https://matrix.org/docs/projects/sdk/quotient";