eidolon/eidolon.cabal

155 lines
5.4 KiB
Plaintext
Raw Normal View History

name: eidolon
version: 0.0.4
synopsis: Image gallery in Yesod
homepage: https://eidolon.nek0.eu
license: AGPL-3
license-file: LICENSE.md
author: Amedeo Molnár
maintainer: nek0@chelnok.de
category: Web
extra-source-files: README.md
cabal-version: >= 1.10
build-type: Simple
2014-08-09 18:33:22 +00: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
exposed-modules: Application
Foundation
2014-08-14 00:25:18 +00:00
Helper
2014-08-09 18:33:22 +00:00
Import
Model
Settings
Settings.StaticFiles
Settings.Development
Handler.Home
2014-08-12 12:37:31 +00:00
Handler.Signup
Handler.Login
Handler.Activate
Handler.Profile
Handler.Upload
2014-08-13 22:49:37 +00:00
Handler.NewAlbum
2014-08-17 20:59:17 +00:00
Handler.Album
2014-08-18 04:06:16 +00:00
Handler.Medium
2014-08-28 16:08:56 +00:00
Handler.AlbumSettings
2014-08-30 18:25:08 +00:00
Handler.MediumSettings
2014-09-04 01:57:01 +00:00
Handler.Reactivate
2014-09-05 18:40:12 +00:00
Handler.ProfileSettings
Handler.ProfileDelete
Handler.Admin
Handler.AdminProfileSettings
2014-09-07 04:56:34 +00:00
Handler.AdminAlbumSettings
2014-09-09 02:25:47 +00:00
Handler.AdminMediumSettings
2014-12-21 19:01:03 +00:00
Handler.AdminComments
2014-09-14 03:03:13 +00:00
Handler.Tag
2014-12-14 19:21:23 +00:00
Handler.RootFeed
2014-12-27 22:09:51 +00:00
Handler.Commons
2014-08-09 18:33:22 +00:00
if flag(dev) || flag(library-only)
cpp-options: -DDEVELOPMENT
ghc-options: -Wall -O0
else
ghc-options: -Wall -O2
default-language: Haskell2010
default-extensions: TemplateHaskell
2014-08-09 18:33:22 +00:00
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
EmptyDataDecls
NoMonomorphismRestriction
DeriveDataTypeable
RecordWildCards
ViewPatterns
2014-08-09 18:33:22 +00:00
build-depends: base >= 4.8
, yesod >= 1.4
2014-08-12 12:42:25 +00:00
, yesod-core >= 1.2.12
, yesod-static >= 1.5
, bytestring >= 0.10
, text >= 1.2
, persistent >= 2.2
, persistent-postgresql >= 2.2
2014-08-09 18:33:22 +00:00
, template-haskell
2014-08-12 12:42:25 +00:00
, shakespeare >= 2.0
, hjsmin >= 0.1
, wai-extra >= 3.0
, yaml >= 0.8
, http-conduit >= 2.1
, directory >= 1.2
, warp >= 3.1
, data-default >= 0.5
2014-08-12 12:42:25 +00:00
, aeson >= 0.6
, monad-logger >= 0.3
, fast-logger >= 2.4
-- transition to persisten 2.0
, classy-prelude-yesod >= 0.12
, file-embed
2014-08-12 12:42:25 +00:00
-- custom dependencies
, random >= 1.1
, mime-mail >= 0.4
, blaze-html >= 0.8
2014-08-12 12:42:25 +00:00
, filepath
, system-filepath >= 0.4
, time >= 1.5
, transformers >= 0.4
, cereal >= 0.4
, cryptohash-cryptoapi >= 0.1
, crypto-api >= 0.13
2014-12-02 07:02:40 +00:00
, imagemagick
, yesod-markdown >= 0.10
, blaze-markup >= 0.7
, wai >= 3.0
, yesod-newsfeed >= 1.4
, unix >= 2.7
2015-09-28 17:58:49 +00:00
-- for Migrations
, HDBC
, HDBC-postgresql
, imagemagick
, text
, filepath
, system-filepath
, bytestring
2014-08-09 18:33:22 +00:00
executable eidolon
if flag(library-only)
2015-09-28 17:58:49 +00:00
Buildable: False
2014-08-09 18:33:22 +00:00
main-is: main.hs
hs-source-dirs: app
build-depends: base
, eidolon
, yesod
ghc-options: -threaded -O2
test-suite test
type: exitcode-stdio-1.0
main-is: main.hs
hs-source-dirs: tests
ghc-options: -Wall
build-depends: base
, eidolon
2014-12-22 15:19:46 +00:00
, yesod-test >= 1.2
2014-08-09 18:33:22 +00:00
, yesod-core
, yesod
, persistent
, persistent-sqlite
, resourcet
, monad-logger
, transformers
, hspec