-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.yaml
46 lines (43 loc) · 994 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
name: liquidhaskell-tutorial
version: '0.2.0.0'
synopsis: Source for "Programming with Refinement Types"
category: Web
author: Ranjit Jhala
maintainer: [email protected]
copyright: Ranjit Jhala
license: MIT
homepage: https://github.com/ucsd-progsys/liquidhaskell-tutorial
extra-source-files:
- README.md
dependencies:
- base
- template
- containers
- text
- bytestring
- directory
- pandoc-types
- pandoc
- filepath
- unix
executables:
filters-toc:
main: filters/Toc.hs
ghc-options: -main-is Toc -threaded
filters-links:
main: filters/Links.hs
ghc-options: -main-is Links -threaded
filters-latex:
main: filters/Latex.hs
ghc-options: -main-is Latex -threaded
filters-html:
main: filters/Html.hs
ghc-options: -main-is Html -threaded
filters-figures:
main: filters/Figures.hs
ghc-options: -main-is Figures -threaded
filters-codeblock:
main: filters/Codeblock.hs
ghc-options: -main-is Codeblock -threaded
toplevel:
main: Main.hs