lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 20 lines 755 B view raw
1# auto-generated file -- DO NOT EDIT! 2{ stdenv, fetchurl }: 3 4let 5 fetch_librusty_v8 = args: fetchurl { 6 name = "librusty_v8-${args.version}"; 7 url = "https://github.com/denoland/rusty_v8/releases/download/v${args.version}/librusty_v8_release_${stdenv.hostPlatform.rust.rustcTarget}.a"; 8 sha256 = args.shas.${stdenv.hostPlatform.system}; 9 meta = { inherit (args) version; }; 10 }; 11in 12fetch_librusty_v8 { 13 version = "0.74.3"; 14 shas = { 15 x86_64-linux = "sha256-8pa8nqA6rbOSBVnp2Q8/IQqh/rfYQU57hMgwU9+iz4A="; 16 aarch64-linux = "sha256-3kXOV8rlCNbNBdXgOtd3S94qO+JIKyOByA4WGX+XVP0="; 17 x86_64-darwin = "sha256-iBBVKZiSoo08YEQ8J/Rt1/5b7a+2xjtuS6QL/Wod5nQ="; 18 aarch64-darwin = "sha256-Djnuc3l/jQKvBf1aej8LG5Ot2wPT0m5Zo1B24l1UHsM="; 19 }; 20}