typst: 0.9.0 -> 0.10.0

This commit is contained in:
Pol Dellaiera 2023-12-04 17:15:02 +01:00
parent a7013edac9
commit a267977215
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA
3 changed files with 381 additions and 631 deletions

File diff suppressed because it is too large Load Diff

View File

@ -8,21 +8,19 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "typst"; pname = "typst";
version = "0.9.0"; version = "0.10.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "typst"; owner = "typst";
repo = "typst"; repo = "typst";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-LwRB/AQE8TZZyHEQ7kKB10itzEgYjg4R/k+YFqmutDc="; hash = "sha256-qiskc0G/ZdLRZjTicoKIOztRFem59TM4ki23Rl55y9s=";
}; };
cargoLock = { cargoLock = {
lockFile = ./Cargo.lock; lockFile = ./Cargo.lock;
outputHashes = { outputHashes = {
"iai-0.1.1" = "sha256-EdNzCPht5chg7uF9O8CtPWR/bzSYyfYIXNdLltqdlR0="; "iai-0.1.1" = "sha256-EdNzCPht5chg7uF9O8CtPWR/bzSYyfYIXNdLltqdlR0=";
"oxipng-8.0.0" = "sha256-KIbSsQEjwJ12DxYpBTUD1g9CqJqCfSAmnFcSTiGIoio=";
"self-replace-1.3.5" = "sha256-N57nmLHgxhVR1CDtkgjYwpo1ypdGyVpjJY7vzuncxDc=";
}; };
}; };
@ -45,12 +43,12 @@ rustPlatform.buildRustPackage rec {
--zsh crates/typst-cli/artifacts/_typst --zsh crates/typst-cli/artifacts/_typst
''; '';
meta = with lib; { meta = {
description = "A new markup-based typesetting system that is powerful and easy to learn";
homepage = "https://typst.app";
changelog = "https://github.com/typst/typst/releases/tag/${src.rev}"; changelog = "https://github.com/typst/typst/releases/tag/${src.rev}";
license = licenses.asl20; description = "A new markup-based typesetting system that is powerful and easy to learn";
maintainers = with maintainers; [ drupol figsoda kanashimia ]; homepage = "https://github.com/typst/typst";
license = lib.licenses.asl20;
mainProgram = "typst"; mainProgram = "typst";
maintainers = with lib.maintainers; [ drupol figsoda kanashimia ];
}; };
} }

View File

@ -14238,8 +14238,6 @@ with pkgs;
typos = callPackage ../development/tools/typos { }; typos = callPackage ../development/tools/typos { };
typst = callPackage ../tools/typesetting/typst { };
typstfmt = callPackage ../tools/typesetting/typstfmt { }; typstfmt = callPackage ../tools/typesetting/typstfmt { };
typst-live = callPackage ../tools/typesetting/typst-live { }; typst-live = callPackage ../tools/typesetting/typst-live { };