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

62 lines
1.8 KiB
Plaintext
Raw Normal View History

name: guide
2016-02-02 12:35:39 +03:00
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
2016-02-02 12:35:39 +03:00
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
2016-03-09 02:21:22 +03:00
static/*.css
static/*.md
static/*.html
2016-02-02 12:35:39 +03:00
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/aelve/guide.git
2016-02-02 12:35:39 +03:00
executable guide
2016-02-02 12:35:39 +03:00
main-is: Main.hs
2016-03-11 16:07:22 +03:00
other-modules:
Types
2016-02-24 19:32:12 +03:00
Utils
2016-03-11 14:58:11 +03:00
Markdown
2016-02-24 19:32:12 +03:00
JS
2016-03-11 16:07:22 +03:00
SampleState
2016-02-02 12:35:39 +03:00
-- other-extensions:
build-depends: Spock
2016-03-04 18:19:11 +03:00
, acid-state == 0.14.*
, base >=4.8 && <4.9
, base-prelude
, blaze-html >= 0.8.1.1
, cheapskate
2016-03-04 12:35:36 +03:00
, containers >= 0.5
, lucid
2016-03-11 14:58:11 +03:00
, megaparsec
, microlens-platform >= 0.2.3
2016-02-14 15:19:36 +03:00
, mtl
2016-02-19 22:12:23 +03:00
, neat-interpolation == 0.3.*
2016-02-20 12:52:55 +03:00
, path-pieces
2016-02-20 01:01:14 +03:00
, random >= 1.1
2016-03-04 18:19:11 +03:00
, safecopy
2016-03-11 14:58:11 +03:00
, shortcut-links >= 0.4.1
, text
, text-format
, transformers
, wai-middleware-static
2016-02-20 18:28:55 +03:00
, xss-sanitize
2016-02-02 12:35:39 +03:00
ghc-options: -Wall -fno-warn-unused-do-bind
hs-source-dirs: src
default-language: Haskell2010