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:
Ben Siraphob 2022-02-06 20:32:14 +00:00 committed by GitHub
commit a69ba07157
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
#