From 23e40d8782072db57ddf6dc37de0c4ca415d383b Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Tue, 27 Aug 2024 15:50:33 +0100 Subject: [PATCH] tectonic.tests: fix the eval MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without the change the eval fails as: $ nix build --no-link -f. tectonic.tests error: … while evaluating the attribute 'biber-compatibility' … in the condition of the assert statement at pkgs/stdenv/generic/make-derivation.nix:540:1: 539| # Policy on acceptable hash types in nixpkgs 540| assert attrs ? outputHash -> ( | ^ 541| let algo = … in the right operand of the IMPL (->) operator at /home/slyfox/dev/git/nixpkgs-master/pkgs/stdenv/generic/make-derivation.nix:540:27: 539| # Policy on acceptable hash types in nixpkgs 540| assert attrs ? outputHash -> ( | ^ 541| let algo = (stack trace truncated; use '--show-trace' to show the full, detailed trace) error: attribute 'outputHashAlgo' missing at pkgs/tools/typesetting/tectonic/tests.nix:65:9: 64| inherit (emptyFile) 65| outputHashAlgo | ^ 66| outputHashMode --- pkgs/tools/typesetting/tectonic/tests.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/tools/typesetting/tectonic/tests.nix b/pkgs/tools/typesetting/tectonic/tests.nix index eac66f19599e..802e0812e8c8 100644 --- a/pkgs/tools/typesetting/tectonic/tests.nix +++ b/pkgs/tools/typesetting/tectonic/tests.nix @@ -62,7 +62,6 @@ let the `tectonic` derivation is updated. */ inherit (emptyFile) - outputHashAlgo outputHashMode outputHash ;