diff options
author | Frédéric Menou <frederic.menou@fretlink.com> | 2016-12-08 10:19:15 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@fretlink.com> | 2022-05-17 18:01:51 +0200 |
commit | a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7 (patch) | |
tree | adf3186fdccaeef19151026cdfbd38a530cf9ecb /specification/package.yaml | |
download | edi-parser-master.tar.gz edi-parser-master.tar.zst edi-parser-master.zip |
Diffstat (limited to 'specification/package.yaml')
-rw-r--r-- | specification/package.yaml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/specification/package.yaml b/specification/package.yaml new file mode 100644 index 0000000..361f977 --- /dev/null +++ b/specification/package.yaml | |||
@@ -0,0 +1,55 @@ | |||
1 | name: edi-parser-specification | ||
2 | version: 20190607 | ||
3 | synopsis: Support for subset of the Edifact specification | ||
4 | description: Please see README.md | ||
5 | category: Text | ||
6 | author: FretLink | ||
7 | maintainer: example@example.com | ||
8 | copyright: 2019 FretLink | ||
9 | github: fretlink/edi-parser | ||
10 | |||
11 | extra-source-files: | ||
12 | - README.md | ||
13 | |||
14 | dependencies: | ||
15 | - edi-parser-core | ||
16 | |||
17 | library: | ||
18 | source-dirs: src | ||
19 | ghc-options: | ||
20 | - -Wall | ||
21 | - -Werror | ||
22 | dependencies: | ||
23 | - base >=4.7 && <5 | ||
24 | |||
25 | executables: | ||
26 | edi-parser-specification: | ||
27 | main: Main.hs | ||
28 | source-dirs: app | ||
29 | ghc-options: | ||
30 | - -threaded | ||
31 | - -rtsopts | ||
32 | - -with-rtsopts=-N | ||
33 | dependencies: | ||
34 | - base | ||
35 | - edi-parser-specification | ||
36 | - text | ||
37 | |||
38 | tests: | ||
39 | edi-parser-specification-test: | ||
40 | main: Spec.hs | ||
41 | source-dirs: test | ||
42 | ghc-options: | ||
43 | - -threaded | ||
44 | - -rtsopts | ||
45 | - -with-rtsopts=-N | ||
46 | - -Wall | ||
47 | - -Werror | ||
48 | dependencies: | ||
49 | - base | ||
50 | - edi-parser-specification | ||
51 | - parsec | ||
52 | - HUnit | ||
53 | - test-framework | ||
54 | - test-framework-hunit | ||
55 | - text | ||