dhall-yaml

Convert between Dhall configuration language and YAML format

brewmacoslinux
Try with needOr install directly
Source

About

Convert between Dhall and YAML

Commands

dhall-to-yamlyaml-to-dhall

Examples

Convert a Dhall file to YAML output$ dhall-to-yaml <<< 'let x = {name = "test", value = 42} in x'
Convert YAML file to Dhall format$ yaml-to-dhall '(name: Text) -> (value: Natural)' < config.yaml
Pipe Dhall configuration directly to YAML$ dhall-to-yaml < dhall-config.dhall > output.yaml