Vekhir
Vekhir
Hi, since `bytestring 0.11.1.0`, `Data.ByteString.Builder` has an instance `Show Builder` (see also [the documentation](https://hackage.haskell.org/package/bytestring-0.11.1.0/docs/Data-ByteString-Builder.html#g:1)). Since `test/Common.hs` defines its own instance `Show Builder`, this leads to the following error: ``` Building...
@bergmark When building `fclabels` 2.0.5.1 using GHC 9.8 on Arch, the following error occurs: ``` [ 6 of 10] Compiling Data.Label.Derive ( src/Data/Label/Derive.hs, dist/build/Data/Label/Derive.dyn_o ) src/Data/Label/Derive.hs:310:55: error: [GHC-83865] • Couldn't...
Hi @sebastiaanvisser, The module `Control.Monad.Trans.Error` was deprecated a long time ago and finally removed in `transformers` 0.6 which is shipped with GHC 9.6. This leads to this error: ``` [1...
Builds and tests fine
The codebase currently accesses the fields of `QtCore.Qt` directly, e.g. `Qt.white`. `Qt.white` is part of the `Qt.GlobalColor` enum, so can also be accessed via `Qt.GlobalColor.white`. The latter access method is...