urbit/pkg/hair/package.yaml

112 lines
1.8 KiB
YAML
Raw Normal View History

2019-05-08 23:00:12 +03:00
name: vere
version: 0.1.0
license: AGPL-3.0-only
library:
2019-05-08 23:00:12 +03:00
source-dirs: lib
ghc-options:
- -fwarn-incomplete-patterns
- -O2
2019-05-08 23:00:12 +03:00
executables:
uterm:
main: Main.hs
source-dirs: app/uterm
dependencies: ["vere"]
ghc-options:
- -threaded
- -rtsopts
- "-with-rtsopts=-H128m"
- -fwarn-incomplete-patterns
- -O2
2019-05-08 23:00:12 +03:00
vere:
main: Main.hs
source-dirs: app/vere
dependencies: ["vere"]
ghc-options:
- -threaded
- -rtsopts
- "-with-rtsopts=-H128m"
- -fwarn-incomplete-patterns
- -O2
dependencies:
2019-05-08 23:00:12 +03:00
- async
- base
- bytestring
2019-05-18 00:52:12 +03:00
- case-insensitive
- classy-prelude
- containers
- data-fix
2019-05-17 09:39:07 +03:00
- extra
- flat
- ghc-prim
2019-05-24 02:58:18 +03:00
- hashtables
2019-05-17 03:05:34 +03:00
- http-client
2019-05-18 00:52:12 +03:00
- http-types
2019-05-08 23:00:12 +03:00
- integer-gmp
- largeword
- lens
- lmdb
- megaparsec
- mtl
- multimap
- para
- pretty-show
- primitive
- QuickCheck
2019-05-29 21:33:09 +03:00
- sdl2
- sdl2-image
- semigroups
- smallcheck
2019-05-08 23:00:12 +03:00
- stm
- stm-chans
- tasty
- tasty-quickcheck
- tasty-th
- text
- these
2019-05-08 23:00:12 +03:00
- time
2019-05-15 08:09:53 +03:00
- transformers
- unordered-containers
- vector
2019-05-24 02:58:18 +03:00
- wai
2019-05-25 02:03:46 +03:00
- warp
- warp-tls
default-extensions:
- ApplicativeDo
- BangPatterns
2019-05-08 23:00:12 +03:00
- BlockArguments
2019-05-17 04:25:58 +03:00
- DeriveAnyClass
- DeriveDataTypeable
- DeriveFoldable
- DeriveGeneric
- DeriveTraversable
- DerivingStrategies
- EmptyDataDecls
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
2019-05-17 04:25:58 +03:00
- GeneralizedNewtypeDeriving
- LambdaCase
- MultiParamTypeClasses
- NamedFieldPuns
- NoImplicitPrelude
- NumericUnderscores
- OverloadedStrings
- PartialTypeSignatures
2019-05-08 23:00:12 +03:00
- QuasiQuotes
- Rank2Types
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- TemplateHaskell
- TupleSections
- TypeApplications
- TypeFamilies
- UnicodeSyntax
- ViewPatterns