2015-04-08 22:13:02 +02:00
|
|
|
name: breve
|
2019-11-06 00:06:50 +01:00
|
|
|
version: 0.5.0.0
|
2015-04-08 21:38:38 +02:00
|
|
|
synopsis: a url shortener
|
|
|
|
description:
|
2015-04-09 17:24:16 +02:00
|
|
|
|
|
|
|
Breve is a web application that provides a simple interface to
|
2015-04-09 22:26:18 +02:00
|
|
|
shortening long urls creating links smaller and easier to remember.
|
2015-04-08 21:38:38 +02:00
|
|
|
|
2019-05-15 03:12:26 +02:00
|
|
|
homepage: https://maxwell.ydns.eu/git/rnhmjoj/breve
|
2019-05-15 03:00:52 +02:00
|
|
|
license: GPL-3
|
2015-04-08 21:38:38 +02:00
|
|
|
license-file: LICENSE
|
2015-09-10 03:43:25 +02:00
|
|
|
author: rnhmjoj
|
2019-05-15 03:12:26 +02:00
|
|
|
maintainer: rnhmjoj@inventati.org
|
|
|
|
copyright: (C) Michele Guerini Rocco 2019
|
2015-04-08 12:47:56 +02:00
|
|
|
category: Web
|
|
|
|
build-type: Simple
|
2015-04-08 21:38:38 +02:00
|
|
|
extra-source-files: README.md, LICENSE
|
2019-05-15 03:12:26 +02:00
|
|
|
data-files: static/*.png, static/*.css static/*.woff
|
2015-04-08 21:38:38 +02:00
|
|
|
cabal-version: >=1.10
|
2015-04-08 12:47:56 +02:00
|
|
|
|
2015-04-08 22:13:02 +02:00
|
|
|
source-repository head
|
|
|
|
type: git
|
2019-05-15 03:12:26 +02:00
|
|
|
location: https://maxwell.ydns.eu/git/rnhmjoj/breve
|
2015-04-08 22:13:02 +02:00
|
|
|
|
|
|
|
executable breve
|
2019-11-07 10:12:28 +01:00
|
|
|
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,
|
2019-11-07 10:35:18 +01:00
|
|
|
warp, warp-tls, tls, blaze-html,
|
2019-11-09 01:07:49 +01:00
|
|
|
servant-server, servant-rawm, servant-blaze,
|
2019-11-07 10:12:28 +01:00
|
|
|
wai, wai-extra, streaming-commons, http-api-data,
|
2019-11-07 10:35:18 +01:00
|
|
|
|
|
|
|
mtl, text, aeson, bytestring, binary,
|
2019-11-07 10:12:28 +01:00
|
|
|
hashtables, cryptohash, random,
|
|
|
|
configurator, directory
|
2019-11-07 11:05:00 +01:00
|
|
|
ghc-options: -threaded -O2 "-with-rtsopts=-N -qg"
|