Changed name of cabal file so it will work in the GHC build tree
authorChristiaan Baaij <christiaan.baaij@gmail.com>
Wed, 22 Jul 2009 07:27:03 +0000 (09:27 +0200)
committerChristiaan Baaij <christiaan.baaij@gmail.com>
Wed, 22 Jul 2009 07:27:03 +0000 (09:27 +0200)
cλash/clash.cabal [new file with mode: 0644]
cλash/cλash.cabal [deleted file]

diff --git a/cλash/clash.cabal b/cλash/clash.cabal
new file mode 100644 (file)
index 0000000..7ea2ed0
--- /dev/null
@@ -0,0 +1,42 @@
+name:               clash
+version:            0.1
+build-type:         Simple
+synopsis:           CAES Languege for Hardware Descriptions (CλasH)
+description:        CλasH is a toolchain/language to translate subsets of
+                    Haskell to synthesizable VHDL. It does this by translating
+                    the intermediate System Fc (GHC Core) representation to a
+                    VHDL AST, which is then written to file.
+category:           Development
+license:            BSD3
+license-file:       LICENSE
+package-url:        http://github.com/darchon/clash/tree/master
+copyright:          Copyright (c) 2009 Christiaan Baaij & Matthijs Kooijman
+author:             Christiaan Baaij & Matthijs Kooijman
+stability:          alpha
+maintainer:         christiaan.baaij@gmail.com & matthijs@stdin.nl
+Cabal-Version:      >= 1.2
+
+Library
+  build-depends:    ghc >= 6.11, pretty, vhdl, haskell98, ghc-paths, syb,
+                    data-accessor, containers, base >= 4, transformers,
+                    filepath, template-haskell, data-accessor-template,
+                    prettyclass
+                    
+  exposed-modules:  CLasH.Translator,
+                    CLasH.Translator.Annotations
+                    
+  other-modules:    CLasH.Translator.TranslatorTypes
+                    CLasH.Normalize
+                    CLasH.Normalize.NormalizeTypes
+                    CLasH.Normalize.NormalizeTools
+                    CLasH.VHDL
+                    CLasH.VHDL.Constants
+                    CLasH.VHDL.Generate
+                    CLasH.VHDL.VHDLTools
+                    CLasH.VHDL.VHDLTypes
+                    CLasH.Utils.GhcTools
+                    CLasH.Utils.HsTools
+                    CLasH.Utils.Pretty
+                    CLasH.Utils.Core.CoreShow
+                    CLasH.Utils.Core.CoreTools
+  
\ No newline at end of file
diff --git a/cλash/cλash.cabal b/cλash/cλash.cabal
deleted file mode 100644 (file)
index 7ea2ed0..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-name:               clash
-version:            0.1
-build-type:         Simple
-synopsis:           CAES Languege for Hardware Descriptions (CλasH)
-description:        CλasH is a toolchain/language to translate subsets of
-                    Haskell to synthesizable VHDL. It does this by translating
-                    the intermediate System Fc (GHC Core) representation to a
-                    VHDL AST, which is then written to file.
-category:           Development
-license:            BSD3
-license-file:       LICENSE
-package-url:        http://github.com/darchon/clash/tree/master
-copyright:          Copyright (c) 2009 Christiaan Baaij & Matthijs Kooijman
-author:             Christiaan Baaij & Matthijs Kooijman
-stability:          alpha
-maintainer:         christiaan.baaij@gmail.com & matthijs@stdin.nl
-Cabal-Version:      >= 1.2
-
-Library
-  build-depends:    ghc >= 6.11, pretty, vhdl, haskell98, ghc-paths, syb,
-                    data-accessor, containers, base >= 4, transformers,
-                    filepath, template-haskell, data-accessor-template,
-                    prettyclass
-                    
-  exposed-modules:  CLasH.Translator,
-                    CLasH.Translator.Annotations
-                    
-  other-modules:    CLasH.Translator.TranslatorTypes
-                    CLasH.Normalize
-                    CLasH.Normalize.NormalizeTypes
-                    CLasH.Normalize.NormalizeTools
-                    CLasH.VHDL
-                    CLasH.VHDL.Constants
-                    CLasH.VHDL.Generate
-                    CLasH.VHDL.VHDLTools
-                    CLasH.VHDL.VHDLTypes
-                    CLasH.Utils.GhcTools
-                    CLasH.Utils.HsTools
-                    CLasH.Utils.Pretty
-                    CLasH.Utils.Core.CoreShow
-                    CLasH.Utils.Core.CoreTools
-  
\ No newline at end of file