2016-03-04 19:56:33 +03:00
|
|
|
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
|
2016-03-04 19:56:33 +03:00
|
|
|
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
|
2016-02-02 19:29:23 +03:00
|
|
|
extra-source-files:
|
|
|
|
CHANGELOG.md
|
2016-03-05 15:58:55 +03:00
|
|
|
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
|
2016-03-04 19:56:33 +03:00
|
|
|
location: git://github.com/aelve/guide.git
|
2016-02-02 12:35:39 +03:00
|
|
|
|
2016-03-04 19:56:33 +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:
|
2016-02-02 14:50:30 +03:00
|
|
|
build-depends: Spock
|
2016-03-04 18:19:11 +03:00
|
|
|
, acid-state == 0.14.*
|
2016-02-02 14:50:30 +03:00
|
|
|
, base >=4.8 && <4.9
|
|
|
|
, base-prelude
|
2016-02-21 15:51:42 +03:00
|
|
|
, blaze-html >= 0.8.1.1
|
|
|
|
, cheapskate
|
2016-03-04 12:35:36 +03:00
|
|
|
, containers >= 0.5
|
2016-02-02 14:50:30 +03:00
|
|
|
, lucid
|
2016-03-11 14:58:11 +03:00
|
|
|
, megaparsec
|
2016-02-17 22:47:52 +03:00
|
|
|
, 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
|
2016-02-02 14:50:30 +03:00
|
|
|
, text
|
2016-02-02 19:29:23 +03:00
|
|
|
, text-format
|
2016-02-02 14:50:30 +03:00
|
|
|
, transformers
|
2016-02-02 19:29:23 +03:00
|
|
|
, 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
|