Haskell: Difference between revisions

Crasm (talk | contribs)
Scripting: Swap (legacy?) `haskellPackages.ghcWithPackages` for `ghc.withPackages` and add better starting examples for shell scripting with Haskell, using `Shh` in addition to `Turtle`.
Crasm (talk | contribs)
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   # Faster startup time with all external shell commands
       turtle     # Faster startup time with all external shell commands
       shh     # Piping operators and other goodies
       shh         # Piping operators and other goodies
       ...     # ...anything else you want!
      shh-extras  # Try shh as an interactive shell
       ...         # ...anything else you want!
     ])
     ])
   ];  
   ];