1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-23 21:13:07 +03:00
guide/guide.cabal
2016-03-11 16:07:22 +03:00

62 lines
1.8 KiB
Plaintext

name: guide
version: 0.1.0.0
synopsis: A site for comparing Haskell libraries
description:
A site for comparing Haskell libraries
homepage: http://github.com/aelve/guide
bug-reports: http://github.com/aelve/guide/issues
license: BSD3
license-file: LICENSE
author: Artyom
maintainer: yom@artyom.me
-- copyright:
category: Web
tested-with: GHC == 7.10.3
build-type: Simple
extra-source-files:
CHANGELOG.md
data-files:
static/*.svg
static/*.css
static/*.md
static/*.html
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/aelve/guide.git
executable guide
main-is: Main.hs
other-modules:
Types
Utils
Markdown
JS
SampleState
-- other-extensions:
build-depends: Spock
, acid-state == 0.14.*
, base >=4.8 && <4.9
, base-prelude
, blaze-html >= 0.8.1.1
, cheapskate
, containers >= 0.5
, lucid
, megaparsec
, microlens-platform >= 0.2.3
, mtl
, neat-interpolation == 0.3.*
, path-pieces
, random >= 1.1
, safecopy
, shortcut-links >= 0.4.1
, text
, text-format
, transformers
, wai-middleware-static
, xss-sanitize
ghc-options: -Wall -fno-warn-unused-do-bind
hs-source-dirs: src
default-language: Haskell2010