-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchakra.cabal
More file actions
124 lines (121 loc) · 3.99 KB
/
Copy pathchakra.cabal
File metadata and controls
124 lines (121 loc) · 3.99 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
name: chakra
version: 0.1.0.0
synopsis: Bindings to ChakraCore JS in Haskell
description: Embed a Javascript runtime (ChakraCore) into your program.
homepage: https://github.com/vikrem/chakra#readme
license: LGPL
license-file: LICENSE
author: Vikrem
maintainer: me@vikrem.com
copyright: 2018 Vikrem
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
extra-source-files:
README.md
LICENSE
vendor/ChakraCoreFiles_1_10_2_Linux/include/ChakraCommon.h
vendor/ChakraCoreFiles_1_10_2_Linux/include/ChakraCoreVersion.h
vendor/ChakraCoreFiles_1_10_2_Linux/include/ChakraDebug.h
vendor/ChakraCoreFiles_1_10_2_Linux/include/ChakraCore.h
vendor/ChakraCoreFiles_1_10_2_OSX/include/ChakraCommon.h
vendor/ChakraCoreFiles_1_10_2_OSX/include/ChakraCoreVersion.h
vendor/ChakraCoreFiles_1_10_2_OSX/include/ChakraDebug.h
vendor/ChakraCoreFiles_1_10_2_OSX/include/ChakraCore.h
tested-with:
GHC == 8.2.2
GHC == 8.4.2
library
hs-source-dirs: src
exposed-modules: Chakra
, Chakra.Typescript
other-modules: Raw
, Types
build-depends: base >= 4.7 && < 5
, aeson
, async
, bytestring
, mtl
, protolude
, random
, resourcet
, safe-exceptions
, stm
, text
, time
, transformers
, unordered-containers
, uuid-types
, vector
default-language: Haskell2010
build-tools: c2hs
ghc-options: -Wall -Wno-unused-do-bind -Wno-missing-signatures -Wno-name-shadowing
cc-options: -Wall
if os(darwin)
include-dirs: vendor/ChakraCoreFiles_1_10_2_OSX/include
if os(linux)
include-dirs: vendor/ChakraCoreFiles_1_10_2_Linux/include
includes: ChakraCommon.h ChakraCoreVersion.h ChakraDebug.h ChakraCore.h
extra-libraries: ChakraCore
extra-lib-dirs: /usr/local/lib/
default-extensions: BangPatterns
, ConstraintKinds
, DataKinds
, DefaultSignatures
, DeriveFoldable
, DeriveFunctor
, DeriveGeneric
, DeriveLift
, DeriveTraversable
, DerivingStrategies
, EmptyCase
, ExistentialQuantification
, FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, GADTs
, GeneralizedNewtypeDeriving
, InstanceSigs
, KindSignatures
, LambdaCase
, MultiParamTypeClasses
, MultiWayIf
, NamedFieldPuns
, OverloadedStrings
, PatternSynonyms
, RankNTypes
, ScopedTypeVariables
, StandaloneDeriving
, TupleSections
, TypeApplications
, TypeFamilies
, TypeFamilyDependencies
, TypeOperators
test-suite tests
default-language: Haskell2010
ghc-options: -threaded -O2 -Wall -Wno-orphans
hs-source-dirs: tests
main-is: Test.hs
type: exitcode-stdio-1.0
build-depends:
base >= 4.3 && < 5
, aeson
, async
, bytestring
, hashable
, mtl
, protolude
, safe-exceptions
, scientific
, smallcheck
, tasty
, tasty-hunit
, tasty-smallcheck
, text
, unordered-containers
, vector
, chakra
source-repository head
type: git
location: https://github.com/vikrem/chakra