forked from GaloisInc/llvm-pretty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
llvm-pretty.cabal
47 lines (41 loc) · 1.67 KB
/
llvm-pretty.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
36
37
38
39
40
41
42
43
44
45
46
47
Name: llvm-pretty
Version: 0.11.0
License: BSD3
License-file: LICENSE
Author: Trevor Elliott
Maintainer: awesomelyawesome@gmail.com
Category: Text
Build-type: Simple
Cabal-version: >=1.16
Synopsis: A pretty printing library inspired by the llvm binding.
Description:
A pretty printing library that was inspired by the LLVM binding by Lennart
Augustsson. The library provides a monadic interface to a pretty printer,
that allows functions to be defined and called, generating the corresponding
LLVM assembly when run.
tested-with: GHC==8.4.3, GHC==8.2.2, GHC==8.0.2
source-repository head
type: git
location: http://github.com/elliottt/llvm-pretty
Library
Default-language: Haskell2010
Hs-source-dirs: src
Exposed-modules: Text.LLVM
Text.LLVM.AST
Text.LLVM.Labels
Text.LLVM.Labels.TH
Text.LLVM.Lens
Text.LLVM.Parser
Text.LLVM.PP
Text.LLVM.DebugUtils
Other-modules: Text.LLVM.Util
Build-depends: base >= 4.9 && < 5,
containers >= 0.4,
parsec >= 3,
pretty >= 1.0.1,
monadLib >= 3.6.1,
microlens >= 0.4,
microlens-th >= 0.4,
template-haskell >= 2.7,
th-abstraction >= 0.3.1 && <0.5
Ghc-options: -Wall