···1+# not a stable interface, do not reference outside the windmill package but make a copy if you need
2+{
3+ lib,
4+ stdenv,
5+ fetchurl,
6+}:
7+8+{
9+ fetchLibrustyV8 =
10+ args:
11+ fetchurl {
12+ name = "librusty_v8-${args.version}";
13+ url = "https://github.com/denoland/rusty_v8/releases/download/v${args.version}/librusty_v8_release_${stdenv.hostPlatform.rust.rustcTarget}.a.gz";
14+ sha256 = args.shas.${stdenv.hostPlatform.system};
15+ meta = {
16+ inherit (args) version;
17+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
18+ };
19+ };
20+}
+11
pkgs/by-name/wi/windmill/librusty_v8.nix
···00000000000
···1+# auto-generated file -- DO NOT EDIT!
2+{ fetchLibrustyV8 }:
3+4+fetchLibrustyV8 {
5+ version = "0.106.0";
6+ shas = {
7+ # NOTE; Follows supported platforms of package (see meta.platforms attribute)!
8+ x86_64-linux = "18r0bdsl5xpf0x9q6kkylgq52azqmqg9d6danya9znb94by2bdlc";
9+ aarch64-linux = "175p9ly6fvfy04vhx2rif0riv8drxlq4yz5p42d0yp491qr022dq";
10+ };
11+}