haskell-language-server: disable GHC 9.2.1 by default on aarch64

GHC 9.2.1 is still very much broken on aarch64, unfortunately.
This commit is contained in:
sternenseemann 2022-02-06 13:24:29 +01:00
parent 62580dc6fb
commit 5dac0d9723

View File

@ -1,5 +1,10 @@
{ lib, supportedGhcVersions ? [ "884" "8107" "902" "921" ], stdenv, haskellPackages
, haskell }:
{ lib
, stdenv
, supportedGhcVersions ? [ "884" "8107" "902" ]
++ lib.optionals (!stdenv.hostPlatform.isAarch64) [ "921" ]
, haskellPackages
, haskell
}:
#
# The recommended way to override this package is
#