1
1
mirror of https://github.com/sol/hpack.git synced 2024-10-04 19:57:14 +03:00
hpack/package.yaml

61 lines
994 B
YAML

name: hpack
version: 0.21.0
synopsis: An alternative format for Haskell packages
description: See README at <https://github.com/sol/hpack#readme>
maintainer: Simon Hengel <sol@typeful.net>
license: MIT
github: sol/hpack
category: Development
extra-source-files:
- CHANGELOG.md
ghc-options: -Wall
dependencies:
- base >= 4.8 && < 5
- bytestring
- deepseq
- directory
- filepath
- Glob
- text
- containers
- unordered-containers
- yaml
- aeson >= 0.11
- scientific
- Cabal
- pretty
- bifunctors
- cryptonite
- transformers
library:
source-dirs: src
exposed-modules:
- Hpack
- Hpack.Config
- Hpack.Run
- Hpack.Yaml
executable:
main: Main.hs
source-dirs: driver
dependencies:
- hpack
tests:
spec:
cpp-options: -DTEST
main: Spec.hs
source-dirs:
- test
- src
dependencies:
- hspec == 2.*
- HUnit >= 1.6.0.0
- QuickCheck
- temporary
- mockery >= 0.3
- interpolate