diff options
author | pacien | 2019-12-23 05:09:25 +0100 |
---|---|---|
committer | pacien | 2019-12-23 05:09:25 +0100 |
commit | 8de4411269ae85789c1cc7d81a9ecf0facbe78ff (patch) | |
tree | 9e1e25dd238ef7560fd2573631cdb4b77b9a2adf /compiler/package.yaml | |
parent | 06c4d9299bb684805051355555fa89f0d440d194 (diff) | |
download | ldgallery-8de4411269ae85789c1cc7d81a9ecf0facbe78ff.tar.gz |
compiler: add base structures and encoding
Diffstat (limited to 'compiler/package.yaml')
-rw-r--r-- | compiler/package.yaml | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/compiler/package.yaml b/compiler/package.yaml index 7cd0178..f2a319e 100644 --- a/compiler/package.yaml +++ b/compiler/package.yaml | |||
@@ -1,26 +1,30 @@ | |||
1 | name: ldgallery-compiler | 1 | name: ldgallery-compiler |
2 | version: 0.1.0.0 | 2 | version: 0.1.0.0 |
3 | github: "githubuser/ldgallery-compiler" | 3 | github: "pacien/ldgallery" |
4 | license: BSD3 | 4 | license: AGPL-3 |
5 | author: "Author name here" | 5 | author: "Pacien TRAN-GIRARD, Guillaume FOUET" |
6 | maintainer: "example@example.com" | 6 | maintainer: "" |
7 | copyright: "2019 Author name here" | 7 | copyright: "2019 Pacien TRAN-GIRARD, Guillaume FOUET" |
8 | 8 | ||
9 | extra-source-files: | 9 | extra-source-files: |
10 | - README.md | 10 | - readme.md |
11 | - ChangeLog.md | ||
12 | 11 | ||
13 | # Metadata used when publishing your package | 12 | # Metadata used when publishing your package |
14 | # synopsis: Short description of your package | 13 | synopsis: A static generator which turns a collection of tagged pictures into a searchable web gallery |
15 | # category: Web | 14 | category: Web |
16 | 15 | description: Please see the README on GitHub at <https://github.com/pacien/ldgallery> | |
17 | # To avoid duplicated efforts in documentation and dealing with the | ||
18 | # complications of embedding Haddock markup inside cabal files, it is | ||
19 | # common to point users to the README.md file. | ||
20 | description: Please see the README on GitHub at <https://github.com/githubuser/ldgallery-compiler#readme> | ||
21 | 16 | ||
22 | dependencies: | 17 | dependencies: |
23 | - base >= 4.7 && < 5 | 18 | - base >= 4.7 && < 5 |
19 | - text | ||
20 | - optparse-applicative | ||
21 | - cmdargs | ||
22 | - filepath | ||
23 | - directory | ||
24 | - directory-tree | ||
25 | - aeson | ||
26 | - yaml | ||
27 | - JuicyPixels | ||
24 | 28 | ||
25 | library: | 29 | library: |
26 | source-dirs: src | 30 | source-dirs: src |