Andreas Källberg

Results 129 comments of Andreas Källberg

cabal-install-3.0 does use the nix-style commands by *default*, but it is still possible to use the old version, by prefixing the commands with old- or v1-. So instead of running...

@krangelov Is there any other pain you've experienced with using cabal-install that makes it not worth it? Because as I've said, the old functionality is still there, you just need...

It might be possible to resolve this by doing the dockerfile in several layers, where e.g. the rgl dockerfile depends on the gf-core one. One downside is that it might...

There's still some unpushed changes

Good thing we have CI! Some of the changes were not compatible with older ghc versions.

It might be possible to manually insert anchors with the old names into the markdown. Something like this might work: ```markdown #### cc = compute_concrete ``` See this stackoverflow question...

I wish there was a way to say that an IFD is platform independent (probably necessitating a hash of the expected resulting nix expression). That way you could handle other...

I believe your initial assessment was indeed correct. The pragma line should be changed from ``` #if MIN_VERSION_ghc(9,0,0) ``` to ``` #if MIN_GHC_API_VERSION(9,0,0) ``` It was changed from the latter...

The change to ``` pattern RealSrcSpan x y (GHC.RealSrcSpan x Nothing, y)) ``` would assert that the second field must be nothing, which is what caused the non-exhaustive pattern match...

> I think it has been fixed in a recent commit Yes, #2854 seems to have fixed it. @maralorn Can you try with the latest version from master and see...