Skip to content

Commit

Permalink
Update from Hackage at 2019-06-07T00:23:11Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Jun 7, 2019
1 parent 26af6f3 commit 9ac45f9
Show file tree
Hide file tree
Showing 8 changed files with 854 additions and 0 deletions.
51 changes: 51 additions & 0 deletions dhall-bash/1.0.21/dhall-bash.cabal
@@ -0,0 +1,51 @@
Name: dhall-bash
Version: 1.0.21
Cabal-Version: >=1.8.0.2
Build-Type: Simple
Tested-With: GHC == 7.10.3, GHC == 8.4.3, GHC == 8.6.1
License: BSD3
License-File: LICENSE
Copyright: 2017 Gabriel Gonzalez
Author: Gabriel Gonzalez
Maintainer: Gabriel439@gmail.com
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.8.0.0 && < 5 ,
bytestring < 0.11,
containers < 0.7 ,
dhall >= 1.22.0 && < 1.25,
neat-interpolation < 0.4 ,
shell-escape < 0.3 ,
text >= 0.2 && < 1.3
Exposed-Modules: Dhall.Bash
GHC-Options: -Wall

Executable dhall-to-bash
Hs-Source-Dirs: exec
Main-Is: Main.hs
Build-Depends:
base ,
bytestring ,
dhall ,
dhall-bash ,
optparse-generic >= 1.1.1 && < 1.4 ,
text
GHC-Options: -Wall
1 change: 1 addition & 0 deletions dhall-bash/1.0.21/dhall-bash.json
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"9ccac55a646b868637cc87cb71cf0e19","Skein512_512":"05802153c10c7f874590e7c393bc2793b470b86647b7f451b4874605c0d1eec990087ce3efd35de1c3a0f246c9a3411ccde766c7055e20a0343fdea2c89b163d","SHA1":"cf38111e3dcf1d798b7f2aad24bb36b9448fc7f7","SHA512":"c6168a3e87e1a3585e0e0117522a395869e3f273b0b48780a3d6ce5aadad7bda45baf377b0f783de786d8b21a64135487f24c87d23d3b48e4d55df2136deafe9","SHA256":"2801d68cba9682a493b7ff54e3773aa262c59db7e37174fcd7a6faa033073b1b"},"package-locations":["https://hackage.haskell.org/package/dhall-bash-1.0.21/dhall-bash-1.0.21.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/dhall-bash-1.0.21.tar.gz"],"package-size":5338}
144 changes: 144 additions & 0 deletions dhall-json/1.3.0/dhall-json.cabal
@@ -0,0 +1,144 @@
Name: dhall-json
Version: 1.3.0
Cabal-Version: >=1.8.0.2
Build-Type: Simple
Tested-With: GHC == 7.10.3, GHC == 8.4.3, GHC == 8.6.1
License: BSD3
License-File: LICENSE
Copyright: 2017 Gabriel Gonzalez
Author: Gabriel Gonzalez
Maintainer: Gabriel439@gmail.com
Bug-Reports: https://github.com/dhall-lang/dhall-haskell/issues
Synopsis: Convert between Dhall and JSON or YAML
Description:
Use this package if you want to convert between Dhall expressions and JSON
or YAML. You can use this package as a library or an executable:
.
* See the "Dhall.JSON" module if you want to use this package as a library
.
* Use the @dhall-to-json@ or @dhall-to-yaml@ programs from this package if
you want an executable
.
The "Dhall.JSON" module also contains instructions for how to use this
package
Category: Compiler
Extra-Source-Files:
CHANGELOG.md
tasty/data/*.dhall
tasty/data/*.json

Source-Repository head
Type: git
Location: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-json

Flag yaml-pre-0_11
Default: False
Manual: False

Library
Hs-Source-Dirs: src
Build-Depends:
base >= 4.8.0.0 && < 5 ,
aeson >= 1.0.0.0 && < 1.5 ,
aeson-pretty < 0.9 ,
bytestring < 0.11,
containers ,
dhall >= 1.22.0 && < 1.25,
exceptions >= 0.8.3 && < 0.11,
lens >= 2.5 && < 4.18,
optparse-applicative >= 0.14.0.0 && < 0.15,
scientific >= 0.3.0.0 && < 0.4 ,
text >= 0.11.1.0 && < 1.3 ,
unordered-containers < 0.3 ,
vector
Exposed-Modules:
Dhall.JSON
Dhall.JSONToDhall
Dhall.Yaml
GHC-Options: -Wall
if flag(yaml-pre-0_11)
Build-Depends:
yaml >= 0.5.0 && < 0.11
else
Build-Depends:
libyaml >= 0.1.1.0 && < 0.2 ,
yaml >= 0.11.0 && < 0.12

Executable dhall-to-json
Hs-Source-Dirs: dhall-to-json
Main-Is: Main.hs
Build-Depends:
base ,
aeson ,
aeson-pretty >= 0.8.5 && < 0.9 ,
bytestring < 0.11,
dhall ,
dhall-json ,
optparse-applicative ,
text
Other-Modules:
Paths_dhall_json
GHC-Options: -Wall

Executable dhall-to-yaml
Hs-Source-Dirs: dhall-to-yaml
Main-Is: Main.hs
Build-Depends:
base ,
aeson ,
bytestring < 0.11,
dhall ,
dhall-json ,
optparse-applicative ,
text
GHC-Options: -Wall

Executable json-to-dhall
Hs-Source-Dirs: json-to-dhall
Main-Is: Main.hs
Build-Depends:
base ,
aeson ,
bytestring < 0.11 ,
dhall ,
dhall-json ,
exceptions >= 0.8.3 && < 0.11 ,
optparse-applicative ,
text < 1.3
if !impl(ghc >= 8.0) && !impl(eta >= 0.8.4)
Build-Depends: semigroups == 0.18.*
Other-Modules:
Paths_dhall_json
GHC-Options: -Wall

Executable yaml-to-dhall
Hs-Source-Dirs: yaml-to-dhall
Main-Is: Main.hs
Build-Depends:
base ,
aeson ,
bytestring < 0.11 ,
dhall ,
dhall-json ,
exceptions >= 0.8.3 && < 0.11 ,
optparse-applicative ,
text < 1.3
if !impl(ghc >= 8.0) && !impl(eta >= 0.8.4)
Build-Depends: semigroups == 0.18.*
Other-Modules:
Paths_dhall_json
GHC-Options: -Wall

Test-Suite tasty
Type: exitcode-stdio-1.0
Hs-Source-Dirs: tasty
Main-Is: Main.hs
Build-Depends:
base,
aeson ,
bytestring ,
dhall ,
dhall-json ,
tasty < 1.3,
text ,
tasty-hunit >= 0.2
1 change: 1 addition & 0 deletions dhall-json/1.3.0/dhall-json.json
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"134fe435578e5a8fc51d0d7587d73656","Skein512_512":"aa07e0b8ce62d9592dbfe208d76d644ccc5d610fcea86771d72948920fdd6814a2004019c64bd434e5bd79842d7ed038483fdbd4d914e25cf0ac00ad0b3a3b62","SHA1":"e00b81dfa54cff2f49e3d6ac55848597e6556f5f","SHA512":"57f22fd80024bc45786b08df9a8661e5a69c65dabb8a7cea4297ee95ace329ebdf8e70315e442112af763e4ed1bc4cc5a231321220755d1f35a545cd4adbaff1","SHA256":"f1cab9ae9a93559cb66c38626a1a4c968d60f12795ac0a9755994e053518d19c"},"package-locations":["https://hackage.haskell.org/package/dhall-json-1.3.0/dhall-json-1.3.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/dhall-json-1.3.0.tar.gz"],"package-size":17764}
33 changes: 33 additions & 0 deletions dhall-text/1.0.18/dhall-text.cabal
@@ -0,0 +1,33 @@
Name: dhall-text
Version: 1.0.18
Cabal-Version: >=1.8.0.2
Build-Type: Simple
Tested-With: GHC == 7.10.3, GHC == 8.4.3, GHC == 8.6.1
License: BSD3
License-File: LICENSE
Copyright: 2017 Gabriel Gonzalez
Author: Gabriel Gonzalez
Maintainer: Gabriel439@gmail.com
Bug-Reports: https://github.com/dhall-lang/dhall-haskell/issues
Synopsis: Template text using Dhall
Description:
This package provides a @dhall-to-text@ executable that templates text using
the Dhall configuration language
Category: Compiler
Extra-Source-Files:
README.md
Source-Repository head
Type: git
Location: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-text

Executable dhall-to-text
Hs-Source-Dirs: exec
Main-Is: Main.hs
Build-Depends:
base >= 4.8.0.0 && < 5 ,
dhall >= 1.15.0 && < 1.25,
optparse-applicative < 0.15,
text >= 0.11.1.0 && < 1.3
GHC-Options: -Wall
Other-Modules:
Paths_dhall_text
1 change: 1 addition & 0 deletions dhall-text/1.0.18/dhall-text.json
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"c4c4b3f4747b186b02db0de567a7bd23","Skein512_512":"657e8747a1afcc05d53ecadef0b994abe94fbd90e11b9349c02dbb8d9e5abc3f08df28a8c4ab5211f6d242a4a18a363489b6c488274510369d01070dc59fe497","SHA1":"80b4553bb41197e4eaed9b14434efff1a8d750e6","SHA512":"6b8d966dd71ef952c691bb747daaaaa09fd050d596cd5233cac23ec99ece50b676bca0666bbca4660f7ba3b11d5246254cf58b02d744d3b183ccc8edbe1a4930","SHA256":"4d6f9477806cfe32ee415ca5763c1c0ded7b3137215a619a2fd663fa8e919bdb"},"package-locations":["https://hackage.haskell.org/package/dhall-text-1.0.18/dhall-text-1.0.18.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/dhall-text-1.0.18.tar.gz"],"package-size":2984}

0 comments on commit 9ac45f9

Please sign in to comment.