-
Notifications
You must be signed in to change notification settings - Fork 3
/
default.nix
36 lines (32 loc) · 1.1 KB
/
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
(import ./reflex-platform.nix).project ({ pkgs, ... }: {
packages = {
webapi = ./webapi;
webapi-contract = ./webapi-contract;
webapi-client-reflex-dom = ./webapi-client-reflex-dom;
webapi-swagger = ./webapi-swagger;
webapi-docs = ./webapi-docs;
bytestring-trie = ((pkgs.fetchFromGitHub {
owner = "capital-match";
repo = "bytestring-trie";
rev = "47526b2ec810239fe824c03c13cf1d81f0741b5c";
sha256 = "1m4ywdh2wh0l8f7w7q7k4p0icsx5slcpjgnv3biylz1yvzb1y42q";
}));
};
overrides = self : super : {
bytestring-lexing = pkgs.haskell.lib.dontCheck super.bytestring-lexing;
http-media = pkgs.haskell.lib.dontCheck super.http-media;
Glob = pkgs.haskell.lib.dontCheck super.Glob;
multiset = pkgs.haskell.lib.dontCheck super.multiset;
};
shells = {
ghc = ["webapi"
"webapi-contract"
"webapi-client-reflex-dom"
"webapi-swagger"
"webapi-docs"
];
ghcjs = ["webapi-contract"
"webapi-client-reflex-dom"
];
};
})