44 lines
1.6 KiB
Plaintext
44 lines
1.6 KiB
Plaintext
name: breve
|
|
version: 0.5.0.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://maxwell.ydns.eu/git/rnhmjoj/breve
|
|
license: GPL-3
|
|
license-file: LICENSE
|
|
author: rnhmjoj
|
|
maintainer: rnhmjoj@inventati.org
|
|
copyright: (C) Michele Guerini Rocco 2019
|
|
category: Web
|
|
build-type: Simple
|
|
extra-source-files: README.md, LICENSE
|
|
data-files: static/*.png, static/*.css static/*.woff
|
|
cabal-version: >=1.10
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://maxwell.ydns.eu/git/rnhmjoj/breve
|
|
|
|
executable breve
|
|
main-is: Main.hs
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
other-modules: Application, Views, Breve.Settings,
|
|
Breve.Generator, Breve.UrlTable,
|
|
Paths_breve
|
|
default-extensions: OverloadedStrings
|
|
other-extensions: RecordWildCards, DeriveGeneric,
|
|
DataKinds, KindSignatures, TypeOperators
|
|
build-depends: base >=4.8 && <5.0,
|
|
warp, warp-tls, tls, blaze-html,
|
|
servant-server, servant-rawm, servant-blaze,
|
|
wai, wai-extra, streaming-commons, http-api-data,
|
|
|
|
mtl, text, aeson, bytestring, binary,
|
|
hashtables, cryptohash, random,
|
|
configurator, directory
|
|
ghc-options: -threaded -O2 "-with-rtsopts=-N -qg"
|