linuxPackages.ipu6-drivers: Mark broken on 6.3+

Fails to build because of removed functions in the kernel.
This commit is contained in:
Martin Weinelt 2023-05-08 22:08:08 +02:00
parent 142b7ce346
commit 17189a5996
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -52,6 +52,8 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ hexa ];
platforms = [ "x86_64-linux" ];
broken = kernel.kernelOlder "6.1.7";
# requires 6.1.7 https://github.com/intel/ipu6-drivers/pull/84
# fails to build on 6.3 https://github.com/intel/ipu6-drivers/issues/140
broken = kernel.kernelOlder "6.1.7" || kernel.kernelAtLeast "6.3";
};
}