datepicker

An fzf-like tool to interactively select a date in a provided format

git clone https://git.8pit.net/datepicker.git

 1cabal-version:      3.4
 2name:               datepicker
 3version:            0.1.0
 4synopsis:           An fzf-like tool to interactively select a date in a provided format
 5-- description:
 6license:            GPL-3.0-or-later
 7license-file:       LICENSE
 8author:             Sören Tempel
 9maintainer:         soeren+git@soeren-tempel.net
10-- copyright:
11category:           System
12build-type:         Simple
13extra-doc-files:    README.md
14-- extra-source-files:
15
16common warnings
17    ghc-options: -Wall
18
19executable datepicker
20    import:           warnings
21    ghc-options:      -threaded
22    main-is:          Main.hs
23    other-modules:    UI.Month
24                    , UI.Time
25                    , UI
26                    , Util
27                    , CmdLine
28    build-depends:    base >=4.16.0.0
29                    , time >=1.12.2
30                    , unix
31                    , vty  >=6.2
32                    , vty-unix
33                    , optparse-applicative >=0.17.0.0
34    hs-source-dirs:   app
35    default-language: GHC2021