Go to file
Justin Woo 7f365c1daf
Merge pull request #54 from justinwoo/1.42.0
Update to 1.42.0
2023-04-20 01:29:35 +03:00
.github/workflows Update CI 2023-04-19 19:55:12 +02:00
LICENSE license 2018-12-08 17:36:09 +02:00
README.md chore(*): <nixpkgs> -> ./nixpkgs.nix 2020-11-30 22:50:55 +01:00
build.nix Update dhall to 1.38 2021-03-12 23:48:29 +01:00
default.nix Update to 1.41.0, add dhall-toml 2022-02-23 00:07:59 +01:00
dhall-bash-simple.nix chore(*): <nixpkgs> -> ./nixpkgs.nix 2020-11-30 22:50:55 +01:00
dhall-csv-simple.nix Update to 1.40.2, add dhall-csv 2021-12-22 00:09:58 +01:00
dhall-docs-simple.nix feat(build.nix): add man page for dhall & dhall-docs on MacOS 2020-12-01 23:41:09 +01:00
dhall-json-simple.nix chore(*): <nixpkgs> -> ./nixpkgs.nix 2020-11-30 22:50:55 +01:00
dhall-lsp-simple.nix chore(*): <nixpkgs> -> ./nixpkgs.nix 2020-11-30 22:50:55 +01:00
dhall-nix-simple.nix chore(*): <nixpkgs> -> ./nixpkgs.nix 2020-11-30 22:50:55 +01:00
dhall-simple.nix feat(build.nix): add man page for dhall & dhall-docs on MacOS 2020-12-01 23:41:09 +01:00
dhall-toml-simple.nix Update to 1.41.0, add dhall-toml 2022-02-23 00:07:59 +01:00
dhall-yaml-simple.nix chore(*): <nixpkgs> -> ./nixpkgs.nix 2020-11-30 22:50:55 +01:00
fetch.py Update to 1.42.0 2023-04-19 19:55:13 +02:00
nixpkgs.json Update to 1.42.0 2023-04-19 19:55:13 +02:00
nixpkgs.nix fix(fetch.py): when fetch is run, first update unstable channel 2020-11-30 23:33:52 +01:00
release.json Update to 1.42.0 2023-04-19 19:55:13 +02:00
release.nix update 1.31 2020-03-29 22:29:08 +02:00
shell.nix Update to 1.41.0, add dhall-toml 2022-02-23 00:07:59 +01:00
test.nix chore(*): <nixpkgs> -> ./nixpkgs.nix 2020-11-30 22:50:55 +01:00
test.sh chore(test.sh): drop result link with trap 2020-11-30 22:53:17 +01:00

README.md

Easy Dhall Nix

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

Trial

You can 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 {}

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

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.