-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
44 lines (43 loc) · 934 Bytes
/
flake.nix
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
34
35
36
37
38
39
40
41
42
43
44
{
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
inputs.utils.url = "github:numtide/flake-utils";
outputs = { self, utils, nixpkgs }: utils.lib.simpleFlake {
inherit self nixpkgs;
name = "";
shell = { pkgs }: pkgs.mkShell {
packages = with pkgs; [
(haskellPackages.ghcWithPackages (p: with p; [
arithmoi
array
comonad
composition
containers
data-clist
data-interval
fingertree
foldl
kan-extensions
lattices
lens
linear
megaparsec
MemoTrie
modular-arithmetic
monad-dijkstra
mtl
profunctors
regex-tdfa
safe
split
unordered-containers
vector
]))
haskell-language-server
curl
htmlq
pandoc
xsel
];
};
};
}