2016-01-28 15:15:54 +01:00
|
|
|
name: vervis
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: Hopefully one day a decentralized project hosting platform
|
|
|
|
description:
|
|
|
|
This project is starting as a minimal Git repo viewer, but aims to evolve
|
|
|
|
into a decentralized federated software project hosting platform.
|
|
|
|
homepage: http://hub.darcs.net/fr33domlover/vervis
|
|
|
|
bug-reports: http://rel4tion.org/projects/vervis/tickets/
|
|
|
|
license: PublicDomain
|
|
|
|
license-file: COPYING
|
|
|
|
author: fr33domlover
|
|
|
|
maintainer: fr33domlover@riseup.net
|
|
|
|
copyright: ♡ Copying is an act of love. Please copy, reuse and share.
|
|
|
|
category: Development, Distribution, Git, Web
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files: AUTHORS
|
|
|
|
ChangeLog
|
|
|
|
COPYING
|
|
|
|
INSTALL.md
|
|
|
|
NEWS.md
|
|
|
|
README.md
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: darcs
|
|
|
|
location: http://hub.darcs.net/fr33domlover/vervis
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules: Vervis
|
2016-02-06 14:08:35 +01:00
|
|
|
, Vervis.Git
|
|
|
|
, Vervis.Monad
|
|
|
|
, Vervis.Ops
|
2016-02-06 14:36:35 +01:00
|
|
|
, Vervis.Persist
|
2016-02-06 14:08:35 +01:00
|
|
|
, Vervis.Types
|
2016-01-28 15:15:54 +01:00
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
2016-02-02 13:14:21 +01:00
|
|
|
build-depends: aeson
|
|
|
|
, base >=4.8 && <5
|
2016-01-29 10:39:35 +01:00
|
|
|
, case-insensitive >=1
|
|
|
|
, directory-tree >=0.12
|
2016-02-11 21:58:40 +01:00
|
|
|
, esqueleto
|
2016-01-29 10:39:35 +01:00
|
|
|
, filepath
|
|
|
|
, hit >=0.6.3
|
2016-02-02 13:14:21 +01:00
|
|
|
, json-state
|
|
|
|
, hashable
|
2016-01-29 01:59:27 +01:00
|
|
|
, hourglass
|
2016-02-12 02:53:19 +01:00
|
|
|
, monad-logger
|
2016-02-06 14:36:35 +01:00
|
|
|
, persistent
|
|
|
|
, persistent-sqlite
|
|
|
|
, persistent-template
|
2016-02-12 02:53:19 +01:00
|
|
|
, resourcet
|
2016-01-29 10:39:35 +01:00
|
|
|
, text >=1
|
2016-02-02 13:31:36 +01:00
|
|
|
, time-units
|
2016-01-31 06:58:50 +01:00
|
|
|
, transformers >=0.4.2
|
2016-01-29 10:39:35 +01:00
|
|
|
, unordered-containers >=0.2.5
|
2016-02-12 02:53:19 +01:00
|
|
|
, yesod
|
|
|
|
, yesod-persistent
|
2016-01-28 15:15:54 +01:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall
|