summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2020-08-22 22:16:14 +0000
committerGitHub <noreply@github.com>2020-08-23 00:16:14 +0200
commitf8a49ec8dbe3eac1a8f6e4dd8146eae633142808 (patch)
treed35612649812f344c443448e7cd7ebc45c9d6946 /pkgs/applications
parent909539e6a091939c2f722f504ea0da5dbc6a2aef (diff)
downloadnixpkgs-f8a49ec8dbe3eac1a8f6e4dd8146eae633142808.tar
nixpkgs-f8a49ec8dbe3eac1a8f6e4dd8146eae633142808.tar.gz
nixpkgs-f8a49ec8dbe3eac1a8f6e4dd8146eae633142808.tar.bz2
nixpkgs-f8a49ec8dbe3eac1a8f6e4dd8146eae633142808.tar.lz
nixpkgs-f8a49ec8dbe3eac1a8f6e4dd8146eae633142808.tar.xz
nixpkgs-f8a49ec8dbe3eac1a8f6e4dd8146eae633142808.tar.zst
nixpkgs-f8a49ec8dbe3eac1a8f6e4dd8146eae633142808.zip
nheko: dirty fix to #94942 (#95060)
The real issue is #94952 or #94905.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/instant-messengers/nheko/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/nheko/default.nix b/pkgs/applications/networking/instant-messengers/nheko/default.nix
index 2f5316c9fe2..5d9963956ed 100644
--- a/pkgs/applications/networking/instant-messengers/nheko/default.nix
+++ b/pkgs/applications/networking/instant-messengers/nheko/default.nix
@@ -54,6 +54,11 @@ mkDerivation rec {
     qtquickcontrols2
     qtgraphicaleffects
   ] ++ lib.optional stdenv.isDarwin qtmacextras;
+  # Quick and dirty fix to https://github.com/NixOS/nixpkgs/issues/94952
+  # and/or: https://github.com/NixOS/nixpkgs/issues/94905
+  cmakeFlags = [
+    "-DCMAKE_OSX_ARCHITECTURES="
+  ];
 
   meta = with stdenv.lib; {
     description = "Desktop client for the Matrix protocol";