Merge pull request #158347 from sternenseemann/hls-disable-9.2.1-aarch64
[haskell-updates] haskell-language-server: disable GHC 9.2.1 by default on aarch64
This commit is contained in:
commit
a69ba07157
@ -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
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user