X-Git-Url: https://git.njae.me.uk/?p=advent-of-code-20.git;a=blobdiff_plain;f=advent11%2Fpackage.yaml;fp=advent11%2Fpackage.yaml;h=17440a884f95b4fedb28ee07d790b4038110333f;hp=0000000000000000000000000000000000000000;hb=a3175189f99c76ed782189826efdde2fbadfd708;hpb=1e9f01ceeffca5c34bec504c950f9c75686956f2 diff --git a/advent11/package.yaml b/advent11/package.yaml new file mode 100644 index 0000000..17440a8 --- /dev/null +++ b/advent11/package.yaml @@ -0,0 +1,68 @@ +# 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: advent11 +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: + advent11: + main: advent11.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - containers + - mtl + - monad-loops + + advent11naive: + main: advent11naive.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - containers