aboutsummaryrefslogtreecommitdiffstats
path: root/package.yaml
blob: 1c8e6b24a42fe06abfdf77f18bc1a1890f2f7300 (plain)
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
name:                choc
version:             0.1.0.0
git:                 "https://git.sr.ht/~ymherklotz/choc"
homepage:            "https://sr.ht/~ymherklotz/choc"
license:             BSD3
author:              "Yann Herklotz"
maintainer:          "git@yannherklotz.com"
copyright:           "2022 Yann Herklotz"

extra-source-files:
- README.md
- ChangeLog.md

synopsis:            An implementation of the Calculus of Construction.
category:            Algebra
description:         Please see the README at <https://sr.ht/~ymherklotz/choc>

dependencies:
- base >= 4.7 && < 5
- parsec >= 3 && < 4

library:
  source-dirs: src

executables:
  choc-exe:
    main:                Main.hs
    source-dirs:         app
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N
    dependencies:
    - choc

tests:
  choc-test:
    main:                Spec.hs
    source-dirs:         test
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N
    dependencies:
    - choc
    - hspec