haskellPackages.geomancy: restrict platforms to x86

Won't build on e. g. aarch64 due to its use of x86 architecture specific
features.
This commit is contained in:
sternenseemann 2021-08-06 15:03:34 +02:00
parent f754109ecf
commit 22b39c2a36

View file

@ -788,6 +788,11 @@ self: super: builtins.intersectAttrs super {
platforms = pkgs.lib.platforms.x86;
};
# uses x86 intrinsics
geomancy = overrideCabal super.geomancy {
platforms = pkgs.lib.platforms.x86;
};
hls-brittany-plugin = overrideCabal super.hls-brittany-plugin (drv: {
testToolDepends = [ pkgs.git ];
preCheck = ''