-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhasknote.cabal
More file actions
49 lines (47 loc) · 1.59 KB
/
Copy pathhasknote.cabal
File metadata and controls
49 lines (47 loc) · 1.59 KB
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
40
41
42
43
44
45
46
47
48
49
name: hasknote
version: 0.1.0.0
license: MIT
license-file: LICENSE
copyright: (c) 2020 Rob Whitaker
category: CLI
author: Rob Whitaker
maintainer: Rob Whitaker <dev@robwhitaker.com>
cabal-version: >= 1.10
synopsis: A Haskell implementation of Tasknote for Taskwarrior.
-- homepage:
-- bug-reports:
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
executable hasknote
main-is: Main.hs
default-extensions: OverloadedStrings
, GeneralizedNewtypeDeriving
ghc-options: -Wall
-fwarn-incomplete-uni-patterns
-fwarn-tabs
-fwarn-incomplete-record-updates
-fno-warn-missing-signatures
-fno-warn-type-defaults
-Werror
-Wwarn=unused-imports
-Wwarn=unused-local-binds
-Wwarn=unused-matches
-Wwarn=unused-do-bind
build-depends: aeson
, base
, config-ini
, data-default
, directory
, filepath
, mtl
, optparse-applicative
, process
, taskwarrior
, text
, time
, utf8-string
, uuid
hs-source-dirs: src
default-language: Haskell2010