File: pointed.cabal

package info (click to toggle)
haskell-pointed 5.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 80 kB
  • sloc: haskell: 359; makefile: 2
file content (103 lines) | stat: -rw-r--r-- 2,947 bytes parent folder | download
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name:          pointed
category:      Data
version:       5.0.5
license:       BSD3
cabal-version: >= 1.10
license-file:  LICENSE
author:        Edward A. Kmett
maintainer:    Edward A. Kmett <ekmett@gmail.com>
stability:     provisional
homepage:      http://github.com/ekmett/pointed/
bug-reports:   http://github.com/ekmett/pointed/issues
copyright:     Copyright (C) 2008-2016 Edward A. Kmett
synopsis:      Pointed and copointed data
description:   Pointed and copointed data.
build-type:    Simple
tested-with:   GHC == 8.0.2
             , GHC == 8.2.2
             , GHC == 8.4.4
             , GHC == 8.6.5
             , GHC == 8.8.4
             , GHC == 8.10.7
             , GHC == 9.0.2
             , GHC == 9.2.8
             , GHC == 9.4.8
             , GHC == 9.6.6
             , GHC == 9.8.2
             , GHC == 9.10.1
extra-source-files:
  README.markdown
  CHANGELOG.markdown

source-repository head
  type: git
  location: git://github.com/ekmett/pointed.git

flag comonad
  description: You can disable the use of the `comonad` package using `-f-transformers`.
  default: True
  manual: True
flag containers
  description: You can disable the use of the `containers` package using `-f-containers`.
  default: True
  manual: True
flag kan-extensions
  description: You can disable the use of the `kan-extensions` package using `-f-kan-extensions`.
  default: True
  manual: True
flag semigroupoids
  description: You can disable the use of the `semigroupoids` package using `-f-semigroupoids`.
  default: True
  manual: True
flag stm
  description: You can disable the use of the `stm` package using `-f-stm`.
  default: True
  manual: True
flag tagged
  description: You can disable the use of the `tagged` package using `-f-tagged`.
  default: True
  manual: True
flag transformers
  description: You can disable the use of the `transformers` package using `-f-transformers`.
  default: True
  manual: True
flag unordered-containers
  description: You can disable the use of the `unordered-containers` package using `-f-unordered-containers`.
  default: True
  manual: True

library
  build-depends: base >= 4.9 && < 5,
                 data-default-class >= 0.0.1 && < 0.3

  if flag(comonad)
    build-depends: comonad >= 5 && < 6

  if flag(containers)
    build-depends: containers >= 0.4 && < 0.8

  if flag(kan-extensions)
    build-depends: kan-extensions >= 5 && < 6

  if flag(semigroupoids)
    build-depends: semigroupoids >= 4 && < 7

  if flag(stm)
    build-depends: stm >= 2.1.2.1 && < 2.6

  if flag(tagged)
    build-depends: tagged >= 0.5 && < 1

  if flag(transformers)
    build-depends: transformers >= 0.2 && < 0.7, transformers-compat >= 0.3 && < 1

  if flag(unordered-containers)
    build-depends: hashable >= 1.1 && < 1.6, unordered-containers >= 0.2 && < 0.3

  exposed-modules:
    Data.Pointed
    Data.Copointed

  default-language: Haskell2010
  ghc-options: -Wall
  hs-source-dirs: src