Go to file
Justin Woo 4824436328
Merge pull request #11 from Profpatsch/master
add dhall-to-nix
2019-09-24 11:03:45 -04:00
.github/workflows use github actions workflow 2019-08-18 15:55:18 +03:00
LICENSE license 2018-12-08 17:36:09 +02:00
README.md use github actions workflow 2019-08-18 15:55:18 +03:00
default.nix add dhall-to-nix 2019-09-24 16:22:05 +02:00
dhall-bash-simple.nix upgrade versions 2019-09-12 16:50:36 +03:00
dhall-json-simple.nix upgrade versions 2019-09-12 16:50:36 +03:00
dhall-nix-simple.nix add dhall-to-nix 2019-09-24 16:22:05 +02:00
dhall-simple.nix upgrade versions 2019-09-12 16:50:36 +03:00
shell.nix upgrade versions 2019-09-12 16:50:36 +03:00
test.bash add dhall-to-nix 2019-09-24 16:22:05 +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.