-
Notifications
You must be signed in to change notification settings - Fork 1
/
haskell-scope.cabal
42 lines (39 loc) · 1.54 KB
/
haskell-scope.cabal
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
-- Initial haskell-scope.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: haskell-scope
version: 0.1.0.0
synopsis: Scope analysis for Haskell.
-- description:
license: PublicDomain
license-file: LICENSE
author: David Himmelstrup
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Language.Haskell.Scope
other-modules: Language.Haskell.Scope.Monad,
Language.Haskell.Scope.Resolve,
Language.Haskell.Scope.SyntaxDirected
other-extensions: GeneralizedNewtypeDeriving, RecordWildCards
build-depends: base >=4.9 && <5, mtl >=2.2 && <2.3, containers >=0.5 && <0.7,
haskell-src-exts >=1.21 && <1.22
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: runtests.hs
hs-source-dirs: tests
build-depends: base >=4.9 && <5, mtl >=2.2 && <2.3, containers >=0.5 && <0.7,
haskell-src-exts >=1.21 && <1.22,
ansi-wl-pprint,
haskell-scope,
directory, filepath, text, bytestring,
tasty,
tasty-golden,
tasty-expected-failure
default-language: Haskell2010
ghc-options: -Wall -Werror