-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
55 lines (48 loc) · 1.22 KB
/
package.yaml
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
name: hoop
version: 0.4.0.0
github: mbg/hoop
license: MIT
author: Michael B. Gale
maintainer: m.gale@warwick.ac.uk
copyright: Copyright (c) Michael B. Gale
extra-source-files:
- README.md
# Metadata used when publishing your package
synopsis: Object-Oriented Programming in Haskell
category: Language
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Library for object-oriented programming in Haskell.
dependencies:
- base >=4.12 && <5.0
- template-haskell >= 2.14 && < 2.15
- haskell-src-exts >= 1.16
- haskell-src-meta >= 0.8
- parsec >=3.1.9
- lens >=4.10
- mtl >= 2.1
- containers
- text
- pretty
default-extensions:
- TemplateHaskell
- QuasiQuotes
- RecordWildCards
library:
exposed-modules:
- Language.Hoop
source-dirs: src
ghc-options:
- -Wall
tests:
hoop-test:
main: Spec.hs
source-dirs: test
dependencies:
- hoop
- hspec
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N