forked from domdere/preamble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
preamble.cabal
54 lines (46 loc) · 1.89 KB
/
preamble.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
name: domdere-preamble
version: 0.0.1
license: BSD3
license-file: etc/LICENCE.md
author: Dom De Re
maintainer: Dom De Re
copyright: Copyright (C) 2014-2017
synopsis: My own subset of Prelude
category: Data
description: My own subset of Prelude
homepage: https://github.com/domdere/preamble
bug-reports: https://github.com/domdere/preamble/issues
cabal-version: >= 1.18
build-type: Simple
--extra-source-files: etc/CONTRIBUTORS,
-- etc/CREDITS
source-repository head
type: git
location: https://github.com/domdere/preamble.git
flag small_base
description: Choose the new, split-up base package.
library
default-language: Haskell2010
build-depends: array
, base >= 4 && < 5
, bifunctors == 5.*
, containers
, mtl == 2.2.*
, natural-numbers == 0.1.*
, semigroups == 0.18.*
, split == 0.2.*
-- theres an odd black hole for versions 0.5 - 0.5.3 in transformers-compat
, transformers (> 0.3 && <= 0.5) || (>= 0.5.3 && < 0.6)
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Preamble
Preamble.Debug
Preamble.Unsafe
test-suite quickcheck
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: quickcheck
build-depends: base >= 4 && < 5
, QuickCheck == 2.10.*
, domdere-preamble