]> Git — Sourcephile - julm/AoC-2020.git/blob - Day06/AoC2020.cabal
add Day07
[julm/AoC-2020.git] / Day06 / 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 example
17 batch
18
19 source-repository head
20 type: git
21 location: git://git.sourcephile.fr/julm/AoC-2020
22
23 executable Day
24 default-language: Haskell2010
25 main-is: Main.hs
26 other-modules:
27 Paths_AoC2020
28 autogen-modules:
29 Paths_AoC2020
30 default-extensions:
31 NoImplicitPrelude
32 build-depends:
33 base,
34 bytestring,
35 megaparsec,
36 parser-combinators,
37 text
38 ghc-options:
39 -Wall
40 -Wincomplete-uni-patterns
41 -Wincomplete-record-updates