-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcabal.nix
29 lines (27 loc) · 880 Bytes
/
cabal.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
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, aeson, comonad, dataDefault, exceptions, free, httpClient
, httpClientTls, httpTypes, HUnit, mtl, QuickCheck, rawStringsQq
, resourcet, scientific, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2, text, time, transformers
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "shopify";
version = "0.0.0.1";
src = ./.;
isLibrary = true;
isExecutable = true;
buildDepends = [
aeson comonad dataDefault exceptions free httpClient httpClientTls
httpTypes mtl resourcet scientific text time transformers
unorderedContainers
];
testDepends = [
HUnit QuickCheck rawStringsQq testFramework testFrameworkHunit
testFrameworkQuickcheck2
];
meta = {
license = self.stdenv.lib.licenses.unfree;
platforms = self.ghc.meta.platforms;
};
})