name:           elm-build-lib
version:        0.14.0.0
Synopsis:       Compile Elm code to JS within Haskell
Description:    This library provides both runtime and Template Haskell functions which let you take multi-module
    Elm Programs and compile them to JavaScript.
    The main goal of this is to allow Elm to be used as a frontend for Haskell servers or Web apps.
    The library is independent of any specific framework, so it should work with Yesod, Snap, Happstack, Scotty, etc.
Homepage: http://github.com/JoeyEremondi/elm-build-lib

License: BSD3
License-file: LICENSE


cabal-version:  >=1.6
build-type:     Simple
author:         Joey Eremondi
Maintainer:     joey@eremondi.com
Copyright:      Copyright: (c) 2014 Joey Eremondi

Category: Compiler, Language

source-repository head
  type: git
  location: git://github.com/JoeyEremondi/elm-build-lib



library
  exposed-modules: Language.Elm.Build
  other-modules: Language.Elm.CoreLibs
                 Language.Elm.BuildUtil
  hs-source-dirs:  src

  build-depends:   base >=4.2 && <5
                   , elm-core-sources
                   , elm-compiler >= 0.14 && <0.15
                   , containers
                   , template-haskell
                   , file-embed
                   , bytestring

  ghc-options:     -Wall