-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.yaml
111 lines (104 loc) · 2.25 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
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
108
109
110
111
name: morloc
version: 0.50.0
homepage: https://github.com/morloc-project/morloc
synopsis: A multi-lingual, typed, workflow language
description: See GitHub README <https://github.com/morloc-project/morloc#readme>
category: Language, Compiler, Code Generation
license: GPL-3
license-file: LICENSE
author: "Zebulun Arendsee"
maintainer: "[email protected]"
github: "morloc-project/morloc"
bug-reports: https://github.com/morloc-project/morloc/issues
copyright: "2020 Zebulun Arendsee"
extra-source-files:
- README.md
- ChangeLog.md
# libraries
- data/nexus.py # nexus template
- data/pools/pool.R
- data/pools/pool.cpp
- data/pools/pool.py
# msgpack
- data/msgpack/src/mlcmpack.h
# msgpack langs
- data/msgpack/lang/py/pympack.py
- data/msgpack/lang/r/mpackr.c
- data/msgpack/lang/cpp/cppmpack.hpp
default-extensions:
- TypeOperators
dependencies:
- base
- aeson
- bytestring
- containers
- directory
- directory-tree
- extra
- filepath
- file-embed
- haskell-src-meta
- http-conduit
- http-types
- megaparsec
- mtl
- parsec
- partial-order
- pretty-simple
- prettyprinter
- process
- raw-strings-qq
- safe
- scientific
- template-haskell
- text
- unordered-containers
- yaml
- zip-archive
ghc-options:
- -Wall
- -Wcompat
- -fwarn-unused-binds
- -fwarn-unused-imports
- -fwarn-tabs
- -fwarn-incomplete-uni-patterns
- -fwarn-incomplete-record-updates
- -fwarn-redundant-constraints
- -fno-warn-missing-signatures
- -fno-warn-unused-do-bind
- -fno-warn-orphans
- -haddock
library:
source-dirs: library
executables:
morloc:
main: Main.hs
source-dirs: executable
ghc-options:
- -Wall
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
- -haddock
dependencies:
- morloc
- base
- optparse-applicative
- text
tests:
morloc-test:
main: Main.hs
source-dirs: test-suite
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- morloc
- base
- QuickCheck
- tasty
- tasty-golden
- tasty-hunit
- tasty-quickcheck