]> Git — Sourcephile - julm/AoC-2020.git/blob - aoc2020.cabal
add J04
[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: Web
12 build-type: Simple
13 extra-source-files:
14 cabal-version: >=1.10
15
16 source-repository head
17 type: git
18 location: git://git.sourcephile.fr/julm/aoc2020
19
20 executable Day04
21 default-language: Haskell2010
22 main-is: Main.hs
23 hs-source-dirs: Day04
24 other-modules:
25 default-extensions:
26 build-depends:
27 base,
28 bytestring,
29 megaparsec,
30 parser-combinators,
31 text
32 ghc-options:
33 -Wall
34 -Wincomplete-uni-patterns
35 -Wincomplete-record-updates