edge-runtime: 1.10.0 -> 1.14.0

authored by happysalada and committed by Yt bcbbfd86 b4cc3330

+10 -9
+4 -4
pkgs/development/web/edge-runtime/default.nix
··· 11 12 let 13 pname = "edge-runtime"; 14 - version = "1.10.0"; 15 in 16 rustPlatform.buildRustPackage { 17 inherit pname version; ··· 20 owner = "supabase"; 21 repo = pname; 22 rev = "v${version}"; 23 - hash = "sha256-AWdgqL7Io4v3Z4XNS5JDDGuUeSqsNpF/NpJQ7h5oJZs="; 24 fetchSubmodules = true; 25 }; 26 27 - cargoHash = "sha256-AIwMoqbnCl4DFX0gSGblkV8DgtruwXPw8ngHeBDD6Dw="; 28 29 nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ]; 30 31 buildInputs = lib.optionals stdenv.isLinux [ openssl ] 32 - ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security CoreFoundation ]); 33 34 # The v8 package will try to download a `librusty_v8.a` release at build time to our read-only filesystem 35 # To avoid this we pre-download the file and export it via RUSTY_V8_ARCHIVE
··· 11 12 let 13 pname = "edge-runtime"; 14 + version = "1.14.0"; 15 in 16 rustPlatform.buildRustPackage { 17 inherit pname version; ··· 20 owner = "supabase"; 21 repo = pname; 22 rev = "v${version}"; 23 + hash = "sha256-63XStzO4Jt6ObWuzcBf2QwCIWsStXvhQ0XaJabELhWg="; 24 fetchSubmodules = true; 25 }; 26 27 + cargoHash = "sha256-JwwdvvpqgSbl0Xyb5pQ5hzZRrrCnDSjwV+ikdO2pXCk="; 28 29 nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ]; 30 31 buildInputs = lib.optionals stdenv.isLinux [ openssl ] 32 + ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security CoreFoundation SystemConfiguration ]); 33 34 # The v8 package will try to download a `librusty_v8.a` release at build time to our read-only filesystem 35 # To avoid this we pre-download the file and export it via RUSTY_V8_ARCHIVE
+6 -5
pkgs/development/web/edge-runtime/librusty_v8.nix
··· 1 { rust, stdenv, fetchurl }: 2 3 let ··· 10 }; 11 in 12 fetch_librusty_v8 { 13 - version = "0.68.0"; 14 shas = { 15 - x86_64-linux = "sha256-yq7YPD2TM6Uw0EvCqIsZ/lbE1RLgIg7a42qDVrr5fX4="; 16 - aarch64-linux = "sha256-uZFm3hAeyEUUXqRJFLM3OBVfglH3AecjFKVgeJZu3L0="; 17 - x86_64-darwin = "sha256-YkxoggK0I4rT/KNJ30StDPLUc02Mdjwal3JH+s/YTQo="; 18 - aarch64-darwin = "sha256-aXE7W3sSzbhvC661BYTTHyHlihmVVtFSv85nSjGOLkU="; 19 }; 20 }
··· 1 + # auto-generated file -- DO NOT EDIT! 2 { rust, stdenv, fetchurl }: 3 4 let ··· 11 }; 12 in 13 fetch_librusty_v8 { 14 + version = "0.74.3"; 15 shas = { 16 + x86_64-linux = "sha256-8pa8nqA6rbOSBVnp2Q8/IQqh/rfYQU57hMgwU9+iz4A="; 17 + aarch64-linux = "sha256-3kXOV8rlCNbNBdXgOtd3S94qO+JIKyOByA4WGX+XVP0="; 18 + x86_64-darwin = "sha256-iBBVKZiSoo08YEQ8J/Rt1/5b7a+2xjtuS6QL/Wod5nQ="; 19 + aarch64-darwin = "sha256-Djnuc3l/jQKvBf1aej8LG5Ot2wPT0m5Zo1B24l1UHsM="; 20 }; 21 }