-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdump-core.cabal
35 lines (31 loc) · 1.26 KB
/
dump-core.cabal
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
name: dump-core
version: 0.1.4
synopsis: A plug-in for rendering GHC core
description: This is a GHC plugin that renders the Core generated by
GHC into JSON and also HTML, for easy inspection.
The JSON is machine readable so it could be used by
other tools, although at present the format is not
documented and unstable.
license: ISC
license-file: LICENSE
author: Iavor S. Diatchki
maintainer: iavor.diatchki@gmail.com
category: Development
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
data-files: ui/see.js,
ui/see.css,
ui/jquery.js,
ui/fonts/OFL.txt,
ui/fonts/FiraMono-Regular.ttf,
ui/fonts/FiraMono-Bold.ttf
library
exposed-modules: DumpCore
other-modules: Paths_dump_core
build-depends: base >=4.9 && <4.15, ghc, text, aeson, bytestring,
containers, monadLib, directory, filepath
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/yav/dump-core