packages feed

gnutls-0.3: gnutls.cabal

name: gnutls
version: 0.3
license: GPL-3
license-file: license.txt
author: John Millikin <jmillikin@gmail.com>
maintainer: Stephen Paul Weber <singpolyma@singpolyma.net>
build-type: Simple
cabal-version: >= 1.10
category: Network
stability: experimental
homepage: https://git.singpolyma.net/haskell-gnutls
bug-reports: mailto:dev@singpolyma.net

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: git
  location: https://git.singpolyma.net/haskell-gnutls

source-repository this
  type: git
  location: https://git.singpolyma.net/haskell-gnutls
  tag: 0.3

library
  default-language: Haskell2010
  hs-source-dirs: lib
  ghc-options: -Wall -Wno-tabs -O2

  build-depends:
      base >= 4.0 && < 5.0
    , bytestring >= 0.9
    , transformers >= 0.4.0.0
    , unexceptionalio-trans

  extra-libraries: gnutls
  pkgconfig-depends: gnutls

  exposed-modules:
    Network.Protocol.TLS.GNU

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