summary refs log tree commit diff
path: root/pkgs/development/libraries/mtxclient
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2020-04-30 10:25:38 +0300
committerDoron Behar <doron.behar@gmail.com>2020-04-30 10:30:52 +0300
commitbdcbfc77c9bda30964d00b41b4c906aa9d489967 (patch)
tree6057444f3768a675ba26909169be0e772258e3be /pkgs/development/libraries/mtxclient
parent0577b994afe04a188319acc9319d6794224ba415 (diff)
downloadnixpkgs-bdcbfc77c9bda30964d00b41b4c906aa9d489967.tar
nixpkgs-bdcbfc77c9bda30964d00b41b4c906aa9d489967.tar.gz
nixpkgs-bdcbfc77c9bda30964d00b41b4c906aa9d489967.tar.bz2
nixpkgs-bdcbfc77c9bda30964d00b41b4c906aa9d489967.tar.lz
nixpkgs-bdcbfc77c9bda30964d00b41b4c906aa9d489967.tar.xz
nixpkgs-bdcbfc77c9bda30964d00b41b4c906aa9d489967.tar.zst
nixpkgs-bdcbfc77c9bda30964d00b41b4c906aa9d489967.zip
nheko && mtxclient: enable for Darwin but mark as broken
Diffstat (limited to 'pkgs/development/libraries/mtxclient')
-rw-r--r--pkgs/development/libraries/mtxclient/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/libraries/mtxclient/default.nix b/pkgs/development/libraries/mtxclient/default.nix
index 3f5f338f5af..22b66442305 100644
--- a/pkgs/development/libraries/mtxclient/default.nix
+++ b/pkgs/development/libraries/mtxclient/default.nix
@@ -52,10 +52,9 @@ stdenv.mkDerivation rec {
     homepage = "https://github.com/Nheko-Reborn/mtxclient";
     license = licenses.mit;
     maintainers = with maintainers; [ fpletz ];
-    platforms = platforms.unix;
-
-    # As of 2019-06-30, all of the dependencies are available on macOS but the
-    # package itself does not build.
-    broken = stdenv.isDarwin;
+    platforms = platforms.all;
+    # Should be fixable if a higher clang version is used, see:
+    # https://github.com/NixOS/nixpkgs/pull/85922#issuecomment-619287177
+    broken = stdenv.targetPlatform.isDarwin;
   };
 }