forked from picca/hs-hdf5
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhdf5.cabal
60 lines (53 loc) · 2.48 KB
/
hdf5.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
50
51
52
53
54
55
56
57
58
59
60
name: hdf5
version: 1.8.8
stability: provisional
cabal-version: >= 1.6
build-type: Simple
author: James Cook <[email protected]>
maintainer: James Cook <[email protected]>
license: PublicDomain
homepage: https://github.com/mokus0/hs-hdf5
category: Database
synopsis: Haskell interface to the HDF5 scientific data storage library.
description: This is a low-level but typesafe Haskell interface to the HDF5 library. No pointers necessary.
source-repository head
type: git
location: git://github.com/mokus0/hs-hdf5.git
Library
hs-source-dirs: src
ghc-options: -Wall -Werror
exposed-modules: Bindings.HDF5
, Bindings.HDF5.Core
, Bindings.HDF5.Dataset
, Bindings.HDF5.Dataspace
, Bindings.HDF5.Datatype
, Bindings.HDF5.Datatype.Internal
, Bindings.HDF5.Error
, Bindings.HDF5.ErrorCodes
, Bindings.HDF5.File
, Bindings.HDF5.Group
, Bindings.HDF5.Link
, Bindings.HDF5.Object
, Bindings.HDF5.PropertyList
, Bindings.HDF5.PropertyList.DAPL
, Bindings.HDF5.PropertyList.DCPL
, Bindings.HDF5.PropertyList.DXPL
, Bindings.HDF5.PropertyList.FAPL
, Bindings.HDF5.PropertyList.FCPL
, Bindings.HDF5.PropertyList.FMPL
, Bindings.HDF5.PropertyList.GAPL
, Bindings.HDF5.PropertyList.GCPL
, Bindings.HDF5.PropertyList.LAPL
, Bindings.HDF5.PropertyList.LCPL
, Bindings.HDF5.PropertyList.OCPL
, Bindings.HDF5.PropertyList.OCPYPL
, Bindings.HDF5.PropertyList.STRCPL
, Bindings.HDF5.PropertyList.TAPL
, Bindings.HDF5.PropertyList.TCPL
other-modules: Bindings.HDF5.Core.HDFResultType
, Bindings.HDF5.Core.HId
build-depends: base >= 3 && < 5
, bindings-hdf5
, bytestring
, tagged
, vector