X-Git-Url: https://git.njae.me.uk/?p=advent-of-code-19.git;a=blobdiff_plain;f=advent04%2Fpackage.yaml;fp=advent04%2Fpackage.yaml;h=c8e40629947366c3cd58a33caaa89366c51d1dfa;hp=0000000000000000000000000000000000000000;hb=c2a0cc1ad95b213ef2552d25328341b3479822f7;hpb=c4794c207f6278f57aebedc5827d20cc6de41962 diff --git a/advent04/package.yaml b/advent04/package.yaml new file mode 100644 index 0000000..c8e4062 --- /dev/null +++ b/advent04/package.yaml @@ -0,0 +1,57 @@ +# 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: advent04 +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: + advent04: + main: advent04.hs + source-dirs: src + dependencies: + - base >= 2 && < 6