diff options
author | Andreas <andi@stillalive.games> | 2022-12-15 18:31:10 +0100 |
---|---|---|
committer | Andreas <andi@stillalive.games> | 2022-12-15 18:31:10 +0100 |
commit | a6eb2133c974c6f9880ed78c3a2b8521249081e6 (patch) | |
tree | 43a85dda4c82325c00bdc59a3e8429571834d3f4 /Day7/Day7.cabal | |
parent | 952c486fe2bf7011ac38601b1c3eccdda23cc9d0 (diff) |
Day 7: Unfinished
Diffstat (limited to 'Day7/Day7.cabal')
-rw-r--r-- | Day7/Day7.cabal | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Day7/Day7.cabal b/Day7/Day7.cabal new file mode 100644 index 0000000..bd15eb3 --- /dev/null +++ b/Day7/Day7.cabal @@ -0,0 +1,34 @@ +cabal-version: 2.4 +name: Day7 +version: 0.1.0.0 + +-- A short (one-line) description of the package. +-- synopsis: + +-- A longer description of the package. +-- description: + +-- A URL where users can report bugs. +-- bug-reports: + +-- The license under which the package is released. +-- license: +author: Andreas +maintainer: andi@stillalive.games + +-- A copyright notice. +-- copyright: +-- category: +extra-source-files: CHANGELOG.md + +executable Day7 + main-is: Main.hs + + -- Modules included in this executable, other than Main. + -- other-modules: + + -- LANGUAGE extensions used by modules in this package. + -- other-extensions: + build-depends: base ^>=4.14.3.0 + hs-source-dirs: app + default-language: Haskell2010 |