-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.yaml
109 lines (97 loc) · 2.06 KB
/
package.yaml
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: clash-spaceinvaders
version: 0.1.0
synopsis: "Space Invaders arcade machine"
homepage: https://github.com/gergoerdi/clash-spaceinvaders
license: MIT
author: Gergő Érdi
maintainer: [email protected]
copyright: 2020 Gergő Érdi
category: Hardware, Games
extra-source-files:
- LICENSE
- README.md
data-files:
- image/*
custom-setup:
dependencies:
- base
- Cabal
- clashilator
dependencies:
- base >= 4.7 && < 5
- clash-prelude
- ghc-typelits-natnormalise
- ghc-typelits-extra
- ghc-typelits-knownnat
- retroclash-lib
- clash-shake
- intel8080
- mtl
- transformers
- lens
- barbies
- barbies-th
- tuple
# Anything that Clash uses by default should go here
default-extensions:
- BinaryLiterals
- ConstraintKinds
- DataKinds
- DeriveAnyClass
- DeriveGeneric
- DeriveLift
- DerivingStrategies
- ExplicitForAll
- ExplicitNamespaces
- FlexibleContexts
- FlexibleInstances
- KindSignatures
- MagicHash
- MonoLocalBinds
- NoImplicitPrelude
- NoStarIsType
- NoStrictData
- NoStrict
- QuasiQuotes
- ScopedTypeVariables
- TemplateHaskellQuotes
- TemplateHaskell
- TypeApplications
- TypeFamilies
- TypeOperators
ghc-options:
-fexpose-all-unfoldings -fno-worker-wrapper
-fplugin GHC.TypeLits.KnownNat.Solver
-fplugin GHC.TypeLits.Normalise
-fplugin GHC.TypeLits.Extra.Solver
source-dirs:
- src
flags:
sim:
manual: True
default: True
verilator:
manual: True
default: False
executables:
spaceinvaders-sim:
main: sim.hs
dependencies:
- retroclash-sim
- bytestring
- array
when:
- condition: "!flag(sim)"
buildable: false
spaceinvaders-verilator:
main: sim-verilator.hs
other-modules: []
dependencies:
- retroclash-sim
- extra
verbatim:
x-clashilator-top-is: Hardware.SpaceInvaders
x-clashilator-clock: CLK_25MHZ
when:
- condition: "!(flag(sim) && flag(verilator))"
buildable: false