summary refs log tree commit diff
path: root/pkgs/development/dhall-modules/default.nix
diff options
context:
space:
mode:
authorGabriel Gonzalez <Gabriel439@gmail.com>2020-02-11 22:02:53 -0800
committerGabriel Gonzalez <Gabriel439@gmail.com>2020-02-11 22:02:53 -0800
commit38f1d70c01a2421e7a838306f63d6dd9d603eb3f (patch)
tree4b8a2fdbfc066c18af73ca081cdb3964d7b3d50a /pkgs/development/dhall-modules/default.nix
parent50273a1e837cc381b34d788b4d7d384a7c5fff32 (diff)
downloadnixpkgs-38f1d70c01a2421e7a838306f63d6dd9d603eb3f.tar
nixpkgs-38f1d70c01a2421e7a838306f63d6dd9d603eb3f.tar.gz
nixpkgs-38f1d70c01a2421e7a838306f63d6dd9d603eb3f.tar.bz2
nixpkgs-38f1d70c01a2421e7a838306f63d6dd9d603eb3f.tar.lz
nixpkgs-38f1d70c01a2421e7a838306f63d6dd9d603eb3f.tar.xz
nixpkgs-38f1d70c01a2421e7a838306f63d6dd9d603eb3f.tar.zst
nixpkgs-38f1d70c01a2421e7a838306f63d6dd9d603eb3f.zip
Add Nixpkgs support for Dhall
One of the motivations for this change is the following Discourse
discussion:

https://discourse.dhall-lang.org/t/offline-use-of-prelude/137

Many users have requested Dhall support for "offline" packages
that can be fetched/built/installed using ordinary package
management tools (like Nix) instead of using Dhall's HTTP import system.
I will continue to use the term "offline" to mean Dhall package
builds that do not use Dhall's language support for HTTP imports (and
instead use the package manager's support for HTTP requests, such
as `pkgs.fetchFromGitHub`)

The goal of this change is to document what is the idiomatic way to
implement "offline" Dhall builds by implementing Nixpkgs support
for such builds.  That way when other package management tools ask
me how to package Dhall with their tools I can refer them to how it
is done in Nixpkgs.

This change contains a fully "offline" build for the largest Dhall
package in existence, known as "dhall-packages" (not to be confused
with `dhallPackages`, which is our Nix attribute set containing
Dhall packages).

The trick to implementing offline builds in Dhall is to take
advantage of Dhall's support for semantic integrity checks.  If an
HTTP import is protected by an integrity check and a cached build
product matches the integrity check then the HTTP import is never
resolved and the expression is instead fetched from cache.

By "installing" dependencies in a pre-seeded and isolated cache
we can replace remote HTTP imports with dependencies that have
been built and supplied by Nix instead.

The offline nature of the builds are enforced by compiling the
Haskell interpreter with the `-f-with-http` flag, which disables
the interpreter's support for HTTP imports.  If a user forgets
to supply a necessary dependency as a Nix build product then the
build fails informing them that HTTP imports are disabled.

By default, built packages are "binary distributions", containing
just a cache product and a Dhall expression which can be used to
resolve the corresponding cache product.

Users can also optionally enable a "source distribution" of a package
which already includes the equivalent fully-evaluated Dhall code (for
convenience), but this is disabled by default to keep `/nix/store`
utilization as compact as possible.
Diffstat (limited to 'pkgs/development/dhall-modules/default.nix')
-rw-r--r--pkgs/development/dhall-modules/default.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/pkgs/development/dhall-modules/default.nix b/pkgs/development/dhall-modules/default.nix
deleted file mode 100644
index b6632a86f31..00000000000
--- a/pkgs/development/dhall-modules/default.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ pkgs }:
-
-# TODO: add into the toplevel fixpoint instead of using rec
-rec {
-
-  prelude = prelude_3_0_0;
-  prelude_3_0_0 = pkgs.callPackage ./prelude/v3.nix {};
-
-}