-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmohave.cabal
107 lines (104 loc) · 4.26 KB
/
mohave.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
cabal-version: 2.0
name: mohave
version: 0.0.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Yurii Batrak
maintainer:
-- copyright:
category: Science
build-type: Custom
-- extra-source-files: ChangeLog.md
custom-setup
setup-depends: base
, Cabal
library
exposed-modules: Data.Format.HDF.LowLevel
, Data.Format.HDF.LowLevel.Definitions
, Data.Format.HDF.LowLevel.HE
, Data.Format.HDF.LowLevel.SD
, Data.Format.HDF.SD
, Data.Format.NetCDF.LowLevel
, Data.Format.NetCDF.LowLevel.Attribute
, Data.Format.NetCDF.LowLevel.ChunkCache
, Data.Format.NetCDF.LowLevel.Dimension
, Data.Format.NetCDF.LowLevel.Error
, Data.Format.NetCDF.LowLevel.File
, Data.Format.NetCDF.LowLevel.Group
, Data.Format.NetCDF.LowLevel.String
, Data.Format.NetCDF.LowLevel.Variable
other-modules: Data.Format.HDF.LowLevel.C.Definitions
, Data.Format.HDF.LowLevel.Definitions.Internal
, Data.Format.NetCDF.LowLevel.Definitions
, Data.Format.NetCDF.LowLevel.C.Definitions
, Data.Format.NetCDF.LowLevel.Variable.Internal
, Internal.Definitions
, Foreign.C.Lib.FFI
C-Sources: cbits/HDF/wrapper.c
other-extensions: BangPatterns
, ConstraintKinds
, CPP
, DataKinds
, FlexibleContexts
, ForeignFunctionInterface
, GADTs
, MultiParamTypeClasses
, PatternSynonyms
, PolyKinds
, RankNTypes
, ScopedTypeVariables
, StandaloneDeriving
, TypeFamilies
, TypeInType
, TypeOperators
, UndecidableInstances
, ViewPatterns
ghc-options: -Wall
cc-options: -Wall -Wextra -pedantic
build-depends: base >=4.11 && <4.21
, bytestring
, exceptions >= 0.10 && < 0.11
, mtl >= 2.2 && < 2.4
, vector >= 0.12 && < 0.14
build-tool-depends: hsc2hs:hsc2hs
pkgconfig-depends: hdf >= 4.2.12 && < 4.3
, netcdf >= 4.6.0 && < 4.9.3
hs-source-dirs: src
default-language: Haskell2010
-- include-dirs: /opt/packages/hdf/4.2.14/include
-- extra-lib-dirs: /opt/packages/hdf/4.2.14/lib
-- extra-libraries: df z dl m
test-suite test-main
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Data.Format.HDF.LowLevel.SDSpec
, Data.Format.HDF.LowLevel.HESpec
, Data.Format.HDF.SDSpec
, Data.Format.NetCDF.LowLevel.AttributeSpec
, Data.Format.NetCDF.LowLevel.ChunkCacheSpec
, Data.Format.NetCDF.LowLevel.DimensionSpec
, Data.Format.NetCDF.LowLevel.ErrorSpec
, Data.Format.NetCDF.LowLevel.FileSpec
, Data.Format.NetCDF.LowLevel.GroupSpec
, Data.Format.NetCDF.LowLevel.StringSpec
, Data.Format.NetCDF.LowLevel.VariableSpec
, Testing.Common
, Spec
other-extensions: CPP
, DataKinds
, GADTs
, OverloadedStrings
, ScopedTypeVariables
ghc-options: -Wall
build-depends: mohave
, base
, bytestring
, filepath >= 1.4 && < 1.6
, directory >= 1.3.1
, hspec >= 2.6
, vector >= 0.12 && < 0.14
build-tool-depends: hspec-discover:hspec-discover >= 2.6
default-language: Haskell2010