haskellPackages.implicit-hie: Remove assertion to fix eval on ghc 9.4

Cabal-syntax is a core package from 9.4 on, so self.Cabal-syntax is then null.
This commit is contained in:
maralorn 2022-10-28 00:01:13 +02:00
parent fc886ef1fc
commit ed531547ff

View file

@ -1604,7 +1604,7 @@ self: super: {
hls-refactor-plugin = dontCheck super.hls-refactor-plugin;
# 2022-10-27: implicit-hie 0.1.3.0 needs a newer version of Cabal-syntax.
implicit-hie = assert self.Cabal-syntax.version == "3.6.0.0"; super.implicit-hie.override {
implicit-hie = super.implicit-hie.override {
Cabal-syntax = self.Cabal-syntax_3_8_1_0;
};