-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
48 lines (44 loc) · 984 Bytes
/
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
name: lambda-toy
version: 1.0.0.0
#synopsis:
#description:
homepage: https://github.com/inventor02/lambda-toy#readme
license: ISC
author: George Peppard
maintainer: gjp1g21@soton.ac.uk
copyright: 2023 George Peppard
category: Web
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- array
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
- -Wno-unused-matches
- -Wno-missing-export-lists
- -Wno-incomplete-patterns
library:
source-dirs: src
build-tools:
- alex
- happy
executables:
lambda-toy-cli:
source-dirs: cli
main: Main.hs
dependencies:
- lambda-toy
lambda-toy-int:
source-dirs: interactive
main: Main.hs
dependencies:
- lambda-toy