~singpolyma/haskell-gnutls

ref: 500141717414c5fb47eb8febeb04c855c8b6229b haskell-gnutls/gnutls.cabal -rw-r--r-- 1.3 KiB
50014171 — John Millikin Minor cleanups. Remove maximum version of "transformers" dependency. 10 years ago
                                                                                
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: gnutls
version: 0.1.2
license: GPL-3
license-file: license.txt
author: John Millikin <jmillikin@gmail.com>
maintainer: John Millikin <jmillikin@gmail.com>
build-type: Simple
cabal-version: >= 1.6
category: Network
stability: experimental
homepage: https://john-millikin.com/software/haskell-gnutls/
bug-reports: mailto:jmillikin@gmail.com

synopsis: Bindings for GNU libgnutls
description:
  You almost certainly don't want to depend on this release.
  .
  This is a pre-alpha, almost useless release; its only purpose is to enable
  TLS support in some of my other libraries. More complete bindings for GNU TLS
  will be released at a later date.

source-repository head
  type: bazaar
  location: https://john-millikin.com/branches/haskell-gnutls/0.1/

source-repository this
  type: bazaar
  location: https://john-millikin.com/branches/haskell-gnutls/0.1/
  tag: haskell-gnutls_0.1.2

library
  hs-source-dirs: lib
  ghc-options: -Wall -O2

  build-depends:
      base >= 4.0 && < 5.0
    , bytestring >= 0.9 && < 0.10
    , transformers >= 0.2
    , monads-tf >= 0.1 && < 0.2

  extra-libraries: gnutls, gnutls-extra
  pkgconfig-depends: gnutls, gnutls-extra

  exposed-modules:
    Network.Protocol.TLS.GNU

  other-modules:
    Network.Protocol.TLS.GNU.ErrorT
    Network.Protocol.TLS.GNU.Foreign