From b6e4a72e837aee46a59a76e1a3edcf10fa6eebb1 Mon Sep 17 00:00:00 2001 From: Jost Alemann Date: Fri, 12 Dec 2025 13:13:04 +0100 Subject: [PATCH] typst: 0.14.1 -> 0.14.2 Changelog: https://github.com/typst/typst/blob/main/docs/changelog/0.14.2.md Diff: https://github.com/typst/typst/compare/v0.14.1...v0.14.2 --- pkgs/by-name/ty/typst/package.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/ty/typst/package.nix b/pkgs/by-name/ty/typst/package.nix index 957597469eba..945bed2da8d5 100644 --- a/pkgs/by-name/ty/typst/package.nix +++ b/pkgs/by-name/ty/typst/package.nix @@ -12,13 +12,13 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "typst"; - version = "0.14.1"; + version = "0.14.2"; src = fetchFromGitHub { owner = "typst"; repo = "typst"; tag = "v${finalAttrs.version}"; - hash = "sha256-GAHG0TF+6rdgVolJLdFw7uVz/UBLsnibcaEvInRf7Jk="; + hash = "sha256-EXcmL/KNj9vCChCs6RH1J/+aetYcXnEdGEhvVzGNNZA="; leaveDotGit = true; postFetch = '' cd $out @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage (finalAttrs: { ''; }; - cargoHash = "sha256-UQAKvBlT+c5eUNAmN2lzbjZG1kBrE88CTx2t1F4tprQ="; + cargoHash = "sha256-HDu7/kgpBgUe/CrHm17BkNlg3DYlegTevgAeBCXp6so="; nativeBuildInputs = [ installShellFiles @@ -64,9 +64,6 @@ rustPlatform.buildRustPackage (finalAttrs: { ''; cargoTestFlags = [ "--workspace" ]; - # The following test fails when using `release` - # ❌ issue-7257-break-tags-show-par-none (tests/suite/pdftags/break.typ:29) not emitted - checkType = "debug"; doInstallCheck = true; nativeInstallCheckInputs = [ versionCheckHook ];