linuxPackages.rr-zen_workaround: mark x86_64-only

This will stop Hydra trying to build it for aarch64.
This commit is contained in:
Alyssa Ross 2021-11-06 10:27:27 +00:00 committed by Jonathan Ringer
parent 541fe07bb1
commit 7aa9186ae4

View file

@ -2,7 +2,7 @@
/* The python script shouldn't be needed for users of this kernel module.
https://github.com/rr-debugger/rr/blob/master/scripts/zen_workaround.py
The module itself is called "zen_workaround" (a bit generic unfortunatelly).
The module itself is called "zen_workaround" (a bit generic unfortunately).
*/
stdenv.mkDerivation rec {
pname = "rr-zen_workaround";
@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/rr-debugger/rr/wiki/Zen#kernel-module";
license = licenses.gpl2;
maintainers = [ maintainers.vcunat ];
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
broken = versionOlder kernel.version "4.19"; # 4.14 breaks and 4.19 works
};
}