We now support Annotations to indicate top-level entity and initial state
[matthijs/master-project/cλash.git] / cλash / cλash.cabal
1 name:               clash
2 version:            0.1
3 build-type:         Simple
4 synopsis:           CAES Languege for Hardware Descriptions (CλasH)
5 description:        CλasH is a toolchain/language to translate subsets of
6                     Haskell to synthesizable VHDL. It does this by translating
7                     the intermediate System Fc (GHC Core) representation to a
8                     VHDL AST, which is then written to file.
9 category:           Development
10 license:            BSD3
11 license-file:       LICENSE
12 package-url:        http://github.com/darchon/clash/tree/master
13 copyright:          Copyright (c) 2009 Christiaan Baaij & Matthijs Kooijman
14 author:             Christiaan Baaij & Matthijs Kooijman
15 stability:          alpha
16 maintainer:         christiaan.baaij@gmail.com & matthijs@stdin.nl
17 Cabal-Version:      >= 1.2
18
19 Library
20   build-depends:    ghc >= 6.11, vhdl, data-accessor-template, data-accessor,
21                     containers, transformers, base >= 4, haskell98,
22                     prettyclass, ghc-paths, pretty, syb, filepath, th-lift-ng,
23                     tfp > 0.3.2, tfvec > 0.1.2, template-haskell
24   exposed-modules:  CLasH.Translator,
25                     CLasH.Translator.Annotations
26   other-modules:    CLasH.Translator.TranslatorTypes
27                     CLasH.Normalize
28                     CLasH.Normalize.NormalizeTypes
29                     CLasH.Normalize.NormalizeTools
30                     CLasH.VHDL
31                     CLasH.VHDL.Constants
32                     CLasH.VHDL.Generate
33                     CLasH.VHDL.VHDLTools
34                     CLasH.VHDL.VHDLTypes
35                     CLasH.Utils.GhcTools
36                     CLasH.Utils.HsTools
37                     CLasH.Utils.Pretty
38                     CLasH.Utils.Core.CoreShow
39                     CLasH.Utils.Core.CoreTools
40