blob: abfae547f15258851e523f863b895a802157bad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
|