haskellPackages.brittany: pin to 0.13.1.2

0.14.0.0 introduces support for GHC 9.0.1, but also drops support for
all GHCs below, so we can't upgrade to that version.

For the 9.0.1 hls brittany support is now possible in theory. In
practice however, it is a massive pain to get to work, as britanny
depends on the latest and greatest version of multiple packages that are
pinned by Stackage LTS.
This commit is contained in:
sternenseemann 2021-12-05 13:32:30 +01:00
parent 0b07e1514d
commit b56049c449
3 changed files with 36 additions and 1 deletions

View file

@ -170,6 +170,6 @@ self: super: {
hls-fourmolu-plugin = null; # No upstream support, needs new fourmolu release hls-fourmolu-plugin = null; # No upstream support, needs new fourmolu release
hls-stylish-haskell-plugin = null; # No upstream support hls-stylish-haskell-plugin = null; # No upstream support
hls-brittany-plugin = null; # No upstream support, needs new brittany release hls-brittany-plugin = null; # Dependencies don't build with 9.0.1
}); });
} }

View file

@ -124,6 +124,8 @@ default-package-overrides:
# gi-cogl, gi-coglpango, gi-clutter, gi-json, gi-rsvg are only available for haskell-gi >= 0.26 # gi-cogl, gi-coglpango, gi-clutter, gi-json, gi-rsvg are only available for haskell-gi >= 0.26
# 1.2.1.0 needs opaleye >= 0.8 which stackage doesn't provide # 1.2.1.0 needs opaleye >= 0.8 which stackage doesn't provide
- rel8 < 1.2.1.0 - rel8 < 1.2.1.0
# 0.14.0.0 drops support for every GHC < 9.0.1
- brittany < 0.14
extra-packages: extra-packages:
- base16-bytestring < 1 # required for cabal-install etc. - base16-bytestring < 1 # required for cabal-install etc.

View file

@ -46917,6 +46917,38 @@ self: {
}) {}; }) {};
"brittany" = callPackage "brittany" = callPackage
({ mkDerivation, aeson, base, butcher, bytestring, cmdargs
, containers, czipwith, data-tree-print, deepseq, directory, extra
, filepath, ghc, ghc-boot-th, ghc-exactprint, ghc-paths, hspec
, monad-memo, mtl, multistate, parsec, pretty, random, safe
, semigroups, strict, syb, text, transformers, uniplate, unsafe
, yaml
}:
mkDerivation {
pname = "brittany";
version = "0.13.1.2";
sha256 = "1pa8qgsild3zl56sdmbsllka64k05jk2p16ij3bdla4rbfw96z5g";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base butcher bytestring cmdargs containers czipwith
data-tree-print deepseq directory extra filepath ghc ghc-boot-th
ghc-exactprint ghc-paths monad-memo mtl multistate pretty random
safe semigroups strict syb text transformers uniplate unsafe yaml
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
aeson base butcher bytestring cmdargs containers czipwith
data-tree-print deepseq directory extra filepath ghc ghc-boot-th
ghc-exactprint ghc-paths hspec monad-memo mtl multistate parsec
pretty safe semigroups strict syb text transformers uniplate unsafe
yaml
];
description = "Haskell source code formatter";
license = lib.licenses.agpl3Only;
}) {};
"brittany_0_14_0_0" = callPackage
({ mkDerivation, aeson, base, butcher, bytestring, cmdargs ({ mkDerivation, aeson, base, butcher, bytestring, cmdargs
, containers, czipwith, data-tree-print, deepseq, directory, extra , containers, czipwith, data-tree-print, deepseq, directory, extra
, filepath, ghc, ghc-boot, ghc-boot-th, ghc-exactprint, hspec , filepath, ghc, ghc-boot, ghc-boot-th, ghc-exactprint, hspec
@ -46949,6 +46981,7 @@ self: {
]; ];
description = "Haskell source code formatter"; description = "Haskell source code formatter";
license = lib.licenses.agpl3Only; license = lib.licenses.agpl3Only;
hydraPlatforms = lib.platforms.none;
}) {}; }) {};
"broadcast-chan" = callPackage "broadcast-chan" = callPackage