summaryrefslogtreecommitdiffstats
path: root/neohascal.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'neohascal.cabal')
-rw-r--r--neohascal.cabal39
1 files changed, 39 insertions, 0 deletions
diff --git a/neohascal.cabal b/neohascal.cabal
new file mode 100644
index 0000000..abfae54
--- /dev/null
+++ b/neohascal.cabal
@@ -0,0 +1,39 @@
+cabal-version: 3.0
+name: neohascal
+version: 0.1.0.0
+synopsis: A simple terminal calendar with iCalendar support
+description: A cal-like terminal calendar with iCalendar agenda support.
+license: BSD-3-Clause
+author: tv
+build-type: Simple
+extra-source-files:
+ README.md
+
+executable neohascal
+ main-is: Main.hs
+ hs-source-dirs: app
+ default-language: GHC2024
+
+ ghc-options:
+ -Wall
+ -Wcompat
+ -Widentities
+ -Wincomplete-uni-patterns
+ -Wincomplete-record-updates
+ -Wmissing-export-lists
+ -Wmissing-home-modules
+ -Wpartial-fields
+ -Wredundant-constraints
+ -O2
+
+ build-depends:
+ base >= 4.17 && < 5,
+ iCalendar >= 0.4.1.1 && < 0.5,
+ time >= 1.12 && < 2,
+ text >= 2.0 && < 3,
+ directory >= 1.3 && < 2,
+ filepath >= 1.4 && < 2
+ , bytestring
+ , data-default-class
+ , containers
+