From 3549c0c99cf6ada0ca4668beab5ec648137e4035 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 14 Sep 2026 15:56:21 +0200 Subject: initial commit --- neohascal.cabal | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 neohascal.cabal (limited to 'neohascal.cabal') 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 + -- cgit v1.3.1