-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyosys-rtl.cabal
52 lines (49 loc) · 1.66 KB
/
yosys-rtl.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
48
49
50
51
52
cabal-version: 3.0
name: yosys-rtl
version: 0.1.0.1
synopsis: Yosys RTL Intermediate Language
description: Definition and rendering.
See https://yosyshq.readthedocs.io/projects/yosys/en/latest/
for RTL text representation documentation.
homepage: https://github.com/standardsemiconductor/yosys-rtl
license: MIT
license-file: LICENSE
author: dopamane
maintainer: [email protected]
copyright: David Cox
category: Language
build-type: Simple
extra-doc-files: CHANGELOG.md
README.md
data-dir: data
data-files: Yosys/Rtl/golden/*.pretty
source-repository head
type: git
location: https://github.com/standardsemiconductor/yosys-rtl
library
ghc-options: -Wall
exposed-modules: Yosys.Rtl
build-depends: base >= 4.15 && < 4.21
, prettyprinter >= 1.7.1 && < 1.8
, text >= 2.1.1 && < 2.2
hs-source-dirs: lib
default-language: Haskell2010
test-suite test
ghc-options: -Wall -threaded
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Paths_yosys_rtl
Test.Yosys.Rtl
autogen-modules: Paths_yosys_rtl
build-depends: base
, extra
, filepath
, prettyprinter
, process
, tasty
, tasty-golden
, tasty-hunit
, text
, yosys-rtl