File: categories.cabal

package info (click to toggle)
haskell-categories 1.0.7-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 136 kB
  • sloc: haskell: 494; makefile: 2
file content (66 lines) | stat: -rw-r--r-- 1,636 bytes parent folder | download | duplicates (5)
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
name:          categories
category:      Control
version:       1.0.7
license:       BSD3
cabal-version: >= 1.10
license-file:  LICENSE
author:        Edward A. Kmett
maintainer:    Edward A. Kmett <ekmett@gmail.com>
stability:     experimental
homepage:      http://github.com/ekmett/categories
bug-reports:   http://github.com/ekmett/categories/issues
synopsis:      Categories
copyright:     Copyright (C) 2008-2014, Edward A. Kmett
description:   Categories
build-type:    Simple
tested-with:   GHC == 7.4.1, GHC == 7.6.1, GHC == 7.8.3
extra-source-files:
  .ghci
  .gitignore
  .travis.yml
  .vim.custom
  README.markdown
  CHANGELOG.markdown

flag Optimize
  description: Enable optimizations
  default:     False

library
  default-language: Haskell2010
  default-extensions: CPP
  other-extensions:
    MultiParamTypeClasses
    FunctionalDependencies
    FlexibleContexts
    FlexibleInstances
    UndecidableInstances
    TypeOperators
    TypeFamilies
    GADTs

-- these extensions aren't yet known by my version of Cabal:
-- other-extensions: DefaultSignatures ConstraintKinds

  exposed-modules:
    Control.Categorical.Functor,
    Control.Categorical.Bifunctor,
    Control.Categorical.Object,
    Control.Category.Monoidal,
    Control.Category.Cartesian,
    Control.Category.Cartesian.Closed,
    Control.Category.Associative,
    Control.Category.Braided,
    Control.Category.Discrete,
    Control.Category.Distributive,
    Control.Category.Dual

  build-depends:
    base >= 4 && < 5,
    void >= 0.5.4.2

  hs-source-dirs: src
  ghc-options: -Wall

  if flag(Optimize)
    ghc-options: -funbox-strict-fields -O2