packages feed

x509-system-1.4.4: x509-system.cabal

Name:                x509-system
Version:             1.4.4
Description:         System X.509 handling
License:             BSD3
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          Vincent Hanquez <vincent@snarc.org>
Synopsis:            Handle per-operating-system X.509 accessors and storage
Build-Type:          Simple
Category:            Data
stability:           experimental
Homepage:            http://github.com/vincenthz/hs-certificate
Cabal-Version:       >=1.8

Library
  Build-Depends:     base >= 3 && < 5
                   , bytestring
                   , mtl
                   , containers
                   , directory
                   , filepath
                   , process
                   , time
                   , pem >= 0.1 && < 0.3
                   , x509 >= 1.4 && < 1.5
                   , x509-store >= 1.4 && < 1.5
  Exposed-modules:   System.X509
                     System.X509.Unix
                     System.X509.MacOS
  ghc-options:       -Wall
  if os(windows)
     cpp-options:     -DWINDOWS
     Build-Depends:   Win32
     extra-libraries: Crypt32
     Exposed-modules: System.X509.Win32
  if os(OSX)
     cpp-options: -DMACOSX

source-repository head
  type:     git
  location: git://github.com/vincenthz/hs-certificate
  subdir:   x509-system