-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
81 lines (74 loc) · 1.67 KB
/
package.yaml
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
name: fortran-src-extras
version: 0.5.0
synopsis: Common functions and utils for fortran-src.
description: Various utility functions and orphan instances which may be useful when using fortran-src.
category: Language
github: camfort/fortran-src-extras
license: Apache-2.0
maintainer: [email protected]
extra-source-files:
- README.md
- CHANGELOG.md
- test/input_data/**/*
# 2022-01-25: raehik: the essentials + handful of syntax (most in GHC2021)
# 2022-06-21: copied from fortran-src 6702ee51cf7c0df5007e165003f053baa65706c1
default-extensions:
# essential
- EmptyCase
- FlexibleContexts
- FlexibleInstances
- InstanceSigs
- MultiParamTypeClasses
- PolyKinds
- LambdaCase
# deriving-related
- DerivingStrategies
- StandaloneDeriving
- DeriveAnyClass
- DeriveGeneric
- DeriveDataTypeable
- DeriveFunctor
- DeriveFoldable
- DeriveTraversable
- DeriveLift
# less essential but still gimmes
- BangPatterns
- TupleSections
ghc-options:
- -Wall
dependencies:
- base >= 4.7 && <5
- fortran-src >= 0.14 && < 0.16
- aeson >= 1.5 && < 2.2
- bytestring >= 0.10 && < 0.12
- optparse-applicative >= 0.14 && < 0.18
- uniplate ^>= 1.6.10
- GenericPretty ^>= 1.2.1
- text >= 1.2 && < 2.1
- containers >= 0.5 && < 0.7
library:
source-dirs: src
dependencies:
- filepath ^>= 1.4.1.2
- either ^>= 5.0.0
tests:
spec:
main: Spec.hs
source-dirs: test
build-tools:
- hspec-discover
dependencies:
- fortran-src-extras
- hspec >= 2.2 && < 3
- silently ^>= 1.2
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
executables:
fortran-src-extras:
source-dirs: app
main: Main.hs
dependencies:
- fortran-src-extras
- yaml ^>= 0.11.8.0