summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeschli <jeschli@gmail.com>2019-12-11 19:40:28 +0100
committerJeschli <jeschli@gmail.com>2019-12-11 19:52:01 +0100
commit01b9ce8cd33eb1a77cb811eba40aed5a46789093 (patch)
treea721f8ba68cd24e7edb13d219f249ad46247ce13
parenta1da8a8408c3be99cf0da2a16eefe138687ec04e (diff)
j haskell: intial commit
-rw-r--r--jeschli/2configs/haskell.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/jeschli/2configs/haskell.nix b/jeschli/2configs/haskell.nix
new file mode 100644
index 0000000..2e00d06
--- /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; }; })
+ ];
+}