dependency failure on unix library
#389
-
|
I am attempting to use
The Flake uses Any ideas? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
A name with a version is only used in the package set when it's not the default version. |
Beta Was this translation helpful? Give feedback.
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…