Gaetan Lepage 2024-09-30 08:30:12 +02:00
parent 438f280457
commit 3b209662e0
3 changed files with 532 additions and 341 deletions

View File

@ -11,7 +11,7 @@ vscode-utils.buildVscodeMarketplaceExtension {
name = "tinymist";
publisher = "myriad-dreamin";
inherit (tinymist) version;
hash = "sha256-m5wq1F2sjiBacdyTFtLoqrJ/B6nwoaUjiNbc+zfpJoU=";
hash = "sha256-XkpoSf2UO3OoEMMpXBMkY1peQPR/4QoQ4LrY81IsHT0=";
};
nativeBuildInputs = [

File diff suppressed because it is too large Load Diff

View File

@ -18,13 +18,13 @@ rustPlatform.buildRustPackage rec {
pname = "tinymist";
# Please update the corresponding vscode extension when updating
# this derivation.
version = "0.11.20";
version = "0.11.22";
src = fetchFromGitHub {
owner = "Myriad-Dreamin";
repo = "tinymist";
rev = "refs/tags/v${version}";
hash = "sha256-wmXFMLLMjMFRuWX9AFk+gJz/4t0+DiOBrvcTx+LQ+tI=";
hash = "sha256-CQt6ptVwx86rYmXSgQ962fJupRQidLRFXU6yYkWasR0=";
};
cargoLock = {
@ -53,9 +53,15 @@ rustPlatform.buildRustPackage rec {
checkFlags = [
"--skip=e2e"
# Fails because of missing `creation_timestamp` field
# https://github.com/NixOS/nixpkgs/pull/328756#issuecomment-2241322796
"--skip=test_config_update"
# Require internet access
"--skip=docs::tests::cetz"
"--skip=docs::tests::tidy"
"--skip=docs::tests::touying"
];
passthru = {