Fix evaluation of cabal2nix

`cabal2nix` fails to evaluate due to attempting to
evaluate `pkgs.haskellPackages.hackage-db_2_1_0`, which
does not exist.  However, the default
`pkgs.haskellPackages.hackage-db` is already version 2.1.0,
so the fix is simple: go back to using the default version.
This commit is contained in:
Gabriel Gonzalez 2020-03-30 19:23:29 -07:00
parent 4bbb0e83b1
commit 8d2c08e774

View file

@ -78,7 +78,6 @@ self: super: {
# hackage-db uses must match, so take the latest
cabal2nix = super.cabal2nix.overrideScope (self: super: {
Cabal = self.Cabal_3_0_0_0;
hackage-db = self.hackage-db_2_1_0;
});
# cabal2spec needs a recent version of Cabal