forked from windorg/app-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
39 lines (39 loc) · 957 Bytes
/
default.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
let
# ihp = builtins.fetchGit {
# url = "https://github.com/digitallyinduced/ihp.git";
# ref = "refs/tags/v0.15.0";
# };
ihp = builtins.fetchGit {
url = "https://github.com/digitallyinduced/ihp.git";
ref = "master";
rev = "4348601f54a43ebcaadf887de7b735439283e066";
};
haskellEnv = import "${ihp}/NixSupport/default.nix" {
ihp = ihp;
haskellDeps = p: with p; [
cabal-install
base
wai
text
hlint
fmt
pureMD5
aeson
unordered-containers
extra
cmark
named
time
aeson
neat-interpolation
optics
ihp-sentry
p.ihp
];
otherDeps = p: with p; [
# Native dependencies, e.g. imagemagick
];
projectPath = ./.;
};
in
haskellEnv