1
1
mirror of https://github.com/sol/hpack.git synced 2024-10-04 19:57:14 +03:00
hpack/package.yaml
Michael Snoyman 331ab4eacc Use binary I/O for cabal files
This makes character encoding of UTF-8 explicit, and avoids problems
when a different system locale is set. For more information, see:
http://www.snoyman.com/blog/2016/12/beware-of-readfile
2017-01-06 12:21:58 +02:00

56 lines
876 B
YAML

name: hpack
version: 0.15.0
synopsis: An alternative format for Haskell packages
maintainer: Simon Hengel <sol@typeful.net>
license: MIT
github: sol/hpack
category: Development
extra-source-files:
- README.md
ghc-options: -Wall
dependencies:
- base >= 4.7 && < 5
- base-compat >= 0.8
- bytestring
- deepseq
- directory
- filepath
- Glob
- text
- containers
- unordered-containers
- yaml
- aeson >= 0.11
library:
source-dirs: src
exposed-modules:
- Hpack
- Hpack.Config
- Hpack.Run
- Hpack.Yaml
executables:
hpack:
main: Main.hs
source-dirs: driver
dependencies:
- hpack
tests:
spec:
cpp-options: -DTEST
main: Spec.hs
source-dirs:
- test
- src
dependencies:
- hspec == 2.*
- QuickCheck
- temporary
- mockery >= 0.3
- interpolate
- aeson-qq