1
1
mirror of https://github.com/Yvee1/hascard.git synced 2024-11-25 20:33:34 +03:00
hascard/package.yaml
Steven van den Broek e9c6f95135 Update info
2020-07-18 19:58:57 +02:00

62 lines
1.5 KiB
YAML

name: hascard
version: 0.1.0.0
github: "Yvee1/hascard"
license: BSD3
author: "Steven van den Broek"
maintainer: "stevenvdb@live.nl"
copyright: "2020 Steven van den Broek"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
synopsis: A TUI for reviewing notes using 'flashcards' written with markdown-like syntax.
category: Application
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Hascard is a text-based user interface for reviewing notes using 'flashcards'. Cards are written in markdown-like syntax. Please see the README file on GitHub at <https://github.com/Yvee1/hascard#readme> for more information.
dependencies:
- base >= 4.7 && < 5
- brick >= 0.52
- word-wrap
- vty
- microlens-platform
- parsec
- containers
- directory
- text
- vector
- filepath
- microlens
- process
- optparse-applicative
library:
source-dirs: src
executables:
hascard:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hascard
tests:
hascard-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hascard