Haskell: Difference between revisions
→Scripting: Swap (legacy?) `haskellPackages.ghcWithPackages` for `ghc.withPackages` and add better starting examples for shell scripting with Haskell, using `Shh` in addition to `Turtle`. |
m →Scripting: Add shh-extras for interactive usage of shh |
||
| Line 39: | Line 39: | ||
... | ... | ||
(ghc.withPackages (hsPkgs: with hsPkgs; [ | (ghc.withPackages (hsPkgs: with hsPkgs; [ | ||
turtle | turtle # Faster startup time with all external shell commands | ||
shh | shh # Piping operators and other goodies | ||
... | shh-extras # Try shh as an interactive shell | ||
... # ...anything else you want! | |||
]) | ]) | ||
]; | ]; | ||