-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.nix
More file actions
33 lines (30 loc) · 709 Bytes
/
shell.nix
File metadata and controls
33 lines (30 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {};
ipkgs = import sources.nixpkgs { system = "x86_64-darwin"; };
ghc_version = "ghc92";
in
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
# Beam things
elixir_1_14
erlangR25
rebar3
# Haskell things
hpack
haskell.compiler.${ghc_version}
#haskell.packages.${ghc_version}.ghcid
haskell.packages.${ghc_version}.terminal-size
haskellPackages.implicit-hie
ghc
ghcid
cabal-install
ormolu
haskell.packages.${ghc_version}.haskell-language-server
#Racket is already installed :(
#Clojure
clojure
### MISC
zlib
]; ##++ (with ipkgs; [ gforth agda]);
}