38 lines
906 B
Plaintext
38 lines
906 B
Plaintext
cabal-version: 2.4
|
|
name: AoC2022
|
|
version: 0.1.0.0
|
|
|
|
-- A short (one-line) description of the package.
|
|
synopsis: Solutions for Advent of Code 2022
|
|
|
|
-- 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: CC-BY-NC-ND-4.0
|
|
author: Stefan Dresselhaus
|
|
maintainer: stefan@dresselhaus.cloud
|
|
|
|
-- A copyright notice.
|
|
-- copyright:
|
|
-- category:
|
|
extra-source-files:
|
|
CHANGELOG.md
|
|
README.md
|
|
|
|
executable Day1
|
|
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
|
|
, safe
|
|
hs-source-dirs: day1
|
|
default-language: Haskell2010
|