Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
921 B
Nix
33 lines
921 B
Nix
{
|
|
dhall-nixpkgs,
|
|
lib,
|
|
stdenv,
|
|
}:
|
|
|
|
# This function calls `dhall-to-nixpkgs directory --fixed-output-derivations`
|
|
# within a Nix derivation.
|
|
#
|
|
# This is possible because
|
|
# `dhall-to-nixpkgs directory --fixed-output-derivations` will turn remote
|
|
# Dhall imports protected with Dhall integrity checksinto fixed-output
|
|
# derivations (with the `buildDhallUrl` function), so no unrestricted network
|
|
# access is necessary.
|
|
lib.makePackageOverridable (
|
|
{
|
|
src,
|
|
# The file to import, relative to the root directory
|
|
file ? "package.dhall",
|
|
# Set to `true` to generate documentation for the package
|
|
document ? false,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
name = "dhall-directory-package.nix";
|
|
|
|
buildCommand = ''
|
|
dhall-to-nixpkgs directory --fixed-output-derivations --file "${file}" "${src}" ${lib.optionalString document "--document"} > $out
|
|
'';
|
|
|
|
nativeBuildInputs = [ dhall-nixpkgs ];
|
|
}
|
|
)
|