X-Git-Url: https://git.njae.me.uk/?p=advent-of-code-20.git;a=blobdiff_plain;f=advent18%2Fpackage.yaml;fp=advent18%2Fpackage.yaml;h=ce75243889f1ed42ac73bcc3ed48e9d452afa306;hp=0000000000000000000000000000000000000000;hb=ff7c977aec28eed475a009d86e7f5d2b63de672f;hpb=b49dd731ff412a5f60fa70f0d288fe532c3b55e6 diff --git a/advent18/package.yaml b/advent18/package.yaml new file mode 100644 index 0000000..ce75243 --- /dev/null +++ b/advent18/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: 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 +- NamedFieldPuns +- NegativeLiterals +- NumDecimals +# - OverloadedLists +- OverloadedStrings +- PartialTypeSignatures +- PatternGuards +- PatternSynonyms +- PolyKinds +- RankNTypes +- RecordWildCards +- ScopedTypeVariables +- TemplateHaskell +- TransformListComp +- TupleSections +- TypeApplications +- TypeFamilies +- TypeInType +- TypeOperators +- ViewPatterns + +executables: + advent18: + main: advent18.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - text + - attoparsec