diff options
author | Jeschli <jeschli@gmail.com> | 2019-12-11 19:40:28 +0100 |
---|---|---|
committer | Jeschli <jeschli@gmail.com> | 2020-02-11 17:54:20 +0100 |
commit | e75eb3ec0876f0df477d48f642dbce904acce519 (patch) | |
tree | d552f94a853db7ad64b5fa2506b60db07dc250b4 | |
parent | 81e9f8b8b5e02edca0cec7680fb43f0cd64200ae (diff) |
j haskell: intial commit
-rw-r--r-- | jeschli/2configs/haskell.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/jeschli/2configs/haskell.nix b/jeschli/2configs/haskell.nix new file mode 100644 index 000000000..2e00d0673 --- /dev/null +++ b/jeschli/2configs/haskell.nix @@ -0,0 +1,19 @@ +{ config, pkgs, ... }: +let + all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master") {}; +in +{ + environment.systemPackages = with pkgs; [ + cabal2nix + gcc + ghc + haskellPackages.cabal-install + haskellPackages.ghcid + haskellPackages.hindent + haskellPackages.hlint + haskellPackages.hoogle + haskellPackages.stack + haskellPackages.stylish-haskell + (all-hies.selection { selector = p: {inherit (p) ghc864; }; }) + ]; +} |