File: call-stack.cabal

package info (click to toggle)
haskell-call-stack 0.4.0-3
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 76 kB
  • sloc: haskell: 168; makefile: 5
file content (55 lines) | stat: -rw-r--r-- 1,200 bytes parent folder | download | duplicates (2)
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
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack

name:           call-stack
version:        0.4.0
synopsis:       Use GHC call-stacks in a backward compatible way
category:       Data
homepage:       https://github.com/sol/call-stack#readme
bug-reports:    https://github.com/sol/call-stack/issues
maintainer:     Simon Hengel <sol@typeful.net>
license:        MIT
license-file:   LICENSE
build-type:     Simple

source-repository head
  type: git
  location: https://github.com/sol/call-stack

library
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      base ==4.*
  if os(windows)
    cpp-options: -DWINDOWS
    build-depends:
        filepath
  exposed-modules:
      Data.CallStack
  other-modules:
      Data.SrcLoc
      Paths_call_stack
  default-language: Haskell2010

test-suite spec
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs:
      test
  ghc-options: -Wall
  build-depends:
      base ==4.*
    , call-stack
    , filepath
    , nanospec
  other-modules:
      Data.CallStackSpec
      Example
      Util
      Paths_call_stack
  default-language: Haskell2010