1
1
mirror of https://github.com/srid/rib.git synced 2024-11-30 03:45:00 +03:00
rib/rib.cabal
Sridhar Ratnakumar 6704fbeb2c Cabal'ify examples/hello-world
default.nix is mostly a copy of rib's default.nix
2019-08-03 10:02:32 -04:00

59 lines
1.2 KiB
Plaintext

cabal-version: 2.2
name: rib
version: 0.2.0.0
description: Please see the README on GitHub at <https://github.com/srid/rib>
homepage: https://github.com/srid/rib#readme
bug-reports: https://github.com/srid/rib/issues
author: Sridhar Ratnakumar
maintainer: srid@srid.ca
copyright: 2019 Sridhar Ratnakumar
license: BSD-3-Clause
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/srid/rib
library
exposed-modules:
Rib.App
, Rib.Pandoc
, Rib.Server
, Rib.Shake
, Rib.Simple
hs-source-dirs:
src
ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
build-depends:
aeson
, async
, base >=4.7 && <5
, binary
, bytestring
, clay
, cmdargs
, containers
, data-default
, fsnotify
, http-types
, lens
, lens-aeson
, lucid
, mtl
, pandoc >= 2.7
, pandoc-types
, pandoc-include-code
, safe
, shake
, skylighting
, text
, time
, wai
, wai-app-static
, wai-extra
, warp
default-language: Haskell2010