Go to file
Justin Woo 9e3b8744db
Merge pull request #1 from justinwoo/bash-completions
bash completions for dhall executables
2018-12-12 15:56:27 +02:00
.travis.yml add travis config 2018-12-08 14:43:42 +02:00
default.nix update exports and test 2018-12-08 14:57:48 +02:00
dhall-bash-simple.nix bash completions for dhall executables 2018-12-12 15:53:19 +02:00
dhall-json-simple.nix bash completions for dhall executables 2018-12-12 15:53:19 +02:00
dhall-simple.nix bash completions for dhall executables 2018-12-12 15:53:19 +02:00
dhall-text-simple.nix bash completions for dhall executables 2018-12-12 15:53:19 +02:00
LICENSE license 2018-12-08 17:36:09 +02:00
Makefile update exports and test 2018-12-08 14:57:48 +02:00
README.md Update README.md 2018-12-09 14:14:07 +02:00
shell.nix update tests 2018-12-08 15:07:31 +02:00
test.bash init 2018-12-08 14:37:12 +02:00

Easy Dhall Nix

Build Status

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.