X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=advent18%2Fpackage.yaml;fp=advent18%2Fpackage.yaml;h=84dc7489ef6ea8abb662aa4d0c0aad81b368fdbb;hb=7d62744864f29867c8410ec6f2bbbfd8a2c7e043;hp=0000000000000000000000000000000000000000;hpb=d5e7b65eb2a47c9142530adfae52f30930cbf6ae;p=advent-of-code-19.git diff --git a/advent18/package.yaml b/advent18/package.yaml new file mode 100644 index 0000000..84dc748 --- /dev/null +++ b/advent18/package.yaml @@ -0,0 +1,61 @@ +# 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: advent18 +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: + advent18: + main: advent18.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - text + - containers + - pqueue + - mtl