Go to file
Profpatsch b8267b1988 update 1.31
Use the `fetch.py` script to update to dhall 1.31 and add some
instructions on how to do it.
2020-03-29 22:29:08 +02:00
.github/workflows wtf osx 2019-12-19 14:07:49 +09:00
LICENSE license 2018-12-08 17:36:09 +02:00
README.md update 1.31 2020-03-29 22:29:08 +02:00
default.nix Dhall LSP releases 2020-03-27 11:32:53 -04:00
dhall-bash-simple.nix update 1.31 2020-03-29 22:29:08 +02:00
dhall-json-simple.nix update 1.31 2020-03-29 22:29:08 +02:00
dhall-lsp-simple.nix update 1.31 2020-03-29 22:29:08 +02:00
dhall-nix-simple.nix update 1.31 2020-03-29 22:29:08 +02:00
dhall-simple.nix update 1.31 2020-03-29 22:29:08 +02:00
dhall-yaml-simple.nix update 1.31 2020-03-29 22:29:08 +02:00
fetch.py Add fetch.py, for auto-updating to the newest version 2020-03-29 22:29:08 +02:00
nixpkgs.nix don't run dhall-nix on osx 2019-09-24 12:14:11 -04:00
release.json update 1.31 2020-03-29 22:29:08 +02:00
release.nix update 1.31 2020-03-29 22:29:08 +02:00
shell.nix add dhall-to-yaml-ng 2020-01-24 14:48:58 +00:00
test.bash dhall yaml binary name was changed for some reason 2020-02-05 21:59:39 +02:00

README.md

Easy Dhall Nix

Derivations for easily downloading Dhall binaries and putting them to use.

Trial

You cn get an appropriate nix-shell with the binaries installed by first testing this with:

nix-shell

Installation

You might choose to simply copy the derivations from this repository, or you can fetch the git/Github repo using the various helpers:

> nix repl
nix-repl> pkgs = import <nixpkgs> {}

nix-repl> drvs = import (pkgs.fetchFromGitHub {
  owner = "justinwoo";
  repo = "easy-dhall-nix";
  rev = # some REV
  sha256 = # some SHA
}) {}

nix-repl> drvs.dhall-simple
«derivation /nix/store/qz29jbplpmlvsbmq05084dh1fbs8sl0h-dhall-simple.drv»

NixOS: Contributors needed

The derivations here have been tested by others to work on NixOS. If you have problems, open an issue.

Update this repository

To update, run

./fetch.py

from the root of this repository. It will prefetch the binaries from the latest dhall release on Github.