haskell-spa/ui/ui.cabal

37 lines
1 KiB
Text
Raw Permalink Normal View History

2015-11-09 22:34:47 +00:00
name: ui
version: 0.1.0.0
synopsis: Initial project template from stack
description: Please see README.md
homepage: http://github.com/githubuser/ui#readme
license: BSD3
license-file: LICENSE
author: Author name here
maintainer: example@example.com
copyright: 2015 Author Here
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Lib
build-depends: base >= 4.7 && < 5
, ghcjs-base
2015-11-13 23:46:41 +00:00
, ghcjs-dom
2015-11-09 22:34:47 +00:00
default-language: Haskell2010
executable ui-output
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall
build-depends: base
, ghcjs-base
, ui
default-language: Haskell2010
source-repository head
type: git
2015-11-13 23:46:41 +00:00
location: https://github.com/githubuser/ui