-
Notifications
You must be signed in to change notification settings - Fork 1
/
shell.nix
43 lines (39 loc) · 914 Bytes
/
shell.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
{ nixpkgs ? (import <nixpkgs> {})
, haskell ? (import <nixpkgs>{}).haskellPackages }:
let
in rec {
haskellShopifyEnv = nixpkgs.myEnvFun {
name = "haskell-shopify";
buildInputs = [
# build depends
haskell.aeson
haskell.comonad
haskell.dataDefault
haskell.exceptions
haskell.free
haskell.httpClient
haskell.httpClientTls
haskell.httpTypes
haskell.mtl
haskell.resourcet
haskell.scientific
haskell.text
haskell.time
haskell.unorderedContainers
# test depends
haskell.HUnit
haskell.QuickCheck
haskell.rawStringsQq
haskell.testFramework
haskell.testFrameworkHunit
haskell.testFrameworkQuickcheck2
# editor tooling
haskell.ghc
haskell.ghcMod
haskell.cabalInstall
nixpkgs.vimHugeX
# random / delete
haskell.transformers
];
};
}