-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsqlite-simple-interpolate.cabal
57 lines (47 loc) · 1.41 KB
/
sqlite-simple-interpolate.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
cabal-version: 3.0
name: sqlite-simple-interpolate
version: 0.2.0.0
synopsis: Interpolated SQLite queries via quasiquotation
description:
Please see the readme at https://github.com/ruby0b/sqlite-simple-interpolate#readme.
license: BSD-3-Clause
license-file: LICENSE
author: ruby0b
maintainer: ruby0b
homepage: https://github.com/ruby0b/sqlite-simple-interpolate
category: Database
tested-with: GHC ==8.10.7 || ==9.2.5 || ==9.4.4
extra-source-files:
CHANGELOG.md
README.md
extra-doc-files: README.md
source-repository head
type: git
location: git://github.com/ruby0b/sqlite-simple-interpolate.git
library
hs-source-dirs: src
exposed-modules: Database.SQLite.Simple.Interpolate
build-depends:
, base >=4.14 && <5
, custom-interpolation ^>=0.1
, sqlite-simple >=0.1
, template-haskell >=2.16 && <2.20
default-extensions:
TemplateHaskell
QuasiQuotes
ghc-options: -Wall
default-language: Haskell2010
flag tests
manual: False
default: True
test-suite sqlite-simple-interpolate-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: tests
build-depends:
, base
, sqlite-simple
, sqlite-simple-interpolate
if !flag(tests)
buildable: False
default-language: Haskell2010