gonito/gonito.cabal

178 lines
6.3 KiB
Plaintext
Raw Normal View History

2015-08-20 22:33:38 +02:00
name: gonito
version: 0.0.0
cabal-version: >= 1.8
build-type: Simple
2015-09-30 21:10:09 +02:00
homepage: http://gonito.net
license: AGPL-3
license-file: agpl-3.0.txt
author: Filip Graliński
maintainer: filipg@amu.edu.pl
2015-08-20 22:33:38 +02:00
Flag dev
Description: Turn on development settings, like auto-reload templates.
Default: False
Flag library-only
Description: Build for use with "yesod devel"
Default: False
library
hs-source-dirs: ., fay-shared, app
exposed-modules: Application
Foundation
Import
Import.NoFoundation
Model
2015-12-12 18:53:20 +01:00
PersistMetric
2015-08-29 13:13:16 +02:00
PersistSHA1
2015-08-20 22:33:38 +02:00
Settings
Settings.StaticFiles
SharedTypes
Handler.Common
2015-08-29 14:58:47 +02:00
Handler.CreateChallenge
2016-05-03 08:46:10 +02:00
Handler.Discussion
2015-08-20 22:33:38 +02:00
Handler.Fay
2016-02-11 21:54:22 +01:00
Handler.Graph
2015-08-20 22:33:38 +02:00
Handler.Home
2015-09-04 23:23:32 +02:00
Handler.ListChallenges
2016-02-15 11:43:47 +01:00
Handler.MakePublic
2015-08-29 18:24:01 +02:00
Handler.Shared
2015-09-04 23:23:32 +02:00
Handler.ShowChallenge
2015-09-04 15:10:47 +02:00
Handler.Extract
2016-02-12 13:00:33 +01:00
Handler.Query
2015-12-12 18:53:20 +01:00
Handler.Tables
2015-09-30 20:15:33 +02:00
Handler.YourAccount
2015-08-20 22:33:38 +02:00
if flag(dev) || flag(library-only)
cpp-options: -DDEVELOPMENT
ghc-options: -Wall -fwarn-tabs -O0
else
ghc-options: -Wall -fwarn-tabs -O2
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
FlexibleInstances
EmptyDataDecls
NoMonomorphismRestriction
RankNTypes
DeriveDataTypeable
ViewPatterns
TupleSections
RecordWildCards
build-depends: base >= 4 && < 5
, yesod >= 1.4.1 && < 1.5
, yesod-core >= 1.4.6 && < 1.5
, yesod-auth >= 1.4.0 && < 1.5
, yesod-static >= 1.4.0.3 && < 1.6
, yesod-form >= 1.4.0 && < 1.5
, yesod-fay >= 0.8 && < 0.9
, fay >= 0.21.2.1 && < 0.24
, classy-prelude >= 0.10.2
, classy-prelude-conduit >= 0.10.2
, classy-prelude-yesod >= 0.10.2
, bytestring >= 0.9 && < 0.11
, text >= 0.11 && < 2.0
, persistent >= 2.0 && < 2.3
, persistent-postgresql >= 2.1.1 && < 2.3
, persistent-template >= 2.0 && < 2.3
, template-haskell
, shakespeare >= 2.0 && < 2.1
, monad-control >= 0.3 && < 1.1
, wai-extra >= 3.0 && < 3.1
, yaml >= 0.8 && < 0.9
, http-conduit >= 2.1 && < 2.2
, directory >= 1.1 && < 1.3
2016-04-26 22:23:57 +02:00
, warp >= 3.0 && < 3.3
2015-08-20 22:33:38 +02:00
, data-default
2015-12-20 19:37:25 +01:00
, aeson >= 0.6 && < 0.11
2015-08-20 22:33:38 +02:00
, conduit >= 1.0 && < 2.0
, monad-logger >= 0.3 && < 0.4
, fast-logger >= 2.2 && < 2.5
, wai-logger >= 2.2 && < 2.3
, file-embed
, safe
, unordered-containers
, containers
, vector
, time
2015-08-29 18:24:01 +02:00
, stm
2015-08-29 22:19:44 +02:00
, network-uri
2015-08-30 12:33:47 +02:00
, lifted-base
, process
2015-09-04 06:47:49 +02:00
, random
2015-09-04 15:10:47 +02:00
, pandoc
, pandoc-types
2015-09-04 22:21:51 +02:00
, filemanip
, cryptohash
2015-09-06 14:24:49 +02:00
, markdown
2015-12-12 18:53:20 +01:00
, geval >= 0.2.2.0
2015-09-29 18:23:11 +02:00
, filepath
2015-09-29 22:31:56 +02:00
, yesod-table
, regex-tdfa
2015-11-11 09:50:32 +01:00
, optparse-applicative
, wai-handler-fastcgi
2016-05-03 08:46:10 +02:00
, blaze-markup
, blaze-html
2016-05-03 10:21:40 +02:00
, conduit-extra
, resourcet
2016-05-03 22:14:55 +02:00
, yesod-newsfeed
2015-08-20 22:33:38 +02:00
executable gonito
if flag(library-only)
Buildable: False
main-is: main.hs
hs-source-dirs: app
build-depends: base, gonito
ghc-options: -threaded -O2 -rtsopts -with-rtsopts=-N
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -Wall
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
FlexibleInstances
EmptyDataDecls
NoMonomorphismRestriction
DeriveDataTypeable
ViewPatterns
TupleSections
build-depends: base
, gonito
, yesod-test >= 1.4.3 && < 1.5
, yesod-core
, yesod
, persistent
, persistent-postgresql
, resourcet
, monad-logger
, shakespeare
, transformers
, hspec >= 2.0.0
, classy-prelude
, classy-prelude-yesod
, wai-handler-fastcgi