monomer/package.yaml

99 lines
1.8 KiB
YAML
Raw Normal View History

2020-05-04 20:19:48 +03:00
name: monomer
2019-09-23 17:46:21 +03:00
version: 0.1.0.0
2020-05-04 20:19:48 +03:00
github: "fjvallarino/monomer"
2019-09-23 17:46:21 +03:00
license: BSD3
author: "Francisco Vallarino"
maintainer: "fjvallarino@gmail.com"
copyright: "2018 Francisco Vallarino"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
# synopsis: GUI Library
# category: GUI
# 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.
2020-05-04 20:19:48 +03:00
description: Please see the README on Github at <https://github.com/fjvallarino/monomer#readme>
2019-09-23 17:46:21 +03:00
default-extensions:
- OverloadedStrings
dependencies:
- async
2020-09-14 00:37:59 +03:00
- attoparsec
2019-09-23 17:46:21 +03:00
- base >= 4.7 && < 5
2020-08-25 06:23:36 +03:00
- bytestring
- bytestring-to-vector
2021-01-12 20:34:39 +03:00
- cborg
2019-09-23 17:46:21 +03:00
- containers
- concurrent-extra
2019-09-23 17:46:21 +03:00
- data-default
2021-01-12 20:34:39 +03:00
- exceptions
2019-09-23 17:46:21 +03:00
- extra
- formatting
2020-10-12 03:54:34 +03:00
- http-client
2020-08-24 08:11:37 +03:00
- JuicyPixels
- lens
2019-09-23 17:46:21 +03:00
- mtl
- nanovg
- OpenGL
- sdl2
2021-01-12 20:34:39 +03:00
- serialise
2020-06-08 21:25:52 +03:00
- stm
2019-09-23 17:46:21 +03:00
- text
2020-06-04 23:36:01 +03:00
- text-show
2020-08-24 08:11:37 +03:00
- transformers
2019-09-23 17:46:21 +03:00
- unordered-containers
- vector
2020-10-01 05:27:36 +03:00
- wreq
2019-09-23 17:46:21 +03:00
library:
source-dirs: src
c-sources:
- cbits/glew.c
cc-options:
- -fPIC
ghc-options:
- -fwarn-incomplete-patterns
extra-libraries:
- GLEW
executables:
2020-05-04 20:19:48 +03:00
monomer-exe:
2019-09-23 17:46:21 +03:00
main: Main.hs
source-dirs: app
ghc-options:
- -fwarn-incomplete-patterns
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -with-rtsopts=-T
dependencies:
2020-06-08 21:25:52 +03:00
- ekg
- lens
2020-05-04 20:19:48 +03:00
- monomer
2019-09-23 17:46:21 +03:00
tests:
2020-05-04 20:19:48 +03:00
monomer-test:
2019-09-23 17:46:21 +03:00
main: Spec.hs
source-dirs: test/unit
ghc-options:
- -fwarn-incomplete-patterns
2020-11-13 02:26:19 +03:00
# - -threaded
2019-09-23 17:46:21 +03:00
- -rtsopts
- -with-rtsopts=-N
2020-11-12 18:59:04 +03:00
- -with-rtsopts=-T
2019-09-23 17:46:21 +03:00
dependencies:
- call-stack
2021-01-12 20:34:39 +03:00
- directory
2020-05-04 20:19:48 +03:00
- monomer
2019-09-23 17:46:21 +03:00
- hedgehog
- hspec
- HUnit
- silently