File: from-sum.cabal

package info (click to toggle)
haskell-from-sum 0.2.3.0-4
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 108 kB
  • sloc: haskell: 170; makefile: 6
file content (37 lines) | stat: -rw-r--r-- 1,295 bytes parent folder | download | duplicates (3)
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
name:                from-sum
version:             0.2.3.0
synopsis:            Combinators for working with Maybe and Either
description:         Provides many functions for working with 'Maybe' and 'Either', including canonical 'fromMaybeM' and 'fromEitherM' functions.  Please see @README.md@.
homepage:            https://github.com/cdepillabout/from-sum
license:             BSD3
license-file:        LICENSE
author:              Dennis Gosnell
maintainer:          cdep.illabout@gmail.com
copyright:           2016-2019 Dennis Gosnell
category:            Control
build-type:          Simple
extra-source-files:  README.md
                     CHANGELOG.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Control.FromSum
  build-depends:       base >= 4.6 && < 5
                     , transformers
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite from-sum-doctest
  type:                exitcode-stdio-1.0
  main-is:             DocTest.hs
  hs-source-dirs:      test
  build-depends:       base
                     , doctest
                     , Glob
  default-language:    Haskell2010
  ghc-options:         -Wall -threaded

source-repository head
  type:     git
  location: git@github.com:cdepillabout/from-sum.git