1
1
mirror of https://github.com/coot/free-category.git synced 2024-09-11 14:17:30 +03:00
free-category/free-category.cabal
Marcin Szamotulski 82dfbaaeba
Initial commit
2018-08-26 19:12:12 +02:00

61 lines
1.5 KiB
Plaintext

name: free-category
version: 0.0.1.0
synopsis: Free category
description:
category: Algebra, Control, Monads, Category
homepage: https://github.com/coot/free-category#readme
bug-reports: https://github.com/coot/free-category/issues
author: Marcin Szamotulski
maintainer: profunctor@pm.me
copyright: (c) 2018 Marcin Szamotulski
license: MPL-2.0
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/coot/free-category
flag develop
description: Set -Werror flag
manual: True
default: False
library
exposed-modules:
Control.Category.Free
other-modules:
Paths_free_category
hs-source-dirs:
src
default-extensions:
ConstraintKinds
DataKinds
DeriveFunctor
EmptyDataDecls
FlexibleInstances
FlexibleContexts
GADTs
KindSignatures
InstanceSigs
MultiParamTypeClasses
OverloadedStrings
PolyKinds
RankNTypes
ScopedTypeVariables
TupleSections
TypeApplications
TypeFamilies
build-depends:
base >=4.11 && <5
, categories
if flag(develop)
ghc-options: -Werror -Wall -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -Wno-deprecations
else
ghc-options: -Wall -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -Wno-deprecations
default-language: Haskell2010