Some files that were deleted previously were not removed from the package. Now, compilation should work again.
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
name: rextra
|
|
version: 0.1.0.0
|
|
github: "Garmelon/rextra"
|
|
license: BSD3
|
|
author: "Author name here"
|
|
maintainer: "example@example.com"
|
|
copyright: "2019 Author name here"
|
|
|
|
extra-source-files:
|
|
- README.md
|
|
|
|
# Metadata used when publishing your package
|
|
# synopsis: Short description of your package
|
|
# category: Web
|
|
|
|
# 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: Please see the README on GitHub at <https://github.com/Garmelon/rextra#readme>
|
|
|
|
dependencies:
|
|
- base >= 4.7 && < 5
|
|
- transformers >= 0.5.6 && < 0.6
|
|
- containers >= 0.6 && < 0.7
|
|
- graphviz >= 2999.20 && < 2999.21
|
|
- fgl >= 5.7 && < 5.8
|
|
# algebraic-graphs >= 0.4 && < 0.5
|
|
|
|
library:
|
|
source-dirs: src
|
|
|
|
executables:
|
|
rextra-exe:
|
|
main: Main.hs
|
|
source-dirs: app
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- rextra
|
|
|
|
tests:
|
|
rextra-test:
|
|
main: Spec.hs
|
|
source-dirs: test
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- rexra
|