File: x509-system.cabal

package info (click to toggle)
haskell-x509-system 1.6.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 72 kB
  • sloc: haskell: 119; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 1,492 bytes parent folder | download | duplicates (2)
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
Name:                x509-system
version:             1.6.7
Synopsis:            Handle per-operating-system X.509 accessors and storage
Description:         System X.509 handling for accessing operating system dependents store and other storage methods
License:             BSD3
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          Vincent Hanquez <vincent@snarc.org>
Build-Type:          Simple
Category:            Data
stability:           experimental
Homepage:            http://github.com/vincenthz/hs-certificate
Cabal-Version:       >= 1.10

Library
  Default-Language:  Haskell2010
  Build-Depends:     base >= 3 && < 5
                   , bytestring
                   , mtl
                   , containers
                   , directory
                   , filepath
                   , process
                   , pem >= 0.1 && < 0.3
                   , x509 >= 1.6
                   , x509-store >= 1.6.2
  Exposed-modules:   System.X509
                     System.X509.Unix
                     System.X509.MacOS
  ghc-options:       -Wall
  if os(windows)
     cpp-options:     -DWINDOWS
     Build-Depends:   Win32, asn1-encoding
     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