-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcircuit-notation.cabal
More file actions
91 lines (82 loc) · 1.97 KB
/
Copy pathcircuit-notation.cabal
File metadata and controls
91 lines (82 loc) · 1.97 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
cabal-version: 2.4
name: circuit-notation
version: 0.3.0.0
synopsis: Source plugin for manipulating circuits in Clash using arrow notation
description:
Source plugin for manipulating circuits in Clash using arrow notation.
See the GitHub README for usage and examples:
<https://github.com/cchalmers/circuit-notation/blob/main/README.md>
homepage: https://github.com/cchalmers/circuit-notation
bug-reports: https://github.com/cchalmers/circuit-notation/issues
license: BSD-3-Clause
license-file: LICENSE
author: Christopher Chalmers
maintainer: c.chalmers@me.com
copyright: 2024 Christopher Chalmers
category: Hardware
build-type: Simple
extra-doc-files:
CHANGELOG.md
README.md
tested-with:
ghc ==9.6.7
ghc ==9.8.4
ghc ==9.10.3
ghc ==9.12.4
ghc ==9.14.1
source-repository head
type: git
location: https://github.com/cchalmers/circuit-notation.git
library
exposed-modules:
Circuit
CircuitNotation
if impl(ghc <9.8)
other-modules:
GHC.Types.Unique.Map.Extra
-- other-extensions:
build-depends:
base >=4.18 && <5,
clash-prelude >=1.0,
containers,
data-default,
ghc >=9.6 && <9.15,
lens,
mtl,
parsec,
pretty,
pretty-show,
syb,
template-haskell,
unordered-containers,
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite library-testsuite
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: unittests.hs
other-modules:
Example
ValueCircuits
hs-source-dirs:
tests
example
build-depends:
base,
circuit-notation,
clash-prelude >=1.0,
-- Checks that type errors on a bus point at the offending statement rather than
-- at the end of the circuit (see tests/fixtures/BusError.hs).
test-suite error-location
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: error-location.hs
hs-source-dirs: tests
build-depends:
base,
circuit-notation,
clash-prelude >=1.0,
directory,
filepath,
process,