Closed
Description
Once we remove the backwards compatibility support we may see some
value is a function while a set was expected
errors with old
haskell.nix code that looks like this:
import <nixpkgs> { inherit (import haskellNixSrc) config overlays system; }
solution is to change it to something like:
import <nixpkgs> { inherit ((import haskellNixSrc {}).nixpkgsArgs) config overlays system; }
or just:
import <nixpkgs> (import haskellNixSrc {}).nixpkgsArgs
Metadata
Metadata
Assignees
Labels
No labels