breve/breve.cabal
2015-04-10 23:47:03 +02:00

38 lines
1.4 KiB
Plaintext

name: breve
version: 0.0.3.0
synopsis: a url shortener
description:
Breve is a web application that provides a simple interface to
shortening long urls creating links smaller and easier to remember.
homepage: https://github.com/rnhmjoj/breve
license: MIT
license-file: LICENSE
author: Rnhmjoj
maintainer: micheleguerinirocco@me.com
copyright: (C) Michele Guerini Rocco 2015
category: Web
build-type: Simple
extra-source-files: README.md, LICENSE
data-files: layouts/*.css, layouts/*.html, views/*.html
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/rnhmjoj/breve
executable breve
main-is: Main.hs
hs-source-dirs: src
default-language: Haskell2010
other-modules: Application, Breve.Common,
Breve.Generator, Breve.UrlTable
other-extensions: OverloadedStrings
build-depends: base ==4.*, simple >= 0.8.0, wai ==2.*, wai-extra ==2.*,
warp ==2.1.*, aeson ==0.8.*, bytestring ==0.10.*,
transformers ==0.3.*, mtl ==2.1.*, hashtables ==1.2.*,
cryptohash ==0.11.*, binary ==0.7.*, random ==1.1.*,
xdg-basedir ==0.2.*, tconfig ==0.5.*, directory ==1.2.*
ghc-options: -threaded -O2