easy-dhall-nix/dhall-json-simple.nix
Profpatsch 953cf8b3ea feat(dhall-json): use build.nix
Since we now support multiple binaries in build.nix, we can also use
it for dhall-json.
2020-08-04 23:06:03 +02:00

8 lines
235 B
Nix

{ pkgs ? import <nixpkgs> {} }:
import ./build.nix { inherit pkgs; release = import ./release.nix; } {
simpleName = "dhall-json-simple";
binNames = [ "dhall-to-json" "dhall-to-yaml" "json-to-dhall" ];
attrName = "dhall-json";
}