forked from elliottt/hsopenid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenid.cabal
49 lines (46 loc) · 1.68 KB
/
openid.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
name: openid
version: 0.1
cabal-version: >= 1.2
synopsis: An implementation of the OpenID-2.0 spec.
description: An implementation of the OpenID-2.0 spec.
category: Network
author: Trevor Elliott
maintainer: [email protected]
copyright: (c) 2008. Trevor Elliott <[email protected]>
license: BSD3
license-file: LICENSE
build-type: Simple
tested-with: GHC == 6.8.2
flag split-base
default: True
description: Use the new split base package.
library
if flag(split-base)
build-depends: base >= 3, bytestring, containers
else
build-depends: base < 3
build-depends: HTTP, monadLib, nano-hmac, network, time, xml
extra-libraries: crypto, ssl
hs-source-dirs: src
exposed-modules: Codec.Binary.Base64,
Codec.Encryption.DH,
Data.Digest.OpenSSL.SHA,
Network.SSL,
Network.OpenID,
Network.OpenID.Association,
Network.OpenID.Association.Manager,
Network.OpenID.Association.Map,
Network.OpenID.Authentication,
Network.OpenID.Discovery,
Network.OpenID.HTTP,
Network.OpenID.Normalization,
Network.OpenID.Types,
Network.OpenID.Utils,
Text.XRDS
ghc-options: -W
extensions: EmptyDataDecls,
FlexibleContexts,
FlexibleInstances,
ForeignFunctionInterface,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses