jitsi-roomsv2/backend/package.yaml

64 lines
1.3 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-27 18:34:28 +01:00
- aeson
- text
- bytestring
- uuid
- lifted-base
2023-01-29 12:08:50 +01:00
- mtl
2023-04-09 10:37:15 +02:00
- time
2023-06-19 19:04:53 +02:00
- wai-extra
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
2023-01-15 18:26:41 +01:00
default-extensions: NoImplicitPrelude,OverloadedStrings,ImportQualifiedPost