This repository has been archived by the owner on Nov 12, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinterpol.cabal
58 lines (50 loc) · 1.92 KB
/
interpol.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
Name: interpol
Version: 0.2.3
Cabal-Version: >= 1.8
License: GPL-3
License-File: LICENSE
Stability: experimental
Author: Alexandru Scvortov <[email protected]>
Maintainer: [email protected]
Homepage: https://github.com/scvalex/interpol
Category: Source-tools, Language
Synopsis: GHC preprocessor and library to enable variable interpolation in strings
Build-type: Simple
Description:
This preprocessor enables variable interpolation in strings.
Alternatively, the library may be used.
.
See the README.md file for details.
Extra-source-files: Makefile,
Test/AlreadyImported.hs,
Test/AlreadyImportedWithUse.hs,
Test/AlreadyImportedWithUse2.hs,
Test/JustShow.hs,
Test/NoImport.hs,
Test/NoWarn.hs,
Test/One.hs,
Test/OperatorConflicts.hs,
Test/Pure.hs,
Test/PureString.hs,
Test/Simple.hs,
Test/Standalone.hs,
Test/String.hs
Data-files: README.md, NEWS.md
Source-repository head
Type: git
Location: git://github.com/scvalex/interpol.git
Executable interpol
Build-Depends: base >= 4 && <5, syb, haskell-src-exts, regex-posix
Main-Is: Main.hs
Library
Build-Depends: base >= 4 && <5
Ghc-options: -Wall
Extensions: Safe
Exposed-modules: Text.Interpol
Test-suite unit
Hs-Source-Dirs: Test, .
Main-Is: Unit.hs
Type: exitcode-stdio-1.0
Build-Depends: base >= 4 && <5, syb, haskell-src-exts, regex-posix
Ghc-Options: -Wall
Build-Depends: test-framework, test-framework-hunit, HUnit