name: const-math-ghc-plugin version: 0.2.0.0 synopsis: Compiler plugin for constant math elimination description: This library implements elimination of constant math expressions. license: BSD3 license-file: LICENSE author: Conrad Parker, John Lato maintainer: Conrad Parker -- copyright: category: Compiler Plugin build-type: Simple cabal-version: >=1.8 -- tests/*.hs shouldn't have to go here, but the source files -- for the test-suite stanzas don't get picked up by 'cabal sdist'. Extra-source-files: tests/*.hs tests/Makefile library exposed-modules: ConstMath.Plugin ConstMath.Rules other-modules: ConstMath.Pass ConstMath.Types build-depends: base < 5, containers, ghc >= 7.4 Test-suite tests type: exitcode-stdio-1.0 hs-source-dirs: tests main-is: Make.hs build-depends: base < 5, directory, process ------------------------------------------------------------------------ -- Git repo -- source-repository head type: git location: git://github.com/kfish/const-math-ghc-plugin.git