about summary refs log tree commit diff
path: root/pkgs/by-name/xe
diff options
context:
space:
mode:
authorjopejoe12024-06-26 20:49:02 +0200
committerjopejoe12024-07-18 20:27:05 +0200
commit18fa507569ffa5cf71401d4e4b16ea8dbb14b735 (patch)
tree155dc95e528c825a9771ef36bad0cc3074b2ff51 /pkgs/by-name/xe
parentebc8e4d6d449f84364fa8399f9478fc924ec359b (diff)
xevd: update broken platforms
Diffstat (limited to 'pkgs/by-name/xe')
-rw-r--r--pkgs/by-name/xe/xevd/package.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/by-name/xe/xevd/package.nix b/pkgs/by-name/xe/xevd/package.nix
index df6566dff514..c25e5b6029c2 100644
--- a/pkgs/by-name/xe/xevd/package.nix
+++ b/pkgs/by-name/xe/xevd/package.nix
@@ -47,6 +47,7 @@ stdenv.mkDerivation (finalAttrs: {
     pkgConfigModules = [ "xevd" ];
     maintainers = with lib.maintainers; [ jopejoe1 ];
     platforms = lib.platforms.all;
-    broken = !stdenv.hostPlatform.isx86 || stdenv.hostPlatform.isDarwin;
+    # Currently only supports gcc and msvc as compiler, the limitation for clang gets removed in the next release, but that does not fix building on darwin.
+    broken = !stdenv.hostPlatform.isx86 || !stdenv.cc.isGNU;
   };
 })