forked from mirrors/nixpkgs
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:
parent
4bbb0e83b1
commit
8d2c08e774
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue