]> Git — Sourcephile - julm/AoC-2020.git/blob - AoC2020.cabal
rename aoc2020 -> AoC2020
[julm/AoC-2020.git] / 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 Day04/example
17 Day04/batch
18
19 source-repository head
20 type: git
21 location: git://git.sourcephile.fr/julm/AoC-2020
22
23 executable Day04
24 default-language: Haskell2010
25 main-is: Main.hs
26 hs-source-dirs: Day04
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 megaparsec,
37 parser-combinators,
38 text
39 ghc-options:
40 -Wall
41 -Wincomplete-uni-patterns
42 -Wincomplete-record-updates