Skip to content

Commit

Permalink
texpresso/tectonic: Fix cargoHash
Browse files Browse the repository at this point in the history
Hash mismatch was caused by NixOS#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 NixOS#334648.
  • Loading branch information
wentasah committed Aug 15, 2024
1 parent a58bc8a commit 79744df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/tools/typesetting/tex/texpresso/tectonic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 79744df

Please sign in to comment.