Skip to content

Commit 06db462

Browse files
authored
deno: 2.3.6 -> 2.3.7 (#419511)
2 parents 0bba24f + 366b94f commit 06db462

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

pkgs/by-name/de/deno/package.nix

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
lib,
44
callPackage,
55
fetchFromGitHub,
6-
fetchpatch,
76
rustPlatform,
87
cmake,
98
yq,
@@ -30,26 +29,18 @@ let
3029
in
3130
rustPlatform.buildRustPackage (finalAttrs: {
3231
pname = "deno";
33-
version = "2.3.6";
32+
version = "2.3.7";
3433

3534
src = fetchFromGitHub {
3635
owner = "denoland";
3736
repo = "deno";
3837
tag = "v${finalAttrs.version}";
3938
fetchSubmodules = true; # required for tests
40-
hash = "sha256-l3cWnv2cEmoeecYj38eMIlgqlRjDbtQuc6Q3DmOJoqE=";
39+
hash = "sha256-xrGEEtYOjQmKniDsPnWJSbiTRG0uBFqRbUbrvgrMyHg=";
4140
};
4241

4342
useFetchCargoVendor = true;
44-
cargoHash = "sha256-alvn+d7XTYrw8KXw+k+++J3CsBwAUbQQlh24/EOEzwY=";
45-
cargoPatches = [
46-
(fetchpatch {
47-
name = "fix-sigsegv-on-x86_64-unknown-linux-gnu-targets";
48-
url = "https://github.com/denoland/deno/commit/400a9565c335b51d78c8909f4dbf1dbd4fb5e5d8.patch";
49-
hash = "sha256-dTIw7P6sB6Esf+lSe/gc3cX54GkzLWF5X55yxP/QYoo=";
50-
includes = [ "cli/Cargo.toml" ];
51-
})
52-
];
43+
cargoHash = "sha256-1RhVg5fjzA9zKzpkjOyV1KITlTtW41VVqc2Cbe4pfdY=";
5344

5445
patches = [
5546
./tests-replace-hardcoded-paths.patch

pkgs/by-name/de/deno/update/src.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface Replacer {
1616
const log = logger("src");
1717

1818
const prefetchHash = (nixpkgs: string, version: string) =>
19-
run("nurl", ["https://github.com/denoland/deno", version, "-H", "-n", nixpkgs]);
19+
run("nurl", ["https://github.com/denoland/deno", version, "-H", "-n", nixpkgs, "-S"]);
2020
const prefetchCargoHash = (nixpkgs: string) =>
2121
run(
2222
"nurl",

0 commit comments

Comments
 (0)