dependency failure on unix library
#389
Answered
by
peterbecich
peterbecich
asked this question in
Q&A
|
I am attempting to use
The Flake uses Any ideas? Thanks |
Answered by
peterbecich
Jan 5, 2025
Replies: 1 comment 4 replies
A name with a version is only used in the package set when it's not the default version. |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm sorry to hear that, you deserve to have access.
Summary is GHC boot packages only appear in
haskellPackageswith appended version, i.e.This completely solves my confusion. My package is not building with dependencies
base_4_21_0_0,unix_2_8_6_0, andtemplate-haskell_2_23_0_0fromhaskellPackages-- it is getting these dependencies directly from GHC. (I incorrectly assumedunix_2_8_6_0was implicitly used asunixwith no explicitunixin the package set.)To dete…