cabal2nix: add override to keep the ghc-8.6.x version compiling

This commit is contained in:
Peter Simons 2019-09-24 18:46:39 +02:00
parent cfb580f6c5
commit 933c885761

View file

@ -95,4 +95,7 @@ self: super: {
# Newer versions don't compile.
resolv = self.resolv_0_1_1_2;
# cabal2nix needs the latest version of Cabal.
cabal2nix = super.cabal2nix.overrideScope (self: super: { Cabal = self.Cabal_3_0_0_0; });
}