File: czipwith.cabal

package info (click to toggle)
haskell-czipwith 1.0.1.4-1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 80 kB
  • sloc: haskell: 280; makefile: 6
file content (52 lines) | stat: -rw-r--r-- 1,671 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
name:                czipwith
version:             1.0.1.4
synopsis:            CZipWith class and deriving via TH
description:         A typeclass similar to Data.Distributive, but for
                     data parameterised with a type constructor. The name
                     comes from the resemblance of its method to the regular
                     zipWith function. The abstraction is useful for example
                     for program config handling.
license:             BSD3
license-file:        LICENSE
author:              Lennart Spitzner
maintainer:          Lennart Spitzner <hexagoxel@hexagoxel.de>
copyright:           Copyright (C) 2017-2020 Lennart Spitzner
category:            Data
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       1.18
homepage:            https://github.com/lspitzner/czipwith/
bug-reports:         https://github.com/lspitzner/czipwith/issues

source-repository head
  type: git
  location: https://github.com/lspitzner/czipwith.git

library
  exposed-modules:     Data.CZipWith
  -- other-modules:       
  -- other-extensions:    
  build-depends:
    { base >=4.11 && <4.16
    , template-haskell >=2.9 && <2.18
    }
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options: {
    -Wall
    -Wcompat
  }

test-suite tests
  type:             exitcode-stdio-1.0
  default-language: Haskell2010
  buildable:        True
  build-depends:
    { czipwith
    , base >0 && <666
    , transformers >= 0.4.1.0 && <666
      -- no upper bound. The dep only gets used for old bases anyways
    }
  ghc-options:      -Wall
  main-is:          Test.hs
  hs-source-dirs:   src-test