-
Notifications
You must be signed in to change notification settings - Fork 2
/
clash-io.cabal
46 lines (43 loc) · 1.47 KB
/
clash-io.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: clash-io
version: 0.1.0.0
synopsis: Run Clash circuits with a SDL frontend
description: Run Clash circuits with a SDL frontend
homepage: https://github.com/basile-henry/clash-io#readme
license: MIT
license-file: LICENSE
author: Basile Henry
maintainer: bjm.henry@gmail.com
copyright: 2017 Basile Henry
category: Hardware
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Clash.IO
Clash.IO.Types
Clash.IO.Util
ghc-options: -Wall
build-depends: base >= 4.7 && < 5
, clash-prelude
, ghc-typelits-knownnat
, deepseq
, sdl2
, stm
, text
default-language: Haskell2010
executable snake
hs-source-dirs: snake
main-is: Main.hs
other-modules: Snake
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, clash-io
, clash-prelude
, ghc-typelits-extra
, ghc-typelits-knownnat
, ghc-typelits-natnormalise
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/githubuser/clash-io