-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Binary cache not getting hit and GHC keeps building? #2236
Comments
I just tried following https://input-output-hk.github.io/haskell.nix/tutorials/getting-started-flakes.html#using-flake-init-and-nix and ran into the same problem.
Also, why is it picking 9.2.6? (Edit: I guess it could be that it wants to bootstrap the whole chain, and 9.2.6 is the first one missing in the cache.) |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
If https://input-output-hk.github.io/haskell.nix/reference/supported-ghc-versions.html is to be believed, the last supported version of GHC is 9.2.2. I don't know if that's true or not. |
My configuration flake contains:
nix.settings.substituters = [ "https://cache.iog.io" ];
nix.settings.trusted-public-keys = [ "hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=" ];
The Haskell flake:
nixConfig = {
extra-substituters = ["https://cache.iog.io"];
extra-trusted-public-keys = ["hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="];
allow-import-from-derivation = "true";
};
}
And yet when I run "nix develop" it goes through the lengthy process of building ghc-9.4.8 from scratch. The binary cache doesn't seem to be getting hit.
The text was updated successfully, but these errors were encountered: