-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopallib.cabal
29 lines (28 loc) · 1.05 KB
/
opallib.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: opallib
version: 0.1.0.0
synopsis: Demo application for showing off opaleye.
description:
homepage: http://opaleye.benkolera.com
license: MIT
license-file: LICENSE
author: Ben Kolera
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
executable opal-library
main-is: Main.hs
-- other-modules:
ghc-options: -Wall -Werror
build-depends: base >=4.7 && <4.8
, lens
, mtl >= 2.2
, opaleye >= 0.4.1
, opaleye-classy >= 0.3.1
, product-profunctors
, semigroups
, text
, time
, postgresql-simple
-- You won't need the dep below. Just for nice pretty printed output
, groom
default-language: Haskell2010