X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=advent16%2Fpackage.yaml;fp=advent16%2Fpackage.yaml;h=fd86649f8cf7a7ec211fa91137d8e63f4e14070e;hb=70a2317943e3e4aa5dc95d19d9dda961560c0cf5;hp=0000000000000000000000000000000000000000;hpb=b904f5370b9389023824baeeece358ae7bfef278;p=advent-of-code-19.git diff --git a/advent16/package.yaml b/advent16/package.yaml new file mode 100644 index 0000000..fd86649 --- /dev/null +++ b/advent16/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: advent16 +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: + advent16: + main: advent16.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - text + - containers +