I recently read this thread and set up a new Haskell/Nix project using the cookie cutter template. Now I’d like to add haskell-ide-engine “support” for it. I tried following the instructions to install hie globally and set it to build for ghc865
via…
((import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master") {}).selection { selector = p: { inherit (p) ghc865; }; })
…in my configuration.nix
below systemPackages
.
In my project, I then set the same nixpkgs rev as hie uses (just to be sure) and set compiler
to ghc865
. My default.nix
is here. However, Nix complains about: attribute 'ghc865' missing
.
Did something change with regards to the Haskell package structure that causes this?