···11+# not a stable interface, do not reference outside the windmill package but make a copy if you need
22+{
33+ lib,
44+ stdenv,
55+ fetchurl,
66+}:
77+88+{
99+ fetchLibrustyV8 =
1010+ args:
1111+ fetchurl {
1212+ name = "librusty_v8-${args.version}";
1313+ url = "https://github.com/denoland/rusty_v8/releases/download/v${args.version}/librusty_v8_release_${stdenv.hostPlatform.rust.rustcTarget}.a.gz";
1414+ sha256 = args.shas.${stdenv.hostPlatform.system};
1515+ meta = {
1616+ inherit (args) version;
1717+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
1818+ };
1919+ };
2020+}
+11
pkgs/by-name/wi/windmill/librusty_v8.nix
···11+# auto-generated file -- DO NOT EDIT!
22+{ fetchLibrustyV8 }:
33+44+fetchLibrustyV8 {
55+ version = "0.106.0";
66+ shas = {
77+ # NOTE; Follows supported platforms of package (see meta.platforms attribute)!
88+ x86_64-linux = "18r0bdsl5xpf0x9q6kkylgq52azqmqg9d6danya9znb94by2bdlc";
99+ aarch64-linux = "175p9ly6fvfy04vhx2rif0riv8drxlq4yz5p42d0yp491qr022dq";
1010+ };
1111+}