From 3de2aed6e1b5a3a5a0c2c4f2f4fca92bb6467117 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Fri, 16 Aug 2024 04:16:29 +0200 Subject: [PATCH] texpresso/tectonic: Fix cargoHash (#334797) Hash mismatch was caused by #333143. The build error message contains: Validating consistency between /build/source/Cargo.lock and /build/texpresso-tonic-0.15.0-vendor.tar.gz/Cargo.lock 2372d2371 < "time", 2707c2706 < version = "0.3.36" --- > version = "0.3.34" ... ERROR: cargoHash or cargoSha256 is out of date Fixes #334648. --- pkgs/tools/typesetting/tex/texpresso/tectonic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/typesetting/tex/texpresso/tectonic.nix b/pkgs/tools/typesetting/tex/texpresso/tectonic.nix index 838a51324a099..1848bf26b5b5d 100644 --- a/pkgs/tools/typesetting/tex/texpresso/tectonic.nix +++ b/pkgs/tools/typesetting/tex/texpresso/tectonic.nix @@ -10,7 +10,7 @@ tectonic-unwrapped.override (old: { hash = "sha256-ap7fEPHsASAphIQkjcvk1CC7egTdxaUh7IpSS5os4W8="; fetchSubmodules = true; }; - cargoHash = "sha256-62sxvPIiY3len1wsl7QelK3u4ekftIjcTqoIGZMYb5A="; + cargoHash = "sha256-g4iBo8r+QUOcFJ3CI2+HOi4VHxU7jKnIWlJcKx/6r5E="; # binary has a different name, bundled tests won't work doCheck = false; meta.mainProgram = "texpresso-tonic";