| 9 Mar 2026 |
alexfmpe | Oh yay more build-tool-depends annoyances | 18:13:04 |
alexfmpe | https://github.com/well-typed/haskell-debugger/pull/203 | 18:13:07 |
alexfmpe | Which quickly got reverted because cabal somehow failed to build cabal | 18:15:21 |
alexfmpe | https://github.com/well-typed/haskell-debugger/issues/206 | 18:16:06 |
alexfmpe | * Oh yay more build-tool-depends annoyances. I recently ran into | 18:16:34 |
| 10 Mar 2026 |
sterni (he/him) | chreekat: well it's forever now… | 10:00:30 |
| prescientmoon changed their profile picture. | 11:07:59 |
| 11 Mar 2026 |
| itamar joined the room. | 00:38:04 |
alexfmpe | I'm truly confused...
https://github.com/NixOS/nixpkgs/commit/34f316a97a3e0e69bea9b44cd1142f7e73557437 broke haskell.packages.ghc914.haskell-debugger - reverting the commit fixes it
the reason is that the older hie-bios's bounds do not build with 9.14 boot libs
however, switching back to recent hie-bios in configuration-9.14.nix causes failures in the test suite when building hie-bios???
oddly enough, the older hie-bios does build with jailbreak | 14:52:55 |
alexfmpe | * I'm truly confused...
https://github.com/NixOS/nixpkgs/commit/34f316a97a3e0e69bea9b44cd1142f7e73557437 broke haskell.packages.ghc914.haskell-debugger - reverting the commit fixes it
the reason is that the older hie-bios's bounds do not build with 9.14 boot libs
however, switching back to recent hie-bios in configuration-9.14.nix causes failures in the test suite when building hie-bios???
the older hie-bios does build with jailbreak, doesn't seem like much changed for 9.14: https://github.com/haskell/hie-bios/commits/master/ | 14:53:23 |
sterni (he/him) | alexfmpe: you probably lose an override that is otherwise applied to hie-bios | 19:06:52 |
sterni (he/him) | the order of the overlays matters and it is not always ideal | 19:07:13 |
alexfmpe | Aaaah yeah could be, I PR'd jailbreak for now since it works | 19:12:42 |
| 12 Mar 2026 |
sterni (he/him) | alexfpe: https://hydra.nixos.org/build/323993958 | 20:35:21 |
sterni (he/him) | * alexfmpe: https://hydra.nixos.org/build/323993958 | 20:35:26 |
sterni (he/him) | alexfmpe: probably a regression from 9.12.2 -> 9.12.3, curious | 21:47:51 |
| 13 Mar 2026 |
alexfmpe | hmm happens for primitive and text-short | 02:16:36 |
alexfmpe | and 9.14.1 | 04:24:40 |
alexfmpe | asked in #ghc-js-backend:matrix.org | 04:24:44 |
sterni (he/him) | okay I figured out why and wrote there | 11:18:36 |
sterni (he/him) | we could just downgrade the job to ghc9122 until this is resolved, not sure | 11:19:07 |
alexfmpe | I didn't even know we had 9.12.3 what with the bug | 17:53:50 |
alexfmpe | We don't have ghc9121 | 17:54:02 |
sterni (he/him) | well we patched it so | 19:58:44 |
sterni (he/him) | i thought 9.12.4 was never coming out but rc1 has been uploaded today so | 19:59:07 |
ijouw | I have multiple haskellPackages.developPackage projects i develop infrequently (it's ok if build fails sometimes) using cabal. I use import <nixpkgs> {} because i do not want to manually set versions for their ghc toolchain, and have them all use the same compiler (they should update using a centrally defined value ; i used ghcup before and it installed 200gb of ghc and libs in a year). I now want to test a newer version of ghc (i want to test the haskell debugger project) but my stable nixpkgs only has ghcHEAD with version >= 9.14 (but which appears to be not yet supported by cabal (or is the cabal in my ghcHEAD an old one?)). Is there a way to have similar behavior? I was thinking of copying haskell.packages.ghc___ from unstable into my local nixpkgs or pinning unstable in a central haskell project that i need to pull from manually. Any advice is welcome. | 23:11:58 |
alexfmpe | I have a "devenv" project with basically just a shell.nix with a nixpkgs pin and haskell tooling | 23:35:01 |
alexfmpe | that way it's independent of my system nixpkgs, yet it works as a default environment for all projects where I cba doing anything fancier than <nixpkgs> | 23:35:47 |
alexfmpe | if you really want a nixpkgs-provisioned debugger, you probably want to point to haskell-updates branch, as https://github.com/NixOS/nixpkgs/pull/496489 is fairly recent and not yet in unstable branch | 23:38:09 |
alexfmpe | * I have a "devenv" project with basically just a shell.nix with a nixpkgs pin for haskell tooling | 23:38:30 |