aboutsummaryrefslogtreecommitdiffhomepage
path: root/scaffolder/package.yaml
diff options
context:
space:
mode:
authorFrédéric Menou <frederic.menou@fretlink.com>2016-12-08 10:19:15 +0200
committerIsmaël Bouya <ismael.bouya@fretlink.com>2022-05-17 18:01:51 +0200
commita9d77a20008efe82862cc1adbfa7a6d4f09f8ff7 (patch)
treeadf3186fdccaeef19151026cdfbd38a530cf9ecb /scaffolder/package.yaml
downloadedi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.tar.gz
edi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.tar.zst
edi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.zip
Release code as open sourceHEADmaster
Diffstat (limited to 'scaffolder/package.yaml')
-rw-r--r--scaffolder/package.yaml53
1 files changed, 53 insertions, 0 deletions
diff --git a/scaffolder/package.yaml b/scaffolder/package.yaml
new file mode 100644
index 0000000..b99b04a
--- /dev/null
+++ b/scaffolder/package.yaml
@@ -0,0 +1,53 @@
1name: edi-parser-scaffolder
2version: 20190607
3github: fretlink/edi-parser
4author: FretLink
5maintainer: example@example.com
6copyright: 2019 FretLink
7
8extra-source-files:
9- README.md
10
11# Metadata used when publishing your package
12# synopsis: Short description of your package
13# category: Web
14
15# To avoid duplicated efforts in documentation and dealing with the
16# complications of embedding Haddock markup inside cabal files, it is
17# common to point users to the README.md file.
18description: Please see the README on GitHub at <https://github.com/githubuser/edi-parser-scaffolder#readme>
19
20dependencies:
21- base >= 4.7 && < 5
22
23library:
24 source-dirs: src
25 ghc-options:
26 - -Wall
27 - -Werror
28 dependencies:
29 - bytestring
30 - directory
31 - filepath
32 - formatting
33 - mtl
34 - pandoc
35 - pandoc-types
36 - parsec
37 - process
38 - split
39 - text
40 - transformers
41 - zip-archive
42
43executables:
44 edi-parser-scaffolder:
45 main: Main.hs
46 source-dirs: app
47 ghc-options:
48 - -threaded
49 - -rtsopts
50 - -with-rtsopts=-N
51 dependencies:
52 - edi-parser-scaffolder
53 - optparse-applicative