-
Upon trying to use
On a quick glance, this is a GHC thing, which may have existed since GHC 9.4. input-output-hk/haskell.nix#1939 The nixpkgs branch I linked above has a comment stating that building the compiler/pkgset worked. Is there something in haskell-flake that's breaking the build? Testing here: raehik/generic-data-functions#3 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Errors like this typically mean that the specified package is not in the package set. That is to say, there is no haskell-flake works with your haskell-flake/nix/modules/project/outputs.nix Lines 86 to 91 in 63a1608 |
Beta Was this translation helpful? Give feedback.
Errors like this typically mean that the specified package is not in the package set. That is to say, there is no
pkgs.haskell.packages.ghc98.system-cxx-std-lib
.haskell-flake works with your
basePackages
as-is, except for merging yourpackages
/settings
as overlays; seehaskell-flake/nix/modules/project/outputs.nix
Lines 86 to 91 in 63a1608