haskellPackages: use Cabal 3.14.1.0 over 3.14.0.0

This commit is contained in:
sternenseemann 2024-12-24 14:41:09 +01:00
parent 628a40319a
commit 0bbb00e8ee
4 changed files with 5 additions and 5 deletions

View File

@ -764,7 +764,7 @@ that depend on that library, you may want to use:
```nix
haskellPackages.haskell-ci.overrideScope (self: super: {
Cabal = self.Cabal_3_14_0_0;
Cabal = self.Cabal_3_14_1_0;
})
```

View File

@ -29,8 +29,8 @@ self: super: {
Cabal_3_12_1_0 = doDistribute (super.Cabal_3_12_1_0.override {
Cabal-syntax = self.Cabal-syntax_3_12_1_0;
});
Cabal_3_14_0_0 = doDistribute (super.Cabal_3_14_0_0.override {
Cabal-syntax = self.Cabal-syntax_3_14_0_0;
Cabal_3_14_1_0 = doDistribute (super.Cabal_3_14_1_0.override {
Cabal-syntax = self.Cabal-syntax_3_14_1_0;
});
# hackage-security == 0.6.2.6 has a wider support range in theory, but it only

View File

@ -64,6 +64,6 @@ callPackage' ./hadrian.nix (
}
// lib.optionalAttrs (lib.versionAtLeast ghcVersion "9.11") {
# See https://gitlab.haskell.org/ghc/ghc/-/commit/145a6477854d4003a07573d5e7ffa0c9a64ae29c
Cabal = bootPkgs.Cabal_3_14_0_0;
Cabal = bootPkgs.Cabal_3_14_1_0;
}
)

View File

@ -563,7 +563,7 @@ let
] released;
Cabal_3_10_3_0 = released;
Cabal_3_12_1_0 = released;
Cabal_3_14_0_0 = released;
Cabal_3_14_1_0 = released;
cabal2nix = lib.subtractLists [
compilerNames.ghc9101
] released;