This drops you into a nix shell with all the dependencies for the project you're working on present.
You can also (especially easy if you're using projectile) run compile with the command nix-shell -I . shell.nix --command "cabal configure; cabal build" and that give you a nice list of type errors in your current project.
Repeatable builds with no cabal hell. In the words of disney: "I'm never going back, the past is in the past!"
All my projects now have a default.nix and a shell.nix and I have this little snippet in emacs:
This drops you into a nix shell with all the dependencies for the project you're working on present. You can also (especially easy if you're using projectile) run compile with the command nix-shell -I . shell.nix --command "cabal configure; cabal build" and that give you a nice list of type errors in your current project. Repeatable builds with no cabal hell. In the words of disney: "I'm never going back, the past is in the past!"