diff options
author | jopejoe1 | 2024-06-26 20:49:02 +0200 |
---|---|---|
committer | jopejoe1 | 2024-07-18 20:27:05 +0200 |
commit | 18fa507569ffa5cf71401d4e4b16ea8dbb14b735 (patch) | |
tree | 155dc95e528c825a9771ef36bad0cc3074b2ff51 | |
parent | ebc8e4d6d449f84364fa8399f9478fc924ec359b (diff) |
xevd: update broken platforms
-rw-r--r-- | pkgs/by-name/xe/xevd/package.nix | 3 |
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; }; }) |