X-Git-Url: https://git.njae.me.uk/?p=advent-of-code-19.git;a=blobdiff_plain;f=advent06%2Fpackage.yaml;fp=advent06%2Fpackage.yaml;h=acfbfe7442eb0c00f21cdc0cdf84ee3bdeafc1c5;hp=0000000000000000000000000000000000000000;hb=b1f43af9754611639096522fbccb03fe80e355f2;hpb=9720d35537f4ddeb5fe8fa09a38c0583ae7b3b7c diff --git a/advent06/package.yaml b/advent06/package.yaml new file mode 100644 index 0000000..acfbfe7 --- /dev/null +++ b/advent06/package.yaml @@ -0,0 +1,60 @@ +# This YAML file describes your package. Stack will automatically generate a +# Cabal file when you run `stack build`. See the hpack website for help with +# this file: . + +name: advent06 +synopsis: Advent of Code +version: '0.0.1' + +default-extensions: +- AllowAmbiguousTypes +- ApplicativeDo +- BangPatterns +- BlockArguments +- DataKinds +- DeriveFoldable +- DeriveFunctor +- DeriveGeneric +- DeriveTraversable +- EmptyCase +- FlexibleContexts +- FlexibleInstances +- FunctionalDependencies +- GADTs +- GeneralizedNewtypeDeriving +- ImplicitParams +- KindSignatures +- LambdaCase +- MonadComprehensions +- MonoLocalBinds +- MultiParamTypeClasses +- MultiWayIf +- NegativeLiterals +- NumDecimals +- OverloadedLists +- OverloadedStrings +- PartialTypeSignatures +- PatternGuards +- PatternSynonyms +- PolyKinds +- RankNTypes +- RecordWildCards +- ScopedTypeVariables +- TemplateHaskell +- TransformListComp +- TupleSections +- TypeApplications +- TypeInType +- TypeOperators +- ViewPatterns + + +executables: + advent06: + main: advent06.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - text + - megaparsec + - containers