-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhapidry.cabal
87 lines (80 loc) · 2.69 KB
/
hapidry.cabal
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
name: hapidry
version: 0.4
synopsis: Initial project template from stack
description: Please see README.md
homepage: https://github.com/capgelka/hapidry#readme
license: GPL-2
license-file: LICENSE
author: capgelka
maintainer: [email protected]
copyright: GPL
category: network
build-type: Custom
cabal-version: >=1.10
custom-setup
setup-depends: base >= 4.7 && < 5, Cabal >= 1.18, directory >= 1.2.1
library
hs-source-dirs: src
exposed-modules: Api, Options, Utils, Json, Internal.Api, Internal.Json
ghc-options: -O3
build-depends: base
, lens
, lens-aeson
, cryptohash
, base16-bytestring
, containers
, wreq
, bytestring
, text
, aeson
, optparse-applicative
, configurator
, attoparsec
, unordered-containers
, split
, time
, directory
extra-libraries: html_md_tools ssl crypto
if !os(windows)
build-depends: editor-open
default-language: Haskell2010
executable hapidry
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O3
-- -l /home/lott/Data/hapidry/bin/libhtml_md_tools.so -dynamic
build-depends: base
, hapidry
, lens
, bytestring
, configurator
, text
, gitrev
, process
-- include-dirs: /home/lott/Data/hapidry/bin/
-- c-sources: foreign/html_md_tools2.c foreign/libhtml_md_tools.a
--cc-options: -O2 -std=c99
--include-dirs: foreign
-- include-dirs: bin
--extra-lib-dirs: foreign
default-language: Haskell2010
test-suite hapidry-test
type: exitcode-stdio-1.0
hs-source-dirs: test
other-modules: ApiSpec, JsonSpec
main-is: Spec.hs
build-depends: base
, hapidry
, hspec
, text
, bytestring
, QuickCheck
, wreq
, lens
, aeson
, lens-aeson
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O3
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/capgelka/hapidry