-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprimo-endpoint.cabal
103 lines (100 loc) · 1.93 KB
/
primo-endpoint.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: primo-endpoint
version: 0
synopsis: Convert and serve metadata to Fedora-like Solr documents for primo
-- description:
license: Apache-2.0
license-file: LICENSE
author: Dylan Simon
maintainer: dylan@dylex.net
copyright: 2017 NYU
-- category:
build-type: Simple
extra-source-files: README.md
tested-with: GHC == 7.10.3
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/NYULibraries/primo-endpoint
executable primo-endpoint
main-is: Main.hs
hs-source-dirs: .
other-modules:
Util
Auth
ISO639
Document
Fields
Config
Cache
Source.JSON
Source.Solr
Source.Blacklight
Source.FDA
Source.DLTS
Source.DLib
Source.SDR
Source.SpecialCollections
Source.ISAW
Collection
Output.HTML
Output.Primo
Output.MODS
Output
Server
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.8 && <5,
bytestring,
directory,
filepath,
time,
transformers,
case-insensitive,
text,
text-icu,
unordered-containers,
vector,
aeson >= 1,
blaze-html,
conduit,
conduit-combinators,
conduit-extra,
connection,
network-uri,
http-client >= 0.5,
http-client-tls,
http-conduit >= 2.2,
http-types,
shakespeare,
wai,
wai-extra,
warp,
xml-conduit,
xml-hamlet >= 0.4.1,
yaml,
zip-stream
test-suite test
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: .
other-modules:
Util
ISO639
Cache
default-language: Haskell2010
ghc-options: -Wall
build-depends:
aeson,
base,
bytestring,
case-insensitive,
directory,
filepath,
http-client,
http-conduit,
text,
time,
unordered-containers,
vector,
hspec