Skip to content

gaelreyrol/dhall-resume

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dhall-resume

built with nix .github/workflows/ci.yml

dhall-resume contains Dhall bindings to JSON Resume schema with some extra definitions.

Example

-- ./examples/demo.dhall
let Resume = ../package.dhall

in Resume.Basic::{
    , basics = Some Resume.Basics::{
        , name = Some "John Doe"
        , email = Some "contact@johndoe.com"
        , url = Some "https://johndoe.com"
    }
    , work = Some [
        Resume.Work::{
            , name = Some "Foo"
            , location = Some "Earth"
            , salaries = Some [
                Resume.Salary::{
                    amount = 2000
                }
            ]
        }
    ]
}
dhall-to-json --file examples/demo.dhall

Credits