advent-of-code/2015/haskell/haskell.cabal
2023-10-11 18:56:36 +02:00

49 lines
1.1 KiB
Plaintext

cabal-version: 3.0
name: haskell
version: 0.1.0.0
synopsis: Advent of Code 2015 solutions
-- A longer description of the package.
-- description:
homepage:
-- A URL where users can report bugs.
-- bug-reports:
license: MIT
author: Maciej Jur
maintainer: maciej@kamoshi.org
-- A copyright notice.
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
library
exposed-modules:
Day01
Day03
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base ^>=4.16.4.0
hs-source-dirs: src
default-language: Haskell2010
executable haskell
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.16.4.0,
haskell
hs-source-dirs: app
default-language: Haskell2010