-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhkt.cabal
62 lines (58 loc) · 1.88 KB
/
hkt.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: cfde96ab04d4b841c28def45014d39080c337228092785b60a7435457eaf68b1
name: hkt
version: 0.0.1
synopsis: A library for higher kinded types.
description: A library for building and manipulating higher kinded data types.
category: web
homepage: https://github.com/eliaslfox/hkt#readme
author: Elias Lawson-Fox
maintainer: [email protected]
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
CHANGELOG.md
LICENSE
README.md
flag reduce-core-output
description: Reduce the amount of core outputted by inspection-testing
manual: True
default: False
library
exposed-modules:
HKT
HKT.Merge
HKT.Squash
HKT.Type
other-modules:
Paths_hkt
hs-source-dirs:
src
default-extensions: TypeFamilies DefaultSignatures MultiParamTypeClasses FlexibleContexts LambdaCase EmptyCase TypeOperators FlexibleInstances NoImplicitPrelude DeriveAnyClass
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, protolude
default-language: Haskell2010
test-suite main
type: exitcode-stdio-1.0
main-is: tests/Main.hs
other-modules:
Paths_hkt
default-extensions: TypeFamilies DefaultSignatures MultiParamTypeClasses FlexibleContexts LambdaCase EmptyCase TypeOperators FlexibleInstances NoImplicitPrelude DeriveAnyClass DeriveGeneric DerivingStrategies KindSignatures StandaloneDeriving NamedFieldPuns
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, hkt
, hspec
, inspection-testing
, protolude
, text
if flag(reduce-core-output)
ghc-options: -dsuppress-idinfo -dsuppress-coercions -dsuppress-type-applications -dsuppress-module-prefixes -dsuppress-type-signatures
default-language: Haskell2010