]> Git — Sourcephile - julm/AoC-2020.git/blob - Day07/AoC2020.cabal
add Day07
[julm/AoC-2020.git] / Day07 / AoC2020.cabal
1 name: AoC2020
2 version: 0.0.0.0
3 synopsis: Advent of Code 2020
4 description:
5 homepage: https://adventofcode.com/2020
6 license: BSD3
7 license-file:
8 author: Julien Moutinho <julm+haskell@sourcephile.fr>
9 maintainer: Julien Moutinho <julm+haskell@sourcephile.fr>
10 copyright: Julien Moutinho <julm+haskell@sourcephile.fr>
11 category: Tutorial
12 build-type: Simple
13 extra-source-files:
14 cabal-version: >=1.10
15 data-files:
16 example1
17 example2
18 batch
19
20 source-repository head
21 type: git
22 location: git://git.sourcephile.fr/julm/AoC-2020
23
24 executable Day
25 default-language: Haskell2010
26 main-is: Main.hs
27 other-modules:
28 Paths_AoC2020
29 autogen-modules:
30 Paths_AoC2020
31 default-extensions:
32 NoImplicitPrelude
33 build-depends:
34 base,
35 bytestring,
36 containers,
37 megaparsec,
38 parser-combinators,
39 text
40 ghc-options:
41 -Wall
42 -Wincomplete-uni-patterns
43 -Wincomplete-record-updates