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