-
Notifications
You must be signed in to change notification settings - Fork 12
/
postgresql-orm.cabal
76 lines (73 loc) · 2.49 KB
/
postgresql-orm.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: postgresql-orm
version: 0.5.1
cabal-version: >= 1.14
build-type: Simple
license: GPL
license-file: LICENSE
author: Amit Levy and David Mazieres
maintainer: [email protected]
category: Database
synopsis: An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL.
data-files: man/man1/pg_migrate.1 man/man5/pg_migrate.5 static/migration.hs static/CompilerUtils.hs
description:
An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL. See
"Database.PostgreSQL.ORM" for documentation.
executable pg_migrate
default-language: Haskell2010
Main-is: pg_migrate.hs
hs-source-dirs: .
ghc-options: -Wall
build-depends: base < 6
, postgresql-orm
, filepath
library
hs-source-dirs: src
default-language: Haskell2010
build-depends: base < 6
, aeson
, blaze-builder > 0.4
, bytestring
, bytestring-builder
, directory
, filepath
, ghc-prim
, haskell-src-exts
, mtl
, old-locale
, postgresql-simple
, process
, temporary
, text
, time
, transformers
, unix
, unordered-containers
, vector
ghc-options: -Wall -fno-warn-unused-do-bind
exposed-modules: Data.GetField
, Data.RequireSelector
, Database.PostgreSQL.Devel
, Database.PostgreSQL.Describe
, Database.PostgreSQL.Escape
, Database.PostgreSQL.Migrate
, Database.PostgreSQL.Migrations
, Database.PostgreSQL.ORM
, Database.PostgreSQL.ORM.Association
, Database.PostgreSQL.ORM.CreateTable
, Database.PostgreSQL.ORM.DBSelect
, Database.PostgreSQL.ORM.Model
, Database.PostgreSQL.ORM.SqlType
, Database.PostgreSQL.ORM.Validations
other-modules: Paths_postgresql_orm
other-extensions: FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, MultiParamTypeClasses
, OverlappingInstances
, OverloadedStrings
, ScopedTypeVariables
, TypeOperators
, UndecidableInstances
source-repository head
type: git
location: https://github.com/alevy/postgresql-orm.git