From a26cb6b37d87c6eecff0db66040c84309d9a0c9f Mon Sep 17 00:00:00 2001 From: Symphorien Gibol Date: Wed, 20 Jan 2021 21:56:10 +0100 Subject: [PATCH] nheko: build qml fixes cache issues on update: https://github.com/Nheko-Reborn/nheko/issues/389 --- .../networking/instant-messengers/nheko/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/networking/instant-messengers/nheko/default.nix b/pkgs/applications/networking/instant-messengers/nheko/default.nix index a26d3c41b22..9ed8319b761 100644 --- a/pkgs/applications/networking/instant-messengers/nheko/default.nix +++ b/pkgs/applications/networking/instant-messengers/nheko/default.nix @@ -57,6 +57,10 @@ mkDerivation rec { qtgraphicaleffects ] ++ lib.optional stdenv.isDarwin qtmacextras; + cmakeFlags = [ + "-DCOMPILE_QML=ON" # see https://github.com/Nheko-Reborn/nheko/issues/389 + ]; + meta = with lib; { description = "Desktop client for the Matrix protocol"; homepage = "https://github.com/Nheko-Reborn/nheko";