-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathverilog.cabal
47 lines (35 loc) · 1.01 KB
/
verilog.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
name: verilog
version: 0.0.12
category: Language, Hardware, Embedded
synopsis: Verilog preprocessor, parser, and AST.
description:
A parser and supporting a small subset of Verilog.
Intended for machine generated, synthesizable code.
author: Tom Hawkins <[email protected]>
maintainer: Tom Hawkins <[email protected]>
license: BSD3
license-file: LICENSE
homepage: http://github.com/tomahawkins/verilog
build-type: Simple
cabal-version: >= 1.10
library
default-language: Haskell2010
build-tools:
alex >= 3 && < 4,
happy >= 1 && < 2
build-depends:
base >= 4.8.2.0 && < 5.0,
array >= 0.5.1.0 && < 0.6
exposed-modules:
Data.BitVec
Language.Verilog
Language.Verilog.AST
Language.Verilog.Parser
Language.Verilog.Parser.Lex
Language.Verilog.Parser.Parse
Language.Verilog.Parser.Preprocess
Language.Verilog.Parser.Tokens
ghc-options: -W
source-repository head
type: git
location: git://github.com/tomahawkins/verilog.git