urbit/pkg/king/package.yaml
Elliot Glaysher 555b9e7dcf Moved terminal initialization up to Pier.
Joe told me to look at the Jaque terminal and I just did. That uses
the Lanterna Java library to handle terminal output. Joe then suggested
that I move the entire system here to curses or another similar library.
2019-08-28 13:17:01 -07:00

144 lines
2.2 KiB
YAML

name: king
version: 0.1.0
license: AGPL-3.0-only
library:
source-dirs: lib
ghc-options:
- -fwarn-incomplete-patterns
- -fwarn-unused-binds
- -fwarn-unused-imports
- -Werror
- -O2
tests:
king-tests:
source-dirs: test
main: Main.hs
dependencies: king
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- async
- base
- base-unicode-symbols
- binary
- bytestring
- case-insensitive
- classy-prelude
- conduit
- containers
- data-fix
- directory
- entropy
- extra
- fixed-vector
- flat
- ghc-prim
- hashable
- hashtables
- http-client
- http-types
- integer-gmp
- iproute
- largeword
- lens
- lmdb
- megaparsec
- mtl
- multimap
- network
- para
- pretty-show
- primitive
- process
- QuickCheck
- random
- regex-tdfa
- regex-tdfa-text
- resourcet
- rio
- sdl2
- sdl2-image
- semigroups
- smallcheck
- stm
- stm-chans
- tasty
- tasty-quickcheck
- tasty-th
- template-haskell
- terminfo
- text
- these
- time
- transformers
- unix
- unordered-containers
- vector
- wai
- wai-conduit
- warp
- warp-tls
- optparse-applicative
default-extensions:
- ApplicativeDo
- BangPatterns
- BlockArguments
- DataKinds
- DefaultSignatures
- DeriveAnyClass
- DeriveDataTypeable
- DeriveFoldable
- DeriveGeneric
- DeriveTraversable
- DerivingStrategies
- EmptyCase
- EmptyDataDecls
- EmptyDataDeriving
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- GeneralizedNewtypeDeriving
- LambdaCase
- MagicHash
- MultiParamTypeClasses
- NamedFieldPuns
- NoImplicitPrelude
- NumericUnderscores
- OverloadedStrings
- PackageImports
- PartialTypeSignatures
- PatternSynonyms
- QuasiQuotes
- Rank2Types
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- StandaloneDeriving
- TemplateHaskell
- TupleSections
- TypeApplications
- TypeFamilies
- TypeOperators
- UnboxedTuples
- UnicodeSyntax
- ViewPatterns
executables:
king:
main: Main.hs
source-dirs: app
dependencies: ["king"]
ghc-options:
- -threaded
- -rtsopts
- "-with-rtsopts=-N"
- -fwarn-incomplete-patterns
- -O0