dhall-yaml: Convert between Dhall and YAML

[ compiler, gpl, library, program ] [ Propose Tags ]

Use this package if you want to convert between Dhall expressions and YAML. You can use this package as a library or an executable:

  • See the Dhall.Yaml module if you want to use this package as a library

  • Use the dhall-to-yaml-ng program from this package if you want an executable


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.1.0, 1.2.0, 1.2.1, 1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6, 1.2.7, 1.2.8, 1.2.9, 1.2.10, 1.2.11, 1.2.12
Change log CHANGELOG.md
Dependencies aeson (>=1.0.0.0 && <1.5), ansi-terminal (>=0.6.3.1 && <0.11), base (>=4.8.0.0 && <5), bytestring (<0.11), dhall (>=1.28.0 && <1.30), dhall-json (>=1.6.0 && <1.7), dhall-yaml, exceptions (>=0.8.3 && <0.11), HsYAML (>=0.2 && <0.3), HsYAML-aeson (>=0.2 && <0.3), optparse-applicative (>=0.14.0.0 && <0.16), prettyprinter, prettyprinter-ansi-terminal (>=1.1.1 && <1.2), semigroups (>=0.18 && <0.19), text (>=0.11.1.0 && <1.3), vector [details]
License GPL-3.0-only
Copyright 2019 Gabriel Gonzalez
Author Gabriel Gonzalez
Maintainer Gabriel439@gmail.com
Category Compiler
Bug tracker https://github.com/dhall-lang/dhall-haskell/issues
Source repo head: git clone https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-yaml
Uploaded by GabrielGonzalez at 2020-01-13T03:49:51Z
Distributions Arch:1.2.11, NixOS:1.2.12
Executables yaml-to-dhall, dhall-to-yaml-ng
Downloads 6253 total (60 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2020-01-13 [all 1 reports]

Readme for dhall-yaml-1.0.1

[back to package description]

dhall-yaml

For installation or development instructions, see:

Full documentation here:

Introduction

This dhall-yaml package provides a Dhall to YAML compiler, dhall-to-yaml-ng, and a tool for deriving Dhall from YAML code: yaml-to-dhall.

Tutorials for the analogous JSON tools are available in the dhall-json package:

Example

$ dhall-to-yaml-ng <<< "{ foo = [1, 2, 3], bar = { baz = True } }" > example.yaml
$ cat example.yaml
bar:
  baz: true
foo:
- 1
- 2
- 3
$ yaml-to-dhall '{ foo : List Natural, bar : { baz : Bool } }' < example.yaml
{ bar = { baz = True }, foo = [ 1, 2, 3 ] }