1
1
mirror of https://github.com/sol/hpack.git synced 2024-10-04 11:47:15 +03:00
hpack/hpack.cabal

103 lines
2.0 KiB
Plaintext
Raw Normal View History

2015-08-30 04:38:05 +03:00
-- This file has been generated from package.yaml by hpack version 0.5.4.
--
2015-04-20 11:23:58 +03:00
-- see: https://github.com/sol/hpack
2015-04-20 11:23:58 +03:00
name: hpack
2015-07-16 09:02:02 +03:00
version: 0.5.4
2015-04-27 07:34:08 +03:00
synopsis: An alternative format for Haskell packages
2015-07-02 14:46:13 +03:00
homepage: https://github.com/sol/hpack#readme
bug-reports: https://github.com/sol/hpack/issues
2015-04-27 07:51:55 +03:00
maintainer: Simon Hengel <sol@typeful.net>
2015-04-07 12:33:24 +03:00
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
2014-11-19 17:56:44 +03:00
source-repository head
type: git
2015-07-02 14:46:13 +03:00
location: https://github.com/sol/hpack
2015-04-10 05:47:48 +03:00
2015-07-02 17:33:23 +03:00
library
2015-07-09 11:32:23 +03:00
hs-source-dirs:
src
ghc-options: -Wall
2015-07-02 17:33:23 +03:00
build-depends:
aeson >= 0.8
, base >= 4.7 && < 5
, base-compat >= 0.8
, deepseq
, directory
, filepath
2015-06-26 16:02:22 +03:00
, Glob
2015-07-02 17:33:23 +03:00
, text
, unordered-containers
, yaml
2015-07-09 05:13:36 +03:00
exposed-modules:
Hpack.Config
Hpack.Run
2015-08-26 12:48:51 +03:00
Hpack.Yaml
2015-07-09 05:13:36 +03:00
other-modules:
2015-07-11 16:01:20 +03:00
Hpack.GenericsUtil
Hpack.Haskell
2015-07-09 11:32:23 +03:00
Hpack.Render
2015-07-09 05:13:36 +03:00
Hpack.Util
default-language: Haskell2010
2015-07-02 17:33:23 +03:00
2015-04-20 11:23:58 +03:00
executable hpack
main-is: Main.hs
2015-07-09 11:32:23 +03:00
hs-source-dirs:
driver
ghc-options: -Wall
build-depends:
2015-04-04 07:43:47 +03:00
aeson >= 0.8
2015-07-02 16:46:47 +03:00
, base >= 4.7 && < 5
, base-compat >= 0.8
2015-04-07 13:22:02 +03:00
, deepseq
2015-04-04 06:46:48 +03:00
, directory
, filepath
2015-06-26 16:02:22 +03:00
, Glob
, text
2015-04-04 06:46:48 +03:00
, unordered-containers
, yaml
2015-07-02 17:48:08 +03:00
, hpack
default-language: Haskell2010
2015-04-10 05:47:48 +03:00
test-suite spec
2015-03-27 13:15:21 +03:00
type: exitcode-stdio-1.0
main-is: Spec.hs
2015-07-09 11:32:23 +03:00
hs-source-dirs:
test
, src
2015-08-26 12:48:51 +03:00
ghc-options: -Wall -DTEST
build-depends:
2015-04-04 07:43:47 +03:00
aeson >= 0.8
2015-07-02 16:46:47 +03:00
, base >= 4.7 && < 5
, base-compat >= 0.8
2015-04-07 13:22:02 +03:00
, deepseq
, directory
, filepath
2015-06-26 16:02:22 +03:00
, Glob
, text
2015-03-27 13:15:21 +03:00
, unordered-containers
, yaml
2015-04-10 04:54:21 +03:00
, hspec == 2.*
2015-06-12 07:20:30 +03:00
, mockery >= 0.3
2015-04-10 05:13:37 +03:00
, interpolate
2015-07-02 17:40:50 +03:00
, aeson-qq
2015-07-09 05:13:36 +03:00
other-modules:
Helper
Hpack.ConfigSpec
2015-07-11 16:01:20 +03:00
Hpack.GenericsUtilSpec
Hpack.HaskellSpec
2015-07-09 11:32:23 +03:00
Hpack.RenderSpec
2015-07-09 05:13:36 +03:00
Hpack.RunSpec
Hpack.UtilSpec
Hpack.Config
2015-07-11 16:01:20 +03:00
Hpack.GenericsUtil
Hpack.Haskell
2015-07-09 11:32:23 +03:00
Hpack.Render
2015-07-09 05:13:36 +03:00
Hpack.Run
Hpack.Util
2015-08-26 12:48:51 +03:00
Hpack.Yaml
default-language: Haskell2010