summaryrefslogtreecommitdiff
path: root/Day2/Day2.cabal
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2022-12-02 22:47:31 +0100
committerAndreas Grois <andi@grois.info>2022-12-02 22:47:31 +0100
commit15392a2813dd0902e9276deecbea9004049c0268 (patch)
tree1c5471b68b8837524988c7e9ed85988fd29a5bdb /Day2/Day2.cabal
parent84f908e3e56e1463f246a5aef4b92fc341246026 (diff)
Day 2
Diffstat (limited to 'Day2/Day2.cabal')
-rw-r--r--Day2/Day2.cabal34
1 files changed, 34 insertions, 0 deletions
diff --git a/Day2/Day2.cabal b/Day2/Day2.cabal
new file mode 100644
index 0000000..976a581
--- /dev/null
+++ b/Day2/Day2.cabal
@@ -0,0 +1,34 @@
+cabal-version: 2.4
+name: Day2
+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 Grois
+maintainer: andi@grois.info
+
+-- A copyright notice.
+-- copyright:
+-- category:
+extra-source-files: CHANGELOG.md
+
+executable Day2
+ 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.3.0
+ hs-source-dirs: app
+ default-language: Haskell2010