From afc087222726116fa5773eedf95c115711c1f363 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Wed, 18 Feb 2026 15:52:38 +0000 Subject: [PATCH] deno: 2.6.9 -> 2.6.10 Diff: https://github.com/denoland/deno/compare/v2.6.9...v2.6.10 Changelog: https://github.com/denoland/deno/releases/tag/v2.6.10 --- pkgs/by-name/de/deno/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/de/deno/package.nix b/pkgs/by-name/de/deno/package.nix index 09adec27a555..6a5c82eb3fb7 100644 --- a/pkgs/by-name/de/deno/package.nix +++ b/pkgs/by-name/de/deno/package.nix @@ -30,17 +30,17 @@ let in rustPlatform.buildRustPackage (finalAttrs: { pname = "deno"; - version = "2.6.9"; + version = "2.6.10"; src = fetchFromGitHub { owner = "denoland"; repo = "deno"; tag = "v${finalAttrs.version}"; fetchSubmodules = true; # required for tests - hash = "sha256-FSm3X+1cTQURF9V/cCYvjJmPx9udcE/s5J6oRhcDWWU="; + hash = "sha256-youaF9YERkGUwN0sg6IzV8OAyahSDbFt0psn/p4iOVY="; }; - cargoHash = "sha256-DgotLiq4xzVH8dhOUA4Fxg0NW0DRnHVCJlxQYVQDaeE="; + cargoHash = "sha256-goaqxj8Y5Gqo4et4AkyZ3Uv74Q3M3V0VExUA/AMYNMI="; patches = [ ./patches/0002-tests-replace-hardcoded-paths.patch @@ -130,7 +130,7 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoTestFlags = [ "--lib" # unit tests - "--test=integration_tests" + "--test=integration_test" # Test targets not included here: # - node_compat: there are tons of network access in them and it's not trivial to skip test cases. # - specs: this target uses a custom test harness that doesn't implement the --skip flag.