jitsi-roomsv2/backend/package.yaml

66 lines
1.4 KiB
YAML
Raw Normal View History

2023-01-15 18:26:41 +01:00
name: jitsi-rooms
version: 0.1.0.0
github: "githubuser/jitsi-rooms"
license: BSD3
author: "Author name here"
maintainer: "example@example.com"
copyright: "2023 Author name here"
2023-01-15 16:38:57 +01:00
extra-source-files:
2023-01-15 18:26:41 +01:00
- README.md
- CHANGELOG.md
2023-01-15 16:38:57 +01:00
# 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.
2023-01-15 18:26:41 +01:00
description: Please see the README on GitHub at <https://github.com/githubuser/jitsi-rooms#readme>
2023-01-15 16:38:57 +01:00
dependencies:
2023-01-15 18:26:41 +01:00
- base >= 4.7 && < 5
- classy-prelude
- wai
- http-types
- warp
- websockets
2023-01-15 16:38:57 +01:00
ghc-options:
2023-01-15 18:26:41 +01:00
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
2023-01-15 16:38:57 +01:00
library:
source-dirs: src
executables:
jitsi-rooms-exe:
2023-01-15 18:26:41 +01:00
main: Main.hs
source-dirs: app
2023-01-15 16:38:57 +01:00
ghc-options:
2023-01-15 18:26:41 +01:00
- -threaded
- -rtsopts
- -with-rtsopts=-N
2023-01-15 16:38:57 +01:00
dependencies:
2023-01-15 18:26:41 +01:00
- jitsi-rooms
2023-01-15 16:38:57 +01:00
tests:
jitsi-rooms-test:
2023-01-15 18:26:41 +01:00
main: Spec.hs
source-dirs: test
2023-01-15 16:38:57 +01:00
ghc-options:
2023-01-15 18:26:41 +01:00
- -threaded
- -rtsopts
- -with-rtsopts=-N
2023-01-15 16:38:57 +01:00
dependencies:
2023-01-15 18:26:41 +01:00
- jitsi-rooms
default-extensions: NoImplicitPrelude,OverloadedStrings,ImportQualifiedPost