-
Notifications
You must be signed in to change notification settings - Fork 213
/
dhall-bash.cabal
54 lines (52 loc) · 1.77 KB
/
dhall-bash.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
Name: dhall-bash
Version: 1.0.41
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: 2017 Gabriella Gonzalez
Author: Gabriella Gonzalez
Maintainer: [email protected]
Bug-Reports: https://github.com/dhall-lang/dhall-haskell/issues
Synopsis: Compile Dhall to Bash
Description:
Use this package if you want to compile Dhall expressions to Bash.
You can use this package as a library or an executable:
.
* See the "Dhall.Bash" module if you want to use this package as a library
.
* Use the @dhall-to-bash@ if you want an executable
.
The "Dhall.Bash" module also contains instructions for how to use this
package
Category: Compiler
Source-Repository head
Type: git
Location: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-bash
Library
Hs-Source-Dirs: src
Build-Depends:
base >= 4.11.0.0 && < 5 ,
bytestring < 0.13,
containers < 0.8 ,
dhall >= 1.42.0 && < 1.43,
neat-interpolation < 0.6 ,
shell-escape < 0.3 ,
text >= 0.2 && < 2.2
Exposed-Modules: Dhall.Bash
GHC-Options: -Wall
Default-Language: Haskell2010
Executable dhall-to-bash
Hs-Source-Dirs: exec
Main-Is: Main.hs
Other-Modules:
Paths_dhall_bash
Build-Depends:
base ,
bytestring ,
dhall ,
dhall-bash ,
optparse-generic >= 1.1.1 && < 1.6 ,
text
GHC-Options: -Wall
Default-Language: Haskell2010