Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
14 lines
603 B
Nix
14 lines
603 B
Nix
{ dhallPackages }:
|
|
|
|
# This file tests that dhallPackages.buildDhallUrl is able to successfully
|
|
# build a Nix Dhall package for a given remote Dhall import.
|
|
#
|
|
# TODO: It would be nice to extend this test to make sure that the resulting
|
|
# Nix Dhall package is has the expected contents.
|
|
|
|
dhallPackages.buildDhallUrl {
|
|
url = "https://raw.githubusercontent.com/cdepillabout/example-dhall-nix/e6a675c72ecd4dd23d254a02aea8181fe875747f/mydhallfile.dhall";
|
|
hash = "sha256-434x+QjHRzuprBdw0h6wmwB1Zj6yZqQb533me8XdO4c=";
|
|
dhallHash = "sha256-434x+QjHRzuprBdw0h6wmwB1Zj6yZqQb533me8XdO4c=";
|
|
source = true;
|
|
}
|