dhall-nix-lib/Path/importJSON.dhall

13 lines
247 B
Text
Raw Normal View History

2022-09-08 18:49:47 +00:00
λ(nix : ../NixPrelude.dhall) →
let Any = ../Any/Type.dhall
let Path = ./Type.dhall
let readFile = ./readFile.dhall nix
let importJSON
: Path → Any
= λ(p : Path) → nix.builtins.fromJSON (readFile p)
in importJSON