-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
71 lines (66 loc) · 1.26 KB
/
package.yaml
File metadata and controls
71 lines (66 loc) · 1.26 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: imp
version: 0.1.0.0
synopsis: Compiler for IMP programming language
description:
This is a compiler for IMP programming language
implemented in Haskell. It uses LLVM as compiler
backend.
category: Compiler
author: Ievgenii Meshcheriakov <eugen@debian.org>
copyright: 2017-2018 Ievgenii Meshcheriakov
license: MIT
license-file: LICENSE
build-type: Simple
github: eugmes/imp
data-files:
- stdlib/impstd.c
- stdlib/impstd.h
ghc-options:
- -Wall
- -fno-warn-name-shadowing
- -Wcompat
library:
source-dirs: lib
dependencies:
- base >= 4.7 && < 5
- megaparsec == 8.*
- text
- llvm-hs-pure == 9.*
- containers
- mtl
- bytestring
- utf8-string
- composition-extra
- text-show
- tasty
- temporary
- process-extras
- filepath
- stringbuilder
executables:
impc:
source-dirs: src
main: Main.hs
dependencies:
- base
- imp
- megaparsec == 8.*
- text
- llvm-hs == 9.*
- bytestring
- optparse-applicative
- containers
- temporary
- filepath
- process
tests:
testsuite:
source-dirs: test
main: TestSuite.hs
dependencies:
- base
- imp
- megaparsec == 8.*
- tasty
- tasty-hunit
- text