Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub f303d4de 01f8e687

+5479 -2515
+34
doc/languages-frameworks/cuda.section.md
··· 1 + # CUDA {#cuda} 2 + 3 + CUDA-only packages are stored in the `cudaPackages` packages set. This set 4 + includes the `cudatoolkit`, portions of the toolkit in separate derivations, 5 + `cudnn`, `cutensor` and `nccl`. 6 + 7 + A package set is available for each CUDA version, so for example 8 + `cudaPackages_11_6`. Within each set is a matching version of the above listed 9 + packages. Additionally, other versions of the packages that are packaged and 10 + compatible are available as well. For example, there can be a 11 + `cudaPackages.cudnn_8_3_2` package. 12 + 13 + To use one or more CUDA packages in an expression, give the expression a `cudaPackages` parameter, and in case CUDA is optional 14 + ```nix 15 + cudaSupport ? false 16 + cudaPackages ? {} 17 + ``` 18 + 19 + When using `callPackage`, you can choose to pass in a different variant, e.g. 20 + when a different version of the toolkit suffices 21 + ```nix 22 + mypkg = callPackage { cudaPackages = cudaPackages_11_5; } 23 + ``` 24 + 25 + If another version of say `cudnn` or `cutensor` is needed, you can override the 26 + package set to make it the default. This guarantees you get a consistent package 27 + set. 28 + ```nix 29 + mypkg = let 30 + cudaPackages = cudaPackages_11_5.overrideScope' (final: prev { 31 + cudnn = prev.cudnn_8_3_2; 32 + }}); 33 + in callPackage { inherit cudaPackages; }; 34 + ```
+1
doc/languages-frameworks/index.xml
··· 11 11 <xi:include href="bower.section.xml" /> 12 12 <xi:include href="coq.section.xml" /> 13 13 <xi:include href="crystal.section.xml" /> 14 + <xi:include href="cuda.section.xml" /> 14 15 <xi:include href="dhall.section.xml" /> 15 16 <xi:include href="dotnet.section.xml" /> 16 17 <xi:include href="emscripten.section.xml" />
+1 -1
nixos/modules/services/misc/ethminer.nix
··· 85 85 config = mkIf cfg.enable { 86 86 87 87 systemd.services.ethminer = { 88 - path = optional (cfg.toolkit == "cuda") [ pkgs.cudatoolkit ]; 88 + path = optional (cfg.toolkit == "cuda") [ pkgs.cudaPackages.cudatoolkit ]; 89 89 description = "ethminer ethereum mining service"; 90 90 wantedBy = [ "multi-user.target" ]; 91 91 after = [ "network.target" ];
+1 -1
pkgs/applications/emulators/retroarch/0001-Disable-menu_show_core_updater.patch pkgs/applications/emulators/retroarch/disable-menu_show_core_updater.patch
··· 1 1 From 546b343294209abbb193883ab76b679b7f99c6d3 Mon Sep 17 00:00:00 2001 2 2 From: Thiago Kenji Okada <thiagokokada@gmail.com> 3 3 Date: Sat, 20 Nov 2021 16:03:50 -0300 4 - Subject: [PATCH 1/2] Disable "menu_show_core_updater" 4 + Subject: [PATCH] Disable "menu_show_core_updater" 5 5 6 6 --- 7 7 retroarch.cfg | 2 +-
+21 -17
pkgs/applications/emulators/retroarch/0002-Use-fixed-paths-on-libretro_info_path.patch pkgs/applications/emulators/retroarch/use-fixed-paths-on-libretro_info_path.patch
··· 1 - From 6788718299e1aba3ff8b31cd6ef012e8d3643bd3 Mon Sep 17 00:00:00 2001 1 + From 7bf021529ff15ca2580b15b3c0bfdc137d5beffe Mon Sep 17 00:00:00 2001 2 2 From: Thiago Kenji Okada <thiagokokada@gmail.com> 3 - Date: Sat, 20 Nov 2021 15:59:23 -0300 4 - Subject: [PATCH 2/2] Use fixed paths on "libretro_info_path" 3 + Date: Wed, 9 Mar 2022 18:24:15 +0000 4 + Subject: [PATCH] Use fixed paths on "libretro_info_path" 5 5 6 6 This patch sets "libretro_info_path" to `handle = false`, so instead of 7 7 using the values from `retroarch.cfg`, it will always use the default. ··· 10 10 `@libretro_info_path` string, so we can substitute it with the full path 11 11 to it during build. 12 12 --- 13 - configuration.c | 2 +- 14 - frontend/drivers/platform_darwin.m | 9 ++------- 15 - frontend/drivers/platform_unix.c | 8 ++++---- 16 - 3 files changed, 7 insertions(+), 12 deletions(-) 13 + configuration.c | 2 +- 14 + frontend/drivers/platform_darwin.m | 9 ++------- 15 + frontend/drivers/platform_unix.c | 12 ++++-------- 16 + 3 files changed, 7 insertions(+), 16 deletions(-) 17 17 18 18 diff --git a/configuration.c b/configuration.c 19 - index e6a3841324..afb1d6e2ce 100644 19 + index 7e346ff6e9..c4b2100203 100644 20 20 --- a/configuration.c 21 21 +++ b/configuration.c 22 - @@ -1456,7 +1456,7 @@ static struct config_path_setting *populate_settings_path( 22 + @@ -1466,7 +1466,7 @@ static struct config_path_setting *populate_settings_path( 23 23 SETTING_PATH("core_options_path", 24 24 settings->paths.path_core_options, false, NULL, true); 25 25 SETTING_PATH("libretro_info_path", ··· 29 29 settings->paths.path_content_database, false, NULL, true); 30 30 SETTING_PATH("cheat_database_path", 31 31 diff --git a/frontend/drivers/platform_darwin.m b/frontend/drivers/platform_darwin.m 32 - index f922e50c55..52732f65ae 100644 32 + index 6c5fdca400..552dcb7e2b 100644 33 33 --- a/frontend/drivers/platform_darwin.m 34 34 +++ b/frontend/drivers/platform_darwin.m 35 - @@ -383,14 +383,9 @@ static void frontend_darwin_get_env(int *argc, char *argv[], 35 + @@ -388,14 +388,9 @@ static void frontend_darwin_get_env(int *argc, char *argv[], 36 36 home_dir_buf, "shaders_glsl", 37 37 sizeof(g_defaults.dirs[DEFAULT_DIR_SHADER])); 38 38 #endif ··· 50 50 #ifdef HAVE_VIDEO_LAYOUT 51 51 fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_VIDEO_LAYOUT], home_dir_buf, "layouts", sizeof(g_defaults.dirs[DEFAULT_DIR_VIDEO_LAYOUT])); 52 52 diff --git a/frontend/drivers/platform_unix.c b/frontend/drivers/platform_unix.c 53 - index 722e1c595c..d87e01cf12 100644 53 + index b3b5dad173..7f1561e523 100644 54 54 --- a/frontend/drivers/platform_unix.c 55 55 +++ b/frontend/drivers/platform_unix.c 56 - @@ -1815,8 +1815,8 @@ static void frontend_unix_get_env(int *argc, 56 + @@ -1820,12 +1820,8 @@ static void frontend_unix_get_env(int *argc, 57 57 strcpy_literal(base_path, "retroarch"); 58 58 #endif 59 59 60 - - fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE], base_path, 61 - - "cores", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE])); 60 + - if (!string_is_empty(libretro_directory)) 61 + - strlcpy(g_defaults.dirs[DEFAULT_DIR_CORE], libretro_directory, 62 + - sizeof(g_defaults.dirs[DEFAULT_DIR_CORE])); 63 + - else 64 + - fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE], base_path, 65 + - "cores", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE])); 62 66 + fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE], "@libretro_directory@", 63 67 + "", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE])); 64 68 #if defined(DINGUX) 65 69 /* On platforms that require manual core installation/ 66 70 * removal, placing core info files in the same directory 67 - @@ -1825,8 +1825,8 @@ static void frontend_unix_get_env(int *argc, 71 + @@ -1834,8 +1830,8 @@ static void frontend_unix_get_env(int *argc, 68 72 fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE_INFO], base_path, 69 73 "core_info", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE_INFO])); 70 74 #else ··· 76 80 fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_AUTOCONFIG], base_path, 77 81 "autoconfig", sizeof(g_defaults.dirs[DEFAULT_DIR_AUTOCONFIG])); 78 82 -- 79 - 2.31.1 83 + 2.32.0 80 84
+15 -43
pkgs/applications/emulators/retroarch/cores.nix
··· 1 1 { lib 2 2 , stdenv 3 - , SDL 4 3 , alsa-lib 5 4 , boost 6 - , buildPackages 7 5 , bzip2 8 6 , cmake 9 7 , curl 10 8 , fetchFromGitHub 11 9 , ffmpeg 12 10 , fluidsynth 11 + , gcc10Stdenv 13 12 , gettext 14 13 , hexdump 15 14 , hidapi 16 15 , icu 17 16 , libaio 17 + , libevdev 18 18 , libGL 19 19 , libGLU 20 - , libevdev 21 20 , libjpeg 22 21 , libpcap 23 22 , libpng ··· 32 31 , portaudio 33 32 , python3 34 33 , retroarch 34 + , SDL 35 35 , sfml 36 36 , snappy 37 37 , udev ··· 53 53 , description 54 54 # Check https://github.com/libretro/libretro-core-info for license information 55 55 , license 56 + , stdenvOverride ? stdenv 56 57 , src ? (getCoreSrc core) 57 58 , broken ? false 58 - , version ? "unstable-2022-01-21" 59 + , version ? "unstable-2022-04-08" 59 60 , platforms ? retroarch.meta.platforms 60 61 # The resulting core file is based on core name 61 62 # Setting `normalizeCore` to `true` will convert `-` to `_` on the core filename 62 63 , normalizeCore ? true 63 64 , ... 64 65 }@args: 65 - stdenv.mkDerivation ( 66 + stdenvOverride.mkDerivation ( 66 67 let 68 + inherit (stdenvOverride) hostPlatform; 67 69 d2u = if normalizeCore then (lib.replaceChars [ "-" ] [ "_" ]) else (x: x); 68 70 in 69 71 (rec { ··· 79 81 linux = "unix"; 80 82 darwin = "osx"; 81 83 windows = "win"; 82 - }.${stdenv.hostPlatform.parsed.kernel.name} or stdenv.hostPlatform.parsed.kernel.name}" 84 + }.${hostPlatform.parsed.kernel.name} or hostPlatform.parsed.kernel.name}" 83 85 "ARCH=${{ 84 86 armv7l = "arm"; 85 87 armv6l = "arm"; 86 88 i686 = "x86"; 87 - }.${stdenv.hostPlatform.parsed.cpu.name} or stdenv.hostPlatform.parsed.cpu.name}" 89 + }.${hostPlatform.parsed.cpu.name} or hostPlatform.parsed.cpu.name}" 88 90 ] ++ (args.makeFlags or [ ]); 89 91 90 92 coreDir = "${placeholder "out"}/lib/retroarch/cores"; ··· 94 96 95 97 mkdir -p $out/bin 96 98 mkdir -p $coreDir 97 - mv ${d2u args.core}_libretro${stdenv.hostPlatform.extensions.sharedLibrary} $coreDir 99 + mv ${d2u args.core}_libretro${hostPlatform.extensions.sharedLibrary} $coreDir 98 100 makeWrapper ${retroarch}/bin/retroarch $out/bin/retroarch-${core} \ 99 - --add-flags "-L $coreDir/${d2u core}_libretro${stdenv.hostPlatform.extensions.sharedLibrary} $@" 101 + --add-flags "-L $coreDir/${d2u core}_libretro${hostPlatform.extensions.sharedLibrary} $@" 100 102 101 103 runHook postInstall 102 104 ''; ··· 298 300 citra = mkLibRetroCore { 299 301 core = "citra"; 300 302 description = "Port of Citra to libretro"; 301 - license = lib.licenses.gpl2Plus; 302 - extraNativeBuildInputs = [ cmake pkg-config ]; 303 - extraBuildInputs = [ libGLU libGL boost ]; 304 - makefile = "Makefile"; 305 - cmakeFlags = [ 306 - "-DENABLE_LIBRETRO=ON" 307 - "-DENABLE_QT=OFF" 308 - "-DENABLE_SDL2=OFF" 309 - "-DENABLE_WEB_SERVICE=OFF" 310 - "-DENABLE_DISCORD_PRESENCE=OFF" 311 - ]; 312 - preConfigure = "sed -e '77d' -i externals/cmake-modules/GetGitRevisionDescription.cmake"; 313 - postBuild = "cd src/citra_libretro"; 314 - }; 315 - 316 - citra-canary = mkLibRetroCore { 317 - core = "citra-canary"; 318 - description = "Port of Citra Canary/Experimental to libretro"; 303 + stdenvOverride = gcc10Stdenv; 319 304 license = lib.licenses.gpl2Plus; 320 - extraNativeBuildInputs = [ cmake pkg-config ]; 321 - extraBuildInputs = [ libGLU libGL boost ]; 305 + extraBuildInputs = [ libGLU libGL boost ffmpeg nasm ]; 322 306 makefile = "Makefile"; 323 - cmakeFlags = [ 324 - "-DENABLE_LIBRETRO=ON" 325 - "-DENABLE_QT=OFF" 326 - "-DENABLE_SDL2=OFF" 327 - "-DENABLE_WEB_SERVICE=OFF" 328 - "-DENABLE_DISCORD_PRESENCE=OFF" 329 - ]; 330 - preConfigure = "sed -e '77d' -i externals/cmake-modules/GetGitRevisionDescription.cmake"; 331 - postBuild = "cd src/citra_libretro"; 307 + makeFlags = [ "HAVE_FFMPEG_STATIC=0" ]; 332 308 }; 333 309 334 310 desmume = mkLibRetroCore { ··· 476 452 description = "Port of Hatari to libretro"; 477 453 license = lib.licenses.gpl2Only; 478 454 extraBuildInputs = [ SDL zlib ]; 479 - extraNativeBuildInputs = [ cmake which ]; 480 - dontUseCmakeConfigure = true; 455 + extraNativeBuildInputs = [ which ]; 481 456 dontConfigure = true; 482 457 makeFlags = [ "EXTERNAL_ZLIB=1" ]; 483 - depsBuildBuild = [ buildPackages.stdenv.cc ]; 484 458 }; 485 459 486 460 mame = mkLibRetroCore { ··· 488 462 description = "Port of MAME to libretro"; 489 463 license = with lib.licenses; [ bsd3 gpl2Plus ]; 490 464 extraBuildInputs = [ alsa-lib libGLU libGL portaudio python3 xorg.libX11 ]; 491 - makefile = "Makefile.libretro"; 492 465 }; 493 466 494 467 mame2000 = mkLibRetroCore { ··· 619 592 src = getCoreSrc core; 620 593 description = "Neko Project II kai libretro port"; 621 594 license = lib.licenses.mit; 622 - makefile = "Makefile.libretro"; 623 595 makeFlags = [ 624 596 # See https://github.com/AZO234/NP2kai/tags 625 597 "NP2KAI_VERSION=rev.22"
+25 -8
pkgs/applications/emulators/retroarch/default.nix
··· 35 35 }: 36 36 37 37 let 38 - version = "1.10.0"; 38 + version = "1.10.2"; 39 39 libretroCoreInfo = fetchFromGitHub { 40 40 owner = "libretro"; 41 41 repo = "libretro-core-info"; 42 - sha256 = "sha256-3j7fvcfbgyk71MmbUUKYi+/0cpQFNbYXO+DMDUjDqkQ="; 42 + sha256 = "sha256-XOSIVH3BSwAFKUeRvyYc2OXDa+TLjoKVGl+b8fgnvtY="; 43 43 rev = "v${version}"; 44 44 }; 45 45 runtimeLibs = lib.optional withVulkan vulkan-loader ··· 52 52 src = fetchFromGitHub { 53 53 owner = "libretro"; 54 54 repo = "RetroArch"; 55 - sha256 = "sha256-bpTSzODVRKRs1OW6JafjbU3e/AqdQeGzWcg1lb9SIyo="; 55 + sha256 = "sha256-fMsHMQiEoXeFKITxeEyRH829z5SCf8p0Hxq6ww1p3z4="; 56 56 rev = "v${version}"; 57 57 }; 58 58 59 59 patches = [ 60 - ./0001-Disable-menu_show_core_updater.patch 61 - ./0002-Use-fixed-paths-on-libretro_info_path.patch 60 + ./disable-menu_show_core_updater.patch 61 + ./use-fixed-paths-on-libretro_info_path.patch 62 62 ]; 63 63 64 64 postPatch = '' ··· 104 104 '' + lib.optionalString (runtimeLibs != [ ]) '' 105 105 wrapProgram $out/bin/retroarch \ 106 106 --prefix LD_LIBRARY_PATH ':' ${lib.makeLibraryPath runtimeLibs} 107 + '' + lib.optionalString stdenv.isDarwin '' 108 + # https://github.com/libretro/RetroArch/blob/master/retroarch-apple-packaging.sh 109 + app=$out/Applications/RetroArch.app 110 + mkdir -p $app/Contents/MacOS 111 + cp -r pkg/apple/OSX/* $app/Contents 112 + cp $out/bin/retroarch $app/Contents/MacOS 113 + # FIXME: using Info_Metal.plist results in input not working 114 + # mv $app/Contents/Info_Metal.plist $app/Contents/Info.plist 115 + 116 + substituteInPlace $app/Contents/Info.plist \ 117 + --replace '${"\${EXECUTABLE_NAME}"}' 'RetroArch' \ 118 + --replace '$(PRODUCT_BUNDLE_IDENTIFIER)' 'com.libretro.RetroArch' \ 119 + --replace '${"\${PRODUCT_NAME}"}' 'RetroArch' \ 120 + --replace '${"\${MACOSX_DEPLOYMENT_TARGET}"}' '10.13' 121 + 122 + cp media/retroarch.icns $app/Contents/Resources/ 107 123 ''; 108 124 109 125 preFixup = "rm $out/bin/retroarch-cg2glsl"; 126 + 127 + # Workaround for the following error affecting newer versions of Clang: 128 + # ./config.def.h:xxx:x: error: 'TARGET_OS_TV' is not defined, evaluates to 0 [-Werror,-Wundef-prefix=TARGET_OS_] 129 + NIX_CFLAGS_COMPILE = lib.optional stdenv.cc.isClang [ "-Wno-undef-prefix" ]; 110 130 111 131 meta = with lib; { 112 132 homepage = "https://libretro.com"; ··· 115 135 platforms = platforms.unix; 116 136 changelog = "https://github.com/libretro/RetroArch/blob/v${version}/CHANGES.md"; 117 137 maintainers = with maintainers; [ MP2E edwtjo matthewbauer kolbycrouch thiagokokada ]; 118 - # FIXME: exits with error on macOS: 119 - # No Info.plist file in application bundle or no NSPrincipalClass in the Info.plist file, exiting 120 - broken = stdenv.isDarwin; 121 138 }; 122 139 }
-13
pkgs/applications/emulators/retroarch/disable-menu-show-core-updater.patch
··· 1 - diff --git a/retroarch.cfg b/retroarch.cfg 2 - index cdcb199c9f..ab72f3920f 100644 3 - --- a/retroarch.cfg 4 - +++ b/retroarch.cfg 5 - @@ -681,7 +681,7 @@ 6 - # menu_show_online_updater = true 7 - 8 - # If disabled, will hide the ability to update cores (and core info files) inside the menu. 9 - -# menu_show_core_updater = true 10 - +menu_show_core_updater = false 11 - 12 - # If disabled, the libretro core will keep running in the background when we 13 - # are in the menu.
+139 -150
pkgs/applications/emulators/retroarch/hashes.json
··· 2 2 "atari800": { 3 3 "owner": "libretro", 4 4 "repo": "libretro-atari800", 5 - "rev": "478a8ec99a7f8436a39d5ac193c5fe313233ee7b", 6 - "sha256": "LJpRegJVR2+sS1UmTTpVest0rMrNDBMXmj/jRFVglWI=" 5 + "rev": "beab30e7ea10b7ed14d0514064f47d16f76cd995", 6 + "sha256": "r9MsnasNhhYdFyr2VHJXkTXssB5U00JW6wN/+i+SNUk=" 7 7 }, 8 8 "beetle-gba": { 9 9 "owner": "libretro", ··· 14 14 "beetle-lynx": { 15 15 "owner": "libretro", 16 16 "repo": "beetle-lynx-libretro", 17 - "rev": "8930e88a4342945c023cbf713031a65de11a8e75", 18 - "sha256": "bg/a+9ZJNTUIuEHKrFIss8sia3JWMWXIXbxha5qKVeI=" 17 + "rev": "de0d520d679cb92767876d4e98da908b1ea6a2d6", 18 + "sha256": "BszU5bnlHBOwQSZOM9P4WIP863rS5RluNWvGBFxqzYs=" 19 19 }, 20 20 "beetle-ngp": { 21 21 "owner": "libretro", 22 22 "repo": "beetle-ngp-libretro", 23 - "rev": "f7c393184e5228c3d3807ee74c951c4c549107d8", 24 - "sha256": "7vki8VkwOzxwMZcUxekg1DFSskV7VNQ1SRaU3M1xHZ0=" 23 + "rev": "6abc74d9dc6a86460ab71c93c153fe1cb8ef4dbb", 24 + "sha256": "+p3MwlzwwTghIKTDMzkqGlxhZiy/Px7xaDK3a0JagUE=" 25 25 }, 26 26 "beetle-pce-fast": { 27 27 "owner": "libretro", 28 28 "repo": "beetle-pce-fast-libretro", 29 - "rev": "0f43fd4dc406e7da6bbdc13b6eb1c105d6072f8a", 30 - "sha256": "u1lOgXEYuGAF4sOLdsBzcA4/A5Yz1b82TjFBiM57yE4=" 29 + "rev": "e8801687f232a6f8828b3ff5dadbc9fe1b0076fc", 30 + "sha256": "YM+URLnMqsdmk/5yqCg8U4mPpgtmj5qne2CrbTpTeN8=" 31 31 }, 32 32 "beetle-pcfx": { 33 33 "owner": "libretro", 34 34 "repo": "beetle-pcfx-libretro", 35 - "rev": "6d2b11e17ad5a95907c983e7c8a70e75508c2d41", 36 - "sha256": "WG2YpCYdL/MxW5EbiP2+1VtAjbX7yYDIcLXhb+YySI4=" 35 + "rev": "00abc26cafb15cc33dcd73f4bd6b93cbaab6e1ea", 36 + "sha256": "4a1wV3WKZmg1ed3BD0PN0Ap9E9XahQtilRWTGV5Ns3g=" 37 37 }, 38 38 "beetle-psx": { 39 39 "owner": "libretro", 40 40 "repo": "beetle-psx-libretro", 41 - "rev": "297970e4ff080ea80a5670209aeea4fde8059020", 42 - "sha256": "6kZher3/+5ywXyC3n9R9JVA4IVLZBaSfAcWEKp2SsDE=" 41 + "rev": "88929ae90b4807a41b1b240377ab440e39ecf2cc", 42 + "sha256": "5AX5FPsmsqGWCNzLgJ7lsekZaIdano2j5sb4qUkD4cQ=" 43 43 }, 44 44 "beetle-saturn": { 45 45 "owner": "libretro", 46 46 "repo": "beetle-saturn-libretro", 47 - "rev": "e6ba71f8bcc647b646d94dec812b24d00c41cf3f", 48 - "sha256": "tDbV+CsDr4bowBbJ/C8J9scfCryTAXxz58pGaUHU5yU=" 47 + "rev": "ae30f29e340a00b33e38df85ceaa599151a47cd7", 48 + "sha256": "nc239PRM/TfkZMWm4Zl5kSoZBQcrMcMudupvCJtTBlc=" 49 49 }, 50 50 "beetle-snes": { 51 51 "owner": "libretro", 52 52 "repo": "beetle-bsnes-libretro", 53 - "rev": "bc867656d7438aaffc6818b3b92350587bc78a47", 54 - "sha256": "TyUCRGK+uyXowDjXW9/4m+zL8Vh/3GGsX1eznrTCbAg=" 53 + "rev": "d770563fc3c4bd9abb522952cefb4aa923ba0b91", 54 + "sha256": "zHPtfgp9hc8Q4gXJ5VgfJLWLeYjCsQhkfU1T5RM7AL0=" 55 55 }, 56 56 "beetle-supergrafx": { 57 57 "owner": "libretro", 58 58 "repo": "beetle-supergrafx-libretro", 59 - "rev": "7bae6fb1a238f1e66b129c7c70c7cb6dbdc09fa1", 60 - "sha256": "OAJ86XrwjDrgCjrk0RHMn8sHYaJFhJhLaQnhaEVXN38=" 59 + "rev": "59991a98c232b1a8350a9d67ac554c5b22771d3c", 60 + "sha256": "zv3dAPWrj6hkNaFQ5vUKm5Orcrb2XO48WSkAFiAVUO0=" 61 61 }, 62 62 "beetle-vb": { 63 63 "owner": "libretro", 64 64 "repo": "beetle-vb-libretro", 65 - "rev": "aa77198c6c60b935503b5ea2149b8ff7598344da", 66 - "sha256": "ShsMYc2vjDoiN1yCCoSl91P5ecYJDj/V+VWUYuYVxas=" 65 + "rev": "a91437af0879124aa00b6cb30ca1189f2c84b7cb", 66 + "sha256": "ryahr/g6PDvUKCPkF1D8xozNGNCa4bLw63b5Ra9Vsfo=" 67 67 }, 68 68 "beetle-wswan": { 69 69 "owner": "libretro", 70 70 "repo": "beetle-wswan-libretro", 71 - "rev": "5717c101b314f64d4c384c23b1934d09fcbf82bb", 72 - "sha256": "Nfezb6hja1qHv1fMGU9HMbbb56GHAfe/zIgRqrzz334=" 71 + "rev": "089a62477c5f51ac746a5fc8eacf3599e9feb649", 72 + "sha256": "yaaEJ+XgrBgtTEkffgnxvt2mrp5dsDYJ+TTxCZZU5OE=" 73 73 }, 74 74 "blastem": { 75 75 "owner": "libretro", ··· 80 80 "bluemsx": { 81 81 "owner": "libretro", 82 82 "repo": "bluemsx-libretro", 83 - "rev": "5dfdb75106e10ef8bc21b8bcea1432ecbd590b2a", 84 - "sha256": "0D0xufIt3qmQ+/UjyWynoLyLDSza8cTrFp3UwGWBXko=" 83 + "rev": "92d0c41b4973854114c7b2d06ab727a266d404c5", 84 + "sha256": "dL4k+zG8L4KK4lwf9eXPVGk/u5xQn2htIEpoKyj9kQI=" 85 85 }, 86 86 "bsnes": { 87 87 "owner": "libretro", 88 88 "repo": "bsnes-libretro", 89 - "rev": "1b2987ab1e9caf5c8d7550da01ffa08edff2f128", 90 - "sha256": "l6Jvn0ZgFaKSWjiV2bN9aemxLyfnNEQFc+HS1/MuiaY=" 89 + "rev": "26c583e1c5d09253b6c61e2b9d418e8758eef632", 90 + "sha256": "Qa0ScFHcEgBUoWouNoW4JINZ2aHjNATndxhcwKw476Q=" 91 91 }, 92 92 "bsnes-hd": { 93 93 "owner": "DerKoun", ··· 98 98 "bsnes-mercury": { 99 99 "owner": "libretro", 100 100 "repo": "bsnes-mercury", 101 - "rev": "d232c6ea90552f5921fec33a06626f08d3e18b24", 102 - "sha256": "fpl7hmqz+Ca+9ZeM6E1JSikbiu+NJUU8xXtyl6Dd9Gg=" 101 + "rev": "4ba6d8d88e57d3193d95e1bcf39e8d31121f76d4", 102 + "sha256": "w2MVslgRlxW4SMzgcXP4gXr9A8B07N7LNrB1LXzk1Zk=" 103 103 }, 104 104 "citra": { 105 105 "owner": "libretro", 106 106 "repo": "citra", 107 - "rev": "b1959d07a340bfd9af65ad464fd19eb6799a96ef", 108 - "sha256": "bwnYkMvbtRF5bGZRYVtMWxnCu9P45qeX4+ntOj9eRds=", 109 - "fetchSubmodules": true, 110 - "leaveDotGit": true, 111 - "deepClone": true 112 - }, 113 - "citra-canary": { 114 - "owner": "libretro", 115 - "repo": "citra", 116 - "rev": "5401990a9be46e4497abc92db3d5f2042674303d", 117 - "sha256": "JKKJBa840i7ESwMrB5tKamCBmrYvvoEUdibqxkWg5Gc=", 118 - "fetchSubmodules": true, 119 - "leaveDotGit": true, 120 - "deepClone": true 107 + "rev": "44e01f99016008eff18bc7a28234d1098382358d", 108 + "sha256": "vIrUStv+VM8pYeznnWSVBRfSA71/B7VIY7B/syymGzE=", 109 + "fetchSubmodules": true 121 110 }, 122 111 "desmume": { 123 112 "owner": "libretro", 124 113 "repo": "desmume", 125 - "rev": "7ea0fc96804fcd9c8d33e8f76cf64b1be50cc5ea", 126 - "sha256": "4S/CirRVOBN6PVbato5X5fu0tBn3Fu5FEAbdf3TBqng=" 114 + "rev": "5d0ae2be2c9fb6362af528b3722e81323318eb9f", 115 + "sha256": "4bJ6fLZ+fV7SnZ71YT3JFcXFOgmskNUCmCHwc2QNl0A=" 127 116 }, 128 117 "desmume2015": { 129 118 "owner": "libretro", 130 119 "repo": "desmume2015", 131 - "rev": "cd89fb7c48c735cb321311fbce7e6e9889dda1ce", 132 - "sha256": "9Ou/n6pxRjJOp/Ybpyg4+Simosj2X26kLZCMEqeVL6U=" 120 + "rev": "af397ff3d1f208c27f3922cc8f2b8e08884ba893", 121 + "sha256": "kEb+og4g7rJvCinBZKcb42geZO6W8ynGsTG9yqYgI+U=" 133 122 }, 134 123 "dolphin": { 135 124 "owner": "libretro", 136 125 "repo": "dolphin", 137 - "rev": "3b19e6d1781584f3e1fd2922b48b8ae6b3bcb686", 138 - "sha256": "EcgJhkMzdZfYRwSpU1OcsJqQyq4V8dq5PndVufZFy7k=" 126 + "rev": "6a0b6ee8a4d5363e669f5faf43abc8f17e4278a8", 127 + "sha256": "TeeHnttGmCeOTDTK/gJM+RpusjDDndapZAa3T+oLiq0=" 139 128 }, 140 129 "dosbox": { 141 130 "owner": "libretro", 142 131 "repo": "dosbox-libretro", 143 - "rev": "aa71b67d54eaaf9e41cdd3cb5153d9cff0ad116e", 144 - "sha256": "L0Y67UROjldnXUlLQ+Xbd7RHLb96jDxlB/k+LR9Kbas=" 132 + "rev": "74cd17ed0ff810ff78cb8c1f1e45513bfe8a0f32", 133 + "sha256": "0PIloW7j/87asDJ8IDw4r3r4muxNF+RbvkIRPLZQvRc=" 145 134 }, 146 135 "eightyone": { 147 136 "owner": "libretro", 148 137 "repo": "81-libretro", 149 - "rev": "86d7d5afe98f16006d4b1fdb99d281f1d7ea6b2f", 150 - "sha256": "QN7anzqv1z8SgY8dlkjr8Ns7reGWc7hTneiRmorXZSk=" 138 + "rev": "6aba19246c1ec08f3de5659b2dbc3277ec6bfb97", 139 + "sha256": "2G6NkNlvqvP5RM35ydppnr2/RRbeiIpM2HKOpt8PkgU=" 151 140 }, 152 141 "fbalpha2012": { 153 142 "owner": "libretro", 154 143 "repo": "fbalpha2012", 155 - "rev": "23f98fc7cf4f2f216149c263cf5913d2e28be8d4", 156 - "sha256": "dAInW6tTV7oXcPhKMnHWcmQaWQCTqRrYHD2yuaI1I1w=" 144 + "rev": "7f8860543a81ba79c0e1ce1aa219af44568c628a", 145 + "sha256": "r1lH+CR+nVRCPkVo0XwLi35/ven/FEkNhWUTA6cUVxc=" 157 146 }, 158 147 "fbneo": { 159 148 "owner": "libretro", 160 149 "repo": "fbneo", 161 - "rev": "4ecf2782a4eee042d1e126d1671e5231b6437b6e", 162 - "sha256": "15MYI03r45mmRsXCwzWnjfBdtzSaHLp7DfmcACQFTvU=" 150 + "rev": "01bf2e189dcd96f978c3a4ae7bbbb00f2d90aabf", 151 + "sha256": "naCfGSrwA9vO3Cu2rHLplCMcTbpx6S/sapwisFCcL5c=" 163 152 }, 164 153 "fceumm": { 165 154 "owner": "libretro", 166 155 "repo": "libretro-fceumm", 167 - "rev": "eb06d17e7912780a3ee117ae73bc50c3948c761c", 168 - "sha256": "aBqskJtK1bFBjwaoo9hilr33fyAWsdj5+hFC3WY3sKk=" 156 + "rev": "b3c35b6515b2b6a789c589f976a4a323ebebe3eb", 157 + "sha256": "zwFQGQyO0Vj/IBM1k8JB3D/jB3OwDuGdSHLavr8Fxgw=" 169 158 }, 170 159 "flycast": { 171 160 "owner": "libretro", 172 161 "repo": "flycast", 173 - "rev": "0d8c6a2e717c002bc76ce26a152353b004fb15e7", 174 - "sha256": "t2RGHAyYXeHVqTqqhayOUWx/msFN9q/Z9P2wXJUtQTI=" 162 + "rev": "4c293f306bc16a265c2d768af5d0cea138426054", 163 + "sha256": "9IxpRBY1zifhOebLJSDMA/wiOfcZj+KOiPrgmjiFxvo=" 175 164 }, 176 165 "fmsx": { 177 166 "owner": "libretro", 178 167 "repo": "fmsx-libretro", 179 - "rev": "dfcda056896576c6a1c75c002a82d0e6c1160ccc", 180 - "sha256": "9ANZ1suAQcYOhqSchQ20Yuqvgw06j5Sd3Z1fjrp2UFc=" 168 + "rev": "f9ea9eacd49297783c216d147dcc1a22465b2749", 169 + "sha256": "nDsaaUeZUm4zTj07+2nPDefoDpw18vXdhQr1BH6/4eY=" 181 170 }, 182 171 "freeintv": { 183 172 "owner": "libretro", 184 173 "repo": "freeintv", 185 - "rev": "d58caf23ed1438a1db58f8d6ac24ca521b411d3b", 186 - "sha256": "nUV+A3Zh66M1K5NDK0ksNF5H1HS3AQdeYLaGfaA34n4=" 174 + "rev": "295dd3c9e4b2d4f652f6a6a904afbe90a8187068", 175 + "sha256": "tz0X6AfD7IL3Y50vjgSO5r6sDhu++6Gj8Rp7de5OqMk=" 187 176 }, 188 177 "gambatte": { 189 178 "owner": "libretro", 190 179 "repo": "gambatte-libretro", 191 - "rev": "79bb2e56d034c30d8dcac02b6c34a59ec8fe91bc", 192 - "sha256": "H+Hkeep18whaSYbyG8DcaJqsVVu7DEX9T28pkfXfyCg=" 180 + "rev": "15536214cdce31894d374b2ffa2494543057082b", 181 + "sha256": "cTSoK6rezRajnuWPt7WkYn3SWL0sTu7h5X3Ig1KukDA=" 193 182 }, 194 183 "genesis-plus-gx": { 195 184 "owner": "libretro", 196 185 "repo": "Genesis-Plus-GX", 197 - "rev": "88c9ad000ba553b9c819d9eb259f741fabd877bb", 198 - "sha256": "8ZCMq8/sk5TqwTNWMfDevZHRPSOM1PJ57kiZZ7qfQxA=" 186 + "rev": "144045b30a18ab4b27c3ae46490274988f302748", 187 + "sha256": "ydnyPdkJmM+xhuJqIOxZISFcTN8RFgOLbnRvOBJORek=" 199 188 }, 200 189 "gpsp": { 201 190 "owner": "libretro", 202 191 "repo": "gpsp", 203 - "rev": "e554360dd3ed283696fc607877024a219248b735", 204 - "sha256": "ImsqB89XmjF8nvs7j8IZVvFltgZRYvF2L7LTcJG/xCU=" 192 + "rev": "d4547baf26dd70a18eeb38d231ce3f998004ec30", 193 + "sha256": "9XU9TmBpuZeAOzqxuKVQZvdHRgX8fm4HcEfleM3jB7E=" 205 194 }, 206 195 "gw": { 207 196 "owner": "libretro", 208 197 "repo": "gw-libretro", 209 - "rev": "0f1ccca156388880bf4507ad44741f80945dfc6f", 210 - "sha256": "BVpx8pL224J2u9W6UDrxzfEv4qIsh6wrf3bDdd1R850=" 198 + "rev": "85bf5c936044db0bf4138e7eb8ab20d3a7330035", 199 + "sha256": "yCAnveQw+VyZFQ/GsUBuyoMRQ4yfhA0f3tYghZ2HecU=" 211 200 }, 212 201 "handy": { 213 202 "owner": "libretro", 214 203 "repo": "libretro-handy", 215 - "rev": "3b02159ba32aa37c1b93d7f7eac56b28e3715645", 216 - "sha256": "mBKK+pdWgkxYkV4OOiBrlWbLAMugDX0fd6QRh0D7JYU=" 204 + "rev": "5145f79bb746f6d9c0b340c2f9cc4bf059848924", 205 + "sha256": "madTjJWKM8elM35LRAwm0RwnA44skLtIK2/7RXPSNl0=" 217 206 }, 218 207 "hatari": { 219 208 "owner": "libretro", 220 209 "repo": "hatari", 221 - "rev": "79d128888ca3efdd27d639a35edf72a9bc81a798", 222 - "sha256": "du2xORgAXTSQArqNuFa5gjticgZ+weqySFHVz2Y2qzI=" 210 + "rev": "e5e36a5262cfeadc3d1c7b411b7a70719c4f293c", 211 + "sha256": "T4I3NVEMBKr5HLs60x48VNRl2TMnhqvaF+LTtYQ7qdU=" 223 212 }, 224 213 "mame": { 225 214 "owner": "libretro", 226 215 "repo": "mame", 227 - "rev": "2f9c793a77222ae46266c71f64d491cf7870dc1e", 228 - "sha256": "WAhm6QMMVbnuSIK4PW7Ek+AAkMs7s95gGb6ERzlon0w=" 216 + "rev": "2a0e4ea0e2362bb7dcf77216c9fcb48426cea1e8", 217 + "sha256": "imuHEwzDpI8jbdOeOhBBfzl4k74mDq/3SrKD8upzZmo=" 229 218 }, 230 219 "mame2000": { 231 220 "owner": "libretro", 232 221 "repo": "mame2000-libretro", 233 - "rev": "4793742b457945afb74053c8a895e6ff0b36b033", 234 - "sha256": "DA9fZTic/jlYzSAIiOjfhohyEyQZiBNdIa8YCZoKZNs=" 222 + "rev": "f35db3877f8a79a174dd3b2e37f4ebf39d71d5a4", 223 + "sha256": "JmtvxKWAYNk1SyV1YpFeLX49zzGqpUv6nqM82xU70OM=" 235 224 }, 236 225 "mame2003": { 237 226 "owner": "libretro", 238 227 "repo": "mame2003-libretro", 239 - "rev": "dbda6ddacdd8962cfea25000421dba398e551aef", 240 - "sha256": "RSL3iZZEJCxOtsJqjnM5ZiT0yM2nAgg/Ujq6FBLMHkk=" 228 + "rev": "3eb27d5f161522cf873c0642f14b8e2267b3820f", 229 + "sha256": "TQ4FwboKeEP58hOL2hYs4OYes2o0wSKFSp4CqZV5r6I=" 241 230 }, 242 231 "mame2003-plus": { 243 232 "owner": "libretro", 244 233 "repo": "mame2003-plus-libretro", 245 - "rev": "9c0c954f0f88730f44abdd4d414691fef6b1cd7c", 246 - "sha256": "NLdHc0VuZhqQhAzv+8kipc0mhqT2BNaJeLYZUx7DwRU=" 234 + "rev": "e5ee29ecb8182952f861f22516e5791625fe2671", 235 + "sha256": "YunfAITR/Etm8lvEab/HigZoBz+ayJQ7ezjItWI/HvE=" 247 236 }, 248 237 "mame2010": { 249 238 "owner": "libretro", ··· 260 249 "mame2016": { 261 250 "owner": "libretro", 262 251 "repo": "mame2016-libretro", 263 - "rev": "bcff8046328da388d100b1634718515e1b15415d", 264 - "sha256": "XxnX39+0VUbG9TF8+wFEFVxHCm2rzrJsIQryyNsF6zU=" 252 + "rev": "01058613a0109424c4e7211e49ed83ac950d3993", 253 + "sha256": "IsM7f/zlzvomVOYlinJVqZllUhDfy4NNTeTPtNmdVak=" 265 254 }, 266 255 "melonds": { 267 256 "owner": "libretro", 268 257 "repo": "melonds", 269 - "rev": "0053daa700018657bf2e47562b3b4eb86f9b9d03", 270 - "sha256": "K6ZYuk7cE+ioq1rLRyAKNQxddCYIOXLU5SXT7sYgGnc=" 258 + "rev": "e93ec3e462d3dfc1556781510a3cee113f02abb2", 259 + "sha256": "NDrsqX17OKw1/PIZSrWAxhVl+Qk/xG7lCnr6Ts+7YJ4=" 271 260 }, 272 261 "mesen": { 273 262 "owner": "libretro", 274 263 "repo": "mesen", 275 - "rev": "094d82bf724448426acbaad45e83bc38994e32f6", 276 - "sha256": "9+AqZRv8lugNNa+ZZzIPJNO87J1aBUEiOggL8aYno1M=" 264 + "rev": "bb9ea02eba28682986044a6f49329ec533aa26ba", 265 + "sha256": "G2NQDpByvI9RFEwrRiKXcMnPtVtqpvEoZgk7/fk5qCU=" 277 266 }, 278 267 "mesen-s": { 279 268 "owner": "libretro", 280 269 "repo": "mesen-s", 281 - "rev": "42eb0e8ad346608dae86feb8a04833d16ad21541", 282 - "sha256": "q6zeoNiZtFy8ZYls9/E+O7o9BYTcVcmYjbJA48qiraU=" 270 + "rev": "3694c7f9692a0be32d86979c347884ae9def0a3b", 271 + "sha256": "VBNl4682e2X12WNjtXZ3P4/Kw4OeRLSRWyZqYDpfmCo=" 283 272 }, 284 273 "meteor": { 285 274 "owner": "libretro", ··· 290 279 "mgba": { 291 280 "owner": "libretro", 292 281 "repo": "mgba", 293 - "rev": "43da6e1d54ad0395f474346db88fe59a4c0aa451", 294 - "sha256": "JxiWIBQi1fZoBV2lvx2r7iIvlQm0BYuJFz0TsxngUT8=" 282 + "rev": "5d48e0744059ebf38a4e937b256ffd5df4e0d103", 283 + "sha256": "OYw2nlldFx5B7WX0E8Gbgfp1j4h65ZxyKDS9tneHXQg=" 295 284 }, 296 285 "mupen64plus": { 297 286 "owner": "libretro", 298 287 "repo": "mupen64plus-libretro-nx", 299 - "rev": "350f90a73cf0f5d65357ce982ccbaa3b22fc3569", 300 - "sha256": "9Hq93+dvO60LBbcXLIHsTq243QThicI0rVJW3tou/5Y=" 288 + "rev": "6e9dcd2cd9d23d3e79eaf2349bf7e9f25ad45bf1", 289 + "sha256": "rs/VL2K6aS8Rl01IyxUiWipzLEzg+7+fbXxI0qN5X/I=" 301 290 }, 302 291 "neocd": { 303 292 "owner": "libretro", 304 293 "repo": "neocd_libretro", 305 - "rev": "83d10f3be10fff2f28aa56fc674c687528cb7f5c", 306 - "sha256": "yYZGoMsUfE8cpU9i826UWQGi1l0zPJPcBDb2CINxGeQ=" 294 + "rev": "327aeceecdf71c8a0c0af3d6dc53686c94fe44ad", 295 + "sha256": "cY0P+0EQ0b9df+YT2EMvrxjp5L+DwIg31rEJqchU+hc=" 307 296 }, 308 297 "nestopia": { 309 298 "owner": "libretro", 310 299 "repo": "nestopia", 311 - "rev": "8af07b7ab49e45495cbc4ba73cd2f879d9908b55", 312 - "sha256": "Z447flP1L/7gWEovWhbBearPKzsZNnGE2cz7jH7kEnY=" 300 + "rev": "7dbd5c6384c4c6326004c97fd8e6fa07cb4edcef", 301 + "sha256": "OBkWP36BzwsEW+ORF2opHlXwXHgGN0l2ZxBuyDO/sKY=" 313 302 }, 314 303 "np2kai": { 315 304 "owner": "AZO234", 316 305 "repo": "NP2kai", 317 - "rev": "30d4b6959c48db039207a37e278c868c7737ed69", 318 - "sha256": "uIcgbpcEz6yUKrBe0r84Yq2ihWfT0+TdUTIF5kMT5mI=", 306 + "rev": "2b09ea6a589cdcae27bca27160b3f82638fbb45d", 307 + "sha256": "M3kGA1TU3xui6of9XgUspI+Zf+hjYP1d2mgKwxsy3IQ=", 319 308 "fetchSubmodules": true 320 309 }, 321 310 "o2em": { 322 311 "owner": "libretro", 323 312 "repo": "libretro-o2em", 324 - "rev": "f1050243e0d5285e7769e94a882b0cf39d2b7370", 325 - "sha256": "wD+iJ8cKC8jYFZ6OVvX71uO7sSh5b/LLoc5+g7f3Yyg=" 313 + "rev": "efd749cec2dd1ce42a8aa3048a89f817d271d804", 314 + "sha256": "aw0bJyQzYFOlQQOfNsRgqdeUJP1qF4llJxLq5t9oc5g=" 326 315 }, 327 316 "opera": { 328 317 "owner": "libretro", ··· 333 322 "parallel-n64": { 334 323 "owner": "libretro", 335 324 "repo": "parallel-n64", 336 - "rev": "28c4572c9a09447b3bf5ed5fbd3594a558bc210d", 337 - "sha256": "by8NvKjVT9OrgVhNtv5E4Fqmdva42lWV8UQi0SKfBL8=" 325 + "rev": "b804ab1a199d6ff1f8fef4aa7dfcf663990e430b", 326 + "sha256": "zAet6hYa/79CBbvwZNTNs/ayWuHHlwg+0Y4BAUFddBc=" 338 327 }, 339 328 "pcsx2": { 340 329 "owner": "libretro", 341 330 "repo": "pcsx2", 342 - "rev": "3ef2a36b0608e9dcae808c7ef01c7a760d628735", 343 - "sha256": "ezqVntonhGfejiGx9cxQEnjsXEHqT++M1fO0Jz1t/Us=" 331 + "rev": "0251730a21d7238856d79aa25e2942b48edb38f6", 332 + "sha256": "a/lWLBCww4QwxdO7Sbvmfq0XF9FnP4xzF51ljsWk46I=" 344 333 }, 345 334 "pcsx_rearmed": { 346 335 "owner": "libretro", 347 336 "repo": "pcsx_rearmed", 348 - "rev": "12fc12797064599dfca2d44043d5c02a949711ef", 349 - "sha256": "SXmNfHGyk+KChiwkKlA+d/oezzp/7p1DJY+w2bES6kg=" 337 + "rev": "37d9bf8315be570a350cd44876ae14f9b0eff20b", 338 + "sha256": "ieuEWs+NIQFCgMl/yTnaFdClxEv5NurrLuUvkjSUar0=" 350 339 }, 351 340 "picodrive": { 352 341 "owner": "libretro", 353 342 "repo": "picodrive", 354 - "rev": "50b8b47838fea8096535d543caaacdcc56aa7df2", 355 - "sha256": "C1Htwel5PHZcjkKmjiiN/QgRofMhqlArxktOSqoTxTc=", 343 + "rev": "bb6a52fe60e6f3bdcd17effe75e68fd0f8c44ba7", 344 + "sha256": "wztctLbK7VE4OPJS7ixKwnN4VkQv96Te3FmJlZ5m4A0=", 356 345 "fetchSubmodules": true 357 346 }, 358 347 "play": { 359 348 "owner": "jpd002", 360 349 "repo": "Play-", 361 - "rev": "fd6a5161030215090d48a8036680f57914c71bb0", 362 - "sha256": "g6UBRV7biLjPBXdlejjXUSk3v1wrsYWA3quZlpPj23U=", 350 + "rev": "ec2a9460ea2beeb69d30534ee8affbda4fc4b156", 351 + "sha256": "8maLaSJiF9soJdIlYoFHSG+2XXYTdLmWH6cq9vZRd/4=", 363 352 "fetchSubmodules": true 364 353 }, 365 354 "ppsspp": { 366 355 "owner": "hrydgard", 367 356 "repo": "ppsspp", 368 - "rev": "54d63cc1daf2a0cdc812e9af85854bb4ae5ef399", 369 - "sha256": "iB/8zf4FYdsbiKZVq/YISTEQSoo1kme1uZsyuhbOcoc=", 357 + "rev": "0eea0acf13022ff8d910adb55cec14ebad825afc", 358 + "sha256": "f1Tscndz0TcW0bUhixEvsrbFKefLfsCFjqWA7ANnfB4=", 370 359 "fetchSubmodules": true 371 360 }, 372 361 "prboom": { 373 362 "owner": "libretro", 374 363 "repo": "libretro-prboom", 375 - "rev": "af1b5bf89d01095326ee27e178f9257f9e728873", 376 - "sha256": "pvTUv4E+wBOYfjz8Ph11CK4E7rIm1T+u90TWDNXEBIU=" 364 + "rev": "b22a6b19fd976a14374db9083baea9c91b079106", 365 + "sha256": "NmEWRTHaZjV2Y6Wrc3WOamXCnOawKc2ja1KBDxokRiY=" 377 366 }, 378 367 "prosystem": { 379 368 "owner": "libretro", 380 369 "repo": "prosystem-libretro", 381 - "rev": "89e6df7b60d151310fedbe118fb472959a9dcd61", 382 - "sha256": "uxgKddS53X7ntPClE8MGezBAG+7OAFvMXTnyKpOOau0=" 370 + "rev": "fbf62c3dacaac694f7ec26cf9be10a51b27271e7", 371 + "sha256": "Opb6CUeT/bnaTg4MJo7DNsVyaPa73PLbIor25HHWzZ0=" 383 372 }, 384 373 "quicknes": { 385 374 "owner": "libretro", 386 375 "repo": "QuickNES_Core", 387 - "rev": "743e6e06db246c5edab27c738c7a573d83140485", 388 - "sha256": "NYmP+HFeZGUeIRaT3bzdpWw9cmEAaBkA3EGnw/zpDXA=" 376 + "rev": "e6f08c165af45fc2d2f26c80ba0cfc33e26f9cfe", 377 + "sha256": "JQtlqN3mvIwKy6iN9opHPHnh0E7AIn9JVitIfXklI/I=" 389 378 }, 390 379 "sameboy": { 391 380 "owner": "libretro", ··· 396 385 "scummvm": { 397 386 "owner": "libretro", 398 387 "repo": "scummvm", 399 - "rev": "80cb7269a33b233dcea27d8d01df084b0d35c80a", 400 - "sha256": "5kMWM8d5aBbT7TseNyaYxw7VDkrLL0G+KUvJcUboQgA=" 388 + "rev": "2fb2e4c551c9c1510c56f6e890ee0300b7b3fca3", 389 + "sha256": "wrlFqu+ONbYH4xMFDByOgySobGrkhVc7kYWI4JzA4ew=" 401 390 }, 402 391 "smsplus-gx": { 403 392 "owner": "libretro", 404 393 "repo": "smsplus-gx", 405 - "rev": "3f1ffede55bcfe0168caa484a00bf041ab591abf", 406 - "sha256": "fD+grzMPk4uXvmzGf+f9Mor0eefBLHIumCydsSHUsck=" 394 + "rev": "8e8378896bc15c8a9f756339b596171ba266cc14", 395 + "sha256": "zvG2SF4zx3Yaaf54NZ2DgsGPN59msW8TvQFCS4OMcHQ=" 407 396 }, 408 397 "snes9x": { 409 398 "owner": "snes9xgit", 410 399 "repo": "snes9x", 411 - "rev": "34b6160805c4995a8edf5f9b3328f5e492ae4c44", 412 - "sha256": "YRRqtd5iu2evRk+7SyQpqpxqTaEFOkDZ/XQHEjpSBcM=" 400 + "rev": "78d006ffdbb5cb6944177db52c3640152948d928", 401 + "sha256": "Qh+nLtwdLfjwYxXCv49pPPf0mqdxKRv/JLRm82knJu0=" 413 402 }, 414 403 "snes9x2002": { 415 404 "owner": "libretro", 416 405 "repo": "snes9x2002", 417 - "rev": "e16cb16efa00765b1bc3b8fee195680efb1542c7", 418 - "sha256": "0dhLpNy+NUE3mE/ejEwbq3G28/a2HONS5NPslI5LOEc=" 406 + "rev": "25d9d4fea4c7d7fcc8608c65c2bec9bcbc41f26e", 407 + "sha256": "EYcaWckvTfi2ajx6C1olE5pW51diLSjMdqZdyH8U2Ck=" 419 408 }, 420 409 "snes9x2005": { 421 410 "owner": "libretro", 422 411 "repo": "snes9x2005", 423 - "rev": "77e9cd293c791b47f4397da0a47242b329243cb5", 424 - "sha256": "iHGfZIGzE4n3EHrVRxTULuYKsOse5NcJftmasoJFwFo=" 412 + "rev": "23f759bc4bf2e39733296f7749e446418e3cd0f3", 413 + "sha256": "/bZrMp7NHgdYvA3Tw1ZoWXRg7VxmatRUX5cCJsU3NCY=" 425 414 }, 426 415 "snes9x2010": { 427 416 "owner": "libretro", 428 417 "repo": "snes9x2010", 429 - "rev": "714b1c8e08c7580430190119b07e793405773ac2", 430 - "sha256": "yKSQEE+lT4V2V1XqemfziHuIt79TcvC0ranU9ounTXo=" 418 + "rev": "b12f3ba46f09dd5d0254676ed4b9e289d16b9ea8", 419 + "sha256": "i4GEqZkgwlehuUQGcjLdMkO9xNWRs8k+3y2OGivwXCw=" 431 420 }, 432 421 "stella": { 433 422 "owner": "stella-emu", 434 423 "repo": "stella", 435 - "rev": "1db9de390a331a7d55c35591c93d9e89184cce5f", 436 - "sha256": "vICKxx+UBYvMzZ3a3F86yzJRKfdo0jMxa27wsUX0KZw=" 424 + "rev": "071e8f7eb1096dfe95d9eb2e5b7b27b30f28fbf9", 425 + "sha256": "8WzBL8ojsHYxOqItHeeG4djALhqBBOV7nHE078UzqAY=" 437 426 }, 438 427 "stella2014": { 439 428 "owner": "libretro", 440 429 "repo": "stella2014-libretro", 441 - "rev": "934c7a2a44ef038af529b68950ddba4f7ea3478e", 442 - "sha256": "s7LQ47sAPTyk4COONk4qnebxCq78zGLIjh3Y2+1fIak=" 430 + "rev": "1a2e96bc6ccf91de6fb4322048da05f67a9d21d4", 431 + "sha256": "yINO6EU2kCldfxKcqym5ha3uIEQg7I6t4Wmu+8b6Hmw=" 443 432 }, 444 433 "swanstation": { 445 434 "owner": "libretro", 446 435 "repo": "swanstation", 447 - "rev": "61c5debe60192b0fecd8c15310b2e4c4473f9438", 448 - "sha256": "DZJApJnGDMsUhjO35TBc7tMldCGKDPPtrwxPLe0Ey1s=" 436 + "rev": "0932243b0e5f1a5a237b0521b30b39473b61fa31", 437 + "sha256": "krA7X9CIOg53giWSMXgzgazeyWFXEpMobPSnOB7g994=" 449 438 }, 450 439 "tgbdual": { 451 440 "owner": "libretro", ··· 462 451 "tic80": { 463 452 "owner": "libretro", 464 453 "repo": "tic-80", 465 - "rev": "967eb78c3610385a0e6cba8bb5c60ebc3b886d3e", 466 - "sha256": "N0QFNTYFVbhWwt2yx5fLM7Dl6pJZPYrt9o3+6rjnWa8=", 454 + "rev": "e9f62f85a154796c6baaee8a9f6fd0cfdd447019", 455 + "sha256": "JTAoIqxqpaLjsQiIpJ4wQsREI5/rTxVxDywoL3oLI4Q=", 467 456 "fetchSubmodules": true 468 457 }, 469 458 "vba-m": { ··· 475 464 "vba-next": { 476 465 "owner": "libretro", 477 466 "repo": "vba-next", 478 - "rev": "b218f48bb27b5d3885fa4076ff325922b5acd817", 479 - "sha256": "idqGMbMA9mZlIh0QAba3BxpPDi/bFJJkUbnxV3xMOCo=" 467 + "rev": "ebd175d57ebb2065726099d32034cb25934787ce", 468 + "sha256": "hTUlhLzvsemNz6wSmlnQNoNtzaVhipA+hmVmhzZVN+w=" 480 469 }, 481 470 "vecx": { 482 471 "owner": "libretro", 483 472 "repo": "libretro-vecx", 484 - "rev": "28d6efc8972313903d0802a736ff8c3bc115e78f", 485 - "sha256": "VYa8s+HB8IYF+HS6SA+sO5DzpgCtnMGrh88KTVNGICY=" 473 + "rev": "141af284202c86ed0d4ce9030c76954a144287cf", 474 + "sha256": "p5vMuG2vr3BTJOQWNcTPb89MlkVrRvJNTIJSU8r9zfU=" 486 475 }, 487 476 "virtualjaguar": { 488 477 "owner": "libretro", 489 478 "repo": "virtualjaguar-libretro", 490 - "rev": "d1b1b28a6ad2518b746e3f7537ec6d66db96ec57", 491 - "sha256": "Io25dt80fqIqIxwzF2DK9J5UFz6YCUQoqThcIuxdEBo=" 479 + "rev": "263c979be4ca757c43fb525bd6f0887998e57041", 480 + "sha256": "6Q6Y0IFUWS9ZPhnAK3EUo4hMGPdBn8eNEYCK/zLgAKU=" 492 481 }, 493 482 "yabause": { 494 483 "owner": "libretro", 495 484 "repo": "yabause", 496 - "rev": "f30153ff9e534b96049c6f1ac3075b572642ceb5", 497 - "sha256": "AdqCr5X3Bq8ic2jkIestmYi+CBByZ5Fyf0BUYwBkWnA=" 485 + "rev": "17dfcd8de4700341d972993501d3a043925675ce", 486 + "sha256": "xwW7Oe3Cy3yC0xC5acLW6OGUIG+dKd1mwiXK5ZAumdo=" 498 487 } 499 488 }
-179
pkgs/applications/emulators/retroarch/update.py
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -I nixpkgs=../../../../ -i python3 -p "python3.withPackages (ps: with ps; [ requests nix-prefetch-github ])" -p "git" 3 - 4 - import json 5 - import sys 6 - import subprocess 7 - from pathlib import Path 8 - 9 - SCRIPT_PATH = Path(__file__).absolute().parent 10 - HASHES_PATH = SCRIPT_PATH / "hashes.json" 11 - CORES = { 12 - "atari800": {"repo": "libretro-atari800"}, 13 - "beetle-gba": {"repo": "beetle-gba-libretro"}, 14 - "beetle-lynx": {"repo": "beetle-lynx-libretro"}, 15 - "beetle-ngp": {"repo": "beetle-ngp-libretro"}, 16 - "beetle-pce-fast": {"repo": "beetle-pce-fast-libretro"}, 17 - "beetle-pcfx": {"repo": "beetle-pcfx-libretro"}, 18 - "beetle-psx": {"repo": "beetle-psx-libretro"}, 19 - "beetle-saturn": {"repo": "beetle-saturn-libretro"}, 20 - "beetle-snes": {"repo": "beetle-bsnes-libretro"}, 21 - "beetle-supergrafx": {"repo": "beetle-supergrafx-libretro"}, 22 - "beetle-vb": {"repo": "beetle-vb-libretro"}, 23 - "beetle-wswan": {"repo": "beetle-wswan-libretro"}, 24 - "blastem": {"repo": "blastem"}, 25 - "bluemsx": {"repo": "bluemsx-libretro"}, 26 - "bsnes": {"repo": "bsnes-libretro"}, 27 - "bsnes-hd": {"repo": "bsnes-hd", "owner": "DerKoun"}, 28 - "bsnes-mercury": {"repo": "bsnes-mercury"}, 29 - "citra": { 30 - "repo": "citra", 31 - "fetch_submodules": True, 32 - "deep_clone": True, 33 - "leave_dot_git": True, 34 - }, 35 - "citra-canary": { 36 - "repo": "citra", 37 - "fetch_submodules": True, 38 - "deep_clone": True, 39 - "leave_dot_git": True, 40 - "rev": "canary", 41 - }, 42 - "desmume": {"repo": "desmume"}, 43 - "desmume2015": {"repo": "desmume2015"}, 44 - "dolphin": {"repo": "dolphin"}, 45 - "dosbox": {"repo": "dosbox-libretro"}, 46 - "eightyone": {"repo": "81-libretro"}, 47 - "fbalpha2012": {"repo": "fbalpha2012"}, 48 - "fbneo": {"repo": "fbneo"}, 49 - "fceumm": {"repo": "libretro-fceumm"}, 50 - "flycast": {"repo": "flycast"}, 51 - "fmsx": {"repo": "fmsx-libretro"}, 52 - "freeintv": {"repo": "freeintv"}, 53 - "gambatte": {"repo": "gambatte-libretro"}, 54 - "genesis-plus-gx": {"repo": "Genesis-Plus-GX"}, 55 - "gpsp": {"repo": "gpsp"}, 56 - "gw": {"repo": "gw-libretro"}, 57 - "handy": {"repo": "libretro-handy"}, 58 - "hatari": {"repo": "hatari"}, 59 - "mame": {"repo": "mame"}, 60 - "mame2000": {"repo": "mame2000-libretro"}, 61 - "mame2003": {"repo": "mame2003-libretro"}, 62 - "mame2003-plus": {"repo": "mame2003-plus-libretro"}, 63 - "mame2010": {"repo": "mame2010-libretro"}, 64 - "mame2015": {"repo": "mame2015-libretro"}, 65 - "mame2016": {"repo": "mame2016-libretro"}, 66 - "melonds": {"repo": "melonds"}, 67 - "mesen": {"repo": "mesen"}, 68 - "mesen-s": {"repo": "mesen-s"}, 69 - "meteor": {"repo": "meteor-libretro"}, 70 - "mgba": {"repo": "mgba"}, 71 - "mupen64plus": {"repo": "mupen64plus-libretro-nx"}, 72 - "neocd": {"repo": "neocd_libretro"}, 73 - "nestopia": {"repo": "nestopia"}, 74 - "np2kai": {"repo": "NP2kai", "owner": "AZO234", "fetch_submodules": True}, 75 - "o2em": {"repo": "libretro-o2em"}, 76 - "opera": {"repo": "opera-libretro"}, 77 - "parallel-n64": {"repo": "parallel-n64"}, 78 - "pcsx2": {"repo": "pcsx2"}, 79 - "pcsx_rearmed": {"repo": "pcsx_rearmed"}, 80 - "picodrive": {"repo": "picodrive", "fetch_submodules": True}, 81 - "play": {"repo": "Play-", "owner": "jpd002", "fetch_submodules": True}, 82 - "ppsspp": {"repo": "ppsspp", "owner": "hrydgard", "fetch_submodules": True}, 83 - "prboom": {"repo": "libretro-prboom"}, 84 - "prosystem": {"repo": "prosystem-libretro"}, 85 - "quicknes": {"repo": "QuickNES_Core"}, 86 - "sameboy": {"repo": "sameboy"}, 87 - "scummvm": {"repo": "scummvm"}, 88 - "smsplus-gx": {"repo": "smsplus-gx"}, 89 - "snes9x": {"repo": "snes9x", "owner": "snes9xgit"}, 90 - "snes9x2002": {"repo": "snes9x2002"}, 91 - "snes9x2005": {"repo": "snes9x2005"}, 92 - "snes9x2010": {"repo": "snes9x2010"}, 93 - "stella": {"repo": "stella", "owner": "stella-emu"}, 94 - "stella2014": {"repo": "stella2014-libretro"}, 95 - "swanstation": {"repo": "swanstation"}, 96 - "tgbdual": {"repo": "tgbdual-libretro"}, 97 - "thepowdertoy": {"repo": "ThePowderToy"}, 98 - "tic80": {"repo": "tic-80", "fetch_submodules": True}, 99 - "vba-m": {"repo": "vbam-libretro"}, 100 - "vba-next": {"repo": "vba-next"}, 101 - "vecx": {"repo": "libretro-vecx"}, 102 - "virtualjaguar": {"repo": "virtualjaguar-libretro"}, 103 - "yabause": {"repo": "yabause"}, 104 - } 105 - 106 - 107 - def info(*msg): 108 - print(*msg, file=sys.stderr) 109 - 110 - 111 - def get_repo_hash_fetchFromGitHub( 112 - repo, 113 - owner="libretro", 114 - deep_clone=False, 115 - fetch_submodules=False, 116 - leave_dot_git=False, 117 - rev=None, 118 - ): 119 - extra_args = [] 120 - if deep_clone: 121 - extra_args.append("--deep-clone") 122 - if fetch_submodules: 123 - extra_args.append("--fetch-submodules") 124 - if leave_dot_git: 125 - extra_args.append("--leave-dot-git") 126 - if rev: 127 - extra_args.append("--rev") 128 - extra_args.append(rev) 129 - result = subprocess.run( 130 - ["nix-prefetch-github", owner, repo, *extra_args], 131 - check=True, 132 - capture_output=True, 133 - text=True, 134 - ) 135 - j = json.loads(result.stdout) 136 - # Remove False values 137 - return {k: v for k, v in j.items() if v} 138 - 139 - 140 - def get_repo_hash(fetcher="fetchFromGitHub", **kwargs): 141 - if fetcher == "fetchFromGitHub": 142 - return get_repo_hash_fetchFromGitHub(**kwargs) 143 - else: 144 - raise ValueError(f"Unsupported fetcher: {fetcher}") 145 - 146 - 147 - def get_repo_hashes(cores_to_update=[]): 148 - with open(HASHES_PATH) as f: 149 - repo_hashes = json.loads(f.read()) 150 - 151 - for core, repo in CORES.items(): 152 - if core in cores_to_update: 153 - info(f"Getting repo hash for '{core}'...") 154 - repo_hashes[core] = get_repo_hash(**repo) 155 - else: 156 - info(f"Skipping '{core}'...") 157 - 158 - return repo_hashes 159 - 160 - 161 - def main(): 162 - # If you don't want to update all cores, pass the name of the cores you 163 - # want to update on the command line. E.g.: 164 - # $ ./update.py citra snes9x 165 - if len(sys.argv) > 1: 166 - cores_to_update = sys.argv[1:] 167 - else: 168 - cores_to_update = CORES.keys() 169 - 170 - repo_hashes = get_repo_hashes(cores_to_update) 171 - info(f"Generating '{HASHES_PATH}'...") 172 - with open(HASHES_PATH, "w") as f: 173 - f.write(json.dumps(dict(sorted(repo_hashes.items())), indent=4)) 174 - f.write("\n") 175 - info("Finished!") 176 - 177 - 178 - if __name__ == "__main__": 179 - main()
+167
pkgs/applications/emulators/retroarch/update_cores.py
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -I nixpkgs=../../../../ -i python3 -p "python3.withPackages (ps: with ps; [ requests nix-prefetch-github ])" -p "git" 3 + 4 + import json 5 + import sys 6 + import subprocess 7 + from pathlib import Path 8 + 9 + SCRIPT_PATH = Path(__file__).absolute().parent 10 + HASHES_PATH = SCRIPT_PATH / "hashes.json" 11 + CORES = { 12 + "atari800": {"repo": "libretro-atari800"}, 13 + "beetle-gba": {"repo": "beetle-gba-libretro"}, 14 + "beetle-lynx": {"repo": "beetle-lynx-libretro"}, 15 + "beetle-ngp": {"repo": "beetle-ngp-libretro"}, 16 + "beetle-pce-fast": {"repo": "beetle-pce-fast-libretro"}, 17 + "beetle-pcfx": {"repo": "beetle-pcfx-libretro"}, 18 + "beetle-psx": {"repo": "beetle-psx-libretro"}, 19 + "beetle-saturn": {"repo": "beetle-saturn-libretro"}, 20 + "beetle-snes": {"repo": "beetle-bsnes-libretro"}, 21 + "beetle-supergrafx": {"repo": "beetle-supergrafx-libretro"}, 22 + "beetle-vb": {"repo": "beetle-vb-libretro"}, 23 + "beetle-wswan": {"repo": "beetle-wswan-libretro"}, 24 + "blastem": {"repo": "blastem"}, 25 + "bluemsx": {"repo": "bluemsx-libretro"}, 26 + "bsnes": {"repo": "bsnes-libretro"}, 27 + "bsnes-hd": {"repo": "bsnes-hd", "owner": "DerKoun"}, 28 + "bsnes-mercury": {"repo": "bsnes-mercury"}, 29 + "citra": { "repo": "citra", "fetch_submodules": True }, 30 + "desmume": {"repo": "desmume"}, 31 + "desmume2015": {"repo": "desmume2015"}, 32 + "dolphin": {"repo": "dolphin"}, 33 + "dosbox": {"repo": "dosbox-libretro"}, 34 + "eightyone": {"repo": "81-libretro"}, 35 + "fbalpha2012": {"repo": "fbalpha2012"}, 36 + "fbneo": {"repo": "fbneo"}, 37 + "fceumm": {"repo": "libretro-fceumm"}, 38 + "flycast": {"repo": "flycast"}, 39 + "fmsx": {"repo": "fmsx-libretro"}, 40 + "freeintv": {"repo": "freeintv"}, 41 + "gambatte": {"repo": "gambatte-libretro"}, 42 + "genesis-plus-gx": {"repo": "Genesis-Plus-GX"}, 43 + "gpsp": {"repo": "gpsp"}, 44 + "gw": {"repo": "gw-libretro"}, 45 + "handy": {"repo": "libretro-handy"}, 46 + "hatari": {"repo": "hatari"}, 47 + "mame": {"repo": "mame"}, 48 + "mame2000": {"repo": "mame2000-libretro"}, 49 + "mame2003": {"repo": "mame2003-libretro"}, 50 + "mame2003-plus": {"repo": "mame2003-plus-libretro"}, 51 + "mame2010": {"repo": "mame2010-libretro"}, 52 + "mame2015": {"repo": "mame2015-libretro"}, 53 + "mame2016": {"repo": "mame2016-libretro"}, 54 + "melonds": {"repo": "melonds"}, 55 + "mesen": {"repo": "mesen"}, 56 + "mesen-s": {"repo": "mesen-s"}, 57 + "meteor": {"repo": "meteor-libretro"}, 58 + "mgba": {"repo": "mgba"}, 59 + "mupen64plus": {"repo": "mupen64plus-libretro-nx"}, 60 + "neocd": {"repo": "neocd_libretro"}, 61 + "nestopia": {"repo": "nestopia"}, 62 + "np2kai": {"repo": "NP2kai", "owner": "AZO234", "fetch_submodules": True}, 63 + "o2em": {"repo": "libretro-o2em"}, 64 + "opera": {"repo": "opera-libretro"}, 65 + "parallel-n64": {"repo": "parallel-n64"}, 66 + "pcsx2": {"repo": "pcsx2"}, 67 + "pcsx_rearmed": {"repo": "pcsx_rearmed"}, 68 + "picodrive": {"repo": "picodrive", "fetch_submodules": True}, 69 + "play": {"repo": "Play-", "owner": "jpd002", "fetch_submodules": True}, 70 + "ppsspp": {"repo": "ppsspp", "owner": "hrydgard", "fetch_submodules": True}, 71 + "prboom": {"repo": "libretro-prboom"}, 72 + "prosystem": {"repo": "prosystem-libretro"}, 73 + "quicknes": {"repo": "QuickNES_Core"}, 74 + "sameboy": {"repo": "sameboy"}, 75 + "scummvm": {"repo": "scummvm"}, 76 + "smsplus-gx": {"repo": "smsplus-gx"}, 77 + "snes9x": {"repo": "snes9x", "owner": "snes9xgit"}, 78 + "snes9x2002": {"repo": "snes9x2002"}, 79 + "snes9x2005": {"repo": "snes9x2005"}, 80 + "snes9x2010": {"repo": "snes9x2010"}, 81 + "stella": {"repo": "stella", "owner": "stella-emu"}, 82 + "stella2014": {"repo": "stella2014-libretro"}, 83 + "swanstation": {"repo": "swanstation"}, 84 + "tgbdual": {"repo": "tgbdual-libretro"}, 85 + "thepowdertoy": {"repo": "ThePowderToy"}, 86 + "tic80": {"repo": "tic-80", "fetch_submodules": True}, 87 + "vba-m": {"repo": "vbam-libretro"}, 88 + "vba-next": {"repo": "vba-next"}, 89 + "vecx": {"repo": "libretro-vecx"}, 90 + "virtualjaguar": {"repo": "virtualjaguar-libretro"}, 91 + "yabause": {"repo": "yabause"}, 92 + } 93 + 94 + 95 + def info(*msg): 96 + print(*msg, file=sys.stderr) 97 + 98 + 99 + def get_repo_hash_fetchFromGitHub( 100 + repo, 101 + owner="libretro", 102 + deep_clone=False, 103 + fetch_submodules=False, 104 + leave_dot_git=False, 105 + rev=None, 106 + ): 107 + extra_args = [] 108 + if deep_clone: 109 + extra_args.append("--deep-clone") 110 + if fetch_submodules: 111 + extra_args.append("--fetch-submodules") 112 + if leave_dot_git: 113 + extra_args.append("--leave-dot-git") 114 + if rev: 115 + extra_args.append("--rev") 116 + extra_args.append(rev) 117 + result = subprocess.run( 118 + ["nix-prefetch-github", owner, repo, *extra_args], 119 + check=True, 120 + capture_output=True, 121 + text=True, 122 + ) 123 + j = json.loads(result.stdout) 124 + # Remove False values 125 + return {k: v for k, v in j.items() if v} 126 + 127 + 128 + def get_repo_hash(fetcher="fetchFromGitHub", **kwargs): 129 + if fetcher == "fetchFromGitHub": 130 + return get_repo_hash_fetchFromGitHub(**kwargs) 131 + else: 132 + raise ValueError(f"Unsupported fetcher: {fetcher}") 133 + 134 + 135 + def get_repo_hashes(cores_to_update=[]): 136 + with open(HASHES_PATH) as f: 137 + repo_hashes = json.loads(f.read()) 138 + 139 + for core, repo in CORES.items(): 140 + if core in cores_to_update: 141 + info(f"Getting repo hash for '{core}'...") 142 + repo_hashes[core] = get_repo_hash(**repo) 143 + else: 144 + info(f"Skipping '{core}'...") 145 + 146 + return repo_hashes 147 + 148 + 149 + def main(): 150 + # If you don't want to update all cores, pass the name of the cores you 151 + # want to update on the command line. E.g.: 152 + # $ ./update.py citra snes9x 153 + if len(sys.argv) > 1: 154 + cores_to_update = sys.argv[1:] 155 + else: 156 + cores_to_update = CORES.keys() 157 + 158 + repo_hashes = get_repo_hashes(cores_to_update) 159 + info(f"Generating '{HASHES_PATH}'...") 160 + with open(HASHES_PATH, "w") as f: 161 + f.write(json.dumps(dict(sorted(repo_hashes.items())), indent=4)) 162 + f.write("\n") 163 + info("Finished!") 164 + 165 + 166 + if __name__ == "__main__": 167 + main()
+10 -6
pkgs/applications/emulators/retroarch/wrapper.nix
··· 8 8 9 9 buildCommand = '' 10 10 mkdir -p $out/lib 11 - for coreDir in $cores 12 - do 11 + for coreDir in $cores; do 13 12 ln -s $coreDir/* $out/lib/. 14 13 done 15 14 ··· 29 28 30 29 meta = with retroarch.meta; { 31 30 inherit changelog description homepage license maintainers platforms; 32 - longDescription = 33 - "RetroArch is the reference frontend for the libretro API. The following cores are included: " 34 - + lib.concatStringsSep ", " (map (x: "${x.name}") cores) 35 - + "."; 31 + longDescription = '' 32 + RetroArch is the reference frontend for the libretro API. 33 + 34 + The following cores are included: 35 + ${lib.concatStringsSep "\n" (map (x: " - ${x.name}") cores)} 36 + ''; 37 + # FIXME: exits with error on macOS: 38 + # No Info.plist file in application bundle or no NSPrincipalClass in the Info.plist file, exiting 39 + broken = stdenv.isDarwin; 36 40 }; 37 41 }
+2 -2
pkgs/applications/misc/blender/default.nix
··· 5 5 , openvdb, libXxf86vm, tbb, alembic 6 6 , zlib, zstd, fftw, opensubdiv, freetype, jemalloc, ocl-icd, addOpenGLRunpath 7 7 , jackaudioSupport ? false, libjack2 8 - , cudaSupport ? config.cudaSupport or false, cudatoolkit_11 8 + , cudaSupport ? config.cudaSupport or false, cudaPackages ? {} 9 9 , colladaSupport ? true, opencollada 10 10 , spaceNavSupport ? stdenv.isLinux, libspnav 11 11 , makeWrapper ··· 63 63 llvmPackages.openmp SDL Cocoa CoreGraphics ForceFeedback OpenAL OpenGL 64 64 ]) 65 65 ++ optional jackaudioSupport libjack2 66 - ++ optional cudaSupport cudatoolkit_11 66 + ++ optional cudaSupport cudaPackages.cudatoolkit 67 67 ++ optional colladaSupport opencollada 68 68 ++ optional spaceNavSupport libspnav; 69 69 pythonPath = with python310Packages; [ numpy requests ];
+3 -1
pkgs/applications/misc/firestarter/default.nix
··· 8 8 , glibc 9 9 , git 10 10 , pkg-config 11 - , cudatoolkit 11 + , cudaPackages ? {} 12 12 , withCuda ? false 13 13 }: 14 14 15 15 let 16 + inherit (cudaPackages) cudatoolkit; 17 + 16 18 hwloc = stdenv.mkDerivation rec { 17 19 pname = "hwloc"; 18 20 version = "2.2.0";
+4 -1
pkgs/applications/networking/cluster/terraform-providers/default.nix
··· 104 104 ultradns = archived "2022/01"; 105 105 vthunder = throw "provider was renamed to thunder on 2022/01"; 106 106 }; 107 + 108 + # excluding aliases, used by terraform-full 109 + actualProviders = automated-providers // special-providers; 107 110 in 108 - automated-providers // special-providers // removed-providers // { inherit mkProvider; } 111 + actualProviders // removed-providers // { inherit actualProviders mkProvider; }
+1 -1
pkgs/applications/networking/cluster/terraform/default.nix
··· 85 85 passthru = { 86 86 withPlugins = newplugins: 87 87 withPlugins (x: newplugins x ++ actualPlugins); 88 - full = withPlugins (p: lib.filter lib.isDerivation (lib.attrValues p)); 88 + full = withPlugins (p: lib.filter lib.isDerivation (lib.attrValues p.actualProviders)); 89 89 90 90 # Expose wrappers around the override* functions of the terraform 91 91 # derivation.
+2 -2
pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix
··· 47 47 }); 48 48 in nodejs-14_x.pkgs.deltachat-desktop.override rec { 49 49 pname = "deltachat-desktop"; 50 - version = "1.28.1"; 50 + version = "1.28.2"; 51 51 52 52 src = fetchFromGitHub { 53 53 owner = "deltachat"; 54 54 repo = "deltachat-desktop"; 55 55 rev = "v${version}"; 56 - hash = "sha256-i2Cb2HfapYTaxg5IUl4pGWYUM6o/4mWgMO7QsBqDHoU="; 56 + hash = "sha256-jhtriDnt8Yl8eCmUTEyoPjccZV8RNAchMykkkiRpF60="; 57 57 }; 58 58 59 59 nativeBuildInputs = [
+2 -2
pkgs/applications/networking/instant-messengers/deltachat-desktop/package.json
··· 1 1 { 2 2 "name": "deltachat-desktop", 3 - "version": "1.28.1", 3 + "version": "1.28.2", 4 4 "dependencies": { 5 5 "@blueprintjs/core": "^3.22.3", 6 6 "@deltachat/message_parser_wasm": "^0.3.0", ··· 51 51 "@types/react-window": "^1.8.4", 52 52 "@types/react-window-infinite-loader": "^1.0.4", 53 53 "@types/url-parse": "^1.4.3", 54 - "electron": "^14.2.6", 54 + "electron": "^14.2.9", 55 55 "esbuild": "^0.12.29", 56 56 "glob-watcher": "^5.0.5", 57 57 "sass": "^1.26.5",
+2 -2
pkgs/applications/office/morgen/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "morgen"; 6 - version = "2.5.0"; 6 + version = "2.5.2"; 7 7 8 8 src = fetchurl { 9 9 url = "https://download.todesktop.com/210203cqcj00tw1/morgen-${version}.deb"; 10 - sha256 = "sha256-6hBhfJ18ROCfmqoxrJZ5TiYCFb1xZKsJeobXFy5yfQM="; 10 + sha256 = "sha256-KU58UjhFDEJGzHEGVbrii8a9cZwr7ulkQgK1Fea9smk="; 11 11 }; 12 12 13 13 nativeBuildInputs = [
+7 -3
pkgs/applications/science/math/caffe/default.nix
··· 13 13 , Accelerate, CoreGraphics, CoreVideo 14 14 , lmdbSupport ? true, lmdb 15 15 , leveldbSupport ? true, leveldb, snappy 16 - , cudaSupport ? config.cudaSupport or false, cudatoolkit 17 - , cudnnSupport ? cudaSupport, cudnn ? null 18 - , ncclSupport ? false, nccl ? null 16 + , cudaSupport ? config.cudaSupport or false, cudaPackages ? {} 17 + , cudnnSupport ? cudaSupport 18 + , ncclSupport ? false 19 19 , pythonSupport ? false, python ? null, numpy ? null 20 20 , substituteAll 21 21 }: 22 + 23 + let 24 + inherit (cudaPackages) cudatoolkit cudnn nccl; 25 + in 22 26 23 27 assert leveldbSupport -> (leveldb != null && snappy != null); 24 28 assert cudnnSupport -> cudaSupport;
+6 -2
pkgs/applications/science/math/cntk/default.nix
··· 2 2 , fetchpatch 3 3 , openblas, blas, lapack, opencv3, libzip, boost, protobuf, mpi 4 4 , onebitSGDSupport ? false 5 - , cudaSupport ? false, addOpenGLRunpath, cudatoolkit, nvidia_x11 6 - , cudnnSupport ? cudaSupport, cudnn 5 + , cudaSupport ? false, cudaPackages ? {}, addOpenGLRunpath, cudatoolkit, nvidia_x11 6 + , cudnnSupport ? cudaSupport 7 7 }: 8 + 9 + let 10 + inherit (cudaPackages) cudatoolkit cudnn; 11 + in 8 12 9 13 assert cudnnSupport -> cudaSupport; 10 14 assert blas.implementation == "openblas" && lapack.implementation == "openblas";
+6 -2
pkgs/applications/science/math/mxnet/default.nix
··· 1 1 { config, stdenv, lib, fetchurl, fetchpatch, bash, cmake 2 2 , opencv3, gtest, blas, gomp, llvmPackages, perl 3 - , cudaSupport ? config.cudaSupport or false, cudatoolkit, nvidia_x11 4 - , cudnnSupport ? cudaSupport, cudnn 3 + , cudaSupport ? config.cudaSupport or false, cudaPackages ? {}, nvidia_x11 4 + , cudnnSupport ? cudaSupport 5 5 , cudaCapabilities ? [ "3.7" "5.0" "6.0" "7.0" "7.5" "8.0" "8.6" ] 6 6 }: 7 + 8 + let 9 + inherit (cudaPackages) cudatoolkit cudnn; 10 + in 7 11 8 12 assert cudnnSupport -> cudaSupport; 9 13
+4 -4
pkgs/data/themes/flat-remix-gnome/default.nix
··· 7 7 let 8 8 # make install will use dconf to find desktop background file uri. 9 9 # consider adding an args to allow specify pictures manually. 10 - # https://github.com/daniruiz/flat-remix-gnome/blob/20211223/Makefile#L38 10 + # https://github.com/daniruiz/flat-remix-gnome/blob/20220407/Makefile#L38 11 11 fake-dconf = writeScriptBin "dconf" "echo -n"; 12 12 in 13 13 stdenv.mkDerivation rec { 14 14 pname = "flat-remix-gnome"; 15 - version = "20211223"; 15 + version = "20220407"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "daniruiz"; 19 19 repo = pname; 20 20 rev = version; 21 - hash = "sha256-hAehJNDr8r0Jhhz0h7ygXI08ouNiWDT16SPm49i90lM="; 21 + hash = "sha256-Q54uF49NbvupN6LH80bgRtvyW7Cqm9vqsWXDkQrF4HQ="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ glib fake-dconf ]; 25 25 makeFlags = [ "PREFIX=$(out)" ]; 26 26 preInstall = '' 27 27 # make install will back up this file, it will fail if the file doesn't exist. 28 - # https://github.com/daniruiz/flat-remix-gnome/blob/20211223/Makefile#L56 28 + # https://github.com/daniruiz/flat-remix-gnome/blob/20220407/Makefile#L56 29 29 mkdir -p $out/share/gnome-shell/ 30 30 touch $out/share/gnome-shell/gnome-shell-theme.gresource 31 31 '';
+14
pkgs/development/compilers/cudatoolkit/auto-add-opengl-runpath-hook.sh
··· 1 + # Run autoOpenGLRunpath on all files 2 + echo "Sourcing auto-add-opengl-runpath-hook" 3 + 4 + autoAddOpenGLRunpathPhase () { 5 + # TODO: support multiple outputs 6 + for file in $(find ${out,lib,bin} -type f); do 7 + addOpenGLRunpath $file 8 + done 9 + } 10 + 11 + if [ -z "${dontUseAutoAddOpenGLRunpath-}" ]; then 12 + echo "Using autoAddOpenGLRunpathPhase" 13 + postFixupHooks+=(autoAddOpenGLRunpathPhase) 14 + fi
+1
pkgs/development/compilers/cudatoolkit/common.nix
··· 254 254 ''; 255 255 passthru = { 256 256 cc = gcc; 257 + majorMinorVersion = lib.versions.majorMinor version; 257 258 majorVersion = lib.versions.majorMinor version; 258 259 }; 259 260
-94
pkgs/development/compilers/cudatoolkit/default.nix
··· 1 - { callPackage 2 - , fetchurl 3 - , gcc7 4 - , gcc9 5 - , gcc10 6 - , lib 7 - }: 8 - 9 - let 10 - common = callPackage ./common.nix; 11 - in 12 - rec { 13 - cudatoolkit_10_0 = common { 14 - version = "10.0.130"; 15 - url = "https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_410.48_linux"; 16 - sha256 = "16p3bv1lwmyqpxil8r951h385sy9asc578afrc7lssa68c71ydcj"; 17 - 18 - gcc = gcc7; 19 - }; 20 - 21 - cudatoolkit_10_1 = common { 22 - version = "10.1.243"; 23 - url = "https://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_418.87.00_linux.run"; 24 - sha256 = "0caxhlv2bdq863dfp6wj7nad66ml81vasq2ayf11psvq2b12vhp7"; 25 - 26 - gcc = gcc7; 27 - }; 28 - 29 - cudatoolkit_10_2 = common { 30 - version = "10.2.89"; 31 - url = "http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_440.33.01_linux.run"; 32 - sha256 = "04fasl9sjkb1jvchvqgaqxprnprcz7a8r52249zp2ijarzyhf3an"; 33 - 34 - gcc = gcc7; 35 - }; 36 - 37 - cudatoolkit_10 = cudatoolkit_10_2; 38 - 39 - cudatoolkit_11_0 = common { 40 - version = "11.0.3"; 41 - url = "https://developer.download.nvidia.com/compute/cuda/11.0.3/local_installers/cuda_11.0.3_450.51.06_linux.run"; 42 - sha256 = "1h4c69nfrgm09jzv8xjnjcvpq8n4gnlii17v3wzqry5d13jc8ydh"; 43 - 44 - gcc = gcc9; 45 - }; 46 - 47 - cudatoolkit_11_1 = common { 48 - version = "11.1.1"; 49 - url = "https://developer.download.nvidia.com/compute/cuda/11.1.1/local_installers/cuda_11.1.1_455.32.00_linux.run"; 50 - sha256 = "13yxv2fgvdnqqbwh1zb80x4xhyfkbajfkwyfpdg9493010kngbiy"; 51 - gcc = gcc9; 52 - }; 53 - 54 - cudatoolkit_11_2 = common { 55 - version = "11.2.1"; 56 - url = "https://developer.download.nvidia.com/compute/cuda/11.2.1/local_installers/cuda_11.2.1_460.32.03_linux.run"; 57 - sha256 = "sha256-HamMuJfMX1inRFpKZspPaSaGdwbLOvWKZpzc2Nw9F8g="; 58 - gcc = gcc9; 59 - }; 60 - 61 - cudatoolkit_11_3 = common { 62 - version = "11.3.1"; 63 - url = "https://developer.download.nvidia.com/compute/cuda/11.3.1/local_installers/cuda_11.3.1_465.19.01_linux.run"; 64 - sha256 = "0d19pwcqin76scbw1s5kgj8n0z1p4v1hyfldqmamilyfxycfm4xd"; 65 - gcc = gcc9; 66 - }; 67 - 68 - cudatoolkit_11_4 = common { 69 - version = "11.4.2"; 70 - url = "https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda_11.4.2_470.57.02_linux.run"; 71 - sha256 = "sha256-u9h8oOkT+DdFSnljZ0c1E83e9VUILk2G7Zo4ZZzIHwo="; 72 - gcc = gcc10; # can bump to 11 along with stdenv.cc 73 - }; 74 - 75 - cudatoolkit_11_5 = common { 76 - version = "11.5.0"; 77 - url = "https://developer.download.nvidia.com/compute/cuda/11.5.0/local_installers/cuda_11.5.0_495.29.05_linux.run"; 78 - sha256 = "sha256-rgoWk9lJfPPYHmlIlD43lGNpANtxyY1Y7v2sr38aHkw="; 79 - gcc = gcc10; # can bump to 11 along with stdenv.cc 80 - }; 81 - 82 - cudatoolkit_11_6 = common { 83 - version = "11.6.1"; 84 - url = "https://developer.download.nvidia.com/compute/cuda/11.6.1/local_installers/cuda_11.6.1_510.47.03_linux.run"; 85 - sha256 = "sha256-qyGa/OALdCABEyaYZvv/derQN7z8I1UagzjCaEyYTX4="; 86 - gcc = gcc10; # can bump to 11 along with stdenv.cc 87 - }; 88 - 89 - # Make sure to only ever update this to a version that is compatible with the 90 - # latest cudnn, nccl, cutensor, etc! It sometimes happens that CUDA versions 91 - # are released prior to compatibility with the rest of the ecosystem. And 92 - # don't forget to request a review from @NixOS/cuda-maintainers! 93 - cudatoolkit_11 = cudatoolkit_11_5; # update me to 11_6 when cudnn>=8.3.3 94 - }
+15
pkgs/development/compilers/cudatoolkit/extension.nix
··· 1 + final: prev: let 2 + ### Cuda Toolkit 3 + 4 + # Function to build the class cudatoolkit package 5 + buildCudaToolkitPackage = final.callPackage ./common.nix; 6 + 7 + # Version info for the classic cudatoolkit packages that contain everything that is in redist. 8 + cudatoolkitVersions = final.lib.importTOML ./versions.toml; 9 + 10 + ### Add classic cudatoolkit package 11 + cudatoolkit = buildCudaToolkitPackage ((attrs: attrs // { gcc = prev.pkgs.${attrs.gcc}; }) cudatoolkitVersions.${final.cudaVersion}); 12 + 13 + in { 14 + inherit cudatoolkit; 15 + }
+51
pkgs/development/compilers/cudatoolkit/redist/build-cuda-redist-package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , autoPatchelfHook 5 + , autoAddOpenGLRunpathHook 6 + }: 7 + 8 + pname: 9 + attrs: 10 + 11 + let 12 + arch = "linux-x86_64"; 13 + in stdenv.mkDerivation { 14 + inherit pname; 15 + inherit (attrs) version; 16 + 17 + src = assert (lib.hasAttr arch attrs); fetchurl { 18 + url = "https://developer.download.nvidia.com/compute/cuda/redist/${attrs.${arch}.relative_path}"; 19 + inherit (attrs.${arch}) sha256; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + autoPatchelfHook 24 + # This hook will make sure libcuda can be found 25 + # in typically /lib/opengl-driver by adding that 26 + # directory to the rpath of all ELF binaries. 27 + # Check e.g. with `patchelf --print-rpath path/to/my/binary 28 + autoAddOpenGLRunpathHook 29 + ]; 30 + 31 + buildInputs = [ 32 + stdenv.cc.cc.lib 33 + ]; 34 + 35 + dontBuild = true; 36 + 37 + # TODO: choose whether to install static/dynamic libs 38 + installPhase = '' 39 + runHook preInstall 40 + rm LICENSE 41 + mkdir -p $out 42 + mv * $out 43 + runHook postInstall 44 + ''; 45 + 46 + meta = { 47 + description = attrs.name; 48 + license = lib.licenses.unfree; 49 + platforms = lib.optionals (lib.hasAttr arch attrs) [ "x86_64-linux" ]; 50 + }; 51 + }
+32
pkgs/development/compilers/cudatoolkit/redist/extension.nix
··· 1 + final: prev: let 2 + 3 + inherit (final) callPackage; 4 + inherit (prev) cudaVersion lib pkgs; 5 + 6 + ### Cuda Toolkit Redist 7 + 8 + # Manifest files for redist cudatoolkit. These can be found at 9 + # https://developer.download.nvidia.com/compute/cuda/redist/ 10 + cudaToolkitRedistManifests = { 11 + "11.4" = ./manifests/redistrib_11.4.4.json; 12 + "11.5" = ./manifests/redistrib_11.5.2.json; 13 + "11.6" = ./manifests/redistrib_11.6.2.json; 14 + }; 15 + 16 + # Function to build a single cudatoolkit redist package 17 + buildCudaToolkitRedistPackage = callPackage ./build-cuda-redist-package.nix { }; 18 + 19 + # Function that builds all cudatoolkit redist packages given a cuda version and manifest file 20 + buildCudaToolkitRedistPackages = { version, manifest }: let 21 + attrs = lib.filterAttrs (key: value: key != "release_date") (lib.importJSON manifest); 22 + in lib.mapAttrs buildCudaToolkitRedistPackage attrs; 23 + 24 + redistExists = cudaToolkitRedistManifests ? "${cudaVersion}"; 25 + 26 + # All cudatoolkit redist packages for the current cuda version 27 + cudaToolkitRedistPackages = if 28 + lib.hasAttr cudaVersion cudaToolkitRedistManifests 29 + then buildCudaToolkitRedistPackages { version = cudaVersion; manifest = cudaToolkitRedistManifests.${cudaVersion}; } 30 + else {}; 31 + 32 + in cudaToolkitRedistPackages
+862
pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_11.4.4.json
··· 1 + { 2 + "release_date": "2022-02-01", 3 + "cuda_cccl": { 4 + "name": "CXX Core Compute Libraries", 5 + "license": "CUDA Toolkit", 6 + "version": "11.4.122", 7 + "linux-x86_64": { 8 + "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-11.4.122-archive.tar.xz", 9 + "sha256": "150b163bde4975154d6238ae1272c74df81b303dccca1f7637bd91027b65afc5", 10 + "md5": "e0e41040716a4d6113410d7cb25c7906", 11 + "size": "951832" 12 + }, 13 + "linux-ppc64le": { 14 + "relative_path": "cuda_cccl/linux-ppc64le/cuda_cccl-linux-ppc64le-11.4.122-archive.tar.xz", 15 + "sha256": "0d1d729ac3f52bdd04f197a6cef295b3463c4975d70dbd97f4e1b08a4857f488", 16 + "md5": "f615eccb3b8d694f4c7aa864c93959d7", 17 + "size": "951780" 18 + }, 19 + "linux-sbsa": { 20 + "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-11.4.122-archive.tar.xz", 21 + "sha256": "98f495b99c68fae54fe728e72aa3b8e2e5b1d77c9fd4946370cec3b063a7fcf3", 22 + "md5": "28692dd487b5936dbfac70ac56b65561", 23 + "size": "951340" 24 + }, 25 + "windows-x86_64": { 26 + "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-11.4.122-archive.zip", 27 + "sha256": "d721c4bcc5bf8054eb944b7c3203ce5f593523f798559f3f4c1effdd8ed36f48", 28 + "md5": "fa6bbf1291ebdd8f63f4f5176be4ae9c", 29 + "size": "2422426" 30 + } 31 + }, 32 + "cuda_cudart": { 33 + "name": "CUDA Runtime (cudart)", 34 + "license": "CUDA Toolkit", 35 + "version": "11.4.148", 36 + "linux-x86_64": { 37 + "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-11.4.148-archive.tar.xz", 38 + "sha256": "36bd6f1ea8711f69405ebd0b26d1f791a6ef6eb01cc3f01ba4231eb8ec09c208", 39 + "md5": "b98036aa5e633eb19b7ef2e32e8811a7", 40 + "size": "828732" 41 + }, 42 + "linux-ppc64le": { 43 + "relative_path": "cuda_cudart/linux-ppc64le/cuda_cudart-linux-ppc64le-11.4.148-archive.tar.xz", 44 + "sha256": "fb70c6477dce2cfc3ee13d361b76453ad92671be36f98fab50e2510f657eb00e", 45 + "md5": "594855b91ad5e9aa674d3a93d741431e", 46 + "size": "777952" 47 + }, 48 + "linux-sbsa": { 49 + "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-11.4.148-archive.tar.xz", 50 + "sha256": "d013448f76c22614e458de94b5289807d2d0934b3a5deb073b621401a222c16f", 51 + "md5": "2bcac7ef368ebeb804e33c4c7920ff78", 52 + "size": "783344" 53 + }, 54 + "windows-x86_64": { 55 + "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-11.4.148-archive.zip", 56 + "sha256": "e889e38929a95845409ed7dcdb0e6189343af5d17442a3b8c9f2ba297f0d262e", 57 + "md5": "c2fcccb16eec0cf4ed5807fcba2bd745", 58 + "size": "2898471" 59 + } 60 + }, 61 + "cuda_cuobjdump": { 62 + "name": "cuobjdump", 63 + "license": "CUDA Toolkit", 64 + "version": "11.4.120", 65 + "linux-x86_64": { 66 + "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-11.4.120-archive.tar.xz", 67 + "sha256": "dd9d51ca6d1772545ba77640f74bd1162ea4ffe223e17c8faa6e0a11ec9b5e2a", 68 + "md5": "0a28c3ee87dbe294afc73b90ff0c8101", 69 + "size": "110008" 70 + }, 71 + "linux-ppc64le": { 72 + "relative_path": "cuda_cuobjdump/linux-ppc64le/cuda_cuobjdump-linux-ppc64le-11.4.120-archive.tar.xz", 73 + "sha256": "3f5013ecd3ad3ef1f90f981189826ae9e5aadb7549a99e834c0f6d77c897a7ff", 74 + "md5": "56cabd1ef862f62c10a6fc9e47186797", 75 + "size": "115060" 76 + }, 77 + "linux-sbsa": { 78 + "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-11.4.120-archive.tar.xz", 79 + "sha256": "7f5c5e38780d9d44084f05ae091be1ad8672f370a6da17cc3f0a9a55e998163a", 80 + "md5": "5df0f75608960c20f5c2b3b11cb9a2d3", 81 + "size": "99752" 82 + }, 83 + "windows-x86_64": { 84 + "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-11.4.120-archive.zip", 85 + "sha256": "e371440535fae634c625a5dd02d18cd4accd11b9166703f9d5a95f7b721f09b0", 86 + "md5": "2d8a519c9ebe674a624b3b4cbfe91be3", 87 + "size": "2535529" 88 + } 89 + }, 90 + "cuda_cupti": { 91 + "name": "CUPTI", 92 + "license": "CUDA Toolkit", 93 + "version": "11.4.120", 94 + "linux-x86_64": { 95 + "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-11.4.120-archive.tar.xz", 96 + "sha256": "e589bd0955dc59cf7871dad3446e583316623dd899b67c34b808fbe14cde0209", 97 + "md5": "e80232b5629d4c26376411f28ec41b05", 98 + "size": "15499004" 99 + }, 100 + "linux-ppc64le": { 101 + "relative_path": "cuda_cupti/linux-ppc64le/cuda_cupti-linux-ppc64le-11.4.120-archive.tar.xz", 102 + "sha256": "24687d171f15101109dc428bd2236889bda617377b2a29bdfc0173095bcf28a8", 103 + "md5": "8a0aef6d201a0bb79af677d3aba9c790", 104 + "size": "8092764" 105 + }, 106 + "linux-sbsa": { 107 + "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-11.4.120-archive.tar.xz", 108 + "sha256": "d66367c166d27ddd6d7ed07f7a492dfed77b6eae505a7037a29537ce3e15eeb3", 109 + "md5": "81b11a7aac656df569ba5ab909d114c7", 110 + "size": "7301688" 111 + }, 112 + "windows-x86_64": { 113 + "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-11.4.120-archive.zip", 114 + "sha256": "74545a99d9a35c53790003006b29b9af5ca52b48f8703fdbc003665b42f5ec39", 115 + "md5": "745b2b131e2f421e65c7792547792b12", 116 + "size": "10080557" 117 + } 118 + }, 119 + "cuda_cuxxfilt": { 120 + "name": "CUDA cuxxfilt (demangler)", 121 + "license": "CUDA Toolkit", 122 + "version": "11.4.120", 123 + "linux-x86_64": { 124 + "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-11.4.120-archive.tar.xz", 125 + "sha256": "8dc88e398f976d20540e7c7b4f004f158b12cd9edf59a9ab988abbacc3e1452c", 126 + "md5": "2bc240881b64f762b053a6284a2f3c04", 127 + "size": "176072" 128 + }, 129 + "linux-ppc64le": { 130 + "relative_path": "cuda_cuxxfilt/linux-ppc64le/cuda_cuxxfilt-linux-ppc64le-11.4.120-archive.tar.xz", 131 + "sha256": "943e23feafe86b9b83441a51ada152b110031f7891dfa531d2ef85657360f70e", 132 + "md5": "eed7b9a4008d6d18a2cc3d1630169fb9", 133 + "size": "172424" 134 + }, 135 + "linux-sbsa": { 136 + "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-11.4.120-archive.tar.xz", 137 + "sha256": "50808b530cab8d37bfb73683c36afb9da843c6ca18d0394c1ce636ab4594ec9e", 138 + "md5": "f5f79636b09d840234f7b54a10e6245a", 139 + "size": "162820" 140 + }, 141 + "windows-x86_64": { 142 + "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-11.4.120-archive.zip", 143 + "sha256": "471a6106789596ac7f5de8bc9326b4a0193ecc35f7e5831fb32827a8cecaa2d0", 144 + "md5": "76ff5d04e065ab466b607d16019f01bd", 145 + "size": "166494" 146 + } 147 + }, 148 + "cuda_demo_suite": { 149 + "name": "CUDA Demo Suite", 150 + "license": "CUDA Toolkit", 151 + "version": "11.4.100", 152 + "linux-x86_64": { 153 + "relative_path": "cuda_demo_suite/linux-x86_64/cuda_demo_suite-linux-x86_64-11.4.100-archive.tar.xz", 154 + "sha256": "8cd9ffeb7742f4714166731ce8cbf74e2d2c8171d6b7091e0041816d47a7fd0c", 155 + "md5": "9327079f165128a1b6346c32b61088e3", 156 + "size": "3965292" 157 + }, 158 + "windows-x86_64": { 159 + "relative_path": "cuda_demo_suite/windows-x86_64/cuda_demo_suite-windows-x86_64-11.4.100-archive.zip", 160 + "sha256": "0ac19c9efa634042e1d38d97b75a656d9c0038219bdc5098a28d388ca7c427f2", 161 + "md5": "8b97b7acba08bbbbbf122f2e0d81bc21", 162 + "size": "5014818" 163 + } 164 + }, 165 + "cuda_documentation": { 166 + "name": "CUDA Documentation", 167 + "license": "CUDA Toolkit", 168 + "version": "11.4.126", 169 + "linux-x86_64": { 170 + "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-11.4.126-archive.tar.xz", 171 + "sha256": "2db25b21a6687803d146d34df0005f7d784ebd9303fbbd48d21f4508aedeb3fd", 172 + "md5": "107cb0150f83da7ebec6e118e4522498", 173 + "size": "61960" 174 + }, 175 + "linux-ppc64le": { 176 + "relative_path": "cuda_documentation/linux-ppc64le/cuda_documentation-linux-ppc64le-11.4.126-archive.tar.xz", 177 + "sha256": "85719df5828ef91205353dab12085707e0f29c188aea41afe91b36f86ec9b338", 178 + "md5": "afb21df7f560fa012593ff31021490a7", 179 + "size": "61912" 180 + }, 181 + "linux-sbsa": { 182 + "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-11.4.126-archive.tar.xz", 183 + "sha256": "94c9bc3ab45b1e951570d4312fbb3627ac8cedb88d1da4a57fbfd1677a03f2c8", 184 + "md5": "d05e8ec60b4aa7e494a960a32d18c7fa", 185 + "size": "61944" 186 + }, 187 + "windows-x86_64": { 188 + "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-11.4.126-archive.zip", 189 + "sha256": "a02dc2be494f4429ee5d183c218d5b27744f3daf0d29b50516dd501491a42f5a", 190 + "md5": "4e14de4b3f89d9ef951e8ea35ff810fe", 191 + "size": "99427" 192 + } 193 + }, 194 + "cuda_gdb": { 195 + "name": "CUDA GDB", 196 + "license": "CUDA Toolkit", 197 + "version": "11.4.120", 198 + "linux-x86_64": { 199 + "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-11.4.120-archive.tar.xz", 200 + "sha256": "ce9748c224b2163dba84cc9e0ebbd7ea29217eb4674bd9e7892290c7eaae372b", 201 + "md5": "e0de9ddbf59cfa699f4a1eb16961463e", 202 + "size": "64086980" 203 + }, 204 + "linux-ppc64le": { 205 + "relative_path": "cuda_gdb/linux-ppc64le/cuda_gdb-linux-ppc64le-11.4.120-archive.tar.xz", 206 + "sha256": "5084eee5c04c6a823e6e0f8c30eb2587b5ab31a949d21818ce769cd22191896e", 207 + "md5": "562494875b8b8ccc345b146f3894288b", 208 + "size": "63994280" 209 + }, 210 + "linux-sbsa": { 211 + "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-11.4.120-archive.tar.xz", 212 + "sha256": "c9f18f6f7262b39df76830798aa4dda5fbf455b95bd4af2eb5ae25ce77e3848c", 213 + "md5": "cbf494bf0bc03c39106825333ff777b0", 214 + "size": "63856896" 215 + } 216 + }, 217 + "cuda_memcheck": { 218 + "name": "CUDA Memcheck", 219 + "license": "CUDA Toolkit", 220 + "version": "11.4.120", 221 + "linux-x86_64": { 222 + "relative_path": "cuda_memcheck/linux-x86_64/cuda_memcheck-linux-x86_64-11.4.120-archive.tar.xz", 223 + "sha256": "6e1d64a2b31fec96a5eeb1d6ea914cfe83c671c3de4f987b6b5cda65d6e3b9e7", 224 + "md5": "5b70e9b1eb50d0fff5b5d56ae76b358d", 225 + "size": "139580" 226 + }, 227 + "linux-ppc64le": { 228 + "relative_path": "cuda_memcheck/linux-ppc64le/cuda_memcheck-linux-ppc64le-11.4.120-archive.tar.xz", 229 + "sha256": "3a4d4c876bbb032c1e611b22a79e2cdce44cc6691ed519a63886a06094385ab4", 230 + "md5": "97aa39e782ac0d935fa25dbad41274bd", 231 + "size": "148128" 232 + }, 233 + "windows-x86_64": { 234 + "relative_path": "cuda_memcheck/windows-x86_64/cuda_memcheck-windows-x86_64-11.4.120-archive.zip", 235 + "sha256": "d3357d2a41143f8007c17af45b7e5733e0ec4c0c1185322739232c7603221b88", 236 + "md5": "82ad9ae4d123a3666177f326b88fbacb", 237 + "size": "181182" 238 + } 239 + }, 240 + "cuda_nsight": { 241 + "name": "Nsight Eclipse Edition Plugin", 242 + "license": "CUDA Toolkit", 243 + "version": "11.4.120", 244 + "linux-x86_64": { 245 + "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-11.4.120-archive.tar.xz", 246 + "sha256": "b2b54743ad4f8bbd812548a26be40f561f6fda0f0ab01df4e630ef30af7bfd7a", 247 + "md5": "5981def738578dfe6f6166abe943f178", 248 + "size": "118598236" 249 + }, 250 + "linux-ppc64le": { 251 + "relative_path": "cuda_nsight/linux-ppc64le/cuda_nsight-linux-ppc64le-11.4.120-archive.tar.xz", 252 + "sha256": "c8cfb7300dba923acfdd5e7b2d32f7a576b7d6d954fc71a3896aba0226b00f81", 253 + "md5": "8b78eed909b09f80d91548f28a622b43", 254 + "size": "118598240" 255 + } 256 + }, 257 + "cuda_nvcc": { 258 + "name": "CUDA NVCC", 259 + "license": "CUDA Toolkit", 260 + "version": "11.4.152", 261 + "linux-x86_64": { 262 + "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-11.4.152-archive.tar.xz", 263 + "sha256": "7250fc83b54f9089e67f3b506648fd8e70a9107baed968cb5de169c05831d5e5", 264 + "md5": "fae82c384d46626a2f2e69fd98f0034d", 265 + "size": "35931152" 266 + }, 267 + "linux-ppc64le": { 268 + "relative_path": "cuda_nvcc/linux-ppc64le/cuda_nvcc-linux-ppc64le-11.4.152-archive.tar.xz", 269 + "sha256": "a53c8d2e4454be0e899986a1585f8b1eddf874aac165716d6f98989e53f971d3", 270 + "md5": "1b74e7951c76119a03b805bde8d42fc9", 271 + "size": "33718168" 272 + }, 273 + "linux-sbsa": { 274 + "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-11.4.152-archive.tar.xz", 275 + "sha256": "c0743a099bfb8c840a20317559668777e9a8ac9664dc121bcd22d76cee08416d", 276 + "md5": "8982bd399b169d45717763cae36f4bc3", 277 + "size": "31676392" 278 + }, 279 + "windows-x86_64": { 280 + "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-11.4.152-archive.zip", 281 + "sha256": "460c9e54bd0b99f4f63243eeb6b2090d17193361575b189c050faa10d465d4a9", 282 + "md5": "c9cae278599871aea78aa4584c24bbb1", 283 + "size": "45724284" 284 + } 285 + }, 286 + "cuda_nvdisasm": { 287 + "name": "CUDA nvdisasm", 288 + "license": "CUDA Toolkit", 289 + "version": "11.4.152", 290 + "linux-x86_64": { 291 + "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-11.4.152-archive.tar.xz", 292 + "sha256": "6ab9bd7c31a54529762fddc9ebfc4d331a912bf97b47318b0b75bfbd3b8a5551", 293 + "md5": "e4d610b84f47026baa4c0603b007a778", 294 + "size": "32847928" 295 + }, 296 + "linux-ppc64le": { 297 + "relative_path": "cuda_nvdisasm/linux-ppc64le/cuda_nvdisasm-linux-ppc64le-11.4.152-archive.tar.xz", 298 + "sha256": "6cd970a59ba219c5da1ce39dbf08d7ba491ea17849adfed4ad83cc8409624348", 299 + "md5": "a0870567d10771c7b3319880743e5a21", 300 + "size": "32770452" 301 + }, 302 + "linux-sbsa": { 303 + "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-11.4.152-archive.tar.xz", 304 + "sha256": "68743913c877014b4f9a6d7267cc117d443c9990ea583ea837a1c51df1676d7d", 305 + "md5": "204674baa498d7ebef702b73733b001f", 306 + "size": "32729816" 307 + }, 308 + "windows-x86_64": { 309 + "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-11.4.152-archive.zip", 310 + "sha256": "9fa3a5a1248ad1247ee78a3d9627f1b2d7173cbde5bdb1635a853624f3f8137e", 311 + "md5": "68ac6d501a93683e6faaab5ec4e59e4c", 312 + "size": "33052575" 313 + } 314 + }, 315 + "cuda_nvml_dev": { 316 + "name": "CUDA NVML Headers", 317 + "license": "CUDA Toolkit", 318 + "version": "11.4.120", 319 + "linux-x86_64": { 320 + "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-11.4.120-archive.tar.xz", 321 + "sha256": "f722199f9cc101c97c6fc809745076645064d36558a5aab56bba5529716e0fe9", 322 + "md5": "1262ec1a15eeb4f2c7158192f580804f", 323 + "size": "71964" 324 + }, 325 + "linux-ppc64le": { 326 + "relative_path": "cuda_nvml_dev/linux-ppc64le/cuda_nvml_dev-linux-ppc64le-11.4.120-archive.tar.xz", 327 + "sha256": "08a763906637778d1c85455bdad4f2c0cb15d4cb0ae1c088dc474cb7ff78af81", 328 + "md5": "bae7ce5fda7a60e4f05219d8a0b8944c", 329 + "size": "71564" 330 + }, 331 + "linux-sbsa": { 332 + "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-11.4.120-archive.tar.xz", 333 + "sha256": "61c93230ea9fd9ae657c57954294380b5e8ee1688778f519ce5d43b728a04b9d", 334 + "md5": "91ba0d30c5ef440a1ffe115e5f5b6fb7", 335 + "size": "72120" 336 + }, 337 + "windows-x86_64": { 338 + "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-11.4.120-archive.zip", 339 + "sha256": "d97d1266345bcaf4212132bbc19270ee9c10bae37b29647ff5f40620f83fa3ce", 340 + "md5": "928f18b29e00a1a342119dddc1e0a0da", 341 + "size": "100022" 342 + } 343 + }, 344 + "cuda_nvprof": { 345 + "name": "CUDA nvprof", 346 + "license": "CUDA Toolkit", 347 + "version": "11.4.120", 348 + "linux-x86_64": { 349 + "relative_path": "cuda_nvprof/linux-x86_64/cuda_nvprof-linux-x86_64-11.4.120-archive.tar.xz", 350 + "sha256": "bcf705c8f25f3423014b4182741e91676c4858b1b055a314911e24787a2d3129", 351 + "md5": "cc266f0a2c9e05ac34105fc084b54b9e", 352 + "size": "1938384" 353 + }, 354 + "linux-ppc64le": { 355 + "relative_path": "cuda_nvprof/linux-ppc64le/cuda_nvprof-linux-ppc64le-11.4.120-archive.tar.xz", 356 + "sha256": "398dd3c6f04b712f7ed0e70ee3d56ee04e0b9fa249cc0a655b9263a24dca7d8c", 357 + "md5": "e1e6ef34ffefaf4e9bc5d34f34777427", 358 + "size": "1594396" 359 + }, 360 + "linux-sbsa": { 361 + "relative_path": "cuda_nvprof/linux-sbsa/cuda_nvprof-linux-sbsa-11.4.120-archive.tar.xz", 362 + "sha256": "e87eceb2da015262ca57f7200c8ca96251dd11161afcdeea9a080fce06e90730", 363 + "md5": "95260289dd9f07abd0013b0b82c2aa79", 364 + "size": "16124" 365 + }, 366 + "windows-x86_64": { 367 + "relative_path": "cuda_nvprof/windows-x86_64/cuda_nvprof-windows-x86_64-11.4.120-archive.zip", 368 + "sha256": "826b85be249e8a518f58b3fdaf36f52871e96e6fe0e86f7fc6facbc619405e81", 369 + "md5": "a25a3b9d2710e7e9f09492492fe09777", 370 + "size": "1610917" 371 + } 372 + }, 373 + "cuda_nvprune": { 374 + "name": "CUDA nvprune", 375 + "license": "CUDA Toolkit", 376 + "version": "11.4.120", 377 + "linux-x86_64": { 378 + "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-11.4.120-archive.tar.xz", 379 + "sha256": "3e0ae31117c82f5e0220662a9ee1df15d2aa79bf6a53bc627ee5898a3e9719ef", 380 + "md5": "8b64523c53e6587c17c6c621ddf8a632", 381 + "size": "52772" 382 + }, 383 + "linux-ppc64le": { 384 + "relative_path": "cuda_nvprune/linux-ppc64le/cuda_nvprune-linux-ppc64le-11.4.120-archive.tar.xz", 385 + "sha256": "a8f62ffd30747f5481c6abb11a924dd68b8da9b4a72a0821a411d545fd79ebbf", 386 + "md5": "eb0ba8fd0b6f8daeb6cc8d50f7344fff", 387 + "size": "54280" 388 + }, 389 + "linux-sbsa": { 390 + "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-11.4.120-archive.tar.xz", 391 + "sha256": "da4078a81d0af984bd42f23c584091968454a0e925c64289f2e5922e02c76131", 392 + "md5": "89c50bee0950223a4dc194726ed908fc", 393 + "size": "46000" 394 + }, 395 + "windows-x86_64": { 396 + "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-11.4.120-archive.zip", 397 + "sha256": "ec5e1975147a83da707a1803c1e9af93b02ff8af246d23b733bd5a1662c708a9", 398 + "md5": "8c22f5bb3b3bdbb0421b07b988e5ce3e", 399 + "size": "143427" 400 + } 401 + }, 402 + "cuda_nvrtc": { 403 + "name": "CUDA NVRTC", 404 + "license": "CUDA Toolkit", 405 + "version": "11.4.152", 406 + "linux-x86_64": { 407 + "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-11.4.152-archive.tar.xz", 408 + "sha256": "5b7e491b583d1914c591447b9cf1b4c02dc33b222874eb89eee4ea8f87929396", 409 + "md5": "60aa9f569c86f41519a5d0a222f09109", 410 + "size": "14691116" 411 + }, 412 + "linux-ppc64le": { 413 + "relative_path": "cuda_nvrtc/linux-ppc64le/cuda_nvrtc-linux-ppc64le-11.4.152-archive.tar.xz", 414 + "sha256": "917d9e0f050bd140e279b6e063af3ab92e443572e6baf840e2c1ed6cb5b8e765", 415 + "md5": "84ceac397b7172f94485065e42da41fd", 416 + "size": "13608340" 417 + }, 418 + "linux-sbsa": { 419 + "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-11.4.152-archive.tar.xz", 420 + "sha256": "d82eb049e72545239c6d64e6bf5afd06b89df06f338165fc5a68a2bf3143472e", 421 + "md5": "01b483fcf81c794266dce6d2b8b39a17", 422 + "size": "13550244" 423 + }, 424 + "windows-x86_64": { 425 + "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-11.4.152-archive.zip", 426 + "sha256": "48e3def76ff1842d00051fd035e6487be711ac4019e9dc43f5db3f9e14363f91", 427 + "md5": "4fa6b0fb01c359360ab9352dacace716", 428 + "size": "16299675" 429 + } 430 + }, 431 + "cuda_nvtx": { 432 + "name": "CUDA NVTX", 433 + "license": "CUDA Toolkit", 434 + "version": "11.4.120", 435 + "linux-x86_64": { 436 + "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-11.4.120-archive.tar.xz", 437 + "sha256": "e50bd973d6b33f3b9a405a96ad04f62482e94bbbadfdc971ea1bb5d723c98c52", 438 + "md5": "e62f8df47a1d8c47568c948b8d4789f8", 439 + "size": "48148" 440 + }, 441 + "linux-ppc64le": { 442 + "relative_path": "cuda_nvtx/linux-ppc64le/cuda_nvtx-linux-ppc64le-11.4.120-archive.tar.xz", 443 + "sha256": "fb89733ad6d46522a7e944c42df4127a6f87c38f0c4caa6b069669ef65a1c562", 444 + "md5": "ff407300bcb5f8acac30fbda02fe7da3", 445 + "size": "48152" 446 + }, 447 + "linux-sbsa": { 448 + "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-11.4.120-archive.tar.xz", 449 + "sha256": "95677940f19a12b82037958415efecc18c511c6480800c4df6d82bd5c3ba28b0", 450 + "md5": "1d0f72f8a04df9ad7face3af3169c44d", 451 + "size": "48676" 452 + }, 453 + "windows-x86_64": { 454 + "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-11.4.120-archive.zip", 455 + "sha256": "13bacfd087cc1d11759705bc9a04647201f5f1c49103ba2ac233981c305143ec", 456 + "md5": "26de9a2dcb6ba9a920fd58cbf9dd19f2", 457 + "size": "65720" 458 + } 459 + }, 460 + "cuda_nvvp": { 461 + "name": "CUDA NVVP", 462 + "license": "CUDA Toolkit", 463 + "version": "11.4.193", 464 + "linux-x86_64": { 465 + "relative_path": "cuda_nvvp/linux-x86_64/cuda_nvvp-linux-x86_64-11.4.193-archive.tar.xz", 466 + "sha256": "4c7dd6fe52fd90aabfb9c4afa7a65302546ac8212e62c1d9e1d370ec9756d7e5", 467 + "md5": "8d321f064b8c1bf4a9641694fae7c2bc", 468 + "size": "112249072" 469 + }, 470 + "linux-ppc64le": { 471 + "relative_path": "cuda_nvvp/linux-ppc64le/cuda_nvvp-linux-ppc64le-11.4.193-archive.tar.xz", 472 + "sha256": "4952683d2b158a2c507b3c1f968ad5fdb6d3421429832cb300c02733f775986e", 473 + "md5": "fa0e0023ff79698989070754e2f6ab7d", 474 + "size": "111627960" 475 + }, 476 + "windows-x86_64": { 477 + "relative_path": "cuda_nvvp/windows-x86_64/cuda_nvvp-windows-x86_64-11.4.193-archive.zip", 478 + "sha256": "0659bebb271a566e1a5e75659043632398d42b37413df879293da4c077472720", 479 + "md5": "c5b3cdcedec6655ca69bf7083e9150f1", 480 + "size": "120334859" 481 + } 482 + }, 483 + "cuda_sanitizer_api": { 484 + "name": "CUDA Compute Sanitizer API", 485 + "license": "CUDA Toolkit", 486 + "version": "11.4.120", 487 + "linux-x86_64": { 488 + "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-11.4.120-archive.tar.xz", 489 + "sha256": "75044d837ef848460037fc16abe4f2f265791c3888c6d1f7e63366a466b2aee7", 490 + "md5": "aa46c3b0ed1d16a75b489c75f067772e", 491 + "size": "7092964" 492 + }, 493 + "linux-ppc64le": { 494 + "relative_path": "cuda_sanitizer_api/linux-ppc64le/cuda_sanitizer_api-linux-ppc64le-11.4.120-archive.tar.xz", 495 + "sha256": "825d5f72fbcc4ed04bce016009fbe5881fb138b14d55df7190121fb34b7d2845", 496 + "md5": "0557a1dd8c0b9e8a854ed09357053143", 497 + "size": "5831356" 498 + }, 499 + "linux-sbsa": { 500 + "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-11.4.120-archive.tar.xz", 501 + "sha256": "a241a68429a1c33fdd0ba335d81c246079086552c56abb08033dd3dc85c576ad", 502 + "md5": "3a8de05d46d603136ac33ac6511dd454", 503 + "size": "5648592" 504 + }, 505 + "windows-x86_64": { 506 + "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-11.4.120-archive.zip", 507 + "sha256": "9fdb78035542c4eb9a8e881b8ced959eabfa04894ce2b847d54741120b5f1aaa", 508 + "md5": "ccd5b8f2656334b040a513c418408091", 509 + "size": "12062745" 510 + } 511 + }, 512 + "fabricmanager": { 513 + "name": "NVIDIA Fabric Manager", 514 + "license": "NVIDIA Driver", 515 + "version": "470.82.01", 516 + "linux-x86_64": { 517 + "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-470.82.01-archive.tar.xz", 518 + "sha256": "b039435622c14b2b1071aaabc0b63b04f21ec17564c1629a89e7cd25da8673fc", 519 + "md5": "4d3782e2354cfe0d70c84e79aaf5e5a2", 520 + "size": "1199624" 521 + } 522 + }, 523 + "libcublas": { 524 + "name": "CUDA cuBLAS", 525 + "license": "CUDA Toolkit", 526 + "version": "11.6.5.2", 527 + "linux-x86_64": { 528 + "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-11.6.5.2-archive.tar.xz", 529 + "sha256": "751c585c062f6e1dfcb1bca5898de48d4a247edad478de37eda0c7c62038379a", 530 + "md5": "9d36ade70e3d9c0059441fc59018d42e", 531 + "size": "397289908" 532 + }, 533 + "linux-ppc64le": { 534 + "relative_path": "libcublas/linux-ppc64le/libcublas-linux-ppc64le-11.6.5.2-archive.tar.xz", 535 + "sha256": "0bbb8a8db38a3a0b97bfc879046dc42dca3defb0f82b1424e23c49bdcc6f26d0", 536 + "md5": "9135c14acbcecd545578cc08642c6e53", 537 + "size": "396612488" 538 + }, 539 + "linux-sbsa": { 540 + "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-11.6.5.2-archive.tar.xz", 541 + "sha256": "7325d4fe77567ee69799902eae7479b8d6518c7722882d683a41b1ebdd8f676d", 542 + "md5": "75989e41f24bff9fbff1aaef7231b1aa", 543 + "size": "396559712" 544 + }, 545 + "windows-x86_64": { 546 + "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-11.6.5.2-archive.zip", 547 + "sha256": "7ebcfcd9cc327a020f156d9a9f7607ea6a563038834991324230102915bef47c", 548 + "md5": "1d69e9103b52557b6cb49cfdc5ae5709", 549 + "size": "290453672" 550 + } 551 + }, 552 + "libcufft": { 553 + "name": "CUDA cuFFT", 554 + "license": "CUDA Toolkit", 555 + "version": "10.5.2.100", 556 + "linux-x86_64": { 557 + "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-10.5.2.100-archive.tar.xz", 558 + "sha256": "0e3ec55be39db99c8769a3f297d190b93c8281afb5b3bc2ca1966ae94d42255f", 559 + "md5": "08023fd6700cb0f324421af5cdc4e1df", 560 + "size": "215214100" 561 + }, 562 + "linux-ppc64le": { 563 + "relative_path": "libcufft/linux-ppc64le/libcufft-linux-ppc64le-10.5.2.100-archive.tar.xz", 564 + "sha256": "b73d5a8a5a3a9497189b340001a0547d60b6971e42d60aa6d8ca0ae3ec1b0818", 565 + "md5": "712c0cfb1c74439bb581d36fc9c1bb24", 566 + "size": "214860644" 567 + }, 568 + "linux-sbsa": { 569 + "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-10.5.2.100-archive.tar.xz", 570 + "sha256": "49b7d658dc84fd6669a27907d403b4c93d82f9cc10670e9c990eed29ae6e5ee8", 571 + "md5": "c652700572c72b422727fb3a9db5dfa2", 572 + "size": "214998656" 573 + }, 574 + "windows-x86_64": { 575 + "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-10.5.2.100-archive.zip", 576 + "sha256": "eaf957a481d0c361724cf796b6bc105e36f9a3d17b7525107a78ff15ea3ddc6c", 577 + "md5": "37d169ea81f44c4caca0bb1dcc527549", 578 + "size": "287129611" 579 + } 580 + }, 581 + "libcufile": { 582 + "name": "CUDA cuFile", 583 + "license": "CUDA Toolkit", 584 + "version": "1.0.2.10", 585 + "linux-x86_64": { 586 + "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.0.2.10-archive.tar.xz", 587 + "sha256": "6f9d83ff112d81dbf36317c5140e063d4750debbebc17ffeab3ad934dbc845f1", 588 + "md5": "41929b0ff024c53033a705f29bc7e573", 589 + "size": "45641384" 590 + } 591 + }, 592 + "libcurand": { 593 + "name": "CUDA cuRAND", 594 + "license": "CUDA Toolkit", 595 + "version": "10.2.5.120", 596 + "linux-x86_64": { 597 + "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.2.5.120-archive.tar.xz", 598 + "sha256": "0f741c8c74bc19ea03a3a19a6d858d364d86d806fa5941763cafb181d4f9b2f0", 599 + "md5": "5a87e0cef68405a1e4777b76d0db7fed", 600 + "size": "79315612" 601 + }, 602 + "linux-ppc64le": { 603 + "relative_path": "libcurand/linux-ppc64le/libcurand-linux-ppc64le-10.2.5.120-archive.tar.xz", 604 + "sha256": "14589b5f7d7e4e283552a82ea9f7ffc6504e95c10dc33a5834a2aa75bcccb208", 605 + "md5": "012f3f367e15dd623de41dfa9cd5c695", 606 + "size": "79373580" 607 + }, 608 + "linux-sbsa": { 609 + "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.2.5.120-archive.tar.xz", 610 + "sha256": "834b508e8979c3f4751a0ddbc62e9c8bc113844e4f82326e73cc42da4adabad9", 611 + "md5": "c76e1c5544208c0372848965b0aec0a1", 612 + "size": "79304900" 613 + }, 614 + "windows-x86_64": { 615 + "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.2.5.120-archive.zip", 616 + "sha256": "35108db3e9afaac017e1d3460313632850e3627520cf2213b987fa3d4cf6a8ce", 617 + "md5": "dff8fe892d9551a11d366f57a3f32ad5", 618 + "size": "53518206" 619 + } 620 + }, 621 + "libcusolver": { 622 + "name": "CUDA cuSOLVER", 623 + "license": "CUDA Toolkit", 624 + "version": "11.2.0.120", 625 + "linux-x86_64": { 626 + "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-11.2.0.120-archive.tar.xz", 627 + "sha256": "5bae164a8a6969a374f6abe33cc71462e714538c2a818228cf401d0fa6c3c1b7", 628 + "md5": "198eb0679c8e81b9cb82107370bf1ee6", 629 + "size": "113793268" 630 + }, 631 + "linux-ppc64le": { 632 + "relative_path": "libcusolver/linux-ppc64le/libcusolver-linux-ppc64le-11.2.0.120-archive.tar.xz", 633 + "sha256": "0e2671cbe1cdb8cf4eb11698131c4ef4ce9ae58623595e623bbb3a492d7abe99", 634 + "md5": "9a10d6dddcd66a095d1f5dc47f7c4924", 635 + "size": "113397472" 636 + }, 637 + "linux-sbsa": { 638 + "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-11.2.0.120-archive.tar.xz", 639 + "sha256": "a53d4d80240702a8216903798ced8449f690379b785cc5fee21aeff5e0241dc4", 640 + "md5": "07d5e61eac9f304ff2eec374f7674711", 641 + "size": "112947208" 642 + }, 643 + "windows-x86_64": { 644 + "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-11.2.0.120-archive.zip", 645 + "sha256": "72e456cc8d7e79f514eae95ac9a4acb269e66344d67c5913370a3f0367a1f862", 646 + "md5": "c8097d4d1473b354b6570d9d9f788991", 647 + "size": "175875554" 648 + } 649 + }, 650 + "libcusparse": { 651 + "name": "CUDA cuSPARSE", 652 + "license": "CUDA Toolkit", 653 + "version": "11.6.0.120", 654 + "linux-x86_64": { 655 + "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-11.6.0.120-archive.tar.xz", 656 + "sha256": "00bef20a412c9b099e7e48477804ed4c2bda8581b101d19c50559efff79bf269", 657 + "md5": "0aaa13f7c89ce128a2321ad4ed0fc45f", 658 + "size": "205850728" 659 + }, 660 + "linux-ppc64le": { 661 + "relative_path": "libcusparse/linux-ppc64le/libcusparse-linux-ppc64le-11.6.0.120-archive.tar.xz", 662 + "sha256": "79721331edb5e17028273cf2280b2e3aedd11c4c8145c2fbd16afeb8c37f74b9", 663 + "md5": "12525f41737ba7066427a946f546b73b", 664 + "size": "205966724" 665 + }, 666 + "linux-sbsa": { 667 + "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-11.6.0.120-archive.tar.xz", 668 + "sha256": "93f7fbb8191e4af59aac32adb8ac06d6501bf90ca97e3e01f400314bc320c852", 669 + "md5": "37aa8d11916834daf765f385417a1d23", 670 + "size": "205713852" 671 + }, 672 + "windows-x86_64": { 673 + "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-11.6.0.120-archive.zip", 674 + "sha256": "bd995a141da804fa0d2c3bce1c6d575e862877e1356041dae326825e5194c176", 675 + "md5": "63fa77c71d4c5f93e5f97dd03bbb31bb", 676 + "size": "165699705" 677 + } 678 + }, 679 + "libnpp": { 680 + "name": "CUDA NPP", 681 + "license": "CUDA Toolkit", 682 + "version": "11.4.0.110", 683 + "linux-x86_64": { 684 + "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-11.4.0.110-archive.tar.xz", 685 + "sha256": "2e65c5b8d8aabf5521faf8daab170ddef27d795f61ded58343a9070dffd2ebff", 686 + "md5": "c8cce28919ab1b87952f657883ad2019", 687 + "size": "149105144" 688 + }, 689 + "linux-ppc64le": { 690 + "relative_path": "libnpp/linux-ppc64le/libnpp-linux-ppc64le-11.4.0.110-archive.tar.xz", 691 + "sha256": "7cb571fb26fa5ae3c85489a45eb088ade9f6bf01105d651d7eaee9857085b368", 692 + "md5": "794acd28cb9f8a741557bd3c2b6168fd", 693 + "size": "149486332" 694 + }, 695 + "linux-sbsa": { 696 + "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-11.4.0.110-archive.tar.xz", 697 + "sha256": "c722734c0b36702a549a3796e76461376ae471d7af7729c1d59565cb08c95ed5", 698 + "md5": "f97cc0df88a8000340d397f902d7d0a4", 699 + "size": "148458280" 700 + }, 701 + "windows-x86_64": { 702 + "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-11.4.0.110-archive.zip", 703 + "sha256": "6e1a90494f93db97687b8f2b216da0ab3ca4677640c856a35e7d3b12c46c4223", 704 + "md5": "57f29f491747786ef1392435502da28d", 705 + "size": "111941586" 706 + } 707 + }, 708 + "libnvjpeg": { 709 + "name": "CUDA nvJPEG", 710 + "license": "CUDA Toolkit", 711 + "version": "11.5.2.120", 712 + "linux-x86_64": { 713 + "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-11.5.2.120-archive.tar.xz", 714 + "sha256": "b664c4cec5bf0518c83c5568fb9bc36d202dff67fce4ee12657043f45b431347", 715 + "md5": "3f8670cb77f6d11219e485aa28ff3b34", 716 + "size": "1906200" 717 + }, 718 + "linux-ppc64le": { 719 + "relative_path": "libnvjpeg/linux-ppc64le/libnvjpeg-linux-ppc64le-11.5.2.120-archive.tar.xz", 720 + "sha256": "c0e5fe1dc9c45e71fde99071deac6a48a94515b79e59cb0fab4412060b6bac95", 721 + "md5": "8cce374dc46360952ef14e19902d240e", 722 + "size": "1925636" 723 + }, 724 + "linux-sbsa": { 725 + "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-11.5.2.120-archive.tar.xz", 726 + "sha256": "0e7f4360e75a6f880b2accbfd7dd0cc91e850014ee42ff1c5fcd5060fb14beec", 727 + "md5": "1c8275903175d8f63dfef2b50c752bb4", 728 + "size": "1764008" 729 + }, 730 + "windows-x86_64": { 731 + "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-11.5.2.120-archive.zip", 732 + "sha256": "45d894a95aa26e125f5d002d138c6d9a2f2568edf809fea86d7782657bdec5fc", 733 + "md5": "ad0b579ee7817a42c813f5424c53019e", 734 + "size": "1951350" 735 + } 736 + }, 737 + "nsight_compute": { 738 + "name": "Nsight Compute", 739 + "license": "NVIDIA SLA", 740 + "version": "2021.2.2.1", 741 + "linux-x86_64": { 742 + "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2021.2.2.1-archive.tar.xz", 743 + "sha256": "9baed2f77b341f6953a7de1f93c0a939c9a08884edbe0b30b0887e9d81960b39", 744 + "md5": "c3d6baccc29b24dc0f48a45454f61dad", 745 + "size": "284793108" 746 + }, 747 + "linux-ppc64le": { 748 + "relative_path": "nsight_compute/linux-ppc64le/nsight_compute-linux-ppc64le-2021.2.2.1-archive.tar.xz", 749 + "sha256": "07980f3c1bcf1256bdcc86a8cd61fda1214af39f1a2b27d7e249a0f97c9f68c7", 750 + "md5": "f1ae025d30e3b6602ee922db46b2cea6", 751 + "size": "57790468" 752 + }, 753 + "linux-sbsa": { 754 + "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2021.2.2.1-archive.tar.xz", 755 + "sha256": "21458456d17779c8c686055cd202414bdeb2445daae480311c428fe69e1649fe", 756 + "md5": "6a3229e361f0d4dd1b6cd47a26a692cc", 757 + "size": "56717204" 758 + }, 759 + "windows-x86_64": { 760 + "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2021.2.2.1-archive.zip", 761 + "sha256": "dcc1f9b2cbdcfebcfcacd1acf522145e3335349139da6994d2b6e7610a43eecf", 762 + "md5": "21e5ef7a02a83748aed68fdf4765ff7a", 763 + "size": "253104502" 764 + } 765 + }, 766 + "nsight_nvtx": { 767 + "name": "Nsight NVTX", 768 + "license": "CUDA Toolkit", 769 + "version": "1.21018621", 770 + "windows-x86_64": { 771 + "relative_path": "nsight_nvtx/windows-x86_64/nsight_nvtx-windows-x86_64-1.21018621-archive.zip", 772 + "sha256": "d99b015bfb1308206f9d7c16ea401bf426fed3a5a99953b855fe4e68be5ed2d1", 773 + "md5": "34ee04d45cfca1c4e3cbfba0ec8f6f80", 774 + "size": "315692" 775 + } 776 + }, 777 + "nsight_systems": { 778 + "name": "Nsight Systems", 779 + "license": "NVIDIA SLA", 780 + "version": "2021.3.2.4", 781 + "linux-x86_64": { 782 + "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2021.3.2.4-archive.tar.xz", 783 + "sha256": "317dcd4a3d78c7d916924f6433cb93415f19e16e4688413e4692180e37f7f87a", 784 + "md5": "572fb66e9bd39406222eae7f3389794a", 785 + "size": "174858452" 786 + }, 787 + "linux-ppc64le": { 788 + "relative_path": "nsight_systems/linux-ppc64le/nsight_systems-linux-ppc64le-2021.3.2.4-archive.tar.xz", 789 + "sha256": "45c874f923af9fc6247058ce3324322593a7367edc4b105280d017970d5def69", 790 + "md5": "4bacedaccacc5bb9cffe6b13f2502586", 791 + "size": "21385068" 792 + }, 793 + "linux-sbsa": { 794 + "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2021.3.2.4-archive.tar.xz", 795 + "sha256": "76ce8ed29e4f8d8d472f702b9e14543f4c4e7b8f27a90079d8c3e6580db6cb16", 796 + "md5": "f2b7b464fab05c73872b1ccfc8f433ea", 797 + "size": "33097032" 798 + }, 799 + "windows-x86_64": { 800 + "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2021.3.2.4-archive.zip", 801 + "sha256": "1002ea5ef56ae5f458101af04252190e8873f950389f6c8f78cd475bd71b6efe", 802 + "md5": "8e9e44e9e3ec526f1378d1e0d0423bff", 803 + "size": "226086324" 804 + } 805 + }, 806 + "nsight_vse": { 807 + "name": "Nsight Visual Studio Edition (VSE)", 808 + "license": "NVIDIA SLA", 809 + "version": "2021.2.1.21205", 810 + "windows-x86_64": { 811 + "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2021.2.1.21205-archive.zip", 812 + "sha256": "116fb34fc90cd13cf17649931be0af756930da98bbd5339b44b6cbd2d1e42453", 813 + "md5": "1ff5d4397b22ed55be7c7d2a5a594a2a", 814 + "size": "284584707" 815 + } 816 + }, 817 + "nvidia_driver": { 818 + "name": "NVIDIA Linux Driver", 819 + "license": "NVIDIA Driver", 820 + "version": "470.82.01", 821 + "linux-x86_64": { 822 + "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-470.82.01-archive.tar.xz", 823 + "sha256": "aa8edae8b40ee2c6808fd59220e81f46f2ccf8bd1ec184eb8dc83ddabba139db", 824 + "md5": "9fd218a52ee6620319a4c77176dd7145", 825 + "size": "269972368" 826 + }, 827 + "linux-ppc64le": { 828 + "relative_path": "nvidia_driver/linux-ppc64le/nvidia_driver-linux-ppc64le-470.82.01-archive.tar.xz", 829 + "sha256": "eb521f9d849d05500f793915f0f455fe95ed0f515078081ea9e7903a0ca08957", 830 + "md5": "c56d1492bcb7d65222f9dca907bf0c14", 831 + "size": "67098452" 832 + }, 833 + "linux-sbsa": { 834 + "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-470.82.01-archive.tar.xz", 835 + "sha256": "4d8fa4bef4037b249f4da083796a213d3e6701e683784e75122b326ab7130625", 836 + "md5": "2e3059458ca28211195801da983e424c", 837 + "size": "183043372" 838 + } 839 + }, 840 + "nvidia_fs": { 841 + "name": "NVIDIA filesystem", 842 + "license": "CUDA Toolkit", 843 + "version": "2.7.53", 844 + "linux-x86_64": { 845 + "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.7.53-archive.tar.xz", 846 + "sha256": "9fa17e62079fc1fadd1046b8a99dad39d1813cbc70c08bad8f30dc7946ba6894", 847 + "md5": "4b4cc07a2aaf8562b1f658522613600a", 848 + "size": "67712" 849 + } 850 + }, 851 + "visual_studio_integration": { 852 + "name": "CUDA Visual Studio Integration", 853 + "license": "CUDA Toolkit", 854 + "version": "11.4.120", 855 + "windows-x86_64": { 856 + "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-11.4.120-archive.zip", 857 + "sha256": "a97171f455c7c3e938958ee02deddf264c63dd9f10197d07954917c04b444ff2", 858 + "md5": "8f19de4992331ac5a877b3d3ccff25da", 859 + "size": "387698" 860 + } 861 + } 862 + }
+873
pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_11.5.2.json
··· 1 + { 2 + "release_date": "2022-02-02", 3 + "cuda_cccl": { 4 + "name": "CXX Core Compute Libraries", 5 + "license": "CUDA Toolkit", 6 + "version": "11.5.62", 7 + "linux-x86_64": { 8 + "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-11.5.62-archive.tar.xz", 9 + "sha256": "bbe633d6603d5a96a214dcb9f3f6f6fd2fa04d62e53694af97ae0c7afe0121b0", 10 + "md5": "e5deef4f6cb71f14aac5be5d5745dafe", 11 + "size": "960968" 12 + }, 13 + "linux-ppc64le": { 14 + "relative_path": "cuda_cccl/linux-ppc64le/cuda_cccl-linux-ppc64le-11.5.62-archive.tar.xz", 15 + "sha256": "f5301a213878c7afbc67da03b09b27e1cb92178483042538f1585df09407214a", 16 + "md5": "9c3200a20b10bebcdde87367128d36d9", 17 + "size": "960940" 18 + }, 19 + "linux-sbsa": { 20 + "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-11.5.62-archive.tar.xz", 21 + "sha256": "a4faf04025bdaf5b7871ad43f50cbe2ca10baf8665b17b78d32c50aa8ba7ae8b", 22 + "md5": "229a13fbe8426da383addf9ee9168984", 23 + "size": "960660" 24 + }, 25 + "windows-x86_64": { 26 + "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-11.5.62-archive.zip", 27 + "sha256": "2a44c359d523317d1c93ba6568ace3c088c83026e2e40d34a97fccd876466b4b", 28 + "md5": "93604e9c00b8fbc31827c7a82c0894c2", 29 + "size": "2459582" 30 + } 31 + }, 32 + "cuda_cudart": { 33 + "name": "CUDA Runtime (cudart)", 34 + "license": "CUDA Toolkit", 35 + "version": "11.5.117", 36 + "linux-x86_64": { 37 + "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-11.5.117-archive.tar.xz", 38 + "sha256": "c01bfcfca22063c99fd50122d39383433f4f789e021c7785cd555f59c2632a2c", 39 + "md5": "7549121367907b56af18e5806e8244bc", 40 + "size": "836276" 41 + }, 42 + "linux-ppc64le": { 43 + "relative_path": "cuda_cudart/linux-ppc64le/cuda_cudart-linux-ppc64le-11.5.117-archive.tar.xz", 44 + "sha256": "8f412376f4951df52380d87bb6c22704cb930ac6cef0fe92f2f31604ef744ce7", 45 + "md5": "dab60517ad1e6018c009305025158860", 46 + "size": "782660" 47 + }, 48 + "linux-sbsa": { 49 + "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-11.5.117-archive.tar.xz", 50 + "sha256": "550f8dfdce3fb6ca723d716abff81e1fd55132a130d284ae2050a0f09f40c93f", 51 + "md5": "c1c0c65dce9da1105d812d0b08d99108", 52 + "size": "783804" 53 + }, 54 + "windows-x86_64": { 55 + "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-11.5.117-archive.zip", 56 + "sha256": "02cd427306ada807c9a8a1f16dd34ddeb58f35c7932bcbe13e1ee2afa882332c", 57 + "md5": "b8c4d1288f5918d67777192abd627238", 58 + "size": "2915733" 59 + } 60 + }, 61 + "cuda_cuobjdump": { 62 + "name": "cuobjdump", 63 + "license": "CUDA Toolkit", 64 + "version": "11.5.119", 65 + "linux-x86_64": { 66 + "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-11.5.119-archive.tar.xz", 67 + "sha256": "798fa7124d56661d7a211900266f658d4303931936157e863c82cf31aeb27b09", 68 + "md5": "1d965f0f33b751d050ac8238a7a350a3", 69 + "size": "112864" 70 + }, 71 + "linux-ppc64le": { 72 + "relative_path": "cuda_cuobjdump/linux-ppc64le/cuda_cuobjdump-linux-ppc64le-11.5.119-archive.tar.xz", 73 + "sha256": "04845b4feb728840823b17aadc2fb579bd8be4e04f1cfe25bb78e8724794cdfa", 74 + "md5": "391d5e1b42899f34125793096f01bdbb", 75 + "size": "117636" 76 + }, 77 + "linux-sbsa": { 78 + "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-11.5.119-archive.tar.xz", 79 + "sha256": "1ae185d861f7075046e53e8ec69d4b650eef1bc09fdb0c89adf69e48f9b13d57", 80 + "md5": "19359104b424b6033b77c6b2984fc06f", 81 + "size": "101836" 82 + }, 83 + "windows-x86_64": { 84 + "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-11.5.119-archive.zip", 85 + "sha256": "2b059697dcc5b3df8ca527612893905cfb91f52fef4988388458060d038d86a9", 86 + "md5": "8f8ac819425d7e92a4bcb2e940eaeaad", 87 + "size": "2538559" 88 + } 89 + }, 90 + "cuda_cupti": { 91 + "name": "CUPTI", 92 + "license": "CUDA Toolkit", 93 + "version": "11.5.114", 94 + "linux-x86_64": { 95 + "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-11.5.114-archive.tar.xz", 96 + "sha256": "1ab09d29571a80f5c26187e78419b424a041ade7c9c108523aad26d6711eb222", 97 + "md5": "1adc2bcb044a372317103ad44e60f73b", 98 + "size": "15910648" 99 + }, 100 + "linux-ppc64le": { 101 + "relative_path": "cuda_cupti/linux-ppc64le/cuda_cupti-linux-ppc64le-11.5.114-archive.tar.xz", 102 + "sha256": "5739768e55551b131fd2bd0ef41806f70400e767cb520c511f11ea33ac940eb6", 103 + "md5": "320d9f4904723fb3ea3d95c7ea736998", 104 + "size": "8454516" 105 + }, 106 + "linux-sbsa": { 107 + "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-11.5.114-archive.tar.xz", 108 + "sha256": "05926807291609f643d4b92706a9ab627f4dd32e4f0c5779b58ba5c737453c43", 109 + "md5": "6cd4c658b0e30704bb3f21cb861c16ab", 110 + "size": "7827648" 111 + }, 112 + "windows-x86_64": { 113 + "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-11.5.114-archive.zip", 114 + "sha256": "56948dab7b3d39bc9d8231a277a051e57f95efe73f9f6bfeb9f66df2be3d2208", 115 + "md5": "fcb8bbf96ad9258fc0771dd59ddbab25", 116 + "size": "11262366" 117 + } 118 + }, 119 + "cuda_cuxxfilt": { 120 + "name": "CUDA cuxxfilt (demangler)", 121 + "license": "CUDA Toolkit", 122 + "version": "11.5.119", 123 + "linux-x86_64": { 124 + "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-11.5.119-archive.tar.xz", 125 + "sha256": "46e3adabbf6a3e7920f054b0e16b8555606798453d5abb004cc4f82df20cf093", 126 + "md5": "dc9e194c4c82ea3f3e2b5ac96b26355f", 127 + "size": "185608" 128 + }, 129 + "linux-ppc64le": { 130 + "relative_path": "cuda_cuxxfilt/linux-ppc64le/cuda_cuxxfilt-linux-ppc64le-11.5.119-archive.tar.xz", 131 + "sha256": "f7e3345c3545f72c3ef0020403463a72a21444b2e11f3d5a5e1c1a65e10c6f5b", 132 + "md5": "7316d577039df32a4bc556b5c7f13140", 133 + "size": "182008" 134 + }, 135 + "linux-sbsa": { 136 + "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-11.5.119-archive.tar.xz", 137 + "sha256": "7ef895dd76f2222d19344cadf32c84f8963c11a7773ceb73c7d9be4eb286576a", 138 + "md5": "85bd622ebac9a567f88302f53f893391", 139 + "size": "172336" 140 + }, 141 + "windows-x86_64": { 142 + "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-11.5.119-archive.zip", 143 + "sha256": "7820a76ffced4194ff09a910c70cfd5ab917e67be3a0371da4e25ed000346595", 144 + "md5": "dbf1c3108e731c13466180709335e702", 145 + "size": "168667" 146 + } 147 + }, 148 + "cuda_demo_suite": { 149 + "name": "CUDA Demo Suite", 150 + "license": "CUDA Toolkit", 151 + "version": "11.5.50", 152 + "linux-x86_64": { 153 + "relative_path": "cuda_demo_suite/linux-x86_64/cuda_demo_suite-linux-x86_64-11.5.50-archive.tar.xz", 154 + "sha256": "0dc6fd4d8ab3a0a5ff1d5cbd9a5a6a970f2d01097c31903afcf733d36b67f884", 155 + "md5": "da6c44696dada9f1adeb3234cfcdd9f1", 156 + "size": "3976764" 157 + }, 158 + "windows-x86_64": { 159 + "relative_path": "cuda_demo_suite/windows-x86_64/cuda_demo_suite-windows-x86_64-11.5.50-archive.zip", 160 + "sha256": "c81ecafd4e0c6ec137f582720f94e8ac2295e673063755c551c6866e2c3ba190", 161 + "md5": "39f63b4b72ba724454f679af3e351735", 162 + "size": "5015382" 163 + } 164 + }, 165 + "cuda_documentation": { 166 + "name": "CUDA Documentation", 167 + "license": "CUDA Toolkit", 168 + "version": "11.5.114", 169 + "linux-x86_64": { 170 + "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-11.5.114-archive.tar.xz", 171 + "sha256": "338466042a594f37996d7f50543096f0e1dc644f43319ff886e2496c339f4346", 172 + "md5": "c54ab14d9bdc53b03eb927cf50b1ae6e", 173 + "size": "62456" 174 + }, 175 + "linux-ppc64le": { 176 + "relative_path": "cuda_documentation/linux-ppc64le/cuda_documentation-linux-ppc64le-11.5.114-archive.tar.xz", 177 + "sha256": "69478f98bf8467843d5b6c3ae8163e082e89b9a6eb8061c900e1bbe76d570a03", 178 + "md5": "3c93062774f05facc809047af4721017", 179 + "size": "62516" 180 + }, 181 + "linux-sbsa": { 182 + "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-11.5.114-archive.tar.xz", 183 + "sha256": "ff6f44549650db44b0a6726b0ce1bc9b325d629190c6b17d35a2b99d36434678", 184 + "md5": "54afce3c11863b2e515719325a3a05f4", 185 + "size": "62452" 186 + }, 187 + "windows-x86_64": { 188 + "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-11.5.114-archive.zip", 189 + "sha256": "ec7ff829ce1717a88c54dbb15739e46f5d876e9ef32cc911fc66e2b78f3b286e", 190 + "md5": "d84ba6f46eda183231a01523eb8a0593", 191 + "size": "100197" 192 + } 193 + }, 194 + "cuda_gdb": { 195 + "name": "CUDA GDB", 196 + "license": "CUDA Toolkit", 197 + "version": "11.5.114", 198 + "linux-x86_64": { 199 + "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-11.5.114-archive.tar.xz", 200 + "sha256": "a590393cdbfb6620053075d9eebb18abcaedfd8ccdec2e4c8f4631080e7eaa31", 201 + "md5": "3e9ecd9834eb282d6ea55cf61765c01a", 202 + "size": "64086136" 203 + }, 204 + "linux-ppc64le": { 205 + "relative_path": "cuda_gdb/linux-ppc64le/cuda_gdb-linux-ppc64le-11.5.114-archive.tar.xz", 206 + "sha256": "564c2ff35bf3f76c60f57c9669d4a1b8312f6fedb0fa08c16178634a451fef72", 207 + "md5": "779ce7f3fd7b623c8cd12f822848c273", 208 + "size": "63889192" 209 + }, 210 + "linux-sbsa": { 211 + "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-11.5.114-archive.tar.xz", 212 + "sha256": "482d8ad678e00a562b087a0e6d988ca92a83a3aefccf8a9166390956739637a6", 213 + "md5": "bdc885a67bd000b44ea0f2ee46ab74f0", 214 + "size": "63816804" 215 + } 216 + }, 217 + "cuda_memcheck": { 218 + "name": "CUDA Memcheck", 219 + "license": "CUDA Toolkit", 220 + "version": "11.5.114", 221 + "linux-x86_64": { 222 + "relative_path": "cuda_memcheck/linux-x86_64/cuda_memcheck-linux-x86_64-11.5.114-archive.tar.xz", 223 + "sha256": "d13f915017ce2e4b6ed58b112fb831e07a638fa26cb73cd5501e330321048975", 224 + "md5": "584bcd833078f505b6f4c96b32cb8f45", 225 + "size": "139756" 226 + }, 227 + "linux-ppc64le": { 228 + "relative_path": "cuda_memcheck/linux-ppc64le/cuda_memcheck-linux-ppc64le-11.5.114-archive.tar.xz", 229 + "sha256": "43baae7eb977d265bd4763c10e5b5d2594a70dacabc00904468aa84c2ce13b82", 230 + "md5": "02a82840a71a889bcbdf655d41704b20", 231 + "size": "148096" 232 + }, 233 + "windows-x86_64": { 234 + "relative_path": "cuda_memcheck/windows-x86_64/cuda_memcheck-windows-x86_64-11.5.114-archive.zip", 235 + "sha256": "79193c8cf3a2d63cb182aea57aa54e705f49cc606cf13213439709b317fd9051", 236 + "md5": "06d2c5975482a2d266c40baae8e94448", 237 + "size": "172699" 238 + } 239 + }, 240 + "cuda_nsight": { 241 + "name": "Nsight Eclipse Edition Plugin", 242 + "license": "CUDA Toolkit", 243 + "version": "11.5.114", 244 + "linux-x86_64": { 245 + "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-11.5.114-archive.tar.xz", 246 + "sha256": "a4a512d806cce1ce73c87c0b996eddbfebc735d6b749915c870907f347de1840", 247 + "md5": "70bcbc9042f7757b34c1e7dbff56c719", 248 + "size": "118606516" 249 + }, 250 + "linux-ppc64le": { 251 + "relative_path": "cuda_nsight/linux-ppc64le/cuda_nsight-linux-ppc64le-11.5.114-archive.tar.xz", 252 + "sha256": "1ad8e934acd5563ce23f40359f3515fa1344ed6cfa6e8ea37e7c9ed51c52ddcf", 253 + "md5": "e58439f4b05a43a1e29cbe971228e1f8", 254 + "size": "118606504" 255 + } 256 + }, 257 + "cuda_nvcc": { 258 + "name": "CUDA NVCC", 259 + "license": "CUDA Toolkit", 260 + "version": "11.5.119", 261 + "linux-x86_64": { 262 + "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-11.5.119-archive.tar.xz", 263 + "sha256": "4072592764717f5c3ac53b95f0bb5f2bf427294b94aa9abda125e51b4fca9e0a", 264 + "md5": "272cd495f19864fab9e0b8c6a4d70a4d", 265 + "size": "36316988" 266 + }, 267 + "linux-ppc64le": { 268 + "relative_path": "cuda_nvcc/linux-ppc64le/cuda_nvcc-linux-ppc64le-11.5.119-archive.tar.xz", 269 + "sha256": "1dd811c9e8e6bb219a7e0ef63514665f8d7e6253ad93474b5b3594fce85cb191", 270 + "md5": "af5523c22de1667aece90f23dbe9a51a", 271 + "size": "34137608" 272 + }, 273 + "linux-sbsa": { 274 + "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-11.5.119-archive.tar.xz", 275 + "sha256": "21e9d7941a62806331e94eff3ba22b4bcace3f8227e133580f0367343eb3f3a4", 276 + "md5": "a7c7797e5d7a586d7e74cc3e70bda731", 277 + "size": "31876488" 278 + }, 279 + "windows-x86_64": { 280 + "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-11.5.119-archive.zip", 281 + "sha256": "477ca5d096c2e5a87480cae24951b54e641030cfc3c75ce869e0656e4fcb2142", 282 + "md5": "657fb06f0e06a16ee936aa22e7a3dd27", 283 + "size": "46379856" 284 + } 285 + }, 286 + "cuda_nvdisasm": { 287 + "name": "CUDA nvdisasm", 288 + "license": "CUDA Toolkit", 289 + "version": "11.5.119", 290 + "linux-x86_64": { 291 + "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-11.5.119-archive.tar.xz", 292 + "sha256": "7b5055db4fbc270a49d69dae6320331d16b3d50f828a9b155e7bf2abe138f273", 293 + "md5": "0405b49d574e4fd5783a1bfba9228966", 294 + "size": "32786096" 295 + }, 296 + "linux-ppc64le": { 297 + "relative_path": "cuda_nvdisasm/linux-ppc64le/cuda_nvdisasm-linux-ppc64le-11.5.119-archive.tar.xz", 298 + "sha256": "10e7d0794c8efd42fd345355e9ae8680b767b1b8d004c9e9baf2b4ad9b993b59", 299 + "md5": "11af2b0e169436278538d063370fc04f", 300 + "size": "32776804" 301 + }, 302 + "linux-sbsa": { 303 + "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-11.5.119-archive.tar.xz", 304 + "sha256": "698ccf414b9a7d823dc8d9818df72cac0a10d618ab143b221bbf321ada96ef08", 305 + "md5": "345f1c616a294ec7c70b1f881542a894", 306 + "size": "32729044" 307 + }, 308 + "windows-x86_64": { 309 + "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-11.5.119-archive.zip", 310 + "sha256": "f8dee0ae12696a02a01e95083e1fde8222018f641f7ebf712985fc6c1716f217", 311 + "md5": "f375afe649b16160af3ace6237d241cc", 312 + "size": "32996636" 313 + } 314 + }, 315 + "cuda_nvml_dev": { 316 + "name": "CUDA NVML Headers", 317 + "license": "CUDA Toolkit", 318 + "version": "11.5.50", 319 + "linux-x86_64": { 320 + "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-11.5.50-archive.tar.xz", 321 + "sha256": "e7a03b5c0324ccb5040cd494d2e3f1fba508cc437d666f112a6702d75bd80891", 322 + "md5": "53f9279a45cb1bb6c1993e7245a38a74", 323 + "size": "72176" 324 + }, 325 + "linux-ppc64le": { 326 + "relative_path": "cuda_nvml_dev/linux-ppc64le/cuda_nvml_dev-linux-ppc64le-11.5.50-archive.tar.xz", 327 + "sha256": "753ac81cde5a58b7bd4b59d56ab5e0ba973f96d6ffe95c447eb47f170d0c74be", 328 + "md5": "f08c23cf9598624799c19e628c6d91f8", 329 + "size": "71972" 330 + }, 331 + "linux-sbsa": { 332 + "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-11.5.50-archive.tar.xz", 333 + "sha256": "d3f913393ec4a1648fc5230c766606e1c8a7ca31f7595fd149f5cbeea63bd01a", 334 + "md5": "090c36b75393eef09d3b527521fa3791", 335 + "size": "72472" 336 + }, 337 + "windows-x86_64": { 338 + "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-11.5.50-archive.zip", 339 + "sha256": "ccd320d7b4aa8c7006085e003b9763a20a37e101e59dde8bcaf13f1e3b5ec04c", 340 + "md5": "b36dc6c87730612d3c538aacb10e89a8", 341 + "size": "100572" 342 + } 343 + }, 344 + "cuda_nvprof": { 345 + "name": "CUDA nvprof", 346 + "license": "CUDA Toolkit", 347 + "version": "11.5.114", 348 + "linux-x86_64": { 349 + "relative_path": "cuda_nvprof/linux-x86_64/cuda_nvprof-linux-x86_64-11.5.114-archive.tar.xz", 350 + "sha256": "611984e6ce96f216da0d5e3f72584b8e89512a712baf8faa5cc95f14be44ce51", 351 + "md5": "3146cddf336fc73e4348018058c57c70", 352 + "size": "1940688" 353 + }, 354 + "linux-ppc64le": { 355 + "relative_path": "cuda_nvprof/linux-ppc64le/cuda_nvprof-linux-ppc64le-11.5.114-archive.tar.xz", 356 + "sha256": "24c238e26fe49489d3aee0429e629eadc24122a93e5935758c97dab91f2a59b3", 357 + "md5": "685eed537cd8f9271d30a1d6a64d2643", 358 + "size": "1597248" 359 + }, 360 + "linux-sbsa": { 361 + "relative_path": "cuda_nvprof/linux-sbsa/cuda_nvprof-linux-sbsa-11.5.114-archive.tar.xz", 362 + "sha256": "b1c7b2498665c70e7d675170f1309f19ec86a55d284fcac6c7e2337c07a565af", 363 + "md5": "e26370530b986512b219f99fe707c57f", 364 + "size": "16196" 365 + }, 366 + "windows-x86_64": { 367 + "relative_path": "cuda_nvprof/windows-x86_64/cuda_nvprof-windows-x86_64-11.5.114-archive.zip", 368 + "sha256": "6274433235b2b61aac7333b9a7472893c6b7ca53e34a9a96ca197e46e925d394", 369 + "md5": "5d47af0e512563b484d3270a9225fad0", 370 + "size": "1599403" 371 + } 372 + }, 373 + "cuda_nvprune": { 374 + "name": "CUDA nvprune", 375 + "license": "CUDA Toolkit", 376 + "version": "11.5.119", 377 + "linux-x86_64": { 378 + "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-11.5.119-archive.tar.xz", 379 + "sha256": "f66c2632dbbdc6153aed2ae8bbf3291de258f7be5fd53350d469cf6f894aaa5c", 380 + "md5": "737a4e6b4ba979934f22cd9ff932f47d", 381 + "size": "55228" 382 + }, 383 + "linux-ppc64le": { 384 + "relative_path": "cuda_nvprune/linux-ppc64le/cuda_nvprune-linux-ppc64le-11.5.119-archive.tar.xz", 385 + "sha256": "209ddd276e857cb41e162f3748778dceb224bbab445469480f6578d1b8a199ad", 386 + "md5": "47f52a330781b2c5e6094ed309043faf", 387 + "size": "55760" 388 + }, 389 + "linux-sbsa": { 390 + "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-11.5.119-archive.tar.xz", 391 + "sha256": "57429ab14f4a99fcc2f7160a9d93f39358a4cf0f8e0d0996973883b1f5c1d520", 392 + "md5": "8b3d84b2e114e53b00e6fc6dd514750d", 393 + "size": "47580" 394 + }, 395 + "windows-x86_64": { 396 + "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-11.5.119-archive.zip", 397 + "sha256": "89a883eee3d6931e9b071c19a9ef07368429b8008fcb0f392229baa3d21b6cc2", 398 + "md5": "3e23701483da9ac6910a52dbcdb48ff0", 399 + "size": "144817" 400 + } 401 + }, 402 + "cuda_nvrtc": { 403 + "name": "CUDA NVRTC", 404 + "license": "CUDA Toolkit", 405 + "version": "11.5.119", 406 + "linux-x86_64": { 407 + "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-11.5.119-archive.tar.xz", 408 + "sha256": "78aa426f8d1bd6a309582268045e92d798dea84ab17b0e41bbf81ed4c6c51c37", 409 + "md5": "a14c3f9a30ca27f0a975b6995b440927", 410 + "size": "27772396" 411 + }, 412 + "linux-ppc64le": { 413 + "relative_path": "cuda_nvrtc/linux-ppc64le/cuda_nvrtc-linux-ppc64le-11.5.119-archive.tar.xz", 414 + "sha256": "bd10849b493902487660d3216a9b1de2c687d0d013085a7194925ff0a8d0461a", 415 + "md5": "b3e11ca277f1c92e8adf8056ee759fc2", 416 + "size": "25932956" 417 + }, 418 + "linux-sbsa": { 419 + "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-11.5.119-archive.tar.xz", 420 + "sha256": "c924444459eca0ee5f5748cc80628c0e8759d6cf70c55b5ce2e1b4b37a46d3cd", 421 + "md5": "31900a4918e162377e634dbc9d01ccba", 422 + "size": "25787560" 423 + }, 424 + "windows-x86_64": { 425 + "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-11.5.119-archive.zip", 426 + "sha256": "e6c7312b4b8f678828dca2b2e29bd8a1afee83709885bffe0115743219e092ae", 427 + "md5": "39a1fb1c6514e7a13d8822fef1fb6e95", 428 + "size": "92408767" 429 + } 430 + }, 431 + "cuda_nvtx": { 432 + "name": "CUDA NVTX", 433 + "license": "CUDA Toolkit", 434 + "version": "11.5.114", 435 + "linux-x86_64": { 436 + "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-11.5.114-archive.tar.xz", 437 + "sha256": "201b000020db8e296f526dbc1bedf6f0d2eb901e6add9d95a8badfaf8708bc7c", 438 + "md5": "fa5a8ec26505381bff0d513c3219b4b6", 439 + "size": "48196" 440 + }, 441 + "linux-ppc64le": { 442 + "relative_path": "cuda_nvtx/linux-ppc64le/cuda_nvtx-linux-ppc64le-11.5.114-archive.tar.xz", 443 + "sha256": "b188a8b413c2f8502c4ac6bd22a8c4d60279f704682a0582e71cb045817c08bc", 444 + "md5": "f51ac28484f7001ee7c10f37d5e98e38", 445 + "size": "48180" 446 + }, 447 + "linux-sbsa": { 448 + "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-11.5.114-archive.tar.xz", 449 + "sha256": "9caf957366bc723e53de7189112bd04d99300932061a2c3590e26215d0a39a04", 450 + "md5": "36e5d0c4a142260d1c5364733ce296cd", 451 + "size": "48740" 452 + }, 453 + "windows-x86_64": { 454 + "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-11.5.114-archive.zip", 455 + "sha256": "4d60f65ef83bcf36d549095350097c4198f78a968452b1fff0f1dabbe96a633b", 456 + "md5": "da8c51d38126ec2541c0f87dfd40aefe", 457 + "size": "65783" 458 + } 459 + }, 460 + "cuda_nvvp": { 461 + "name": "CUDA NVVP", 462 + "license": "CUDA Toolkit", 463 + "version": "11.5.126", 464 + "linux-x86_64": { 465 + "relative_path": "cuda_nvvp/linux-x86_64/cuda_nvvp-linux-x86_64-11.5.126-archive.tar.xz", 466 + "sha256": "453884ffe6732c0e1d19a17944dbdbb948a24ed2980acc67620bc0c160c4e023", 467 + "md5": "9d89a2f1c793736e329a8b0b5176616a", 468 + "size": "117592064" 469 + }, 470 + "linux-ppc64le": { 471 + "relative_path": "cuda_nvvp/linux-ppc64le/cuda_nvvp-linux-ppc64le-11.5.126-archive.tar.xz", 472 + "sha256": "ebb5b6849b4c014b9eeebcaf0f8e333ee8ab4a65cac8ed401a6a31604d7435d6", 473 + "md5": "6d621d6e56884143ac48910950dbc5f5", 474 + "size": "116958804" 475 + }, 476 + "windows-x86_64": { 477 + "relative_path": "cuda_nvvp/windows-x86_64/cuda_nvvp-windows-x86_64-11.5.126-archive.zip", 478 + "sha256": "3e88475b6ce923c736e49f659717ee0cbb0551c5e30f9cb8256ebf740d02f457", 479 + "md5": "4f8b8c7a3cafbdac8dfe3f9507c92d10", 480 + "size": "120342187" 481 + } 482 + }, 483 + "cuda_sanitizer_api": { 484 + "name": "CUDA Compute Sanitizer API", 485 + "license": "CUDA Toolkit", 486 + "version": "11.5.114", 487 + "linux-x86_64": { 488 + "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-11.5.114-archive.tar.xz", 489 + "sha256": "35d13fdeae94b2294c4d83661a663b5bae98e3f9b4aae00be101140a32409047", 490 + "md5": "52719791f4361ee001bd6327d79dcb2b", 491 + "size": "6818460" 492 + }, 493 + "linux-ppc64le": { 494 + "relative_path": "cuda_sanitizer_api/linux-ppc64le/cuda_sanitizer_api-linux-ppc64le-11.5.114-archive.tar.xz", 495 + "sha256": "b5353633dcc09e6360e9da14636774eee8cd9db90dd3ca93b77b1a95b104740c", 496 + "md5": "3f79dbebc1b88b552da041ccb7921ac3", 497 + "size": "7324744" 498 + }, 499 + "linux-sbsa": { 500 + "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-11.5.114-archive.tar.xz", 501 + "sha256": "3ce2d4421f9d8547bedb25c0ae8054ab0bb755384a33eea79dd036a8d4658a7f", 502 + "md5": "7585db5187b4fcbb713ff89eaf877389", 503 + "size": "5391196" 504 + }, 505 + "windows-x86_64": { 506 + "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-11.5.114-archive.zip", 507 + "sha256": "b216d0292002b4cc673a374f06576bc062e6566062a32edcdca60716e98f6587", 508 + "md5": "eccae888d8ee4264f8b5517f9af7fbc3", 509 + "size": "12199859" 510 + } 511 + }, 512 + "fabricmanager": { 513 + "name": "NVIDIA Fabric Manager", 514 + "license": "NVIDIA Driver", 515 + "version": "495.29.05", 516 + "linux-x86_64": { 517 + "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-495.29.05-archive.tar.xz", 518 + "sha256": "36966ebf7951dbd77fefb95b326b9084948ac8d03fbb6e8997e90c0fe8f74c9d", 519 + "md5": "4c4f119d897a77448f989534aa453a79", 520 + "size": "1521552" 521 + } 522 + }, 523 + "libcublas": { 524 + "name": "CUDA cuBLAS", 525 + "license": "CUDA Toolkit", 526 + "version": "11.7.4.6", 527 + "linux-x86_64": { 528 + "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-11.7.4.6-archive.tar.xz", 529 + "sha256": "1ba27f135e2f920bb47e22c05e4ef2e0a75e21d9306f5062e44c3d705150a3a9", 530 + "md5": "878826ff2c817a35a335f5e6ff4c5153", 531 + "size": "427700280" 532 + }, 533 + "linux-ppc64le": { 534 + "relative_path": "libcublas/linux-ppc64le/libcublas-linux-ppc64le-11.7.4.6-archive.tar.xz", 535 + "sha256": "061cdbeb437510437b4dfcd053834932e60943be996aea0187f6ba36b7cf614f", 536 + "md5": "fb760e547e07904d0e52578b01326219", 537 + "size": "427200296" 538 + }, 539 + "linux-sbsa": { 540 + "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-11.7.4.6-archive.tar.xz", 541 + "sha256": "38d7045310487b6f3dad4c6f8c5f6420b4dcf9dbf0171f3ef5f48f3e2f0024f9", 542 + "md5": "0c5411a296b474cd02a57de4b8cf4d0d", 543 + "size": "427180072" 544 + }, 545 + "windows-x86_64": { 546 + "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-11.7.4.6-archive.zip", 547 + "sha256": "a5b2c090e7b3da7b9823aa71ecf76a07344846daf8d26b13a06dba2d8a572c79", 548 + "md5": "071e96d21a31393cfef5dd263d2eb90b", 549 + "size": "317995451" 550 + } 551 + }, 552 + "libcufft": { 553 + "name": "CUDA cuFFT", 554 + "license": "CUDA Toolkit", 555 + "version": "10.6.0.107", 556 + "linux-x86_64": { 557 + "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-10.6.0.107-archive.tar.xz", 558 + "sha256": "e2e51dc75c9c5b4476624bf683d50afbcc611f88361392625f017bd3efc545b9", 559 + "md5": "abcd6e63926592b1d8de9a90e9953b44", 560 + "size": "213873928" 561 + }, 562 + "linux-ppc64le": { 563 + "relative_path": "libcufft/linux-ppc64le/libcufft-linux-ppc64le-10.6.0.107-archive.tar.xz", 564 + "sha256": "5e0e004e33a148bf543fd69df8ad7fcd14ae72c60676679908a6cf164a065651", 565 + "md5": "34042143bf1179bde112cee7237d149a", 566 + "size": "214892660" 567 + }, 568 + "linux-sbsa": { 569 + "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-10.6.0.107-archive.tar.xz", 570 + "sha256": "e5ea473699697bcfd2a0ab7b807dbc5dd713bfe40221f7356097fb6e2577d73a", 571 + "md5": "e800a93f81fdb7e95d31a14b7a215138", 572 + "size": "213119620" 573 + }, 574 + "windows-x86_64": { 575 + "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-10.6.0.107-archive.zip", 576 + "sha256": "f6b846a79772640585cbfc35746ededa1210e1ba7005e075d678a4d84ffd93ec", 577 + "md5": "7ec0315c986911ad1ea1cfd1705bc57a", 578 + "size": "287130074" 579 + } 580 + }, 581 + "libcufile": { 582 + "name": "CUDA cuFile", 583 + "license": "CUDA Toolkit", 584 + "version": "1.1.1.25", 585 + "linux-x86_64": { 586 + "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.1.1.25-archive.tar.xz", 587 + "sha256": "b4f4321f4fd249a2f4d68b3cf396a9e5891e33d73a297e21eea0ed9417340808", 588 + "md5": "dae59d20c2f51dc90fb18d017a17664e", 589 + "size": "45837600" 590 + } 591 + }, 592 + "libcurand": { 593 + "name": "CUDA cuRAND", 594 + "license": "CUDA Toolkit", 595 + "version": "10.2.7.107", 596 + "linux-x86_64": { 597 + "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.2.7.107-archive.tar.xz", 598 + "sha256": "9dd3bfa212a4c8e58a6869c4992e710409d34c46d5a683cf99670d5ef5b1f8de", 599 + "md5": "58f7993190fce602ea7e68aab7912774", 600 + "size": "82066560" 601 + }, 602 + "linux-ppc64le": { 603 + "relative_path": "libcurand/linux-ppc64le/libcurand-linux-ppc64le-10.2.7.107-archive.tar.xz", 604 + "sha256": "67d0759b1252d9df7953932ed58d01c05a4861121c19bafbb544b585113552ab", 605 + "md5": "368e13f6b9eb6e72fbc852d6dcfc4b6f", 606 + "size": "82116948" 607 + }, 608 + "linux-sbsa": { 609 + "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.2.7.107-archive.tar.xz", 610 + "sha256": "e8f2cc5e786812cf70bd7bd37a9c78e3341e602c402177d44e7bf07fe7e85142", 611 + "md5": "97065efb1e5fb99589540a45711eb2f3", 612 + "size": "82051480" 613 + }, 614 + "windows-x86_64": { 615 + "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.2.7.107-archive.zip", 616 + "sha256": "fa74020026d1cf81b0a3004c823ae40a4f0a02df34041438b992e6058ff97cd2", 617 + "md5": "df2a95194669cc02d987ee6527c5c6e3", 618 + "size": "53627481" 619 + } 620 + }, 621 + "libcusolver": { 622 + "name": "CUDA cuSOLVER", 623 + "license": "CUDA Toolkit", 624 + "version": "11.3.2.107", 625 + "linux-x86_64": { 626 + "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-11.3.2.107-archive.tar.xz", 627 + "sha256": "4c9e3fec211fa6cc6dd14a7d09237c56f43789e498817cd0839b0e6ef9c498fa", 628 + "md5": "19b927da5bb8c6fc28b2667e57eda7eb", 629 + "size": "69221812" 630 + }, 631 + "linux-ppc64le": { 632 + "relative_path": "libcusolver/linux-ppc64le/libcusolver-linux-ppc64le-11.3.2.107-archive.tar.xz", 633 + "sha256": "1f216cdda56463d333ffe4d52cf18283b3a8d917737698f5c8ed5851120f119a", 634 + "md5": "6b3ac8f0889f968c34e6fe903340ff5c", 635 + "size": "69348116" 636 + }, 637 + "linux-sbsa": { 638 + "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-11.3.2.107-archive.tar.xz", 639 + "sha256": "6feba029d8838d17345c38d77b6cd0e7853934106edcc5d5f6ec57646b499d28", 640 + "md5": "55492c175f1a152df54365544e2b582d", 641 + "size": "68661512" 642 + }, 643 + "windows-x86_64": { 644 + "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-11.3.2.107-archive.zip", 645 + "sha256": "325684ebefb24f7a47c5868a87f8dc38c88812c12f113bd57029b3a715c95405", 646 + "md5": "8936a0967f4178e7170f9e55fa4e6cd3", 647 + "size": "98405802" 648 + } 649 + }, 650 + "libcusparse": { 651 + "name": "CUDA cuSPARSE", 652 + "license": "CUDA Toolkit", 653 + "version": "11.7.0.107", 654 + "linux-x86_64": { 655 + "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-11.7.0.107-archive.tar.xz", 656 + "sha256": "9e768d6278df1b2323e2708bbf53af0bdb2955c0c4688eb69d5e418aea3a9b41", 657 + "md5": "c7653a07b2388d887c4e6b3ac1afafb4", 658 + "size": "181259248" 659 + }, 660 + "linux-ppc64le": { 661 + "relative_path": "libcusparse/linux-ppc64le/libcusparse-linux-ppc64le-11.7.0.107-archive.tar.xz", 662 + "sha256": "f01d662635d7b2001ace6122058159c9583c61db3fc5849a8ae025b9963657ec", 663 + "md5": "91b9e100ce9bae17ea08d97152184e44", 664 + "size": "181408304" 665 + }, 666 + "linux-sbsa": { 667 + "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-11.7.0.107-archive.tar.xz", 668 + "sha256": "88de7ce848b929439ba1fa1baf487ec56fedc39f8042a862c2f5522fbc1e82a2", 669 + "md5": "aec6e62aeff853dff5a150e2d0ca8aa1", 670 + "size": "181074920" 671 + }, 672 + "windows-x86_64": { 673 + "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-11.7.0.107-archive.zip", 674 + "sha256": "365a0316da888e0b8cc17b3e958b24b9faefa35e6b5fded7d9083483c1f0c097", 675 + "md5": "3c870ec7f8fc23130c66f989afd16a8e", 676 + "size": "149810382" 677 + } 678 + }, 679 + "libnpp": { 680 + "name": "CUDA NPP", 681 + "license": "CUDA Toolkit", 682 + "version": "11.5.1.107", 683 + "linux-x86_64": { 684 + "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-11.5.1.107-archive.tar.xz", 685 + "sha256": "5c6bcb73d6e2426e7369e5157387e02f70db3e94b2351c447ce559cba57e36f4", 686 + "md5": "762faaa53a62272ba508188779fc43f6", 687 + "size": "156693812" 688 + }, 689 + "linux-ppc64le": { 690 + "relative_path": "libnpp/linux-ppc64le/libnpp-linux-ppc64le-11.5.1.107-archive.tar.xz", 691 + "sha256": "cf2cbc740d9c111d9d266737f62ba4b44cfc84590fe1f9f4bf848b0908296971", 692 + "md5": "e284bab2afa99d9654c1b97ae407434f", 693 + "size": "156937760" 694 + }, 695 + "linux-sbsa": { 696 + "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-11.5.1.107-archive.tar.xz", 697 + "sha256": "cd86f76d41010e7fd37804ba102ec6896de4e51a2724cf44b9e7b22c1aa86429", 698 + "md5": "037ada0cfe8cb4885ceb07eb3423f789", 699 + "size": "156056260" 700 + }, 701 + "windows-x86_64": { 702 + "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-11.5.1.107-archive.zip", 703 + "sha256": "3ef847675b5cecdd70ede5216b91530bff152478441dc4b1e0d73bfcdb586a06", 704 + "md5": "d04eed9ff4432bc48f0afae802841793", 705 + "size": "121933476" 706 + } 707 + }, 708 + "libnvidia_nscq": { 709 + "name": "NVIDIA NSCQ API", 710 + "license": "NVIDIA Driver", 711 + "version": "495.29.05", 712 + "linux-x86_64": { 713 + "relative_path": "libnvidia_nscq/linux-x86_64/libnvidia_nscq-linux-x86_64-495.29.05-archive.tar.xz", 714 + "sha256": "19e036898474c89697c4adf4958daa241c07b6d9c9f6623190dd7a3b667a4c6b", 715 + "md5": "733c3a1ef5c33e4b4ccfaad11b514a98", 716 + "size": "316860" 717 + } 718 + }, 719 + "libnvjpeg": { 720 + "name": "CUDA nvJPEG", 721 + "license": "CUDA Toolkit", 722 + "version": "11.5.4.107", 723 + "linux-x86_64": { 724 + "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-11.5.4.107-archive.tar.xz", 725 + "sha256": "3943941f449e8a9aea465e26a25f3d0315e45a57c5ab993f1d15dac7453dcffc", 726 + "md5": "6459aa39efda628e4de36caafc938158", 727 + "size": "1902936" 728 + }, 729 + "linux-ppc64le": { 730 + "relative_path": "libnvjpeg/linux-ppc64le/libnvjpeg-linux-ppc64le-11.5.4.107-archive.tar.xz", 731 + "sha256": "760295c056951752ba7f4a5a56f4e5afe1538eafbc8ea01c21abe9b8bbd3f09e", 732 + "md5": "ee70cf1d8888bd696b34eb9981c865af", 733 + "size": "1924452" 734 + }, 735 + "linux-sbsa": { 736 + "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-11.5.4.107-archive.tar.xz", 737 + "sha256": "4dbc3c0da37ce108faadcaebbe72335984a60ed055b29fa56edfd89aad9d89cc", 738 + "md5": "54f25526b1d95a5e2a02ddc33eaf1ada", 739 + "size": "1735520" 740 + }, 741 + "windows-x86_64": { 742 + "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-11.5.4.107-archive.zip", 743 + "sha256": "50bb7bdd84a8ec74d4b2e2a133d8dd0474aa4224c3e7643ed75a7864cf705df6", 744 + "md5": "ef86aa6770eba3dc31a33698b600507b", 745 + "size": "1941889" 746 + } 747 + }, 748 + "nsight_compute": { 749 + "name": "Nsight Compute", 750 + "license": "NVIDIA SLA", 751 + "version": "2021.3.1.4", 752 + "linux-x86_64": { 753 + "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2021.3.1.4-archive.tar.xz", 754 + "sha256": "75cd4ca50472c8e4d6729e2f319a2e2f225c21450e868169608eaf1651de7cfd", 755 + "md5": "d4de103a4cce16501323ab22da3a5d3f", 756 + "size": "409065700" 757 + }, 758 + "linux-ppc64le": { 759 + "relative_path": "nsight_compute/linux-ppc64le/nsight_compute-linux-ppc64le-2021.3.1.4-archive.tar.xz", 760 + "sha256": "326be8ea63091f14e7de7cf11d5c8e465200770518dccafc45ade7583e42e049", 761 + "md5": "0a34928121b5518075a3a50919f94999", 762 + "size": "123353872" 763 + }, 764 + "linux-sbsa": { 765 + "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2021.3.1.4-archive.tar.xz", 766 + "sha256": "f846e7f443df58dd03ad7da27483dc159715bdf1e260200499bc1ba4f9e2ab17", 767 + "md5": "6a22972b8771101d334cdd0f65785727", 768 + "size": "120013812" 769 + }, 770 + "windows-x86_64": { 771 + "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2021.3.1.4-archive.zip", 772 + "sha256": "6bb1bb69aa8976e8d60a23e25784967628a19622b779b4c5f44a1a5b10b6b312", 773 + "md5": "b3f1e03bf4b2b054287ae3ac9b693052", 774 + "size": "347770366" 775 + } 776 + }, 777 + "nsight_nvtx": { 778 + "name": "Nsight NVTX", 779 + "license": "CUDA Toolkit", 780 + "version": "1.21018621", 781 + "windows-x86_64": { 782 + "relative_path": "nsight_nvtx/windows-x86_64/nsight_nvtx-windows-x86_64-1.21018621-archive.zip", 783 + "sha256": "d99b015bfb1308206f9d7c16ea401bf426fed3a5a99953b855fe4e68be5ed2d1", 784 + "md5": "34ee04d45cfca1c4e3cbfba0ec8f6f80", 785 + "size": "315692" 786 + } 787 + }, 788 + "nsight_systems": { 789 + "name": "Nsight Systems", 790 + "license": "NVIDIA SLA", 791 + "version": "2021.3.3.2", 792 + "linux-x86_64": { 793 + "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2021.3.3.2-archive.tar.xz", 794 + "sha256": "89833f6e45c16c46612ec8ef2b7eab4a949ed86f0a75ebd673548d2ec15bf5bb", 795 + "md5": "4e42508a7365bffca7c574afc1095fb2", 796 + "size": "177789420" 797 + }, 798 + "linux-ppc64le": { 799 + "relative_path": "nsight_systems/linux-ppc64le/nsight_systems-linux-ppc64le-2021.3.3.2-archive.tar.xz", 800 + "sha256": "39e59ff32decff6032df0d735dfe6004e5d543d52d212cd2743e5941900c1a52", 801 + "md5": "56f46452fef6ddceb91121c6a3da78af", 802 + "size": "22565096" 803 + }, 804 + "linux-sbsa": { 805 + "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2021.3.3.2-archive.tar.xz", 806 + "sha256": "292bf43aac5c870be38c28aa536c01b6692ede682b9790622fc7a8862b143b0d", 807 + "md5": "33aead87216f96a372db125f67e6f675", 808 + "size": "34536232" 809 + }, 810 + "windows-x86_64": { 811 + "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2021.3.3.2-archive.zip", 812 + "sha256": "c9c67a83bbfc0bbdcd30391cf3fa285f813f3b8d6dc088c4225a5ca7ccac38a2", 813 + "md5": "ab69a73835e658ac2871160daa01fa50", 814 + "size": "229359100" 815 + } 816 + }, 817 + "nsight_vse": { 818 + "name": "Nsight Visual Studio Edition (VSE)", 819 + "license": "NVIDIA SLA", 820 + "version": "2021.3.1.21308", 821 + "windows-x86_64": { 822 + "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2021.3.1.21308-archive.zip", 823 + "sha256": "ba659a0071bac9a2218c3b5f504c8fbe961f828df27361ed897c0dd41b53f71a", 824 + "md5": "720962c80b8aa09fb496014eb7f25e41", 825 + "size": "284695569" 826 + } 827 + }, 828 + "nvidia_driver": { 829 + "name": "NVIDIA Linux Driver", 830 + "license": "NVIDIA Driver", 831 + "version": "495.29.05", 832 + "linux-x86_64": { 833 + "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-495.29.05-archive.tar.xz", 834 + "sha256": "6a0675a60fde511573362490c290ca71b2bf111dd85c9ca16a7ed9786c15961f", 835 + "md5": "04805f93ad0db2b845584c65aea21f3c", 836 + "size": "280281252" 837 + }, 838 + "linux-ppc64le": { 839 + "relative_path": "nvidia_driver/linux-ppc64le/nvidia_driver-linux-ppc64le-495.29.05-archive.tar.xz", 840 + "sha256": "70c99be31356f0620971f335cfc9886fe3d6097182c5b823c85ec15758e08933", 841 + "md5": "9ed9d400e2ef25b321a4709052b436e4", 842 + "size": "69613620" 843 + }, 844 + "linux-sbsa": { 845 + "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-495.29.05-archive.tar.xz", 846 + "sha256": "625c72d1d1e14d97c90b3fb8c6d5f7ac3d1649caa10cef1aa13239163672046e", 847 + "md5": "dbc65a82959790a387b1f343481101b4", 848 + "size": "210257752" 849 + } 850 + }, 851 + "nvidia_fs": { 852 + "name": "NVIDIA filesystem", 853 + "license": "CUDA Toolkit", 854 + "version": "2.9.5", 855 + "linux-x86_64": { 856 + "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.9.5-archive.tar.xz", 857 + "sha256": "fd31bcf21b2244f217f9ffaa64cda9c066ed06d68b30925d520f2096a0400b2c", 858 + "md5": "8d66bf76c611305a54e03a0a75ecdcda", 859 + "size": "68004" 860 + } 861 + }, 862 + "visual_studio_integration": { 863 + "name": "CUDA Visual Studio Integration", 864 + "license": "CUDA Toolkit", 865 + "version": "11.5.114", 866 + "windows-x86_64": { 867 + "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-11.5.114-archive.zip", 868 + "sha256": "fecbef30b4af477da75087f5bdd70dfc6ae4d821ac2bda3f0a50c058fe71813b", 869 + "md5": "15a9e0f0ec782b7ba70b564e27e8c264", 870 + "size": "387859" 871 + } 872 + } 873 + }
+873
pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_11.6.2.json
··· 1 + { 2 + "release_date": "2022-03-24", 3 + "cuda_cccl": { 4 + "name": "CXX Core Compute Libraries", 5 + "license": "CUDA Toolkit", 6 + "version": "11.6.55", 7 + "linux-x86_64": { 8 + "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-11.6.55-archive.tar.xz", 9 + "sha256": "14aee04c86a47321b9fee1c86c9a640be7729ed8063663ed0c7dafdd77fb18f5", 10 + "md5": "e90bbf846f635ea84290fb518e62e838", 11 + "size": "1002296" 12 + }, 13 + "linux-ppc64le": { 14 + "relative_path": "cuda_cccl/linux-ppc64le/cuda_cccl-linux-ppc64le-11.6.55-archive.tar.xz", 15 + "sha256": "cdaa96fc3afe7c552ce31d5b2328072edfbce6c85018455c9e90a572187e84eb", 16 + "md5": "c2178d1d3557c0801c654ff8a9cd2261", 17 + "size": "1002552" 18 + }, 19 + "linux-sbsa": { 20 + "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-11.6.55-archive.tar.xz", 21 + "sha256": "6de184be2cee64b278befc0839d0b08104f19f6d15358e3bd8a92cefca552e20", 22 + "md5": "78244bc649923a7bdf13ae43391d57a3", 23 + "size": "1001980" 24 + }, 25 + "windows-x86_64": { 26 + "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-11.6.55-archive.zip", 27 + "sha256": "badc95a0e47e9c2866ebf970dae757c827b91c27820fc75dc28a459c0014bb2f", 28 + "md5": "b3a7384be4e8096125956cbb2d5b8406", 29 + "size": "2559109" 30 + } 31 + }, 32 + "cuda_cudart": { 33 + "name": "CUDA Runtime (cudart)", 34 + "license": "CUDA Toolkit", 35 + "version": "11.6.55", 36 + "linux-x86_64": { 37 + "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-11.6.55-archive.tar.xz", 38 + "sha256": "734a77b3a26a9d08489d43afb74bad230c7c4a0ed2d17a6317a47cf363dca521", 39 + "md5": "7bfd91b0267ce3cebf56bdba03bd99a9", 40 + "size": "841896" 41 + }, 42 + "linux-ppc64le": { 43 + "relative_path": "cuda_cudart/linux-ppc64le/cuda_cudart-linux-ppc64le-11.6.55-archive.tar.xz", 44 + "sha256": "96b9b708bd9f636fe60ae811a09a6bbb0d66c72045eb82dff7f4bbf7b6714110", 45 + "md5": "67b819cb88f54a3133bc44f35b94e5b8", 46 + "size": "786292" 47 + }, 48 + "linux-sbsa": { 49 + "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-11.6.55-archive.tar.xz", 50 + "sha256": "ae0ba7295280c4b2f2a217bc79cc604a3beb20484011dd2db604507f31fde0a7", 51 + "md5": "3db43585c175429e7670592684500df3", 52 + "size": "785420" 53 + }, 54 + "windows-x86_64": { 55 + "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-11.6.55-archive.zip", 56 + "sha256": "d73be9aa0d66b282e94c75032763249a753efb9d63de891ae9a1c4a62ed1aca1", 57 + "md5": "35057ff81c5ff246c2198c18476c36ea", 58 + "size": "2938345" 59 + } 60 + }, 61 + "cuda_cuobjdump": { 62 + "name": "cuobjdump", 63 + "license": "CUDA Toolkit", 64 + "version": "11.6.124", 65 + "linux-x86_64": { 66 + "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-11.6.124-archive.tar.xz", 67 + "sha256": "625c7ce21089a52ae6b0a9a6b7d112b98f219cdcf451b94e6f7e523c437d5db1", 68 + "md5": "973f41a831d158256b19b6768e4d0331", 69 + "size": "112708" 70 + }, 71 + "linux-ppc64le": { 72 + "relative_path": "cuda_cuobjdump/linux-ppc64le/cuda_cuobjdump-linux-ppc64le-11.6.124-archive.tar.xz", 73 + "sha256": "36c51224b98b7d040f41240cb12f6b43f61f334de3d6cc26d8ca3f35b50df68e", 74 + "md5": "5f773be10cc49868534eccaf9bb98f86", 75 + "size": "117668" 76 + }, 77 + "linux-sbsa": { 78 + "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-11.6.124-archive.tar.xz", 79 + "sha256": "1ea90073f8769a8e5a16b4b18245c77fd217ff8d5d484f33475bebda046e5ff5", 80 + "md5": "548c27670912ae14840d897ffb8b2ecb", 81 + "size": "101720" 82 + }, 83 + "windows-x86_64": { 84 + "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-11.6.124-archive.zip", 85 + "sha256": "609599e7fc20e20cf53e2cf4f2618e467cb1bc00dcb9d09520cd2251bd3056a7", 86 + "md5": "5def9ac8588bcb15eeed361f2bdd78db", 87 + "size": "2539928" 88 + } 89 + }, 90 + "cuda_cupti": { 91 + "name": "CUPTI", 92 + "license": "CUDA Toolkit", 93 + "version": "11.6.124", 94 + "linux-x86_64": { 95 + "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-11.6.124-archive.tar.xz", 96 + "sha256": "e56a68900e08dc1165cc8efabba1073087ebd5d8742cd16ef463cb3638b5d1a8", 97 + "md5": "1c7d94a562519c1b92b8640606fc1ca4", 98 + "size": "16027484" 99 + }, 100 + "linux-ppc64le": { 101 + "relative_path": "cuda_cupti/linux-ppc64le/cuda_cupti-linux-ppc64le-11.6.124-archive.tar.xz", 102 + "sha256": "aac47225b052fd5c316816400a0e4470a8257e3894526e85c1155c81088314e5", 103 + "md5": "cc15ff34145b7ad8d7b0a7fd9ef0ae28", 104 + "size": "8532396" 105 + }, 106 + "linux-sbsa": { 107 + "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-11.6.124-archive.tar.xz", 108 + "sha256": "8e45eac6e94938de807c44d2f846a0e8996a065b0817c2119948193fec279ca6", 109 + "md5": "fc9530922d0adafcea054efcdaf7579e", 110 + "size": "8370644" 111 + }, 112 + "windows-x86_64": { 113 + "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-11.6.124-archive.zip", 114 + "sha256": "ff7d4d4d7a83b2fe1bb3b964a44fdc29261470b239fc9c113e91e6b1bf1e9707", 115 + "md5": "ac8391077028cc3eb3775d3eb4099865", 116 + "size": "11384612" 117 + } 118 + }, 119 + "cuda_cuxxfilt": { 120 + "name": "CUDA cuxxfilt (demangler)", 121 + "license": "CUDA Toolkit", 122 + "version": "11.6.124", 123 + "linux-x86_64": { 124 + "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-11.6.124-archive.tar.xz", 125 + "sha256": "3233b1dc13802701821a2cdebdcee5908ae03c63f457b8574ae1798c75245375", 126 + "md5": "cbef12e45924009f5a6160fcc438fe42", 127 + "size": "185732" 128 + }, 129 + "linux-ppc64le": { 130 + "relative_path": "cuda_cuxxfilt/linux-ppc64le/cuda_cuxxfilt-linux-ppc64le-11.6.124-archive.tar.xz", 131 + "sha256": "1f9d5f7093b6738452bc8311ce6fb13b9a59ede1c6f5476166237a3338002cc4", 132 + "md5": "4dddd337619ee17921f1562a7d98b7d1", 133 + "size": "182032" 134 + }, 135 + "linux-sbsa": { 136 + "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-11.6.124-archive.tar.xz", 137 + "sha256": "89aea00186991c56d4acc6e9ced0f3e8d9eeca991c8fc1fbc6db1ffc8be17f36", 138 + "md5": "7f9874d247e48d29778e2750be23b1f1", 139 + "size": "172524" 140 + }, 141 + "windows-x86_64": { 142 + "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-11.6.124-archive.zip", 143 + "sha256": "b1e3ce998310240e60355e75aa3ad6b166fda5cae2c9e59573691f3f6b125ed8", 144 + "md5": "2941018da652cbdb255c644532d00e50", 145 + "size": "168845" 146 + } 147 + }, 148 + "cuda_demo_suite": { 149 + "name": "CUDA Demo Suite", 150 + "license": "CUDA Toolkit", 151 + "version": "11.6.55", 152 + "linux-x86_64": { 153 + "relative_path": "cuda_demo_suite/linux-x86_64/cuda_demo_suite-linux-x86_64-11.6.55-archive.tar.xz", 154 + "sha256": "82da6b7346257c94bf5ad25c93d5bf54eaf97a224b212bd166179a2e3d93f8a1", 155 + "md5": "8330c6571b66865c587755e6c922c213", 156 + "size": "3996208" 157 + }, 158 + "windows-x86_64": { 159 + "relative_path": "cuda_demo_suite/windows-x86_64/cuda_demo_suite-windows-x86_64-11.6.55-archive.zip", 160 + "sha256": "0c4c3be4f185fb9ddf2bb3f012ad506e7a23e39634f685ffe59fac01435b4eef", 161 + "md5": "0e536ea97e3e685e9a73170ca1e693f1", 162 + "size": "5021636" 163 + } 164 + }, 165 + "cuda_documentation": { 166 + "name": "CUDA Documentation", 167 + "license": "CUDA Toolkit", 168 + "version": "11.6.124", 169 + "linux-x86_64": { 170 + "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-11.6.124-archive.tar.xz", 171 + "sha256": "75a2082caebc02b82ac899c354abd810f2bcd012476ace25fbe56ad78c5bd566", 172 + "md5": "a7eade47d3e3821d7b1a67c9afc1f490", 173 + "size": "66348" 174 + }, 175 + "linux-ppc64le": { 176 + "relative_path": "cuda_documentation/linux-ppc64le/cuda_documentation-linux-ppc64le-11.6.124-archive.tar.xz", 177 + "sha256": "a51b38d9925ec6564b26b922f3ef15b3781b9017c056beaa589d9e15384e9994", 178 + "md5": "4d906f72e586f8ca216118730e9880be", 179 + "size": "66572" 180 + }, 181 + "linux-sbsa": { 182 + "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-11.6.124-archive.tar.xz", 183 + "sha256": "78f6d84ea1cba3547c3f094873062d18d30a1a45cf0af8d89b3dd4c4b03f111e", 184 + "md5": "0af218b799f48e8469fad088cd2c9017", 185 + "size": "66404" 186 + }, 187 + "windows-x86_64": { 188 + "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-11.6.124-archive.zip", 189 + "sha256": "a4e0d6fc04ead69db208912487303a996dea1f37eeb7b3caff664dca10cf42a8", 190 + "md5": "f055cb3244441fb9785cb38354d22af8", 191 + "size": "104626" 192 + } 193 + }, 194 + "cuda_gdb": { 195 + "name": "CUDA GDB", 196 + "license": "CUDA Toolkit", 197 + "version": "11.6.124", 198 + "linux-x86_64": { 199 + "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-11.6.124-archive.tar.xz", 200 + "sha256": "95dd2cbf756a2fd3bcb8c9aa71b6ba4ee385430749b9c626849f7cc4ec6e8f29", 201 + "md5": "ba6a284942d5c1d977fc08eb28bff3f9", 202 + "size": "64257284" 203 + }, 204 + "linux-ppc64le": { 205 + "relative_path": "cuda_gdb/linux-ppc64le/cuda_gdb-linux-ppc64le-11.6.124-archive.tar.xz", 206 + "sha256": "4aaf9142728e8908db14b23af9e8bcdd77825a80e628ca8be9e0392c997ecf0a", 207 + "md5": "30c6bac5a3c72d7f503c7cd98d644b3b", 208 + "size": "64138892" 209 + }, 210 + "linux-sbsa": { 211 + "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-11.6.124-archive.tar.xz", 212 + "sha256": "5206bb2a6eb4978ddc7732689d3b94e6b1dd2d655ed6d95a514dd67404d727a4", 213 + "md5": "647cc2598ee0a2d42993b31318c5fc25", 214 + "size": "64040212" 215 + } 216 + }, 217 + "cuda_memcheck": { 218 + "name": "CUDA Memcheck", 219 + "license": "CUDA Toolkit", 220 + "version": "11.6.124", 221 + "linux-x86_64": { 222 + "relative_path": "cuda_memcheck/linux-x86_64/cuda_memcheck-linux-x86_64-11.6.124-archive.tar.xz", 223 + "sha256": "5f0983c0945315d4a7beea92793aae4ffac72832870857345e9645edddc2f35b", 224 + "md5": "8db021e48b154f9194f280728b41512e", 225 + "size": "139868" 226 + }, 227 + "linux-ppc64le": { 228 + "relative_path": "cuda_memcheck/linux-ppc64le/cuda_memcheck-linux-ppc64le-11.6.124-archive.tar.xz", 229 + "sha256": "67cb7a5ef1b411864f0af3fc429e74570f8920c3883ee80e1b1989746ffa11cc", 230 + "md5": "af50c409bb97fc1b724b1129bd823fda", 231 + "size": "147996" 232 + }, 233 + "windows-x86_64": { 234 + "relative_path": "cuda_memcheck/windows-x86_64/cuda_memcheck-windows-x86_64-11.6.124-archive.zip", 235 + "sha256": "58844652c2ddfe700348b08ef04c8385d8bbf36b89a421ecdcc774667ad04a0d", 236 + "md5": "dcc37dfd92fe296f1563e6b519872725", 237 + "size": "172867" 238 + } 239 + }, 240 + "cuda_nsight": { 241 + "name": "Nsight Eclipse Edition Plugin", 242 + "license": "CUDA Toolkit", 243 + "version": "11.6.124", 244 + "linux-x86_64": { 245 + "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-11.6.124-archive.tar.xz", 246 + "sha256": "771511b1fedd8b0d684b1fa6c6ff8feacaa0e38010a3f0fba4a02087e0756cbf", 247 + "md5": "51dd87c3625354ef7c7f73689d06c5d4", 248 + "size": "118602976" 249 + }, 250 + "linux-ppc64le": { 251 + "relative_path": "cuda_nsight/linux-ppc64le/cuda_nsight-linux-ppc64le-11.6.124-archive.tar.xz", 252 + "sha256": "07b28f88581db1ea1769a89d5fa23af298a385ff4feb14f8dbe801d9cb05a098", 253 + "md5": "418edda7b00500c49cf0731f5ae75c2b", 254 + "size": "118602980" 255 + } 256 + }, 257 + "cuda_nvcc": { 258 + "name": "CUDA NVCC", 259 + "license": "CUDA Toolkit", 260 + "version": "11.6.124", 261 + "linux-x86_64": { 262 + "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-11.6.124-archive.tar.xz", 263 + "sha256": "8c81199c5a096869a10c284197cefc1a958df8bf482322a0a48dff9cc82291b8", 264 + "md5": "c05aebe81d33e6850bceee7a36f8f2a5", 265 + "size": "36764236" 266 + }, 267 + "linux-ppc64le": { 268 + "relative_path": "cuda_nvcc/linux-ppc64le/cuda_nvcc-linux-ppc64le-11.6.124-archive.tar.xz", 269 + "sha256": "d63f1cf84896e16e0a90c97bab56f77a88449233025299ee96a7997b9522fb0f", 270 + "md5": "2dfc257209fcb7773b8f0664abf3d0af", 271 + "size": "34593028" 272 + }, 273 + "linux-sbsa": { 274 + "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-11.6.124-archive.tar.xz", 275 + "sha256": "cdca0d230967ccf227063841ae984704a1812663bd0074e400eee57ba47d99a9", 276 + "md5": "24cd10d3274df8ca62297a097b9edf92", 277 + "size": "32366400" 278 + }, 279 + "windows-x86_64": { 280 + "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-11.6.124-archive.zip", 281 + "sha256": "ab39ba1495ebe474fb74cea2b520bc4a3c80e6953ebf774c6cd4058c50be94e1", 282 + "md5": "5f85971067866e0c8c8af33fb2e4c432", 283 + "size": "46956615" 284 + } 285 + }, 286 + "cuda_nvdisasm": { 287 + "name": "CUDA nvdisasm", 288 + "license": "CUDA Toolkit", 289 + "version": "11.6.124", 290 + "linux-x86_64": { 291 + "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-11.6.124-archive.tar.xz", 292 + "sha256": "1645505394a9d186741c7c2e07dea05fc1852bfa6a0663fdc53176ffaedff548", 293 + "md5": "55d1a19ce1ad9de70ea6e620fff8c3d2", 294 + "size": "32786504" 295 + }, 296 + "linux-ppc64le": { 297 + "relative_path": "cuda_nvdisasm/linux-ppc64le/cuda_nvdisasm-linux-ppc64le-11.6.124-archive.tar.xz", 298 + "sha256": "972744cd85dcb48fb0d313c7deabee246702e7d35443f96503a56ddee1904d00", 299 + "md5": "9690d65addaa1a6c43800570e15d9645", 300 + "size": "32788856" 301 + }, 302 + "linux-sbsa": { 303 + "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-11.6.124-archive.tar.xz", 304 + "sha256": "d4e5e3eef98659f3d1464576d3ec715469918def222cf7f84851ba06716fa8dd", 305 + "md5": "b5430097ec81b02d7e5c1e6eabd3c801", 306 + "size": "32715804" 307 + }, 308 + "windows-x86_64": { 309 + "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-11.6.124-archive.zip", 310 + "sha256": "e318fc6ae9b33e6cc657c655a0c1eff5f56828abbea208728619c9bdfc59eb7d", 311 + "md5": "ca2d64b77bcbf3c6aa9fa53b552ca63b", 312 + "size": "32999132" 313 + } 314 + }, 315 + "cuda_nvml_dev": { 316 + "name": "CUDA NVML Headers", 317 + "license": "CUDA Toolkit", 318 + "version": "11.6.55", 319 + "linux-x86_64": { 320 + "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-11.6.55-archive.tar.xz", 321 + "sha256": "12cbd1279ffe240396cba3c7d8e27fe9b4ee0e0db81850b29462544d83ca23c0", 322 + "md5": "e91c008f71ee4eda2dc32c9a51e6b479", 323 + "size": "74380" 324 + }, 325 + "linux-ppc64le": { 326 + "relative_path": "cuda_nvml_dev/linux-ppc64le/cuda_nvml_dev-linux-ppc64le-11.6.55-archive.tar.xz", 327 + "sha256": "6134b127d84ec38c3d496d34214500e22bc455dd13677a957d6d1e2787a27950", 328 + "md5": "56adc2658a5d9e7ac72be9769b0b4d96", 329 + "size": "73936" 330 + }, 331 + "linux-sbsa": { 332 + "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-11.6.55-archive.tar.xz", 333 + "sha256": "72dbcd80bb8acf675c924fbafa9462122743e37aa51a147f3e07cf0d34044292", 334 + "md5": "491a21dab70c5d4b3dc8145df7737b1b", 335 + "size": "74440" 336 + }, 337 + "windows-x86_64": { 338 + "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-11.6.55-archive.zip", 339 + "sha256": "35dbf8f8f2974973a52b3363fa3936ce952ce94dc2aabca9aaf1f79039a633b9", 340 + "md5": "4dec589b69ec53618f86d35418b0edb5", 341 + "size": "103281" 342 + } 343 + }, 344 + "cuda_nvprof": { 345 + "name": "CUDA nvprof", 346 + "license": "CUDA Toolkit", 347 + "version": "11.6.124", 348 + "linux-x86_64": { 349 + "relative_path": "cuda_nvprof/linux-x86_64/cuda_nvprof-linux-x86_64-11.6.124-archive.tar.xz", 350 + "sha256": "2c05600562bcbe4841cd0d86fdbf2fecba36c54ad393979cb22653dd45487a9b", 351 + "md5": "e22c5dd6199769553ef43ce71e4dae0d", 352 + "size": "1943508" 353 + }, 354 + "linux-ppc64le": { 355 + "relative_path": "cuda_nvprof/linux-ppc64le/cuda_nvprof-linux-ppc64le-11.6.124-archive.tar.xz", 356 + "sha256": "39d891bc85c431551d039a23d249f0c87b723a0d0683a5bf689f2fa4b3cdffd8", 357 + "md5": "faf88332bafdfece1c5e63001271dc9e", 358 + "size": "1598652" 359 + }, 360 + "linux-sbsa": { 361 + "relative_path": "cuda_nvprof/linux-sbsa/cuda_nvprof-linux-sbsa-11.6.124-archive.tar.xz", 362 + "sha256": "3e3275bd148fa1c3a73ef468c2a1e633fe736cb1b1c834a2693a177be9e3cbc9", 363 + "md5": "abd2a3edafc9e1a069844559ca0b6352", 364 + "size": "16148" 365 + }, 366 + "windows-x86_64": { 367 + "relative_path": "cuda_nvprof/windows-x86_64/cuda_nvprof-windows-x86_64-11.6.124-archive.zip", 368 + "sha256": "4c965334058241f8d3cff2d1d8f37d8745796c0913e8fc440673dcc55c630808", 369 + "md5": "85f85e5eb14b46756f67413e45237a8c", 370 + "size": "1603422" 371 + } 372 + }, 373 + "cuda_nvprune": { 374 + "name": "CUDA nvprune", 375 + "license": "CUDA Toolkit", 376 + "version": "11.6.124", 377 + "linux-x86_64": { 378 + "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-11.6.124-archive.tar.xz", 379 + "sha256": "0b1f79447efedef09c54d517eff994995b36d486f642379fd278ddbb4d29f5ea", 380 + "md5": "644603927c6d326fb5fd4e6e3e23aa67", 381 + "size": "55168" 382 + }, 383 + "linux-ppc64le": { 384 + "relative_path": "cuda_nvprune/linux-ppc64le/cuda_nvprune-linux-ppc64le-11.6.124-archive.tar.xz", 385 + "sha256": "5c6bd788e9575fc09f9e687b15123ad4bdde25008425c7f0108e319a952f5273", 386 + "md5": "065bc537a28f5b8ccf546af677391e7a", 387 + "size": "55876" 388 + }, 389 + "linux-sbsa": { 390 + "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-11.6.124-archive.tar.xz", 391 + "sha256": "6b9c0df46418b682497feeac9cf56edfc5679e06d60a94158732aac125aa560d", 392 + "md5": "e547bc9e771de95ccac8f5945a7c6ed9", 393 + "size": "47532" 394 + }, 395 + "windows-x86_64": { 396 + "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-11.6.124-archive.zip", 397 + "sha256": "991f7574ef06eef1f63e94af188d48e360b7ffcebe6fe5b9e088d91b6579009e", 398 + "md5": "cb3517ad769c0b0935a76fac1a976f91", 399 + "size": "144822" 400 + } 401 + }, 402 + "cuda_nvrtc": { 403 + "name": "CUDA NVRTC", 404 + "license": "CUDA Toolkit", 405 + "version": "11.6.124", 406 + "linux-x86_64": { 407 + "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-11.6.124-archive.tar.xz", 408 + "sha256": "9086e9f0ac56337d8e80d3cd1d78f79633f8725cdd0bb5a9864311a2ba95c1e0", 409 + "md5": "01bf28fce5c9140190d9750e1585e7a8", 410 + "size": "27889392" 411 + }, 412 + "linux-ppc64le": { 413 + "relative_path": "cuda_nvrtc/linux-ppc64le/cuda_nvrtc-linux-ppc64le-11.6.124-archive.tar.xz", 414 + "sha256": "68b89b68b820c87e32c830b95c7496f814854d213997701f6c0abe78827aa184", 415 + "md5": "ab3a2658922c08ed944889f61d634224", 416 + "size": "26054036" 417 + }, 418 + "linux-sbsa": { 419 + "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-11.6.124-archive.tar.xz", 420 + "sha256": "140d6587924f95fa6a9fbd7ad9a2d57b276ae71f1738b2b6bebfd0a8317b7e6d", 421 + "md5": "b29a768f5bcbf995e8ee1e8bc6c6fd34", 422 + "size": "25908284" 423 + }, 424 + "windows-x86_64": { 425 + "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-11.6.124-archive.zip", 426 + "sha256": "ea5d8de24af80840bcf7d8f91ab1385366ca736485c52910fe269f845711b28f", 427 + "md5": "dc650c5a417e7532633408809c10900a", 428 + "size": "92877744" 429 + } 430 + }, 431 + "cuda_nvtx": { 432 + "name": "CUDA NVTX", 433 + "license": "CUDA Toolkit", 434 + "version": "11.6.124", 435 + "linux-x86_64": { 436 + "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-11.6.124-archive.tar.xz", 437 + "sha256": "02a4fe16e715f6f9d3d6e25a5504c8a2cccab52da40ebbcf21919f002a0ac951", 438 + "md5": "f9b29c3d4034abb5316220674ad3796c", 439 + "size": "48124" 440 + }, 441 + "linux-ppc64le": { 442 + "relative_path": "cuda_nvtx/linux-ppc64le/cuda_nvtx-linux-ppc64le-11.6.124-archive.tar.xz", 443 + "sha256": "fc65a9caca20c892b4bd4f2b6e635e501582fe10474cb3d2ba6f7ed50b2860c1", 444 + "md5": "52a5a1846fc0c83072712e969329af75", 445 + "size": "48140" 446 + }, 447 + "linux-sbsa": { 448 + "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-11.6.124-archive.tar.xz", 449 + "sha256": "f0e7d4f1824ff125b23cb48d37d76034c9daff787cef08316188219269df8220", 450 + "md5": "a67329ea6a2171272a9d1bd36933977f", 451 + "size": "48708" 452 + }, 453 + "windows-x86_64": { 454 + "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-11.6.124-archive.zip", 455 + "sha256": "9e82e18c38ed82aa5beb8aedf4a04770b59ad73113ac9e4e5c4e1e68dc999dad", 456 + "md5": "853296d1ab5efa56a0290c1fc18ff82f", 457 + "size": "65732" 458 + } 459 + }, 460 + "cuda_nvvp": { 461 + "name": "CUDA NVVP", 462 + "license": "CUDA Toolkit", 463 + "version": "11.6.124", 464 + "linux-x86_64": { 465 + "relative_path": "cuda_nvvp/linux-x86_64/cuda_nvvp-linux-x86_64-11.6.124-archive.tar.xz", 466 + "sha256": "bc7ec46b93ce7f8c2399a4d8840e7ed7961a784ef462eaa94c66d81e9725286b", 467 + "md5": "892580326407fc2b16abaa72d05f27e9", 468 + "size": "114308284" 469 + }, 470 + "linux-ppc64le": { 471 + "relative_path": "cuda_nvvp/linux-ppc64le/cuda_nvvp-linux-ppc64le-11.6.124-archive.tar.xz", 472 + "sha256": "672e016a3127ec28d4ddf063bd91baab482c34dd073d839e45fc3c50c1466705", 473 + "md5": "c6eb99303f62d4c3c6d240b8f00f2f0f", 474 + "size": "113832776" 475 + }, 476 + "windows-x86_64": { 477 + "relative_path": "cuda_nvvp/windows-x86_64/cuda_nvvp-windows-x86_64-11.6.124-archive.zip", 478 + "sha256": "374c183ddd5a127a0973fbf2e3dd0cb89d9968ca77bfeab8a3f44529fdc326a4", 479 + "md5": "9f00a05cd166bd92a0ae5cc051540e55", 480 + "size": "120342885" 481 + } 482 + }, 483 + "cuda_sanitizer_api": { 484 + "name": "CUDA Compute Sanitizer API", 485 + "license": "CUDA Toolkit", 486 + "version": "11.6.124", 487 + "linux-x86_64": { 488 + "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-11.6.124-archive.tar.xz", 489 + "sha256": "a6d81ec79be73fe23c7cd16054e9f0494e82dd14ee77ef07c4819af6248c5bfa", 490 + "md5": "31816ee26b4fdd9c0c4f8e85cf723868", 491 + "size": "7988992" 492 + }, 493 + "linux-ppc64le": { 494 + "relative_path": "cuda_sanitizer_api/linux-ppc64le/cuda_sanitizer_api-linux-ppc64le-11.6.124-archive.tar.xz", 495 + "sha256": "3c39b6e7a23c19f91f5d25a2a2d752a15407eddc460c1c56a8e7ae7f8864ec4f", 496 + "md5": "266196017ee59c3058c6c0ffc035ebe0", 497 + "size": "7404564" 498 + }, 499 + "linux-sbsa": { 500 + "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-11.6.124-archive.tar.xz", 501 + "sha256": "d7c55c5a600782d3aa10b5a3a898445a57997394ea626e2e4789f7923a927334", 502 + "md5": "4f3a68e4fa789ba3dcbb7e12bd77abf7", 503 + "size": "6123224" 504 + }, 505 + "windows-x86_64": { 506 + "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-11.6.124-archive.zip", 507 + "sha256": "24d24151b77b1051be2035176475f33d2b260c8a20a3fe1af99ca312490721a8", 508 + "md5": "dc713ceb5f52e2936df2146693e2bdde", 509 + "size": "13126684" 510 + } 511 + }, 512 + "fabricmanager": { 513 + "name": "NVIDIA Fabric Manager", 514 + "license": "NVIDIA Driver", 515 + "version": "510.47.03", 516 + "linux-x86_64": { 517 + "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-510.47.03-archive.tar.xz", 518 + "sha256": "d5c7204160f7b2c688932f90648995bd3bf3a821d99161cefb7e7a9539e22a6f", 519 + "md5": "43dc2904ab88fba0739c8265466f0972", 520 + "size": "1528776" 521 + } 522 + }, 523 + "libcublas": { 524 + "name": "CUDA cuBLAS", 525 + "license": "CUDA Toolkit", 526 + "version": "11.9.2.110", 527 + "linux-x86_64": { 528 + "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-11.9.2.110-archive.tar.xz", 529 + "sha256": "ea2395ea76a811498863774491721d5c4b491fd1498221ef7cb1ae514e6518cb", 530 + "md5": "e46be77087fc85134fb7c85a158f6964", 531 + "size": "434133064" 532 + }, 533 + "linux-ppc64le": { 534 + "relative_path": "libcublas/linux-ppc64le/libcublas-linux-ppc64le-11.9.2.110-archive.tar.xz", 535 + "sha256": "81c729d78ef775958a0aadf2a02ee7f56d826e9b4130d564b9ea92aed6f2998d", 536 + "md5": "658162cbc2982de03d0703400ee8a2b8", 537 + "size": "434108428" 538 + }, 539 + "linux-sbsa": { 540 + "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-11.9.2.110-archive.tar.xz", 541 + "sha256": "8201009b6df0924d599731bcf309190b8e8e3c1eebff0226f12107ca3f5f86dd", 542 + "md5": "56278d0d28664be11c1e53074cf13432", 543 + "size": "434332668" 544 + }, 545 + "windows-x86_64": { 546 + "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-11.9.2.110-archive.zip", 547 + "sha256": "13f5119c43128ccda66ab092bad4435313cf06cb892247e38cb2ec1d8bc96c90", 548 + "md5": "52b685ec11fd3384e49e84243627a0aa", 549 + "size": "324277131" 550 + } 551 + }, 552 + "libcufft": { 553 + "name": "CUDA cuFFT", 554 + "license": "CUDA Toolkit", 555 + "version": "10.7.2.124", 556 + "linux-x86_64": { 557 + "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-10.7.2.124-archive.tar.xz", 558 + "sha256": "95397578c2d18d5df17dafa42cf34d47821953c6d5c9bdba45c7b673ba07276a", 559 + "md5": "e4b681b1a42bfbbfae92995a244d0f23", 560 + "size": "214961728" 561 + }, 562 + "linux-ppc64le": { 563 + "relative_path": "libcufft/linux-ppc64le/libcufft-linux-ppc64le-10.7.2.124-archive.tar.xz", 564 + "sha256": "db425ae3fccbb68a28f0f461a6a022856081d16d06da3a99e903975a89a5d4b1", 565 + "md5": "e0ffc2b9175cefb33b3df4fc6623d882", 566 + "size": "214897136" 567 + }, 568 + "linux-sbsa": { 569 + "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-10.7.2.124-archive.tar.xz", 570 + "sha256": "b132fc468d46a90baac45f8f0484675cc4552120d5912c9c7612d7346c7db9bf", 571 + "md5": "639a4f80a557168fc7ae222fec491e50", 572 + "size": "214000212" 573 + }, 574 + "windows-x86_64": { 575 + "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-10.7.2.124-archive.zip", 576 + "sha256": "d7a613f9bb647695947cdd0514abed09fb82c0934461cedab629f6471f4adaf7", 577 + "md5": "83aeb1b3eaa9246b2f06f37d94e9f07f", 578 + "size": "287132168" 579 + } 580 + }, 581 + "libcufile": { 582 + "name": "CUDA cuFile", 583 + "license": "CUDA Toolkit", 584 + "version": "1.2.1.4", 585 + "linux-x86_64": { 586 + "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.2.1.4-archive.tar.xz", 587 + "sha256": "ebc164ebffee7dbe87ae8cc3e37fcf6499750aa9f7003ea0cc4f3bc7c7f3a56d", 588 + "md5": "ae8cd1900e9947cdb8acdd9726befe29", 589 + "size": "46744444" 590 + } 591 + }, 592 + "libcurand": { 593 + "name": "CUDA cuRAND", 594 + "license": "CUDA Toolkit", 595 + "version": "10.2.9.124", 596 + "linux-x86_64": { 597 + "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.2.9.124-archive.tar.xz", 598 + "sha256": "87b1d70ec749db31cabb79ae5034b05883666e1848aa3feca643ea4a68dea47e", 599 + "md5": "e7657f67965d162b519c2471ca0f7c08", 600 + "size": "82095344" 601 + }, 602 + "linux-ppc64le": { 603 + "relative_path": "libcurand/linux-ppc64le/libcurand-linux-ppc64le-10.2.9.124-archive.tar.xz", 604 + "sha256": "162a42c9e98fd3809541a04dc67933b43f2a85d8d9a749ca247d2be049b7c4d8", 605 + "md5": "ba67c380f521a245192fb589cc208edd", 606 + "size": "82140836" 607 + }, 608 + "linux-sbsa": { 609 + "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.2.9.124-archive.tar.xz", 610 + "sha256": "c084db363510f6a2f628401494372edc1a841b0fabf95d80e86b852b27a299f5", 611 + "md5": "5021f94b32de1099a52bbfd02d08be17", 612 + "size": "82081332" 613 + }, 614 + "windows-x86_64": { 615 + "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.2.9.124-archive.zip", 616 + "sha256": "6bbb3c33f76813a96b1cec51d723d0d53704f3b7fedaf6c29f4c84f1bcb73a4e", 617 + "md5": "4914ba32fc23a9076f51f8755909c258", 618 + "size": "53645700" 619 + } 620 + }, 621 + "libcusolver": { 622 + "name": "CUDA cuSOLVER", 623 + "license": "CUDA Toolkit", 624 + "version": "11.3.4.124", 625 + "linux-x86_64": { 626 + "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-11.3.4.124-archive.tar.xz", 627 + "sha256": "adbd0af1f84aea29859c217e028c1a74a5b3a90acce7d679790efd73aff28462", 628 + "md5": "1f7211cc6ae6e8afd1387469a5e9a9a9", 629 + "size": "77918104" 630 + }, 631 + "linux-ppc64le": { 632 + "relative_path": "libcusolver/linux-ppc64le/libcusolver-linux-ppc64le-11.3.4.124-archive.tar.xz", 633 + "sha256": "6b9ab64258e970f6966c133dab767db03dac038cf047641fb677ce9334e53262", 634 + "md5": "f8b2f8280e8863de318212199fe72494", 635 + "size": "78066772" 636 + }, 637 + "linux-sbsa": { 638 + "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-11.3.4.124-archive.tar.xz", 639 + "sha256": "bb0dcef4d8c4e076a724d1a0a7258bffb6e9a9c49357716ed70466b3403eb4e3", 640 + "md5": "8fced4d6324195575d28464026d26125", 641 + "size": "77371768" 642 + }, 643 + "windows-x86_64": { 644 + "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-11.3.4.124-archive.zip", 645 + "sha256": "80d602eef188a19779b0beabb6f3fd9f8eb52ce8c8c61d31a792351d85053996", 646 + "md5": "123c3e9a0e0933e4c414a28fd382ea7d", 647 + "size": "110462365" 648 + } 649 + }, 650 + "libcusparse": { 651 + "name": "CUDA cuSPARSE", 652 + "license": "CUDA Toolkit", 653 + "version": "11.7.2.124", 654 + "linux-x86_64": { 655 + "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-11.7.2.124-archive.tar.xz", 656 + "sha256": "744affcbe5ecc8ca9438f20cf93e43a1648d682f6badfa4494f76ae26a350edc", 657 + "md5": "b663b089be7b8dba687da98ed9fcf1dd", 658 + "size": "218747728" 659 + }, 660 + "linux-ppc64le": { 661 + "relative_path": "libcusparse/linux-ppc64le/libcusparse-linux-ppc64le-11.7.2.124-archive.tar.xz", 662 + "sha256": "97a3abd633cb0c7ce941fdb4f98e82ddd064605c2a864ad4c35eabcca1bfe7c4", 663 + "md5": "6468ea649e2cd9be3541abc0b5a9d7a9", 664 + "size": "218901148" 665 + }, 666 + "linux-sbsa": { 667 + "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-11.7.2.124-archive.tar.xz", 668 + "sha256": "4962d79be52338c911fb5612bb2f7562aa41bda0ec474fc096524bf9dd762922", 669 + "md5": "1c49c2c1b950b4c874f4254490da1b82", 670 + "size": "218441052" 671 + }, 672 + "windows-x86_64": { 673 + "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-11.7.2.124-archive.zip", 674 + "sha256": "4c33673bb1de12005b26fbf5139b6b9e25fbf4490839205036e060af27c1f789", 675 + "md5": "f32317cca576ab805ec381be38ef225c", 676 + "size": "180394097" 677 + } 678 + }, 679 + "libnpp": { 680 + "name": "CUDA NPP", 681 + "license": "CUDA Toolkit", 682 + "version": "11.6.3.124", 683 + "linux-x86_64": { 684 + "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-11.6.3.124-archive.tar.xz", 685 + "sha256": "be4afe097cc38eea91ef02aea233db9fa3ba7a31bc115fc287e10812441ee5c2", 686 + "md5": "8300ad8d28a906c386f5338187aee660", 687 + "size": "165187052" 688 + }, 689 + "linux-ppc64le": { 690 + "relative_path": "libnpp/linux-ppc64le/libnpp-linux-ppc64le-11.6.3.124-archive.tar.xz", 691 + "sha256": "b55dc9d7e32319a007374cbb191dba1bce1973857a0ae0cc684a4c87e39ac23a", 692 + "md5": "86e2f863047db392473fb438a9112206", 693 + "size": "165756596" 694 + }, 695 + "linux-sbsa": { 696 + "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-11.6.3.124-archive.tar.xz", 697 + "sha256": "dd3fbe515b0bca6393de5829fb675f8fae9bfa23f0cd5e94a87643088935aa32", 698 + "md5": "e62dd0d88f234764c097f8a112f61d35", 699 + "size": "164248860" 700 + }, 701 + "windows-x86_64": { 702 + "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-11.6.3.124-archive.zip", 703 + "sha256": "647e78458636d462698fbdbd26c99d4956c917a25a7fd6d2e516a7035a52c857", 704 + "md5": "bf43f99df8934740762e5dd6e1419198", 705 + "size": "125797073" 706 + } 707 + }, 708 + "libnvidia_nscq": { 709 + "name": "NVIDIA NSCQ API", 710 + "license": "NVIDIA Driver", 711 + "version": "510.47.03", 712 + "linux-x86_64": { 713 + "relative_path": "libnvidia_nscq/linux-x86_64/libnvidia_nscq-linux-x86_64-510.47.03-archive.tar.xz", 714 + "sha256": "187b07fc6dae26f43bd23276acaf8177f15b32831cde4d21df6abfd6915d30c4", 715 + "md5": "d13ca7a0403dd22e9441434b617a2d5f", 716 + "size": "316976" 717 + } 718 + }, 719 + "libnvjpeg": { 720 + "name": "CUDA nvJPEG", 721 + "license": "CUDA Toolkit", 722 + "version": "11.6.2.124", 723 + "linux-x86_64": { 724 + "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-11.6.2.124-archive.tar.xz", 725 + "sha256": "ed9f4be96412134195aecbe15b281f3ac8e9b954e0fc62df9279169cf0e0f50b", 726 + "md5": "dffc64101ced535bf63604421c4afaa8", 727 + "size": "2045660" 728 + }, 729 + "linux-ppc64le": { 730 + "relative_path": "libnvjpeg/linux-ppc64le/libnvjpeg-linux-ppc64le-11.6.2.124-archive.tar.xz", 731 + "sha256": "377f5acfc5c25a983b0c3043b6fb9da7077d4d571481b62b091e162d8d8fe3c5", 732 + "md5": "04f6a60f6c53ce31671e2eeda8f0638e", 733 + "size": "2077792" 734 + }, 735 + "linux-sbsa": { 736 + "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-11.6.2.124-archive.tar.xz", 737 + "sha256": "badbe50dab52403cd152c907c9be7271a25c7e0b2bf7377a1cee13bd63f6c008", 738 + "md5": "7c7fa8c7ca5d129b2f7d775cb4ac96a1", 739 + "size": "1864404" 740 + }, 741 + "windows-x86_64": { 742 + "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-11.6.2.124-archive.zip", 743 + "sha256": "9a04433b80bb5374c0dcf21e1988a66d6d61009dd431668e5ef412baf1167796", 744 + "md5": "99d01192cc9c040b7d2a54ae2b7ea2a3", 745 + "size": "2050577" 746 + } 747 + }, 748 + "nsight_compute": { 749 + "name": "Nsight Compute", 750 + "license": "NVIDIA SLA", 751 + "version": "2022.1.1.2", 752 + "linux-x86_64": { 753 + "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2022.1.1.2-archive.tar.xz", 754 + "sha256": "ce3248dc64ec05ad1eb174c7114dda02e3023a4ee9adfe457b662289e3134140", 755 + "md5": "c1d851ebf7528107555861b4fbc83948", 756 + "size": "410930844" 757 + }, 758 + "linux-ppc64le": { 759 + "relative_path": "nsight_compute/linux-ppc64le/nsight_compute-linux-ppc64le-2022.1.1.2-archive.tar.xz", 760 + "sha256": "84c9fdad8865c2c3f505ee781f95b546a8ce5ef712cb43fc856c0c62be9bab24", 761 + "md5": "4e0660c401e2861bd3a5fa81a44c6fbf", 762 + "size": "123752204" 763 + }, 764 + "linux-sbsa": { 765 + "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2022.1.1.2-archive.tar.xz", 766 + "sha256": "5016436938039b284d422a27a954e7483cc15a5d33c512525c2ded860c062747", 767 + "md5": "241420674893c0dd375847ece4fa4abc", 768 + "size": "121981328" 769 + }, 770 + "windows-x86_64": { 771 + "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2022.1.1.2-archive.zip", 772 + "sha256": "4f709728da79048cc50c6079a5f5dd3b7e35c363163484e7f89f8a2595b8d633", 773 + "md5": "27cdc4affc4d3227905901ae5895e0b4", 774 + "size": "348353793" 775 + } 776 + }, 777 + "nsight_nvtx": { 778 + "name": "Nsight NVTX", 779 + "license": "CUDA Toolkit", 780 + "version": "1.21018621", 781 + "windows-x86_64": { 782 + "relative_path": "nsight_nvtx/windows-x86_64/nsight_nvtx-windows-x86_64-1.21018621-archive.zip", 783 + "sha256": "d99b015bfb1308206f9d7c16ea401bf426fed3a5a99953b855fe4e68be5ed2d1", 784 + "md5": "34ee04d45cfca1c4e3cbfba0ec8f6f80", 785 + "size": "315692" 786 + } 787 + }, 788 + "nsight_systems": { 789 + "name": "Nsight Systems", 790 + "license": "NVIDIA SLA", 791 + "version": "2021.5.2.53", 792 + "linux-x86_64": { 793 + "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2021.5.2.53-archive.tar.xz", 794 + "sha256": "27b8c6a171efc5b815035f7e9c9229bdc2c239c1da1956df687f80f78c03c70c", 795 + "md5": "20dcf79c9b387fcc66956182d56fa7ef", 796 + "size": "161956304" 797 + }, 798 + "linux-ppc64le": { 799 + "relative_path": "nsight_systems/linux-ppc64le/nsight_systems-linux-ppc64le-2021.5.2.53-archive.tar.xz", 800 + "sha256": "7c76f0b6e35add162be0a55cb8b673960e2d6e9907875379fd70345c6fbb05d4", 801 + "md5": "5bc90d4adc83492fc65191c9a1e33d41", 802 + "size": "47184992" 803 + }, 804 + "linux-sbsa": { 805 + "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2021.5.2.53-archive.tar.xz", 806 + "sha256": "22bd8ec797d2734b701e5bf62ec095d82687a3eb5daf01a7657cd1aab896fc6d", 807 + "md5": "1a4e2b8212f8cef37d16c23c9440f680", 808 + "size": "47348636" 809 + }, 810 + "windows-x86_64": { 811 + "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2021.5.2.53-archive.zip", 812 + "sha256": "6cd2caa431d703f1c54eb65cba2508c150ae115c0b20a58f6c96839bcbc23406", 813 + "md5": "07582800aee2a476463f866aa25f8a0a", 814 + "size": "304567470" 815 + } 816 + }, 817 + "nsight_vse": { 818 + "name": "Nsight Visual Studio Edition (VSE)", 819 + "license": "NVIDIA SLA", 820 + "version": "2022.1.1.22006", 821 + "windows-x86_64": { 822 + "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2022.1.1.22006-archive.zip", 823 + "sha256": "92c0a591401e085a2ade6688866fa93fb1562d98e4d8321a252b1143e364192a", 824 + "md5": "67304f264ab92d5ac6706fb0bf3f6eac", 825 + "size": "455973381" 826 + } 827 + }, 828 + "nvidia_driver": { 829 + "name": "NVIDIA Linux Driver", 830 + "license": "NVIDIA Driver", 831 + "version": "510.47.03", 832 + "linux-x86_64": { 833 + "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-510.47.03-archive.tar.xz", 834 + "sha256": "668a653cb4e9b89279a31c2fac23306c80b8f2b4b27b4e066cfe322d9347e1b7", 835 + "md5": "b9a80476a86e6186645c37b7a9a7791a", 836 + "size": "327247384" 837 + }, 838 + "linux-ppc64le": { 839 + "relative_path": "nvidia_driver/linux-ppc64le/nvidia_driver-linux-ppc64le-510.47.03-archive.tar.xz", 840 + "sha256": "28c278660d10ba63420990e164aafd866a9907a66323db9570ad1a9ada37ae0f", 841 + "md5": "0a3f82d50ea4ac361eb2def1d763947f", 842 + "size": "73666716" 843 + }, 844 + "linux-sbsa": { 845 + "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-510.47.03-archive.tar.xz", 846 + "sha256": "1f2e0b90621f67477d5bfcd8ff28b01eca9cdb79a2ba911b07671953e44618ad", 847 + "md5": "d555c62d414121623b4906ecb3de06e8", 848 + "size": "211721052" 849 + } 850 + }, 851 + "nvidia_fs": { 852 + "name": "NVIDIA filesystem", 853 + "license": "CUDA Toolkit", 854 + "version": "2.11.0", 855 + "linux-x86_64": { 856 + "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.11.0-archive.tar.xz", 857 + "sha256": "ea260e5e8c9df3d4f1448684350a0fa7931dd45918329bda96378b173ea63b24", 858 + "md5": "676b88c768132bd4775c91291af90b55", 859 + "size": "69588" 860 + } 861 + }, 862 + "visual_studio_integration": { 863 + "name": "CUDA Visual Studio Integration", 864 + "license": "CUDA Toolkit", 865 + "version": "11.6.124", 866 + "windows-x86_64": { 867 + "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-11.6.124-archive.zip", 868 + "sha256": "0a8e288bb604dc2af766f65042aeb4675a7b15629e71c7c3341d0fd8aab2de91", 869 + "md5": "248f627cccca3ee81c561aaea5193271", 870 + "size": "517139" 871 + } 872 + } 873 + }
+72
pkgs/development/compilers/cudatoolkit/redist/overrides.nix
··· 1 + final: prev: let 2 + inherit (prev) lib pkgs; 3 + in (lib.filterAttrs (attr: _: (prev ? "${attr}")) { 4 + ### Overrides to fix the components of cudatoolkit-redist 5 + 6 + # Attributes that don't exist in the previous set are removed. 7 + # That means only overrides can go here, and not new expressions! 8 + 9 + libcufile = prev.libcufile.overrideAttrs (oldAttrs: { 10 + buildInputs = oldAttrs.buildInputs ++ [ 11 + prev.libcublas 12 + pkgs.numactl 13 + pkgs.rdma-core 14 + ]; 15 + # libcuda needs to be resolved during runtime 16 + autoPatchelfIgnoreMissingDeps = true; 17 + }); 18 + 19 + libcusolver = final.addBuildInputs prev.libcusolver [ 20 + prev.libcublas 21 + ]; 22 + 23 + cuda_nvprof = prev.cuda_nvprof.overrideAttrs (oldAttrs: { 24 + nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ pkgs.addOpenGLRunpath ]; 25 + buildInputs = oldAttrs.buildInputs ++ [ prev.cuda_cupti ]; 26 + # libcuda needs to be resolved during runtime 27 + autoPatchelfIgnoreMissingDeps = true; 28 + }); 29 + 30 + cuda_demo_suite = final.addBuildInputs prev.cuda_demo_suite [ 31 + pkgs.freeglut 32 + pkgs.libGLU 33 + pkgs.libglvnd 34 + pkgs.mesa 35 + prev.libcufft 36 + prev.libcurand 37 + ]; 38 + 39 + nsight_compute = prev.nsight_compute.overrideAttrs (oldAttrs: { 40 + nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ pkgs.qt5.wrapQtAppsHook ]; 41 + buildInputs = oldAttrs.buildInputs ++ [ pkgs.libsForQt5.qt5.qtwebview ]; 42 + }); 43 + 44 + nsight_systems = prev.nsight_systems.overrideAttrs (oldAttrs: { 45 + nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ 46 + pkgs.addOpenGLRunpath 47 + pkgs.qt5.wrapQtAppsHook 48 + ]; 49 + buildInputs = oldAttrs.buildInputs ++ [ 50 + pkgs.alsa-lib 51 + pkgs.e2fsprogs 52 + pkgs.nss 53 + pkgs.numactl 54 + pkgs.pulseaudio 55 + pkgs.wayland 56 + pkgs.xorg.libXcursor 57 + pkgs.xorg.libXdamage 58 + pkgs.xorg.libXrandr 59 + pkgs.xorg.libXtst 60 + ]; 61 + # libcuda needs to be resolved during runtime 62 + autoPatchelfIgnoreMissingDeps = true; 63 + }); 64 + 65 + nvidia_driver = prev.nvidia_driver.overrideAttrs (oldAttrs: { 66 + # libcuda needs to be resolved during runtime 67 + autoPatchelfIgnoreMissingDeps = true; 68 + # No need to support this package as we have drivers already 69 + # in linuxPackages. 70 + meta.broken = true; 71 + }); 72 + })
+59
pkgs/development/compilers/cudatoolkit/versions.toml
··· 1 + ["10.0"] 2 + version = "10.0.130" 3 + url = "https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_410.48_linux" 4 + sha256 = "16p3bv1lwmyqpxil8r951h385sy9asc578afrc7lssa68c71ydcj" 5 + gcc = "gcc7" 6 + 7 + ["10.1"] 8 + version = "10.1.243" 9 + url = "https://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_418.87.00_linux.run" 10 + sha256 = "0caxhlv2bdq863dfp6wj7nad66ml81vasq2ayf11psvq2b12vhp7" 11 + gcc = "gcc7" 12 + 13 + ["10.2"] 14 + version = "10.2.89" 15 + url = "http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_440.33.01_linux.run" 16 + sha256 = "04fasl9sjkb1jvchvqgaqxprnprcz7a8r52249zp2ijarzyhf3an" 17 + gcc = "gcc7" 18 + 19 + ["11.0"] 20 + version = "11.0.3" 21 + url = "https://developer.download.nvidia.com/compute/cuda/11.0.3/local_installers/cuda_11.0.3_450.51.06_linux.run" 22 + sha256 = "1h4c69nfrgm09jzv8xjnjcvpq8n4gnlii17v3wzqry5d13jc8ydh" 23 + gcc = "gcc9" 24 + 25 + ["11.1"] 26 + version = "11.1.1" 27 + url = "https://developer.download.nvidia.com/compute/cuda/11.1.1/local_installers/cuda_11.1.1_455.32.00_linux.run" 28 + sha256 = "13yxv2fgvdnqqbwh1zb80x4xhyfkbajfkwyfpdg9493010kngbiy" 29 + gcc = "gcc9" 30 + 31 + ["11.2"] 32 + version = "11.2.1" 33 + url = "https://developer.download.nvidia.com/compute/cuda/11.2.1/local_installers/cuda_11.2.1_460.32.03_linux.run" 34 + sha256 = "sha256-HamMuJfMX1inRFpKZspPaSaGdwbLOvWKZpzc2Nw9F8g=" 35 + gcc = "gcc9" 36 + 37 + ["11.3"] 38 + version = "11.3.1" 39 + url = "https://developer.download.nvidia.com/compute/cuda/11.3.1/local_installers/cuda_11.3.1_465.19.01_linux.run" 40 + sha256 = "0d19pwcqin76scbw1s5kgj8n0z1p4v1hyfldqmamilyfxycfm4xd" 41 + gcc = "gcc9" 42 + 43 + ["11.4"] 44 + version = "11.4.2" 45 + url = "https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda_11.4.2_470.57.02_linux.run" 46 + sha256 = "sha256-u9h8oOkT+DdFSnljZ0c1E83e9VUILk2G7Zo4ZZzIHwo=" 47 + gcc = "gcc10" # can bump to 11 along with stdenv.cc 48 + 49 + ["11.5"] 50 + version = "11.5.0" 51 + url = "https://developer.download.nvidia.com/compute/cuda/11.5.0/local_installers/cuda_11.5.0_495.29.05_linux.run" 52 + sha256 = "sha256-rgoWk9lJfPPYHmlIlD43lGNpANtxyY1Y7v2sr38aHkw=" 53 + gcc = "gcc10" # can bump to 11 along with stdenv.cc 54 + 55 + ["11.6"] 56 + version = "11.6.1" 57 + url = "https://developer.download.nvidia.com/compute/cuda/11.6.1/local_installers/cuda_11.6.1_510.47.03_linux.run" 58 + sha256 = "sha256-qyGa/OALdCABEyaYZvv/derQN7z8I1UagzjCaEyYTX4=" 59 + gcc = "gcc10" # can bump to 11 along with stdenv.cc
+13
pkgs/development/compilers/rust/rustfmt-fix-self-tests.patch
··· 1 + --- a/src/tools/rustfmt/src/ignore_path.rs 2 + +++ b/src/tools/rustfmt/src/ignore_path.rs 3 + @@ -37,9 +37,9 @@ 4 + #[nightly_only_test] 5 + #[test] 6 + fn test_ignore_path_set() { 7 + - use std::path::{Path, PathBuf}; 8 + use crate::config::{Config, FileName}; 9 + use crate::ignore_path::IgnorePathSet; 10 + + use std::path::{Path, PathBuf}; 11 + 12 + let config = 13 + Config::from_toml(r#"ignore = ["foo.rs", "bar_dir/*"]"#, Path::new("")).unwrap();
+6 -3
pkgs/development/compilers/rust/rustfmt.nix
··· 1 - { lib, stdenv, rustPlatform, Security }: 1 + { lib, stdenv, rustPlatform, Security, asNightly ? false }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 - pname = "rustfmt"; 4 + pname = "rustfmt" + lib.optionalString asNightly "-nightly"; 5 5 inherit (rustPlatform.rust.rustc) version src; 6 6 7 7 # the rust source tarball already has all the dependencies vendored, no need to fetch them again ··· 19 19 # As of rustc 1.45.0, these env vars are required to build rustfmt (due to 20 20 # https://github.com/rust-lang/rust/pull/72001) 21 21 CFG_RELEASE = rustPlatform.rust.rustc.version; 22 - CFG_RELEASE_CHANNEL = "stable"; 22 + CFG_RELEASE_CHANNEL = if asNightly then "nightly" else "stable"; 23 + 24 + # FIXME: seems fixed upstream, remove after the next update 25 + patches = [ ./rustfmt-fix-self-tests.patch ]; 23 26 24 27 meta = with lib; { 25 28 description = "A tool for formatting Rust code according to style guidelines";
+3 -3
pkgs/development/libraries/librealsense/default.nix
··· 8 8 , ninja 9 9 , pkg-config 10 10 , gcc 11 - , cudaSupport ? config.cudaSupport or false, cudatoolkit 11 + , cudaSupport ? config.cudaSupport or false, cudaPackages ? {} 12 12 , enablePython ? false, pythonPackages ? null 13 13 }: 14 14 15 - assert cudaSupport -> cudatoolkit != null; 15 + assert cudaSupport -> (cudaPackages?cudatoolkit && cudaPackages.cudatoolkit != null); 16 16 assert enablePython -> pythonPackages != null; 17 17 18 18 stdenv.mkDerivation rec { ··· 31 31 buildInputs = [ 32 32 libusb1 33 33 gcc.cc.lib 34 - ] ++ lib.optional cudaSupport cudatoolkit 34 + ] ++ lib.optional cudaSupport cudaPackages.cudatoolkit 35 35 ++ lib.optionals enablePython (with pythonPackages; [python pybind11 ]); 36 36 37 37 patches = [
+6 -2
pkgs/development/libraries/science/math/caffe2/default.nix
··· 5 5 , python, future, six, python-protobuf, numpy, pydot 6 6 , eigen 7 7 , doxygen 8 - , useCuda ? (config.cudaSupport or false), cudatoolkit ? null 9 - , useCudnn ? (config.cudnnSupport or false), cudnn ? null 8 + , useCuda ? (config.cudaSupport or false), cudaPackages ? {} 9 + , useCudnn ? (config.cudnnSupport or false) 10 10 , useOpenmp ? false, openmp ? null 11 11 , useOpencv3 ? true, opencv3 ? null 12 12 , useLeveldb ? false, leveldb ? null ··· 19 19 #, useNccl ? false 20 20 #, useNnpack ? false 21 21 }: 22 + 23 + let 24 + inherit (cudaPackages) cudatoolkit cudnn; 25 + in 22 26 23 27 assert useCuda -> cudatoolkit != null; 24 28 assert useCudnn -> (useCuda && cudnn != null);
-114
pkgs/development/libraries/science/math/cudnn/default.nix
··· 1 - # The following version combinations are supported: 2 - # * cuDNN 7.4.2, cudatoolkit 10.0 3 - # * cuDNN 7.6.5, cudatoolkit 10.0-10.1 4 - # * cuDNN 8.1.1, cudatoolkit 10.2-11.2 5 - # * cuDNN 8.3.2, cudatoolkit 10.2-11.5 6 - { callPackage 7 - , cudatoolkit_10 8 - , cudatoolkit_10_0 9 - , cudatoolkit_10_1 10 - , cudatoolkit_10_2 11 - , cudatoolkit_11 12 - , cudatoolkit_11_0 13 - , cudatoolkit_11_1 14 - , cudatoolkit_11_2 15 - , cudatoolkit_11_3 16 - , cudatoolkit_11_4 17 - , cudatoolkit_11_5 18 - , fetchurl 19 - , lib 20 - }: 21 - 22 - let 23 - generic = args: callPackage (import ./generic.nix (removeAttrs args [ "cudatoolkit" ])) { 24 - inherit (args) cudatoolkit; 25 - }; 26 - urlPrefix = "https://developer.download.nvidia.com/compute/redist/cudnn"; 27 - in 28 - rec { 29 - # cuDNN 7.x 30 - # Still used by libtensorflow-bin. It should be upgraded at some point. 31 - cudnn_7_4_cudatoolkit_10_0 = generic rec { 32 - version = "7.4.2"; 33 - cudatoolkit = cudatoolkit_10_0; 34 - # See https://docs.nvidia.com/deeplearning/cudnn/archives/cudnn_742/cudnn-support-matrix/index.html#cudnn-cuda-hardware-versions__table-cudnn-cuda-hardware-versions. 35 - minCudaVersion = "9.2.88"; 36 - maxCudaVersion = "10.0.99999"; 37 - mkSrc = _: fetchurl { 38 - url = "${urlPrefix}/v${version}/cudnn-10.0-linux-x64-v7.4.2.24.tgz"; 39 - hash = "sha256-Lt/IagK1DRfojEeJVaMy5qHoF05+U6NFi06lH68C2qM="; 40 - }; 41 - }; 42 - # The only overlap between supported and packaged CUDA versions is 10.0. 43 - 44 - cudnn_7_6_cudatoolkit_10_0 = generic rec { 45 - version = "7.6.5"; 46 - cudatoolkit = cudatoolkit_10_0; 47 - # See https://docs.nvidia.com/deeplearning/cudnn/archives/cudnn_765/cudnn-support-matrix/index.html#cudnn-versions-763-765. 48 - minCudaVersion = "9.2.148"; 49 - maxCudaVersion = "10.1.243"; 50 - mkSrc = cudatoolkit: fetchurl { 51 - url = "${urlPrefix}/v${version}/cudnn-${cudatoolkit.majorVersion}-linux-x64-v7.6.5.32.tgz"; 52 - hash = { 53 - "10.0" = "sha256-KDVeOV8LK5OsLIO2E2CzW6bNA3fkTni+GXtrYbS0kro="; 54 - "10.1" = "sha256-fq7IA5osMKsLx1jTA1iHZ2k972v0myJIWiwAvy4TbLM="; 55 - }."${cudatoolkit.majorVersion}"; 56 - }; 57 - }; 58 - cudnn_7_6_cudatoolkit_10_1 = cudnn_7_6_cudatoolkit_10_0.override { cudatoolkit = cudatoolkit_10_1; }; 59 - 60 - # cuDNN 8.x 61 - # cuDNN 8.1 is still used by tensorflow at the time of writing (2022-02-17). 62 - # See https://github.com/NixOS/nixpkgs/pull/158218 for more info. 63 - cudnn_8_1_cudatoolkit_10_2 = generic rec { 64 - version = "8.1.1"; 65 - cudatoolkit = cudatoolkit_10_2; 66 - # See https://docs.nvidia.com/deeplearning/cudnn/archives/cudnn-811/support-matrix/index.html#cudnn-versions-810-811. 67 - minCudaVersion = "10.2.00000"; 68 - maxCudaVersion = "11.2.99999"; 69 - mkSrc = cudatoolkit: 70 - let v = if lib.versions.majorMinor cudatoolkit.version == "10.2" then "10.2" else "11.2"; in 71 - fetchurl { 72 - url = "${urlPrefix}/v${version}/cudnn-${v}-linux-x64-v8.1.1.33.tgz"; 73 - hash = { 74 - "10.2" = "sha256-Kkp7mabpv6aQ6xm7QeSVU/KnpJGls6v8rpAOFmxbbr0="; 75 - "11.2" = "sha256-mKh4TpKGLyABjSDCgbMNSgzZUfk2lPZDPM9K6cUCumo="; 76 - }."${v}"; 77 - }; 78 - }; 79 - cudnn_8_1_cudatoolkit_11_0 = cudnn_8_1_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_11_0; }; 80 - cudnn_8_1_cudatoolkit_11_1 = cudnn_8_1_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_11_1; }; 81 - cudnn_8_1_cudatoolkit_11_2 = cudnn_8_1_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_11_2; }; 82 - 83 - cudnn_8_1_cudatoolkit_10 = cudnn_8_1_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_10; }; 84 - 85 - # cuDNN 8.3 is necessary for the latest jaxlib, esp. jaxlib-bin. See 86 - # https://github.com/google/jax/discussions/9455 for more info. 87 - cudnn_8_3_cudatoolkit_10_2 = generic rec { 88 - version = "8.3.2"; 89 - cudatoolkit = cudatoolkit_10_2; 90 - # See https://docs.nvidia.com/deeplearning/cudnn/archives/cudnn-832/support-matrix/index.html#cudnn-cuda-hardware-versions. 91 - minCudaVersion = "10.2.00000"; 92 - maxCudaVersion = "11.5.99999"; 93 - mkSrc = cudatoolkit: 94 - let v = if lib.versions.majorMinor cudatoolkit.version == "10.2" then "10.2" else "11.5"; in 95 - fetchurl { 96 - # Starting at version 8.3.1 there's a new directory layout including 97 - # a subdirectory `local_installers`. 98 - url = "https://developer.download.nvidia.com/compute/redist/cudnn/v${version}/local_installers/${v}/cudnn-linux-x86_64-8.3.2.44_cuda${v}-archive.tar.xz"; 99 - hash = { 100 - "10.2" = "sha256-1vVu+cqM+PketzIQumw9ykm6REbBZhv6/lXB7EC2aaw="; 101 - "11.5" = "sha256-VQCVPAjF5dHd3P2iNPnvvdzb5DpTsm3AqCxyP6FwxFc="; 102 - }."${v}"; 103 - }; 104 - }; 105 - cudnn_8_3_cudatoolkit_11_0 = cudnn_8_3_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_11_0; }; 106 - cudnn_8_3_cudatoolkit_11_1 = cudnn_8_3_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_11_1; }; 107 - cudnn_8_3_cudatoolkit_11_2 = cudnn_8_3_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_11_2; }; 108 - cudnn_8_3_cudatoolkit_11_3 = cudnn_8_3_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_11_3; }; 109 - cudnn_8_3_cudatoolkit_11_4 = cudnn_8_3_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_11_4; }; 110 - cudnn_8_3_cudatoolkit_11_5 = cudnn_8_3_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_11_5; }; 111 - 112 - cudnn_8_3_cudatoolkit_10 = cudnn_8_3_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_10; }; 113 - cudnn_8_3_cudatoolkit_11 = cudnn_8_3_cudatoolkit_10_2.override { cudatoolkit = cudatoolkit_11; }; 114 - }
+112
pkgs/development/libraries/science/math/cudnn/extension.nix
··· 1 + final: prev: let 2 + 3 + inherit (final) callPackage; 4 + inherit (prev) cudatoolkit cudaVersion lib pkgs; 5 + 6 + ### CuDNN 7 + 8 + buildCuDnnPackage = args: callPackage ./generic.nix {} args; 9 + 10 + toUnderscore = str: lib.replaceStrings ["."] ["_"] str; 11 + 12 + majorMinorPatch = str: lib.concatStringsSep "." (lib.take 3 (lib.splitVersion str)); 13 + 14 + cuDnnPackages = with lib; let 15 + # Check whether a file is supported for our cuda version 16 + isSupported = fileData: elem cudaVersion fileData.supportedCudaVersions; 17 + # Return the first file that is supported. In practice there should only ever be one anyway. 18 + supportedFile = files: findFirst isSupported null files; 19 + # Supported versions with versions as keys and file as value 20 + supportedVersions = filterAttrs (version: file: file !=null ) (mapAttrs (version: files: supportedFile files) cuDnnVersions); 21 + # Compute versioned attribute name to be used in this package set 22 + computeName = version: "cudnn_${toUnderscore version}"; 23 + # Add all supported builds as attributes 24 + allBuilds = mapAttrs' (version: file: nameValuePair (computeName version) (buildCuDnnPackage (removeAttrs file ["fileVersion"]))) supportedVersions; 25 + # Set the default attributes, e.g. cudnn = cudnn_8_3_1; 26 + defaultBuild = { "cudnn" = allBuilds.${computeName cuDnnDefaultVersion}; }; 27 + in allBuilds // defaultBuild; 28 + 29 + cuDnnVersions = let 30 + urlPrefix = "https://developer.download.nvidia.com/compute/redist/cudnn"; 31 + in { 32 + "7.4.2" = [ 33 + rec { 34 + fileVersion = "10.0"; 35 + fullVersion = "7.4.2.24"; 36 + sha256 = "18ys0apiz9afid2s6lvy9qbyi8g66aimb2a7ikl1f3dm09mciprf"; 37 + url = "${urlPrefix}/v${majorMinorPatch fullVersion}/cudnn-10.0-linux-x64-v${fullVersion}.tgz"; 38 + supportedCudaVersions = [ "10.0" ]; 39 + } 40 + ]; 41 + "7.6.5" = [ 42 + rec { 43 + fileVersion = "10.0"; 44 + fullVersion = "7.6.5.32"; 45 + hash = "sha256-KDVeOV8LK5OsLIO2E2CzW6bNA3fkTni+GXtrYbS0kro="; 46 + url = "${urlPrefix}/v${majorMinorPatch fullVersion}/cudnn-${cudatoolkit.majorVersion}-linux-x64-v${fullVersion}.tgz"; 47 + supportedCudaVersions = [ "10.0" ]; 48 + } 49 + rec { 50 + fileVersion = "10.1"; 51 + fullVersion = "7.6.5.32"; 52 + hash = "sha256-YAJn8squ0v1Y6yFLpmnY6jXzlqfRm5SCLms2+fcIjCA="; 53 + url = "${urlPrefix}/v${majorMinorPatch fullVersion}/cudnn-${cudatoolkit.majorVersion}-linux-x64-v${fullVersion}.tgz"; 54 + supportedCudaVersions = [ "10.1" ]; 55 + } 56 + rec { 57 + fileVersion = "10.2"; 58 + fullVersion = "7.6.5.32"; 59 + hash = "sha256-fq7IA5osMKsLx1jTA1iHZ2k972v0myJIWiwAvy4TbLN="; 60 + url = "${urlPrefix}/v${majorMinorPatch fullVersion}/cudnn-${cudatoolkit.majorVersion}-linux-x64-v${fullVersion}.tgz"; 61 + supportedCudaVersions = [ "10.2" ]; 62 + } 63 + ]; 64 + "8.1.1" = [ 65 + rec { 66 + fileVersion = "10.2"; 67 + fullVersion = "8.1.1.33"; 68 + hash = "sha256-Kkp7mabpv6aQ6xm7QeSVU/KnpJGls6v8rpAOFmxbbr0="; 69 + url = "${urlPrefix}/v${majorMinorPatch fullVersion}/cudnn-${fileVersion}-linux-x64-v${fullVersion}.tgz"; 70 + supportedCudaVersions = [ "10.2" ]; 71 + } 72 + rec { 73 + fileVersion = "11.2"; 74 + fullVersion = "8.1.1.33"; 75 + hash = "sha256-mKh4TpKGLyABjSDCgbMNSgzZUfk2lPZDPM9K6cUCumo="; 76 + url = "${urlPrefix}/v${majorMinorPatch fullVersion}/cudnn-${fileVersion}-linux-x64-v${fullVersion}.tgz"; 77 + supportedCudaVersions = [ "11.2" ]; 78 + } 79 + ]; 80 + "8.3.2" = [ 81 + rec { 82 + fileVersion = "10.2"; 83 + fullVersion = "8.3.2.44"; 84 + hash = "sha256-mKh4TpKGLyABjSDCgbMNSgzZUfk2lPZDPM9K6cUCumo="; 85 + url = "${urlPrefix}/v${majorMinorPatch fullVersion}/local_installers/${fileVersion}/cudnn-linux-x86_64-${fullVersion}_cuda${fileVersion}-archive.tar.xz"; 86 + supportedCudaVersions = [ "10.2" ]; 87 + } 88 + rec { 89 + fileVersion = "11.5"; 90 + fullVersion = "8.3.2.44"; 91 + hash = "sha256-VQCVPAjF5dHd3P2iNPnvvdzb5DpTsm3AqCxyP6FwxFc="; 92 + url = "${urlPrefix}/v${majorMinorPatch fullVersion}/local_installers/${fileVersion}/cudnn-linux-x86_64-${fullVersion}_cuda${fileVersion}-archive.tar.xz"; 93 + supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.4" "11.5" "11.6" ]; 94 + } 95 + ]; 96 + }; 97 + 98 + # Default attributes 99 + cuDnnDefaultVersion = { 100 + "10.0" = "7.4.2"; 101 + "10.1" = "7.6.5"; 102 + "10.2" = "8.3.2"; 103 + "11.0" = "8.3.2"; 104 + "11.1" = "8.3.2"; 105 + "11.2" = "8.3.2"; 106 + "11.3" = "8.3.2"; 107 + "11.4" = "8.3.2"; 108 + "11.5" = "8.3.2"; 109 + "11.6" = "8.3.2"; 110 + }.${cudaVersion}; 111 + 112 + in cuDnnPackages
+17 -14
pkgs/development/libraries/science/math/cudnn/generic.nix
··· 1 - { minCudaVersion 2 - , maxCudaVersion 3 - , mkSrc 4 - , version 5 - }: 6 - 7 1 { stdenv 8 2 , lib 9 3 , cudatoolkit ··· 19 13 removeStatic ? false 20 14 }: 21 15 22 - stdenv.mkDerivation { 16 + { fullVersion 17 + , url 18 + , hash ? null 19 + , sha256 ? null 20 + , supportedCudaVersions ? [] 21 + }: 22 + 23 + assert (hash != null) || (sha256 != null); 24 + 25 + let 26 + majorMinorPatch = version: lib.concatStringsSep "." (lib.take 3 (lib.splitVersion version)); 27 + version = majorMinorPatch fullVersion; 28 + in stdenv.mkDerivation { 23 29 name = "cudatoolkit-${cudatoolkit.majorVersion}-cudnn-${version}"; 24 30 25 31 inherit version; 26 32 # It's often the case that the src depends on the version of cudatoolkit it's 27 33 # being linked against, so we pass in `cudatoolkit` as an argument to `mkSrc`. 28 - src = mkSrc cudatoolkit; 34 + src = fetchurl { 35 + inherit url hash sha256; 36 + }; 29 37 30 38 nativeBuildInputs = [ addOpenGLRunpath ]; 31 39 ··· 81 89 # official version constraints (as recorded in default.nix). In some cases 82 90 # you _may_ be able to smudge version constraints, just know that you're 83 91 # embarking into unknown and unsupported territory when doing so. 84 - broken = let cudaVer = lib.getVersion cudatoolkit; in 85 - !( 86 - lib.versionAtLeast cudaVer minCudaVersion 87 - && lib.versionAtLeast maxCudaVersion cudaVer 88 - ); 89 - 92 + broken = !(elem cudatoolkit.majorMinorVersion supportedCudaVersions); 90 93 description = "NVIDIA CUDA Deep Neural Network library (cuDNN)"; 91 94 homepage = "https://developer.nvidia.com/cudnn"; 92 95 license = licenses.unfree;
-48
pkgs/development/libraries/science/math/cutensor/default.nix
··· 1 - { callPackage 2 - , cudatoolkit_10_1 3 - , cudatoolkit_10_2 4 - , cudatoolkit_11 5 - , cudatoolkit_11_0 6 - , cudatoolkit_11_1 7 - , cudatoolkit_11_2 8 - , cudatoolkit_11_3 9 - , cudatoolkit_11_4 10 - , cudatoolkit_11_5 11 - , cudatoolkit_11_6 12 - }: 13 - 14 - rec { 15 - cutensor_cudatoolkit_10_1 = callPackage ./generic.nix rec { 16 - version = "1.2.2.5"; 17 - libPath = "lib/10.1"; 18 - cudatoolkit = cudatoolkit_10_1; 19 - # 1.2.2 is compatible with CUDA 10.1, 10.2, and 11.x. 20 - # See https://docs.nvidia.com/cuda/cutensor/release_notes.html#cutensor-v1-2-2. 21 - hash = "sha256-lU7iK4DWuC/U3s1Ct/rq2Gr3w4F2U7RYYgpmF05bibY="; 22 - }; 23 - 24 - cutensor_cudatoolkit_10_2 = cutensor_cudatoolkit_10_1.override { 25 - version = "1.3.1.3"; 26 - libPath = "lib/10.2"; 27 - cudatoolkit = cudatoolkit_10_2; 28 - # 1.3.1 is compatible with CUDA 10.2 and 11.x. 29 - # See https://docs.nvidia.com/cuda/cutensor/release_notes.html#cutensor-v1-3-1. 30 - hash = "sha256-mNlVnabB2IC3HnYY0mb06RLqQzDxN9ePGVeBy3hkBC8="; 31 - }; 32 - 33 - cutensor_cudatoolkit_10 = cutensor_cudatoolkit_10_2; 34 - 35 - cutensor_cudatoolkit_11_0 = cutensor_cudatoolkit_10_2.override { 36 - libPath = "lib/11"; 37 - cudatoolkit = cudatoolkit_11_0; 38 - }; 39 - 40 - cutensor_cudatoolkit_11_1 = cutensor_cudatoolkit_11_0.override { cudatoolkit = cudatoolkit_11_1; }; 41 - cutensor_cudatoolkit_11_2 = cutensor_cudatoolkit_11_0.override { cudatoolkit = cudatoolkit_11_2; }; 42 - cutensor_cudatoolkit_11_3 = cutensor_cudatoolkit_11_0.override { cudatoolkit = cudatoolkit_11_3; }; 43 - cutensor_cudatoolkit_11_4 = cutensor_cudatoolkit_11_0.override { cudatoolkit = cudatoolkit_11_4; }; 44 - cutensor_cudatoolkit_11_5 = cutensor_cudatoolkit_11_0.override { cudatoolkit = cudatoolkit_11_5; }; 45 - cutensor_cudatoolkit_11_6 = cutensor_cudatoolkit_11_0.override { cudatoolkit = cudatoolkit_11_6; }; 46 - 47 - cutensor_cudatoolkit_11 = cutensor_cudatoolkit_11_0.override { cudatoolkit = cudatoolkit_11; }; 48 - }
+3 -2
pkgs/development/libraries/science/math/libtorch/test/default.nix
··· 6 6 , symlinkJoin 7 7 8 8 , cudaSupport 9 - , cudatoolkit 10 - , cudnn 9 + , cudaPackages ? {} 11 10 }: 12 11 let 12 + inherit (cudaPackages) cudatoolkit cudnn; 13 + 13 14 cudatoolkit_joined = symlinkJoin { 14 15 name = "${cudatoolkit.name}-unsplit"; 15 16 paths = [ cudatoolkit.out cudatoolkit.lib ];
+5 -1
pkgs/development/libraries/science/math/magma/default.nix
··· 1 - { lib, stdenv, fetchurl, cmake, gfortran, ninja, cudatoolkit, libpthreadstubs, lapack, blas }: 1 + { lib, stdenv, fetchurl, cmake, gfortran, ninja, cudaPackages, libpthreadstubs, lapack, blas }: 2 + 3 + let 4 + inherit (cudaPackages) cudatoolkit; 5 + in 2 6 3 7 assert let majorIs = lib.versions.major cudatoolkit.version; 4 8 in majorIs == "9" || majorIs == "10" || majorIs == "11";
+4 -1
pkgs/development/libraries/science/math/tensorflow/bin.nix
··· 1 1 { lib, stdenv 2 2 , fetchurl 3 3 , addOpenGLRunpath 4 - , cudaSupport ? false, symlinkJoin, cudatoolkit, cudnn 4 + , cudaSupport ? false, cudaPackages ? {} 5 + , symlinkJoin 5 6 }: 6 7 7 8 with lib; 8 9 let 9 10 broken = !stdenv.isLinux && !stdenv.isDarwin; 11 + 12 + inherit (cudaPackages) cudatoolkit cudnn; 10 13 11 14 tfType = if cudaSupport then "gpu" else "cpu"; 12 15
+1419 -1497
pkgs/development/node-packages/node-packages.nix
··· 58 58 sha512 = "7rHvIQLvfBYatq+oAy4dvi6Vf00gNVnvdhqR5a7gpav7qEPDpwOFY1pW5T9tKr32KZd4rcCwqVZgygEewnaP2A=="; 59 59 }; 60 60 }; 61 + "@alexbosworth/fiat-1.0.2" = { 62 + name = "_at_alexbosworth_slash_fiat"; 63 + packageName = "@alexbosworth/fiat"; 64 + version = "1.0.2"; 65 + src = fetchurl { 66 + url = "https://registry.npmjs.org/@alexbosworth/fiat/-/fiat-1.0.2.tgz"; 67 + sha512 = "gouPoWdQ6NyIqsISkx526taLlnPB13SPJji4qRZ+MWf8Z60Bn6lF0xmoIEn+hpkTrSH+k9P9HvC2ENqfhq1YdQ=="; 68 + }; 69 + }; 61 70 "@alexbosworth/html2unicode-1.1.5" = { 62 71 name = "_at_alexbosworth_slash_html2unicode"; 63 72 packageName = "@alexbosworth/html2unicode"; ··· 103 112 sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="; 104 113 }; 105 114 }; 106 - "@angular-devkit/architect-0.1303.1" = { 115 + "@angular-devkit/architect-0.1303.2" = { 107 116 name = "_at_angular-devkit_slash_architect"; 108 117 packageName = "@angular-devkit/architect"; 109 - version = "0.1303.1"; 118 + version = "0.1303.2"; 110 119 src = fetchurl { 111 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.1.tgz"; 112 - sha512 = "ppaLzNZPrqrI96ddgm1RuEALVpWZsmHbIPLDd0GBwhF6aOkwF0LpZHd5XyS4ktGFZPReiFIjWSVtqV5vaBdRsw=="; 120 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.2.tgz"; 121 + sha512 = "aywsRuucfZ4Tu68wtYI8ItWVbsbc9wc0xm4DB+ROtkAcmuuk4aiLgSqW2Eux6QxmGnq9U/yjFMLASOhFB8qDlw=="; 113 122 }; 114 123 }; 115 - "@angular-devkit/core-13.3.0" = { 124 + "@angular-devkit/core-13.3.2" = { 116 125 name = "_at_angular-devkit_slash_core"; 117 126 packageName = "@angular-devkit/core"; 118 - version = "13.3.0"; 127 + version = "13.3.2"; 119 128 src = fetchurl { 120 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.0.tgz"; 121 - sha512 = "8YrreVbWlJVZnk5zs4vfkRItrPEtWhUcxWOBfYT/Kwu4FwJVAnNuhJAxxXOAQ2Ckd7cv30Idh/RFVLbTZ5Gs9w=="; 129 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.2.tgz"; 130 + sha512 = "wav5plcnlxQAfZ+0EUt3dvVTJnJ1au2TlKVQ0jSQJdR1LA6N7QUI49N2Ua6ZnDMwruQaQkoynitMW2l1it3qYQ=="; 122 131 }; 123 132 }; 124 - "@angular-devkit/core-13.3.1" = { 125 - name = "_at_angular-devkit_slash_core"; 126 - packageName = "@angular-devkit/core"; 127 - version = "13.3.1"; 128 - src = fetchurl { 129 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.1.tgz"; 130 - sha512 = "eXAcQaP1mn6rnQb+5bv5NsamY6b34UYM7G+S154Hnma6CTTSGBtcmoNAJs8cekuFqWlw7YgpB/e15jR5OLPkDA=="; 131 - }; 132 - }; 133 - "@angular-devkit/schematics-13.3.0" = { 133 + "@angular-devkit/schematics-13.3.2" = { 134 134 name = "_at_angular-devkit_slash_schematics"; 135 135 packageName = "@angular-devkit/schematics"; 136 - version = "13.3.0"; 136 + version = "13.3.2"; 137 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.0.tgz"; 139 - sha512 = "hq7tqnB3uVT/iDgqWWZ4kvnijeAcgd4cfLzZiCPaYn1nuhZf0tWsho6exhJ/odMZHvVp7w8OibqWiUKxNY9zHA=="; 138 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.2.tgz"; 139 + sha512 = "XCLb23jmqHN0gJg9ZlICaFgfpfnCufIQp5SOsRKMKRkhjKycvDmKnfBTKDlkzb1IaUl6wQwP5k7Z69b9EX+CQw=="; 140 140 }; 141 141 }; 142 - "@angular-devkit/schematics-13.3.1" = { 143 - name = "_at_angular-devkit_slash_schematics"; 144 - packageName = "@angular-devkit/schematics"; 145 - version = "13.3.1"; 146 - src = fetchurl { 147 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.1.tgz"; 148 - sha512 = "DxXMjlq/sALcHuONZRMTBX5k30XPfN4b6Ue4k7Xl8JKZqyHhEzfXaZzgD9u2cwb7wybKEeF/BZ5eJd8JG525og=="; 149 - }; 150 - }; 151 - "@angular-devkit/schematics-cli-13.3.0" = { 142 + "@angular-devkit/schematics-cli-13.3.2" = { 152 143 name = "_at_angular-devkit_slash_schematics-cli"; 153 144 packageName = "@angular-devkit/schematics-cli"; 154 - version = "13.3.0"; 145 + version = "13.3.2"; 155 146 src = fetchurl { 156 - url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-13.3.0.tgz"; 157 - sha512 = "DXT+k4228Ke1zCoU9QxPhXm1xzeYBs5aqgMWhyjXdkfDokJcjQM79CSVLHdKX/OLgR51qhnQ5qVFEHHhVV40EQ=="; 147 + url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-13.3.2.tgz"; 148 + sha512 = "cUHZFNq2kaCaReJAU28MSu2D+WDFTqt2v03U79TryOutYdF8BV4FyfvKqCSW6WXna219GXSXPepVqDYcjvn7/w=="; 158 149 }; 159 150 }; 160 151 "@antora/asciidoc-loader-3.0.1" = { ··· 1210 1201 sha512 = "p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ=="; 1211 1202 }; 1212 1203 }; 1213 - "@babel/core-7.17.8" = { 1204 + "@babel/core-7.17.9" = { 1214 1205 name = "_at_babel_slash_core"; 1215 1206 packageName = "@babel/core"; 1216 - version = "7.17.8"; 1207 + version = "7.17.9"; 1217 1208 src = fetchurl { 1218 - url = "https://registry.npmjs.org/@babel/core/-/core-7.17.8.tgz"; 1219 - sha512 = "OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ=="; 1209 + url = "https://registry.npmjs.org/@babel/core/-/core-7.17.9.tgz"; 1210 + sha512 = "5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw=="; 1220 1211 }; 1221 1212 }; 1222 1213 "@babel/core-7.9.0" = { ··· 1228 1219 sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w=="; 1229 1220 }; 1230 1221 }; 1231 - "@babel/generator-7.17.7" = { 1222 + "@babel/generator-7.17.9" = { 1232 1223 name = "_at_babel_slash_generator"; 1233 1224 packageName = "@babel/generator"; 1234 - version = "7.17.7"; 1225 + version = "7.17.9"; 1235 1226 src = fetchurl { 1236 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.7.tgz"; 1237 - sha512 = "oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w=="; 1227 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.9.tgz"; 1228 + sha512 = "rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ=="; 1238 1229 }; 1239 1230 }; 1240 1231 "@babel/helper-annotate-as-pure-7.16.7" = { ··· 1264 1255 sha512 = "UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w=="; 1265 1256 }; 1266 1257 }; 1267 - "@babel/helper-create-class-features-plugin-7.17.6" = { 1258 + "@babel/helper-create-class-features-plugin-7.17.9" = { 1268 1259 name = "_at_babel_slash_helper-create-class-features-plugin"; 1269 1260 packageName = "@babel/helper-create-class-features-plugin"; 1270 - version = "7.17.6"; 1261 + version = "7.17.9"; 1271 1262 src = fetchurl { 1272 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz"; 1273 - sha512 = "SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg=="; 1263 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz"; 1264 + sha512 = "kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ=="; 1274 1265 }; 1275 1266 }; 1276 1267 "@babel/helper-create-regexp-features-plugin-7.17.0" = { ··· 1309 1300 sha512 = "KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ=="; 1310 1301 }; 1311 1302 }; 1312 - "@babel/helper-function-name-7.16.7" = { 1303 + "@babel/helper-function-name-7.17.9" = { 1313 1304 name = "_at_babel_slash_helper-function-name"; 1314 1305 packageName = "@babel/helper-function-name"; 1315 - version = "7.16.7"; 1306 + version = "7.17.9"; 1316 1307 src = fetchurl { 1317 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"; 1318 - sha512 = "QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="; 1319 - }; 1320 - }; 1321 - "@babel/helper-get-function-arity-7.16.7" = { 1322 - name = "_at_babel_slash_helper-get-function-arity"; 1323 - packageName = "@babel/helper-get-function-arity"; 1324 - version = "7.16.7"; 1325 - src = fetchurl { 1326 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"; 1327 - sha512 = "flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="; 1308 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz"; 1309 + sha512 = "7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg=="; 1328 1310 }; 1329 1311 }; 1330 1312 "@babel/helper-hoist-variables-7.16.7" = { ··· 1453 1435 sha512 = "8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw=="; 1454 1436 }; 1455 1437 }; 1456 - "@babel/helpers-7.17.8" = { 1438 + "@babel/helpers-7.17.9" = { 1457 1439 name = "_at_babel_slash_helpers"; 1458 1440 packageName = "@babel/helpers"; 1459 - version = "7.17.8"; 1441 + version = "7.17.9"; 1460 1442 src = fetchurl { 1461 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.8.tgz"; 1462 - sha512 = "QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw=="; 1443 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz"; 1444 + sha512 = "cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q=="; 1463 1445 }; 1464 1446 }; 1465 - "@babel/highlight-7.16.10" = { 1447 + "@babel/highlight-7.17.9" = { 1466 1448 name = "_at_babel_slash_highlight"; 1467 1449 packageName = "@babel/highlight"; 1468 - version = "7.16.10"; 1450 + version = "7.17.9"; 1469 1451 src = fetchurl { 1470 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz"; 1471 - sha512 = "5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw=="; 1452 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz"; 1453 + sha512 = "J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg=="; 1472 1454 }; 1473 1455 }; 1474 1456 "@babel/node-7.16.8" = { ··· 1489 1471 sha512 = "RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw=="; 1490 1472 }; 1491 1473 }; 1492 - "@babel/parser-7.17.8" = { 1474 + "@babel/parser-7.17.9" = { 1493 1475 name = "_at_babel_slash_parser"; 1494 1476 packageName = "@babel/parser"; 1495 - version = "7.17.8"; 1477 + version = "7.17.9"; 1496 1478 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.8.tgz"; 1498 - sha512 = "BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ=="; 1479 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.9.tgz"; 1480 + sha512 = "vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg=="; 1499 1481 }; 1500 1482 }; 1501 1483 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" = { ··· 1993 1975 sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g=="; 1994 1976 }; 1995 1977 }; 1996 - "@babel/plugin-transform-modules-commonjs-7.17.7" = { 1978 + "@babel/plugin-transform-modules-commonjs-7.17.9" = { 1997 1979 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 1998 1980 packageName = "@babel/plugin-transform-modules-commonjs"; 1999 - version = "7.17.7"; 1981 + version = "7.17.9"; 2000 1982 src = fetchurl { 2001 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.7.tgz"; 2002 - sha512 = "ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA=="; 1983 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.9.tgz"; 1984 + sha512 = "2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw=="; 2003 1985 }; 2004 1986 }; 2005 1987 "@babel/plugin-transform-modules-systemjs-7.17.8" = { ··· 2101 2083 sha512 = "hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA=="; 2102 2084 }; 2103 2085 }; 2104 - "@babel/plugin-transform-regenerator-7.16.7" = { 2086 + "@babel/plugin-transform-regenerator-7.17.9" = { 2105 2087 name = "_at_babel_slash_plugin-transform-regenerator"; 2106 2088 packageName = "@babel/plugin-transform-regenerator"; 2107 - version = "7.16.7"; 2089 + version = "7.17.9"; 2108 2090 src = fetchurl { 2109 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz"; 2110 - sha512 = "mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q=="; 2091 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.17.9.tgz"; 2092 + sha512 = "Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ=="; 2111 2093 }; 2112 2094 }; 2113 2095 "@babel/plugin-transform-reserved-words-7.16.7" = { ··· 2281 2263 sha512 = "aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA=="; 2282 2264 }; 2283 2265 }; 2284 - "@babel/runtime-7.17.8" = { 2266 + "@babel/runtime-7.17.9" = { 2285 2267 name = "_at_babel_slash_runtime"; 2286 2268 packageName = "@babel/runtime"; 2287 - version = "7.17.8"; 2269 + version = "7.17.9"; 2288 2270 src = fetchurl { 2289 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.8.tgz"; 2290 - sha512 = "dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA=="; 2271 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz"; 2272 + sha512 = "lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg=="; 2291 2273 }; 2292 2274 }; 2293 2275 "@babel/runtime-7.9.0" = { ··· 2299 2281 sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA=="; 2300 2282 }; 2301 2283 }; 2302 - "@babel/runtime-corejs3-7.17.8" = { 2284 + "@babel/runtime-corejs3-7.17.9" = { 2303 2285 name = "_at_babel_slash_runtime-corejs3"; 2304 2286 packageName = "@babel/runtime-corejs3"; 2305 - version = "7.17.8"; 2287 + version = "7.17.9"; 2306 2288 src = fetchurl { 2307 - url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.17.8.tgz"; 2308 - sha512 = "ZbYSUvoSF6dXZmMl/CYTMOvzIFnbGfv4W3SEHYgMvNsFTeLaF2gkGAF4K2ddmtSK4Emej+0aYcnSC6N5dPCXUQ=="; 2289 + url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.17.9.tgz"; 2290 + sha512 = "WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw=="; 2309 2291 }; 2310 2292 }; 2311 2293 "@babel/template-7.16.7" = { ··· 2317 2299 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 2318 2300 }; 2319 2301 }; 2320 - "@babel/traverse-7.17.3" = { 2302 + "@babel/traverse-7.17.9" = { 2321 2303 name = "_at_babel_slash_traverse"; 2322 2304 packageName = "@babel/traverse"; 2323 - version = "7.17.3"; 2305 + version = "7.17.9"; 2324 2306 src = fetchurl { 2325 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz"; 2326 - sha512 = "5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw=="; 2307 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.9.tgz"; 2308 + sha512 = "PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw=="; 2327 2309 }; 2328 2310 }; 2329 2311 "@babel/types-7.16.0" = { ··· 2344 2326 sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; 2345 2327 }; 2346 2328 }; 2347 - "@blueprintjs/colors-4.0.2" = { 2329 + "@blueprintjs/colors-4.0.5" = { 2348 2330 name = "_at_blueprintjs_slash_colors"; 2349 2331 packageName = "@blueprintjs/colors"; 2350 - version = "4.0.2"; 2332 + version = "4.0.5"; 2351 2333 src = fetchurl { 2352 - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.2.tgz"; 2353 - sha512 = "+luoTHBcdUD5y5SGCxk9CAHPfa9WeGdHuTRGABFanoyXZwrtzh5a8hlN/g3B5xeseGdoz50uMtmeanF8Atx0fg=="; 2334 + url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.5.tgz"; 2335 + sha512 = "5ewWnDdUzyP7hnfidIPyAykGmjHAY2xjcUPM3J2hmnAQ4FORWPv7Mr3PJ9D0D7GfZV/ACx3URRclE1MXfvVlGA=="; 2354 2336 }; 2355 2337 }; 2356 2338 "@blueprintjs/core-3.54.0" = { ··· 2695 2677 sha512 = "NKz7pDZ7pwj/b33i3f4WLpC1rOOUMmENwYgftxU+giU2YBeKM2wZbMTSEIzsrel56r0UlQYmdIVlP/B4nnVaoQ=="; 2696 2678 }; 2697 2679 }; 2698 - "@cspell/dict-bash-2.0.1" = { 2680 + "@cspell/dict-bash-2.0.2" = { 2699 2681 name = "_at_cspell_slash_dict-bash"; 2700 2682 packageName = "@cspell/dict-bash"; 2701 - version = "2.0.1"; 2683 + version = "2.0.2"; 2702 2684 src = fetchurl { 2703 - url = "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-2.0.1.tgz"; 2704 - sha512 = "pBx3T/5w7fPF8XD5cx3NwtRFvNpQYmYqzM043NKP2hDmlx4uFwbH599Lvt5mwCMZKfIoRXaNUQvq7se2gstQjw=="; 2685 + url = "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-2.0.2.tgz"; 2686 + sha512 = "ASIgI/LmV2TYrD4mtk+gm4XmUSTRomOyRt7NDWyBpEww/AeawC2O2NH6FosyUT6dUU3GaXt2wgJRN7R78n1SGg=="; 2705 2687 }; 2706 2688 }; 2707 2689 "@cspell/dict-companies-2.0.3" = { ··· 2713 2695 sha512 = "O622rMAaHm85AmqNyMki5je8HB/1XlTKbGOXh2UUhooI5qdgdfrjTQ6VBuHwHrfEfuODBHYTNYXVB2m23XqHCg=="; 2714 2696 }; 2715 2697 }; 2716 - "@cspell/dict-cpp-2.0.0" = { 2698 + "@cspell/dict-cpp-2.0.1" = { 2717 2699 name = "_at_cspell_slash_dict-cpp"; 2718 2700 packageName = "@cspell/dict-cpp"; 2719 - version = "2.0.0"; 2701 + version = "2.0.1"; 2720 2702 src = fetchurl { 2721 - url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-2.0.0.tgz"; 2722 - sha512 = "EflHLs2pHEEXZM6jPfTGR/KHZKQtJlvzqgkg1zaA1YKv5HQNw9Wy5KVPGEV2bjPcFsZJO3xXjO1KBZcoOPjPmA=="; 2703 + url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-2.0.1.tgz"; 2704 + sha512 = "M7ILooLd8qpAEk2Mr8QG/f5hMSaswKXu10Z4u7bmWJNUutPEMrliFvfY/HoYJoE0zX980wRhZg3UqZYKWjJ2bA=="; 2723 2705 }; 2724 2706 }; 2725 2707 "@cspell/dict-cryptocurrencies-2.0.0" = { ··· 3694 3676 sha512 = "+WoaAaoYx/wfkrz1Ag40JqHvDUFfQcg+dQ3jaEOoau16y7EZGIe7oN8WYIXNMgWuMxH7r1QlanFbQZ+ziKjHmw=="; 3695 3677 }; 3696 3678 }; 3697 - "@fluentui/react-8.64.0" = { 3679 + "@fluentui/react-8.64.1" = { 3698 3680 name = "_at_fluentui_slash_react"; 3699 3681 packageName = "@fluentui/react"; 3700 - version = "8.64.0"; 3682 + version = "8.64.1"; 3701 3683 src = fetchurl { 3702 - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.64.0.tgz"; 3703 - sha512 = "ykO3VHQVQL6IUAXnp5No38fMqG5XOqjP0bNOv5klCYelfF0bnDdbzmT+nHMorq+SKqaHnbnryO+OQuXDmyujCQ=="; 3684 + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.64.1.tgz"; 3685 + sha512 = "2xk+LqUwn7Xp3eDIgeLInX4f6hgdie6RGcZo7D1nGSIB0p5EOR8IcwhataYs3HMte3WFWBRJhYbEXYZVfCfvfA=="; 3704 3686 }; 3705 3687 }; 3706 3688 "@fluentui/react-focus-8.5.6" = { ··· 3883 3865 sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg=="; 3884 3866 }; 3885 3867 }; 3886 - "@graphql-tools/batch-execute-8.4.1" = { 3868 + "@graphql-tools/batch-execute-8.4.2" = { 3887 3869 name = "_at_graphql-tools_slash_batch-execute"; 3888 3870 packageName = "@graphql-tools/batch-execute"; 3889 - version = "8.4.1"; 3871 + version = "8.4.2"; 3890 3872 src = fetchurl { 3891 - url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.1.tgz"; 3892 - sha512 = "63+lNWrwXmofjZVa7ML+n9CBviClF3K+RP3Xx3hxGQ8BrhvB1pWS1yzaUZqrkiiKdTu1v3mJGVfmooHwzlyPwQ=="; 3873 + url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.2.tgz"; 3874 + sha512 = "5/el640oG/jfjQCjCRDdtIALyUib8YPONM2NSmckp2g1nOrPTAx/isz3Uptp9y5OI1UXXhONiKy5euTbgsGoXw=="; 3893 3875 }; 3894 3876 }; 3895 3877 "@graphql-tools/delegate-7.1.5" = { ··· 3901 3883 sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; 3902 3884 }; 3903 3885 }; 3904 - "@graphql-tools/delegate-8.7.1" = { 3886 + "@graphql-tools/delegate-8.7.2" = { 3905 3887 name = "_at_graphql-tools_slash_delegate"; 3906 3888 packageName = "@graphql-tools/delegate"; 3907 - version = "8.7.1"; 3889 + version = "8.7.2"; 3908 3890 src = fetchurl { 3909 - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.1.tgz"; 3910 - sha512 = "e98/NRaOH5wQy624bRd5i5qUKz5tCs8u4xBmxW89d7t6V6CveXj7pvAgmnR9DbwOkO6IA3P799p/aa/YG/pWTA=="; 3891 + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.2.tgz"; 3892 + sha512 = "SSmx5N6Cq23KRT0YepdmcYugey7MDZSXxtJ8KHHdc5eW9IAHXZWsJWdVnI9woU9omsnE6svnxblZb1UUBl7AUg=="; 3911 3893 }; 3912 3894 }; 3913 3895 "@graphql-tools/graphql-file-loader-6.2.7" = { ··· 3919 3901 sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; 3920 3902 }; 3921 3903 }; 3922 - "@graphql-tools/graphql-file-loader-7.3.7" = { 3904 + "@graphql-tools/graphql-file-loader-7.3.8" = { 3923 3905 name = "_at_graphql-tools_slash_graphql-file-loader"; 3924 3906 packageName = "@graphql-tools/graphql-file-loader"; 3925 - version = "7.3.7"; 3907 + version = "7.3.8"; 3926 3908 src = fetchurl { 3927 - url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.7.tgz"; 3928 - sha512 = "fwXLycYvabPhusGtYuFrOPbjeIvLWr6viGkQc9KmiBm2Z2kZrlNRNUlYkXXRzMoiqRkzqFJYhOgWDE7LsOnbjw=="; 3909 + url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.8.tgz"; 3910 + sha512 = "SpQZQ0klbox/kxYCLFBTmhLuQFm7P6usWVIqwROK4JSomwCuccc2zDsr1H7ayDpanD3yfkzMsl6gPkOkAo52pA=="; 3929 3911 }; 3930 3912 }; 3931 - "@graphql-tools/import-6.6.9" = { 3913 + "@graphql-tools/import-6.6.10" = { 3932 3914 name = "_at_graphql-tools_slash_import"; 3933 3915 packageName = "@graphql-tools/import"; 3934 - version = "6.6.9"; 3916 + version = "6.6.10"; 3935 3917 src = fetchurl { 3936 - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.9.tgz"; 3937 - sha512 = "sKaLqvPmNLQlY4te+nnBhRrf5WBISoiyVkbriCLz0kHw805iHdJaU2KxUoHsRTR7WlYq0g9gzB0oVaRh99Q5aA=="; 3918 + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.10.tgz"; 3919 + sha512 = "yHdlEPTvIjrngtQFNgkMQJt/DjG3hQKvc6Mb8kaatFV4yERN5zx+0vpdrwxTwRNG1N7bI/YCkbrc7PXOb+g89Q=="; 3938 3920 }; 3939 3921 }; 3940 3922 "@graphql-tools/json-file-loader-6.2.6" = { ··· 3946 3928 sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA=="; 3947 3929 }; 3948 3930 }; 3949 - "@graphql-tools/json-file-loader-7.3.7" = { 3931 + "@graphql-tools/json-file-loader-7.3.8" = { 3950 3932 name = "_at_graphql-tools_slash_json-file-loader"; 3951 3933 packageName = "@graphql-tools/json-file-loader"; 3952 - version = "7.3.7"; 3934 + version = "7.3.8"; 3953 3935 src = fetchurl { 3954 - url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.3.7.tgz"; 3955 - sha512 = "dm0LcfiWYin7cUR4RWC33C9bNppujvSU7hwTH+sHmSguNnat9Kn8dBntVSgrY3qCbKuGfz/PshQHIODXrRwAKg=="; 3936 + url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.3.8.tgz"; 3937 + sha512 = "W3nVLAp8m787A17wja7ysayij7WMRu+lF8LeCWr9eoyiCuw65i63y0G4eqZ5+Q0+E2BYWlKJyk/Z0vsFVJGMUA=="; 3956 3938 }; 3957 3939 }; 3958 3940 "@graphql-tools/load-6.2.4" = { ··· 3964 3946 sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; 3965 3947 }; 3966 3948 }; 3967 - "@graphql-tools/load-7.5.6" = { 3949 + "@graphql-tools/load-7.5.7" = { 3968 3950 name = "_at_graphql-tools_slash_load"; 3969 3951 packageName = "@graphql-tools/load"; 3970 - version = "7.5.6"; 3952 + version = "7.5.7"; 3971 3953 src = fetchurl { 3972 - url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.6.tgz"; 3973 - sha512 = "IocEP4METGdbDzV44VaeiXO387NOYSW4cTuBP8qybHZX0XlIp8bEv7c8GKS3m8DeRop/9SnOL7HyiAfNMA4Chg=="; 3954 + url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.7.tgz"; 3955 + sha512 = "Z4oKf4MdBvl0EyubmvPL14ldhovKz8C61rQPHD8pjnC8Z0RbvW0a/sns/yuHuCVZoJMsSboU65DPzPTIoQUM4w=="; 3974 3956 }; 3975 3957 }; 3976 3958 "@graphql-tools/merge-6.2.17" = { ··· 3982 3964 sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow=="; 3983 3965 }; 3984 3966 }; 3985 - "@graphql-tools/merge-8.2.6" = { 3967 + "@graphql-tools/merge-8.2.7" = { 3986 3968 name = "_at_graphql-tools_slash_merge"; 3987 3969 packageName = "@graphql-tools/merge"; 3988 - version = "8.2.6"; 3970 + version = "8.2.7"; 3989 3971 src = fetchurl { 3990 - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.6.tgz"; 3991 - sha512 = "dkwTm4czMISi/Io47IVvq2Fl9q4TIGKpJ0VZjuXYdEFkECyH6A5uwxZfPVandZG+gQs8ocFFoa6RisiUJLZrJw=="; 3972 + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.7.tgz"; 3973 + sha512 = "rKxjNogqu1UYAG/y5FOb6lJsmSQbWA+jq4inWjNEVX54VGGE7/WGnmPaqcsyomNOfS3vIRS6NnG+DxiQSqetjg=="; 3992 3974 }; 3993 3975 }; 3994 3976 "@graphql-tools/schema-7.1.5" = { ··· 4000 3982 sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA=="; 4001 3983 }; 4002 3984 }; 4003 - "@graphql-tools/schema-8.3.6" = { 3985 + "@graphql-tools/schema-8.3.7" = { 4004 3986 name = "_at_graphql-tools_slash_schema"; 4005 3987 packageName = "@graphql-tools/schema"; 4006 - version = "8.3.6"; 3988 + version = "8.3.7"; 4007 3989 src = fetchurl { 4008 - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.6.tgz"; 4009 - sha512 = "7tWYRQ8hB/rv2zAtv2LtnQl4UybyJPtRz/VLKRmgi7+F5t8iYBahmmsxMDAYMWMmWMqEDiKk54TvAes+J069rQ=="; 3990 + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.7.tgz"; 3991 + sha512 = "7byr9J6rfMPFPfiR4u65dy20xHATTvbgOY7KYd1sYPnMKKfRZe0tUgpnE+noXcfob7N8s366WaVh7bEoztQMwg=="; 4010 3992 }; 4011 3993 }; 4012 3994 "@graphql-tools/url-loader-6.10.1" = { ··· 4018 4000 sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; 4019 4001 }; 4020 4002 }; 4021 - "@graphql-tools/url-loader-7.9.8" = { 4003 + "@graphql-tools/url-loader-7.9.9" = { 4022 4004 name = "_at_graphql-tools_slash_url-loader"; 4023 4005 packageName = "@graphql-tools/url-loader"; 4024 - version = "7.9.8"; 4006 + version = "7.9.9"; 4025 4007 src = fetchurl { 4026 - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.8.tgz"; 4027 - sha512 = "nRMXwwoIDLt7ohBWvKKjEEH61YS1nnWs6BVgGStePfmRGrhxECpLWmfAmKLNXPqDJN7Nu6ykFJYjt65j5l6qsw=="; 4008 + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.9.tgz"; 4009 + sha512 = "qhjBJ3oCXZrzvJchVwtrahr48TXOHPYZ4YXklGrbJVoJs3LP0a7CYUwuXeiNuN+dpgaxkb175sIEN9m0FadGRw=="; 4028 4010 }; 4029 4011 }; 4030 4012 "@graphql-tools/utils-6.2.4" = { ··· 4054 4036 sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ=="; 4055 4037 }; 4056 4038 }; 4057 - "@graphql-tools/utils-8.6.5" = { 4039 + "@graphql-tools/utils-8.6.6" = { 4058 4040 name = "_at_graphql-tools_slash_utils"; 4059 4041 packageName = "@graphql-tools/utils"; 4060 - version = "8.6.5"; 4042 + version = "8.6.6"; 4061 4043 src = fetchurl { 4062 - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.5.tgz"; 4063 - sha512 = "mjOtaWiS2WIqRz/cq5gaeM3sVrllcu2xbtHROw1su1v3xWa3D3dKgn8Lrl7+tvWs5WUVySsBss/VZ3WdoPkCrA=="; 4044 + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.6.tgz"; 4045 + sha512 = "wjY2ljKLCnnbRrDNPPgPNqCujou0LFSOWcxAjV6DYUlfFWTsAEvlYmsmY4T+K12wI/fnqoJ2bUwIlap1plFDMg=="; 4064 4046 }; 4065 4047 }; 4066 4048 "@graphql-tools/wrap-7.0.8" = { ··· 4072 4054 sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; 4073 4055 }; 4074 4056 }; 4075 - "@graphql-tools/wrap-8.4.10" = { 4057 + "@graphql-tools/wrap-8.4.11" = { 4076 4058 name = "_at_graphql-tools_slash_wrap"; 4077 4059 packageName = "@graphql-tools/wrap"; 4078 - version = "8.4.10"; 4079 - src = fetchurl { 4080 - url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.10.tgz"; 4081 - sha512 = "1/pcKRDTGIUspUl6uhlfQ0u1l4j15TVGkOkijI+gX25Q9sfAJclT0bovKBksP39G6v4hZnolpOU2txJ47MxxEg=="; 4082 - }; 4083 - }; 4084 - "@grpc/grpc-js-1.4.4" = { 4085 - name = "_at_grpc_slash_grpc-js"; 4086 - packageName = "@grpc/grpc-js"; 4087 - version = "1.4.4"; 4060 + version = "8.4.11"; 4088 4061 src = fetchurl { 4089 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.4.4.tgz"; 4090 - sha512 = "a6222b7Dl6fIlMgzVl7e+NiRoLiZFbpcwvBH2Oli56Bn7W4/3Ld+86hK4ffPn5rx2DlDidmIcvIJiOQXyhv9gA=="; 4062 + url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.11.tgz"; 4063 + sha512 = "bif9yNZCoG1fFTGuIV4UblsJI95VSufl0RReXdr6f2yNbnqjSzgoDMB17WQlLrNOBrXa7r8N5aWBr5hBGhtGig=="; 4091 4064 }; 4092 4065 }; 4093 4066 "@grpc/grpc-js-1.5.10" = { ··· 4099 4072 sha512 = "++oAubX/7rJzlqH0ShyzDENNNDHYrlttdc3NM40KlaVQDcgGqQknuPoavmyTC+oNUDyxPCX5dHceKhfcgN3tiw=="; 4100 4073 }; 4101 4074 }; 4102 - "@grpc/grpc-js-1.5.4" = { 4103 - name = "_at_grpc_slash_grpc-js"; 4104 - packageName = "@grpc/grpc-js"; 4105 - version = "1.5.4"; 4106 - src = fetchurl { 4107 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.5.4.tgz"; 4108 - sha512 = "+nJTOsqpFAXnfFrMZ7Too4XXZ/J9O+8jYvSoaunupoC7I7b9H4iex1BRsbTdOmiowfPGJrWit7jUPmbENSUSpw=="; 4109 - }; 4110 - }; 4111 4075 "@grpc/grpc-js-1.5.7" = { 4112 4076 name = "_at_grpc_slash_grpc-js"; 4113 4077 packageName = "@grpc/grpc-js"; ··· 4126 4090 sha512 = "ix3rQS64rKL1s6CfIaRgnts+RNYZZ2NaYyTK7iimai6an/0GGDbukzy990hJ5vtKHjhaqJxJMB6Qq7BMZ0zZSQ=="; 4127 4091 }; 4128 4092 }; 4129 - "@grpc/proto-loader-0.6.6" = { 4130 - name = "_at_grpc_slash_proto-loader"; 4131 - packageName = "@grpc/proto-loader"; 4132 - version = "0.6.6"; 4093 + "@grpc/grpc-js-1.6.2" = { 4094 + name = "_at_grpc_slash_grpc-js"; 4095 + packageName = "@grpc/grpc-js"; 4096 + version = "1.6.2"; 4133 4097 src = fetchurl { 4134 - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.6.tgz"; 4135 - sha512 = "cdMaPZ8AiFz6ua6PUbP+LKbhwJbFXnrQ/mlnKGUyzDUZ3wp7vPLksnmLCBX6SHgSmjX7CbNVNLFYD5GmmjO4GQ=="; 4098 + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.2.tgz"; 4099 + sha512 = "9+89Ne1K8F9u86T+l1yIV2DS+dWHYVK61SsDZN4MFTFehOOaJ4rHxa1cW8Lwdn2/6tOx7N3+SY/vfcjztOHopA=="; 4136 4100 }; 4137 4101 }; 4138 4102 "@grpc/proto-loader-0.6.9" = { ··· 5755 5719 sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; 5756 5720 }; 5757 5721 }; 5758 - "@microsoft/load-themed-styles-1.10.250" = { 5722 + "@microsoft/load-themed-styles-1.10.251" = { 5759 5723 name = "_at_microsoft_slash_load-themed-styles"; 5760 5724 packageName = "@microsoft/load-themed-styles"; 5761 - version = "1.10.250"; 5725 + version = "1.10.251"; 5762 5726 src = fetchurl { 5763 - url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.250.tgz"; 5764 - sha512 = "uxn8ho0Wlc+JL8epCErwKIBK5ulva33VrabPbqPM1A770RGdxfW0J9PhnaIDOlz9p2w4DeyNhcLXIZry2eOaBg=="; 5727 + url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.251.tgz"; 5728 + sha512 = "Ro0EiAwOIwC6YP00Fw8ixY2xWDQmV+HdfMskcrCfEUZidwBBEt7wlWnjx4SnaJH+sdDTlnnHzuERE2lzH9IvPA=="; 5765 5729 }; 5766 5730 }; 5767 5731 "@mitmaro/errors-1.0.0" = { ··· 5818 5782 sha512 = "BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg=="; 5819 5783 }; 5820 5784 }; 5821 - "@nestjs/schematics-8.0.9" = { 5785 + "@nestjs/schematics-8.0.10" = { 5822 5786 name = "_at_nestjs_slash_schematics"; 5823 5787 packageName = "@nestjs/schematics"; 5824 - version = "8.0.9"; 5788 + version = "8.0.10"; 5825 5789 src = fetchurl { 5826 - url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.9.tgz"; 5827 - sha512 = "2YNRFWyQCxKaK7XTKBRKecERKQj2cg9FLxsHwAf9beryXxVmciTmHV0gHCW7Pfatj38R50QFGPN71wuyyZIC5g=="; 5790 + url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.10.tgz"; 5791 + sha512 = "gQq/8TYjtgum+5+QuPfHHKgKxDgNLGh8mH+EJ1skOKX+GTxgt5jmg1GFmwEfiOXZUcF9thT6GsOVNKWrdO3YMg=="; 5828 5792 }; 5829 5793 }; 5830 5794 "@netflix/nerror-1.1.3" = { ··· 6106 6070 sha512 = "/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw=="; 6107 6071 }; 6108 6072 }; 6109 - "@npmcli/git-3.0.0" = { 6073 + "@npmcli/git-3.0.1" = { 6110 6074 name = "_at_npmcli_slash_git"; 6111 6075 packageName = "@npmcli/git"; 6112 - version = "3.0.0"; 6076 + version = "3.0.1"; 6113 6077 src = fetchurl { 6114 - url = "https://registry.npmjs.org/@npmcli/git/-/git-3.0.0.tgz"; 6115 - sha512 = "xfSBJ+KBMZWWqRHFbEgIaXG/LtELHrQZMJ72Gkb3yWdHysu/7+VGOs8ME0c3td7QNQX57Ggo3kYL6ylcd70/kA=="; 6078 + url = "https://registry.npmjs.org/@npmcli/git/-/git-3.0.1.tgz"; 6079 + sha512 = "UU85F/T+F1oVn3IsB/L6k9zXIMpXBuUBE25QDH0SsURwT6IOBqkC7M16uqo2vVZIyji3X1K4XH9luip7YekH1A=="; 6116 6080 }; 6117 6081 }; 6118 6082 "@npmcli/installed-package-contents-1.0.7" = { ··· 6151 6115 sha512 = "1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="; 6152 6116 }; 6153 6117 }; 6118 + "@npmcli/move-file-2.0.0" = { 6119 + name = "_at_npmcli_slash_move-file"; 6120 + packageName = "@npmcli/move-file"; 6121 + version = "2.0.0"; 6122 + src = fetchurl { 6123 + url = "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.0.tgz"; 6124 + sha512 = "UR6D5f4KEGWJV6BGPH3Qb2EtgH+t+1XQ1Tt85c7qicN6cezzuHPdZwwAxqZr4JLtnQu0LZsTza/5gmNmSl8XLg=="; 6125 + }; 6126 + }; 6154 6127 "@npmcli/name-from-folder-1.0.1" = { 6155 6128 name = "_at_npmcli_slash_name-from-folder"; 6156 6129 packageName = "@npmcli/name-from-folder"; ··· 6169 6142 sha512 = "fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA=="; 6170 6143 }; 6171 6144 }; 6145 + "@npmcli/node-gyp-2.0.0" = { 6146 + name = "_at_npmcli_slash_node-gyp"; 6147 + packageName = "@npmcli/node-gyp"; 6148 + version = "2.0.0"; 6149 + src = fetchurl { 6150 + url = "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-2.0.0.tgz"; 6151 + sha512 = "doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A=="; 6152 + }; 6153 + }; 6172 6154 "@npmcli/package-json-1.0.1" = { 6173 6155 name = "_at_npmcli_slash_package-json"; 6174 6156 packageName = "@npmcli/package-json"; ··· 6185 6167 src = fetchurl { 6186 6168 url = "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz"; 6187 6169 sha512 = "QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg=="; 6170 + }; 6171 + }; 6172 + "@npmcli/promise-spawn-3.0.0" = { 6173 + name = "_at_npmcli_slash_promise-spawn"; 6174 + packageName = "@npmcli/promise-spawn"; 6175 + version = "3.0.0"; 6176 + src = fetchurl { 6177 + url = "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-3.0.0.tgz"; 6178 + sha512 = "s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g=="; 6188 6179 }; 6189 6180 }; 6190 6181 "@npmcli/run-script-1.8.6" = { ··· 6205 6196 sha512 = "fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig=="; 6206 6197 }; 6207 6198 }; 6208 - "@npmcli/run-script-3.0.1" = { 6199 + "@npmcli/run-script-3.0.2" = { 6209 6200 name = "_at_npmcli_slash_run-script"; 6210 6201 packageName = "@npmcli/run-script"; 6211 - version = "3.0.1"; 6202 + version = "3.0.2"; 6212 6203 src = fetchurl { 6213 - url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-3.0.1.tgz"; 6214 - sha512 = "o2fkld5hYwu9sKYzoXTpqEocMnDLaigobaPzLaGB63k/ExmLBTaB+KpfKlpcIePPnuP8RFR+0GDI4KopJCM6Xg=="; 6204 + url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-3.0.2.tgz"; 6205 + sha512 = "vdjD/PMBl+OX9j9C9irx5sCCIKfp2PWkpPNH9zxvlJAfSZ3Qp5aU412v+O3PFJl3R1PFNwuyChCqHg4ma6ci2Q=="; 6215 6206 }; 6216 6207 }; 6217 6208 "@oclif/command-1.8.0" = { ··· 6925 6916 sha512 = "h2FvqLA75ZQdIXX1y+ylGjIIi7YtbAUJyIapxaO081h3EsYG2jr9sRL4sym5ECgmvbyua/DEgtMLX3eGYn09FA=="; 6926 6917 }; 6927 6918 }; 6928 - "@parcel/css-1.7.4" = { 6919 + "@parcel/css-1.8.0" = { 6929 6920 name = "_at_parcel_slash_css"; 6930 6921 packageName = "@parcel/css"; 6931 - version = "1.7.4"; 6922 + version = "1.8.0"; 6932 6923 src = fetchurl { 6933 - url = "https://registry.npmjs.org/@parcel/css/-/css-1.7.4.tgz"; 6934 - sha512 = "K1N9mxEkWQQmSINMNuGvlyPq7yCY+AtHskGxWav97lhu2i8GMMXRV9kc8/x/jkZh5KDBWO5vHhdQiujRBrgR8g=="; 6924 + url = "https://registry.npmjs.org/@parcel/css/-/css-1.8.0.tgz"; 6925 + sha512 = "l6+gGOIk+JEZ+RuqsGzl4yDFKfSC8Uq+FaHzJgwIuIcdHip8ENMr8HMHiOPeO3VSo1JRn3yt5+MIntm2GIzAIA=="; 6935 6926 }; 6936 6927 }; 6937 - "@parcel/css-darwin-arm64-1.7.4" = { 6928 + "@parcel/css-darwin-arm64-1.8.0" = { 6938 6929 name = "_at_parcel_slash_css-darwin-arm64"; 6939 6930 packageName = "@parcel/css-darwin-arm64"; 6940 - version = "1.7.4"; 6931 + version = "1.8.0"; 6941 6932 src = fetchurl { 6942 - url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.7.4.tgz"; 6943 - sha512 = "fA+aBZAAgXSV7jUQFRYuKpJr5EEqNq++mFu4o/pU/lBFMJhL6Z11aqzrBecC1JziWT3t/BgryWdznf1QkNtM4w=="; 6933 + url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.8.0.tgz"; 6934 + sha512 = "A9taXLx12UTgyH/UGD9KMDNTXmLuH51h5g+AV4ZVo8vUZHSofP/Sb+zphOikdHn+K5gzVai1a06N92F2G8xJGw=="; 6944 6935 }; 6945 6936 }; 6946 - "@parcel/css-darwin-x64-1.7.4" = { 6937 + "@parcel/css-darwin-x64-1.8.0" = { 6947 6938 name = "_at_parcel_slash_css-darwin-x64"; 6948 6939 packageName = "@parcel/css-darwin-x64"; 6949 - version = "1.7.4"; 6940 + version = "1.8.0"; 6950 6941 src = fetchurl { 6951 - url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.7.4.tgz"; 6952 - sha512 = "qx/+vEXSmed7eeBgVvV/1lrEjk8KnKUiAN+CCes8d6ddJJzK5evTKQsWkywe1jNdHC33d2mlLlhLFmC2+2IPOw=="; 6942 + url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.8.0.tgz"; 6943 + sha512 = "SWmB7fnD0USm9AHZBHx9EJBo1c2dwLFuA/HBD3in4yDPGS5kSqfIJTfux3NO/aySsy7NAC3FOgK/L2A2PdtpGQ=="; 6953 6944 }; 6954 6945 }; 6955 - "@parcel/css-linux-arm-gnueabihf-1.7.4" = { 6946 + "@parcel/css-linux-arm-gnueabihf-1.8.0" = { 6956 6947 name = "_at_parcel_slash_css-linux-arm-gnueabihf"; 6957 6948 packageName = "@parcel/css-linux-arm-gnueabihf"; 6958 - version = "1.7.4"; 6949 + version = "1.8.0"; 6959 6950 src = fetchurl { 6960 - url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.7.4.tgz"; 6961 - sha512 = "+Qf+j8dqJ+t7V/w9LnyWBzNcMG/GnlzjlWNQhiUkt1aYFYPr5i/eRWuWLYxVlz8EGQOUbYlinDGLXTUJDt31gA=="; 6951 + url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.8.0.tgz"; 6952 + sha512 = "66ACZD3bnotyLAgJ/D93R28ipFomvxlsMszxv+U45GiSLBwmjKZ7VkTnMHC2/kmQ0NVdlUKh4WqjL/PB4PLkzg=="; 6962 6953 }; 6963 6954 }; 6964 - "@parcel/css-linux-arm64-gnu-1.7.4" = { 6955 + "@parcel/css-linux-arm64-gnu-1.8.0" = { 6965 6956 name = "_at_parcel_slash_css-linux-arm64-gnu"; 6966 6957 packageName = "@parcel/css-linux-arm64-gnu"; 6967 - version = "1.7.4"; 6958 + version = "1.8.0"; 6968 6959 src = fetchurl { 6969 - url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.7.4.tgz"; 6970 - sha512 = "ITP0HZT/Ay6JCgH3W7JpoRUYfciW+jBVBTjglZjYgyYPLLWk2J1kXB+qC3jHp5XCeH4feh7eFB1pyQcE7kqCjA=="; 6960 + url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.8.0.tgz"; 6961 + sha512 = "oH00san3byQnx2dWp6gsIvbZNonSQ1S+nNsTLjA/Riy2sVYTxYDsLOiNS+ryJwBKchOYSZ5PiMDgJaw7KmgIgg=="; 6971 6962 }; 6972 6963 }; 6973 - "@parcel/css-linux-arm64-musl-1.7.4" = { 6964 + "@parcel/css-linux-arm64-musl-1.8.0" = { 6974 6965 name = "_at_parcel_slash_css-linux-arm64-musl"; 6975 6966 packageName = "@parcel/css-linux-arm64-musl"; 6976 - version = "1.7.4"; 6967 + version = "1.8.0"; 6977 6968 src = fetchurl { 6978 - url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.7.4.tgz"; 6979 - sha512 = "or61QRhhpsDlHfrc73KP4bPwnnVZWni1jkuRv1mCi+0SzYzoaO190JEaj7VWh/boUvjGiIl//FsLoZleQIWKNA=="; 6969 + url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.8.0.tgz"; 6970 + sha512 = "0p0AJ3QypEC0NwFWbzy5JbI8ZDLUED3BGXvqdD7jfOx14qCW2apq7OKBSwSCS8ZvBo8G2tkss7nbyOG5NbIjUQ=="; 6980 6971 }; 6981 6972 }; 6982 - "@parcel/css-linux-x64-gnu-1.7.4" = { 6973 + "@parcel/css-linux-x64-gnu-1.8.0" = { 6983 6974 name = "_at_parcel_slash_css-linux-x64-gnu"; 6984 6975 packageName = "@parcel/css-linux-x64-gnu"; 6985 - version = "1.7.4"; 6976 + version = "1.8.0"; 6986 6977 src = fetchurl { 6987 - url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.7.4.tgz"; 6988 - sha512 = "GHGsM06F26FAkvPcnsGw7NHxPVD7TQvg7OC7cVAYmETccO8mqs9DyRzBTevk+1kl7EQXNnHDojn7VpVN6q+phg=="; 6978 + url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.8.0.tgz"; 6979 + sha512 = "nXWRN7LSXZPic0B8F77AQe7CIqYi4+nD5QVpABX0j7s/UO2BAcfN0vpI0CNAuErX4QOSs3AIWo1XF0qL/mH9DQ=="; 6989 6980 }; 6990 6981 }; 6991 - "@parcel/css-linux-x64-musl-1.7.4" = { 6982 + "@parcel/css-linux-x64-musl-1.8.0" = { 6992 6983 name = "_at_parcel_slash_css-linux-x64-musl"; 6993 6984 packageName = "@parcel/css-linux-x64-musl"; 6994 - version = "1.7.4"; 6985 + version = "1.8.0"; 6995 6986 src = fetchurl { 6996 - url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.7.4.tgz"; 6997 - sha512 = "H/9wvQ7LNqng9yIwulpfUUhs6zm9+vLCzri2qnC4vm8geyTjA0W0H5fphV8IlzNJ/DfHmoesJ+TXw5NG+QC9hg=="; 6987 + url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.8.0.tgz"; 6988 + sha512 = "5Q5SQREh1tSOjvIu55acqEzWDdZJZiwlgdoC8nTYmIRsyFn4SVibVMDau5qWmb3Xtswr/hm41xesG3nIBXCX+Q=="; 6998 6989 }; 6999 6990 }; 7000 - "@parcel/css-win32-x64-msvc-1.7.4" = { 6991 + "@parcel/css-win32-x64-msvc-1.8.0" = { 7001 6992 name = "_at_parcel_slash_css-win32-x64-msvc"; 7002 6993 packageName = "@parcel/css-win32-x64-msvc"; 7003 - version = "1.7.4"; 6994 + version = "1.8.0"; 7004 6995 src = fetchurl { 7005 - url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.7.4.tgz"; 7006 - sha512 = "xmg18iISCn1f9IyYUif6yR8FuEmi93qzH55oUiri5vZWuCY8xfraHsRA6i8yLWnxgDmVeHyiN0IICl7rgZo10A=="; 6996 + url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.8.0.tgz"; 6997 + sha512 = "IHFRdgsLHUuXIREtnRE/yNjNyRofySyLvG4lx8sfbBYQFIdelplw6V74kQ/u2iNt4MIOP69CkJxUuF+uX//ooQ=="; 7007 6998 }; 7008 6999 }; 7009 7000 "@parcel/diagnostic-2.4.1" = { ··· 7780 7771 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 7781 7772 }; 7782 7773 }; 7783 - "@schematics/angular-13.3.1" = { 7774 + "@schematics/angular-13.3.2" = { 7784 7775 name = "_at_schematics_slash_angular"; 7785 7776 packageName = "@schematics/angular"; 7786 - version = "13.3.1"; 7777 + version = "13.3.2"; 7787 7778 src = fetchurl { 7788 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.1.tgz"; 7789 - sha512 = "+lrK/d1eJsAK6d6E9TDeg3Vc71bDy1KsE8M+lEINdX9Wax22mAz4pw20X9RSCw5RHgn+XcNUuMsgRJAwVhDNpg=="; 7779 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.2.tgz"; 7780 + sha512 = "ycTrPEsaSEtJ/CR8MVBrU6jaxcdBSy1lGUW8qSElsGS0OkHFKaV7fkzS9h0gPK9ANp6grZn0Ms3Hy3gAKQkiiQ=="; 7790 7781 }; 7791 7782 }; 7792 7783 "@segment/loosely-validate-event-2.0.0" = { ··· 9436 9427 sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="; 9437 9428 }; 9438 9429 }; 9439 - "@types/node-16.11.7" = { 9440 - name = "_at_types_slash_node"; 9441 - packageName = "@types/node"; 9442 - version = "16.11.7"; 9443 - src = fetchurl { 9444 - url = "https://registry.npmjs.org/@types/node/-/node-16.11.7.tgz"; 9445 - sha512 = "QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw=="; 9446 - }; 9447 - }; 9448 - "@types/node-17.0.15" = { 9449 - name = "_at_types_slash_node"; 9450 - packageName = "@types/node"; 9451 - version = "17.0.15"; 9452 - src = fetchurl { 9453 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.15.tgz"; 9454 - sha512 = "zWt4SDDv1S9WRBNxLFxFRHxdD9tvH8f5/kg5/IaLFdnSNXsDY4eL3Q3XXN+VxUnWIhyVFDwcsmAprvwXoM/ClA=="; 9455 - }; 9456 - }; 9457 9430 "@types/node-17.0.21" = { 9458 9431 name = "_at_types_slash_node"; 9459 9432 packageName = "@types/node"; ··· 9553 9526 sha512 = "Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ=="; 9554 9527 }; 9555 9528 }; 9556 - "@types/prop-types-15.7.4" = { 9529 + "@types/prop-types-15.7.5" = { 9557 9530 name = "_at_types_slash_prop-types"; 9558 9531 packageName = "@types/prop-types"; 9559 - version = "15.7.4"; 9532 + version = "15.7.5"; 9560 9533 src = fetchurl { 9561 - url = "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz"; 9562 - sha512 = "rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="; 9534 + url = "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz"; 9535 + sha512 = "JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="; 9563 9536 }; 9564 9537 }; 9565 9538 "@types/pug-2.0.6" = { ··· 9650 9623 src = fetchurl { 9651 9624 url = "https://registry.npmjs.org/@types/react-window-infinite-loader/-/react-window-infinite-loader-1.0.6.tgz"; 9652 9625 sha512 = "V8g8sBDLVeJJAfEENJS7VXZK+DRJ+jzPNtk8jpj2G+obhf+iqGNUDGwNWCbBhLiD+KpHhf3kWQlKBRi0tAeU4Q=="; 9653 - }; 9654 - }; 9655 - "@types/request-2.48.7" = { 9656 - name = "_at_types_slash_request"; 9657 - packageName = "@types/request"; 9658 - version = "2.48.7"; 9659 - src = fetchurl { 9660 - url = "https://registry.npmjs.org/@types/request/-/request-2.48.7.tgz"; 9661 - sha512 = "GWP9AZW7foLd4YQxyFZDBepl0lPsWLMEXDZUjQ/c1gqVPDPECrRZyEzuhJdnPWioFCq3Tv0qoGpMD6U+ygd4ZA=="; 9662 9626 }; 9663 9627 }; 9664 9628 "@types/request-2.48.8" = { ··· 10073 10037 src = fetchurl { 10074 10038 url = "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz"; 10075 10039 sha512 = "JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww=="; 10076 - }; 10077 - }; 10078 - "@types/ws-8.2.0" = { 10079 - name = "_at_types_slash_ws"; 10080 - packageName = "@types/ws"; 10081 - version = "8.2.0"; 10082 - src = fetchurl { 10083 - url = "https://registry.npmjs.org/@types/ws/-/ws-8.2.0.tgz"; 10084 - sha512 = "cyeefcUCgJlEk+hk2h3N+MqKKsPViQgF5boi9TTHSK+PoR9KWBb/C5ccPcDyAqgsbAYHTwulch725DV84+pSpg=="; 10085 - }; 10086 - }; 10087 - "@types/ws-8.2.2" = { 10088 - name = "_at_types_slash_ws"; 10089 - packageName = "@types/ws"; 10090 - version = "8.2.2"; 10091 - src = fetchurl { 10092 - url = "https://registry.npmjs.org/@types/ws/-/ws-8.2.2.tgz"; 10093 - sha512 = "NOn5eIcgWLOo6qW8AcuLZ7G8PycXu0xTxxkS6Q18VWFxgPUSOwV0pBj2a/4viNZVu25i7RIB7GttdkAIUUXOOg=="; 10094 10040 }; 10095 10041 }; 10096 10042 "@types/ws-8.5.2" = { ··· 11108 11054 src = fetchurl { 11109 11055 url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz"; 11110 11056 sha512 = "V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A=="; 11111 - }; 11112 - }; 11113 - "@xmldom/xmldom-0.8.1" = { 11114 - name = "_at_xmldom_slash_xmldom"; 11115 - packageName = "@xmldom/xmldom"; 11116 - version = "0.8.1"; 11117 - src = fetchurl { 11118 - url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.1.tgz"; 11119 - sha512 = "4wOae+5N2RZ+CZXd9ZKwkaDi55IxrSTOjHpxTvQQ4fomtOJmqVxbmICA9jE1jvnqNhpfgz8cnfFagG86wV/xLQ=="; 11120 11057 }; 11121 11058 }; 11122 11059 "@xmldom/xmldom-0.8.2" = { ··· 13936 13873 sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; 13937 13874 }; 13938 13875 }; 13939 - "async-3.2.2" = { 13940 - name = "async"; 13941 - packageName = "async"; 13942 - version = "3.2.2"; 13943 - src = fetchurl { 13944 - url = "https://registry.npmjs.org/async/-/async-3.2.2.tgz"; 13945 - sha512 = "H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g=="; 13946 - }; 13947 - }; 13948 13876 "async-3.2.3" = { 13949 13877 name = "async"; 13950 13878 packageName = "async"; ··· 14107 14035 sha1 = "1e762817d849ce44bfac07925a42036787061b15"; 14108 14036 }; 14109 14037 }; 14110 - "asyncjs-util-1.2.7" = { 14038 + "asyncjs-util-1.2.8" = { 14111 14039 name = "asyncjs-util"; 14112 14040 packageName = "asyncjs-util"; 14113 - version = "1.2.7"; 14041 + version = "1.2.8"; 14114 14042 src = fetchurl { 14115 - url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.7.tgz"; 14116 - sha512 = "+NoBU9in09GHOWgRv+HhF3kDxqgJ6KowRA7xwHZKxajnh+ybBJhp24i2nOyulZtpdn+4eyrfLvTD6VoRk7TWyQ=="; 14043 + url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.8.tgz"; 14044 + sha512 = "wUcEKoAxBWWNE1wXkoIvIyM1vVDfvItYXANYTgwemeRL8FgV6z70XdLGLBMty0WiQSub0fBuKIyF+Hz3DCahOg=="; 14117 14045 }; 14118 14046 }; 14119 - "asyncjs-util-1.2.8" = { 14047 + "asyncjs-util-1.2.9" = { 14120 14048 name = "asyncjs-util"; 14121 14049 packageName = "asyncjs-util"; 14122 - version = "1.2.8"; 14050 + version = "1.2.9"; 14123 14051 src = fetchurl { 14124 - url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.8.tgz"; 14125 - sha512 = "wUcEKoAxBWWNE1wXkoIvIyM1vVDfvItYXANYTgwemeRL8FgV6z70XdLGLBMty0WiQSub0fBuKIyF+Hz3DCahOg=="; 14052 + url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.9.tgz"; 14053 + sha512 = "U9imS8ehJA6DPNdBdvoLcIRDFh7yzI9J93CC8/2obk8gUSIy8KKhmCqYe+3NlISJhxLLi8aWmVL1Gkb3dz1xhg=="; 14126 14054 }; 14127 14055 }; 14128 14056 "asynckit-0.4.0" = { ··· 14305 14233 sha512 = "fChMDiSfWcW0EUWmiqlyc+VAIXKH0w7BBruL3cVWSwO+5oA5A9juGF4NCBV2/KAHzaKaG0hXKPE49Wh6Lq74ag=="; 14306 14234 }; 14307 14235 }; 14308 - "aws-sdk-2.1107.0" = { 14309 - name = "aws-sdk"; 14310 - packageName = "aws-sdk"; 14311 - version = "2.1107.0"; 14312 - src = fetchurl { 14313 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1107.0.tgz"; 14314 - sha512 = "gZaCm+zSSwjUYSa/cVg63uXhq5w9coT9yA8aTDOYzFkyl19b9H2CCixPeyf7KHtZdGwe3QAG2Oe6Rw0xtoCs+Q=="; 14315 - }; 14316 - }; 14317 - "aws-sdk-2.1108.0" = { 14236 + "aws-sdk-2.1110.0" = { 14318 14237 name = "aws-sdk"; 14319 14238 packageName = "aws-sdk"; 14320 - version = "2.1108.0"; 14239 + version = "2.1110.0"; 14321 14240 src = fetchurl { 14322 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1108.0.tgz"; 14323 - sha512 = "BpoHW6vk8cXQDf0M+j7LSti7db4vIWocfUDTFbmkOT0hH9pR3f4IDzbnGzGmlka6IOFWkb9sVHl+P5S2meswOg=="; 14241 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1110.0.tgz"; 14242 + sha512 = "qxHqzE2ikGNRzhajcmWIBuptML3LBwz9TMnS0jLQjXOP54fZYW6EEKy2Dy7MKjHKeo8QQy/EWtDdWfH9Fu5UIA=="; 14324 14243 }; 14325 14244 }; 14326 14245 "aws-sign2-0.6.0" = { ··· 14728 14647 sha512 = "Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A=="; 14729 14648 }; 14730 14649 }; 14731 - "babel-plugin-styled-components-2.0.6" = { 14650 + "babel-plugin-styled-components-2.0.7" = { 14732 14651 name = "babel-plugin-styled-components"; 14733 14652 packageName = "babel-plugin-styled-components"; 14734 - version = "2.0.6"; 14653 + version = "2.0.7"; 14735 14654 src = fetchurl { 14736 - url = "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.6.tgz"; 14737 - sha512 = "Sk+7o/oa2HfHv3Eh8sxoz75/fFvEdHsXV4grdeHufX0nauCmymlnN0rGhIvfpMQSJMvGutJ85gvCGea4iqmDpg=="; 14655 + url = "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.7.tgz"; 14656 + sha512 = "i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA=="; 14738 14657 }; 14739 14658 }; 14740 14659 "babel-plugin-syntax-flow-6.18.0" = { ··· 15754 15673 sha512 = "O1htyufFTYy3EO0JkHg2CLykdXEtV2ssqw47Gq9A0WByp662xpJnMEB9m43LZjsSDjIAOozWRExlFQk2hlV1XQ=="; 15755 15674 }; 15756 15675 }; 15757 - "bipf-1.6.1" = { 15676 + "bipf-1.6.2" = { 15758 15677 name = "bipf"; 15759 15678 packageName = "bipf"; 15760 - version = "1.6.1"; 15679 + version = "1.6.2"; 15761 15680 src = fetchurl { 15762 - url = "https://registry.npmjs.org/bipf/-/bipf-1.6.1.tgz"; 15763 - sha512 = "wsn3ickoiYgUn9Bd0JUTPnpJemEcjWtXkMLLQyNVhrnKhRxKhma8Gq/DoB1Di8GUcHhgeEVH+PQT2C/JRFpOgw=="; 15681 + url = "https://registry.npmjs.org/bipf/-/bipf-1.6.2.tgz"; 15682 + sha512 = "Bp6Wo3VVrsVxGwXuRuzca78mYxyTHs0MJz1cZRNhEJPb1KBh7J/2k5ixG35qmDyKscJeCM8+wx20lvBN26ueCg=="; 15764 15683 }; 15765 15684 }; 15766 15685 "bit-field-1.5.3" = { ··· 15788 15707 src = fetchurl { 15789 15708 url = "https://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-5.2.0.tgz"; 15790 15709 sha512 = "5DcLxGUDejgNBYcieMIUfjORtUeNWl828VWLHJGVKZCb4zIS1oOySTUr0LGmcqJBQgTBz3bGbRQla4FgrdQEIQ=="; 15791 - }; 15792 - }; 15793 - "bitcoinjs-lib-6.0.0" = { 15794 - name = "bitcoinjs-lib"; 15795 - packageName = "bitcoinjs-lib"; 15796 - version = "6.0.0"; 15797 - src = fetchurl { 15798 - url = "https://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-6.0.0.tgz"; 15799 - sha512 = "KYx81rVE4LDbZcHfE375NCX4CDeZuz7HECZm/KAmqKMY2jpD3ZcUnI7Fm+QX5EMF/xmtzzfrNL/BNxo8o0iOQg=="; 15800 15710 }; 15801 15711 }; 15802 15712 "bitcoinjs-lib-6.0.1" = { ··· 16285 16195 sha512 = "zEvNSymgMeMMeFwWmwpklFoN/OJA3YO/pVgFTBV3TVq5ulfS0+mVKEGfeInEQESoaSVK1dsVPGr2RLD22uH/aQ=="; 16286 16196 }; 16287 16197 }; 16288 - "bolt03-1.2.13" = { 16289 - name = "bolt03"; 16290 - packageName = "bolt03"; 16291 - version = "1.2.13"; 16198 + "bolt01-1.2.4" = { 16199 + name = "bolt01"; 16200 + packageName = "bolt01"; 16201 + version = "1.2.4"; 16292 16202 src = fetchurl { 16293 - url = "https://registry.npmjs.org/bolt03/-/bolt03-1.2.13.tgz"; 16294 - sha512 = "7KfDXG9JsWwMWZxYSYkP9Ga9vC3JQHvEcIZio4m/edNPAvgSiUCadNPaEjUI9gGeGaRa1RatYg33arBKr4Y3+A=="; 16203 + url = "https://registry.npmjs.org/bolt01/-/bolt01-1.2.4.tgz"; 16204 + sha512 = "384VACEF6DSao3ffTeD19rgsaYXIQ1UtHUSZf2KAKRYe0i4Amu05E7aNRzymNAB9VapL3nCu5ehR130InCRFCA=="; 16295 16205 }; 16296 16206 }; 16297 - "bolt07-1.7.4" = { 16298 - name = "bolt07"; 16299 - packageName = "bolt07"; 16300 - version = "1.7.4"; 16207 + "bolt03-1.2.14" = { 16208 + name = "bolt03"; 16209 + packageName = "bolt03"; 16210 + version = "1.2.14"; 16301 16211 src = fetchurl { 16302 - url = "https://registry.npmjs.org/bolt07/-/bolt07-1.7.4.tgz"; 16303 - sha512 = "y82Na9vEBY+rqjJhjYMFAch70nWvbL5OiEPFqNf7cGTtQfG7g/Vui2KnemrX1mxEw2SgccF+Rn1NSRm9HFtu3w=="; 16212 + url = "https://registry.npmjs.org/bolt03/-/bolt03-1.2.14.tgz"; 16213 + sha512 = "LhBa/3hqtSY7fBgE4FzoJXNPtE1tzxEfuWc32LQXNAwvgeWJP3tlQtNqhfPwfDFflSIysSe5N/yK/ybgd/oniA=="; 16304 16214 }; 16305 16215 }; 16306 16216 "bolt07-1.8.0" = { ··· 16312 16222 sha512 = "UJq+p94UK9QsU3P1npJyWF3r8TuJd6kv6P4m656VQK/m5ifw0bWCkYF0ngcHbFGq3j8u3gP8/tkGtB8WwPPRbQ=="; 16313 16223 }; 16314 16224 }; 16315 - "bolt09-0.2.0" = { 16316 - name = "bolt09"; 16317 - packageName = "bolt09"; 16318 - version = "0.2.0"; 16225 + "bolt07-1.8.1" = { 16226 + name = "bolt07"; 16227 + packageName = "bolt07"; 16228 + version = "1.8.1"; 16319 16229 src = fetchurl { 16320 - url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.0.tgz"; 16321 - sha512 = "s6QWo7qqu6fKGLISGMSG+vFxIRzeUT3KQHDiHpvhflyI3TQD6zdaMu4fEpP7PoyMFJt2Ve26SBvvRP3MM7V0bw=="; 16230 + url = "https://registry.npmjs.org/bolt07/-/bolt07-1.8.1.tgz"; 16231 + sha512 = "vgh796VOdJBunZZZX0YuW1DmkS9SbW93rCLPOmWPsAHS/mStEs4+5d0KM1bYX6QBHshY9ecg4kgJaB18jrZsIA=="; 16322 16232 }; 16323 16233 }; 16324 16234 "bolt09-0.2.1" = { ··· 16337 16247 src = fetchurl { 16338 16248 url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.2.tgz"; 16339 16249 sha512 = "m533YWZ/R/p1buxEK/19v94Ay1vS1PJNwfP30BCVj6l96NGpOa9t40HYuMpoX+xFYwOx8kZs+GGTb9TbJund0w=="; 16250 + }; 16251 + }; 16252 + "bolt09-0.2.3" = { 16253 + name = "bolt09"; 16254 + packageName = "bolt09"; 16255 + version = "0.2.3"; 16256 + src = fetchurl { 16257 + url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.3.tgz"; 16258 + sha512 = "xEt5GE6pXB8wMIWHAoyF28k0Yt2rFqIou1LCyIeNadAOQhu/F7GTjZwreFwLl07YYkhOH23avewRt5PD8JnKKg=="; 16340 16259 }; 16341 16260 }; 16342 16261 "bonjour-3.5.0" = { ··· 17600 17519 sha512 = "VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ=="; 17601 17520 }; 17602 17521 }; 17603 - "cacache-16.0.3" = { 17522 + "cacache-16.0.4" = { 17604 17523 name = "cacache"; 17605 17524 packageName = "cacache"; 17606 - version = "16.0.3"; 17525 + version = "16.0.4"; 17607 17526 src = fetchurl { 17608 - url = "https://registry.npmjs.org/cacache/-/cacache-16.0.3.tgz"; 17609 - sha512 = "eC7wYodNCVb97kuHGk5P+xZsvUJHkhSEOyNwkenqQPAsOtrTjvWOE5vSPNBpz9d8X3acIf6w2Ub5s4rvOCTs4g=="; 17527 + url = "https://registry.npmjs.org/cacache/-/cacache-16.0.4.tgz"; 17528 + sha512 = "U0D4wF3/W8ZgK4qDA5fTtOVSr0gaDfd5aa7tUdAV0uukVWKsAIn6SzXQCoVlg7RWZiJa+bcsM3/pXLumGaL2Ug=="; 17610 17529 }; 17611 17530 }; 17612 17531 "cache-base-1.0.1" = { ··· 18167 18086 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 18168 18087 }; 18169 18088 }; 18170 - "cdk8s-1.5.62" = { 18089 + "cdk8s-1.5.64" = { 18171 18090 name = "cdk8s"; 18172 18091 packageName = "cdk8s"; 18173 - version = "1.5.62"; 18092 + version = "1.5.64"; 18174 18093 src = fetchurl { 18175 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.62.tgz"; 18176 - sha512 = "zspC9PLbuRVlDp+D9mhnqiBD3d4TAcgiIU0E12B6paJUM9gZaJEOi5q/DQcoGXa0AbnnGbSjmd+b0BgHFQJTGg=="; 18094 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.64.tgz"; 18095 + sha512 = "HogF9VmYgTucZV1jvEujVYe6U1lkHr18Lz5HmcUTLhgGBU+h3XfIWabfpnRgiNn0pWfINvM/WowHZEBL8f8+Tw=="; 18177 18096 }; 18178 18097 }; 18179 - "cdk8s-plus-22-1.0.0-beta.180" = { 18098 + "cdk8s-plus-22-1.0.0-beta.181" = { 18180 18099 name = "cdk8s-plus-22"; 18181 18100 packageName = "cdk8s-plus-22"; 18182 - version = "1.0.0-beta.180"; 18101 + version = "1.0.0-beta.181"; 18183 18102 src = fetchurl { 18184 - url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.180.tgz"; 18185 - sha512 = "7jZonUlzpGSyY7v9TWk42lznAh5GSNKRE/Xq0S4kRsZYMePCDNMgxyodlNp0Yd5mhPZYHAy/D7Rm7V3miuEvLg=="; 18103 + url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.181.tgz"; 18104 + sha512 = "IFjdHKx+WlpLjazfpVCPUPkZtTMPKngm2XtajLGp8rvswxNuH6PbekUuT3TnnjXflvSrItQLOs+zbc7SViH3ow=="; 18186 18105 }; 18187 18106 }; 18188 18107 "cdktf-0.10.1" = { ··· 20831 20750 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 20832 20751 }; 20833 20752 }; 20834 - "constructs-10.0.106" = { 20753 + "constructs-10.0.108" = { 20835 20754 name = "constructs"; 20836 20755 packageName = "constructs"; 20837 - version = "10.0.106"; 20756 + version = "10.0.108"; 20838 20757 src = fetchurl { 20839 - url = "https://registry.npmjs.org/constructs/-/constructs-10.0.106.tgz"; 20840 - sha512 = "6k8z7O3q6UigE62QW/z34YcSqa1elCDEGz1rTwaMkiVjdL93mB6YLNCpC21FYVUbx+rauTdsQCD3ejVxdAmazg=="; 20758 + url = "https://registry.npmjs.org/constructs/-/constructs-10.0.108.tgz"; 20759 + sha512 = "A5sZMVWEblwtPBAOScOt8lBn2epTUljGy/sVfHi7juLnSNSZd2qaO7t62qvbIWJEpH047uYGd755PomB+sXeHA=="; 20841 20760 }; 20842 20761 }; 20843 - "constructs-3.3.259" = { 20762 + "constructs-3.3.261" = { 20844 20763 name = "constructs"; 20845 20764 packageName = "constructs"; 20846 - version = "3.3.259"; 20765 + version = "3.3.261"; 20847 20766 src = fetchurl { 20848 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.259.tgz"; 20849 - sha512 = "hI++shPkBPk8yPD/Af48B6nPmnZIXsKx2dnqDiqadoU0i7Z75/G/TqtLVF96h8XC4A6JkzQ89+CxJLpRTqwy8w=="; 20767 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.261.tgz"; 20768 + sha512 = "WAcluBHRkIlTIW0jXOhp9Fm8ZtjS2cF3MbAxN6/VEdAVtjuXlHqKmrBOVIp8V5L26ze/xuMz3mDhq1CrC2pjsw=="; 20850 20769 }; 20851 20770 }; 20852 20771 "consume-http-header-1.0.0" = { ··· 21496 21415 src = fetchurl { 21497 21416 url = "https://registry.npmjs.org/core_d/-/core_d-3.2.0.tgz"; 21498 21417 sha512 = "waKkgHU2P19huhuMjCqCDWTYjxCIHoB+nnYjI7pVMUOC1giWxMNDrXkPw9QjWY+PWCFm49bD3wA/J+c7BGZ+og=="; 21418 + }; 21419 + }; 21420 + "core_d-4.0.0" = { 21421 + name = "core_d"; 21422 + packageName = "core_d"; 21423 + version = "4.0.0"; 21424 + src = fetchurl { 21425 + url = "https://registry.npmjs.org/core_d/-/core_d-4.0.0.tgz"; 21426 + sha512 = "dBxd0Ocxj3D3K+rJxutTAZ9LQHkuMZoc9HPWYwYRYK7swou5wuIRXxgJ39YLNDvFHfHyV3JbxVYluF/AOhcRnw=="; 21499 21427 }; 21500 21428 }; 21501 21429 "corestore-5.8.2" = { ··· 22623 22551 sha512 = "4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw=="; 22624 22552 }; 22625 22553 }; 22626 - "d3-7.4.2" = { 22554 + "d3-7.4.3" = { 22627 22555 name = "d3"; 22628 22556 packageName = "d3"; 22629 - version = "7.4.2"; 22557 + version = "7.4.3"; 22630 22558 src = fetchurl { 22631 - url = "https://registry.npmjs.org/d3/-/d3-7.4.2.tgz"; 22632 - sha512 = "7VK+QBAWtNDbP2EU/ThkXgjd0u1MsXYYgCK2ElQ4BBWh0usE75tHVVeYx47m2pqQEy4isYKAA0tAFSln0l+9EQ=="; 22559 + url = "https://registry.npmjs.org/d3/-/d3-7.4.3.tgz"; 22560 + sha512 = "x5cxHjtlXjtCzzaFv23mk6JKHKJzkYm/ePygQdeztcwYVedTHVQ7INyuAmRfjO7d4HTzQuofxzqva/d06Nh++Q=="; 22633 22561 }; 22634 22562 }; 22635 22563 "d3-array-1.2.4" = { ··· 22650 22578 sha512 = "33qQ+ZoZlli19IFiQx4QEpf2CBEayMRzhlisJHSCsSUbDXv6ZishqS1x7uFVClKG4Wr7rZVHvaAttoLow6GqdQ=="; 22651 22579 }; 22652 22580 }; 22653 - "d3-array-3.1.4" = { 22581 + "d3-array-3.1.5" = { 22654 22582 name = "d3-array"; 22655 22583 packageName = "d3-array"; 22656 - version = "3.1.4"; 22584 + version = "3.1.5"; 22657 22585 src = fetchurl { 22658 - url = "https://registry.npmjs.org/d3-array/-/d3-array-3.1.4.tgz"; 22659 - sha512 = "H8lM97Gr9+LAR4WVHETCMt6LlWtLJVMCKsz1ojors+/PvAs2QqdLa20BuYvU11/DU+nLF0GVWL5Rv3jSgo2KmA=="; 22586 + url = "https://registry.npmjs.org/d3-array/-/d3-array-3.1.5.tgz"; 22587 + sha512 = "Rs6syGyepVjAYXWvhiFiVWUM8l4B/0p33tvlS+eXCVOaFrbz1dU7t+T16SJx/frnaLMXmFmKoXg/5aUVXxmMKQ=="; 22660 22588 }; 22661 22589 }; 22662 22590 "d3-axis-1.0.12" = { ··· 24810 24738 sha512 = "6GfzuDWU0OFAuOvBokXpXPLxjOJ5DZ157Ue3sGQQM3LgAamb8m0R0ruSfN0DDu+XG5XJgT50i6zZ/0o8RglreQ=="; 24811 24739 }; 24812 24740 }; 24813 - "dezalgo-1.0.3" = { 24741 + "dezalgo-1.0.4" = { 24814 24742 name = "dezalgo"; 24815 24743 packageName = "dezalgo"; 24816 - version = "1.0.3"; 24744 + version = "1.0.4"; 24817 24745 src = fetchurl { 24818 - url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz"; 24819 - sha1 = "7f742de066fc748bc8db820569dddce49bf0d456"; 24746 + url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz"; 24747 + sha512 = "rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig=="; 24820 24748 }; 24821 24749 }; 24822 24750 "dht-rpc-4.9.6" = { ··· 25350 25278 sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="; 25351 25279 }; 25352 25280 }; 25353 - "domelementtype-2.2.0" = { 25281 + "domelementtype-2.3.0" = { 25354 25282 name = "domelementtype"; 25355 25283 packageName = "domelementtype"; 25356 - version = "2.2.0"; 25284 + version = "2.3.0"; 25357 25285 src = fetchurl { 25358 - url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz"; 25359 - sha512 = "DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A=="; 25286 + url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz"; 25287 + sha512 = "OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="; 25360 25288 }; 25361 25289 }; 25362 25290 "domexception-1.0.1" = { ··· 25890 25818 sha512 = "nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="; 25891 25819 }; 25892 25820 }; 25893 - "ecpair-1.0.1" = { 25894 - name = "ecpair"; 25895 - packageName = "ecpair"; 25896 - version = "1.0.1"; 25897 - src = fetchurl { 25898 - url = "https://registry.npmjs.org/ecpair/-/ecpair-1.0.1.tgz"; 25899 - sha512 = "5qPa0GVZJI1FAMS+4GZBWXS/bzY7/p2ehuGuHPqvsRWe2yXDc4Bgvf89BMJz87pqcW7+ogGQkLZfwflMr/RPgQ=="; 25900 - }; 25901 - }; 25902 25821 "ecpair-2.0.1" = { 25903 25822 name = "ecpair"; 25904 25823 packageName = "ecpair"; ··· 26034 25953 sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw=="; 26035 25954 }; 26036 25955 }; 26037 - "electron-to-chromium-1.4.103" = { 25956 + "electron-to-chromium-1.4.106" = { 26038 25957 name = "electron-to-chromium"; 26039 25958 packageName = "electron-to-chromium"; 26040 - version = "1.4.103"; 25959 + version = "1.4.106"; 26041 25960 src = fetchurl { 26042 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.103.tgz"; 26043 - sha512 = "c/uKWR1Z/W30Wy/sx3dkZoj4BijbXX85QKWu9jJfjho3LBAXNEGAEW3oWiGb+dotA6C6BzCTxL2/aLes7jlUeg=="; 25961 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.106.tgz"; 25962 + sha512 = "ZYfpVLULm67K7CaaGP7DmjyeMY4naxsbTy+syVVxT6QHI1Ww8XbJjmr9fDckrhq44WzCrcC5kH3zGpdusxwwqg=="; 26044 25963 }; 26045 25964 }; 26046 25965 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 26792 26711 sha1 = "5dae3e650e5be3684b88066513d528d092629862"; 26793 26712 }; 26794 26713 }; 26795 - "es5-ext-0.10.59" = { 26714 + "es5-ext-0.10.60" = { 26796 26715 name = "es5-ext"; 26797 26716 packageName = "es5-ext"; 26798 - version = "0.10.59"; 26717 + version = "0.10.60"; 26799 26718 src = fetchurl { 26800 - url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.59.tgz"; 26801 - sha512 = "cOgyhW0tIJyQY1Kfw6Kr0viu9ZlUctVchRMZ7R0HiH3dxTSp5zJDLecwxUqPUrGKMsgBI1wd1FL+d9Jxfi4cLw=="; 26719 + url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.60.tgz"; 26720 + sha512 = "jpKNXIt60htYG59/9FGf2PYT3pwMpnEbNKysU+k/4FGwyGtMotOvcZOuW+EmXXYASRqYSXQfGL5cVIthOTgbkg=="; 26802 26721 }; 26803 26722 }; 26804 26723 "es6-error-4.1.1" = { ··· 28700 28619 sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; 28701 28620 }; 28702 28621 }; 28703 - "fast-equals-3.0.0" = { 28622 + "fast-equals-3.0.1" = { 28704 28623 name = "fast-equals"; 28705 28624 packageName = "fast-equals"; 28706 - version = "3.0.0"; 28625 + version = "3.0.1"; 28707 28626 src = fetchurl { 28708 - url = "https://registry.npmjs.org/fast-equals/-/fast-equals-3.0.0.tgz"; 28709 - sha512 = "Af7nSOpf7617idrFg0MJY6x7yVDPoO80aSwtKTC0afT8B/SsmvTpA+2a+uPLmhVF5IHmY5NPuBAA3dJrp55rJA=="; 28627 + url = "https://registry.npmjs.org/fast-equals/-/fast-equals-3.0.1.tgz"; 28628 + sha512 = "J9FxqqC9E/ja0C+SYhoG3Jl6pQuhP92HNcVC75xDEhB+GUzPnjEp3vMfPIxPprYZFfXS5hpVvvPCWUMiDSMS8Q=="; 28710 28629 }; 28711 28630 }; 28712 28631 "fast-fifo-1.1.0" = { ··· 29861 29780 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 29862 29781 }; 29863 29782 }; 29864 - "flow-parser-0.175.0" = { 29783 + "flow-parser-0.175.1" = { 29865 29784 name = "flow-parser"; 29866 29785 packageName = "flow-parser"; 29867 - version = "0.175.0"; 29786 + version = "0.175.1"; 29868 29787 src = fetchurl { 29869 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.175.0.tgz"; 29870 - sha512 = "9XG5JGOjhODF+OQF5ufCw8XiGi+8B46scjr3Q49JxN7IDRdT2W+1AOuvKKd6j766/5E7qSuCn/dsq1y3hihntg=="; 29788 + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.175.1.tgz"; 29789 + sha512 = "gYes5/nxeLYiu02MMb+WH4KaOIYrVcTVIuV9M4aP/4hqJ+zULxxS/In+WEj/tEBsQ+8/wSHo9IDWKQL1FhrLmA=="; 29871 29790 }; 29872 29791 }; 29873 29792 "fluent-ffmpeg-2.1.2" = { ··· 30149 30068 sha512 = "DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw=="; 30150 30069 }; 30151 30070 }; 30152 - "fork-ts-checker-webpack-plugin-7.2.1" = { 30071 + "fork-ts-checker-webpack-plugin-7.2.3" = { 30153 30072 name = "fork-ts-checker-webpack-plugin"; 30154 30073 packageName = "fork-ts-checker-webpack-plugin"; 30155 - version = "7.2.1"; 30074 + version = "7.2.3"; 30156 30075 src = fetchurl { 30157 - url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.1.tgz"; 30158 - sha512 = "uOfQdg/iQ8iokQ64qcbu8iZb114rOmaKLQFu7hU14/eJaKgsP91cQ7ts7v2iiDld6TzDe84Meksha8/MkWiCyw=="; 30076 + url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.3.tgz"; 30077 + sha512 = "9v308zIFTIFkWJBN/4N1A5oqm/ed9hWG6GH+KYTCBjYCEJOmHoVtDIWpfrJ0eD6cPB7V53HEVoJ6bL2In8QRaw=="; 30159 30078 }; 30160 30079 }; 30161 30080 "fork-ts-checker-webpack-plugin-v5-5.2.1" = { ··· 32040 31959 sha1 = "2edeeb958084d0f8ea7988e5d995b1c7dfc14777"; 32041 31960 }; 32042 31961 }; 32043 - "goldengate-10.4.2" = { 31962 + "goldengate-11.1.0" = { 32044 31963 name = "goldengate"; 32045 31964 packageName = "goldengate"; 32046 - version = "10.4.2"; 31965 + version = "11.1.0"; 32047 31966 src = fetchurl { 32048 - url = "https://registry.npmjs.org/goldengate/-/goldengate-10.4.2.tgz"; 32049 - sha512 = "VZ0VPPIuiSO5/ZZr/UqFP3X3Yv04/TZxIe+SO+Ceqy43ulthPZcnrWsB8hYW2gqZzOPJeVJaYaX9FmL70kYITw=="; 31967 + url = "https://registry.npmjs.org/goldengate/-/goldengate-11.1.0.tgz"; 31968 + sha512 = "nwrFxarqF2kxQXEzgcfvfqh64eokhcfyPl5i/RXGueRwUUSV7XW64A4BehcPcjKMKMxPM9RZarBTwa4vdnSZMA=="; 32050 31969 }; 32051 31970 }; 32052 - "goldengate-11.1.0" = { 31971 + "goldengate-11.1.1" = { 32053 31972 name = "goldengate"; 32054 31973 packageName = "goldengate"; 32055 - version = "11.1.0"; 31974 + version = "11.1.1"; 32056 31975 src = fetchurl { 32057 - url = "https://registry.npmjs.org/goldengate/-/goldengate-11.1.0.tgz"; 32058 - sha512 = "nwrFxarqF2kxQXEzgcfvfqh64eokhcfyPl5i/RXGueRwUUSV7XW64A4BehcPcjKMKMxPM9RZarBTwa4vdnSZMA=="; 31976 + url = "https://registry.npmjs.org/goldengate/-/goldengate-11.1.1.tgz"; 31977 + sha512 = "mxP1gmk5Bg72biHUgH7RYAQAjqX16/e5npGYPeBScspNYdwxqK87PDkZADy3p26dlOnbZN3G7tP06xzASKb7/g=="; 32059 31978 }; 32060 31979 }; 32061 31980 "gonzales-pe-4.3.0" = { ··· 33867 33786 sha1 = "c78de65b5663aa597989dd2b7ab49200d7e4db98"; 33868 33787 }; 33869 33788 }; 33870 - "html-tags-3.1.0" = { 33789 + "html-tags-3.2.0" = { 33871 33790 name = "html-tags"; 33872 33791 packageName = "html-tags"; 33873 - version = "3.1.0"; 33792 + version = "3.2.0"; 33874 33793 src = fetchurl { 33875 - url = "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz"; 33876 - sha512 = "1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg=="; 33794 + url = "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz"; 33795 + sha512 = "vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg=="; 33877 33796 }; 33878 33797 }; 33879 - "html-to-text-8.1.0" = { 33798 + "html-to-text-8.1.1" = { 33880 33799 name = "html-to-text"; 33881 33800 packageName = "html-to-text"; 33882 - version = "8.1.0"; 33801 + version = "8.1.1"; 33883 33802 src = fetchurl { 33884 - url = "https://registry.npmjs.org/html-to-text/-/html-to-text-8.1.0.tgz"; 33885 - sha512 = "Z9iYAqYK2c18GswSbnxJSeMs7lyJgwR2oIkDOyOHGBbYsPsG4HvT379jj3Lcbfko8A5ceyyMHAfkmp/BiXA9/Q=="; 33803 + url = "https://registry.npmjs.org/html-to-text/-/html-to-text-8.1.1.tgz"; 33804 + sha512 = "uHdOmIGMy0Z1tJdcJzhbUQm3+V+6Q8YmFYCr1+SxjjwlO2Ha9S/D2eq1P8NLjH5fTzJCLQTL9xCXZNuIwraipw=="; 33886 33805 }; 33887 33806 }; 33888 33807 "html-void-elements-1.0.5" = { ··· 33939 33858 sha512 = "jWTtP3dCd7R8x/tt9DK3pvpcQd7HDMcRPUqPxr/i9989q2k5RHIhmlRDFeyQ/LSd8IKrteG8Ce5g0Ig4eGIipg=="; 33940 33859 }; 33941 33860 }; 33942 - "htmlnano-2.0.1" = { 33861 + "htmlnano-2.0.2" = { 33943 33862 name = "htmlnano"; 33944 33863 packageName = "htmlnano"; 33945 - version = "2.0.1"; 33864 + version = "2.0.2"; 33946 33865 src = fetchurl { 33947 - url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.0.1.tgz"; 33948 - sha512 = "SIe/X2W5/9hmB4sFSw4HxQEMR1ERq+GXvasJQiatjKWEv6QCuvNHfPqeW8DRNtuGHOPlsfuFz0SbAStv63ZMvw=="; 33866 + url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.0.2.tgz"; 33867 + sha512 = "+ZrQFS4Ub+zd+/fWwfvoYCEGNEa0/zrpys6CyXxvZDwtL7Pl+pOtRkiujyvBQ7Lmfp7/iEPxtOFgxWA16Gkj3w=="; 33949 33868 }; 33950 33869 }; 33951 33870 "htmlparser2-3.10.1" = { ··· 34794 34713 sha512 = "rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw=="; 34795 34714 }; 34796 34715 }; 34716 + "ignore-walk-5.0.1" = { 34717 + name = "ignore-walk"; 34718 + packageName = "ignore-walk"; 34719 + version = "5.0.1"; 34720 + src = fetchurl { 34721 + url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz"; 34722 + sha512 = "yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw=="; 34723 + }; 34724 + }; 34797 34725 "image-data-uri-2.0.1" = { 34798 34726 name = "image-data-uri"; 34799 34727 packageName = "image-data-uri"; ··· 35251 35179 src = fetchurl { 35252 35180 url = "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz"; 35253 35181 sha512 = "7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA=="; 35182 + }; 35183 + }; 35184 + "ini-3.0.0" = { 35185 + name = "ini"; 35186 + packageName = "ini"; 35187 + version = "3.0.0"; 35188 + src = fetchurl { 35189 + url = "https://registry.npmjs.org/ini/-/ini-3.0.0.tgz"; 35190 + sha512 = "TxYQaeNW/N8ymDvwAxPyRbhMBtnEwuvaTYpOQkFx1nSeusgezHniEc/l35Vo4iCq/mMiTJbpD7oYxN98hFlfmw=="; 35254 35191 }; 35255 35192 }; 35256 35193 "init-package-json-2.0.5" = { ··· 35757 35694 sha512 = "CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw=="; 35758 35695 }; 35759 35696 }; 35760 - "invoices-2.0.1" = { 35697 + "invoices-2.0.4" = { 35761 35698 name = "invoices"; 35762 35699 packageName = "invoices"; 35763 - version = "2.0.1"; 35700 + version = "2.0.4"; 35764 35701 src = fetchurl { 35765 - url = "https://registry.npmjs.org/invoices/-/invoices-2.0.1.tgz"; 35766 - sha512 = "qd6Os70iotC/P09ArTWsXB3/G8MJRYMkrJQ1k2983kzdKVlROgWobKmdvrA/IFmjg0Ztg/wDkhx49dIQqT8PzQ=="; 35702 + url = "https://registry.npmjs.org/invoices/-/invoices-2.0.4.tgz"; 35703 + sha512 = "+Np4KWjNSlYm7Qp12zkRN5eu9tkA7FAFIP60bmpbMbwQbgz5gV9go3bkY8CpGj+Z1zifw5N8U+pH+wko/XSjpw=="; 35767 35704 }; 35768 35705 }; 35769 - "invoices-2.0.2" = { 35770 - name = "invoices"; 35771 - packageName = "invoices"; 35772 - version = "2.0.2"; 35773 - src = fetchurl { 35774 - url = "https://registry.npmjs.org/invoices/-/invoices-2.0.2.tgz"; 35775 - sha512 = "d1PX0ivZUw5u5kqIZ4bEajzTmKMe6EHXry4ZypsKT6SuvG4bTmn3sdCz867EhuMNZY2/Yj3/R1LXqCVTtsDPmA=="; 35776 - }; 35777 - }; 35778 - "invoices-2.0.3" = { 35779 - name = "invoices"; 35780 - packageName = "invoices"; 35781 - version = "2.0.3"; 35782 - src = fetchurl { 35783 - url = "https://registry.npmjs.org/invoices/-/invoices-2.0.3.tgz"; 35784 - sha512 = "yCAFA3CtbRIiLOdybrZhV1UQ4Rjy20dXBL/5PzlqaZjDbz+RFWtuk3BWsUF12WJo1ikSeVhFXjp6hGAGIG690g=="; 35785 - }; 35786 - }; 35787 - "invoices-2.0.4" = { 35706 + "invoices-2.0.5" = { 35788 35707 name = "invoices"; 35789 35708 packageName = "invoices"; 35790 - version = "2.0.4"; 35709 + version = "2.0.5"; 35791 35710 src = fetchurl { 35792 - url = "https://registry.npmjs.org/invoices/-/invoices-2.0.4.tgz"; 35793 - sha512 = "+Np4KWjNSlYm7Qp12zkRN5eu9tkA7FAFIP60bmpbMbwQbgz5gV9go3bkY8CpGj+Z1zifw5N8U+pH+wko/XSjpw=="; 35711 + url = "https://registry.npmjs.org/invoices/-/invoices-2.0.5.tgz"; 35712 + sha512 = "097isfZK3qaDJXQOEqTr3IfnrFZnGCAsbyqWNHAESdG12vBC39dprZWFwPLtnv7I8exhJG6WFFlaC51qaJan/w=="; 35794 35713 }; 35795 35714 }; 35796 35715 "iota-array-1.0.0" = { ··· 38494 38413 sha512 = "ZUzuO2JgnxE01tgIdZorsUZj5jiHP8uxeLDU/vsnmnAU2ZbMHFDT1cWacoAKESDnCyFF8VRCuPXHx8e5/SOXig=="; 38495 38414 }; 38496 38415 }; 38497 - "jsii-srcmak-0.1.521" = { 38416 + "jsii-srcmak-0.1.523" = { 38498 38417 name = "jsii-srcmak"; 38499 38418 packageName = "jsii-srcmak"; 38500 - version = "0.1.521"; 38419 + version = "0.1.523"; 38501 38420 src = fetchurl { 38502 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.521.tgz"; 38503 - sha512 = "cZv5C7kMUz+UZqZsZpmz+xDWZCC8VNJNRo/nO+1uuzKuBk1XRAvKOEiMI5E//tZqRuv2BXuyGIhyJOMrOpP4dg=="; 38421 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.523.tgz"; 38422 + sha512 = "b7vkOZnBcDYl/32tPn0cSPetl4znNTXP7AHDDi9rhP7rgIQx8YWDaPHZsGSpA6RgvC7aGBgHVVYLsC6qPeLJ7w=="; 38504 38423 }; 38505 38424 }; 38506 38425 "json-bigint-1.0.0" = { ··· 38791 38710 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 38792 38711 }; 38793 38712 }; 38794 - "json2csv-5.0.6" = { 38713 + "json2csv-5.0.7" = { 38795 38714 name = "json2csv"; 38796 38715 packageName = "json2csv"; 38797 - version = "5.0.6"; 38716 + version = "5.0.7"; 38798 38717 src = fetchurl { 38799 - url = "https://registry.npmjs.org/json2csv/-/json2csv-5.0.6.tgz"; 38800 - sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 38718 + url = "https://registry.npmjs.org/json2csv/-/json2csv-5.0.7.tgz"; 38719 + sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; 38801 38720 }; 38802 38721 }; 38803 - "json2jsii-0.2.181" = { 38722 + "json2jsii-0.2.183" = { 38804 38723 name = "json2jsii"; 38805 38724 packageName = "json2jsii"; 38806 - version = "0.2.181"; 38725 + version = "0.2.183"; 38807 38726 src = fetchurl { 38808 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.181.tgz"; 38809 - sha512 = "pFUtkCYepbjES8GBuxzkHXEuQyx7CE2VZp6OouvjbrFYJTx3SbbDXmyPuk/ytiD2pPBblwlpb+9VOohxBxXZsQ=="; 38727 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.183.tgz"; 38728 + sha512 = "Xd8EZ7c0JQ27mqXV4uCSwoRMUjNBnTrEkXOhrd8b0hlJoG4WmUFJRAHanPgfsiMwDJVWHMxss11euEfnYqfe7g=="; 38810 38729 }; 38811 38730 }; 38812 38731 "json3-3.2.6" = { ··· 39160 39079 sha1 = "b88f3a7b2e67a2a048152982c7a3756d9c4828f0"; 39161 39080 }; 39162 39081 }; 39163 - "jszip-3.9.0" = { 39082 + "jszip-3.9.1" = { 39164 39083 name = "jszip"; 39165 39084 packageName = "jszip"; 39166 - version = "3.9.0"; 39085 + version = "3.9.1"; 39167 39086 src = fetchurl { 39168 - url = "https://registry.npmjs.org/jszip/-/jszip-3.9.0.tgz"; 39169 - sha512 = "Vb3SMfASUN1EKrFzv5A5+lTaZnzLzT5E6A9zyT7WFqMSfhT2Z7iS5FgSOjx2Olm3MDj8OqKj6GHyP2kMt1Ir6w=="; 39087 + url = "https://registry.npmjs.org/jszip/-/jszip-3.9.1.tgz"; 39088 + sha512 = "H9A60xPqJ1CuC4Ka6qxzXZeU8aNmgOeP5IFqwJbQQwtu2EUYxota3LdsiZWplF7Wgd9tkAd0mdu36nceSaPuYw=="; 39170 39089 }; 39171 39090 }; 39172 39091 "junk-3.1.0" = { ··· 39475 39394 sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 39476 39395 }; 39477 39396 }; 39478 - "keyv-4.2.1" = { 39397 + "keyv-4.2.2" = { 39479 39398 name = "keyv"; 39480 39399 packageName = "keyv"; 39481 - version = "4.2.1"; 39400 + version = "4.2.2"; 39482 39401 src = fetchurl { 39483 - url = "https://registry.npmjs.org/keyv/-/keyv-4.2.1.tgz"; 39484 - sha512 = "cAJq5cTfxQdq1DHZEVNpnk4mEvhP+8UP8UQftLtTtJ98beKkRHf+62M0mIDM2u/IWXyP8bmGB375/6uGdSX2MA=="; 39402 + url = "https://registry.npmjs.org/keyv/-/keyv-4.2.2.tgz"; 39403 + sha512 = "uYS0vKTlBIjNCAUqrjlxmruxOEiZxZIHXyp32sdcGmP+ukFrmWUnE//RcPXJH3Vxrni1H2gsQbjHE0bH7MtMQQ=="; 39485 39404 }; 39486 39405 }; 39487 39406 "khroma-1.4.1" = { ··· 40339 40258 sha512 = "BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA=="; 40340 40259 }; 40341 40260 }; 40342 - "lightning-4.14.3" = { 40261 + "lightning-5.10.1" = { 40343 40262 name = "lightning"; 40344 40263 packageName = "lightning"; 40345 - version = "4.14.3"; 40264 + version = "5.10.1"; 40346 40265 src = fetchurl { 40347 - url = "https://registry.npmjs.org/lightning/-/lightning-4.14.3.tgz"; 40348 - sha512 = "5i0XgY+PSaGmMQTuVdtnzDg0LiTp1krfH4seefFLJNFb6Hunxic00D/roybGgd9hlbqeGmGYXZ+YQpATKQtblA=="; 40349 - }; 40350 - }; 40351 - "lightning-5.6.2" = { 40352 - name = "lightning"; 40353 - packageName = "lightning"; 40354 - version = "5.6.2"; 40355 - src = fetchurl { 40356 - url = "https://registry.npmjs.org/lightning/-/lightning-5.6.2.tgz"; 40357 - sha512 = "1Bfrq+FK4/yuBStMzmiFnAG//YewN9Fznm2qn86z87/u6UcWqdpWvBCRS5njtq5bG6eWgxM4DOfaw9LptyXSog=="; 40266 + url = "https://registry.npmjs.org/lightning/-/lightning-5.10.1.tgz"; 40267 + sha512 = "dIrN4vPzmzq9DaMD6c+9DqQwJCMl1lOleWrhIrv+HIpzq6rdNJvUXaVJOFz1OV8P3zy2Q3+s9VxnzeN70ee+ow=="; 40358 40268 }; 40359 40269 }; 40360 40270 "lightning-5.8.2" = { ··· 40375 40285 sha512 = "qiKxXH81vfxJdR1TbY095IKjD7kwbiWbdGcGHs1GMaAxxcGo/iqf5F+VDWHwGjSlPMohMI827vN0JHqZQKcojA=="; 40376 40286 }; 40377 40287 }; 40288 + "lightning-5.9.0" = { 40289 + name = "lightning"; 40290 + packageName = "lightning"; 40291 + version = "5.9.0"; 40292 + src = fetchurl { 40293 + url = "https://registry.npmjs.org/lightning/-/lightning-5.9.0.tgz"; 40294 + sha512 = "o084Z7QAUaxR7+nLgr+DlL2XiMJGHDq/SRhKcanP10qR0irTK1oSHDyaFmrwz33y5V/d6Tla+5yjdD217LMWAA=="; 40295 + }; 40296 + }; 40378 40297 "lilconfig-2.0.5" = { 40379 40298 name = "lilconfig"; 40380 40299 packageName = "lilconfig"; ··· 40573 40492 sha512 = "UmQV0oZZcV3EN6rjcAjIiuWcc3MYZGWQ0GUYz46Ron5fuTa/dUow7WSQa6leFkvZIKVUdECBWVw96tckfEzUFQ=="; 40574 40493 }; 40575 40494 }; 40576 - "ln-accounting-5.0.5" = { 40495 + "ln-accounting-5.0.6" = { 40577 40496 name = "ln-accounting"; 40578 40497 packageName = "ln-accounting"; 40579 - version = "5.0.5"; 40498 + version = "5.0.6"; 40580 40499 src = fetchurl { 40581 - url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.5.tgz"; 40582 - sha512 = "WPAdlGE9byTrL79U4PrSV19fbOCmvWlRlGydt52qPy6CSrY1xkGe2s736ge3tjwNmcFDf4XSrxq7xn/oyF658w=="; 40500 + url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.6.tgz"; 40501 + sha512 = "ep+JDvgqQTINsUskIAlLgXE2mVsR01Atl0kFbd5D41RjCvr6tnTGocKG5CSxmp5USIpQnY2Jan1VQkXjrLukBg=="; 40583 40502 }; 40584 40503 }; 40585 - "ln-service-52.16.0" = { 40504 + "ln-service-53.10.0" = { 40586 40505 name = "ln-service"; 40587 40506 packageName = "ln-service"; 40588 - version = "52.16.0"; 40507 + version = "53.10.0"; 40589 40508 src = fetchurl { 40590 - url = "https://registry.npmjs.org/ln-service/-/ln-service-52.16.0.tgz"; 40591 - sha512 = "20ZIPPyGI4odh/Jxq6Lawtc+Zx7MkPuxnn34TuhZpM6ppwVbSGJSuJPctLrhZvWdaYYeboz3BITiqI/o4KvChQ=="; 40509 + url = "https://registry.npmjs.org/ln-service/-/ln-service-53.10.0.tgz"; 40510 + sha512 = "YXpywZVf/oSWiuntp5v6IRPYNCCMlsGkWkFsX4eygnXqZnKDOaBSgvBHYJ871C0SJuyQD4oN0wazTYD+PhQUGA=="; 40592 40511 }; 40593 40512 }; 40594 - "ln-service-53.7.3" = { 40513 + "ln-service-53.11.0" = { 40595 40514 name = "ln-service"; 40596 40515 packageName = "ln-service"; 40597 - version = "53.7.3"; 40516 + version = "53.11.0"; 40598 40517 src = fetchurl { 40599 - url = "https://registry.npmjs.org/ln-service/-/ln-service-53.7.3.tgz"; 40600 - sha512 = "iA+G0yn3j74BcGdKxhHRCDphMSgGg4NWzFNy9r484WPBjq6KQgCRcxE0I8A0Rgi73kqMckKZmYEKrJMUuJyNYw=="; 40518 + url = "https://registry.npmjs.org/ln-service/-/ln-service-53.11.0.tgz"; 40519 + sha512 = "qdsgLRFGdn8+zfSDgbGw584fS2QQromxp4VRXzj9nk3qveTD6IwBjaEhC1xtY73MQCHQ3ALkWVn3aYMoy5erFw=="; 40601 40520 }; 40602 40521 }; 40603 40522 "ln-service-53.9.3" = { ··· 40627 40546 sha512 = "YqtS0v6zsDvv7rA51bSbXnB7Il4HQida+FpPD9KTAXdEiJW1L/NiyV4B+oosaygdUbT2oYgM3xw++L7XVBkPvA=="; 40628 40547 }; 40629 40548 }; 40630 - "ln-telegram-3.21.0" = { 40549 + "ln-sync-3.11.1" = { 40550 + name = "ln-sync"; 40551 + packageName = "ln-sync"; 40552 + version = "3.11.1"; 40553 + src = fetchurl { 40554 + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.11.1.tgz"; 40555 + sha512 = "KTMnSjKN5g4fE3M+axLWLJO6DGyzZ/UroKaV4fNxjqvKJrBY9XpXhHqJCAbzzJiN4Ff3CjoSUCjiDqJdDe1A4w=="; 40556 + }; 40557 + }; 40558 + "ln-sync-3.12.0" = { 40559 + name = "ln-sync"; 40560 + packageName = "ln-sync"; 40561 + version = "3.12.0"; 40562 + src = fetchurl { 40563 + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.12.0.tgz"; 40564 + sha512 = "+TFRyMVvUU9jAqRGPiawPY8cGSmfd2bKfofGsH95zTlQ4DeQLYyEPFxzqJZrkmddqdohfuF0XVW9y7+4v4eq5A=="; 40565 + }; 40566 + }; 40567 + "ln-telegram-3.21.1" = { 40631 40568 name = "ln-telegram"; 40632 40569 packageName = "ln-telegram"; 40633 - version = "3.21.0"; 40570 + version = "3.21.1"; 40634 40571 src = fetchurl { 40635 - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.21.0.tgz"; 40636 - sha512 = "a1MvI5yMUStDZ7tOnPeh3nz6yftIESRw/R79oeh2eSvYbS6AGel35pKJ5E+aXVWuQR+0jeA3uGKKBBI1LGc9mw=="; 40572 + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.21.1.tgz"; 40573 + sha512 = "xvTNSaM8fG/jnORTPnpU6+righKsqaYNyS1NR4NseqnS3fM5vshsCb+do5mY1R3BNh8Fp6CDT+agakF7hVlFDg=="; 40637 40574 }; 40638 40575 }; 40639 40576 "load-bmfont-1.4.1" = { ··· 42553 42490 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 42554 42491 }; 42555 42492 }; 42556 - "lru-cache-7.7.3" = { 42493 + "lru-cache-7.8.0" = { 42557 42494 name = "lru-cache"; 42558 42495 packageName = "lru-cache"; 42559 - version = "7.7.3"; 42496 + version = "7.8.0"; 42560 42497 src = fetchurl { 42561 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.7.3.tgz"; 42562 - sha512 = "WY9wjJNQt9+PZilnLbuFKM+SwDull9+6IAguOrarOMoOHTcJ9GnXSO11+Gw6c7xtDkBkthR57OZMtZKYr+1CEw=="; 42498 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.8.0.tgz"; 42499 + sha512 = "AmXqneQZL3KZMIgBpaPTeI6pfwh+xQ2vutMsyqOu1TBdEXFZgpG/80wuJ531w2ZN7TI0/oc8CPxzh/DKQudZqg=="; 42563 42500 }; 42564 42501 }; 42565 42502 "lru-queue-0.1.0" = { ··· 42824 42761 sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="; 42825 42762 }; 42826 42763 }; 42827 - "make-fetch-happen-10.1.1" = { 42828 - name = "make-fetch-happen"; 42829 - packageName = "make-fetch-happen"; 42830 - version = "10.1.1"; 42831 - src = fetchurl { 42832 - url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.1.1.tgz"; 42833 - sha512 = "3/mCljDQNjmrP7kl0vhS5WVlV+TvSKoZaFhdiYV7MOijEnrhrjaVnqbp/EY/7S+fhUB2KpH7j8c1iRsIOs+kjw=="; 42834 - }; 42835 - }; 42836 42764 "make-fetch-happen-10.1.2" = { 42837 42765 name = "make-fetch-happen"; 42838 42766 packageName = "make-fetch-happen"; ··· 45866 45794 sha512 = "JG0V47xRIQ9pyUnx6Hb4+3TrQoia2nA3UIdmyTldhxaxtKFkekkKpUW/N6fwHwod9o4BGuJGtouxOk+yCP5PEA=="; 45867 45795 }; 45868 45796 }; 45869 - "msgpackr-extract-1.1.0" = { 45797 + "msgpackr-extract-1.1.3" = { 45870 45798 name = "msgpackr-extract"; 45871 45799 packageName = "msgpackr-extract"; 45872 - version = "1.1.0"; 45800 + version = "1.1.3"; 45873 45801 src = fetchurl { 45874 - url = "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-1.1.0.tgz"; 45875 - sha512 = "9QxKc4KYr7bNV0/2JPDbRIxCgMEYhDiZtOszvA+eH8Rx8IOOSv3bzP95RoxREwgekdXej+/GhA2Y6paSNBYsgA=="; 45802 + url = "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-1.1.3.tgz"; 45803 + sha512 = "eFFRviOsqjfr6tOBwuccUdTaTPWn3Rb/Kf5zjoz5IZJMpQD4ZeLecDcRzuze+jzlqQ2cJo1gyuV8dCFEojWkjg=="; 45876 45804 }; 45877 45805 }; 45878 45806 "msgpackr-extract-darwin-arm64-1.1.0" = { ··· 46757 46685 sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="; 46758 46686 }; 46759 46687 }; 46760 - "needle-3.0.0" = { 46688 + "needle-3.1.0" = { 46761 46689 name = "needle"; 46762 46690 packageName = "needle"; 46763 - version = "3.0.0"; 46691 + version = "3.1.0"; 46764 46692 src = fetchurl { 46765 - url = "https://registry.npmjs.org/needle/-/needle-3.0.0.tgz"; 46766 - sha512 = "eGr0qnfHxAjr+Eptl1zr2lgUQUPC1SZfTkg2kFi0kxr1ChJonHUVYobkug8siBKMlyUVVp56MSkp6CSeXH/jgw=="; 46693 + url = "https://registry.npmjs.org/needle/-/needle-3.1.0.tgz"; 46694 + sha512 = "gCE9weDhjVGCRqS8dwDR/D3GTAeyXLXuqp7I8EzH6DllZGXSUyxuqqLh+YX9rMAWaaTFyVAg6rHGL25dqvczKw=="; 46767 46695 }; 46768 46696 }; 46769 46697 "negotiator-0.3.0" = { ··· 47433 47361 sha512 = "amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ=="; 47434 47362 }; 47435 47363 }; 47436 - "node-gyp-build-git://github.com/kriszyp/node-gyp-build#optional-packages" = { 47437 - name = "node-gyp-build"; 47438 - packageName = "node-gyp-build"; 47439 - version = "4.3.0"; 47440 - src = fetchgit { 47441 - url = "git://github.com/kriszyp/node-gyp-build"; 47442 - rev = "c9952cb77e89d2cd8b6c2d4d056a06d41834b305"; 47443 - sha256 = "c94d85ea73a0770f4e6c6af7967d19ddf09dd721fb0d6d097a0124e976df6487"; 47364 + "node-gyp-build-optional-packages-4.3.1" = { 47365 + name = "node-gyp-build-optional-packages"; 47366 + packageName = "node-gyp-build-optional-packages"; 47367 + version = "4.3.1"; 47368 + src = fetchurl { 47369 + url = "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-4.3.1.tgz"; 47370 + sha512 = "pxljizahvoXKVtlo+D+YOcHYG2931/aBdNoqfynHDNwWRIe94CgkIUZfeOOFaHY+hl5lYkyI9RzGfr/gWxlR4Q=="; 47444 47371 }; 47445 47372 }; 47446 47373 "node-hid-2.1.1" = { ··· 48199 48126 sha512 = "L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ=="; 48200 48127 }; 48201 48128 }; 48202 - "npm-packlist-4.0.0" = { 48129 + "npm-packlist-5.0.0" = { 48203 48130 name = "npm-packlist"; 48204 48131 packageName = "npm-packlist"; 48205 - version = "4.0.0"; 48132 + version = "5.0.0"; 48206 48133 src = fetchurl { 48207 - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-4.0.0.tgz"; 48208 - sha512 = "gL6XC/iw9YSmqArmZOGSkyy+yIZf2f7uH0p4Vmxef/irn73vd9/rDkCtvm+a9rh/QK2xGYfCAMOghM06ymzC0A=="; 48134 + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.0.0.tgz"; 48135 + sha512 = "uU20UwM4Hogfab1Q7htJbhcyafM9lGHxOrDjkKvR2S3z7Ds0uRaESk0cXctczk+ABT4DZWNwjB10xlurFdEwZg=="; 48209 48136 }; 48210 48137 }; 48211 48138 "npm-pick-manifest-6.1.1" = { ··· 50324 50251 sha512 = "LdnkVwu808S7ngeKpUjJZDWXsWXqMLYtTGE2pXtKjpIs5Nn2qL6d84Sh+/gxyeJHtTz0qmOEuYnFfn61/TuU0A=="; 50325 50252 }; 50326 50253 }; 50254 + "p2tr-1.3.1" = { 50255 + name = "p2tr"; 50256 + packageName = "p2tr"; 50257 + version = "1.3.1"; 50258 + src = fetchurl { 50259 + url = "https://registry.npmjs.org/p2tr/-/p2tr-1.3.1.tgz"; 50260 + sha512 = "gwfolcu1fmuXy2muugnXub05PuwMYzvQH1rcksd5HRCY+QS7WgJCs+01kWoqioKXuXWPMqy3HEU/hfH0Cvf3cQ=="; 50261 + }; 50262 + }; 50327 50263 "pac-proxy-agent-4.1.0" = { 50328 50264 name = "pac-proxy-agent"; 50329 50265 packageName = "pac-proxy-agent"; ··· 50468 50404 sha512 = "CdYEl03JDrRO3x18uHjBYA9TyoW8gy+ThVcypcDkxPtKlw76e4ejhYB6i9lJ+/cebbjpqPW/CijjqxwDTts8Ow=="; 50469 50405 }; 50470 50406 }; 50471 - "pacote-13.0.5" = { 50407 + "pacote-13.1.1" = { 50472 50408 name = "pacote"; 50473 50409 packageName = "pacote"; 50474 - version = "13.0.5"; 50410 + version = "13.1.1"; 50475 50411 src = fetchurl { 50476 - url = "https://registry.npmjs.org/pacote/-/pacote-13.0.5.tgz"; 50477 - sha512 = "6CYfot3/rUAn3qqzF2d/jrrXm5HlBtvaSgfmg0VtOUAdJ8fbSq21BJwftMGArkL71yXHIbUJ7Bt5B04547HELA=="; 50412 + url = "https://registry.npmjs.org/pacote/-/pacote-13.1.1.tgz"; 50413 + sha512 = "MTT3k1OhUo+IpvoHGp25OwsRU0L+kJQM236OCywxvY4OIJ/YfloNW2/Yc3HMASH10BkfZaGMVK/pxybB7fWcLw=="; 50478 50414 }; 50479 50415 }; 50480 50416 "pad-0.0.5" = { ··· 50493 50429 src = fetchurl { 50494 50430 url = "https://registry.npmjs.org/pad-component/-/pad-component-0.0.1.tgz"; 50495 50431 sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac"; 50496 - }; 50497 - }; 50498 - "paid-services-3.14.4" = { 50499 - name = "paid-services"; 50500 - packageName = "paid-services"; 50501 - version = "3.14.4"; 50502 - src = fetchurl { 50503 - url = "https://registry.npmjs.org/paid-services/-/paid-services-3.14.4.tgz"; 50504 - sha512 = "DLmutrDtOoxgcaiyZcdzD6nIVFwMwnkcriJhZEvVNeyzXlB+aNySn5MpB4YPlDtxKuSd6use+JZxQ5RzifcJ4g=="; 50505 50432 }; 50506 50433 }; 50507 50434 "paid-services-3.14.5" = { ··· 52250 52177 sha512 = "2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg=="; 52251 52178 }; 52252 52179 }; 52253 - "polished-4.2.1" = { 52180 + "polished-4.2.2" = { 52254 52181 name = "polished"; 52255 52182 packageName = "polished"; 52256 - version = "4.2.1"; 52183 + version = "4.2.2"; 52257 52184 src = fetchurl { 52258 - url = "https://registry.npmjs.org/polished/-/polished-4.2.1.tgz"; 52259 - sha512 = "vRkUnHBwVX7kIeCzCghcLCWoDenV+sV7lkItnmTc7bb6Uzbe8ogU1FxqEW8+dXCxUX8YW8vusQ0HTk2yES7bfQ=="; 52185 + url = "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz"; 52186 + sha512 = "Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ=="; 52260 52187 }; 52261 52188 }; 52262 52189 "polyraf-1.1.0" = { ··· 53583 53510 sha512 = "99PZ5+RU4gqiTfK5ZDMDkZtn6eL4WlKfFyVJV7lFQvH3iGmQ85DqMTOdxorERO26LHkevR2qsxnHp0x/2UDJPA=="; 53584 53511 }; 53585 53512 }; 53586 - "probing-2.0.3" = { 53513 + "probing-2.0.5" = { 53587 53514 name = "probing"; 53588 53515 packageName = "probing"; 53589 - version = "2.0.3"; 53516 + version = "2.0.5"; 53590 53517 src = fetchurl { 53591 - url = "https://registry.npmjs.org/probing/-/probing-2.0.3.tgz"; 53592 - sha512 = "6PuKCNitH3pjTjHndVtSkb300EQCiYPKJCxfDHlu9uwEcjDc7Fipee8U9fTm5W8frVCB7Vo4V4dlwGL9WVL2OQ=="; 53518 + url = "https://registry.npmjs.org/probing/-/probing-2.0.5.tgz"; 53519 + sha512 = "vlE0H17RSL3WkZVYtCyoMivLKmtp5ZMwMaSMvCiwE894iPAfNS4p4dgHk2My0tqhfRsHLebgn2p5Tq39Ik2Llw=="; 53593 53520 }; 53594 53521 }; 53595 53522 "proc-log-1.0.0" = { ··· 54195 54122 sha512 = "0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA=="; 54196 54123 }; 54197 54124 }; 54198 - "psbt-1.1.10" = { 54125 + "psbt-2.0.0" = { 54199 54126 name = "psbt"; 54200 54127 packageName = "psbt"; 54201 - version = "1.1.10"; 54128 + version = "2.0.0"; 54202 54129 src = fetchurl { 54203 - url = "https://registry.npmjs.org/psbt/-/psbt-1.1.10.tgz"; 54204 - sha512 = "LLyJcNVKRK8AUXKcpCrZA21+mlrjzlzTLQZp/Yu279hqqQrakAu9IusT7zEddhhkQrzm6UQ9cER3nhrIZqh0hw=="; 54130 + url = "https://registry.npmjs.org/psbt/-/psbt-2.0.0.tgz"; 54131 + sha512 = "V3RueLeXhP/WZETCtUxFn9aaEjHKdJIp2jir1rgK3iU0fV4hC0f45wDRDrrtcFHIUyvudgzhg6Bcgr8cGaWXlA=="; 54205 54132 }; 54206 54133 }; 54207 - "psbt-2.0.0" = { 54134 + "psbt-2.0.1" = { 54208 54135 name = "psbt"; 54209 54136 packageName = "psbt"; 54210 - version = "2.0.0"; 54137 + version = "2.0.1"; 54211 54138 src = fetchurl { 54212 - url = "https://registry.npmjs.org/psbt/-/psbt-2.0.0.tgz"; 54213 - sha512 = "V3RueLeXhP/WZETCtUxFn9aaEjHKdJIp2jir1rgK3iU0fV4hC0f45wDRDrrtcFHIUyvudgzhg6Bcgr8cGaWXlA=="; 54139 + url = "https://registry.npmjs.org/psbt/-/psbt-2.0.1.tgz"; 54140 + sha512 = "4s5DSXDJ9xAYjuRJXf8rEuqs+Leyl11TE3y98xzlhMJN2UYXSLkAW1KSUdm/gdu1cSTcdcicIFZscNXmxFko+w=="; 54214 54141 }; 54215 54142 }; 54216 54143 "pseudomap-1.0.2" = { ··· 57030 56957 sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 57031 56958 }; 57032 56959 }; 57033 - "regenerator-transform-0.14.5" = { 56960 + "regenerator-transform-0.15.0" = { 57034 56961 name = "regenerator-transform"; 57035 56962 packageName = "regenerator-transform"; 57036 - version = "0.14.5"; 56963 + version = "0.15.0"; 57037 56964 src = fetchurl { 57038 - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz"; 57039 - sha512 = "eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw=="; 56965 + url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz"; 56966 + sha512 = "LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg=="; 57040 56967 }; 57041 56968 }; 57042 56969 "regex-cache-0.4.4" = { ··· 59541 59468 sha512 = "zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA=="; 59542 59469 }; 59543 59470 }; 59544 - "sass-1.49.11" = { 59471 + "sass-1.50.0" = { 59545 59472 name = "sass"; 59546 59473 packageName = "sass"; 59547 - version = "1.49.11"; 59474 + version = "1.50.0"; 59548 59475 src = fetchurl { 59549 - url = "https://registry.npmjs.org/sass/-/sass-1.49.11.tgz"; 59550 - sha512 = "wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ=="; 59476 + url = "https://registry.npmjs.org/sass/-/sass-1.50.0.tgz"; 59477 + sha512 = "cLsD6MEZ5URXHStxApajEh7gW189kkjn4Rc8DQweMyF+o5HF5nfEz8QYLMlPsTOD88DknatTmBWkOcw5/LnJLQ=="; 59551 59478 }; 59552 59479 }; 59553 59480 "sass-loader-10.2.0" = { ··· 59701 59628 src = fetchurl { 59702 59629 url = "https://registry.npmjs.org/sdp/-/sdp-2.12.0.tgz"; 59703 59630 sha512 = "jhXqQAQVM+8Xj5EjJGVweuEzgtGWb3tmEEpl3CLP3cStInSbVHSg0QWOGQzNq8pSID4JkpeV2mPqlMDLrm0/Vw=="; 59704 - }; 59705 - }; 59706 - "secp256k1-4.0.2" = { 59707 - name = "secp256k1"; 59708 - packageName = "secp256k1"; 59709 - version = "4.0.2"; 59710 - src = fetchurl { 59711 - url = "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.2.tgz"; 59712 - sha512 = "UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg=="; 59713 59631 }; 59714 59632 }; 59715 59633 "secp256k1-4.0.3" = { ··· 59971 59889 src = fetchurl { 59972 59890 url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 59973 59891 sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 59892 + }; 59893 + }; 59894 + "semver-7.3.6" = { 59895 + name = "semver"; 59896 + packageName = "semver"; 59897 + version = "7.3.6"; 59898 + src = fetchurl { 59899 + url = "https://registry.npmjs.org/semver/-/semver-7.3.6.tgz"; 59900 + sha512 = "HZWqcgwLsjaX1HBD31msI/rXktuIhS+lWvdE4kN9z+8IVT4Itc7vqU2WvYsyD6/sjYCt4dEKH/m1M3dwI9CC5w=="; 59974 59901 }; 59975 59902 }; 59976 59903 "semver-compare-1.0.0" = { ··· 61710 61637 sha512 = "zlOmAKFLJzTI+MbvmkWhnOOJ++NYo0Iy7F93ARNPmvZvpWG2l8Ff3uwM3CkpHqRw8v3pcRROScM5E+vbeTeOKw=="; 61711 61638 }; 61712 61639 }; 61713 - "sonic-boom-2.6.0" = { 61640 + "sonic-boom-2.7.0" = { 61714 61641 name = "sonic-boom"; 61715 61642 packageName = "sonic-boom"; 61716 - version = "2.6.0"; 61643 + version = "2.7.0"; 61717 61644 src = fetchurl { 61718 - url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.6.0.tgz"; 61719 - sha512 = "6xYZFRmDEtxGqfOKcDQ4cPLrNa0SPEDI+wlzDAHowXE6YV42NeXqg9mP2KkiM8JVu3lHfZ2iQKYlGOz+kTpphg=="; 61645 + url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.7.0.tgz"; 61646 + sha512 = "Ynxp0OGQG91wvDjCbFlRMHbSUmDq7dE/EgDeUJ/j+Q9x1FVkFry20cjLykxRSmlm3QS0B4JYAKE8239XKN4SHQ=="; 61720 61647 }; 61721 61648 }; 61722 61649 "sorcery-0.10.0" = { ··· 62844 62771 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 62845 62772 }; 62846 62773 }; 62847 - "sscaff-1.2.248" = { 62774 + "sscaff-1.2.250" = { 62848 62775 name = "sscaff"; 62849 62776 packageName = "sscaff"; 62850 - version = "1.2.248"; 62777 + version = "1.2.250"; 62851 62778 src = fetchurl { 62852 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.248.tgz"; 62853 - sha512 = "rHpwuR6VXLYvHowk/AZTNbTbhnxQ20+G6izyrdCXH7qxIcU05sbo328b8WdglFi3ncm6FF9Rn2PmGEc2HGaY/Q=="; 62779 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.250.tgz"; 62780 + sha512 = "J9asMSddhWmXhjcpm6THvrOgWliXPKmjr6Yzpto64cNPrQOI0RYd8pVTuQNg5bZPDM1/4XM4ywzFcBM7vjeilw=="; 62854 62781 }; 62855 62782 }; 62856 62783 "ssh-config-1.1.6" = { ··· 64401 64328 sha1 = "3a26ab96e06f78cf4ace8d083f6227fa55970947"; 64402 64329 }; 64403 64330 }; 64404 - "sucrase-3.20.3" = { 64331 + "sucrase-3.21.0" = { 64405 64332 name = "sucrase"; 64406 64333 packageName = "sucrase"; 64407 - version = "3.20.3"; 64334 + version = "3.21.0"; 64408 64335 src = fetchurl { 64409 - url = "https://registry.npmjs.org/sucrase/-/sucrase-3.20.3.tgz"; 64410 - sha512 = "azqwq0/Bs6RzLAdb4dXxsCgMtAaD2hzmUr4UhSfsxO46JFPAwMnnb441B/qsudZiS6Ylea3JXZe3Q497lsgXzQ=="; 64336 + url = "https://registry.npmjs.org/sucrase/-/sucrase-3.21.0.tgz"; 64337 + sha512 = "FjAhMJjDcifARI7bZej0Bi1yekjWQHoEvWIXhLPwDhC6O4iZ5PtGb86WV56riW87hzpgB13wwBKO9vKAiWu5VQ=="; 64411 64338 }; 64412 64339 }; 64413 64340 "sudo-block-1.2.0" = { ··· 64500 64427 sha512 = "DnarpKN6Xn8e3pYlFV4Yvsj9yxLY4q5FIsUe5JvN7vjzP+YCfzXv03dTkZSD2yzrSadsNYHf0IgOUJwKjX457A=="; 64501 64428 }; 64502 64429 }; 64503 - "supercluster-7.1.4" = { 64430 + "supercluster-7.1.5" = { 64504 64431 name = "supercluster"; 64505 64432 packageName = "supercluster"; 64506 - version = "7.1.4"; 64433 + version = "7.1.5"; 64507 64434 src = fetchurl { 64508 - url = "https://registry.npmjs.org/supercluster/-/supercluster-7.1.4.tgz"; 64509 - sha512 = "GhKkRM1jMR6WUwGPw05fs66pOFWhf59lXq+Q3J3SxPvhNcmgOtLRV6aVQPMRsmXdpaeFJGivt+t7QXUPL3ff4g=="; 64435 + url = "https://registry.npmjs.org/supercluster/-/supercluster-7.1.5.tgz"; 64436 + sha512 = "EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg=="; 64510 64437 }; 64511 64438 }; 64512 64439 "superstatic-7.1.0" = { ··· 64671 64598 sha512 = "VKXPRScCzAZqeBZOGq4LLwtNrAu++mVn7XvQox3eFDV7Ciq0Lg70Q8QWjH9iXF7J+pMlXhPsSFwpCb2E+hoeyA=="; 64672 64599 }; 64673 64600 }; 64674 - "svelte2tsx-0.5.6" = { 64601 + "svelte2tsx-0.5.7" = { 64675 64602 name = "svelte2tsx"; 64676 64603 packageName = "svelte2tsx"; 64677 - version = "0.5.6"; 64604 + version = "0.5.7"; 64678 64605 src = fetchurl { 64679 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.6.tgz"; 64680 - sha512 = "B4WZUtoTdVD+F73H1RQEH3Hrv7m2/ahThmAUkjT5CTWRigQaJqYQpSjisCH1Pzfi9B37YikDnAi4u4uxwYM+iw=="; 64606 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.7.tgz"; 64607 + sha512 = "rekPWR5at7DNvIlJRSCyKFZ6Go/KyqjDRL/zRWQSNMbvTIocsm/gDtSbLz64ZP5Qz3tUeod7QzDqX13lF60kCg=="; 64681 64608 }; 64682 64609 }; 64683 64610 "sver-compat-1.5.0" = { ··· 67039 66966 sha1 = "5f4278e701800967a8fc383fd19648878f2a6e3a"; 67040 66967 }; 67041 66968 }; 67042 - "tsconfig-paths-3.14.0" = { 66969 + "tsconfig-paths-3.14.1" = { 67043 66970 name = "tsconfig-paths"; 67044 66971 packageName = "tsconfig-paths"; 67045 - version = "3.14.0"; 66972 + version = "3.14.1"; 67046 66973 src = fetchurl { 67047 - url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.0.tgz"; 67048 - sha512 = "cg/1jAZoL57R39+wiw4u/SCC6Ic9Q5NqjBOb+9xISedOYurfog9ZNmKJSxAnb2m/5Bq4lE9lhUcau33Ml8DM0g=="; 66974 + url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz"; 66975 + sha512 = "fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ=="; 67049 66976 }; 67050 66977 }; 67051 66978 "tsconfig-paths-webpack-plugin-3.5.2" = { ··· 67523 67450 src = fetchurl { 67524 67451 url = "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz"; 67525 67452 sha512 = "yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA=="; 67526 - }; 67527 - }; 67528 - "type-fest-2.11.1" = { 67529 - name = "type-fest"; 67530 - packageName = "type-fest"; 67531 - version = "2.11.1"; 67532 - src = fetchurl { 67533 - url = "https://registry.npmjs.org/type-fest/-/type-fest-2.11.1.tgz"; 67534 - sha512 = "fPcV5KLAqFfmhHobtAUwEpbpfYhVF7wSLVgbG/7mIGe/Pete7ky/bPAPRkzbWdrj0/EkswFAAR2feJCgigkUKg=="; 67535 67453 }; 67536 67454 }; 67537 67455 "type-fest-2.12.0" = { ··· 71846 71764 sha512 = "EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA=="; 71847 71765 }; 71848 71766 }; 71767 + "web-streams-polyfill-3.2.1" = { 71768 + name = "web-streams-polyfill"; 71769 + packageName = "web-streams-polyfill"; 71770 + version = "3.2.1"; 71771 + src = fetchurl { 71772 + url = "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz"; 71773 + sha512 = "e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q=="; 71774 + }; 71775 + }; 71849 71776 "web-streams-polyfill-4.0.0-beta.1" = { 71850 71777 name = "web-streams-polyfill"; 71851 71778 packageName = "web-streams-polyfill"; ··· 71981 71908 sha512 = "6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q=="; 71982 71909 }; 71983 71910 }; 71984 - "webpack-5.70.0" = { 71911 + "webpack-5.71.0" = { 71985 71912 name = "webpack"; 71986 71913 packageName = "webpack"; 71987 - version = "5.70.0"; 71914 + version = "5.71.0"; 71988 71915 src = fetchurl { 71989 - url = "https://registry.npmjs.org/webpack/-/webpack-5.70.0.tgz"; 71990 - sha512 = "ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw=="; 71916 + url = "https://registry.npmjs.org/webpack/-/webpack-5.71.0.tgz"; 71917 + sha512 = "g4dFT7CFG8LY0iU5G8nBL6VlkT21Z7dcYDpJAEJV5Q1WLb9UwnFbrem1k7K52ILqEmomN7pnzWFxxE6SlDY56A=="; 71991 71918 }; 71992 71919 }; 71993 - "webpack-5.71.0" = { 71920 + "webpack-5.72.0" = { 71994 71921 name = "webpack"; 71995 71922 packageName = "webpack"; 71996 - version = "5.71.0"; 71923 + version = "5.72.0"; 71997 71924 src = fetchurl { 71998 - url = "https://registry.npmjs.org/webpack/-/webpack-5.71.0.tgz"; 71999 - sha512 = "g4dFT7CFG8LY0iU5G8nBL6VlkT21Z7dcYDpJAEJV5Q1WLb9UwnFbrem1k7K52ILqEmomN7pnzWFxxE6SlDY56A=="; 71925 + url = "https://registry.npmjs.org/webpack/-/webpack-5.72.0.tgz"; 71926 + sha512 = "qmSmbspI0Qo5ld49htys8GY9XhS9CGqFoHTsOVAnjBdg0Zn79y135R+k4IR4rKK6+eKaabMhJwiVB7xw0SJu5w=="; 72000 71927 }; 72001 71928 }; 72002 71929 "webpack-bundle-analyzer-3.9.0" = { ··· 73131 73058 src = fetchurl { 73132 73059 url = "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz"; 73133 73060 sha512 = "wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA=="; 73134 - }; 73135 - }; 73136 - "ws-8.4.2" = { 73137 - name = "ws"; 73138 - packageName = "ws"; 73139 - version = "8.4.2"; 73140 - src = fetchurl { 73141 - url = "https://registry.npmjs.org/ws/-/ws-8.4.2.tgz"; 73142 - sha512 = "Kbk4Nxyq7/ZWqr/tarI9yIt/+iNNFOjBXEWgTb4ydaNHBNGgvf2QHbS9fdfsndfjFlFwEd4Al+mw83YkaD10ZA=="; 73143 73061 }; 73144 73062 }; 73145 73063 "ws-8.5.0" = { ··· 74445 74363 "@angular/cli" = nodeEnv.buildNodePackage { 74446 74364 name = "_at_angular_slash_cli"; 74447 74365 packageName = "@angular/cli"; 74448 - version = "13.3.1"; 74366 + version = "13.3.2"; 74449 74367 src = fetchurl { 74450 - url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.1.tgz"; 74451 - sha512 = "0uwU8v3V/2s95X4cZT582J6upReT/ZNw/VAf4p4q51JN+BBvdCEb251xTF+TcOojyToFyJYvg8T28XSrsNsmTQ=="; 74368 + url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.2.tgz"; 74369 + sha512 = "sfhMbm0wBAYmG+8YEYYZ5QkFyv2TJmMua/LbGoJE/y5UKBN+zLsMO3G/CW3D6pWThbgf04qQpi2LHonbPC/Bkg=="; 74452 74370 }; 74453 74371 dependencies = [ 74454 - sources."@angular-devkit/architect-0.1303.1" 74455 - sources."@angular-devkit/core-13.3.1" 74456 - sources."@angular-devkit/schematics-13.3.1" 74372 + sources."@angular-devkit/architect-0.1303.2" 74373 + sources."@angular-devkit/core-13.3.2" 74374 + sources."@angular-devkit/schematics-13.3.2" 74457 74375 sources."@gar/promisify-1.1.3" 74458 74376 sources."@npmcli/fs-1.1.1" 74459 74377 sources."@npmcli/git-2.1.0" ··· 74462 74380 sources."@npmcli/node-gyp-1.0.3" 74463 74381 sources."@npmcli/promise-spawn-1.3.2" 74464 74382 sources."@npmcli/run-script-2.0.0" 74465 - sources."@schematics/angular-13.3.1" 74383 + sources."@schematics/angular-13.3.2" 74466 74384 sources."@tootallnate/once-1.1.2" 74467 74385 sources."@yarnpkg/lockfile-1.1.0" 74468 74386 sources."abbrev-1.1.1" ··· 74587 74505 (sources."npm-registry-fetch-12.0.2" // { 74588 74506 dependencies = [ 74589 74507 sources."@npmcli/fs-2.1.0" 74508 + sources."@npmcli/move-file-2.0.0" 74590 74509 sources."@tootallnate/once-2.0.0" 74591 - sources."cacache-16.0.3" 74510 + sources."cacache-16.0.4" 74592 74511 sources."http-proxy-agent-5.0.0" 74593 - sources."lru-cache-7.7.3" 74594 - (sources."make-fetch-happen-10.1.1" // { 74512 + sources."lru-cache-7.8.0" 74513 + (sources."make-fetch-happen-10.1.2" // { 74595 74514 dependencies = [ 74596 74515 sources."minipass-fetch-2.1.0" 74597 74516 ]; 74598 74517 }) 74518 + sources."ssri-9.0.0" 74599 74519 ]; 74600 74520 }) 74601 74521 sources."npmlog-6.0.1" ··· 75040 74960 sources."pascal-case-3.1.2" 75041 74961 sources."source-map-0.7.3" 75042 74962 sources."svelte-3.46.6" 75043 - sources."svelte2tsx-0.5.6" 74963 + sources."svelte2tsx-0.5.7" 75044 74964 sources."tslib-2.3.1" 75045 74965 sources."typescript-4.6.3" 75046 74966 sources."vscode-css-languageservice-5.4.1" ··· 75199 75119 ]; 75200 75120 }) 75201 75121 sources."json-stringify-safe-5.0.1" 75202 - sources."jszip-3.9.0" 75122 + sources."jszip-3.9.1" 75203 75123 sources."keygrip-1.1.0" 75204 75124 (sources."koa-2.13.4" // { 75205 75125 dependencies = [ ··· 75340 75260 dependencies = [ 75341 75261 sources."@babel/code-frame-7.16.7" 75342 75262 sources."@babel/helper-validator-identifier-7.16.7" 75343 - (sources."@babel/highlight-7.16.10" // { 75263 + (sources."@babel/highlight-7.17.9" // { 75344 75264 dependencies = [ 75345 75265 sources."ansi-styles-3.2.1" 75346 75266 sources."chalk-2.4.2" ··· 75592 75512 dependencies = [ 75593 75513 sources."@babel/code-frame-7.16.7" 75594 75514 sources."@babel/helper-validator-identifier-7.16.7" 75595 - (sources."@babel/highlight-7.16.10" // { 75515 + (sources."@babel/highlight-7.17.9" // { 75596 75516 dependencies = [ 75597 75517 sources."ansi-styles-3.2.1" 75598 75518 sources."chalk-2.4.2" ··· 75736 75656 sources."jsonfile-6.1.0" 75737 75657 sources."jwa-2.0.0" 75738 75658 sources."jws-4.0.0" 75739 - sources."keyv-4.2.1" 75659 + sources."keyv-4.2.2" 75740 75660 sources."lines-and-columns-1.2.4" 75741 75661 sources."locate-path-6.0.0" 75742 75662 sources."lodash-4.17.21" ··· 75760 75680 sources."normalize-newline-4.1.0" 75761 75681 (sources."normalize-package-data-3.0.3" // { 75762 75682 dependencies = [ 75763 - sources."semver-7.3.5" 75683 + sources."lru-cache-7.8.0" 75684 + sources."semver-7.3.6" 75764 75685 ]; 75765 75686 }) 75766 75687 sources."normalize-path-3.0.0" ··· 76256 76177 sha512 = "hV1PG20mLFmYbSJvV+JIGVLUT3zzDt2snR9T7tKMBAVvGQBAfzodylbTZe+b20hNz3Max2Z4zsKVksRu71x1+A=="; 76257 76178 }; 76258 76179 dependencies = [ 76259 - sources."@babel/parser-7.17.8" 76180 + sources."@babel/parser-7.17.9" 76260 76181 sources."@medable/mdctl-api-1.0.64" 76261 76182 sources."@medable/mdctl-api-driver-1.0.64" 76262 76183 sources."@medable/mdctl-axon-tools-1.0.64" ··· 77286 77207 "@nestjs/cli" = nodeEnv.buildNodePackage { 77287 77208 name = "_at_nestjs_slash_cli"; 77288 77209 packageName = "@nestjs/cli"; 77289 - version = "8.2.4"; 77210 + version = "8.2.5"; 77290 77211 src = fetchurl { 77291 - url = "https://registry.npmjs.org/@nestjs/cli/-/cli-8.2.4.tgz"; 77292 - sha512 = "9zNV9oMtaz1vwLO3WXviD0wzRpyiaLWJZ7KCIZLk62U22RDNRsbtLLDS52Wkig5L8UU7Z1xRfrEv+s3f9keysQ=="; 77212 + url = "https://registry.npmjs.org/@nestjs/cli/-/cli-8.2.5.tgz"; 77213 + sha512 = "b5DzZ08q/6iWvLz+n2DhEyZ3rsOurN1ec1jYQaWC5DCVQoZCwyOew48bVf01kevTK4eZyQxPwuErf7HnFAc0oQ=="; 77293 77214 }; 77294 77215 dependencies = [ 77295 - sources."@angular-devkit/core-13.3.0" 77296 - sources."@angular-devkit/schematics-13.3.0" 77297 - (sources."@angular-devkit/schematics-cli-13.3.0" // { 77216 + sources."@angular-devkit/core-13.3.2" 77217 + sources."@angular-devkit/schematics-13.3.2" 77218 + (sources."@angular-devkit/schematics-cli-13.3.2" // { 77298 77219 dependencies = [ 77299 77220 sources."chalk-4.1.2" 77300 77221 sources."inquirer-8.2.0" ··· 77304 77225 }) 77305 77226 sources."@babel/code-frame-7.16.7" 77306 77227 sources."@babel/helper-validator-identifier-7.16.7" 77307 - (sources."@babel/highlight-7.16.10" // { 77228 + (sources."@babel/highlight-7.17.9" // { 77308 77229 dependencies = [ 77309 77230 sources."ansi-styles-3.2.1" 77310 77231 sources."chalk-2.4.2" ··· 77314 77235 sources."supports-color-5.5.0" 77315 77236 ]; 77316 77237 }) 77317 - (sources."@nestjs/schematics-8.0.9" // { 77318 - dependencies = [ 77319 - sources."@angular-devkit/core-13.3.1" 77320 - sources."@angular-devkit/schematics-13.3.1" 77321 - ]; 77322 - }) 77238 + sources."@nestjs/schematics-8.0.10" 77323 77239 sources."@types/eslint-8.4.1" 77324 77240 sources."@types/eslint-scope-3.7.3" 77325 77241 sources."@types/estree-0.0.51" ··· 77348 77264 sources."acorn-import-assertions-1.8.0" 77349 77265 sources."ajv-8.9.0" 77350 77266 sources."ajv-formats-2.1.1" 77351 - sources."ajv-keywords-5.1.0" 77267 + sources."ajv-keywords-3.5.2" 77352 77268 sources."ansi-colors-4.1.1" 77353 77269 sources."ansi-escapes-4.3.2" 77354 77270 sources."ansi-regex-5.0.1" ··· 77383 77299 sources."cross-spawn-7.0.3" 77384 77300 sources."deepmerge-4.2.2" 77385 77301 sources."defaults-1.0.3" 77386 - sources."electron-to-chromium-1.4.103" 77302 + sources."electron-to-chromium-1.4.106" 77387 77303 sources."emoji-regex-8.0.0" 77388 77304 sources."end-of-stream-1.4.4" 77389 77305 sources."enhanced-resolve-5.9.2" ··· 77405 77321 sources."fast-json-stable-stringify-2.1.0" 77406 77322 sources."figures-3.2.0" 77407 77323 sources."fill-range-7.0.1" 77408 - (sources."fork-ts-checker-webpack-plugin-7.2.1" // { 77324 + (sources."fork-ts-checker-webpack-plugin-7.2.3" // { 77409 77325 dependencies = [ 77410 77326 sources."chalk-4.1.2" 77411 77327 ]; ··· 77465 77381 sources."chalk-4.1.2" 77466 77382 ]; 77467 77383 }) 77468 - sources."lru-cache-6.0.0" 77384 + sources."lru-cache-7.8.0" 77469 77385 sources."macos-release-2.5.0" 77470 77386 sources."magic-string-0.25.7" 77471 77387 sources."memfs-3.4.1" ··· 77474 77390 sources."mime-types-2.1.35" 77475 77391 sources."mimic-fn-2.1.0" 77476 77392 sources."minimatch-3.1.2" 77477 - sources."minimist-1.2.5" 77393 + sources."minimist-1.2.6" 77478 77394 sources."mute-stream-0.0.8" 77479 77395 sources."neo-async-2.6.2" 77480 77396 sources."node-emoji-1.11.0" ··· 77514 77430 sources."rxjs-6.6.7" 77515 77431 sources."safe-buffer-5.2.1" 77516 77432 sources."safer-buffer-2.1.2" 77517 - sources."schema-utils-4.0.0" 77518 - sources."semver-7.3.5" 77433 + (sources."schema-utils-3.1.1" // { 77434 + dependencies = [ 77435 + sources."ajv-6.12.6" 77436 + sources."json-schema-traverse-0.4.1" 77437 + ]; 77438 + }) 77439 + sources."semver-7.3.6" 77519 77440 sources."serialize-javascript-6.0.0" 77520 77441 sources."shebang-command-2.0.0" 77521 77442 sources."shebang-regex-3.0.0" ··· 77544 77465 }) 77545 77466 (sources."terser-webpack-plugin-5.3.1" // { 77546 77467 dependencies = [ 77547 - sources."ajv-6.12.6" 77548 - sources."ajv-keywords-3.5.2" 77549 - sources."json-schema-traverse-0.4.1" 77550 - sources."schema-utils-3.1.1" 77551 77468 sources."source-map-0.6.1" 77552 77469 ]; 77553 77470 }) ··· 77555 77472 sources."tmp-0.0.33" 77556 77473 sources."to-regex-range-5.0.1" 77557 77474 sources."tree-kill-1.2.2" 77558 - sources."tsconfig-paths-3.14.0" 77475 + sources."tsconfig-paths-3.14.1" 77559 77476 (sources."tsconfig-paths-webpack-plugin-3.5.2" // { 77560 77477 dependencies = [ 77561 77478 sources."chalk-4.1.2" ··· 77569 77486 sources."util-deprecate-1.0.2" 77570 77487 sources."watchpack-2.3.1" 77571 77488 sources."wcwidth-1.0.1" 77572 - (sources."webpack-5.70.0" // { 77573 - dependencies = [ 77574 - sources."ajv-6.12.6" 77575 - sources."ajv-keywords-3.5.2" 77576 - sources."json-schema-traverse-0.4.1" 77577 - sources."schema-utils-3.1.1" 77578 - ]; 77579 - }) 77489 + sources."webpack-5.71.0" 77580 77490 sources."webpack-node-externals-3.0.0" 77581 77491 sources."webpack-sources-3.2.3" 77582 77492 sources."which-2.0.2" 77583 77493 sources."windows-release-4.0.0" 77584 77494 sources."wrappy-1.0.2" 77585 - sources."yallist-4.0.0" 77586 77495 sources."yaml-1.10.2" 77587 77496 ]; 77588 77497 buildInputs = globalBuildInputs; ··· 77774 77683 sources."async-limiter-1.0.1" 77775 77684 sources."asynckit-0.4.0" 77776 77685 sources."atob-2.1.2" 77777 - (sources."aws-sdk-2.1107.0" // { 77686 + (sources."aws-sdk-2.1110.0" // { 77778 77687 dependencies = [ 77779 77688 sources."uuid-3.3.2" 77780 77689 ]; ··· 78064 77973 sources."@apollographql/graphql-upload-8-fork-8.1.3" 78065 77974 sources."@babel/code-frame-7.16.7" 78066 77975 sources."@babel/compat-data-7.17.7" 78067 - (sources."@babel/core-7.17.8" // { 77976 + (sources."@babel/core-7.17.9" // { 78068 77977 dependencies = [ 78069 77978 sources."semver-6.3.0" 78070 77979 ]; 78071 77980 }) 78072 - (sources."@babel/generator-7.17.7" // { 77981 + (sources."@babel/generator-7.17.9" // { 78073 77982 dependencies = [ 78074 77983 sources."source-map-0.5.7" 78075 77984 ]; ··· 78081 77990 sources."semver-6.3.0" 78082 77991 ]; 78083 77992 }) 78084 - sources."@babel/helper-create-class-features-plugin-7.17.6" 77993 + sources."@babel/helper-create-class-features-plugin-7.17.9" 78085 77994 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 78086 77995 (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 78087 77996 dependencies = [ ··· 78090 77999 }) 78091 78000 sources."@babel/helper-environment-visitor-7.16.7" 78092 78001 sources."@babel/helper-explode-assignable-expression-7.16.7" 78093 - sources."@babel/helper-function-name-7.16.7" 78094 - sources."@babel/helper-get-function-arity-7.16.7" 78002 + sources."@babel/helper-function-name-7.17.9" 78095 78003 sources."@babel/helper-hoist-variables-7.16.7" 78096 78004 sources."@babel/helper-member-expression-to-functions-7.17.7" 78097 78005 sources."@babel/helper-module-imports-7.16.7" ··· 78106 78014 sources."@babel/helper-validator-identifier-7.16.7" 78107 78015 sources."@babel/helper-validator-option-7.16.7" 78108 78016 sources."@babel/helper-wrap-function-7.16.8" 78109 - sources."@babel/helpers-7.17.8" 78110 - (sources."@babel/highlight-7.16.10" // { 78017 + sources."@babel/helpers-7.17.9" 78018 + (sources."@babel/highlight-7.17.9" // { 78111 78019 dependencies = [ 78112 78020 sources."ansi-styles-3.2.1" 78113 78021 sources."chalk-2.4.2" ··· 78117 78025 sources."supports-color-5.5.0" 78118 78026 ]; 78119 78027 }) 78120 - sources."@babel/parser-7.17.8" 78028 + sources."@babel/parser-7.17.9" 78121 78029 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 78122 78030 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 78123 78031 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 78167 78075 sources."@babel/plugin-transform-literals-7.16.7" 78168 78076 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 78169 78077 sources."@babel/plugin-transform-modules-amd-7.16.7" 78170 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 78078 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 78171 78079 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 78172 78080 sources."@babel/plugin-transform-modules-umd-7.16.7" 78173 78081 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 78175 78083 sources."@babel/plugin-transform-object-super-7.16.7" 78176 78084 sources."@babel/plugin-transform-parameters-7.16.7" 78177 78085 sources."@babel/plugin-transform-property-literals-7.16.7" 78178 - sources."@babel/plugin-transform-regenerator-7.16.7" 78086 + sources."@babel/plugin-transform-regenerator-7.17.9" 78179 78087 sources."@babel/plugin-transform-reserved-words-7.16.7" 78180 78088 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 78181 78089 sources."@babel/plugin-transform-spread-7.16.7" ··· 78200 78108 sources."semver-5.7.1" 78201 78109 ]; 78202 78110 }) 78203 - sources."@babel/runtime-7.17.8" 78111 + sources."@babel/runtime-7.17.9" 78204 78112 sources."@babel/template-7.16.7" 78205 - sources."@babel/traverse-7.17.3" 78113 + sources."@babel/traverse-7.17.9" 78206 78114 sources."@babel/types-7.17.0" 78207 78115 sources."@hapi/hoek-9.2.1" 78208 78116 sources."@hapi/topo-5.1.0" ··· 78499 78407 sources."easy-stack-1.0.1" 78500 78408 sources."ee-first-1.1.1" 78501 78409 sources."ejs-3.1.6" 78502 - sources."electron-to-chromium-1.4.103" 78410 + sources."electron-to-chromium-1.4.106" 78503 78411 sources."emoji-regex-8.0.0" 78504 78412 sources."encodeurl-1.0.2" 78505 78413 sources."end-of-stream-1.4.4" ··· 78604 78512 sources."which-2.0.2" 78605 78513 ]; 78606 78514 }) 78607 - sources."flow-parser-0.175.0" 78515 + sources."flow-parser-0.175.1" 78608 78516 sources."for-each-0.3.3" 78609 78517 sources."for-in-1.0.2" 78610 78518 sources."forwarded-0.2.0" ··· 78939 78847 sources."regenerate-1.4.2" 78940 78848 sources."regenerate-unicode-properties-10.0.1" 78941 78849 sources."regenerator-runtime-0.13.9" 78942 - sources."regenerator-transform-0.14.5" 78850 + sources."regenerator-transform-0.15.0" 78943 78851 sources."regex-not-1.0.2" 78944 78852 sources."regexpu-core-5.0.1" 78945 78853 sources."regjsgen-0.6.0" ··· 78972 78880 sources."commander-2.20.3" 78973 78881 ]; 78974 78882 }) 78975 - sources."semver-7.3.5" 78883 + (sources."semver-7.3.6" // { 78884 + dependencies = [ 78885 + sources."lru-cache-7.8.0" 78886 + ]; 78887 + }) 78976 78888 (sources."send-0.17.2" // { 78977 78889 dependencies = [ 78978 78890 (sources."debug-2.6.9" // { ··· 79342 79254 }; 79343 79255 dependencies = [ 79344 79256 sources."@babel/code-frame-7.16.7" 79345 - sources."@babel/generator-7.17.7" 79257 + sources."@babel/generator-7.17.9" 79346 79258 sources."@babel/helper-validator-identifier-7.16.7" 79347 - sources."@babel/highlight-7.16.10" 79348 - sources."@babel/parser-7.17.8" 79259 + sources."@babel/highlight-7.17.9" 79260 + sources."@babel/parser-7.17.9" 79349 79261 sources."@babel/template-7.16.7" 79350 79262 sources."@babel/types-7.17.0" 79351 79263 sources."@webassemblyjs/ast-1.11.1" ··· 79423 79335 dependencies = [ 79424 79336 sources."@babel/code-frame-7.16.7" 79425 79337 sources."@babel/helper-validator-identifier-7.16.7" 79426 - sources."@babel/highlight-7.16.10" 79338 + sources."@babel/highlight-7.17.9" 79427 79339 sources."@sindresorhus/is-0.14.0" 79428 79340 sources."@szmarczak/http-timer-1.1.2" 79429 79341 sources."@types/acorn-4.0.6" ··· 79761 79673 sources."retext-profanities-7.1.0" 79762 79674 sources."sade-1.8.1" 79763 79675 sources."safe-buffer-5.2.1" 79764 - sources."semver-7.3.5" 79676 + (sources."semver-7.3.6" // { 79677 + dependencies = [ 79678 + sources."lru-cache-7.8.0" 79679 + ]; 79680 + }) 79765 79681 (sources."semver-diff-3.1.1" // { 79766 79682 dependencies = [ 79767 79683 sources."semver-6.3.0" ··· 79912 79828 sources."@ampproject/remapping-2.1.2" 79913 79829 sources."@babel/code-frame-7.16.7" 79914 79830 sources."@babel/compat-data-7.17.7" 79915 - sources."@babel/core-7.17.8" 79916 - (sources."@babel/generator-7.17.7" // { 79831 + sources."@babel/core-7.17.9" 79832 + (sources."@babel/generator-7.17.9" // { 79917 79833 dependencies = [ 79918 79834 sources."source-map-0.5.7" 79919 79835 ]; 79920 79836 }) 79921 79837 sources."@babel/helper-compilation-targets-7.17.7" 79922 79838 sources."@babel/helper-environment-visitor-7.16.7" 79923 - sources."@babel/helper-function-name-7.16.7" 79924 - sources."@babel/helper-get-function-arity-7.16.7" 79839 + sources."@babel/helper-function-name-7.17.9" 79925 79840 sources."@babel/helper-hoist-variables-7.16.7" 79926 79841 sources."@babel/helper-module-imports-7.16.7" 79927 79842 sources."@babel/helper-module-transforms-7.17.7" ··· 79929 79844 sources."@babel/helper-split-export-declaration-7.16.7" 79930 79845 sources."@babel/helper-validator-identifier-7.16.7" 79931 79846 sources."@babel/helper-validator-option-7.16.7" 79932 - sources."@babel/helpers-7.17.8" 79933 - sources."@babel/highlight-7.16.10" 79934 - sources."@babel/parser-7.17.8" 79847 + sources."@babel/helpers-7.17.9" 79848 + sources."@babel/highlight-7.17.9" 79849 + sources."@babel/parser-7.17.9" 79935 79850 sources."@babel/template-7.16.7" 79936 - sources."@babel/traverse-7.17.3" 79851 + sources."@babel/traverse-7.17.9" 79937 79852 sources."@babel/types-7.17.0" 79938 79853 sources."@jridgewell/resolve-uri-3.0.5" 79939 79854 sources."@jridgewell/sourcemap-codec-1.4.11" 79940 79855 sources."@jridgewell/trace-mapping-0.3.4" 79941 - sources."@xmldom/xmldom-0.8.1" 79856 + sources."@xmldom/xmldom-0.8.2" 79942 79857 sources."JSV-4.0.2" 79943 79858 sources."ansi-styles-3.2.1" 79944 79859 sources."array-unique-0.3.2" ··· 79956 79871 sources."convert-source-map-1.8.0" 79957 79872 sources."debug-4.3.4" 79958 79873 sources."ejs-3.1.6" 79959 - sources."electron-to-chromium-1.4.103" 79874 + sources."electron-to-chromium-1.4.106" 79960 79875 sources."ensure-posix-path-1.1.1" 79961 79876 sources."escalade-3.1.1" 79962 79877 sources."escape-string-regexp-1.0.5" ··· 80333 80248 dependencies = [ 80334 80249 sources."browserslist-4.20.2" 80335 80250 sources."caniuse-lite-1.0.30001325" 80336 - sources."electron-to-chromium-1.4.103" 80251 + sources."electron-to-chromium-1.4.106" 80337 80252 sources."escalade-3.1.1" 80338 80253 sources."fraction.js-4.2.0" 80339 80254 sources."node-releases-2.0.2" ··· 80368 80283 sources."ansi-regex-5.0.1" 80369 80284 sources."ansi-styles-4.3.0" 80370 80285 sources."ast-types-0.13.4" 80371 - (sources."aws-sdk-2.1107.0" // { 80286 + (sources."aws-sdk-2.1110.0" // { 80372 80287 dependencies = [ 80373 80288 sources."uuid-3.3.2" 80374 80289 ]; ··· 80410 80325 sources."depd-2.0.0" 80411 80326 sources."devtools-protocol-0.0.901419" 80412 80327 sources."dom-serializer-1.3.2" 80413 - sources."domelementtype-2.2.0" 80328 + sources."domelementtype-2.3.0" 80414 80329 sources."domhandler-4.3.1" 80415 80330 sources."domutils-2.8.0" 80416 80331 sources."emoji-regex-8.0.0" ··· 80576 80491 dependencies = [ 80577 80492 sources."@babel/code-frame-7.16.7" 80578 80493 sources."@babel/helper-validator-identifier-7.16.7" 80579 - (sources."@babel/highlight-7.16.10" // { 80494 + (sources."@babel/highlight-7.17.9" // { 80580 80495 dependencies = [ 80581 80496 sources."ansi-styles-3.2.1" 80582 80497 sources."chalk-2.4.2" ··· 80761 80676 sources."nice-try-1.0.5" 80762 80677 (sources."normalize-package-data-3.0.3" // { 80763 80678 dependencies = [ 80764 - sources."semver-7.3.5" 80679 + sources."lru-cache-7.8.0" 80680 + sources."semver-7.3.6" 80765 80681 ]; 80766 80682 }) 80767 80683 sources."normalize-url-4.5.1" ··· 80986 80902 balanceofsatoshis = nodeEnv.buildNodePackage { 80987 80903 name = "balanceofsatoshis"; 80988 80904 packageName = "balanceofsatoshis"; 80989 - version = "11.64.1"; 80905 + version = "11.64.2"; 80990 80906 src = fetchurl { 80991 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.64.1.tgz"; 80992 - sha512 = "k8ft+Al3mYVW9hfQ2JjkKIrbUmIyhZzjUqHz16ieo/4ggWMPr8WxKiiz7ZuPgG/kog8XY0RlkFT2F0/9Ej9gdg=="; 80907 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.64.2.tgz"; 80908 + sha512 = "sYju0HhL1tlxwa85jBioJZ7Cgbzbuy8Xx2MrE084KZ/00KEfVOMEEKoAjtKIK4BanQCeDA/EzuBjEksDx8K9Ag=="; 80993 80909 }; 80994 80910 dependencies = [ 80995 80911 (sources."@alexbosworth/caporal-1.4.1" // { ··· 80998 80914 ]; 80999 80915 }) 81000 80916 sources."@alexbosworth/cli-table3-0.6.1" 81001 - sources."@alexbosworth/fiat-1.0.1" 80917 + sources."@alexbosworth/fiat-1.0.2" 81002 80918 sources."@alexbosworth/html2unicode-1.1.5" 81003 80919 sources."@alexbosworth/node-fetch-2.6.2" 81004 80920 (sources."@alexbosworth/prettyjson-1.2.2" // { ··· 81014 80930 ]; 81015 80931 }) 81016 80932 sources."@grammyjs/types-2.6.0" 81017 - sources."@grpc/grpc-js-1.5.7" 80933 + sources."@grpc/grpc-js-1.6.1" 81018 80934 sources."@grpc/proto-loader-0.6.9" 81019 80935 sources."@handsontable/formulajs-2.0.2" 81020 80936 sources."@mitmaro/errors-1.0.0" ··· 81044 80960 sources."@types/request-2.48.8" 81045 80961 sources."@types/serve-static-1.13.10" 81046 80962 sources."@types/tough-cookie-4.0.1" 81047 - sources."@types/ws-8.5.2" 80963 + sources."@types/ws-8.5.3" 81048 80964 sources."abort-controller-3.0.0" 81049 80965 sources."accepts-1.3.8" 81050 80966 (sources."agent-base-6.0.2" // { ··· 81064 80980 sources."asciichart-1.5.25" 81065 80981 sources."astral-regex-2.0.0" 81066 80982 sources."async-3.2.3" 81067 - sources."asyncjs-util-1.2.8" 80983 + sources."asyncjs-util-1.2.9" 81068 80984 sources."asynckit-0.4.0" 81069 80985 sources."base-x-3.0.9" 81070 80986 sources."base64-js-1.5.1" 81071 80987 sources."basic-auth-2.0.1" 81072 80988 sources."bech32-2.0.0" 81073 80989 sources."bessel-1.0.2" 81074 - sources."bindings-1.5.0" 81075 80990 sources."bip174-2.0.1" 81076 - (sources."bip32-2.0.6" // { 81077 - dependencies = [ 81078 - sources."@types/node-10.12.18" 81079 - sources."bn.js-4.12.0" 81080 - sources."tiny-secp256k1-1.1.6" 81081 - ]; 81082 - }) 81083 80991 sources."bip65-1.0.3" 81084 80992 sources."bip66-1.1.5" 81085 80993 sources."bip68-1.0.4" ··· 81092 81000 }) 81093 81001 sources."bluebird-3.7.2" 81094 81002 sources."bn.js-5.2.0" 81095 - sources."body-parser-1.19.2" 81096 - sources."bolt01-1.2.3" 81097 - sources."bolt03-1.2.13" 81098 - sources."bolt07-1.8.0" 81099 - sources."bolt09-0.2.2" 81003 + sources."body-parser-1.20.0" 81004 + sources."bolt01-1.2.4" 81005 + sources."bolt03-1.2.14" 81006 + sources."bolt07-1.8.1" 81007 + sources."bolt09-0.2.1" 81100 81008 (sources."boxen-5.1.2" // { 81101 81009 dependencies = [ 81102 81010 sources."ansi-styles-4.3.0" ··· 81105 81013 sources."type-fest-0.20.2" 81106 81014 ]; 81107 81015 }) 81108 - sources."brorand-1.1.0" 81109 81016 sources."bs58-4.0.1" 81110 81017 sources."bs58check-2.1.2" 81111 81018 sources."buffer-5.7.1" ··· 81118 81025 sources."lowercase-keys-2.0.0" 81119 81026 ]; 81120 81027 }) 81028 + sources."call-bind-1.0.2" 81121 81029 sources."camelcase-6.3.0" 81122 81030 sources."cbor-8.1.0" 81123 81031 (sources."chalk-1.1.3" // { ··· 81156 81064 sources."core-util-is-1.0.3" 81157 81065 sources."cors-2.8.5" 81158 81066 sources."create-hash-1.2.0" 81159 - sources."create-hmac-1.1.7" 81160 81067 sources."crypto-js-4.1.1" 81161 81068 sources."crypto-random-string-2.0.0" 81162 81069 sources."csv-parse-5.0.4" ··· 81169 81076 sources."define-property-1.0.0" 81170 81077 sources."delayed-stream-1.0.0" 81171 81078 sources."delegates-1.0.0" 81172 - sources."depd-1.1.2" 81173 - sources."destroy-1.0.4" 81079 + sources."depd-2.0.0" 81080 + sources."destroy-1.2.0" 81174 81081 sources."dot-prop-5.3.0" 81175 81082 sources."duplexer3-0.1.4" 81176 81083 sources."ecpair-2.0.1" 81177 81084 sources."ee-first-1.1.1" 81178 - (sources."elliptic-6.5.4" // { 81179 - dependencies = [ 81180 - sources."bn.js-4.12.0" 81181 - ]; 81182 - }) 81183 81085 sources."emoji-regex-8.0.0" 81184 81086 sources."encodeurl-1.0.2" 81185 81087 sources."end-of-stream-1.4.4" ··· 81192 81094 sources."exit-hook-1.1.1" 81193 81095 (sources."express-4.17.3" // { 81194 81096 dependencies = [ 81097 + sources."body-parser-1.19.2" 81098 + sources."depd-1.1.2" 81099 + sources."http-errors-1.8.1" 81100 + sources."on-finished-2.3.0" 81101 + sources."qs-6.9.7" 81102 + sources."raw-body-2.4.3" 81195 81103 sources."safe-buffer-5.2.1" 81104 + sources."statuses-1.5.0" 81196 81105 ]; 81197 81106 }) 81198 81107 sources."extend-3.0.2" ··· 81201 81110 sources."fast-deep-equal-3.1.3" 81202 81111 sources."fast-levenshtein-2.0.6" 81203 81112 sources."figures-1.7.0" 81204 - sources."file-uri-to-path-1.0.0" 81205 - sources."finalhandler-1.1.2" 81113 + (sources."finalhandler-1.1.2" // { 81114 + dependencies = [ 81115 + sources."on-finished-2.3.0" 81116 + sources."statuses-1.5.0" 81117 + ]; 81118 + }) 81206 81119 sources."form-data-2.5.1" 81207 81120 sources."forwarded-0.2.0" 81208 81121 sources."fresh-0.5.2" 81122 + sources."function-bind-1.1.1" 81209 81123 sources."gauge-1.2.7" 81210 81124 sources."get-caller-file-2.0.5" 81125 + sources."get-intrinsic-1.1.1" 81211 81126 sources."get-stream-4.1.0" 81212 - sources."global-dirs-3.0.0" 81213 - (sources."goldengate-11.1.0" // { 81127 + (sources."global-dirs-3.0.0" // { 81214 81128 dependencies = [ 81215 - sources."ln-service-53.9.3" 81129 + sources."ini-2.0.0" 81130 + ]; 81131 + }) 81132 + (sources."goldengate-11.1.1" // { 81133 + dependencies = [ 81134 + sources."bolt07-1.8.0" 81135 + (sources."invoices-2.0.4" // { 81136 + dependencies = [ 81137 + sources."tiny-secp256k1-2.2.0" 81138 + ]; 81139 + }) 81140 + sources."ln-service-53.10.0" 81216 81141 ]; 81217 81142 }) 81218 81143 sources."got-9.6.0" ··· 81223 81148 sources."ms-2.1.2" 81224 81149 ]; 81225 81150 }) 81151 + sources."has-1.0.3" 81226 81152 (sources."has-ansi-2.0.0" // { 81227 81153 dependencies = [ 81228 81154 sources."ansi-regex-2.1.1" 81229 81155 ]; 81230 81156 }) 81231 81157 sources."has-flag-4.0.0" 81158 + sources."has-symbols-1.0.3" 81232 81159 sources."has-unicode-2.0.1" 81233 81160 sources."has-yarn-2.1.0" 81234 81161 (sources."hash-base-3.1.0" // { ··· 81237 81164 sources."safe-buffer-5.2.1" 81238 81165 ]; 81239 81166 }) 81240 - sources."hash.js-1.1.7" 81241 - sources."hmac-drbg-1.0.1" 81242 81167 sources."hot-formula-parser-4.0.0" 81243 81168 sources."http-cache-semantics-4.1.0" 81244 - sources."http-errors-1.8.1" 81169 + sources."http-errors-2.0.0" 81245 81170 sources."iconv-lite-0.4.24" 81246 81171 sources."ieee754-1.2.1" 81247 81172 sources."import-lazy-4.0.0" 81248 81173 sources."imurmurhash-0.1.4" 81249 81174 sources."inherits-2.0.4" 81250 - sources."ini-2.0.0" 81175 + sources."ini-3.0.0" 81251 81176 (sources."inquirer-8.2.2" // { 81252 81177 dependencies = [ 81253 81178 sources."ansi-escapes-4.3.2" ··· 81265 81190 sources."type-fest-0.21.3" 81266 81191 ]; 81267 81192 }) 81268 - (sources."invoices-2.0.4" // { 81193 + (sources."invoices-2.0.5" // { 81269 81194 dependencies = [ 81270 - sources."bolt09-0.2.1" 81271 - sources."tiny-secp256k1-2.2.0" 81272 - sources."uint8array-tools-0.0.6" 81195 + sources."bolt09-0.2.2" 81273 81196 ]; 81274 81197 }) 81275 81198 sources."ip-1.1.5" ··· 81297 81220 sources."isstream-0.1.2" 81298 81221 sources."json-buffer-3.0.0" 81299 81222 sources."json-schema-traverse-1.0.0" 81300 - sources."json2csv-5.0.6" 81223 + sources."json2csv-5.0.7" 81301 81224 sources."jsonparse-1.3.1" 81302 81225 sources."jstat-1.9.5" 81303 81226 sources."keyv-3.1.0" 81304 81227 sources."kind-of-6.0.3" 81305 81228 sources."latest-version-5.1.0" 81306 - (sources."lightning-5.8.2" // { 81229 + (sources."lightning-5.9.0" // { 81307 81230 dependencies = [ 81308 - sources."@types/node-17.0.21" 81231 + sources."asyncjs-util-1.2.8" 81232 + sources."body-parser-1.19.2" 81233 + sources."bolt07-1.8.0" 81234 + sources."bolt09-0.2.2" 81235 + sources."depd-1.1.2" 81236 + sources."http-errors-1.8.1" 81237 + (sources."invoices-2.0.4" // { 81238 + dependencies = [ 81239 + sources."bolt09-0.2.1" 81240 + sources."tiny-secp256k1-2.2.0" 81241 + ]; 81242 + }) 81243 + sources."on-finished-2.3.0" 81244 + sources."psbt-2.0.0" 81245 + sources."qs-6.9.7" 81246 + sources."raw-body-2.4.3" 81247 + sources."statuses-1.5.0" 81309 81248 ]; 81310 81249 }) 81311 - (sources."ln-accounting-5.0.5" // { 81250 + (sources."ln-accounting-5.0.6" // { 81312 81251 dependencies = [ 81313 - sources."@grpc/grpc-js-1.4.4" 81314 - sources."@grpc/proto-loader-0.6.6" 81315 - sources."@types/node-16.11.7" 81316 - sources."@types/request-2.48.7" 81317 - sources."@types/ws-8.2.0" 81318 - sources."async-3.2.2" 81319 - sources."asyncjs-util-1.2.7" 81320 - sources."bech32-1.1.4" 81321 - sources."bitcoinjs-lib-6.0.0" 81322 - sources."bn.js-4.12.0" 81323 - sources."body-parser-1.19.0" 81324 - (sources."bolt07-1.7.4" // { 81252 + sources."@grpc/grpc-js-1.5.7" 81253 + sources."@types/node-17.0.21" 81254 + sources."@types/ws-8.5.2" 81255 + sources."body-parser-1.19.2" 81256 + sources."bolt07-1.8.0" 81257 + sources."bolt09-0.2.2" 81258 + sources."depd-1.1.2" 81259 + (sources."goldengate-11.1.0" // { 81325 81260 dependencies = [ 81326 - sources."bn.js-5.2.0" 81261 + sources."asyncjs-util-1.2.8" 81262 + sources."ln-service-53.9.3" 81327 81263 ]; 81328 81264 }) 81329 - sources."bolt09-0.2.0" 81330 - sources."bytes-3.1.0" 81331 - sources."content-disposition-0.5.3" 81332 - sources."cookie-0.4.0" 81333 - sources."ecpair-1.0.1" 81334 - sources."express-4.17.1" 81335 - sources."goldengate-10.4.2" 81336 - sources."http-errors-1.7.2" 81337 - sources."inherits-2.0.3" 81338 - (sources."invoices-2.0.2" // { 81265 + sources."http-errors-1.8.1" 81266 + sources."invoices-2.0.4" 81267 + (sources."lightning-5.8.2" // { 81339 81268 dependencies = [ 81340 - sources."bech32-2.0.0" 81341 - sources."bn.js-5.2.0" 81269 + sources."asyncjs-util-1.2.8" 81270 + sources."tiny-secp256k1-2.2.1" 81342 81271 ]; 81343 81272 }) 81344 - (sources."lightning-4.14.3" // { 81273 + (sources."ln-service-53.10.0" // { 81345 81274 dependencies = [ 81346 - sources."bech32-2.0.0" 81347 - sources."bn.js-5.2.0" 81348 - (sources."invoices-2.0.1" // { 81349 - dependencies = [ 81350 - (sources."bitcoinjs-lib-5.2.0" // { 81351 - dependencies = [ 81352 - sources."bech32-1.1.4" 81353 - ]; 81354 - }) 81355 - ]; 81356 - }) 81275 + sources."@grpc/grpc-js-1.6.1" 81276 + sources."@types/node-17.0.23" 81277 + sources."@types/ws-8.5.3" 81278 + sources."asyncjs-util-1.2.8" 81279 + sources."lightning-5.9.0" 81280 + sources."tiny-secp256k1-2.2.1" 81281 + sources."type-fest-2.12.2" 81357 81282 ]; 81358 81283 }) 81359 - sources."ln-service-52.16.0" 81360 - sources."ms-2.1.1" 81361 - (sources."psbt-1.1.10" // { 81284 + sources."on-finished-2.3.0" 81285 + (sources."p2tr-1.3.0" // { 81362 81286 dependencies = [ 81363 - sources."bitcoinjs-lib-5.2.0" 81364 - sources."bn.js-5.2.0" 81287 + sources."tiny-secp256k1-2.2.1" 81365 81288 ]; 81366 81289 }) 81367 - sources."qs-6.7.0" 81368 - sources."raw-body-2.4.0" 81369 - sources."send-0.17.1" 81370 - sources."serve-static-1.14.1" 81371 - sources."setprototypeof-1.1.1" 81372 - sources."tiny-secp256k1-1.1.6" 81373 - sources."toidentifier-1.0.0" 81374 - sources."ws-8.2.3" 81290 + sources."psbt-2.0.0" 81291 + sources."qs-6.9.7" 81292 + sources."raw-body-2.4.3" 81293 + sources."statuses-1.5.0" 81294 + sources."tiny-secp256k1-2.2.0" 81295 + sources."type-fest-2.12.0" 81296 + sources."uint8array-tools-0.0.7" 81375 81297 ]; 81376 81298 }) 81377 - (sources."ln-service-53.9.4" // { 81299 + (sources."ln-service-53.11.0" // { 81378 81300 dependencies = [ 81379 - sources."@grpc/grpc-js-1.6.1" 81380 - sources."@types/ws-8.5.3" 81381 - sources."lightning-5.8.6" 81382 - sources."type-fest-2.12.2" 81301 + sources."@grpc/grpc-js-1.6.2" 81302 + sources."bolt09-0.2.3" 81303 + sources."lightning-5.10.1" 81383 81304 ]; 81384 81305 }) 81385 - (sources."ln-sync-3.11.0" // { 81306 + (sources."ln-sync-3.12.0" // { 81386 81307 dependencies = [ 81387 - sources."ln-service-53.9.3" 81308 + (sources."invoices-2.0.4" // { 81309 + dependencies = [ 81310 + sources."bolt07-1.8.0" 81311 + sources."tiny-secp256k1-2.2.0" 81312 + ]; 81313 + }) 81314 + (sources."ln-service-53.10.0" // { 81315 + dependencies = [ 81316 + sources."bolt07-1.8.0" 81317 + ]; 81318 + }) 81388 81319 ]; 81389 81320 }) 81390 - (sources."ln-telegram-3.21.0" // { 81321 + (sources."ln-telegram-3.21.1" // { 81391 81322 dependencies = [ 81392 - sources."ln-service-53.9.3" 81393 - sources."paid-services-3.14.4" 81323 + sources."body-parser-1.19.2" 81324 + sources."bolt07-1.8.0" 81325 + sources."bolt09-0.2.2" 81326 + sources."depd-1.1.2" 81327 + sources."http-errors-1.8.1" 81328 + sources."invoices-2.0.4" 81329 + (sources."lightning-5.8.6" // { 81330 + dependencies = [ 81331 + sources."asyncjs-util-1.2.8" 81332 + sources."tiny-secp256k1-2.2.1" 81333 + ]; 81334 + }) 81335 + sources."ln-service-53.10.0" 81336 + (sources."ln-sync-3.11.1" // { 81337 + dependencies = [ 81338 + sources."asyncjs-util-1.2.8" 81339 + sources."ln-service-53.9.4" 81340 + sources."tiny-secp256k1-2.2.1" 81341 + ]; 81342 + }) 81343 + sources."on-finished-2.3.0" 81344 + sources."psbt-2.0.0" 81345 + sources."qs-6.9.7" 81346 + sources."raw-body-2.4.3" 81347 + sources."statuses-1.5.0" 81348 + sources."tiny-secp256k1-2.2.0" 81349 + sources."uint8array-tools-0.0.7" 81394 81350 ]; 81395 81351 }) 81396 81352 sources."lodash-4.17.21" ··· 81411 81367 }) 81412 81368 sources."long-4.0.0" 81413 81369 sources."lowercase-keys-1.0.1" 81414 - sources."lru-cache-6.0.0" 81370 + sources."lru-cache-7.8.0" 81415 81371 sources."luxon-2.3.1" 81416 81372 sources."macaroon-3.0.4" 81417 81373 (sources."make-dir-3.1.0" // { ··· 81422 81378 sources."md5.js-1.3.5" 81423 81379 sources."media-typer-0.3.0" 81424 81380 sources."merge-descriptors-1.0.1" 81425 - sources."merkle-lib-2.0.10" 81426 81381 sources."methods-1.1.2" 81427 81382 sources."micromist-1.1.0" 81428 81383 sources."mime-1.6.0" ··· 81430 81385 sources."mime-types-2.1.35" 81431 81386 sources."mimic-fn-2.1.0" 81432 81387 sources."mimic-response-1.0.1" 81433 - sources."minimalistic-assert-1.0.1" 81434 - sources."minimalistic-crypto-utils-1.0.1" 81435 81388 sources."minimist-1.2.6" 81436 81389 sources."mkdirp-0.5.6" 81437 - sources."moment-2.29.1" 81390 + sources."moment-2.29.2" 81438 81391 (sources."morgan-1.10.0" // { 81439 81392 dependencies = [ 81440 - sources."depd-2.0.0" 81393 + sources."on-finished-2.3.0" 81441 81394 ]; 81442 81395 }) 81443 81396 sources."ms-2.0.0" 81444 81397 sources."mute-stream-0.0.6" 81445 - sources."nan-2.15.0" 81446 81398 sources."negotiator-0.6.3" 81447 - sources."node-addon-api-2.0.2" 81448 81399 sources."node-fetch-2.6.7" 81449 - sources."node-gyp-build-4.4.0" 81450 81400 sources."nofilter-3.1.0" 81451 81401 sources."normalize-url-4.5.1" 81452 81402 sources."npmlog-2.0.4" 81453 81403 sources."number-is-nan-1.0.1" 81454 81404 sources."object-assign-4.1.1" 81455 - sources."on-finished-2.3.0" 81405 + sources."object-inspect-1.12.0" 81406 + sources."on-finished-2.4.1" 81456 81407 sources."on-headers-1.0.2" 81457 81408 sources."once-1.4.0" 81458 81409 sources."onetime-1.1.0" ··· 81469 81420 sources."os-shim-0.1.3" 81470 81421 sources."os-tmpdir-1.0.2" 81471 81422 sources."p-cancelable-1.1.0" 81472 - sources."p2tr-1.3.0" 81423 + sources."p2tr-1.3.1" 81473 81424 (sources."package-json-6.5.0" // { 81474 81425 dependencies = [ 81475 81426 sources."semver-6.3.0" 81476 81427 ]; 81477 81428 }) 81478 - sources."paid-services-3.14.5" 81429 + (sources."paid-services-3.14.5" // { 81430 + dependencies = [ 81431 + sources."@alexbosworth/fiat-1.0.1" 81432 + sources."@grpc/grpc-js-1.5.7" 81433 + sources."@types/node-17.0.21" 81434 + sources."@types/ws-8.5.2" 81435 + sources."asyncjs-util-1.2.8" 81436 + sources."body-parser-1.19.2" 81437 + sources."bolt01-1.2.3" 81438 + sources."bolt07-1.8.0" 81439 + sources."bolt09-0.2.2" 81440 + sources."depd-1.1.2" 81441 + sources."http-errors-1.8.1" 81442 + (sources."invoices-2.0.4" // { 81443 + dependencies = [ 81444 + sources."tiny-secp256k1-2.2.0" 81445 + ]; 81446 + }) 81447 + sources."lightning-5.8.6" 81448 + sources."ln-service-53.9.4" 81449 + (sources."ln-sync-3.11.0" // { 81450 + dependencies = [ 81451 + sources."lightning-5.8.2" 81452 + sources."ln-service-53.9.3" 81453 + ]; 81454 + }) 81455 + sources."on-finished-2.3.0" 81456 + sources."psbt-2.0.0" 81457 + sources."qs-6.9.7" 81458 + sources."raw-body-2.4.3" 81459 + sources."statuses-1.5.0" 81460 + sources."type-fest-2.12.0" 81461 + ]; 81462 + }) 81479 81463 sources."parseurl-1.3.3" 81480 81464 sources."path-to-regexp-0.1.7" 81481 81465 sources."pinkie-2.0.4" 81482 81466 sources."pinkie-promise-2.0.1" 81483 81467 sources."prepend-http-2.0.0" 81484 - (sources."probing-2.0.3" // { 81485 - dependencies = [ 81486 - sources."@grpc/grpc-js-1.5.4" 81487 - sources."@types/node-17.0.15" 81488 - sources."@types/ws-8.2.2" 81489 - sources."body-parser-1.19.1" 81490 - sources."bolt09-0.2.1" 81491 - sources."bytes-3.1.1" 81492 - sources."cookie-0.4.1" 81493 - sources."express-4.17.2" 81494 - sources."invoices-2.0.3" 81495 - sources."lightning-5.6.2" 81496 - sources."ln-service-53.7.3" 81497 - sources."qs-6.9.6" 81498 - sources."raw-body-2.4.2" 81499 - sources."safe-buffer-5.2.1" 81500 - sources."secp256k1-4.0.3" 81501 - sources."tiny-secp256k1-2.2.0" 81502 - sources."type-fest-2.11.1" 81503 - sources."uint8array-tools-0.0.6" 81504 - sources."ws-8.4.2" 81505 - ]; 81506 - }) 81468 + sources."probing-2.0.5" 81507 81469 sources."process-nextick-args-2.0.1" 81508 81470 sources."protobufjs-6.11.2" 81509 81471 sources."proxy-addr-2.0.7" 81510 - sources."psbt-2.0.0" 81472 + sources."psbt-2.0.1" 81511 81473 sources."pump-3.0.0" 81512 81474 sources."punycode-2.1.1" 81513 81475 sources."pupa-2.1.1" 81514 81476 sources."pushdata-bitcoin-1.0.1" 81515 81477 sources."qrcode-terminal-0.12.0" 81516 - sources."qs-6.9.7" 81478 + sources."qs-6.10.3" 81517 81479 sources."randombytes-2.1.0" 81518 81480 sources."range-parser-1.2.1" 81519 - sources."raw-body-2.4.3" 81481 + sources."raw-body-2.5.1" 81520 81482 (sources."rc-1.2.8" // { 81521 81483 dependencies = [ 81522 81484 sources."ini-1.3.8" ··· 81536 81498 sources."safe-buffer-5.1.2" 81537 81499 sources."safer-buffer-2.1.2" 81538 81500 sources."sanitize-filename-1.6.3" 81539 - sources."secp256k1-4.0.2" 81540 - sources."semver-7.3.5" 81501 + sources."semver-7.3.6" 81541 81502 (sources."semver-diff-3.1.1" // { 81542 81503 dependencies = [ 81543 81504 sources."semver-6.3.0" ··· 81545 81506 }) 81546 81507 (sources."send-0.17.2" // { 81547 81508 dependencies = [ 81509 + sources."depd-1.1.2" 81510 + sources."destroy-1.0.4" 81511 + sources."http-errors-1.8.1" 81548 81512 sources."ms-2.1.3" 81513 + sources."on-finished-2.3.0" 81514 + sources."statuses-1.5.0" 81549 81515 ]; 81550 81516 }) 81551 81517 sources."serve-static-1.14.2" 81552 81518 sources."setprototypeof-1.2.0" 81553 81519 sources."sha.js-2.4.11" 81520 + sources."side-channel-1.0.4" 81554 81521 sources."signal-exit-3.0.7" 81555 81522 sources."sjcl-1.0.8" 81556 81523 (sources."slice-ansi-4.0.0" // { ··· 81568 81535 }) 81569 81536 sources."spawn-sync-1.0.15" 81570 81537 sources."stack-trace-0.0.10" 81571 - sources."statuses-1.5.0" 81538 + sources."statuses-2.0.1" 81572 81539 sources."string-width-4.2.3" 81573 81540 sources."string_decoder-1.1.1" 81574 81541 sources."strip-ansi-6.0.1" ··· 81586 81553 }) 81587 81554 sources."through-2.3.8" 81588 81555 sources."tiny-emitter-2.1.0" 81589 - sources."tiny-secp256k1-2.2.1" 81556 + (sources."tiny-secp256k1-2.2.1" // { 81557 + dependencies = [ 81558 + sources."uint8array-tools-0.0.7" 81559 + ]; 81560 + }) 81590 81561 sources."tmp-0.0.29" 81591 81562 sources."to-readable-stream-1.0.0" 81592 81563 sources."toidentifier-1.0.1" ··· 81595 81566 sources."tslib-2.3.1" 81596 81567 sources."tweetnacl-1.0.3" 81597 81568 sources."tweetnacl-util-0.15.1" 81598 - sources."type-fest-2.12.0" 81569 + sources."type-fest-2.12.2" 81599 81570 sources."type-is-1.6.18" 81600 81571 sources."typedarray-0.0.6" 81601 81572 sources."typedarray-to-buffer-3.1.5" 81602 81573 sources."typeforce-1.18.0" 81603 - sources."uint8array-tools-0.0.7" 81574 + sources."uint8array-tools-0.0.6" 81604 81575 sources."unique-string-2.0.0" 81605 81576 sources."unpipe-1.0.0" 81606 81577 (sources."update-notifier-5.1.0" // { ··· 81640 81611 sources."ws-8.5.0" 81641 81612 sources."xdg-basedir-4.0.0" 81642 81613 sources."y18n-5.0.8" 81643 - sources."yallist-4.0.0" 81644 81614 sources."yargs-16.2.0" 81645 81615 sources."yargs-parser-20.2.9" 81646 81616 ]; ··· 81838 81808 sources."domhandler-4.3.1" 81839 81809 ]; 81840 81810 }) 81841 - sources."domelementtype-2.2.0" 81811 + sources."domelementtype-2.3.0" 81842 81812 sources."domhandler-3.3.0" 81843 81813 (sources."domutils-2.8.0" // { 81844 81814 dependencies = [ ··· 82586 82556 dependencies = [ 82587 82557 sources."@babel/code-frame-7.16.7" 82588 82558 sources."@babel/helper-validator-identifier-7.16.7" 82589 - sources."@babel/highlight-7.16.10" 82590 - sources."@babel/parser-7.17.8" 82559 + sources."@babel/highlight-7.17.9" 82560 + sources."@babel/parser-7.17.9" 82591 82561 sources."@babel/types-7.17.0" 82592 82562 sources."@kwsites/file-exists-1.1.1" 82593 82563 sources."@kwsites/promise-deferred-1.1.1" ··· 82946 82916 sources."safe-buffer-5.1.2" 82947 82917 sources."safe-json-stringify-1.2.0" 82948 82918 sources."safer-buffer-2.1.2" 82949 - sources."semver-7.3.5" 82919 + (sources."semver-7.3.6" // { 82920 + dependencies = [ 82921 + sources."lru-cache-7.8.0" 82922 + ]; 82923 + }) 82950 82924 (sources."send-0.17.2" // { 82951 82925 dependencies = [ 82952 82926 (sources."debug-2.6.9" // { ··· 84085 84059 sources."@nodelib/fs.stat-2.0.5" 84086 84060 sources."@nodelib/fs.walk-1.2.8" 84087 84061 sources."@types/node-12.20.47" 84088 - sources."@xmldom/xmldom-0.8.1" 84062 + sources."@xmldom/xmldom-0.8.2" 84089 84063 sources."ajv-8.11.0" 84090 84064 sources."ansi-regex-5.0.1" 84091 84065 sources."ansi-styles-4.3.0" ··· 84095 84069 sources."call-bind-1.0.2" 84096 84070 sources."camelcase-6.3.0" 84097 84071 sources."case-1.6.3" 84098 - sources."cdk8s-1.5.62" 84099 - sources."cdk8s-plus-22-1.0.0-beta.180" 84072 + sources."cdk8s-1.5.64" 84073 + sources."cdk8s-plus-22-1.0.0-beta.181" 84100 84074 sources."chalk-4.1.2" 84101 84075 sources."cliui-7.0.4" 84102 84076 sources."clone-2.1.2" ··· 84109 84083 sources."color-name-1.1.4" 84110 84084 sources."colors-1.4.0" 84111 84085 sources."commonmark-0.30.0" 84112 - sources."constructs-3.3.259" 84086 + sources."constructs-3.3.261" 84113 84087 sources."date-format-4.0.6" 84114 84088 sources."debug-4.3.4" 84115 84089 sources."decamelize-5.0.1" ··· 84196 84170 sources."yargs-16.2.0" 84197 84171 ]; 84198 84172 }) 84199 - (sources."jsii-srcmak-0.1.521" // { 84173 + (sources."jsii-srcmak-0.1.523" // { 84200 84174 dependencies = [ 84201 84175 sources."fs-extra-9.1.0" 84202 84176 ]; 84203 84177 }) 84204 84178 sources."json-schema-0.4.0" 84205 84179 sources."json-schema-traverse-1.0.0" 84206 - sources."json2jsii-0.2.181" 84180 + sources."json2jsii-0.2.183" 84207 84181 sources."jsonfile-6.1.0" 84208 84182 sources."jsonschema-1.4.0" 84209 84183 sources."locate-path-5.0.0" 84210 84184 sources."log4js-6.4.4" 84211 84185 sources."lower-case-2.0.2" 84212 - sources."lru-cache-6.0.0" 84186 + sources."lru-cache-7.8.0" 84213 84187 sources."mdurl-1.0.1" 84214 84188 sources."merge2-1.4.1" 84215 84189 sources."micromatch-4.0.5" ··· 84236 84210 sources."reusify-1.0.4" 84237 84211 sources."rfdc-1.3.0" 84238 84212 sources."run-parallel-1.2.0" 84239 - sources."semver-7.3.5" 84213 + sources."semver-7.3.6" 84240 84214 (sources."semver-intersect-1.4.0" // { 84241 84215 dependencies = [ 84242 84216 sources."semver-5.7.1" ··· 84247 84221 sources."snake-case-3.0.4" 84248 84222 sources."sort-json-2.0.1" 84249 84223 sources."spdx-license-list-6.5.0" 84250 - sources."sscaff-1.2.248" 84224 + sources."sscaff-1.2.250" 84251 84225 (sources."streamroller-3.0.6" // { 84252 84226 dependencies = [ 84253 84227 sources."fs-extra-10.0.1" ··· 84273 84247 sources."wrap-ansi-7.0.0" 84274 84248 sources."xmlbuilder-15.1.1" 84275 84249 sources."y18n-5.0.8" 84276 - sources."yallist-4.0.0" 84277 84250 sources."yaml-2.0.0-11" 84278 84251 (sources."yargs-15.4.1" // { 84279 84252 dependencies = [ ··· 84306 84279 }; 84307 84280 dependencies = [ 84308 84281 sources."@babel/code-frame-7.16.7" 84309 - sources."@babel/generator-7.17.7" 84282 + sources."@babel/generator-7.17.9" 84310 84283 sources."@babel/helper-validator-identifier-7.16.7" 84311 - sources."@babel/highlight-7.16.10" 84312 - sources."@babel/parser-7.17.8" 84284 + sources."@babel/highlight-7.17.9" 84285 + sources."@babel/parser-7.17.9" 84313 84286 sources."@babel/template-7.16.7" 84314 84287 sources."@babel/types-7.17.0" 84315 84288 sources."@cdktf/hcl2cdk-0.10.1" ··· 84331 84304 sources."@nodelib/fs.walk-1.2.8" 84332 84305 sources."@types/node-17.0.23" 84333 84306 sources."@types/node-fetch-2.6.1" 84334 - sources."@xmldom/xmldom-0.8.1" 84307 + sources."@xmldom/xmldom-0.8.2" 84335 84308 sources."ansi-regex-5.0.1" 84336 84309 sources."ansi-styles-3.2.1" 84337 84310 sources."arr-rotate-1.0.0" ··· 84358 84331 sources."combined-stream-1.0.8" 84359 84332 sources."commonmark-0.30.0" 84360 84333 sources."concat-map-0.0.1" 84361 - sources."constructs-10.0.106" 84334 + sources."constructs-10.0.108" 84362 84335 sources."date-format-4.0.6" 84363 84336 sources."debug-4.3.4" 84364 84337 sources."decamelize-1.2.0" ··· 84501 84474 sources."yargs-parser-20.2.9" 84502 84475 ]; 84503 84476 }) 84504 - (sources."jsii-srcmak-0.1.521" // { 84477 + (sources."jsii-srcmak-0.1.523" // { 84505 84478 dependencies = [ 84506 84479 sources."fs-extra-9.1.0" 84507 84480 sources."jsonfile-6.1.0" ··· 84514 84487 sources."locate-path-5.0.0" 84515 84488 sources."lodash.isequal-4.5.0" 84516 84489 sources."log4js-6.4.4" 84517 - sources."lru-cache-6.0.0" 84490 + sources."lru-cache-7.8.0" 84518 84491 sources."mdurl-1.0.1" 84519 84492 sources."merge2-1.4.1" 84520 84493 sources."micromatch-4.0.5" ··· 84554 84527 sources."rfdc-1.3.0" 84555 84528 sources."run-parallel-1.2.0" 84556 84529 sources."safe-buffer-5.2.1" 84557 - sources."semver-7.3.5" 84530 + sources."semver-7.3.6" 84558 84531 (sources."semver-intersect-1.4.0" // { 84559 84532 dependencies = [ 84560 84533 sources."semver-5.7.1" ··· 84602 84575 sources."wrappy-1.0.2" 84603 84576 sources."xmlbuilder-15.1.1" 84604 84577 sources."y18n-4.0.3" 84605 - sources."yallist-4.0.0" 84606 84578 (sources."yargs-17.4.0" // { 84607 84579 dependencies = [ 84608 84580 sources."ansi-styles-4.3.0" ··· 84691 84663 dependencies = [ 84692 84664 sources."@babel/code-frame-7.16.7" 84693 84665 sources."@babel/helper-validator-identifier-7.16.7" 84694 - sources."@babel/highlight-7.16.10" 84666 + sources."@babel/highlight-7.17.9" 84695 84667 sources."@types/minimist-1.2.2" 84696 84668 sources."@types/normalize-package-data-2.4.1" 84697 84669 sources."ansi-styles-3.2.1" ··· 84755 84727 sources."read-pkg-6.0.0" 84756 84728 sources."read-pkg-up-8.0.0" 84757 84729 sources."redent-4.0.0" 84758 - sources."semver-7.3.5" 84730 + (sources."semver-7.3.6" // { 84731 + dependencies = [ 84732 + sources."lru-cache-7.8.0" 84733 + ]; 84734 + }) 84759 84735 sources."shebang-command-2.0.0" 84760 84736 sources."shebang-regex-3.0.0" 84761 84737 sources."signal-exit-3.0.7" ··· 85339 85315 }) 85340 85316 sources."lodash-4.17.21" 85341 85317 sources."log4js-6.4.4" 85342 - sources."lru-cache-6.0.0" 85318 + sources."lru-cache-7.8.0" 85343 85319 sources."metals-languageclient-0.4.2" 85344 85320 sources."minimatch-3.1.2" 85345 85321 sources."minimist-1.2.6" ··· 85381 85357 sources."rfdc-1.3.0" 85382 85358 sources."rimraf-3.0.2" 85383 85359 sources."safe-buffer-5.2.1" 85384 - sources."semver-7.3.5" 85360 + sources."semver-7.3.6" 85385 85361 sources."setimmediate-1.0.5" 85386 85362 sources."shebang-command-1.2.0" 85387 85363 sources."shebang-regex-1.0.0" ··· 85633 85609 sources."@ampproject/remapping-2.1.2" 85634 85610 sources."@babel/code-frame-7.16.7" 85635 85611 sources."@babel/compat-data-7.17.7" 85636 - sources."@babel/core-7.17.8" 85637 - sources."@babel/generator-7.17.7" 85612 + sources."@babel/core-7.17.9" 85613 + sources."@babel/generator-7.17.9" 85638 85614 sources."@babel/helper-compilation-targets-7.17.7" 85639 85615 sources."@babel/helper-environment-visitor-7.16.7" 85640 - sources."@babel/helper-function-name-7.16.7" 85641 - sources."@babel/helper-get-function-arity-7.16.7" 85616 + sources."@babel/helper-function-name-7.17.9" 85642 85617 sources."@babel/helper-hoist-variables-7.16.7" 85643 85618 sources."@babel/helper-module-imports-7.16.7" 85644 85619 sources."@babel/helper-module-transforms-7.17.7" ··· 85646 85621 sources."@babel/helper-split-export-declaration-7.16.7" 85647 85622 sources."@babel/helper-validator-identifier-7.16.7" 85648 85623 sources."@babel/helper-validator-option-7.16.7" 85649 - sources."@babel/helpers-7.17.8" 85650 - (sources."@babel/highlight-7.16.10" // { 85624 + sources."@babel/helpers-7.17.9" 85625 + (sources."@babel/highlight-7.17.9" // { 85651 85626 dependencies = [ 85652 85627 sources."chalk-2.4.2" 85653 85628 ]; 85654 85629 }) 85655 - sources."@babel/parser-7.17.8" 85630 + sources."@babel/parser-7.17.9" 85656 85631 sources."@babel/template-7.16.7" 85657 - sources."@babel/traverse-7.17.3" 85632 + sources."@babel/traverse-7.17.9" 85658 85633 sources."@babel/types-7.17.0" 85659 85634 sources."@jridgewell/resolve-uri-3.0.5" 85660 85635 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 85722 85697 sources."dir-glob-3.0.1" 85723 85698 (sources."dom-serializer-0.2.2" // { 85724 85699 dependencies = [ 85725 - sources."domelementtype-2.2.0" 85700 + sources."domelementtype-2.3.0" 85726 85701 sources."entities-2.2.0" 85727 85702 ]; 85728 85703 }) 85729 85704 sources."domelementtype-1.3.1" 85730 85705 sources."domhandler-2.4.2" 85731 85706 sources."domutils-1.7.0" 85732 - sources."electron-to-chromium-1.4.103" 85707 + sources."electron-to-chromium-1.4.106" 85733 85708 sources."emoji-regex-8.0.0" 85734 85709 sources."entities-1.1.2" 85735 85710 sources."error-ex-1.3.2" ··· 85763 85738 sources."has-1.0.3" 85764 85739 sources."has-flag-3.0.0" 85765 85740 sources."hosted-git-info-4.1.0" 85766 - sources."html-tags-3.1.0" 85741 + sources."html-tags-3.2.0" 85767 85742 sources."htmlparser2-3.10.1" 85768 85743 sources."ignore-5.2.0" 85769 85744 (sources."import-fresh-3.3.0" // { ··· 85828 85803 sources."node-releases-2.0.2" 85829 85804 (sources."normalize-package-data-3.0.3" // { 85830 85805 dependencies = [ 85831 - sources."semver-7.3.5" 85806 + sources."lru-cache-7.8.0" 85807 + sources."semver-7.3.6" 85832 85808 ]; 85833 85809 }) 85834 85810 sources."normalize-range-0.1.2" ··· 86013 85989 dependencies = [ 86014 85990 sources."@babel/code-frame-7.16.7" 86015 85991 sources."@babel/helper-validator-identifier-7.16.7" 86016 - sources."@babel/highlight-7.16.10" 85992 + sources."@babel/highlight-7.17.9" 86017 85993 sources."ansi-styles-3.2.1" 86018 85994 sources."argparse-1.0.10" 86019 85995 sources."balanced-match-1.0.2" ··· 86100 86076 coc-tsserver = nodeEnv.buildNodePackage { 86101 86077 name = "coc-tsserver"; 86102 86078 packageName = "coc-tsserver"; 86103 - version = "1.9.15"; 86079 + version = "1.9.16"; 86104 86080 src = fetchurl { 86105 - url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.9.15.tgz"; 86106 - sha512 = "7mvLHnOqiXl0sk6mq78SmdIYL0nouIzejpTDgRlRjUrAXTCqXfpFVqfJg+2xASpcGTR5nH1lYMk/LXRrnFltIw=="; 86081 + url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.9.16.tgz"; 86082 + sha512 = "aTEVdLHrxbvlw1EctzSIzATXk10NBskOXk15LA6gCFsLC8sctzf437BHr+IfW5Le4kCTb4+Nrr+RYMl2+i7EAw=="; 86107 86083 }; 86108 86084 dependencies = [ 86109 86085 sources."typescript-4.6.3" ··· 86147 86123 dependencies = [ 86148 86124 sources."@babel/code-frame-7.12.11" 86149 86125 sources."@babel/helper-validator-identifier-7.16.7" 86150 - (sources."@babel/highlight-7.16.10" // { 86126 + (sources."@babel/highlight-7.17.9" // { 86151 86127 dependencies = [ 86152 86128 sources."chalk-2.4.2" 86153 86129 sources."escape-string-regexp-1.0.5" ··· 86259 86235 sources."lodash-4.17.21" 86260 86236 sources."lodash.merge-4.6.2" 86261 86237 sources."lodash.truncate-4.4.2" 86262 - sources."lru-cache-6.0.0" 86238 + sources."lru-cache-7.8.0" 86263 86239 sources."minimatch-3.1.2" 86264 86240 sources."minimist-1.2.6" 86265 86241 sources."mkdirp-0.5.6" ··· 86283 86259 sources."resolve-1.22.0" 86284 86260 sources."resolve-from-4.0.0" 86285 86261 sources."rimraf-3.0.2" 86286 - sources."semver-7.3.5" 86262 + sources."semver-7.3.6" 86287 86263 sources."shebang-command-2.0.0" 86288 86264 sources."shebang-regex-3.0.0" 86289 86265 (sources."slice-ansi-4.0.0" // { ··· 86331 86307 sources."which-2.0.2" 86332 86308 sources."word-wrap-1.2.3" 86333 86309 sources."wrappy-1.0.2" 86334 - sources."yallist-4.0.0" 86335 86310 ]; 86336 86311 buildInputs = globalBuildInputs; 86337 86312 meta = { ··· 86787 86762 dependencies = [ 86788 86763 sources."@babel/code-frame-7.16.7" 86789 86764 sources."@babel/helper-validator-identifier-7.16.7" 86790 - sources."@babel/highlight-7.16.10" 86765 + sources."@babel/highlight-7.17.9" 86791 86766 sources."@hutson/parse-repository-url-3.0.2" 86792 86767 sources."@types/minimist-1.2.2" 86793 86768 sources."@types/normalize-package-data-2.4.1" ··· 86918 86893 sources."neo-async-2.6.2" 86919 86894 (sources."normalize-package-data-3.0.3" // { 86920 86895 dependencies = [ 86921 - sources."semver-7.3.5" 86896 + sources."lru-cache-7.8.0" 86897 + sources."semver-7.3.6" 86922 86898 ]; 86923 86899 }) 86924 86900 sources."p-limit-1.3.0" ··· 87480 87456 sources."safe-buffer-5.1.2" 87481 87457 sources."safer-buffer-2.1.2" 87482 87458 sources."sax-1.1.4" 87483 - sources."semver-7.3.5" 87459 + (sources."semver-7.3.6" // { 87460 + dependencies = [ 87461 + sources."lru-cache-7.8.0" 87462 + ]; 87463 + }) 87484 87464 (sources."semver-diff-3.1.1" // { 87485 87465 dependencies = [ 87486 87466 sources."semver-6.3.0" ··· 87613 87593 dependencies = [ 87614 87594 sources."@babel/code-frame-7.16.7" 87615 87595 sources."@babel/helper-validator-identifier-7.16.7" 87616 - sources."@babel/highlight-7.16.10" 87596 + sources."@babel/highlight-7.17.9" 87617 87597 sources."@nodelib/fs.scandir-2.1.5" 87618 87598 sources."@nodelib/fs.stat-2.0.5" 87619 87599 sources."@nodelib/fs.walk-1.2.8" ··· 87686 87666 sources."nested-error-stacks-2.1.1" 87687 87667 (sources."normalize-package-data-3.0.3" // { 87688 87668 dependencies = [ 87689 - sources."semver-7.3.5" 87669 + sources."lru-cache-7.8.0" 87670 + sources."semver-7.3.6" 87690 87671 ]; 87691 87672 }) 87692 87673 sources."p-event-4.2.0" ··· 87783 87764 sources."debug-3.2.7" 87784 87765 sources."define-properties-1.1.3" 87785 87766 sources."delayed-stream-1.0.0" 87786 - sources."es5-ext-0.10.59" 87767 + sources."es5-ext-0.10.60" 87787 87768 sources."es6-iterator-2.0.3" 87788 87769 sources."es6-map-0.1.5" 87789 87770 (sources."es6-set-0.1.5" // { ··· 87939 87920 sources."isexe-2.0.0" 87940 87921 sources."jsonfile-6.1.0" 87941 87922 sources."kleur-3.0.3" 87942 - sources."lru-cache-6.0.0" 87923 + sources."lru-cache-7.8.0" 87943 87924 sources."minimatch-3.1.2" 87944 87925 sources."minimist-1.2.6" 87945 87926 sources."mkdirp-0.5.6" ··· 87952 87933 sources."readable-stream-1.1.14" 87953 87934 sources."rimraf-2.7.1" 87954 87935 sources."safe-buffer-5.1.2" 87955 - sources."semver-7.3.5" 87936 + sources."semver-7.3.6" 87956 87937 sources."shebang-command-2.0.0" 87957 87938 sources."shebang-regex-3.0.0" 87958 87939 sources."sisteransi-1.0.5" ··· 87983 87964 sources."which-2.0.2" 87984 87965 sources."wrappy-1.0.2" 87985 87966 sources."xtend-4.0.2" 87986 - sources."yallist-4.0.0" 87987 87967 ]; 87988 87968 buildInputs = globalBuildInputs; 87989 87969 meta = { ··· 88024 88004 dependencies = [ 88025 88005 sources."@babel/code-frame-7.16.7" 88026 88006 sources."@babel/helper-validator-identifier-7.16.7" 88027 - (sources."@babel/highlight-7.16.10" // { 88007 + (sources."@babel/highlight-7.17.9" // { 88028 88008 dependencies = [ 88029 88009 sources."ansi-styles-3.2.1" 88030 88010 sources."chalk-2.4.2" ··· 88039 88019 sources."@cspell/cspell-types-5.19.5" 88040 88020 sources."@cspell/dict-ada-2.0.0" 88041 88021 sources."@cspell/dict-aws-2.0.0" 88042 - sources."@cspell/dict-bash-2.0.1" 88022 + sources."@cspell/dict-bash-2.0.2" 88043 88023 sources."@cspell/dict-companies-2.0.3" 88044 - sources."@cspell/dict-cpp-2.0.0" 88024 + sources."@cspell/dict-cpp-2.0.1" 88045 88025 sources."@cspell/dict-cryptocurrencies-2.0.0" 88046 88026 sources."@cspell/dict-csharp-2.0.1" 88047 88027 sources."@cspell/dict-css-2.0.0" ··· 88104 88084 sources."error-ex-1.3.2" 88105 88085 sources."escape-string-regexp-1.0.5" 88106 88086 sources."esprima-4.0.1" 88107 - sources."fast-equals-3.0.0" 88087 + sources."fast-equals-3.0.1" 88108 88088 sources."fast-json-stable-stringify-2.1.0" 88109 88089 sources."file-entry-cache-6.0.1" 88110 88090 sources."fill-range-7.0.1" ··· 88139 88119 sources."jsonfile-6.1.0" 88140 88120 sources."lines-and-columns-1.2.4" 88141 88121 sources."locate-path-6.0.0" 88142 - sources."lru-cache-6.0.0" 88122 + sources."lru-cache-7.8.0" 88143 88123 (sources."make-dir-3.1.0" // { 88144 88124 dependencies = [ 88145 88125 sources."semver-6.3.0" ··· 88160 88140 sources."resolve-from-5.0.0" 88161 88141 sources."resolve-global-1.0.0" 88162 88142 sources."rimraf-3.0.2" 88163 - sources."semver-7.3.5" 88143 + sources."semver-7.3.6" 88164 88144 sources."signal-exit-3.0.7" 88165 88145 sources."strip-ansi-6.0.1" 88166 88146 sources."supports-color-7.2.0" ··· 88173 88153 sources."wrappy-1.0.2" 88174 88154 sources."write-file-atomic-3.0.3" 88175 88155 sources."xdg-basedir-4.0.0" 88176 - sources."yallist-4.0.0" 88177 88156 sources."yaml-1.10.2" 88178 88157 sources."yocto-queue-0.1.0" 88179 88158 ]; ··· 88855 88834 "deltachat-desktop-../../applications/networking/instant-messengers/deltachat-desktop" = nodeEnv.buildNodePackage { 88856 88835 name = "deltachat-desktop"; 88857 88836 packageName = "deltachat-desktop"; 88858 - version = "1.28.1"; 88837 + version = "1.28.2"; 88859 88838 src = ../../applications/networking/instant-messengers/deltachat-desktop; 88860 88839 dependencies = [ 88861 88840 sources."@ampproject/remapping-2.1.2" 88862 88841 sources."@babel/code-frame-7.16.7" 88863 88842 sources."@babel/compat-data-7.17.7" 88864 - sources."@babel/core-7.17.8" 88865 - (sources."@babel/generator-7.17.7" // { 88843 + sources."@babel/core-7.17.9" 88844 + (sources."@babel/generator-7.17.9" // { 88866 88845 dependencies = [ 88867 88846 sources."source-map-0.5.7" 88868 88847 ]; ··· 88870 88849 sources."@babel/helper-annotate-as-pure-7.16.7" 88871 88850 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 88872 88851 sources."@babel/helper-compilation-targets-7.17.7" 88873 - sources."@babel/helper-create-class-features-plugin-7.17.6" 88852 + sources."@babel/helper-create-class-features-plugin-7.17.9" 88874 88853 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 88875 88854 sources."@babel/helper-define-polyfill-provider-0.3.1" 88876 88855 sources."@babel/helper-environment-visitor-7.16.7" 88877 88856 sources."@babel/helper-explode-assignable-expression-7.16.7" 88878 - sources."@babel/helper-function-name-7.16.7" 88879 - sources."@babel/helper-get-function-arity-7.16.7" 88857 + sources."@babel/helper-function-name-7.17.9" 88880 88858 sources."@babel/helper-hoist-variables-7.16.7" 88881 88859 sources."@babel/helper-member-expression-to-functions-7.17.7" 88882 88860 sources."@babel/helper-module-imports-7.16.7" ··· 88891 88869 sources."@babel/helper-validator-identifier-7.16.7" 88892 88870 sources."@babel/helper-validator-option-7.16.7" 88893 88871 sources."@babel/helper-wrap-function-7.16.8" 88894 - sources."@babel/helpers-7.17.8" 88895 - sources."@babel/highlight-7.16.10" 88896 - sources."@babel/parser-7.17.8" 88872 + sources."@babel/helpers-7.17.9" 88873 + sources."@babel/highlight-7.17.9" 88874 + sources."@babel/parser-7.17.9" 88897 88875 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 88898 88876 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 88899 88877 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 88941 88919 sources."@babel/plugin-transform-literals-7.16.7" 88942 88920 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 88943 88921 sources."@babel/plugin-transform-modules-amd-7.16.7" 88944 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 88922 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 88945 88923 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 88946 88924 sources."@babel/plugin-transform-modules-umd-7.16.7" 88947 88925 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 88953 88931 sources."@babel/plugin-transform-react-jsx-7.17.3" 88954 88932 sources."@babel/plugin-transform-react-jsx-development-7.16.7" 88955 88933 sources."@babel/plugin-transform-react-pure-annotations-7.16.7" 88956 - sources."@babel/plugin-transform-regenerator-7.16.7" 88934 + sources."@babel/plugin-transform-regenerator-7.17.9" 88957 88935 sources."@babel/plugin-transform-reserved-words-7.16.7" 88958 88936 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 88959 88937 sources."@babel/plugin-transform-spread-7.16.7" ··· 88965 88943 sources."@babel/preset-env-7.16.11" 88966 88944 sources."@babel/preset-modules-0.1.5" 88967 88945 sources."@babel/preset-react-7.16.7" 88968 - sources."@babel/runtime-7.17.8" 88946 + sources."@babel/runtime-7.17.9" 88969 88947 sources."@babel/template-7.16.7" 88970 - sources."@babel/traverse-7.17.3" 88948 + sources."@babel/traverse-7.17.9" 88971 88949 sources."@babel/types-7.17.0" 88972 - sources."@blueprintjs/colors-4.0.2" 88950 + sources."@blueprintjs/colors-4.0.5" 88973 88951 sources."@blueprintjs/core-3.54.0" 88974 88952 sources."@blueprintjs/icons-3.33.0" 88975 88953 sources."@deltachat/message_parser_wasm-0.3.0" ··· 89003 88981 sources."@types/minimist-1.2.2" 89004 88982 sources."@types/node-14.18.12" 89005 88983 sources."@types/node-fetch-2.6.1" 89006 - sources."@types/prop-types-15.7.4" 88984 + sources."@types/prop-types-15.7.5" 89007 88985 sources."@types/rc-1.2.1" 89008 88986 sources."@types/react-16.14.24" 89009 88987 sources."@types/react-dom-16.9.14" ··· 89125 89103 sources."duplexer3-0.1.4" 89126 89104 sources."earcut-2.2.3" 89127 89105 sources."electron-14.2.9" 89128 - sources."electron-to-chromium-1.4.103" 89106 + sources."electron-to-chromium-1.4.106" 89129 89107 sources."emoji-js-clean-4.0.0" 89130 89108 sources."emoji-mart-3.0.1" 89131 89109 sources."emoji-regex-9.2.2" ··· 89206 89184 sources."glob-watcher-5.0.5" 89207 89185 (sources."global-agent-3.0.0" // { 89208 89186 dependencies = [ 89209 - sources."semver-7.3.5" 89187 + sources."semver-7.3.6" 89210 89188 ]; 89211 89189 }) 89212 89190 sources."global-tunnel-ng-2.7.1" ··· 89272 89250 sources."lodash.debounce-4.0.8" 89273 89251 sources."loose-envify-1.4.0" 89274 89252 sources."lowercase-keys-1.0.1" 89275 - sources."lru-cache-6.0.0" 89253 + sources."lru-cache-7.8.0" 89276 89254 sources."map-cache-0.2.2" 89277 89255 sources."map-visit-1.0.0" 89278 89256 (sources."mapbox-gl-1.13.2" // { ··· 89380 89358 sources."regenerate-1.4.2" 89381 89359 sources."regenerate-unicode-properties-10.0.1" 89382 89360 sources."regenerator-runtime-0.13.9" 89383 - sources."regenerator-transform-0.14.5" 89361 + sources."regenerator-transform-0.15.0" 89384 89362 sources."regex-not-1.0.2" 89385 89363 sources."regexp.prototype.flags-1.4.1" 89386 89364 sources."regexpu-core-5.0.1" ··· 89404 89382 sources."rw-0.1.4" 89405 89383 sources."safe-buffer-5.2.1" 89406 89384 sources."safe-regex-1.1.0" 89407 - (sources."sass-1.49.11" // { 89385 + (sources."sass-1.50.0" // { 89408 89386 dependencies = [ 89409 89387 sources."anymatch-3.1.2" 89410 89388 sources."binary-extensions-2.2.0" ··· 89495 89473 sources."string_decoder-1.3.0" 89496 89474 sources."strip-json-comments-2.0.1" 89497 89475 sources."sumchecker-3.0.1" 89498 - sources."supercluster-7.1.4" 89476 + sources."supercluster-7.1.5" 89499 89477 sources."supports-color-5.5.0" 89500 89478 sources."supports-preserve-symlinks-flag-1.0.0" 89501 89479 sources."temp-dir-1.0.0" ··· 89549 89527 sources."whatwg-url-5.0.0" 89550 89528 sources."wrappy-1.0.2" 89551 89529 sources."xml-js-1.6.11" 89552 - sources."yallist-4.0.0" 89553 89530 sources."yauzl-2.10.0" 89554 89531 ]; 89555 89532 buildInputs = globalBuildInputs; ··· 90171 90148 sources."jsonfile-6.1.0" 90172 90149 sources."jsprim-1.4.2" 90173 90150 sources."junk-3.1.0" 90174 - sources."keyv-4.2.1" 90151 + sources."keyv-4.2.2" 90175 90152 sources."load-json-file-2.0.0" 90176 90153 sources."locate-path-2.0.0" 90177 90154 sources."lodash-4.17.21" ··· 90316 90293 sources."rxjs-7.5.5" 90317 90294 sources."safe-buffer-5.2.1" 90318 90295 sources."safer-buffer-2.1.2" 90319 - sources."semver-7.3.5" 90296 + (sources."semver-7.3.6" // { 90297 + dependencies = [ 90298 + sources."lru-cache-7.8.0" 90299 + ]; 90300 + }) 90320 90301 sources."semver-compare-1.0.0" 90321 90302 sources."serialize-error-7.0.1" 90322 90303 sources."set-blocking-2.0.0" ··· 90458 90439 sources."@ampproject/remapping-2.1.2" 90459 90440 sources."@babel/code-frame-7.16.7" 90460 90441 sources."@babel/compat-data-7.17.7" 90461 - (sources."@babel/core-7.17.8" // { 90442 + (sources."@babel/core-7.17.9" // { 90462 90443 dependencies = [ 90463 90444 sources."semver-6.3.0" 90464 90445 ]; 90465 90446 }) 90466 - sources."@babel/generator-7.17.7" 90447 + sources."@babel/generator-7.17.9" 90467 90448 sources."@babel/helper-annotate-as-pure-7.16.7" 90468 90449 (sources."@babel/helper-compilation-targets-7.17.7" // { 90469 90450 dependencies = [ ··· 90471 90452 ]; 90472 90453 }) 90473 90454 sources."@babel/helper-environment-visitor-7.16.7" 90474 - sources."@babel/helper-function-name-7.16.7" 90475 - sources."@babel/helper-get-function-arity-7.16.7" 90455 + sources."@babel/helper-function-name-7.17.9" 90476 90456 sources."@babel/helper-hoist-variables-7.16.7" 90477 90457 sources."@babel/helper-module-imports-7.16.7" 90478 90458 sources."@babel/helper-module-transforms-7.17.7" ··· 90481 90461 sources."@babel/helper-split-export-declaration-7.16.7" 90482 90462 sources."@babel/helper-validator-identifier-7.16.7" 90483 90463 sources."@babel/helper-validator-option-7.16.7" 90484 - sources."@babel/helpers-7.17.8" 90485 - sources."@babel/highlight-7.16.10" 90486 - sources."@babel/parser-7.17.8" 90464 + sources."@babel/helpers-7.17.9" 90465 + sources."@babel/highlight-7.17.9" 90466 + sources."@babel/parser-7.17.9" 90487 90467 sources."@babel/plugin-proposal-object-rest-spread-7.17.3" 90488 90468 sources."@babel/plugin-syntax-jsx-7.16.7" 90489 90469 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 90491 90471 sources."@babel/plugin-transform-parameters-7.16.7" 90492 90472 sources."@babel/plugin-transform-react-jsx-7.17.3" 90493 90473 sources."@babel/template-7.16.7" 90494 - sources."@babel/traverse-7.17.3" 90474 + sources."@babel/traverse-7.17.9" 90495 90475 sources."@babel/types-7.17.0" 90496 90476 sources."@jridgewell/resolve-uri-3.0.5" 90497 90477 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 90534 90514 sources."concat-map-0.0.1" 90535 90515 (sources."conf-7.1.2" // { 90536 90516 dependencies = [ 90537 - sources."semver-7.3.5" 90517 + sources."semver-7.3.6" 90538 90518 ]; 90539 90519 }) 90540 90520 sources."convert-source-map-1.8.0" ··· 90549 90529 ]; 90550 90530 }) 90551 90531 sources."dot-prop-5.3.0" 90552 - sources."electron-to-chromium-1.4.103" 90532 + sources."electron-to-chromium-1.4.106" 90553 90533 sources."emoji-regex-8.0.0" 90554 90534 sources."emojilib-2.4.0" 90555 90535 sources."end-of-stream-1.4.4" ··· 90618 90598 sources."locate-path-3.0.0" 90619 90599 sources."lodash-4.17.21" 90620 90600 sources."loose-envify-1.4.0" 90621 - sources."lru-cache-6.0.0" 90601 + sources."lru-cache-7.8.0" 90622 90602 (sources."make-dir-3.1.0" // { 90623 90603 dependencies = [ 90624 90604 sources."semver-6.3.0" ··· 90744 90724 }) 90745 90725 sources."wrappy-1.0.2" 90746 90726 sources."ws-7.5.7" 90747 - sources."yallist-4.0.0" 90748 90727 sources."yargs-parser-18.1.3" 90749 90728 sources."yoga-layout-prebuilt-1.10.0" 90750 90729 ]; ··· 90783 90762 dependencies = [ 90784 90763 sources."@babel/code-frame-7.12.11" 90785 90764 sources."@babel/helper-validator-identifier-7.16.7" 90786 - (sources."@babel/highlight-7.16.10" // { 90765 + (sources."@babel/highlight-7.17.9" // { 90787 90766 dependencies = [ 90788 90767 sources."ansi-styles-3.2.1" 90789 90768 sources."chalk-2.4.2" ··· 90817 90796 sources."@fluentui/foundation-legacy-8.2.5" 90818 90797 sources."@fluentui/keyboard-key-0.4.0" 90819 90798 sources."@fluentui/merge-styles-8.5.0" 90820 - sources."@fluentui/react-8.64.0" 90799 + sources."@fluentui/react-8.64.1" 90821 90800 sources."@fluentui/react-focus-8.5.6" 90822 90801 sources."@fluentui/react-hooks-8.5.3" 90823 90802 sources."@fluentui/react-window-provider-2.2.0" ··· 90844 90823 ]; 90845 90824 }) 90846 90825 sources."@humanwhocodes/object-schema-1.2.1" 90847 - sources."@microsoft/load-themed-styles-1.10.250" 90826 + sources."@microsoft/load-themed-styles-1.10.251" 90848 90827 sources."@node-rs/crc32-1.5.0" 90849 90828 sources."@node-rs/crc32-android-arm-eabi-1.5.0" 90850 90829 sources."@node-rs/crc32-android-arm64-1.5.0" ··· 91247 91226 sources."enhanced-resolve-5.9.2" 91248 91227 sources."enquirer-2.3.6" 91249 91228 sources."error-ex-1.3.2" 91250 - sources."es5-ext-0.10.59" 91229 + sources."es5-ext-0.10.60" 91251 91230 sources."es6-iterator-2.0.3" 91252 91231 sources."es6-symbol-3.1.3" 91253 91232 sources."es6-weak-map-2.0.3" ··· 91648 91627 }) 91649 91628 sources."loose-envify-1.4.0" 91650 91629 sources."lowercase-keys-1.0.1" 91651 - sources."lru-cache-6.0.0" 91630 + sources."lru-cache-7.8.0" 91652 91631 sources."lru-queue-0.1.0" 91653 91632 sources."make-error-1.3.6" 91654 91633 sources."make-iterator-1.0.1" ··· 91681 91660 sources."mimic-response-1.0.1" 91682 91661 sources."minimatch-3.1.2" 91683 91662 sources."minimist-1.2.5" 91684 - (sources."minipass-2.9.0" // { 91685 - dependencies = [ 91686 - sources."yallist-3.1.1" 91687 - ]; 91688 - }) 91663 + sources."minipass-2.9.0" 91689 91664 sources."minizlib-1.3.3" 91690 91665 (sources."mirakurun-3.9.0-beta.26" // { 91691 91666 dependencies = [ ··· 92032 92007 sources."saslprep-1.0.3" 92033 92008 sources."sax-1.2.4" 92034 92009 sources."scheduler-0.20.2" 92035 - sources."semver-7.3.5" 92010 + sources."semver-7.3.6" 92036 92011 sources."semver-greatest-satisfied-range-1.1.0" 92037 92012 (sources."send-0.17.1" // { 92038 92013 dependencies = [ ··· 92177 92152 sources."minimist-1.2.6" 92178 92153 sources."mkdirp-0.5.6" 92179 92154 sources."safe-buffer-5.2.1" 92180 - sources."yallist-3.1.1" 92181 92155 ]; 92182 92156 }) 92183 92157 sources."text-table-0.2.0" ··· 92319 92293 sources."xmlbuilder-11.0.1" 92320 92294 sources."xtend-4.0.2" 92321 92295 sources."y18n-5.0.8" 92322 - sources."yallist-4.0.0" 92296 + sources."yallist-3.1.1" 92323 92297 (sources."yargonaut-1.1.4" // { 92324 92298 dependencies = [ 92325 92299 sources."ansi-styles-2.2.1" ··· 92360 92334 sources."@achrinza/node-ipc-9.2.2" 92361 92335 sources."@babel/code-frame-7.16.7" 92362 92336 sources."@babel/helper-validator-identifier-7.16.7" 92363 - sources."@babel/highlight-7.16.10" 92337 + sources."@babel/highlight-7.17.9" 92364 92338 (sources."@eslint/eslintrc-0.4.3" // { 92365 92339 dependencies = [ 92366 92340 sources."acorn-7.4.1" ··· 92536 92510 dependencies = [ 92537 92511 sources."lru-cache-5.1.1" 92538 92512 sources."semver-6.3.0" 92539 - sources."yallist-3.1.1" 92540 92513 ]; 92541 92514 }) 92542 92515 (sources."@vue/component-compiler-utils-3.3.0" // { ··· 92695 92668 (sources."cacache-12.0.4" // { 92696 92669 dependencies = [ 92697 92670 sources."lru-cache-5.1.1" 92698 - sources."yallist-3.1.1" 92699 92671 ]; 92700 92672 }) 92701 92673 sources."cache-base-1.0.1" ··· 92946 92918 sources."dom-converter-0.2.0" 92947 92919 (sources."dom-serializer-0.2.2" // { 92948 92920 dependencies = [ 92949 - sources."domelementtype-2.2.0" 92921 + sources."domelementtype-2.3.0" 92950 92922 ]; 92951 92923 }) 92952 92924 sources."domain-browser-1.2.0" 92953 92925 sources."domelementtype-1.3.1" 92954 92926 (sources."domhandler-4.3.1" // { 92955 92927 dependencies = [ 92956 - sources."domelementtype-2.2.0" 92928 + sources."domelementtype-2.3.0" 92957 92929 ]; 92958 92930 }) 92959 92931 sources."domutils-1.7.0" ··· 92966 92938 sources."ecc-jsbn-0.1.2" 92967 92939 sources."ee-first-1.1.1" 92968 92940 sources."ejs-2.7.4" 92969 - sources."electron-to-chromium-1.4.103" 92941 + sources."electron-to-chromium-1.4.106" 92970 92942 (sources."elliptic-6.5.4" // { 92971 92943 dependencies = [ 92972 92944 sources."bn.js-4.12.0" ··· 93257 93229 (sources."htmlparser2-6.1.0" // { 93258 93230 dependencies = [ 93259 93231 sources."dom-serializer-1.3.2" 93260 - sources."domelementtype-2.2.0" 93232 + sources."domelementtype-2.3.0" 93261 93233 sources."domutils-2.8.0" 93262 93234 ]; 93263 93235 }) ··· 93403 93375 sources."log-symbols-2.2.0" 93404 93376 sources."loglevel-1.8.0" 93405 93377 sources."lower-case-1.1.4" 93406 - sources."lru-cache-6.0.0" 93378 + sources."lru-cache-7.8.0" 93407 93379 (sources."make-dir-2.1.0" // { 93408 93380 dependencies = [ 93409 93381 sources."semver-5.7.1" ··· 93446 93418 sources."minimalistic-crypto-utils-1.0.1" 93447 93419 sources."minimatch-3.1.2" 93448 93420 sources."minimist-1.2.6" 93449 - sources."minipass-3.1.6" 93421 + (sources."minipass-3.1.6" // { 93422 + dependencies = [ 93423 + sources."yallist-4.0.0" 93424 + ]; 93425 + }) 93450 93426 sources."mississippi-3.0.0" 93451 93427 (sources."mixin-deep-1.3.2" // { 93452 93428 dependencies = [ ··· 93760 93736 sources."css-select-4.3.0" 93761 93737 sources."css-what-6.1.0" 93762 93738 sources."dom-serializer-1.3.2" 93763 - sources."domelementtype-2.2.0" 93739 + sources."domelementtype-2.3.0" 93764 93740 sources."domutils-2.8.0" 93765 93741 sources."nth-check-2.0.1" 93766 93742 sources."strip-ansi-3.0.1" ··· 93810 93786 sources."schema-utils-1.0.0" 93811 93787 sources."select-hose-2.0.0" 93812 93788 sources."selfsigned-1.10.14" 93813 - sources."semver-7.3.5" 93789 + sources."semver-7.3.6" 93814 93790 (sources."send-0.17.2" // { 93815 93791 dependencies = [ 93816 93792 (sources."debug-2.6.9" // { ··· 94280 94256 sources."xmlhttprequest-ssl-2.0.0" 94281 94257 sources."xtend-4.0.2" 94282 94258 sources."y18n-4.0.3" 94283 - sources."yallist-4.0.0" 94259 + sources."yallist-3.1.1" 94284 94260 sources."yaml-1.10.2" 94285 94261 (sources."yargs-16.2.0" // { 94286 94262 dependencies = [ ··· 94433 94409 eslint_d = nodeEnv.buildNodePackage { 94434 94410 name = "eslint_d"; 94435 94411 packageName = "eslint_d"; 94436 - version = "11.1.1"; 94412 + version = "12.0.0"; 94437 94413 src = fetchurl { 94438 - url = "https://registry.npmjs.org/eslint_d/-/eslint_d-11.1.1.tgz"; 94439 - sha512 = "PaNWblwIa10KZUt9EObGBzrsaxB+CPtk5d99sTveXmAtQrPSmrntKpWqxN/Mwot0qnI5gCllzkPZi6tO710KUA=="; 94414 + url = "https://registry.npmjs.org/eslint_d/-/eslint_d-12.0.0.tgz"; 94415 + sha512 = "jSueemgxyOsxVLOWkJuBbJfQB1vt9rjCqAbht51W/2982VcDxQ3ywjUaEvWTF+oTFWe2M1ER+d54kFgoZCGevg=="; 94440 94416 }; 94441 94417 dependencies = [ 94442 - sources."@babel/code-frame-7.12.11" 94443 - sources."@babel/helper-validator-identifier-7.16.7" 94444 - (sources."@babel/highlight-7.16.10" // { 94445 - dependencies = [ 94446 - sources."chalk-2.4.2" 94447 - sources."escape-string-regexp-1.0.5" 94448 - sources."has-flag-3.0.0" 94449 - sources."supports-color-5.5.0" 94450 - ]; 94451 - }) 94452 - sources."@eslint/eslintrc-0.4.3" 94453 - sources."@humanwhocodes/config-array-0.5.0" 94418 + sources."@eslint/eslintrc-1.2.1" 94419 + sources."@humanwhocodes/config-array-0.9.5" 94454 94420 sources."@humanwhocodes/object-schema-1.2.1" 94455 - sources."acorn-7.4.1" 94421 + sources."acorn-8.7.0" 94456 94422 sources."acorn-jsx-5.3.2" 94457 94423 sources."ajv-6.12.6" 94458 - sources."ansi-colors-4.1.1" 94459 94424 sources."ansi-regex-5.0.1" 94460 - sources."ansi-styles-3.2.1" 94461 - sources."argparse-1.0.10" 94462 - sources."astral-regex-2.0.0" 94425 + sources."ansi-styles-4.3.0" 94426 + sources."argparse-2.0.1" 94463 94427 sources."balanced-match-1.0.2" 94464 94428 sources."brace-expansion-1.1.11" 94465 94429 sources."callsites-3.1.0" 94466 94430 (sources."chalk-4.1.2" // { 94467 94431 dependencies = [ 94468 - sources."ansi-styles-4.3.0" 94469 - sources."color-convert-2.0.1" 94470 - sources."color-name-1.1.4" 94471 94432 sources."supports-color-7.2.0" 94472 94433 ]; 94473 94434 }) 94474 - sources."color-convert-1.9.3" 94475 - sources."color-name-1.1.3" 94435 + sources."color-convert-2.0.1" 94436 + sources."color-name-1.1.4" 94476 94437 sources."concat-map-0.0.1" 94477 - sources."core_d-3.2.0" 94438 + sources."core_d-4.0.0" 94478 94439 sources."cross-spawn-7.0.3" 94479 94440 sources."debug-4.3.4" 94480 94441 sources."deep-is-0.1.4" 94481 94442 sources."doctrine-3.0.0" 94482 - sources."emoji-regex-8.0.0" 94483 - sources."enquirer-2.3.6" 94484 94443 sources."escape-string-regexp-4.0.0" 94485 - sources."eslint-7.32.0" 94486 - sources."eslint-scope-5.1.1" 94487 - (sources."eslint-utils-2.1.0" // { 94444 + sources."eslint-8.12.0" 94445 + sources."eslint-scope-7.1.1" 94446 + (sources."eslint-utils-3.0.0" // { 94488 94447 dependencies = [ 94489 - sources."eslint-visitor-keys-1.3.0" 94448 + sources."eslint-visitor-keys-2.1.0" 94490 94449 ]; 94491 94450 }) 94492 - sources."eslint-visitor-keys-2.1.0" 94493 - (sources."espree-7.3.1" // { 94494 - dependencies = [ 94495 - sources."eslint-visitor-keys-1.3.0" 94496 - ]; 94497 - }) 94498 - sources."esprima-4.0.1" 94499 - (sources."esquery-1.4.0" // { 94500 - dependencies = [ 94501 - sources."estraverse-5.3.0" 94502 - ]; 94503 - }) 94504 - (sources."esrecurse-4.3.0" // { 94505 - dependencies = [ 94506 - sources."estraverse-5.3.0" 94507 - ]; 94508 - }) 94509 - sources."estraverse-4.3.0" 94451 + sources."eslint-visitor-keys-3.3.0" 94452 + sources."espree-9.3.1" 94453 + sources."esquery-1.4.0" 94454 + sources."esrecurse-4.3.0" 94455 + sources."estraverse-5.3.0" 94510 94456 sources."esutils-2.0.3" 94511 94457 sources."fast-deep-equal-3.1.3" 94512 94458 sources."fast-json-stable-stringify-2.1.0" ··· 94517 94463 sources."fs.realpath-1.0.0" 94518 94464 sources."functional-red-black-tree-1.0.1" 94519 94465 sources."glob-7.2.0" 94520 - sources."glob-parent-5.1.2" 94466 + sources."glob-parent-6.0.2" 94521 94467 sources."globals-13.13.0" 94522 94468 sources."has-flag-4.0.0" 94523 - sources."ignore-4.0.6" 94469 + sources."ignore-5.2.0" 94524 94470 sources."import-fresh-3.3.0" 94525 94471 sources."imurmurhash-0.1.4" 94526 94472 sources."inflight-1.0.6" 94527 94473 sources."inherits-2.0.4" 94528 94474 sources."is-extglob-2.1.1" 94529 - sources."is-fullwidth-code-point-3.0.0" 94530 94475 sources."is-glob-4.0.3" 94531 94476 sources."isexe-2.0.0" 94532 - sources."js-tokens-4.0.0" 94533 - sources."js-yaml-3.14.1" 94477 + sources."js-yaml-4.1.0" 94534 94478 sources."json-schema-traverse-0.4.1" 94535 94479 sources."json-stable-stringify-without-jsonify-1.0.1" 94536 94480 sources."levn-0.4.1" 94537 94481 sources."lodash.merge-4.6.2" 94538 - sources."lodash.truncate-4.4.2" 94539 - sources."lru-cache-6.0.0" 94540 94482 sources."minimatch-3.1.2" 94541 94483 sources."ms-2.1.2" 94542 94484 sources."nanolru-1.0.0" ··· 94547 94489 sources."path-is-absolute-1.0.1" 94548 94490 sources."path-key-3.1.1" 94549 94491 sources."prelude-ls-1.2.1" 94550 - sources."progress-2.0.3" 94551 94492 sources."punycode-2.1.1" 94552 94493 sources."regexpp-3.2.0" 94553 - sources."require-from-string-2.0.2" 94554 94494 sources."resolve-from-4.0.0" 94555 94495 sources."rimraf-3.0.2" 94556 - sources."semver-7.3.5" 94557 94496 sources."shebang-command-2.0.0" 94558 94497 sources."shebang-regex-3.0.0" 94559 - (sources."slice-ansi-4.0.0" // { 94560 - dependencies = [ 94561 - sources."ansi-styles-4.3.0" 94562 - sources."color-convert-2.0.1" 94563 - sources."color-name-1.1.4" 94564 - ]; 94565 - }) 94566 - sources."sprintf-js-1.0.3" 94567 - sources."string-width-4.2.3" 94568 94498 sources."strip-ansi-6.0.1" 94569 94499 sources."strip-json-comments-3.1.1" 94570 94500 sources."supports-color-8.1.1" 94571 - (sources."table-6.8.0" // { 94572 - dependencies = [ 94573 - sources."ajv-8.11.0" 94574 - sources."json-schema-traverse-1.0.0" 94575 - ]; 94576 - }) 94577 94501 sources."text-table-0.2.0" 94578 94502 sources."type-check-0.4.0" 94579 94503 sources."type-fest-0.20.2" ··· 94582 94506 sources."which-2.0.2" 94583 94507 sources."word-wrap-1.2.3" 94584 94508 sources."wrappy-1.0.2" 94585 - sources."yallist-4.0.0" 94586 94509 ]; 94587 94510 buildInputs = globalBuildInputs; 94588 94511 meta = { ··· 94627 94550 sources."semver-5.7.1" 94628 94551 ]; 94629 94552 }) 94630 - sources."@babel/generator-7.17.7" 94553 + sources."@babel/generator-7.17.9" 94631 94554 sources."@babel/helper-environment-visitor-7.16.7" 94632 - sources."@babel/helper-function-name-7.16.7" 94633 - sources."@babel/helper-get-function-arity-7.16.7" 94555 + sources."@babel/helper-function-name-7.17.9" 94634 94556 sources."@babel/helper-hoist-variables-7.16.7" 94635 94557 sources."@babel/helper-module-imports-7.16.7" 94636 94558 sources."@babel/helper-module-transforms-7.17.7" 94637 94559 sources."@babel/helper-simple-access-7.17.7" 94638 94560 sources."@babel/helper-split-export-declaration-7.16.7" 94639 94561 sources."@babel/helper-validator-identifier-7.16.7" 94640 - sources."@babel/helpers-7.17.8" 94641 - (sources."@babel/highlight-7.16.10" // { 94562 + sources."@babel/helpers-7.17.9" 94563 + (sources."@babel/highlight-7.17.9" // { 94642 94564 dependencies = [ 94643 94565 sources."chalk-2.4.2" 94644 94566 ]; 94645 94567 }) 94646 - sources."@babel/parser-7.17.8" 94568 + sources."@babel/parser-7.17.9" 94647 94569 sources."@babel/runtime-7.9.0" 94648 94570 (sources."@babel/template-7.16.7" // { 94649 94571 dependencies = [ 94650 94572 sources."@babel/code-frame-7.16.7" 94651 94573 ]; 94652 94574 }) 94653 - (sources."@babel/traverse-7.17.3" // { 94575 + (sources."@babel/traverse-7.17.9" // { 94654 94576 dependencies = [ 94655 94577 sources."@babel/code-frame-7.16.7" 94656 94578 ]; ··· 94661 94583 sources."@expo/config-6.0.19" 94662 94584 (sources."@expo/config-plugins-4.1.0" // { 94663 94585 dependencies = [ 94664 - sources."semver-7.3.5" 94586 + sources."semver-7.3.6" 94665 94587 ]; 94666 94588 }) 94667 94589 sources."@expo/config-types-44.0.0" ··· 94720 94642 sources."@nodelib/fs.walk-1.2.8" 94721 94643 (sources."@npmcli/fs-1.1.1" // { 94722 94644 dependencies = [ 94723 - sources."semver-7.3.5" 94645 + sources."semver-7.3.6" 94724 94646 ]; 94725 94647 }) 94726 94648 (sources."@npmcli/move-file-1.1.2" // { ··· 94945 94867 sources."bytes-3.0.0" 94946 94868 (sources."cacache-15.3.0" // { 94947 94869 dependencies = [ 94870 + sources."lru-cache-6.0.0" 94948 94871 sources."minipass-3.1.6" 94949 94872 sources."mkdirp-1.0.4" 94950 94873 sources."rimraf-3.0.2" ··· 95206 95129 ]; 95207 95130 }) 95208 95131 sources."domain-browser-1.2.0" 95209 - sources."domelementtype-2.2.0" 95132 + sources."domelementtype-2.3.0" 95210 95133 sources."domhandler-3.3.0" 95211 95134 sources."domino-2.1.6" 95212 95135 (sources."domutils-2.8.0" // { ··· 95224 95147 sources."duplexer3-0.1.4" 95225 95148 sources."duplexify-3.7.1" 95226 95149 sources."ee-first-1.1.1" 95227 - sources."electron-to-chromium-1.4.103" 95150 + sources."electron-to-chromium-1.4.106" 95228 95151 (sources."elliptic-6.5.4" // { 95229 95152 dependencies = [ 95230 95153 sources."bn.js-4.12.0" ··· 95460 95383 sources."he-1.2.0" 95461 95384 sources."hex-color-regex-1.1.0" 95462 95385 sources."hmac-drbg-1.0.1" 95463 - sources."hosted-git-info-3.0.8" 95386 + (sources."hosted-git-info-3.0.8" // { 95387 + dependencies = [ 95388 + sources."lru-cache-6.0.0" 95389 + ]; 95390 + }) 95464 95391 sources."hpack.js-2.1.6" 95465 95392 sources."hsl-regex-1.0.0" 95466 95393 sources."hsla-regex-1.0.0" ··· 95637 95564 sources."jsonfile-6.1.0" 95638 95565 sources."jsonify-0.0.0" 95639 95566 sources."keychain-1.3.0" 95640 - sources."keyv-4.2.1" 95567 + sources."keyv-4.2.2" 95641 95568 sources."killable-1.0.1" 95642 95569 sources."kind-of-6.0.3" 95643 95570 sources."kleur-3.0.3" ··· 95670 95597 ]; 95671 95598 }) 95672 95599 sources."lowercase-keys-2.0.0" 95673 - sources."lru-cache-6.0.0" 95600 + sources."lru-cache-7.8.0" 95674 95601 (sources."make-dir-2.1.0" // { 95675 95602 dependencies = [ 95676 95603 sources."semver-5.7.1" ··· 96393 96320 sources."ws-3.3.3" 96394 96321 ]; 96395 96322 }) 96396 - (sources."sucrase-3.20.3" // { 96323 + (sources."sucrase-3.21.0" // { 96397 96324 dependencies = [ 96398 96325 sources."commander-4.1.1" 96399 96326 ]; ··· 96414 96341 sources."css-what-3.4.2" 96415 96342 (sources."dom-serializer-0.2.2" // { 96416 96343 dependencies = [ 96417 - sources."domelementtype-2.2.0" 96344 + sources."domelementtype-2.3.0" 96418 96345 ]; 96419 96346 }) 96420 96347 sources."domelementtype-1.3.1" ··· 96782 96709 sources."@ampproject/remapping-2.1.2" 96783 96710 sources."@babel/code-frame-7.16.7" 96784 96711 sources."@babel/compat-data-7.17.7" 96785 - sources."@babel/core-7.17.8" 96786 - sources."@babel/generator-7.17.7" 96712 + sources."@babel/core-7.17.9" 96713 + sources."@babel/generator-7.17.9" 96787 96714 sources."@babel/helper-annotate-as-pure-7.16.7" 96788 96715 sources."@babel/helper-compilation-targets-7.17.7" 96789 96716 sources."@babel/helper-environment-visitor-7.16.7" 96790 - sources."@babel/helper-function-name-7.16.7" 96791 - sources."@babel/helper-get-function-arity-7.16.7" 96717 + sources."@babel/helper-function-name-7.17.9" 96792 96718 sources."@babel/helper-hoist-variables-7.16.7" 96793 96719 sources."@babel/helper-module-imports-7.16.7" 96794 96720 sources."@babel/helper-module-transforms-7.17.7" ··· 96797 96723 sources."@babel/helper-split-export-declaration-7.16.7" 96798 96724 sources."@babel/helper-validator-identifier-7.16.7" 96799 96725 sources."@babel/helper-validator-option-7.16.7" 96800 - sources."@babel/helpers-7.17.8" 96801 - sources."@babel/highlight-7.16.10" 96802 - sources."@babel/parser-7.17.8" 96726 + sources."@babel/helpers-7.17.9" 96727 + sources."@babel/highlight-7.17.9" 96728 + sources."@babel/parser-7.17.9" 96803 96729 sources."@babel/plugin-proposal-object-rest-spread-7.17.3" 96804 96730 sources."@babel/plugin-syntax-jsx-7.16.7" 96805 96731 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 96807 96733 sources."@babel/plugin-transform-parameters-7.16.7" 96808 96734 sources."@babel/plugin-transform-react-jsx-7.17.3" 96809 96735 sources."@babel/template-7.16.7" 96810 - sources."@babel/traverse-7.17.3" 96736 + sources."@babel/traverse-7.17.9" 96811 96737 sources."@babel/types-7.17.0" 96812 96738 sources."@jridgewell/resolve-uri-3.0.5" 96813 96739 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 96865 96791 }) 96866 96792 sources."delay-5.0.0" 96867 96793 sources."devtools-protocol-0.0.969999" 96868 - sources."electron-to-chromium-1.4.103" 96794 + sources."electron-to-chromium-1.4.106" 96869 96795 sources."emoji-regex-8.0.0" 96870 96796 sources."end-of-stream-1.4.4" 96871 96797 sources."error-ex-1.3.2" ··· 96935 96861 sources."node-releases-2.0.2" 96936 96862 (sources."normalize-package-data-3.0.3" // { 96937 96863 dependencies = [ 96938 - sources."semver-7.3.5" 96864 + sources."lru-cache-7.8.0" 96865 + sources."semver-7.3.6" 96939 96866 ]; 96940 96867 }) 96941 96868 sources."object-assign-4.1.1" ··· 97307 97234 sources."lodash.templatesettings-4.2.0" 97308 97235 sources."log-symbols-4.1.0" 97309 97236 sources."lowercase-keys-1.0.1" 97310 - sources."lru-cache-6.0.0" 97237 + sources."lru-cache-7.8.0" 97311 97238 sources."merge2-1.4.1" 97312 97239 sources."micromatch-4.0.5" 97313 97240 sources."mime-db-1.52.0" ··· 97372 97299 sources."rxjs-7.5.5" 97373 97300 sources."safe-buffer-5.2.1" 97374 97301 sources."safer-buffer-2.1.2" 97375 - sources."semver-7.3.5" 97302 + sources."semver-7.3.6" 97376 97303 sources."shebang-command-1.2.0" 97377 97304 sources."shebang-regex-1.0.0" 97378 97305 sources."signal-exit-3.0.7" ··· 97428 97355 sources."widest-line-3.1.0" 97429 97356 sources."word-wrap-1.2.3" 97430 97357 sources."wrap-ansi-7.0.0" 97431 - sources."yallist-4.0.0" 97432 97358 ]; 97433 97359 buildInputs = globalBuildInputs; 97434 97360 meta = { ··· 97467 97393 sources."@jsdevtools/ono-7.1.3" 97468 97394 (sources."@npmcli/fs-1.1.1" // { 97469 97395 dependencies = [ 97470 - sources."semver-7.3.5" 97396 + sources."semver-7.3.6" 97471 97397 ]; 97472 97398 }) 97473 97399 (sources."@npmcli/move-file-1.1.2" // { ··· 97578 97504 sources."bytes-3.1.2" 97579 97505 (sources."cacache-15.3.0" // { 97580 97506 dependencies = [ 97507 + sources."lru-cache-6.0.0" 97581 97508 sources."mkdirp-1.0.4" 97582 97509 ]; 97583 97510 }) ··· 97710 97637 sources."end-of-stream-1.4.4" 97711 97638 sources."env-paths-2.2.1" 97712 97639 sources."err-code-2.0.3" 97713 - sources."es5-ext-0.10.59" 97640 + sources."es5-ext-0.10.60" 97714 97641 sources."es6-iterator-2.0.3" 97715 97642 sources."es6-symbol-3.1.3" 97716 97643 sources."es6-weak-map-2.0.3" ··· 97730 97657 dependencies = [ 97731 97658 sources."ajv-8.11.0" 97732 97659 sources."json-schema-traverse-1.0.0" 97733 - sources."semver-7.3.5" 97660 + sources."semver-7.3.6" 97734 97661 ]; 97735 97662 }) 97736 97663 sources."exegesis-express-4.0.0" ··· 97829 97756 sources."glob-slash-1.0.0" 97830 97757 sources."glob-slasher-1.0.1" 97831 97758 sources."global-dirs-2.1.0" 97832 - sources."google-auth-library-7.14.1" 97759 + (sources."google-auth-library-7.14.1" // { 97760 + dependencies = [ 97761 + sources."lru-cache-6.0.0" 97762 + ]; 97763 + }) 97833 97764 sources."google-gax-2.29.6" 97834 97765 sources."google-p12-pem-3.1.3" 97835 97766 sources."got-9.6.0" ··· 97956 97887 sources."logform-2.4.0" 97957 97888 sources."long-4.0.0" 97958 97889 sources."lowercase-keys-1.0.1" 97959 - sources."lru-cache-6.0.0" 97890 + sources."lru-cache-7.8.0" 97960 97891 sources."lru-queue-0.1.0" 97961 97892 (sources."make-dir-3.1.0" // { 97962 97893 dependencies = [ ··· 97965 97896 }) 97966 97897 (sources."make-fetch-happen-9.1.0" // { 97967 97898 dependencies = [ 97899 + sources."lru-cache-6.0.0" 97968 97900 sources."socks-proxy-agent-6.1.1" 97969 97901 ]; 97970 97902 }) ··· 98023 97955 sources."node-forge-1.3.1" 98024 97956 (sources."node-gyp-8.4.1" // { 98025 97957 dependencies = [ 98026 - sources."semver-7.3.5" 97958 + sources."semver-7.3.6" 98027 97959 sources."which-2.0.2" 98028 97960 ]; 98029 97961 }) ··· 98270 98202 sources."ini-2.0.0" 98271 98203 sources."is-installed-globally-0.4.0" 98272 98204 sources."is-npm-5.0.0" 98273 - sources."semver-7.3.5" 98205 + sources."semver-7.3.6" 98274 98206 sources."type-fest-0.20.2" 98275 98207 ]; 98276 98208 }) ··· 98380 98312 dependencies = [ 98381 98313 sources."@babel/code-frame-7.16.7" 98382 98314 sources."@babel/helper-validator-identifier-7.16.7" 98383 - (sources."@babel/highlight-7.16.10" // { 98315 + (sources."@babel/highlight-7.17.9" // { 98384 98316 dependencies = [ 98385 98317 sources."ansi-styles-3.2.1" 98386 98318 sources."chalk-2.4.2" ··· 98539 98471 sources."rxjs-7.5.5" 98540 98472 sources."safe-buffer-5.2.1" 98541 98473 sources."safer-buffer-2.1.2" 98542 - sources."semver-7.3.5" 98474 + (sources."semver-7.3.6" // { 98475 + dependencies = [ 98476 + sources."lru-cache-7.8.0" 98477 + ]; 98478 + }) 98543 98479 sources."shebang-command-2.0.0" 98544 98480 sources."shebang-regex-3.0.0" 98545 98481 sources."signal-exit-3.0.7" ··· 99339 99275 sources."@ampproject/remapping-2.1.2" 99340 99276 sources."@babel/code-frame-7.16.7" 99341 99277 sources."@babel/compat-data-7.17.7" 99342 - (sources."@babel/core-7.17.8" // { 99278 + (sources."@babel/core-7.17.9" // { 99343 99279 dependencies = [ 99344 99280 sources."semver-6.3.0" 99345 99281 ]; 99346 99282 }) 99347 - (sources."@babel/generator-7.17.7" // { 99283 + (sources."@babel/generator-7.17.9" // { 99348 99284 dependencies = [ 99349 99285 sources."source-map-0.5.7" 99350 99286 ]; ··· 99355 99291 sources."semver-6.3.0" 99356 99292 ]; 99357 99293 }) 99358 - sources."@babel/helper-create-class-features-plugin-7.17.6" 99294 + sources."@babel/helper-create-class-features-plugin-7.17.9" 99359 99295 sources."@babel/helper-environment-visitor-7.16.7" 99360 - sources."@babel/helper-function-name-7.16.7" 99361 - sources."@babel/helper-get-function-arity-7.16.7" 99296 + sources."@babel/helper-function-name-7.17.9" 99362 99297 sources."@babel/helper-hoist-variables-7.16.7" 99363 99298 sources."@babel/helper-member-expression-to-functions-7.17.7" 99364 99299 sources."@babel/helper-module-imports-7.16.7" ··· 99370 99305 sources."@babel/helper-split-export-declaration-7.16.7" 99371 99306 sources."@babel/helper-validator-identifier-7.16.7" 99372 99307 sources."@babel/helper-validator-option-7.16.7" 99373 - sources."@babel/helpers-7.17.8" 99374 - (sources."@babel/highlight-7.16.10" // { 99308 + sources."@babel/helpers-7.17.9" 99309 + (sources."@babel/highlight-7.17.9" // { 99375 99310 dependencies = [ 99376 99311 sources."chalk-2.4.2" 99377 99312 ]; 99378 99313 }) 99379 - sources."@babel/parser-7.17.8" 99314 + sources."@babel/parser-7.17.9" 99380 99315 sources."@babel/plugin-syntax-typescript-7.16.7" 99381 99316 sources."@babel/plugin-transform-typescript-7.16.8" 99382 99317 sources."@babel/preset-typescript-7.16.7" 99383 - sources."@babel/runtime-7.17.8" 99318 + sources."@babel/runtime-7.17.9" 99384 99319 sources."@babel/template-7.16.7" 99385 - sources."@babel/traverse-7.17.3" 99320 + sources."@babel/traverse-7.17.9" 99386 99321 sources."@babel/types-7.17.0" 99387 99322 sources."@hapi/hoek-9.2.1" 99388 99323 sources."@hapi/topo-5.1.0" ··· 99491 99426 sources."delayed-stream-1.0.0" 99492 99427 sources."dom-converter-0.2.0" 99493 99428 sources."dom-serializer-1.3.2" 99494 - sources."domelementtype-2.2.0" 99429 + sources."domelementtype-2.3.0" 99495 99430 sources."domhandler-4.3.1" 99496 99431 sources."domutils-2.8.0" 99497 99432 sources."dot-prop-5.3.0" 99498 99433 sources."duplexer3-0.1.4" 99499 - sources."electron-to-chromium-1.4.103" 99434 + sources."electron-to-chromium-1.4.106" 99500 99435 sources."emoji-regex-8.0.0" 99501 99436 sources."end-of-stream-1.4.4" 99502 99437 sources."entities-2.2.0" ··· 99596 99531 sources."json-buffer-3.0.1" 99597 99532 sources."json5-2.2.1" 99598 99533 sources."jsonfile-6.1.0" 99599 - sources."keyv-4.2.1" 99534 + sources."keyv-4.2.2" 99600 99535 sources."kleur-3.0.3" 99601 99536 sources."latest-version-5.1.0" 99602 99537 sources."lmdb-2.2.6" ··· 99620 99555 sources."minimist-1.2.6" 99621 99556 sources."ms-2.1.2" 99622 99557 sources."msgpackr-1.5.5" 99623 - (sources."msgpackr-extract-1.1.0" // { 99624 - dependencies = [ 99625 - sources."node-gyp-build-git://github.com/kriszyp/node-gyp-build#optional-packages" 99626 - ]; 99627 - }) 99558 + sources."msgpackr-extract-1.1.3" 99628 99559 sources."msgpackr-extract-darwin-arm64-1.1.0" 99629 99560 sources."msgpackr-extract-darwin-x64-1.1.0" 99630 99561 sources."msgpackr-extract-linux-arm-1.1.0" ··· 99636 99567 sources."nice-try-1.0.5" 99637 99568 sources."node-fetch-2.6.7" 99638 99569 sources."node-gyp-build-4.4.0" 99570 + sources."node-gyp-build-optional-packages-4.3.1" 99639 99571 sources."node-object-hash-2.3.10" 99640 99572 sources."node-releases-2.0.2" 99641 99573 sources."normalize-url-6.1.0" ··· 99724 99656 sources."rxjs-6.6.7" 99725 99657 sources."safe-buffer-5.1.2" 99726 99658 sources."safer-buffer-2.1.2" 99727 - sources."semver-7.3.5" 99659 + (sources."semver-7.3.6" // { 99660 + dependencies = [ 99661 + sources."lru-cache-7.8.0" 99662 + ]; 99663 + }) 99728 99664 (sources."semver-diff-3.1.1" // { 99729 99665 dependencies = [ 99730 99666 sources."semver-6.3.0" ··· 99827 99763 dependencies = [ 99828 99764 sources."@babel/code-frame-7.16.7" 99829 99765 sources."@babel/helper-validator-identifier-7.16.7" 99830 - (sources."@babel/highlight-7.16.10" // { 99766 + (sources."@babel/highlight-7.17.9" // { 99831 99767 dependencies = [ 99832 99768 sources."ansi-styles-3.2.1" 99833 99769 sources."chalk-2.4.2" ··· 99897 99833 sources."lines-and-columns-1.2.4" 99898 99834 sources."locate-path-5.0.0" 99899 99835 sources."lodash-4.17.21" 99900 - sources."lru-cache-6.0.0" 99836 + sources."lru-cache-7.8.0" 99901 99837 sources."merge-stream-2.0.0" 99902 99838 sources."mimic-fn-2.1.0" 99903 99839 sources."minimatch-3.1.2" ··· 99934 99870 sources."resolve-1.22.0" 99935 99871 sources."run-async-2.4.1" 99936 99872 sources."sanitize-filename-1.6.3" 99937 - sources."semver-7.3.5" 99873 + sources."semver-7.3.6" 99938 99874 sources."shebang-command-2.0.0" 99939 99875 sources."shebang-regex-3.0.0" 99940 99876 sources."shelljs-0.8.5" ··· 99972 99908 ]; 99973 99909 }) 99974 99910 sources."wrappy-1.0.2" 99975 - sources."yallist-4.0.0" 99976 99911 sources."yeoman-generator-5.6.1" 99977 99912 (sources."yosay-2.0.2" // { 99978 99913 dependencies = [ ··· 100333 100268 sources."is-interactive-2.0.0" 100334 100269 sources."is-unicode-supported-1.2.0" 100335 100270 sources."json-buffer-3.0.1" 100336 - sources."keyv-4.2.1" 100271 + sources."keyv-4.2.2" 100337 100272 sources."li-1.3.0" 100338 100273 (sources."log-symbols-5.1.0" // { 100339 100274 dependencies = [ ··· 100399 100334 dependencies = [ 100400 100335 sources."@babel/code-frame-7.16.7" 100401 100336 sources."@babel/helper-validator-identifier-7.16.7" 100402 - (sources."@babel/highlight-7.16.10" // { 100337 + (sources."@babel/highlight-7.17.9" // { 100403 100338 dependencies = [ 100404 100339 sources."ansi-styles-3.2.1" 100405 100340 sources."chalk-2.4.2" ··· 100521 100456 sources."has-1.0.3" 100522 100457 sources."has-flag-4.0.0" 100523 100458 sources."has-yarn-2.1.0" 100524 - sources."hosted-git-info-4.1.0" 100459 + (sources."hosted-git-info-4.1.0" // { 100460 + dependencies = [ 100461 + sources."lru-cache-6.0.0" 100462 + ]; 100463 + }) 100525 100464 sources."http-cache-semantics-4.1.0" 100526 100465 sources."http-errors-2.0.0" 100527 100466 sources."http-proxy-agent-4.0.1" ··· 100576 100515 sources."lodash-4.17.21" 100577 100516 sources."log-symbols-4.1.0" 100578 100517 sources."lowercase-keys-1.0.1" 100579 - sources."lru-cache-6.0.0" 100518 + sources."lru-cache-7.8.0" 100580 100519 (sources."make-dir-3.1.0" // { 100581 100520 dependencies = [ 100582 100521 sources."semver-6.3.0" ··· 100674 100613 sources."rxjs-7.5.5" 100675 100614 sources."safe-buffer-5.2.1" 100676 100615 sources."safer-buffer-2.1.2" 100677 - sources."semver-7.3.5" 100616 + sources."semver-7.3.6" 100678 100617 (sources."semver-diff-3.1.1" // { 100679 100618 dependencies = [ 100680 100619 sources."semver-6.3.0" ··· 100945 100884 sources."@ardatan/aggregate-error-0.0.6" 100946 100885 sources."@babel/code-frame-7.16.7" 100947 100886 sources."@babel/helper-validator-identifier-7.16.7" 100948 - (sources."@babel/highlight-7.16.10" // { 100887 + (sources."@babel/highlight-7.17.9" // { 100949 100888 dependencies = [ 100950 100889 sources."ansi-styles-3.2.1" 100951 100890 sources."chalk-2.4.2" ··· 100986 100925 sources."tslib-2.1.0" 100987 100926 ]; 100988 100927 }) 100989 - (sources."@graphql-tools/import-6.6.9" // { 100928 + (sources."@graphql-tools/import-6.6.10" // { 100990 100929 dependencies = [ 100991 - sources."@graphql-tools/utils-8.6.5" 100930 + sources."@graphql-tools/utils-8.6.6" 100992 100931 sources."tslib-2.3.1" 100993 100932 ]; 100994 100933 }) ··· 101013 100952 sources."tslib-2.3.1" 101014 100953 ]; 101015 100954 }) 101016 - (sources."@graphql-tools/schema-8.3.6" // { 100955 + (sources."@graphql-tools/schema-8.3.7" // { 101017 100956 dependencies = [ 101018 - sources."@graphql-tools/merge-8.2.6" 101019 - sources."@graphql-tools/utils-8.6.5" 100957 + sources."@graphql-tools/merge-8.2.7" 100958 + sources."@graphql-tools/utils-8.6.6" 101020 100959 sources."tslib-2.3.1" 101021 100960 ]; 101022 100961 }) ··· 101524 101463 dependencies = [ 101525 101464 sources."@babel/code-frame-7.16.7" 101526 101465 sources."@babel/helper-validator-identifier-7.16.7" 101527 - (sources."@babel/highlight-7.16.10" // { 101466 + (sources."@babel/highlight-7.17.9" // { 101528 101467 dependencies = [ 101529 101468 sources."ansi-styles-3.2.1" 101530 101469 sources."chalk-2.4.2" ··· 101537 101476 }) 101538 101477 sources."@cronvel/get-pixels-3.4.0" 101539 101478 sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" 101540 - sources."@graphql-tools/batch-execute-8.4.1" 101541 - sources."@graphql-tools/delegate-8.7.1" 101542 - sources."@graphql-tools/graphql-file-loader-7.3.7" 101543 - sources."@graphql-tools/import-6.6.9" 101544 - sources."@graphql-tools/json-file-loader-7.3.7" 101545 - sources."@graphql-tools/load-7.5.6" 101546 - sources."@graphql-tools/merge-8.2.6" 101547 - sources."@graphql-tools/schema-8.3.6" 101548 - (sources."@graphql-tools/url-loader-7.9.8" // { 101479 + sources."@graphql-tools/batch-execute-8.4.2" 101480 + sources."@graphql-tools/delegate-8.7.2" 101481 + sources."@graphql-tools/graphql-file-loader-7.3.8" 101482 + sources."@graphql-tools/import-6.6.10" 101483 + sources."@graphql-tools/json-file-loader-7.3.8" 101484 + sources."@graphql-tools/load-7.5.7" 101485 + sources."@graphql-tools/merge-8.2.7" 101486 + sources."@graphql-tools/schema-8.3.7" 101487 + (sources."@graphql-tools/url-loader-7.9.9" // { 101549 101488 dependencies = [ 101550 101489 (sources."subscriptions-transport-ws-0.11.0" // { 101551 101490 dependencies = [ ··· 101555 101494 sources."ws-8.5.0" 101556 101495 ]; 101557 101496 }) 101558 - sources."@graphql-tools/utils-8.6.5" 101559 - sources."@graphql-tools/wrap-8.4.10" 101497 + sources."@graphql-tools/utils-8.6.6" 101498 + sources."@graphql-tools/wrap-8.4.11" 101560 101499 sources."@iarna/toml-2.2.5" 101561 101500 sources."@n1ru4l/graphql-live-query-0.9.0" 101562 101501 sources."@nodelib/fs.scandir-2.1.5" ··· 101758 101697 sources."lodash.get-4.4.2" 101759 101698 sources."lodash.template-4.5.0" 101760 101699 sources."lodash.templatesettings-4.2.0" 101761 - sources."lru-cache-6.0.0" 101700 + sources."lru-cache-7.8.0" 101762 101701 sources."make-error-1.3.6" 101763 101702 sources."media-typer-0.3.0" 101764 101703 sources."merge-descriptors-1.0.1" ··· 101811 101750 sources."reusify-1.0.4" 101812 101751 sources."run-parallel-1.2.0" 101813 101752 sources."safe-buffer-5.1.1" 101814 - sources."semver-7.3.5" 101753 + sources."semver-7.3.6" 101815 101754 (sources."send-0.16.2" // { 101816 101755 dependencies = [ 101817 101756 sources."debug-2.6.9" ··· 101875 101814 sources."widest-line-3.1.0" 101876 101815 sources."wrap-ansi-7.0.0" 101877 101816 sources."ws-7.4.2" 101878 - sources."yallist-4.0.0" 101879 101817 sources."yaml-1.10.2" 101880 101818 sources."yn-3.1.1" 101881 101819 sources."yocto-queue-0.1.0" ··· 102324 102262 sources."each-props-1.3.2" 102325 102263 sources."end-of-stream-1.4.4" 102326 102264 sources."error-ex-1.3.2" 102327 - sources."es5-ext-0.10.59" 102265 + sources."es5-ext-0.10.60" 102328 102266 sources."es6-iterator-2.0.3" 102329 102267 sources."es6-symbol-3.1.3" 102330 102268 sources."es6-weak-map-2.0.3" ··· 102744 102682 ]; 102745 102683 }) 102746 102684 sources."error-ex-1.3.2" 102747 - sources."es5-ext-0.10.59" 102685 + sources."es5-ext-0.10.60" 102748 102686 sources."es6-iterator-2.0.3" 102749 102687 sources."es6-symbol-3.1.3" 102750 102688 (sources."expand-brackets-2.1.4" // { ··· 103382 103320 sources."assert-plus-1.0.0" 103383 103321 sources."async-2.6.3" 103384 103322 sources."asynckit-0.4.0" 103385 - sources."aws-sdk-2.1107.0" 103323 + sources."aws-sdk-2.1110.0" 103386 103324 sources."aws-sign2-0.7.0" 103387 103325 sources."aws4-1.11.0" 103388 103326 sources."base64-js-1.5.1" ··· 104066 104004 sources."diagnostic-channel-publishers-0.4.4" 104067 104005 sources."discontinuous-range-1.0.0" 104068 104006 sources."dom-serializer-1.3.2" 104069 - sources."domelementtype-2.2.0" 104007 + sources."domelementtype-2.3.0" 104070 104008 sources."domhandler-4.3.1" 104071 104009 sources."domutils-2.8.0" 104072 104010 sources."ecc-jsbn-0.1.2" ··· 104096 104034 sources."har-schema-2.0.0" 104097 104035 sources."har-validator-5.1.5" 104098 104036 sources."he-1.2.0" 104099 - sources."html-to-text-8.1.0" 104037 + sources."html-to-text-8.1.1" 104100 104038 sources."htmlparser2-6.1.0" 104101 104039 sources."http-signature-1.2.0" 104102 104040 sources."inflight-1.0.6" ··· 104152 104090 sources."safe-buffer-5.2.1" 104153 104091 sources."safer-buffer-2.1.2" 104154 104092 sources."selderee-0.6.0" 104155 - sources."semver-7.3.5" 104093 + (sources."semver-7.3.6" // { 104094 + dependencies = [ 104095 + sources."lru-cache-7.8.0" 104096 + ]; 104097 + }) 104156 104098 sources."shimmer-1.2.1" 104157 104099 sources."sigmund-1.0.1" 104158 104100 sources."sshpk-1.17.0" ··· 104636 104578 sources."resumer-0.0.0" 104637 104579 sources."safer-buffer-2.1.2" 104638 104580 sources."semaphore-async-await-1.5.1" 104639 - (sources."semver-7.3.5" // { 104581 + (sources."semver-7.3.6" // { 104640 104582 dependencies = [ 104641 - sources."lru-cache-6.0.0" 104583 + sources."lru-cache-7.8.0" 104642 104584 ]; 104643 104585 }) 104644 104586 sources."seq-0.3.5" ··· 104669 104611 sources."wrap-ansi-7.0.0" 104670 104612 sources."xpath-0.0.32" 104671 104613 sources."y18n-5.0.8" 104672 - sources."yallist-4.0.0" 104673 104614 sources."yargs-16.2.0" 104674 104615 sources."yargs-parser-20.2.9" 104675 104616 ]; ··· 104989 104930 sources."async-mutex-0.1.4" 104990 104931 sources."asynckit-0.4.0" 104991 104932 sources."atob-2.1.2" 104992 - (sources."aws-sdk-2.1108.0" // { 104933 + (sources."aws-sdk-2.1110.0" // { 104993 104934 dependencies = [ 104994 104935 sources."sax-1.2.1" 104995 104936 sources."uuid-3.3.2" ··· 105054 104995 ]; 105055 104996 }) 105056 104997 sources."cwise-compiler-1.1.3" 105057 - sources."d3-7.4.2" 105058 - sources."d3-array-3.1.4" 104998 + sources."d3-7.4.3" 104999 + sources."d3-array-3.1.5" 105059 105000 sources."d3-axis-3.0.0" 105060 105001 sources."d3-brush-3.0.0" 105061 105002 sources."d3-chord-3.0.1" ··· 105147 105088 sources."domhandler-4.3.1" 105148 105089 ]; 105149 105090 }) 105150 - sources."domelementtype-2.2.0" 105091 + sources."domelementtype-2.3.0" 105151 105092 sources."domexception-1.0.1" 105152 105093 sources."domhandler-3.3.0" 105153 105094 sources."dompurify-2.3.5" ··· 105339 105280 sources."highlight.js-9.12.0" 105340 105281 ]; 105341 105282 }) 105342 - sources."lru-cache-6.0.0" 105283 + sources."lru-cache-7.8.0" 105343 105284 sources."magicli-0.0.8" 105344 105285 (sources."markdown-it-10.0.0" // { 105345 105286 dependencies = [ ··· 105370 105311 sources."mimic-response-3.1.0" 105371 105312 sources."minimatch-3.1.2" 105372 105313 sources."minimist-1.2.6" 105373 - (sources."minipass-2.9.0" // { 105374 - dependencies = [ 105375 - sources."yallist-3.1.1" 105376 - ]; 105377 - }) 105314 + sources."minipass-2.9.0" 105378 105315 sources."minizlib-1.3.3" 105379 105316 sources."mkdirp-0.5.6" 105380 105317 sources."mkdirp-classic-0.5.3" ··· 105507 105444 sources."safer-buffer-2.1.2" 105508 105445 sources."sax-1.2.4" 105509 105446 sources."saxes-3.1.11" 105510 - sources."semver-7.3.5" 105447 + sources."semver-7.3.6" 105511 105448 sources."server-destroy-1.0.1" 105512 105449 sources."set-blocking-2.0.0" 105513 105450 sources."setimmediate-1.0.5" ··· 105585 105522 sources."symbol-observable-1.2.0" 105586 105523 sources."symbol-tree-3.2.4" 105587 105524 sources."table-layout-0.4.5" 105588 - (sources."tar-4.4.19" // { 105589 - dependencies = [ 105590 - sources."yallist-3.1.1" 105591 - ]; 105592 - }) 105525 + sources."tar-4.4.19" 105593 105526 sources."tar-fs-2.1.1" 105594 105527 (sources."tar-stream-2.2.0" // { 105595 105528 dependencies = [ ··· 105671 105604 sources."xml2js-0.4.23" 105672 105605 sources."xmlbuilder-11.0.1" 105673 105606 sources."xmlchars-2.2.0" 105674 - sources."yallist-4.0.0" 105607 + sources."yallist-3.1.1" 105675 105608 sources."yargs-parser-7.0.0" 105676 105609 ]; 105677 105610 buildInputs = globalBuildInputs; ··· 105757 105690 sha512 = "IdQ8ppSo5LKZ9o3M+LKIIK8i00DIe5msDvG3G81Km+1dhy0XrOWD0Ji8H61ElgyEj/O9KRLokgKbAM9XX9CJAg=="; 105758 105691 }; 105759 105692 dependencies = [ 105760 - sources."@babel/parser-7.17.8" 105693 + sources."@babel/parser-7.17.9" 105761 105694 sources."@types/linkify-it-3.0.2" 105762 105695 sources."@types/markdown-it-12.2.3" 105763 105696 sources."@types/mdurl-1.0.2" ··· 105810 105743 sources."date-now-0.1.4" 105811 105744 (sources."dom-serializer-0.2.2" // { 105812 105745 dependencies = [ 105813 - sources."domelementtype-2.2.0" 105746 + sources."domelementtype-2.3.0" 105814 105747 sources."entities-2.2.0" 105815 105748 ]; 105816 105749 }) ··· 105874 105807 sources."d-1.0.1" 105875 105808 sources."difflib-0.2.4" 105876 105809 sources."dreamopt-0.8.0" 105877 - sources."es5-ext-0.10.59" 105810 + sources."es5-ext-0.10.60" 105878 105811 sources."es6-iterator-2.0.3" 105879 105812 sources."es6-symbol-3.1.3" 105880 105813 sources."es6-weak-map-2.0.3" ··· 106099 106032 sources."lodash-id-0.14.1" 106100 106033 sources."lowdb-1.0.0" 106101 106034 sources."lowercase-keys-1.0.1" 106102 - sources."lru-cache-6.0.0" 106035 + sources."lru-cache-7.8.0" 106103 106036 (sources."make-dir-3.1.0" // { 106104 106037 dependencies = [ 106105 106038 sources."semver-6.3.0" ··· 106161 106094 sources."responselike-1.0.2" 106162 106095 sources."safe-buffer-5.1.2" 106163 106096 sources."safer-buffer-2.1.2" 106164 - sources."semver-7.3.5" 106097 + sources."semver-7.3.6" 106165 106098 sources."semver-compare-1.0.0" 106166 106099 (sources."semver-diff-3.1.1" // { 106167 106100 dependencies = [ ··· 106206 106139 sources."write-file-atomic-3.0.3" 106207 106140 sources."xdg-basedir-4.0.0" 106208 106141 sources."y18n-5.0.8" 106209 - sources."yallist-4.0.0" 106210 106142 sources."yargs-17.4.0" 106211 106143 sources."yargs-parser-21.0.1" 106212 106144 ]; ··· 106933 106865 sources."dotenv-8.6.0" 106934 106866 sources."emoji-regex-8.0.0" 106935 106867 sources."env-paths-2.2.1" 106936 - sources."es5-ext-0.10.59" 106868 + sources."es5-ext-0.10.60" 106937 106869 sources."es6-iterator-2.0.3" 106938 106870 sources."es6-symbol-3.1.3" 106939 106871 sources."escape-string-regexp-4.0.0" ··· 106986 106918 sources."jsonfile-4.0.0" 106987 106919 sources."locate-path-3.0.0" 106988 106920 sources."lodash-4.17.21" 106989 - sources."lru-cache-6.0.0" 106921 + sources."lru-cache-7.8.0" 106990 106922 (sources."make-dir-3.1.0" // { 106991 106923 dependencies = [ 106992 106924 sources."semver-6.3.0" ··· 107035 106967 ]; 107036 106968 }) 107037 106969 sources."safer-buffer-2.1.2" 107038 - sources."semver-7.3.5" 106970 + sources."semver-7.3.6" 107039 106971 sources."shebang-command-1.2.0" 107040 106972 sources."shebang-regex-1.0.0" 107041 106973 sources."side-channel-1.0.4" ··· 107061 106993 sources."widest-line-3.1.0" 107062 106994 sources."wrap-ansi-7.0.0" 107063 106995 sources."write-file-atomic-3.0.3" 107064 - sources."yallist-4.0.0" 107065 106996 ]; 107066 106997 buildInputs = globalBuildInputs; 107067 106998 meta = { ··· 107284 107215 sources."@babel/cli-7.17.6" 107285 107216 sources."@babel/code-frame-7.16.7" 107286 107217 sources."@babel/compat-data-7.17.7" 107287 - (sources."@babel/core-7.17.8" // { 107218 + (sources."@babel/core-7.17.9" // { 107288 107219 dependencies = [ 107289 107220 sources."semver-6.3.0" 107290 107221 ]; 107291 107222 }) 107292 - sources."@babel/generator-7.17.7" 107223 + sources."@babel/generator-7.17.9" 107293 107224 sources."@babel/helper-annotate-as-pure-7.16.7" 107294 107225 (sources."@babel/helper-compilation-targets-7.17.7" // { 107295 107226 dependencies = [ ··· 107297 107228 ]; 107298 107229 }) 107299 107230 sources."@babel/helper-environment-visitor-7.16.7" 107300 - sources."@babel/helper-function-name-7.16.7" 107301 - sources."@babel/helper-get-function-arity-7.16.7" 107231 + sources."@babel/helper-function-name-7.17.9" 107302 107232 sources."@babel/helper-hoist-variables-7.16.7" 107303 107233 sources."@babel/helper-module-imports-7.16.7" 107304 107234 sources."@babel/helper-module-transforms-7.17.7" ··· 107307 107237 sources."@babel/helper-split-export-declaration-7.16.7" 107308 107238 sources."@babel/helper-validator-identifier-7.16.7" 107309 107239 sources."@babel/helper-validator-option-7.16.7" 107310 - sources."@babel/helpers-7.17.8" 107311 - sources."@babel/highlight-7.16.10" 107240 + sources."@babel/helpers-7.17.9" 107241 + sources."@babel/highlight-7.17.9" 107312 107242 sources."@babel/node-7.16.8" 107313 - sources."@babel/parser-7.17.8" 107243 + sources."@babel/parser-7.17.9" 107314 107244 sources."@babel/plugin-syntax-jsx-7.16.7" 107315 107245 sources."@babel/plugin-transform-react-jsx-7.17.3" 107316 107246 sources."@babel/register-7.17.7" 107317 107247 sources."@babel/template-7.16.7" 107318 - sources."@babel/traverse-7.17.3" 107248 + sources."@babel/traverse-7.17.9" 107319 107249 sources."@babel/types-7.17.0" 107320 107250 sources."@jridgewell/resolve-uri-3.0.5" 107321 107251 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 107475 107405 }) 107476 107406 sources."dotenv-8.6.0" 107477 107407 sources."ee-first-1.1.1" 107478 - sources."electron-to-chromium-1.4.103" 107408 + sources."electron-to-chromium-1.4.106" 107479 107409 sources."emoji-regex-8.0.0" 107480 107410 sources."encodeurl-1.0.2" 107481 107411 sources."end-of-stream-1.4.4" ··· 107628 107558 sources."levn-0.3.0" 107629 107559 sources."locate-path-3.0.0" 107630 107560 sources."lodash-4.17.21" 107631 - sources."lru-cache-6.0.0" 107561 + sources."lru-cache-7.8.0" 107632 107562 sources."ltx-3.0.0" 107633 107563 sources."make-dir-2.1.0" 107634 107564 sources."md5.js-1.3.5" ··· 107702 107632 sources."color-convert-2.0.1" 107703 107633 sources."color-name-1.1.4" 107704 107634 sources."has-flag-4.0.0" 107705 - sources."semver-7.3.5" 107635 + sources."semver-7.3.6" 107706 107636 sources."supports-color-7.2.0" 107707 107637 ]; 107708 107638 }) ··· 107838 107768 sources."xml-name-validator-3.0.0" 107839 107769 sources."xmlchars-2.2.0" 107840 107770 sources."y18n-5.0.8" 107841 - sources."yallist-4.0.0" 107842 107771 (sources."yargs-16.2.0" // { 107843 107772 dependencies = [ 107844 107773 sources."is-fullwidth-code-point-3.0.0" ··· 108467 108396 dependencies = [ 108468 108397 sources."@babel/code-frame-7.16.7" 108469 108398 sources."@babel/helper-validator-identifier-7.16.7" 108470 - (sources."@babel/highlight-7.16.10" // { 108399 + (sources."@babel/highlight-7.17.9" // { 108471 108400 dependencies = [ 108472 108401 sources."ansi-styles-3.2.1" 108473 108402 sources."chalk-2.4.2" ··· 108721 108650 sources."depd-1.1.2" 108722 108651 sources."deprecation-2.3.1" 108723 108652 sources."detect-indent-5.0.0" 108724 - sources."dezalgo-1.0.3" 108653 + sources."dezalgo-1.0.4" 108725 108654 sources."dir-glob-3.0.1" 108726 108655 sources."dot-prop-6.0.1" 108727 108656 sources."duplexer-0.1.2" ··· 109094 109023 sources."rxjs-6.6.7" 109095 109024 sources."safe-buffer-5.2.1" 109096 109025 sources."safer-buffer-2.1.2" 109097 - sources."semver-7.3.5" 109026 + (sources."semver-7.3.6" // { 109027 + dependencies = [ 109028 + sources."lru-cache-7.8.0" 109029 + ]; 109030 + }) 109098 109031 sources."set-blocking-2.0.0" 109099 109032 sources."shallow-clone-3.0.1" 109100 109033 sources."shebang-command-2.0.0" ··· 110162 110095 sources."@ampproject/remapping-2.1.2" 110163 110096 sources."@babel/code-frame-7.16.7" 110164 110097 sources."@babel/compat-data-7.17.7" 110165 - sources."@babel/core-7.17.8" 110166 - sources."@babel/generator-7.17.7" 110098 + sources."@babel/core-7.17.9" 110099 + sources."@babel/generator-7.17.9" 110167 110100 sources."@babel/helper-annotate-as-pure-7.16.7" 110168 110101 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 110169 110102 sources."@babel/helper-compilation-targets-7.17.7" 110170 - sources."@babel/helper-create-class-features-plugin-7.17.6" 110103 + sources."@babel/helper-create-class-features-plugin-7.17.9" 110171 110104 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 110172 110105 sources."@babel/helper-define-polyfill-provider-0.3.1" 110173 110106 sources."@babel/helper-environment-visitor-7.16.7" 110174 110107 sources."@babel/helper-explode-assignable-expression-7.16.7" 110175 - sources."@babel/helper-function-name-7.16.7" 110176 - sources."@babel/helper-get-function-arity-7.16.7" 110108 + sources."@babel/helper-function-name-7.17.9" 110177 110109 sources."@babel/helper-hoist-variables-7.16.7" 110178 110110 sources."@babel/helper-member-expression-to-functions-7.17.7" 110179 110111 sources."@babel/helper-module-imports-7.16.7" ··· 110188 110120 sources."@babel/helper-validator-identifier-7.16.7" 110189 110121 sources."@babel/helper-validator-option-7.16.7" 110190 110122 sources."@babel/helper-wrap-function-7.16.8" 110191 - sources."@babel/helpers-7.17.8" 110192 - (sources."@babel/highlight-7.16.10" // { 110123 + sources."@babel/helpers-7.17.9" 110124 + (sources."@babel/highlight-7.17.9" // { 110193 110125 dependencies = [ 110194 110126 sources."chalk-2.4.2" 110195 110127 ]; 110196 110128 }) 110197 - sources."@babel/parser-7.17.8" 110129 + sources."@babel/parser-7.17.9" 110198 110130 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 110199 110131 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 110200 110132 sources."@babel/plugin-external-helpers-7.8.3" ··· 110244 110176 sources."@babel/plugin-transform-literals-7.16.7" 110245 110177 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 110246 110178 sources."@babel/plugin-transform-modules-amd-7.16.7" 110247 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 110179 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 110248 110180 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 110249 110181 sources."@babel/plugin-transform-modules-umd-7.16.7" 110250 110182 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 110252 110184 sources."@babel/plugin-transform-object-super-7.16.7" 110253 110185 sources."@babel/plugin-transform-parameters-7.16.7" 110254 110186 sources."@babel/plugin-transform-property-literals-7.16.7" 110255 - sources."@babel/plugin-transform-regenerator-7.16.7" 110187 + sources."@babel/plugin-transform-regenerator-7.17.9" 110256 110188 sources."@babel/plugin-transform-reserved-words-7.16.7" 110257 110189 sources."@babel/plugin-transform-runtime-7.17.0" 110258 110190 sources."@babel/plugin-transform-shorthand-properties-7.16.7" ··· 110265 110197 sources."@babel/preset-env-7.16.11" 110266 110198 sources."@babel/preset-modules-0.1.5" 110267 110199 sources."@babel/preset-stage-2-7.8.3" 110268 - sources."@babel/runtime-7.17.8" 110200 + sources."@babel/runtime-7.17.9" 110269 110201 sources."@babel/template-7.16.7" 110270 - sources."@babel/traverse-7.17.3" 110202 + sources."@babel/traverse-7.17.9" 110271 110203 sources."@babel/types-7.17.0" 110272 110204 sources."@cnakazawa/watch-1.0.4" 110273 110205 sources."@comandeer/babel-plugin-banner-5.0.0" ··· 110588 110520 sources."duplexer2-0.1.4" 110589 110521 sources."duplexify-3.7.1" 110590 110522 sources."ecc-jsbn-0.1.2" 110591 - sources."electron-to-chromium-1.4.103" 110523 + sources."electron-to-chromium-1.4.106" 110592 110524 (sources."elliptic-6.5.4" // { 110593 110525 dependencies = [ 110594 110526 sources."bn.js-4.12.0" ··· 110982 110914 sources."regenerate-1.4.2" 110983 110915 sources."regenerate-unicode-properties-10.0.1" 110984 110916 sources."regenerator-runtime-0.13.9" 110985 - sources."regenerator-transform-0.14.5" 110917 + sources."regenerator-transform-0.15.0" 110986 110918 sources."regex-not-1.0.2" 110987 110919 sources."regexpu-core-5.0.1" 110988 110920 sources."regjsgen-0.6.0" ··· 111686 111618 sources."commander-6.2.1" 111687 111619 sources."debug-3.2.7" 111688 111620 sources."has-flag-4.0.0" 111689 - sources."iconv-lite-0.4.24" 111621 + sources."iconv-lite-0.6.3" 111690 111622 sources."is-absolute-url-3.0.3" 111691 111623 sources."is-relative-url-3.0.0" 111692 111624 sources."isemail-3.2.0" ··· 111695 111627 sources."markdown-link-extractor-2.0.1" 111696 111628 sources."marked-4.0.12" 111697 111629 sources."ms-2.1.3" 111698 - sources."needle-3.0.0" 111630 + sources."needle-3.1.0" 111699 111631 sources."progress-2.0.3" 111700 111632 sources."punycode-2.1.1" 111701 111633 sources."safer-buffer-2.1.2" ··· 111899 111831 }) 111900 111832 sources."ecc-jsbn-0.1.2" 111901 111833 sources."entities-1.1.2" 111902 - sources."es5-ext-0.10.59" 111834 + sources."es5-ext-0.10.60" 111903 111835 sources."es6-iterator-2.0.3" 111904 111836 sources."es6-map-0.1.5" 111905 111837 (sources."es6-set-0.1.5" // { ··· 112210 112142 sources."commander-9.1.0" 112211 112143 sources."concat-map-0.0.1" 112212 112144 sources."cross-fetch-3.1.5" 112213 - sources."d3-7.4.2" 112214 - sources."d3-array-3.1.4" 112145 + sources."d3-7.4.3" 112146 + sources."d3-array-3.1.5" 112215 112147 sources."d3-axis-3.0.0" 112216 112148 sources."d3-brush-3.0.0" 112217 112149 sources."d3-chord-3.0.1" ··· 112622 112554 dependencies = [ 112623 112555 sources."@babel/code-frame-7.16.7" 112624 112556 sources."@babel/helper-validator-identifier-7.16.7" 112625 - (sources."@babel/highlight-7.16.10" // { 112557 + (sources."@babel/highlight-7.17.9" // { 112626 112558 dependencies = [ 112627 112559 sources."ansi-styles-3.2.1" 112628 112560 sources."chalk-2.4.2" ··· 112819 112751 sources."latest-version-5.1.0" 112820 112752 sources."lodash-4.17.21" 112821 112753 sources."lowercase-keys-1.0.1" 112822 - sources."lru-cache-6.0.0" 112754 + sources."lru-cache-7.8.0" 112823 112755 (sources."make-dir-3.1.0" // { 112824 112756 dependencies = [ 112825 112757 sources."semver-6.3.0" ··· 112893 112825 sources."ripemd160-2.0.2" 112894 112826 sources."rxjs-6.6.7" 112895 112827 sources."safe-buffer-5.2.1" 112896 - sources."semver-7.3.5" 112828 + sources."semver-7.3.6" 112897 112829 (sources."semver-diff-3.1.1" // { 112898 112830 dependencies = [ 112899 112831 sources."semver-6.3.0" ··· 112963 112895 sources."write-file-atomic-3.0.3" 112964 112896 sources."xdg-basedir-4.0.0" 112965 112897 sources."y18n-5.0.8" 112966 - sources."yallist-4.0.0" 112967 112898 sources."yargs-16.2.0" 112968 112899 sources."yargs-parser-20.2.9" 112969 112900 ]; ··· 113003 112934 sources."is-stream-2.0.1" 113004 112935 sources."kuler-2.0.0" 113005 112936 sources."logform-2.4.0" 113006 - sources."lru-cache-6.0.0" 112937 + sources."lru-cache-7.8.0" 113007 112938 sources."ms-2.1.3" 113008 112939 sources."one-time-1.0.0" 113009 112940 sources."readable-stream-3.6.0" 113010 112941 sources."safe-buffer-5.2.1" 113011 112942 sources."safe-stable-stringify-2.3.1" 113012 - sources."semver-7.3.5" 112943 + sources."semver-7.3.6" 113013 112944 sources."simple-swizzle-0.2.2" 113014 112945 sources."stack-trace-0.0.10" 113015 112946 sources."string_decoder-1.3.0" ··· 113018 112949 sources."util-deprecate-1.0.2" 113019 112950 sources."winston-3.3.3" 113020 112951 sources."winston-transport-4.5.0" 113021 - sources."yallist-4.0.0" 113022 112952 ]; 113023 112953 buildInputs = globalBuildInputs; 113024 112954 meta = { ··· 113063 112993 dependencies = [ 113064 112994 sources."@gar/promisify-1.1.3" 113065 112995 sources."@npmcli/fs-2.1.0" 113066 - sources."@npmcli/move-file-1.1.2" 112996 + sources."@npmcli/move-file-2.0.0" 113067 112997 sources."@tootallnate/once-2.0.0" 113068 112998 sources."abbrev-1.1.1" 113069 112999 sources."agent-base-6.0.2" ··· 113074 113004 sources."are-we-there-yet-3.0.0" 113075 113005 sources."balanced-match-1.0.2" 113076 113006 sources."brace-expansion-1.1.11" 113077 - (sources."cacache-16.0.3" // { 113078 - dependencies = [ 113079 - sources."ssri-8.0.1" 113080 - ]; 113081 - }) 113007 + sources."cacache-16.0.4" 113082 113008 sources."chownr-2.0.0" 113083 113009 sources."clean-stack-2.2.0" 113084 113010 sources."color-support-1.1.3" ··· 113111 113037 sources."is-fullwidth-code-point-3.0.0" 113112 113038 sources."is-lambda-1.0.1" 113113 113039 sources."isexe-2.0.0" 113114 - sources."lru-cache-7.7.3" 113040 + sources."lru-cache-7.8.0" 113115 113041 sources."make-fetch-happen-10.1.2" 113116 113042 sources."minimatch-3.1.2" 113117 113043 sources."minipass-3.1.6" ··· 113136 113062 sources."rimraf-3.0.2" 113137 113063 sources."safe-buffer-5.2.1" 113138 113064 sources."safer-buffer-2.1.2" 113139 - (sources."semver-7.3.5" // { 113140 - dependencies = [ 113141 - sources."lru-cache-6.0.0" 113142 - ]; 113143 - }) 113065 + sources."semver-7.3.6" 113144 113066 sources."set-blocking-2.0.0" 113145 113067 sources."signal-exit-3.0.7" 113146 113068 sources."smart-buffer-4.2.0" ··· 113593 113515 sha512 = "DAx4v9/W2MEBb/tHNO94bmjeELdAg7CVZlPJX+UBH1RsmXB0q/3ZYW1Zi55NVMVN/0sBBO1g+dI/L0NWCG8s9A=="; 113594 113516 }; 113595 113517 dependencies = [ 113596 - sources."@babel/runtime-7.17.8" 113518 + sources."@babel/runtime-7.17.9" 113597 113519 sources."@mapbox/node-pre-gyp-1.0.9" 113598 113520 sources."@node-red/editor-api-2.2.2" 113599 113521 sources."@node-red/editor-client-2.2.2" ··· 113718 113640 sources."detect-libc-2.0.1" 113719 113641 sources."dicer-0.2.5" 113720 113642 sources."dom-serializer-1.3.2" 113721 - sources."domelementtype-2.2.0" 113643 + sources."domelementtype-2.3.0" 113722 113644 sources."domhandler-4.3.1" 113723 113645 sources."domutils-2.8.0" 113724 113646 (sources."duplexify-4.1.2" // { ··· 113800 113722 sources."universalify-2.0.0" 113801 113723 ]; 113802 113724 }) 113803 - sources."keyv-4.2.1" 113725 + sources."keyv-4.2.2" 113804 113726 sources."leven-2.1.0" 113805 113727 sources."lodash.clonedeep-4.5.0" 113806 113728 sources."lowercase-keys-2.0.0" ··· 114059 113981 sources."json-stringify-safe-5.0.1" 114060 113982 sources."jsonfile-1.0.1" 114061 113983 sources."jsprim-1.4.2" 114062 - sources."lru-cache-6.0.0" 113984 + sources."lru-cache-7.8.0" 114063 113985 sources."mime-db-1.52.0" 114064 113986 sources."mime-types-2.1.35" 114065 113987 sources."minimatch-3.1.2" ··· 114120 114042 sources."rimraf-2.2.8" 114121 114043 sources."safe-buffer-5.2.1" 114122 114044 sources."safer-buffer-2.1.2" 114123 - sources."semver-7.3.5" 114045 + sources."semver-7.3.6" 114124 114046 sources."set-blocking-2.0.0" 114125 114047 sources."signal-exit-3.0.7" 114126 114048 sources."slasp-0.0.4" ··· 114262 114184 sources."keyv-3.1.0" 114263 114185 sources."latest-version-5.1.0" 114264 114186 sources."lowercase-keys-1.0.1" 114265 - sources."lru-cache-6.0.0" 114187 + sources."lru-cache-7.8.0" 114266 114188 (sources."make-dir-3.1.0" // { 114267 114189 dependencies = [ 114268 114190 sources."semver-6.3.0" ··· 114316 114238 sources."unique-string-2.0.0" 114317 114239 (sources."update-notifier-5.1.0" // { 114318 114240 dependencies = [ 114319 - sources."semver-7.3.5" 114241 + sources."semver-7.3.6" 114320 114242 ]; 114321 114243 }) 114322 114244 sources."url-parse-lax-3.0.0" ··· 114325 114247 sources."wrappy-1.0.2" 114326 114248 sources."write-file-atomic-3.0.3" 114327 114249 sources."xdg-basedir-4.0.0" 114328 - sources."yallist-4.0.0" 114329 114250 ]; 114330 114251 buildInputs = globalBuildInputs; 114331 114252 meta = { ··· 114348 114269 dependencies = [ 114349 114270 sources."@babel/code-frame-7.16.7" 114350 114271 sources."@babel/helper-validator-identifier-7.16.7" 114351 - (sources."@babel/highlight-7.16.10" // { 114272 + (sources."@babel/highlight-7.17.9" // { 114352 114273 dependencies = [ 114353 114274 sources."ansi-styles-3.2.1" 114354 114275 sources."chalk-2.4.2" ··· 114578 114499 sources."js-tokens-4.0.0" 114579 114500 sources."json-buffer-3.0.1" 114580 114501 sources."json-parse-even-better-errors-2.3.1" 114581 - sources."keyv-4.2.1" 114502 + sources."keyv-4.2.2" 114582 114503 sources."kind-of-6.0.3" 114583 114504 sources."latest-version-5.1.0" 114584 114505 sources."lines-and-columns-1.2.4" ··· 114792 114713 sources."rxjs-6.6.7" 114793 114714 sources."safer-buffer-2.1.2" 114794 114715 sources."scoped-regex-2.1.0" 114795 - sources."semver-7.3.5" 114716 + (sources."semver-7.3.6" // { 114717 + dependencies = [ 114718 + sources."lru-cache-7.8.0" 114719 + ]; 114720 + }) 114796 114721 (sources."semver-diff-3.1.1" // { 114797 114722 dependencies = [ 114798 114723 sources."semver-6.3.0" ··· 114887 114812 npm-check-updates = nodeEnv.buildNodePackage { 114888 114813 name = "npm-check-updates"; 114889 114814 packageName = "npm-check-updates"; 114890 - version = "12.5.7"; 114815 + version = "12.5.8"; 114891 114816 src = fetchurl { 114892 - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.5.7.tgz"; 114893 - sha512 = "WDkqPBevmgphV1UH3FImsDEpTAq2UFvnMZC3GdXPknE2VL701kfKylnae8IA9ZeYfm/uU0249N9gjMXqA/9y3w=="; 114817 + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.5.8.tgz"; 114818 + sha512 = "8SDZ6qYXI0aKf63zSbByqB9QmK8ygrZ+UVcXg9kGQyvH7dGIcFauFF0ksC0NdThHkU/5QhowJVSHXva9zujkJg=="; 114894 114819 }; 114895 114820 dependencies = [ 114896 114821 sources."@gar/promisify-1.1.3" ··· 114898 114823 sources."@nodelib/fs.stat-2.0.5" 114899 114824 sources."@nodelib/fs.walk-1.2.8" 114900 114825 sources."@npmcli/fs-2.1.0" 114901 - sources."@npmcli/git-3.0.0" 114826 + sources."@npmcli/git-3.0.1" 114902 114827 sources."@npmcli/installed-package-contents-1.0.7" 114903 - sources."@npmcli/move-file-1.1.2" 114904 - sources."@npmcli/node-gyp-1.0.3" 114905 - sources."@npmcli/promise-spawn-1.3.2" 114906 - sources."@npmcli/run-script-3.0.1" 114828 + sources."@npmcli/move-file-2.0.0" 114829 + sources."@npmcli/node-gyp-2.0.0" 114830 + sources."@npmcli/promise-spawn-3.0.0" 114831 + sources."@npmcli/run-script-3.0.2" 114907 114832 sources."@sindresorhus/is-0.14.0" 114908 114833 sources."@szmarczak/http-timer-1.1.2" 114909 114834 sources."@tootallnate/once-2.0.0" ··· 114924 114849 sources."braces-3.0.2" 114925 114850 sources."buffer-from-1.1.2" 114926 114851 sources."builtins-5.0.0" 114927 - sources."cacache-16.0.3" 114852 + sources."cacache-16.0.4" 114928 114853 (sources."cacheable-request-6.1.0" // { 114929 114854 dependencies = [ 114930 114855 sources."get-stream-5.2.0" ··· 115003 114928 sources."humanize-ms-1.2.1" 115004 114929 sources."iconv-lite-0.6.3" 115005 114930 sources."ignore-5.2.0" 115006 - (sources."ignore-walk-4.0.1" // { 115007 - dependencies = [ 115008 - sources."brace-expansion-1.1.11" 115009 - sources."minimatch-3.1.2" 115010 - ]; 115011 - }) 114931 + sources."ignore-walk-5.0.1" 115012 114932 sources."import-lazy-2.1.0" 115013 114933 sources."imurmurhash-0.1.4" 115014 114934 sources."indent-string-4.0.0" ··· 115054 114974 sources."locate-path-6.0.0" 115055 114975 sources."lodash-4.17.21" 115056 114976 sources."lowercase-keys-1.0.1" 115057 - sources."lru-cache-7.7.3" 114977 + sources."lru-cache-7.8.0" 115058 114978 (sources."make-dir-3.1.0" // { 115059 114979 dependencies = [ 115060 114980 sources."semver-6.3.0" 115061 114981 ]; 115062 114982 }) 115063 - (sources."make-fetch-happen-10.1.2" // { 115064 - dependencies = [ 115065 - sources."ssri-9.0.0" 115066 - ]; 115067 - }) 114983 + sources."make-fetch-happen-10.1.2" 115068 114984 sources."merge2-1.4.1" 115069 114985 sources."micromatch-4.0.5" 115070 114986 sources."mimic-response-1.0.1" ··· 115089 115005 sources."npm-install-checks-5.0.0" 115090 115006 sources."npm-normalize-package-bin-1.0.1" 115091 115007 sources."npm-package-arg-9.0.2" 115092 - sources."npm-packlist-4.0.0" 115008 + sources."npm-packlist-5.0.0" 115093 115009 sources."npm-pick-manifest-7.0.1" 115094 115010 sources."npm-registry-fetch-13.1.0" 115095 115011 sources."npmlog-6.0.1" ··· 115104 115020 sources."semver-6.3.0" 115105 115021 ]; 115106 115022 }) 115107 - sources."pacote-13.0.5" 115023 + sources."pacote-13.1.1" 115108 115024 sources."parse-github-url-1.0.2" 115109 115025 sources."path-exists-4.0.0" 115110 115026 sources."path-is-absolute-1.0.1" ··· 115135 115051 sources."run-parallel-1.2.0" 115136 115052 sources."safe-buffer-5.2.1" 115137 115053 sources."safer-buffer-2.1.2" 115138 - (sources."semver-7.3.5" // { 115139 - dependencies = [ 115140 - sources."lru-cache-6.0.0" 115141 - ]; 115142 - }) 115054 + sources."semver-7.3.6" 115143 115055 (sources."semver-diff-3.1.1" // { 115144 115056 dependencies = [ 115145 115057 sources."semver-6.3.0" ··· 115160 115072 sources."spdx-exceptions-2.3.0" 115161 115073 sources."spdx-expression-parse-3.0.1" 115162 115074 sources."spdx-license-ids-3.0.11" 115163 - sources."ssri-8.0.1" 115075 + sources."ssri-9.0.0" 115164 115076 sources."string-width-4.2.3" 115165 115077 sources."string_decoder-1.3.0" 115166 115078 sources."strip-ansi-6.0.1" ··· 115511 115423 sources."@ampproject/remapping-2.1.2" 115512 115424 sources."@babel/code-frame-7.16.7" 115513 115425 sources."@babel/compat-data-7.17.7" 115514 - (sources."@babel/core-7.17.8" // { 115426 + (sources."@babel/core-7.17.9" // { 115515 115427 dependencies = [ 115516 115428 sources."json5-2.2.1" 115517 115429 sources."semver-6.3.0" 115518 115430 ]; 115519 115431 }) 115520 - (sources."@babel/generator-7.17.7" // { 115432 + (sources."@babel/generator-7.17.9" // { 115521 115433 dependencies = [ 115522 115434 sources."source-map-0.5.7" 115523 115435 ]; ··· 115529 115441 sources."semver-6.3.0" 115530 115442 ]; 115531 115443 }) 115532 - sources."@babel/helper-create-class-features-plugin-7.17.6" 115444 + sources."@babel/helper-create-class-features-plugin-7.17.9" 115533 115445 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 115534 115446 (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 115535 115447 dependencies = [ ··· 115538 115450 }) 115539 115451 sources."@babel/helper-environment-visitor-7.16.7" 115540 115452 sources."@babel/helper-explode-assignable-expression-7.16.7" 115541 - sources."@babel/helper-function-name-7.16.7" 115542 - sources."@babel/helper-get-function-arity-7.16.7" 115453 + sources."@babel/helper-function-name-7.17.9" 115543 115454 sources."@babel/helper-hoist-variables-7.16.7" 115544 115455 sources."@babel/helper-member-expression-to-functions-7.17.7" 115545 115456 sources."@babel/helper-module-imports-7.16.7" ··· 115554 115465 sources."@babel/helper-validator-identifier-7.16.7" 115555 115466 sources."@babel/helper-validator-option-7.16.7" 115556 115467 sources."@babel/helper-wrap-function-7.16.8" 115557 - sources."@babel/helpers-7.17.8" 115558 - sources."@babel/highlight-7.16.10" 115559 - sources."@babel/parser-7.17.8" 115468 + sources."@babel/helpers-7.17.9" 115469 + sources."@babel/highlight-7.17.9" 115470 + sources."@babel/parser-7.17.9" 115560 115471 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 115561 115472 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 115562 115473 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 115606 115517 sources."@babel/plugin-transform-literals-7.16.7" 115607 115518 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 115608 115519 sources."@babel/plugin-transform-modules-amd-7.16.7" 115609 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 115520 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 115610 115521 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 115611 115522 sources."@babel/plugin-transform-modules-umd-7.16.7" 115612 115523 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 115615 115526 sources."@babel/plugin-transform-parameters-7.16.7" 115616 115527 sources."@babel/plugin-transform-property-literals-7.16.7" 115617 115528 sources."@babel/plugin-transform-react-jsx-7.17.3" 115618 - sources."@babel/plugin-transform-regenerator-7.16.7" 115529 + sources."@babel/plugin-transform-regenerator-7.17.9" 115619 115530 sources."@babel/plugin-transform-reserved-words-7.16.7" 115620 115531 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 115621 115532 sources."@babel/plugin-transform-spread-7.16.7" ··· 115630 115541 ]; 115631 115542 }) 115632 115543 sources."@babel/preset-modules-0.1.5" 115633 - sources."@babel/runtime-7.17.8" 115544 + sources."@babel/runtime-7.17.9" 115634 115545 sources."@babel/template-7.16.7" 115635 - sources."@babel/traverse-7.17.3" 115546 + sources."@babel/traverse-7.17.9" 115636 115547 sources."@babel/types-7.17.0" 115637 115548 sources."@iarna/toml-2.2.5" 115638 115549 sources."@jridgewell/resolve-uri-3.0.5" ··· 115877 115788 }) 115878 115789 (sources."dom-serializer-0.2.2" // { 115879 115790 dependencies = [ 115880 - sources."domelementtype-2.2.0" 115791 + sources."domelementtype-2.3.0" 115881 115792 ]; 115882 115793 }) 115883 115794 sources."domain-browser-1.2.0" ··· 115885 115796 sources."domexception-1.0.1" 115886 115797 (sources."domhandler-4.3.1" // { 115887 115798 dependencies = [ 115888 - sources."domelementtype-2.2.0" 115799 + sources."domelementtype-2.3.0" 115889 115800 ]; 115890 115801 }) 115891 115802 sources."domutils-1.7.0" ··· 115895 115806 sources."duplexer2-0.1.4" 115896 115807 sources."ecc-jsbn-0.1.2" 115897 115808 sources."ee-first-1.1.1" 115898 - sources."electron-to-chromium-1.4.103" 115809 + sources."electron-to-chromium-1.4.106" 115899 115810 (sources."elliptic-6.5.4" // { 115900 115811 dependencies = [ 115901 115812 sources."bn.js-4.12.0" ··· 116012 115923 (sources."htmlparser2-6.1.0" // { 116013 115924 dependencies = [ 116014 115925 sources."dom-serializer-1.3.2" 116015 - sources."domelementtype-2.2.0" 115926 + sources."domelementtype-2.3.0" 116016 115927 sources."domutils-2.8.0" 116017 115928 ]; 116018 115929 }) ··· 116312 116223 sources."regenerate-1.4.2" 116313 116224 sources."regenerate-unicode-properties-10.0.1" 116314 116225 sources."regenerator-runtime-0.13.9" 116315 - sources."regenerator-transform-0.14.5" 116226 + sources."regenerator-transform-0.15.0" 116316 116227 (sources."regex-not-1.0.2" // { 116317 116228 dependencies = [ 116318 116229 sources."extend-shallow-3.0.2" ··· 116544 116455 dependencies = [ 116545 116456 sources."@babel/code-frame-7.16.7" 116546 116457 sources."@babel/helper-validator-identifier-7.16.7" 116547 - (sources."@babel/highlight-7.16.10" // { 116458 + (sources."@babel/highlight-7.17.9" // { 116548 116459 dependencies = [ 116549 116460 sources."chalk-2.4.2" 116550 116461 ]; ··· 116555 116466 sources."@parcel/compressor-raw-2.4.1" 116556 116467 sources."@parcel/config-default-2.4.1" 116557 116468 sources."@parcel/core-2.4.1" 116558 - sources."@parcel/css-1.7.4" 116559 - sources."@parcel/css-darwin-arm64-1.7.4" 116560 - sources."@parcel/css-darwin-x64-1.7.4" 116561 - sources."@parcel/css-linux-arm-gnueabihf-1.7.4" 116562 - sources."@parcel/css-linux-arm64-gnu-1.7.4" 116563 - sources."@parcel/css-linux-arm64-musl-1.7.4" 116564 - sources."@parcel/css-linux-x64-gnu-1.7.4" 116565 - sources."@parcel/css-linux-x64-musl-1.7.4" 116566 - sources."@parcel/css-win32-x64-msvc-1.7.4" 116469 + sources."@parcel/css-1.8.0" 116470 + sources."@parcel/css-darwin-arm64-1.8.0" 116471 + sources."@parcel/css-darwin-x64-1.8.0" 116472 + sources."@parcel/css-linux-arm-gnueabihf-1.8.0" 116473 + sources."@parcel/css-linux-arm64-gnu-1.8.0" 116474 + sources."@parcel/css-linux-arm64-musl-1.8.0" 116475 + sources."@parcel/css-linux-x64-gnu-1.8.0" 116476 + sources."@parcel/css-linux-x64-musl-1.8.0" 116477 + sources."@parcel/css-win32-x64-msvc-1.8.0" 116567 116478 sources."@parcel/diagnostic-2.4.1" 116568 116479 sources."@parcel/events-2.4.1" 116569 116480 sources."@parcel/fs-2.4.1" ··· 116658 116569 sources."entities-2.2.0" 116659 116570 ]; 116660 116571 }) 116661 - sources."domelementtype-2.2.0" 116572 + sources."domelementtype-2.3.0" 116662 116573 sources."domhandler-4.3.1" 116663 116574 sources."domutils-2.8.0" 116664 116575 sources."dotenv-7.0.0" 116665 116576 sources."dotenv-expand-5.1.0" 116666 - sources."electron-to-chromium-1.4.103" 116577 + sources."electron-to-chromium-1.4.106" 116667 116578 sources."entities-3.0.1" 116668 116579 sources."error-ex-1.3.2" 116669 116580 sources."escalade-3.1.1" ··· 116671 116582 sources."get-port-4.2.0" 116672 116583 sources."globals-13.13.0" 116673 116584 sources."has-flag-3.0.0" 116674 - sources."htmlnano-2.0.1" 116585 + sources."htmlnano-2.0.2" 116675 116586 sources."htmlparser2-7.2.0" 116676 116587 sources."import-fresh-3.3.0" 116677 116588 sources."is-arrayish-0.2.1" ··· 116684 116595 sources."lmdb-2.2.4" 116685 116596 sources."mdn-data-2.0.14" 116686 116597 sources."msgpackr-1.5.5" 116687 - (sources."msgpackr-extract-1.1.0" // { 116688 - dependencies = [ 116689 - sources."node-gyp-build-git://github.com/kriszyp/node-gyp-build#optional-packages" 116690 - ]; 116691 - }) 116598 + sources."msgpackr-extract-1.1.3" 116692 116599 sources."msgpackr-extract-darwin-arm64-1.1.0" 116693 116600 sources."msgpackr-extract-darwin-x64-1.1.0" 116694 116601 sources."msgpackr-extract-linux-arm-1.1.0" ··· 116698 116605 sources."nan-2.15.0" 116699 116606 sources."node-addon-api-3.2.1" 116700 116607 sources."node-gyp-build-4.4.0" 116608 + sources."node-gyp-build-optional-packages-4.3.1" 116701 116609 sources."node-releases-2.0.2" 116702 116610 sources."nth-check-2.0.1" 116703 116611 sources."nullthrows-1.1.1" ··· 116900 116808 sources."lodash-4.17.21" 116901 116809 sources."lodash.clone-4.5.0" 116902 116810 sources."lodash.clonedeep-4.5.0" 116903 - sources."lru-cache-6.0.0" 116811 + sources."lru-cache-7.8.0" 116904 116812 sources."media-typer-0.3.0" 116905 116813 sources."mediawiki-title-0.6.5" 116906 116814 sources."merge-descriptors-1.0.1" ··· 116980 116888 sources."serve-static-1.14.2" 116981 116889 (sources."service-runner-2.9.0" // { 116982 116890 dependencies = [ 116983 - sources."semver-7.3.5" 116891 + sources."semver-7.3.6" 116984 116892 sources."yargs-14.2.3" 116985 116893 ]; 116986 116894 }) ··· 117023 116931 sources."wrap-ansi-5.1.0" 117024 116932 sources."wrappy-1.0.2" 117025 116933 sources."y18n-4.0.3" 117026 - sources."yallist-4.0.0" 117027 116934 (sources."yargs-13.3.2" // { 117028 116935 dependencies = [ 117029 116936 sources."yargs-parser-13.1.2" ··· 117932 117839 sources."isarray-1.0.0" 117933 117840 sources."jsonfile-6.1.0" 117934 117841 sources."levn-0.3.0" 117935 - sources."lru-cache-6.0.0" 117842 + sources."lru-cache-7.8.0" 117936 117843 sources."merge2-1.4.1" 117937 117844 sources."micromatch-4.0.5" 117938 117845 sources."mimic-response-2.1.0" ··· 117974 117881 sources."reusify-1.0.4" 117975 117882 sources."run-parallel-1.2.0" 117976 117883 sources."safe-buffer-5.1.2" 117977 - sources."semver-7.3.5" 117884 + sources."semver-7.3.6" 117978 117885 sources."set-blocking-2.0.0" 117979 117886 sources."signal-exit-3.0.7" 117980 117887 sources."simple-concat-1.0.1" ··· 118009 117916 sources."wrap-ansi-7.0.0" 118010 117917 sources."wrappy-1.0.2" 118011 117918 sources."y18n-5.0.8" 118012 - sources."yallist-4.0.0" 118013 117919 sources."yargs-16.2.0" 118014 117920 sources."yargs-parser-20.2.9" 118015 117921 ]; ··· 118209 118115 sources."safe-buffer-5.2.1" 118210 118116 sources."safer-buffer-2.1.2" 118211 118117 sources."sax-1.2.4" 118212 - (sources."semver-7.3.5" // { 118118 + (sources."semver-7.3.6" // { 118213 118119 dependencies = [ 118214 - sources."lru-cache-6.0.0" 118215 - sources."yallist-4.0.0" 118120 + sources."lru-cache-7.8.0" 118216 118121 ]; 118217 118122 }) 118218 118123 sources."setprototypeof-1.2.0" ··· 118450 118355 sources."ini-1.3.8" 118451 118356 sources."is-fullwidth-code-point-1.0.0" 118452 118357 sources."isarray-1.0.0" 118453 - sources."lru-cache-6.0.0" 118358 + sources."lru-cache-7.8.0" 118454 118359 sources."mimic-response-3.1.0" 118455 118360 sources."minimist-1.2.6" 118456 118361 sources."mkdirp-classic-0.5.3" ··· 118465 118370 sources."rc-1.2.8" 118466 118371 sources."readable-stream-2.3.7" 118467 118372 sources."safe-buffer-5.1.2" 118468 - sources."semver-7.3.5" 118373 + sources."semver-7.3.6" 118469 118374 sources."set-blocking-2.0.0" 118470 118375 sources."signal-exit-3.0.7" 118471 118376 sources."simple-concat-1.0.1" ··· 118484 118389 sources."util-deprecate-1.0.2" 118485 118390 sources."wide-align-1.1.5" 118486 118391 sources."wrappy-1.0.2" 118487 - sources."yallist-4.0.0" 118488 118392 ]; 118489 118393 buildInputs = globalBuildInputs; 118490 118394 meta = { ··· 119470 119374 sources."@babel/cli-7.17.6" 119471 119375 sources."@babel/code-frame-7.16.7" 119472 119376 sources."@babel/compat-data-7.17.7" 119473 - (sources."@babel/core-7.17.8" // { 119377 + (sources."@babel/core-7.17.9" // { 119474 119378 dependencies = [ 119475 119379 sources."semver-6.3.0" 119476 119380 ]; 119477 119381 }) 119478 - sources."@babel/generator-7.17.7" 119382 + sources."@babel/generator-7.17.9" 119479 119383 sources."@babel/helper-annotate-as-pure-7.16.7" 119480 119384 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 119481 119385 (sources."@babel/helper-compilation-targets-7.17.7" // { ··· 119483 119387 sources."semver-6.3.0" 119484 119388 ]; 119485 119389 }) 119486 - sources."@babel/helper-create-class-features-plugin-7.17.6" 119390 + sources."@babel/helper-create-class-features-plugin-7.17.9" 119487 119391 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 119488 119392 (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 119489 119393 dependencies = [ ··· 119492 119396 }) 119493 119397 sources."@babel/helper-environment-visitor-7.16.7" 119494 119398 sources."@babel/helper-explode-assignable-expression-7.16.7" 119495 - sources."@babel/helper-function-name-7.16.7" 119496 - sources."@babel/helper-get-function-arity-7.16.7" 119399 + sources."@babel/helper-function-name-7.17.9" 119497 119400 sources."@babel/helper-hoist-variables-7.16.7" 119498 119401 sources."@babel/helper-member-expression-to-functions-7.17.7" 119499 119402 sources."@babel/helper-module-imports-7.16.7" ··· 119508 119411 sources."@babel/helper-validator-identifier-7.16.7" 119509 119412 sources."@babel/helper-validator-option-7.16.7" 119510 119413 sources."@babel/helper-wrap-function-7.16.8" 119511 - sources."@babel/helpers-7.17.8" 119512 - sources."@babel/highlight-7.16.10" 119513 - sources."@babel/parser-7.17.8" 119414 + sources."@babel/helpers-7.17.9" 119415 + sources."@babel/highlight-7.17.9" 119416 + sources."@babel/parser-7.17.9" 119514 119417 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 119515 119418 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 119516 119419 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 119560 119463 sources."@babel/plugin-transform-literals-7.16.7" 119561 119464 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 119562 119465 sources."@babel/plugin-transform-modules-amd-7.16.7" 119563 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 119466 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 119564 119467 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 119565 119468 sources."@babel/plugin-transform-modules-umd-7.16.7" 119566 119469 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 119572 119475 sources."@babel/plugin-transform-react-jsx-7.17.3" 119573 119476 sources."@babel/plugin-transform-react-jsx-development-7.16.7" 119574 119477 sources."@babel/plugin-transform-react-pure-annotations-7.16.7" 119575 - sources."@babel/plugin-transform-regenerator-7.16.7" 119478 + sources."@babel/plugin-transform-regenerator-7.17.9" 119576 119479 sources."@babel/plugin-transform-reserved-words-7.16.7" 119577 119480 (sources."@babel/plugin-transform-runtime-7.17.0" // { 119578 119481 dependencies = [ ··· 119595 119498 sources."@babel/preset-react-7.16.7" 119596 119499 sources."@babel/preset-stage-0-7.8.3" 119597 119500 sources."@babel/register-7.17.7" 119598 - sources."@babel/runtime-7.17.8" 119501 + sources."@babel/runtime-7.17.9" 119599 119502 sources."@babel/template-7.16.7" 119600 - sources."@babel/traverse-7.17.3" 119503 + sources."@babel/traverse-7.17.9" 119601 119504 sources."@babel/types-7.17.0" 119602 119505 sources."@jridgewell/resolve-uri-3.0.5" 119603 119506 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 120005 119908 sources."dom-converter-0.2.0" 120006 119909 (sources."dom-serializer-0.2.2" // { 120007 119910 dependencies = [ 120008 - sources."domelementtype-2.2.0" 119911 + sources."domelementtype-2.3.0" 120009 119912 ]; 120010 119913 }) 120011 119914 sources."domain-browser-1.2.0" 120012 119915 sources."domelementtype-1.3.1" 120013 119916 (sources."domhandler-4.3.1" // { 120014 119917 dependencies = [ 120015 - sources."domelementtype-2.2.0" 119918 + sources."domelementtype-2.3.0" 120016 119919 ]; 120017 119920 }) 120018 119921 sources."domutils-1.7.0" ··· 120029 119932 sources."duplexify-3.7.1" 120030 119933 sources."ee-first-1.1.1" 120031 119934 sources."ejs-2.7.4" 120032 - sources."electron-to-chromium-1.4.103" 119935 + sources."electron-to-chromium-1.4.106" 120033 119936 (sources."elliptic-6.5.4" // { 120034 119937 dependencies = [ 120035 119938 sources."bn.js-4.12.0" ··· 120260 120163 (sources."htmlparser2-6.1.0" // { 120261 120164 dependencies = [ 120262 120165 sources."dom-serializer-1.3.2" 120263 - sources."domelementtype-2.2.0" 120166 + sources."domelementtype-2.3.0" 120264 120167 sources."domutils-2.8.0" 120265 120168 ]; 120266 120169 }) ··· 120748 120651 sources."regenerate-1.4.2" 120749 120652 sources."regenerate-unicode-properties-10.0.1" 120750 120653 sources."regenerator-runtime-0.13.9" 120751 - sources."regenerator-transform-0.14.5" 120654 + sources."regenerator-transform-0.15.0" 120752 120655 sources."regex-not-1.0.2" 120753 120656 sources."regexp.prototype.flags-1.4.1" 120754 120657 sources."regexpu-core-5.0.1" ··· 120768 120671 sources."css-select-4.3.0" 120769 120672 sources."css-what-6.1.0" 120770 120673 sources."dom-serializer-1.3.2" 120771 - sources."domelementtype-2.2.0" 120674 + sources."domelementtype-2.3.0" 120772 120675 sources."domutils-2.8.0" 120773 120676 sources."nth-check-2.0.1" 120774 120677 sources."strip-ansi-3.0.1" ··· 121408 121311 }; 121409 121312 dependencies = [ 121410 121313 sources."@babel/code-frame-7.16.7" 121411 - (sources."@babel/generator-7.17.7" // { 121314 + (sources."@babel/generator-7.17.9" // { 121412 121315 dependencies = [ 121413 121316 sources."source-map-0.5.7" 121414 121317 ]; 121415 121318 }) 121416 121319 sources."@babel/helper-annotate-as-pure-7.16.7" 121417 121320 sources."@babel/helper-environment-visitor-7.16.7" 121418 - sources."@babel/helper-function-name-7.16.7" 121419 - sources."@babel/helper-get-function-arity-7.16.7" 121321 + sources."@babel/helper-function-name-7.17.9" 121420 121322 sources."@babel/helper-hoist-variables-7.16.7" 121421 121323 sources."@babel/helper-module-imports-7.16.7" 121422 121324 sources."@babel/helper-split-export-declaration-7.16.7" 121423 121325 sources."@babel/helper-validator-identifier-7.16.7" 121424 - sources."@babel/highlight-7.16.10" 121425 - sources."@babel/parser-7.17.8" 121426 - sources."@babel/runtime-7.17.8" 121326 + sources."@babel/highlight-7.17.9" 121327 + sources."@babel/parser-7.17.9" 121328 + sources."@babel/runtime-7.17.9" 121427 121329 sources."@babel/template-7.16.7" 121428 - sources."@babel/traverse-7.17.3" 121330 + sources."@babel/traverse-7.17.9" 121429 121331 sources."@babel/types-7.17.0" 121430 121332 sources."@emotion/is-prop-valid-1.1.2" 121431 121333 sources."@emotion/memoize-0.7.5" ··· 121451 121353 sources."util-0.10.3" 121452 121354 ]; 121453 121355 }) 121454 - sources."babel-plugin-styled-components-2.0.6" 121356 + sources."babel-plugin-styled-components-2.0.7" 121455 121357 sources."babel-plugin-syntax-jsx-6.18.0" 121456 121358 sources."balanced-match-1.0.2" 121457 121359 sources."base64-js-1.5.1" ··· 121607 121509 sources."perfect-scrollbar-1.5.5" 121608 121510 sources."picomatch-2.3.1" 121609 121511 sources."pluralize-8.0.0" 121610 - sources."polished-4.2.1" 121512 + sources."polished-4.2.2" 121611 121513 sources."postcss-value-parser-4.2.0" 121612 121514 sources."prismjs-1.27.0" 121613 121515 sources."process-0.11.10" ··· 122030 121932 sources."livereload-js-3.3.3" 122031 121933 sources."lodash-4.17.21" 122032 121934 sources."lowercase-keys-1.0.1" 122033 - sources."lru-cache-6.0.0" 121935 + sources."lru-cache-7.8.0" 122034 121936 (sources."make-dir-3.1.0" // { 122035 121937 dependencies = [ 122036 121938 sources."semver-6.3.0" ··· 122100 122002 sources."rimraf-2.7.1" 122101 122003 sources."safe-buffer-5.2.1" 122102 122004 sources."safer-buffer-2.1.2" 122103 - sources."semver-7.3.5" 122005 + sources."semver-7.3.6" 122104 122006 (sources."semver-diff-3.1.1" // { 122105 122007 dependencies = [ 122106 122008 sources."semver-6.3.0" ··· 122158 122060 sources."write-file-atomic-3.0.3" 122159 122061 sources."ws-7.5.7" 122160 122062 sources."xdg-basedir-4.0.0" 122161 - sources."yallist-4.0.0" 122162 122063 sources."yaml-front-matter-4.1.1" 122163 122064 sources."yargs-parser-20.2.9" 122164 122065 sources."yauzl-2.10.0" ··· 122298 122199 sources."cross-spawn-7.0.3" 122299 122200 sources."css-select-4.3.0" 122300 122201 sources."css-what-6.1.0" 122301 - sources."d3-7.4.2" 122302 - sources."d3-array-3.1.4" 122202 + sources."d3-7.4.3" 122203 + sources."d3-array-3.1.5" 122303 122204 sources."d3-axis-3.0.0" 122304 122205 sources."d3-brush-3.0.0" 122305 122206 sources."d3-chord-3.0.1" ··· 122354 122255 sources."dir-glob-3.0.1" 122355 122256 sources."doctrine-3.0.0" 122356 122257 sources."dom-serializer-1.3.2" 122357 - sources."domelementtype-2.2.0" 122258 + sources."domelementtype-2.3.0" 122358 122259 sources."domhandler-4.3.1" 122359 122260 sources."domutils-2.8.0" 122360 122261 sources."duplexer2-0.1.4" ··· 122363 122264 sources."commander-2.20.3" 122364 122265 sources."lru-cache-4.1.5" 122365 122266 sources."semver-5.7.1" 122366 - sources."yallist-2.1.2" 122367 122267 ]; 122368 122268 }) 122369 122269 sources."emoji-regex-8.0.0" ··· 122438 122338 sources."has-flag-4.0.0" 122439 122339 sources."has-symbols-1.0.3" 122440 122340 sources."has-unicode-2.0.1" 122441 - sources."hosted-git-info-4.1.0" 122341 + (sources."hosted-git-info-4.1.0" // { 122342 + dependencies = [ 122343 + sources."lru-cache-6.0.0" 122344 + sources."yallist-4.0.0" 122345 + ]; 122346 + }) 122442 122347 sources."htmlparser2-6.1.0" 122443 122348 sources."http-proxy-agent-4.0.1" 122444 122349 sources."https-proxy-agent-5.0.0" ··· 122466 122371 sources."linkify-it-3.0.3" 122467 122372 sources."listenercount-1.0.1" 122468 122373 sources."lodash.merge-4.6.2" 122469 - sources."lru-cache-6.0.0" 122374 + sources."lru-cache-7.8.0" 122470 122375 (sources."markdown-it-12.3.2" // { 122471 122376 dependencies = [ 122472 122377 sources."entities-2.1.0" ··· 122533 122438 sources."safe-buffer-5.1.2" 122534 122439 sources."safer-buffer-2.1.2" 122535 122440 sources."sax-1.2.4" 122536 - sources."semver-7.3.5" 122441 + sources."semver-7.3.6" 122537 122442 sources."set-blocking-2.0.0" 122538 122443 sources."setimmediate-1.0.5" 122539 122444 sources."shebang-command-2.0.0" ··· 122604 122509 sources."xml2js-0.4.23" 122605 122510 sources."xmlbuilder-11.0.1" 122606 122511 sources."y18n-5.0.8" 122607 - sources."yallist-4.0.0" 122512 + sources."yallist-2.1.2" 122608 122513 sources."yargs-17.4.0" 122609 122514 sources."yargs-parser-21.0.1" 122610 122515 sources."yauzl-2.10.0" ··· 122747 122652 sass = nodeEnv.buildNodePackage { 122748 122653 name = "sass"; 122749 122654 packageName = "sass"; 122750 - version = "1.49.11"; 122655 + version = "1.50.0"; 122751 122656 src = fetchurl { 122752 - url = "https://registry.npmjs.org/sass/-/sass-1.49.11.tgz"; 122753 - sha512 = "wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ=="; 122657 + url = "https://registry.npmjs.org/sass/-/sass-1.50.0.tgz"; 122658 + sha512 = "cLsD6MEZ5URXHStxApajEh7gW189kkjn4Rc8DQweMyF+o5HF5nfEz8QYLMlPsTOD88DknatTmBWkOcw5/LnJLQ=="; 122754 122659 }; 122755 122660 dependencies = [ 122756 122661 sources."anymatch-3.1.2" ··· 122784 122689 semver = nodeEnv.buildNodePackage { 122785 122690 name = "semver"; 122786 122691 packageName = "semver"; 122787 - version = "7.3.5"; 122692 + version = "7.3.6"; 122788 122693 src = fetchurl { 122789 - url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 122790 - sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 122694 + url = "https://registry.npmjs.org/semver/-/semver-7.3.6.tgz"; 122695 + sha512 = "HZWqcgwLsjaX1HBD31msI/rXktuIhS+lWvdE4kN9z+8IVT4Itc7vqU2WvYsyD6/sjYCt4dEKH/m1M3dwI9CC5w=="; 122791 122696 }; 122792 122697 dependencies = [ 122793 - sources."lru-cache-6.0.0" 122794 - sources."yallist-4.0.0" 122698 + sources."lru-cache-7.8.0" 122795 122699 ]; 122796 122700 buildInputs = globalBuildInputs; 122797 122701 meta = { ··· 122927 122831 serverless = nodeEnv.buildNodePackage { 122928 122832 name = "serverless"; 122929 122833 packageName = "serverless"; 122930 - version = "3.11.0"; 122834 + version = "3.12.0"; 122931 122835 src = fetchurl { 122932 - url = "https://registry.npmjs.org/serverless/-/serverless-3.11.0.tgz"; 122933 - sha512 = "v4yfKOK46ri12TkiuNfUrLo+PrfR4BI9WkrUxPF66Cst7Kdu1RH0qiCA6Gxpibauox++gnbxCdgoJ+XKw9nv1g=="; 122836 + url = "https://registry.npmjs.org/serverless/-/serverless-3.12.0.tgz"; 122837 + sha512 = "CKpJGnKYxfxCYw0IojoidfZiueOl0bhbzTcRcHDVDPJLi3DYMQ+o6EwWtF7m36Nkw6FXT36Wot7pmljHoXYrQQ=="; 122934 122838 }; 122935 122839 dependencies = [ 122936 122840 sources."2-thenable-1.0.0" ··· 122985 122889 sources."async-3.2.3" 122986 122890 sources."asynckit-0.4.0" 122987 122891 sources."at-least-node-1.0.0" 122988 - (sources."aws-sdk-2.1108.0" // { 122892 + (sources."aws-sdk-2.1110.0" // { 122989 122893 dependencies = [ 122990 122894 sources."buffer-4.9.2" 122991 122895 sources."ieee754-1.1.13" ··· 123127 123031 sources."duration-0.2.2" 123128 123032 sources."emoji-regex-8.0.0" 123129 123033 sources."end-of-stream-1.4.4" 123130 - sources."es5-ext-0.10.59" 123034 + sources."es5-ext-0.10.60" 123131 123035 sources."es6-iterator-2.0.3" 123132 123036 (sources."es6-set-0.1.5" // { 123133 123037 dependencies = [ ··· 123225 123129 }) 123226 123130 sources."json-schema-traverse-1.0.0" 123227 123131 sources."jsonfile-6.1.0" 123228 - sources."jszip-3.9.0" 123132 + sources."jszip-3.9.1" 123229 123133 sources."jwt-decode-2.2.0" 123230 - sources."keyv-4.2.1" 123134 + sources."keyv-4.2.2" 123231 123135 sources."lazystream-1.0.1" 123232 123136 sources."lie-3.3.0" 123233 123137 sources."lodash-4.17.21" ··· 123240 123144 sources."log-node-8.0.3" 123241 123145 sources."log-symbols-4.1.0" 123242 123146 sources."lowercase-keys-2.0.0" 123243 - sources."lru-cache-6.0.0" 123147 + sources."lru-cache-7.8.0" 123244 123148 sources."lru-queue-0.1.0" 123245 123149 (sources."make-dir-3.1.0" // { 123246 123150 dependencies = [ ··· 123325 123229 sources."safer-buffer-2.1.2" 123326 123230 sources."sax-1.2.1" 123327 123231 sources."seek-bzip-1.0.6" 123328 - sources."semver-7.3.5" 123232 + sources."semver-7.3.6" 123329 123233 sources."set-immediate-shim-1.0.1" 123330 123234 sources."shebang-command-1.2.0" 123331 123235 sources."shebang-regex-1.0.0" ··· 124050 123954 snyk = nodeEnv.buildNodePackage { 124051 123955 name = "snyk"; 124052 123956 packageName = "snyk"; 124053 - version = "1.895.0"; 123957 + version = "1.898.0"; 124054 123958 src = fetchurl { 124055 - url = "https://registry.npmjs.org/snyk/-/snyk-1.895.0.tgz"; 124056 - sha512 = "8/1P6Hx5aiDzTYKCC+yPg5ZhKf4gflodohaQc8/852ftUkCZ58UJopaYkiBTXbN51OTLRIK/TLGfPY0DpVUe+w=="; 123959 + url = "https://registry.npmjs.org/snyk/-/snyk-1.898.0.tgz"; 123960 + sha512 = "FwBO3h3RFJuUVtH8zs6xyca6SsFmp+qDHkOubak6hhsL1SIp2t9Rvpjv8S6+S6S3hktK3KVecKlYhFdmVAK5CA=="; 124057 123961 }; 124058 123962 buildInputs = globalBuildInputs; 124059 123963 meta = { ··· 124117 124021 dependencies = [ 124118 124022 sources."@babel/code-frame-7.16.7" 124119 124023 sources."@babel/helper-validator-identifier-7.16.7" 124120 - (sources."@babel/highlight-7.16.10" // { 124024 + (sources."@babel/highlight-7.17.9" // { 124121 124025 dependencies = [ 124122 124026 sources."ansi-styles-3.2.1" 124123 124027 sources."chalk-2.4.2" ··· 124216 124120 sources."round-to-6.0.0" 124217 124121 sources."safe-buffer-5.2.1" 124218 124122 sources."sax-1.2.4" 124219 - sources."semver-7.3.5" 124123 + (sources."semver-7.3.6" // { 124124 + dependencies = [ 124125 + sources."lru-cache-7.8.0" 124126 + ]; 124127 + }) 124220 124128 sources."signal-exit-3.0.7" 124221 124129 (sources."slice-ansi-5.0.0" // { 124222 124130 dependencies = [ ··· 124349 124257 sources."binary-search-1.3.6" 124350 124258 sources."binary-search-bounds-2.0.5" 124351 124259 sources."bindings-1.5.0" 124352 - sources."bipf-1.6.1" 124260 + sources."bipf-1.6.2" 124353 124261 sources."blake2s-1.1.0" 124354 124262 sources."brace-expansion-1.1.11" 124355 124263 sources."braces-1.8.5" ··· 125313 125221 sources."async-1.5.2" 125314 125222 sources."async-limiter-1.0.1" 125315 125223 sources."asynckit-0.4.0" 125316 - (sources."aws-sdk-2.1108.0" // { 125224 + (sources."aws-sdk-2.1110.0" // { 125317 125225 dependencies = [ 125318 125226 sources."uuid-3.3.2" 125319 125227 ]; ··· 126121 126029 dependencies = [ 126122 126030 sources."@babel/code-frame-7.16.7" 126123 126031 sources."@babel/helper-validator-identifier-7.16.7" 126124 - sources."@babel/highlight-7.16.10" 126032 + sources."@babel/highlight-7.17.9" 126125 126033 sources."@nodelib/fs.scandir-2.1.5" 126126 126034 sources."@nodelib/fs.stat-2.0.5" 126127 126035 sources."@nodelib/fs.walk-1.2.8" ··· 126187 126095 sources."has-1.0.3" 126188 126096 sources."has-flag-3.0.0" 126189 126097 sources."hosted-git-info-4.1.0" 126190 - sources."html-tags-3.1.0" 126098 + sources."html-tags-3.2.0" 126191 126099 sources."ignore-5.2.0" 126192 126100 (sources."import-fresh-3.3.0" // { 126193 126101 dependencies = [ ··· 126273 126181 sources."reusify-1.0.4" 126274 126182 sources."rimraf-3.0.2" 126275 126183 sources."run-parallel-1.2.0" 126276 - sources."semver-7.3.5" 126184 + (sources."semver-7.3.6" // { 126185 + dependencies = [ 126186 + sources."lru-cache-7.8.0" 126187 + ]; 126188 + }) 126277 126189 sources."signal-exit-3.0.7" 126278 126190 sources."slash-3.0.0" 126279 126191 (sources."slice-ansi-4.0.0" // { ··· 126467 126379 svelte-check = nodeEnv.buildNodePackage { 126468 126380 name = "svelte-check"; 126469 126381 packageName = "svelte-check"; 126470 - version = "2.4.6"; 126382 + version = "2.5.0"; 126471 126383 src = fetchurl { 126472 - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.4.6.tgz"; 126473 - sha512 = "luzdly7RJhyXucQe8ID/7CqDgXdMrPYXmyZBjCbp+cixzTopZotuWevrB5hWDOnOU19m2cyetigIIa7WDHnCmQ=="; 126384 + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.5.0.tgz"; 126385 + sha512 = "/laO032JQ1TpmYHgaaLndHNPeWW3VSL3liMB97sA9fYTEzlIy3jIo4Rgr7EzjNvieiNWG73C5voOAeNHlrwbpg=="; 126474 126386 }; 126475 126387 dependencies = [ 126476 126388 sources."@nodelib/fs.scandir-2.1.5" ··· 126549 126461 svelte-language-server = nodeEnv.buildNodePackage { 126550 126462 name = "svelte-language-server"; 126551 126463 packageName = "svelte-language-server"; 126552 - version = "0.14.23"; 126464 + version = "0.14.24"; 126553 126465 src = fetchurl { 126554 - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.23.tgz"; 126555 - sha512 = "/k/Py3fr5Dq7OncbktZUpE/fgMy503hArv41nOa6NLoMbnB3/Lqz7onOKo/K+fyfvWUkHF+Wklz6PZcaNPE8/A=="; 126466 + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.24.tgz"; 126467 + sha512 = "SwRYWCSA9hb6W5VX7zO7CF9+Va31boaei69mq3Z2HatxPZ9FRh1gebCuYZOfHdSKtSgc3BK9uCmyoaLRjUUHIg=="; 126556 126468 }; 126557 126469 dependencies = [ 126558 126470 sources."@emmetio/abbreviation-2.2.3" ··· 126621 126533 sources."strip-indent-3.0.0" 126622 126534 sources."svelte-3.46.6" 126623 126535 sources."svelte-preprocess-4.10.5" 126624 - sources."svelte2tsx-0.5.6" 126536 + sources."svelte2tsx-0.5.7" 126625 126537 sources."to-regex-range-5.0.1" 126626 126538 sources."tslib-2.3.1" 126627 126539 sources."typescript-4.6.3" ··· 126677 126589 sources."css-what-6.1.0" 126678 126590 sources."csso-4.2.0" 126679 126591 sources."dom-serializer-1.3.2" 126680 - sources."domelementtype-2.2.0" 126592 + sources."domelementtype-2.3.0" 126681 126593 sources."domhandler-4.3.1" 126682 126594 sources."domutils-2.8.0" 126683 126595 sources."entities-2.2.0" ··· 127355 127267 dependencies = [ 127356 127268 sources."@babel/code-frame-7.16.7" 127357 127269 sources."@babel/helper-validator-identifier-7.16.7" 127358 - (sources."@babel/highlight-7.16.10" // { 127270 + (sources."@babel/highlight-7.17.9" // { 127359 127271 dependencies = [ 127360 127272 sources."ansi-styles-3.2.1" 127361 127273 sources."chalk-2.4.2" ··· 127969 127881 dependencies = [ 127970 127882 sources."@babel/code-frame-7.16.7" 127971 127883 sources."@babel/helper-validator-identifier-7.16.7" 127972 - sources."@babel/highlight-7.16.10" 127884 + sources."@babel/highlight-7.17.9" 127973 127885 sources."@sindresorhus/is-0.14.0" 127974 127886 sources."@szmarczak/http-timer-1.1.2" 127975 127887 sources."@types/hast-2.3.4" ··· 128849 128761 sources."detect-libc-1.0.3" 128850 128762 sources."dicer-0.3.0" 128851 128763 sources."dom-serializer-1.3.2" 128852 - sources."domelementtype-2.2.0" 128764 + sources."domelementtype-2.3.0" 128853 128765 sources."domhandler-4.3.1" 128854 128766 sources."domutils-2.8.0" 128855 128767 sources."duplexer3-0.1.4" ··· 128969 128881 }) 128970 128882 sources."jwa-2.0.0" 128971 128883 sources."jws-4.0.0" 128972 - sources."keyv-4.2.1" 128884 + sources."keyv-4.2.2" 128973 128885 sources."ldap-filter-0.3.3" 128974 128886 sources."ldapjs-2.3.1" 128975 128887 sources."linkify-it-3.0.3" ··· 129324 129236 sources."detect-libc-1.0.3" 129325 129237 sources."dicer-0.3.0" 129326 129238 sources."dom-serializer-1.3.2" 129327 - sources."domelementtype-2.2.0" 129239 + sources."domelementtype-2.3.0" 129328 129240 sources."domhandler-4.3.1" 129329 129241 sources."domutils-2.8.0" 129330 129242 sources."duplexer3-0.1.4" ··· 129444 129356 }) 129445 129357 sources."jwa-2.0.0" 129446 129358 sources."jws-4.0.0" 129447 - sources."keyv-4.2.1" 129359 + sources."keyv-4.2.2" 129448 129360 sources."ldap-filter-0.3.3" 129449 129361 sources."ldapjs-2.3.1" 129450 129362 sources."linkify-it-3.0.3" ··· 130590 130502 }) 130591 130503 sources."jwa-2.0.0" 130592 130504 sources."jws-4.0.0" 130593 - sources."keyv-4.2.1" 130505 + sources."keyv-4.2.2" 130594 130506 sources."ldap-filter-0.3.3" 130595 130507 sources."ldapjs-2.1.1" 130596 130508 sources."linkify-it-3.0.2" ··· 131057 130969 }) 131058 130970 sources."jwa-2.0.0" 131059 130971 sources."jws-4.0.0" 131060 - sources."keyv-4.2.1" 130972 + sources."keyv-4.2.2" 131061 130973 sources."ldap-filter-0.3.3" 131062 130974 sources."ldapjs-2.1.1" 131063 130975 sources."linkify-it-3.0.2" ··· 131804 131716 sources."jsonfile-6.1.0" 131805 131717 sources."jsprim-1.4.2" 131806 131718 sources."keypress-0.2.1" 131807 - sources."lru-cache-6.0.0" 131719 + sources."lru-cache-7.8.0" 131808 131720 sources."mime-db-1.52.0" 131809 131721 sources."mime-types-2.1.35" 131810 131722 sources."minimatch-3.1.2" ··· 131828 131740 sources."rimraf-2.6.3" 131829 131741 sources."safe-buffer-5.2.1" 131830 131742 sources."safer-buffer-2.1.2" 131831 - sources."semver-7.3.5" 131743 + sources."semver-7.3.6" 131832 131744 sources."sprintf-0.1.5" 131833 131745 sources."sshpk-1.17.0" 131834 131746 sources."stack-trace-0.0.10" ··· 131851 131763 ]; 131852 131764 }) 131853 131765 sources."wrappy-1.0.2" 131854 - sources."yallist-4.0.0" 131855 131766 sources."yauzl-2.10.0" 131856 131767 ]; 131857 131768 buildInputs = globalBuildInputs; ··· 132200 132111 sources."isexe-2.0.0" 132201 132112 sources."jsonfile-6.1.0" 132202 132113 sources."locate-path-3.0.0" 132203 - sources."lru-cache-6.0.0" 132114 + sources."lru-cache-7.8.0" 132204 132115 sources."merge2-1.4.1" 132205 132116 sources."micromatch-4.0.5" 132206 132117 sources."minimatch-3.1.2" ··· 132219 132130 sources."reusify-1.0.4" 132220 132131 sources."rimraf-3.0.2" 132221 132132 sources."run-parallel-1.2.0" 132222 - sources."semver-7.3.5" 132133 + sources."semver-7.3.6" 132223 132134 sources."slash-3.0.0" 132224 132135 sources."temp-dir-2.0.0" 132225 132136 sources."tempy-1.0.1" ··· 132235 132146 sources."vscode-uri-3.0.3" 132236 132147 sources."which-2.0.2" 132237 132148 sources."wrappy-1.0.2" 132238 - sources."yallist-4.0.0" 132239 132149 ]; 132240 132150 buildInputs = globalBuildInputs; 132241 132151 meta = { ··· 132429 132339 sources."jquery-ui-1.13.1" 132430 132340 sources."json-buffer-3.0.1" 132431 132341 sources."just-detect-adblock-1.1.0" 132432 - sources."keyv-4.2.1" 132342 + sources."keyv-4.2.2" 132433 132343 sources."knockout-3.5.1" 132434 132344 sources."kuler-2.0.0" 132435 132345 sources."latest-version-6.0.0" ··· 132507 132417 sources."safe-buffer-5.2.1" 132508 132418 sources."safe-stable-stringify-2.3.1" 132509 132419 sources."safer-buffer-2.1.2" 132510 - (sources."semver-7.3.5" // { 132420 + (sources."semver-7.3.6" // { 132511 132421 dependencies = [ 132512 - sources."lru-cache-6.0.0" 132513 - sources."yallist-4.0.0" 132422 + sources."lru-cache-7.8.0" 132514 132423 ]; 132515 132424 }) 132516 132425 (sources."send-0.17.2" // { ··· 132615 132524 dependencies = [ 132616 132525 sources."@babel/code-frame-7.16.7" 132617 132526 sources."@babel/helper-validator-identifier-7.16.7" 132618 - sources."@babel/highlight-7.16.10" 132527 + sources."@babel/highlight-7.17.9" 132619 132528 sources."@types/concat-stream-2.0.0" 132620 132529 sources."@types/debug-4.1.7" 132621 132530 sources."@types/is-empty-1.2.1" ··· 132664 132573 sources."lines-and-columns-2.0.3" 132665 132574 sources."load-plugin-4.0.1" 132666 132575 sources."locate-path-3.0.0" 132667 - sources."lru-cache-6.0.0" 132576 + sources."lru-cache-7.8.0" 132668 132577 sources."minimatch-3.1.2" 132669 132578 sources."ms-2.1.2" 132670 132579 sources."once-1.4.0" ··· 132676 132585 sources."path-is-absolute-1.0.1" 132677 132586 sources."readable-stream-3.6.0" 132678 132587 sources."safe-buffer-5.2.1" 132679 - sources."semver-7.3.5" 132588 + sources."semver-7.3.6" 132680 132589 sources."string-width-5.1.2" 132681 132590 sources."string_decoder-1.3.0" 132682 132591 sources."strip-ansi-7.0.1" ··· 132703 132612 sources."vscode-languageserver-textdocument-1.0.4" 132704 132613 sources."vscode-languageserver-types-3.16.0" 132705 132614 sources."wrappy-1.0.2" 132706 - sources."yallist-4.0.0" 132707 132615 ]; 132708 132616 buildInputs = globalBuildInputs; 132709 132617 meta = { ··· 132743 132651 sources."commander-7.2.0" 132744 132652 sources."concat-map-0.0.1" 132745 132653 sources."console-control-strings-1.1.0" 132746 - sources."d3-array-3.1.4" 132654 + sources."d3-array-3.1.5" 132747 132655 sources."d3-color-3.1.0" 132748 132656 sources."d3-delaunay-6.0.2" 132749 132657 sources."d3-dispatch-3.0.1" ··· 132780 132688 sources."inherits-2.0.4" 132781 132689 sources."internmap-2.0.3" 132782 132690 sources."is-fullwidth-code-point-3.0.0" 132783 - sources."lru-cache-6.0.0" 132691 + sources."lru-cache-7.8.0" 132784 132692 (sources."make-dir-3.1.0" // { 132785 132693 dependencies = [ 132786 132694 sources."semver-6.3.0" ··· 132806 132714 sources."rw-1.3.3" 132807 132715 sources."safe-buffer-5.2.1" 132808 132716 sources."safer-buffer-2.1.2" 132809 - sources."semver-7.3.5" 132717 + sources."semver-7.3.6" 132810 132718 sources."set-blocking-2.0.0" 132811 132719 sources."signal-exit-3.0.7" 132812 132720 sources."simple-concat-1.0.1" ··· 133071 132979 dependencies = [ 133072 132980 sources."@babel/code-frame-7.12.11" 133073 132981 sources."@babel/helper-validator-identifier-7.16.7" 133074 - (sources."@babel/highlight-7.16.10" // { 132982 + (sources."@babel/highlight-7.17.9" // { 133075 132983 dependencies = [ 133076 132984 sources."chalk-2.4.2" 133077 132985 sources."escape-string-regexp-1.0.5" ··· 133183 133091 sources."lodash-4.17.21" 133184 133092 sources."lodash.merge-4.6.2" 133185 133093 sources."lodash.truncate-4.4.2" 133186 - sources."lru-cache-6.0.0" 133094 + sources."lru-cache-7.8.0" 133187 133095 sources."minimatch-3.1.2" 133188 133096 sources."minimist-1.2.6" 133189 133097 sources."mkdirp-0.5.6" ··· 133207 133115 sources."resolve-1.22.0" 133208 133116 sources."resolve-from-4.0.0" 133209 133117 sources."rimraf-3.0.2" 133210 - sources."semver-7.3.5" 133118 + sources."semver-7.3.6" 133211 133119 sources."shebang-command-2.0.0" 133212 133120 sources."shebang-regex-3.0.0" 133213 133121 (sources."slice-ansi-4.0.0" // { ··· 133254 133162 sources."which-2.0.2" 133255 133163 sources."word-wrap-1.2.3" 133256 133164 sources."wrappy-1.0.2" 133257 - sources."yallist-4.0.0" 133258 133165 ]; 133259 133166 buildInputs = globalBuildInputs; 133260 133167 meta = { ··· 133558 133465 sources."denodeify-1.2.1" 133559 133466 sources."diff-5.0.0" 133560 133467 sources."dom-serializer-1.3.2" 133561 - sources."domelementtype-2.2.0" 133468 + sources."domelementtype-2.3.0" 133562 133469 sources."domhandler-4.3.1" 133563 133470 sources."domutils-2.8.0" 133564 - sources."electron-to-chromium-1.4.103" 133471 + sources."electron-to-chromium-1.4.106" 133565 133472 sources."emoji-regex-8.0.0" 133566 133473 sources."emojis-list-3.0.0" 133567 133474 sources."enhanced-resolve-5.9.2" ··· 133633 133540 sources."locate-path-6.0.0" 133634 133541 sources."lodash-4.17.21" 133635 133542 sources."log-symbols-4.0.0" 133636 - sources."lru-cache-6.0.0" 133543 + sources."lru-cache-7.8.0" 133637 133544 (sources."markdown-it-10.0.0" // { 133638 133545 dependencies = [ 133639 133546 sources."argparse-1.0.10" ··· 133743 133650 (sources."ts-loader-8.3.0" // { 133744 133651 dependencies = [ 133745 133652 sources."enhanced-resolve-4.5.0" 133746 - sources."semver-7.3.5" 133653 + sources."semver-7.3.6" 133747 133654 sources."tapable-1.1.3" 133748 133655 ]; 133749 133656 }) ··· 133770 133677 sources."vscode-debugadapter-testsupport-1.51.0" 133771 133678 sources."vscode-debugprotocol-1.51.0" 133772 133679 sources."watchpack-2.3.1" 133773 - sources."webpack-5.71.0" 133680 + sources."webpack-5.72.0" 133774 133681 (sources."webpack-cli-4.9.2" // { 133775 133682 dependencies = [ 133776 133683 sources."commander-7.2.0" ··· 133792 133699 }) 133793 133700 sources."wrappy-1.0.2" 133794 133701 sources."y18n-5.0.8" 133795 - sources."yallist-4.0.0" 133796 133702 sources."yaml-1.10.2" 133797 133703 (sources."yargs-16.2.0" // { 133798 133704 dependencies = [ ··· 134120 134026 dependencies = [ 134121 134027 sources."@babel/code-frame-7.16.7" 134122 134028 sources."@babel/helper-validator-identifier-7.16.7" 134123 - sources."@babel/highlight-7.16.10" 134029 + sources."@babel/highlight-7.17.9" 134124 134030 sources."@emmetio/extract-abbreviation-0.1.6" 134125 134031 sources."@mrmlnc/readdir-enhanced-2.2.1" 134126 134032 sources."@nodelib/fs.stat-1.1.3" ··· 135062 134968 sha512 = "slGcIXCA/j5d2uzQ7flA4/veF0P0eE+Om/Bw7uEO2LC9a3mVNdB+2bSR1CILMjvgyFy9Q9D6eseomQgp7UW5Dg=="; 135063 134969 }; 135064 134970 dependencies = [ 135065 - sources."@babel/runtime-corejs3-7.17.8" 134971 + sources."@babel/runtime-corejs3-7.17.9" 135066 134972 sources."@mapbox/node-pre-gyp-1.0.9" 135067 134973 sources."@tootallnate/once-1.1.2" 135068 134974 sources."@types/raf-3.4.0" ··· 135159 135065 sources."levn-0.3.0" 135160 135066 sources."lodash-4.17.21" 135161 135067 sources."logidrom-0.3.1" 135162 - sources."lru-cache-6.0.0" 135068 + sources."lru-cache-7.8.0" 135163 135069 (sources."make-dir-3.1.0" // { 135164 135070 dependencies = [ 135165 135071 sources."semver-6.3.0" ··· 135198 135104 sources."safer-buffer-2.1.2" 135199 135105 sources."sax-1.2.4" 135200 135106 sources."saxes-5.0.1" 135201 - sources."semver-7.3.5" 135107 + sources."semver-7.3.6" 135202 135108 sources."set-blocking-2.0.0" 135203 135109 sources."signal-exit-3.0.7" 135204 135110 sources."simple-concat-1.0.1" ··· 135262 135168 dependencies = [ 135263 135169 sources."@babel/code-frame-7.16.7" 135264 135170 sources."@babel/helper-validator-identifier-7.16.7" 135265 - (sources."@babel/highlight-7.16.10" // { 135171 + (sources."@babel/highlight-7.17.9" // { 135266 135172 dependencies = [ 135267 135173 sources."ansi-styles-3.2.1" 135268 135174 sources."chalk-2.4.2" ··· 135390 135296 sources."delayed-stream-1.0.0" 135391 135297 sources."doctrine-3.0.0" 135392 135298 sources."dom-serializer-1.3.2" 135393 - sources."domelementtype-2.2.0" 135299 + sources."domelementtype-2.3.0" 135394 135300 sources."domhandler-4.3.1" 135395 135301 sources."domutils-2.8.0" 135396 135302 sources."dot-prop-5.3.0" ··· 135553 135459 ]; 135554 135460 }) 135555 135461 sources."jsprim-1.4.2" 135556 - (sources."jszip-3.9.0" // { 135462 + (sources."jszip-3.9.1" // { 135557 135463 dependencies = [ 135558 135464 sources."readable-stream-2.3.7" 135559 135465 sources."safe-buffer-5.1.2" ··· 135717 135623 ]; 135718 135624 }) 135719 135625 sources."signal-exit-3.0.7" 135720 - sources."sonic-boom-2.6.0" 135626 + sources."sonic-boom-2.7.0" 135721 135627 sources."source-map-0.6.1" 135722 135628 sources."source-map-js-1.0.2" 135723 135629 sources."source-map-support-0.5.20" ··· 135810 135716 webpack = nodeEnv.buildNodePackage { 135811 135717 name = "webpack"; 135812 135718 packageName = "webpack"; 135813 - version = "5.71.0"; 135719 + version = "5.72.0"; 135814 135720 src = fetchurl { 135815 - url = "https://registry.npmjs.org/webpack/-/webpack-5.71.0.tgz"; 135816 - sha512 = "g4dFT7CFG8LY0iU5G8nBL6VlkT21Z7dcYDpJAEJV5Q1WLb9UwnFbrem1k7K52ILqEmomN7pnzWFxxE6SlDY56A=="; 135721 + url = "https://registry.npmjs.org/webpack/-/webpack-5.72.0.tgz"; 135722 + sha512 = "qmSmbspI0Qo5ld49htys8GY9XhS9CGqFoHTsOVAnjBdg0Zn79y135R+k4IR4rKK6+eKaabMhJwiVB7xw0SJu5w=="; 135817 135723 }; 135818 135724 dependencies = [ 135819 135725 sources."@types/eslint-8.4.1" ··· 135847 135753 sources."caniuse-lite-1.0.30001325" 135848 135754 sources."chrome-trace-event-1.0.3" 135849 135755 sources."commander-2.20.3" 135850 - sources."electron-to-chromium-1.4.103" 135756 + sources."electron-to-chromium-1.4.106" 135851 135757 sources."enhanced-resolve-5.9.2" 135852 135758 sources."es-module-lexer-0.9.3" 135853 135759 sources."escalade-3.1.1" ··· 135975 135881 webpack-dev-server = nodeEnv.buildNodePackage { 135976 135882 name = "webpack-dev-server"; 135977 135883 packageName = "webpack-dev-server"; 135978 - version = "4.8.0"; 135884 + version = "4.8.1"; 135979 135885 src = fetchurl { 135980 - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.8.0.tgz"; 135981 - sha512 = "yZ7OWVP1nOtv8s10R/ZCsH6zf6QKkNusMRBE9DsQbOknRzKaFYYrbwVPCXp8ynUOTt3RlD9szM8H0pUlrJ6wcw=="; 135886 + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.8.1.tgz"; 135887 + sha512 = "dwld70gkgNJa33czmcj/PlKY/nOy/BimbrgZRaR9vDATBQAYgLzggR0nxDtPLJiLrMgZwbE6RRfJ5vnBBasTyg=="; 135982 135888 }; 135983 135889 dependencies = [ 135984 135890 sources."@leichtgewicht/ip-codec-2.0.3" ··· 136798 136704 sha512 = "0V5CpR62BY1EOevIxXq5BL84YJeIunEzRsFlqb00tc7D77I51/0bvgdGRZhEwhNI2rFxKZ1i77eoisT56gfMTQ=="; 136799 136705 }; 136800 136706 dependencies = [ 136801 - sources."@babel/runtime-7.17.8" 136707 + sources."@babel/runtime-7.17.9" 136802 136708 sources."@gar/promisify-1.1.3" 136803 136709 sources."@isaacs/string-locale-compare-1.1.0" 136804 136710 sources."@nodelib/fs.scandir-2.1.5" ··· 136807 136713 (sources."@npmcli/arborist-4.3.1" // { 136808 136714 dependencies = [ 136809 136715 sources."mkdirp-1.0.4" 136810 - sources."semver-7.3.5" 136716 + sources."semver-7.3.6" 136811 136717 ]; 136812 136718 }) 136813 136719 (sources."@npmcli/fs-1.1.1" // { 136814 136720 dependencies = [ 136815 - sources."semver-7.3.5" 136721 + sources."semver-7.3.6" 136816 136722 ]; 136817 136723 }) 136818 136724 (sources."@npmcli/git-2.1.0" // { 136819 136725 dependencies = [ 136726 + sources."lru-cache-6.0.0" 136820 136727 sources."mkdirp-1.0.4" 136821 - sources."semver-7.3.5" 136728 + (sources."semver-7.3.6" // { 136729 + dependencies = [ 136730 + sources."lru-cache-7.8.0" 136731 + ]; 136732 + }) 136822 136733 sources."which-2.0.2" 136734 + sources."yallist-4.0.0" 136823 136735 ]; 136824 136736 }) 136825 136737 sources."@npmcli/installed-package-contents-1.0.7" ··· 136831 136743 }) 136832 136744 (sources."@npmcli/metavuln-calculator-2.0.0" // { 136833 136745 dependencies = [ 136834 - sources."semver-7.3.5" 136746 + sources."semver-7.3.6" 136835 136747 ]; 136836 136748 }) 136837 136749 (sources."@npmcli/move-file-1.1.2" // { ··· 136918 136830 sources."builtins-1.0.3" 136919 136831 (sources."cacache-15.3.0" // { 136920 136832 dependencies = [ 136833 + sources."lru-cache-6.0.0" 136921 136834 sources."mkdirp-1.0.4" 136835 + sources."yallist-4.0.0" 136922 136836 ]; 136923 136837 }) 136924 136838 (sources."cacheable-request-2.1.4" // { ··· 136985 136899 sources."delegates-1.0.0" 136986 136900 sources."depd-1.1.2" 136987 136901 sources."detect-node-2.1.0" 136988 - sources."dezalgo-1.0.3" 136902 + sources."dezalgo-1.0.4" 136989 136903 sources."diff-5.0.0" 136990 136904 sources."dir-glob-3.0.1" 136991 136905 sources."dot-prop-4.2.1" ··· 137043 136957 sources."glob-parent-5.1.2" 137044 136958 (sources."global-agent-2.2.0" // { 137045 136959 dependencies = [ 137046 - sources."semver-7.3.5" 136960 + sources."semver-7.3.6" 137047 136961 ]; 137048 136962 }) 137049 136963 sources."global-dirs-0.1.1" ··· 137196 137110 sources."log-symbols-2.2.0" 137197 137111 sources."loud-rejection-1.6.0" 137198 137112 sources."lowercase-keys-1.0.1" 137199 - sources."lru-cache-6.0.0" 137113 + sources."lru-cache-7.8.0" 137200 137114 sources."macos-release-2.5.0" 137201 137115 sources."make-dir-1.3.0" 137202 137116 (sources."make-fetch-happen-9.1.0" // { 137203 137117 dependencies = [ 137204 137118 sources."http-cache-semantics-4.1.0" 137119 + sources."lru-cache-6.0.0" 137120 + sources."yallist-4.0.0" 137205 137121 ]; 137206 137122 }) 137207 137123 sources."map-age-cleaner-0.1.3" ··· 137230 137146 sources."mimic-response-1.0.1" 137231 137147 sources."minimatch-3.1.2" 137232 137148 sources."minimist-1.2.6" 137233 - sources."minipass-3.1.6" 137149 + (sources."minipass-3.1.6" // { 137150 + dependencies = [ 137151 + sources."yallist-4.0.0" 137152 + ]; 137153 + }) 137234 137154 sources."minipass-collect-1.0.2" 137235 137155 sources."minipass-fetch-1.4.1" 137236 137156 sources."minipass-flush-1.0.5" 137237 137157 sources."minipass-json-stream-1.0.1" 137238 137158 sources."minipass-pipeline-1.2.4" 137239 137159 sources."minipass-sized-1.0.3" 137240 - sources."minizlib-2.1.2" 137160 + (sources."minizlib-2.1.2" // { 137161 + dependencies = [ 137162 + sources."yallist-4.0.0" 137163 + ]; 137164 + }) 137241 137165 sources."mkdirp-0.5.6" 137242 137166 (sources."mkdirp-infer-owner-2.0.0" // { 137243 137167 dependencies = [ ··· 137258 137182 sources."is-fullwidth-code-point-3.0.0" 137259 137183 sources."npmlog-6.0.1" 137260 137184 sources."readable-stream-3.6.0" 137261 - sources."semver-7.3.5" 137185 + sources."semver-7.3.6" 137262 137186 sources."string-width-4.2.3" 137263 137187 sources."strip-ansi-6.0.1" 137264 137188 sources."which-2.0.2" ··· 137272 137196 sources."npm-conf-1.1.3" 137273 137197 (sources."npm-install-checks-4.0.0" // { 137274 137198 dependencies = [ 137275 - sources."semver-7.3.5" 137199 + sources."semver-7.3.6" 137276 137200 ]; 137277 137201 }) 137278 137202 (sources."npm-keyword-5.0.0" // { ··· 137289 137213 (sources."npm-package-arg-8.1.5" // { 137290 137214 dependencies = [ 137291 137215 sources."hosted-git-info-4.1.0" 137292 - sources."semver-7.3.5" 137216 + sources."lru-cache-6.0.0" 137217 + (sources."semver-7.3.6" // { 137218 + dependencies = [ 137219 + sources."lru-cache-7.8.0" 137220 + ]; 137221 + }) 137222 + sources."yallist-4.0.0" 137293 137223 ]; 137294 137224 }) 137295 137225 sources."npm-packlist-3.0.0" 137296 137226 (sources."npm-pick-manifest-6.1.1" // { 137297 137227 dependencies = [ 137298 - sources."semver-7.3.5" 137228 + sources."semver-7.3.6" 137299 137229 ]; 137300 137230 }) 137301 137231 (sources."npm-registry-fetch-12.0.2" // { 137302 137232 dependencies = [ 137303 137233 sources."@npmcli/fs-2.1.0" 137234 + sources."@npmcli/move-file-2.0.0" 137304 137235 sources."@tootallnate/once-2.0.0" 137305 - (sources."cacache-16.0.3" // { 137306 - dependencies = [ 137307 - sources."ssri-8.0.1" 137308 - ]; 137309 - }) 137236 + sources."cacache-16.0.4" 137310 137237 sources."debug-4.3.4" 137311 137238 sources."http-cache-semantics-4.1.0" 137312 137239 sources."http-proxy-agent-5.0.0" 137313 - sources."lru-cache-7.7.3" 137314 137240 (sources."make-fetch-happen-10.1.2" // { 137315 137241 dependencies = [ 137316 137242 sources."minipass-fetch-2.1.0" ··· 137318 137244 }) 137319 137245 sources."mkdirp-1.0.4" 137320 137246 sources."ms-2.1.2" 137321 - (sources."semver-7.3.5" // { 137322 - dependencies = [ 137323 - sources."lru-cache-6.0.0" 137324 - ]; 137325 - }) 137247 + sources."semver-7.3.6" 137326 137248 sources."ssri-9.0.0" 137327 137249 ]; 137328 137250 }) ··· 137599 137521 (sources."tar-6.1.11" // { 137600 137522 dependencies = [ 137601 137523 sources."mkdirp-1.0.4" 137524 + sources."yallist-4.0.0" 137602 137525 ]; 137603 137526 }) 137604 137527 (sources."term-size-1.2.0" // { ··· 137607 137530 sources."execa-0.7.0" 137608 137531 sources."get-stream-3.0.0" 137609 137532 sources."lru-cache-4.1.5" 137610 - sources."yallist-2.1.2" 137611 137533 ]; 137612 137534 }) 137613 137535 sources."text-table-0.2.0" ··· 137683 137605 sources."wrappy-1.0.2" 137684 137606 sources."write-file-atomic-2.4.3" 137685 137607 sources."xdg-basedir-3.0.0" 137686 - sources."yallist-4.0.0" 137608 + sources."yallist-2.1.2" 137687 137609 (sources."yeoman-character-1.1.0" // { 137688 137610 dependencies = [ 137689 137611 sources."has-flag-1.0.0" ··· 137732 137654 sources."readable-stream-3.6.0" 137733 137655 sources."restore-cursor-3.1.0" 137734 137656 sources."rxjs-7.5.5" 137735 - sources."semver-7.3.5" 137657 + sources."semver-7.3.6" 137736 137658 sources."shebang-command-2.0.0" 137737 137659 sources."shebang-regex-3.0.0" 137738 137660 sources."string-width-4.2.3" ··· 137824 137746 sources."through-2.3.8" 137825 137747 sources."to-regex-range-5.0.1" 137826 137748 sources."universalify-2.0.0" 137827 - sources."web-streams-polyfill-3.2.0" 137749 + sources."web-streams-polyfill-3.2.1" 137828 137750 sources."which-2.0.2" 137829 137751 sources."yaml-1.10.2" 137830 137752 ];
+2 -2
pkgs/development/php-packages/phpstan/default.nix
··· 1 1 { mkDerivation, fetchurl, makeWrapper, lib, php }: 2 2 let 3 3 pname = "phpstan"; 4 - version = "1.5.3"; 4 + version = "1.5.4"; 5 5 in 6 6 mkDerivation { 7 7 inherit pname version; 8 8 9 9 src = fetchurl { 10 10 url = "https://github.com/phpstan/phpstan/releases/download/${version}/phpstan.phar"; 11 - sha256 = "sha256-tIVzXxOyHVz2AE0PjQdkQ+uevdSqsjBRIZQWVDwzuKg="; 11 + sha256 = "sha256-6dXYrDpQ3E+z8mcZof7GSXOrUMoceuPTHO21Z8l4Wyw="; 12 12 }; 13 13 14 14 dontUnpack = true;
+2 -2
pkgs/development/php-packages/xdebug/default.nix
··· 3 3 buildPecl { 4 4 pname = "xdebug"; 5 5 6 - version = "3.1.3"; 7 - sha256 = "sha256-N9CmcBlV9bNAbGwye3cCvXwhRi5lbztMziSgUlgBPU4="; 6 + version = "3.1.4"; 7 + sha256 = "sha256-QZWSb59sToAv90m7LKhaxQY2cZpy5TieNy4171I1Bfk="; 8 8 9 9 doCheck = true; 10 10 checkTarget = "test";
+9 -3
pkgs/development/python-modules/Theano/default.nix
··· 11 11 , setuptools 12 12 , six 13 13 , libgpuarray 14 - , cudaSupport ? false, cudatoolkit 15 - , cudnnSupport ? false, cudnn 14 + , cudaSupport ? false, cudaPackages ? {} 15 + , cudnnSupport ? false 16 16 }: 17 + 18 + let 19 + inherit (cudaPackages) cudatoolkit cudnn; 20 + in 17 21 18 22 assert cudnnSupport -> cudaSupport; 19 23 ··· 39 43 ( lib.optional cudaSupport libgpuarray_ 40 44 ++ lib.optional cudnnSupport cudnn ); 41 45 42 - libgpuarray_ = libgpuarray.override { inherit cudaSupport cudatoolkit; }; 46 + # We need to be careful with overriding Python packages within the package set 47 + # as this can lead to collisions! 48 + libgpuarray_ = libgpuarray.override { inherit cudaSupport cudaPackages; }; 43 49 44 50 in buildPythonPackage rec { 45 51 pname = "Theano";
+4 -6
pkgs/development/python-modules/cupy/default.nix
··· 1 1 { lib, buildPythonPackage 2 2 , fetchPypi, isPy3k, cython 3 3 , fastrlock, numpy, six, wheel, pytestCheckHook, mock, setuptools 4 - , cudatoolkit, cudnn, cutensor, nccl 4 + , cudaPackages 5 5 , addOpenGLRunpath 6 6 }: 7 7 8 - assert cudnn.cudatoolkit == cudatoolkit; 9 - assert cutensor.cudatoolkit == cudatoolkit; 10 - assert nccl.cudatoolkit == cudatoolkit; 11 - 12 - buildPythonPackage rec { 8 + let 9 + inherit (cudaPackages) cudatoolkit cudnn cutensor nccl; 10 + in buildPythonPackage rec { 13 11 pname = "cupy"; 14 12 version = "10.2.0"; 15 13 disabled = !isPy3k;
+8
pkgs/development/python-modules/fipy/default.nix
··· 39 39 ] ++ lib.optionals isPy27 [ pysparse ] 40 40 ++ lib.optionals (!stdenv.isDarwin) [ gmsh ]; 41 41 42 + # Reading version string from Gmsh is broken in latest release of FiPy 43 + # This issue is repaired on master branch of FiPy 44 + # Fixed with: https://github.com/usnistgov/fipy/pull/848/files 45 + # Remove patch with next release. 46 + patches = [ ./gmsh.patch ]; 47 + 48 + checkInputs = lib.optionals (!stdenv.isDarwin) [ gmsh ]; 49 + 42 50 checkPhase = '' 43 51 export OMPI_MCA_plm_rsh_agent=${openssh}/bin/ssh 44 52 ${python.interpreter} setup.py test --modules
+182
pkgs/development/python-modules/fipy/gmsh.patch
··· 1 + diff --git a/fipy/meshes/gmshMesh.py b/fipy/meshes/gmshMesh.py 2 + index fc3ff6c8..d529d532 100755 3 + --- a/fipy/meshes/gmshMesh.py 4 + +++ b/fipy/meshes/gmshMesh.py 5 + @@ -13,11 +13,11 @@ import sys 6 + import tempfile 7 + from textwrap import dedent 8 + import warnings 9 + -from distutils.version import StrictVersion 10 + 11 + from fipy.tools import numerix as nx 12 + from fipy.tools import parallelComm 13 + from fipy.tools import serialComm 14 + +from fipy.tools.version import Version, parse_version 15 + from fipy.tests.doctestPlus import register_skipper 16 + 17 + from fipy.meshes.mesh import Mesh 18 + @@ -38,7 +38,7 @@ def _checkForGmsh(): 19 + hasGmsh = True 20 + try: 21 + version = _gmshVersion(communicator=parallelComm) 22 + - hasGmsh = version >= StrictVersion("2.0") 23 + + hasGmsh = version >= Version("2.0") 24 + except Exception: 25 + hasGmsh = False 26 + return hasGmsh 27 + @@ -68,6 +68,7 @@ def gmshVersion(communicator=parallelComm): 28 + while True: 29 + try: 30 + # gmsh returns version in stderr (Why?!?) 31 + + # (newer versions of gmsh return the version in stdout) 32 + # spyder on Windows throws 33 + # OSError: [WinError 6] The handle is invalid 34 + # if we don't PIPE stdout, too 35 + @@ -77,8 +78,11 @@ def gmshVersion(communicator=parallelComm): 36 + break 37 + 38 + try: 39 + - out, verStr = p.communicate() 40 + - verStr = verStr.decode('ascii').strip() 41 + + out, err = p.communicate() 42 + + verStr = err.decode('ascii').strip() 43 + + if not verStr: 44 + + # newer versions of gmsh return the version in stdout 45 + + verStr = out.decode('ascii').strip() 46 + break 47 + except IOError: 48 + # some weird conflict with things like PyQT can cause 49 + @@ -93,12 +97,12 @@ def gmshVersion(communicator=parallelComm): 50 + def _gmshVersion(communicator=parallelComm): 51 + version = gmshVersion(communicator) or "0.0" 52 + try: 53 + - version = StrictVersion(version) 54 + + version = parse_version(version) 55 + except ValueError: 56 + # gmsh returns the version string in stderr, 57 + # which means it's often unparsable due to irrelevant warnings 58 + # assume it's OK and move on 59 + - version = StrictVersion("3.0") 60 + + version = Version("3.0") 61 + 62 + return version 63 + 64 + @@ -133,7 +137,7 @@ def openMSHFile(name, dimensions=None, coordDimensions=None, communicator=parall 65 + 66 + # Enforce gmsh version to be either >= 2 or 2.5, based on Nproc. 67 + version = _gmshVersion(communicator=communicator) 68 + - if version < StrictVersion("2.0"): 69 + + if version < Version("2.0"): 70 + raise EnvironmentError("Gmsh version must be >= 2.0.") 71 + 72 + # If we're being passed a .msh file, leave it be. Otherwise, 73 + @@ -176,9 +180,11 @@ def openMSHFile(name, dimensions=None, coordDimensions=None, communicator=parall 74 + gmshFlags = ["-%d" % dimensions, "-nopopup"] 75 + 76 + if communicator.Nproc > 1: 77 + - if not (StrictVersion("2.5") < version <= StrictVersion("4.0")): 78 + - warnstr = "Cannot partition with Gmsh version < 2.5 or >= 4.0. " \ 79 + - + "Reverting to serial." 80 + + if ((version < Version("2.5")) 81 + + or (Version("4.0") <= version < Version("4.5.2"))): 82 + + warnstr = ("Cannot partition with Gmsh version < 2.5 " 83 + + "or 4.0 <= version < 4.5.2. " 84 + + "Reverting to serial.") 85 + warnings.warn(warnstr, RuntimeWarning, stacklevel=2) 86 + communicator = serialComm 87 + 88 + @@ -188,13 +194,13 @@ def openMSHFile(name, dimensions=None, coordDimensions=None, communicator=parall 89 + raise ValueError("'dimensions' must be specified to generate a mesh from a geometry script") 90 + else: # gmsh version is adequate for partitioning 91 + gmshFlags += ["-part", "%d" % communicator.Nproc] 92 + - if version >= StrictVersion("4.0"): 93 + + if version >= Version("4.0"): 94 + # Gmsh 4.x needs to be told to generate ghost cells 95 + - # Unfortunately, the ghosts are broken 96 + + # Unfortunately, the ghosts are broken in Gmsh 4.0--4.5.1 97 + # https://gitlab.onelab.info/gmsh/gmsh/issues/733 98 + gmshFlags += ["-part_ghosts"] 99 + 100 + - gmshFlags += ["-format", "msh2"] 101 + + gmshFlags += ["-format", "msh2", "-smooth", "8"] 102 + 103 + if background is not None: 104 + if communicator.procID == 0: 105 + @@ -1387,6 +1393,11 @@ class _GmshTopology(_MeshTopology): 106 + class Gmsh2D(Mesh2D): 107 + """Construct a 2D Mesh using Gmsh 108 + 109 + + If called in parallel, the mesh will be partitioned based on the value 110 + + of `parallelComm.Nproc`. If an `MSH` file is supplied, it must have 111 + + been previously partitioned with the number of partitions matching 112 + + `parallelComm.Nproc`. 113 + + 114 + >>> radius = 5. 115 + >>> side = 4. 116 + >>> squaredCircle = Gmsh2D(''' 117 + @@ -1875,6 +1886,11 @@ class Gmsh2D(Mesh2D): 118 + class Gmsh2DIn3DSpace(Gmsh2D): 119 + """Create a topologically 2D Mesh in 3D coordinates using Gmsh 120 + 121 + + If called in parallel, the mesh will be partitioned based on the value 122 + + of `parallelComm.Nproc`. If an `MSH` file is supplied, it must have 123 + + been previously partitioned with the number of partitions matching 124 + + `parallelComm.Nproc`. 125 + + 126 + Parameters 127 + ---------- 128 + arg : str 129 + @@ -1959,6 +1975,11 @@ class Gmsh2DIn3DSpace(Gmsh2D): 130 + class Gmsh3D(Mesh): 131 + """Create a 3D Mesh using Gmsh 132 + 133 + + If called in parallel, the mesh will be partitioned based on the value 134 + + of `parallelComm.Nproc`. If an `MSH` file is supplied, it must have 135 + + been previously partitioned with the number of partitions matching 136 + + `parallelComm.Nproc`. 137 + + 138 + Parameters 139 + ---------- 140 + arg : str 141 + @@ -2225,7 +2246,7 @@ class GmshGrid2D(Gmsh2D): 142 + width = nx * dx 143 + numLayers = int(ny / float(dy)) 144 + 145 + - if _gmshVersion() < StrictVersion("2.7"): 146 + + if _gmshVersion() < Version("2.7"): 147 + # kludge: must offset cellSize by `eps` to work properly 148 + eps = float(dx)/(nx * 10) 149 + else: 150 + @@ -2299,7 +2320,7 @@ class GmshGrid3D(Gmsh3D): 151 + width = nx * dx 152 + depth = nz * dz 153 + 154 + - if _gmshVersion() < StrictVersion("2.7"): 155 + + if _gmshVersion() < Version("2.7"): 156 + # kludge: must offset cellSize by `eps` to work properly 157 + eps = float(dx)/(nx * 10) 158 + else: 159 + diff --git a/fipy/tools/version.py b/fipy/tools/version.py 160 + new file mode 100644 161 + index 00000000..93d89c18 162 + --- /dev/null 163 + +++ b/fipy/tools/version.py 164 + @@ -0,0 +1,18 @@ 165 + +"""Shim for version checking 166 + + 167 + +`distutils.version` is deprecated, but `packaging.version` is unavailable 168 + +in Python 2.7 169 + +""" 170 + +from __future__ import unicode_literals 171 + + 172 + +__docformat__ = 'restructuredtext' 173 + + 174 + + 175 + +__all__ = ["Version", "parse_version"] 176 + +from future.utils import text_to_native_str 177 + +__all__ = [text_to_native_str(n) for n in __all__] 178 + + 179 + +try: 180 + + from packaging.version import Version, parse as parse_version 181 + +except ImportError: 182 + + from distutils.version import StrictVersion as Version, StrictVersion as parse_version
+3 -3
pkgs/development/python-modules/globus-sdk/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "globus-sdk"; 16 - version = "3.6.0"; 16 + version = "3.7.0"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.6"; ··· 21 21 src = fetchFromGitHub { 22 22 owner = "globus"; 23 23 repo = "globus-sdk-python"; 24 - rev = version; 25 - hash = "sha256-SBLQ+uSZE8YkT+fQWIKGlfhocJXX5k9kSejAbjazjM8="; 24 + rev = "refs/tags/${version}"; 25 + hash = "sha256-Us3SCkrBPL3v9YCOQ7ceF3neCUZkJTrchYsvCRSX84Y="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+8 -4
pkgs/development/python-modules/jaxlib/bin.nix
··· 18 18 , autoPatchelfHook 19 19 , buildPythonPackage 20 20 , config 21 - , cudatoolkit_11 22 21 , cudnn 23 22 , fetchurl 24 23 , flatbuffers ··· 29 28 , stdenv 30 29 # Options: 31 30 , cudaSupport ? config.cudaSupport or false 31 + , cudaPackages ? {} 32 32 }: 33 33 34 + let 35 + inherit (cudaPackages) cudatoolkit cudnn; 36 + in 37 + 34 38 # There are no jaxlib wheels targeting cudnn <8.0.5, and although there are 35 39 # wheels for cudatoolkit <11.1, we don't support them. 36 - assert cudaSupport -> lib.versionAtLeast cudatoolkit_11.version "11.1"; 40 + assert cudaSupport -> lib.versionAtLeast cudatoolkit.version "11.1"; 37 41 assert cudaSupport -> lib.versionAtLeast cudnn.version "8.0.5"; 38 42 39 43 let ··· 116 120 rpath=$(patchelf --print-rpath $file) 117 121 # For some reason `makeLibraryPath` on `cudatoolkit_11` maps to 118 122 # <cudatoolkit_11.lib>/lib which is different from <cudatoolkit_11>/lib. 119 - patchelf --set-rpath "$rpath:${cudatoolkit_11}/lib:${lib.makeLibraryPath [ cudatoolkit_11.lib cudnn ]}" $file 123 + patchelf --set-rpath "$rpath:${cudatoolkit}/lib:${lib.makeLibraryPath [ cudatoolkit.lib cudnn ]}" $file 120 124 done 121 125 ''; 122 126 ··· 127 131 # more info. 128 132 postInstall = lib.optional cudaSupport '' 129 133 mkdir -p $out/bin 130 - ln -s ${cudatoolkit_11}/bin/ptxas $out/bin/ptxas 134 + ln -s ${cudatoolkit}/bin/ptxas $out/bin/ptxas 131 135 ''; 132 136 133 137 pythonImportsCheck = [ "jaxlib" ];
+3 -5
pkgs/development/python-modules/jaxlib/default.nix
··· 18 18 , wheel 19 19 , which 20 20 21 - # Build-time and runtime CUDA dependencies: 22 - , cudatoolkit ? null 23 - , cudnn ? null 24 - , nccl ? null 25 - 26 21 # Python dependencies: 27 22 , absl-py 28 23 , flatbuffers ··· 42 37 # CUDA flags: 43 38 , cudaCapabilities ? [ "sm_35" "sm_50" "sm_60" "sm_70" "sm_75" "compute_80" ] 44 39 , cudaSupport ? false 40 + , cudaPackages ? {} 45 41 46 42 # MKL: 47 43 , mklSupport ? true 48 44 }: 49 45 50 46 let 47 + 48 + inherit (cudaPackages) cudatoolkit cudnn nccl; 51 49 52 50 pname = "jaxlib"; 53 51 version = "0.3.0";
+2 -2
pkgs/development/python-modules/libgpuarray/default.nix
··· 9 9 , six 10 10 , nose 11 11 , Mako 12 - , cudaSupport ? false, cudatoolkit 12 + , cudaSupport ? false, cudaPackages 13 13 , openclSupport ? true, ocl-icd, clblas 14 14 }: 15 15 ··· 30 30 configurePhase = "cmakeConfigurePhase"; 31 31 32 32 libraryPath = lib.makeLibraryPath ( 33 - lib.optionals cudaSupport [ cudatoolkit.lib cudatoolkit.out ] 33 + lib.optionals cudaSupport (with cudaPackages; [ cudatoolkit.lib cudatoolkit.out ]) 34 34 ++ lib.optionals openclSupport ([ clblas ] ++ lib.optional (!stdenv.isDarwin) ocl-icd) 35 35 ); 36 36
+5 -2
pkgs/development/python-modules/numba/default.nix
··· 13 13 14 14 # CUDA-only dependencies: 15 15 , addOpenGLRunpath ? null 16 - , cudatoolkit ? null 16 + , cudaPackages ? {} 17 17 18 18 # CUDA flags: 19 19 , cudaSupport ? false 20 20 }: 21 - buildPythonPackage rec { 21 + 22 + let 23 + inherit (cudaPackages) cudatoolkit; 24 + in buildPythonPackage rec { 22 25 version = "0.55.1"; 23 26 pname = "numba"; 24 27 disabled = pythonOlder "3.6" || pythonAtLeast "3.10";
+2 -2
pkgs/development/python-modules/pex/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pex"; 10 - version = "2.1.77"; 10 + version = "2.1.78"; 11 11 format = "flit"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-lvzRb+m3a3DmimzVIroobJaNe2PuMoadb48YwhxCVvA="; 17 + hash = "sha256-1bWAEMMBjmyLS1W+VWgD9BsZq5f0DmEOQryXH9vupCY="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+3 -1
pkgs/development/python-modules/pycuda/default.nix
··· 10 10 , decorator 11 11 , appdirs 12 12 , six 13 - , cudatoolkit 13 + , cudaPackages 14 14 , python 15 15 , mkDerivation 16 16 , lib ··· 19 19 compyte = import ./compyte.nix { 20 20 inherit mkDerivation fetchFromGitHub; 21 21 }; 22 + 23 + inherit (cudaPackages) cudatoolkit; 22 24 in 23 25 buildPythonPackage rec { 24 26 pname = "pycuda";
+8 -4
pkgs/development/python-modules/python-binance/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "python-binance"; 17 - version = "1.0.10"; 17 + version = "1.0.16"; 18 + format = "setuptools"; 19 + 18 20 disabled = pythonOlder "3.6"; 19 21 20 22 src = fetchFromGitHub { 21 23 owner = "sammchardy"; 22 24 repo = pname; 23 - rev = "v${version}"; 24 - sha256 = "09pq2blvky1ah4k8yc6zkp2g5nkn3awc52ad3lxvj6m33akfzxiv"; 25 + rev = "refs/tags/v${version}"; 26 + hash = "sha256-2v3qeykjQR/CUOC6F0Xomm49Q+wrYJS8vmL3+u6ew0M="; 25 27 }; 26 28 27 29 propagatedBuildInputs = [ ··· 44 46 "tests/test_historical_klines.py" 45 47 ]; 46 48 47 - pythonImportsCheck = [ "binance" ]; 49 + pythonImportsCheck = [ 50 + "binance" 51 + ]; 48 52 49 53 meta = with lib; { 50 54 description = "Binance Exchange API python implementation for automated trading";
+6 -2
pkgs/development/python-modules/pytorch/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, fetchpatch, buildPythonPackage, python, 2 - cudaSupport ? false, cudatoolkit, cudnn, nccl, magma, 2 + cudaSupport ? false, cudaPackages, magma, 3 3 mklDnnSupport ? true, useSystemNccl ? true, 4 4 MPISupport ? false, mpi, 5 5 buildDocs ? false, ··· 28 28 pillow, six, future, tensorboard, protobuf, 29 29 30 30 isPy3k, pythonOlder }: 31 + 32 + let 33 + inherit (cudaPackages) cudatoolkit cudnn nccl; 34 + in 31 35 32 36 # assert that everything needed for cuda is present and that the correct cuda versions are used 33 37 assert !cudaSupport || (let majorIs = lib.versions.major cudatoolkit.version; ··· 300 304 requiredSystemFeatures = [ "big-parallel" ]; 301 305 302 306 passthru = { 303 - inherit cudaSupport; 307 + inherit cudaSupport cudaPackages; 304 308 cudaArchList = final_cudaArchList; 305 309 # At least for 1.10.2 `torch.fft` is unavailable unless BLAS provider is MKL. This attribute allows for easy detection of its availability. 306 310 blasProvider = blas.provider;
+2 -2
pkgs/development/python-modules/sabyenc3/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "sabyenc3"; 9 - version = "5.1.6"; 9 + version = "5.1.7"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.7"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-DHHil9ZQsrKLgw5dje0Yo1J5FZAFrY1tn5y3mdBJHWg="; 16 + hash = "sha256-pewB7JAQ/4KitGFrHX52Gn02my/bOcQCz79cwh6vElk="; 17 17 }; 18 18 19 19 # Tests are not included in pypi distribution
+2 -2
pkgs/development/python-modules/stripe/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "stripe"; 10 - version = "2.70.0"; 10 + version = "2.71.0"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-7YiX9o5rrDOYzJmOtWNFUYQGMNZQTAAm/P0K2RyadKQ="; 17 + hash = "sha256-38AE/EOfylmYsVVBTyq46Ou3WJ5LdJJlP0usgQCDYcM="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+6 -2
pkgs/development/python-modules/tensorflow/bin.nix
··· 20 20 , tensorflow-estimator 21 21 , tensorboard 22 22 , cudaSupport ? false 23 - , cudatoolkit 24 - , cudnn 23 + , cudaPackages ? {} 25 24 , patchelfUnstable 26 25 , zlib 27 26 , python ··· 43 42 44 43 let 45 44 packages = import ./binary-hashes.nix; 45 + inherit (cudaPackages) cudatoolkit cudnn; 46 46 in buildPythonPackage { 47 47 pname = "tensorflow" + lib.optionalString cudaSupport "-gpu"; 48 48 inherit (packages) version; ··· 181 181 "tensorflow.python" 182 182 "tensorflow.python.framework" 183 183 ]; 184 + 185 + passthru = { 186 + inherit cudaPackages; 187 + }; 184 188 185 189 meta = with lib; { 186 190 description = "Computation using data flow graphs for scalable machine learning";
+6 -1
pkgs/development/python-modules/tensorflow/default.nix
··· 17 17 # that in nix as well. It would make some things easier and less confusing, but 18 18 # it would also make the default tensorflow package unfree. See 19 19 # https://groups.google.com/a/tensorflow.org/forum/#!topic/developers/iRCt5m4qUz0 20 - , cudaSupport ? false, cudatoolkit ? null, cudnn ? null, nccl ? null 20 + , cudaSupport ? false, cudaPackages ? {} 21 21 , mklSupport ? false, mkl ? null 22 22 , tensorboardSupport ? true 23 23 # XLA without CUDA is broken ··· 30 30 # Darwin deps 31 31 , Foundation, Security, cctools, llvmPackages_11 32 32 }: 33 + 34 + let 35 + inherit (cudaPackages) cudatoolkit cudnn nccl; 36 + in 33 37 34 38 assert cudaSupport -> cudatoolkit != null 35 39 && cudnn != null; ··· 514 518 # Regression test for #77626 removed because not more `tensorflow.contrib`. 515 519 516 520 passthru = { 521 + inherit cudaPackages; 517 522 deps = bazel-build.deps; 518 523 libtensorflow = bazel-build.out; 519 524 };
+2 -2
pkgs/development/python-modules/torchvision/default.nix
··· 11 11 , pillow 12 12 , pytorch 13 13 , pytest 14 - , cudatoolkit 15 - , cudnn 16 14 , cudaSupport ? pytorch.cudaSupport or false # by default uses the value from pytorch 17 15 }: 18 16 19 17 let 18 + inherit (pytorch.cudaPackages) cudatoolkit cudnn; 19 + 20 20 cudatoolkit_joined = symlinkJoin { 21 21 name = "${cudatoolkit.name}-unsplit"; 22 22 paths = [ cudatoolkit.out cudatoolkit.lib ];
+2 -2
pkgs/development/tools/pipenv/default.nix
··· 19 19 20 20 in buildPythonApplication rec { 21 21 pname = "pipenv"; 22 - version = "2022.3.28"; 22 + version = "2022.4.8"; 23 23 24 24 src = fetchPypi { 25 25 inherit pname version; 26 - sha256 = "sha256-TnquYtrXZ5zoG1TMNFG+GfssRp4mkzWzaxQTL+XO7LM="; 26 + sha256 = "sha256-U1Yr9p2eUjj5mh4hAcNWdGscCu+l3OubioSlo+IB3g0="; 27 27 }; 28 28 29 29 LC_ALL = "en_US.UTF-8";
+3 -3
pkgs/development/tools/regclient/default.nix
··· 4 4 5 5 buildGoModule rec { 6 6 pname = "regclient"; 7 - version = "0.3.10"; 7 + version = "0.4.0"; 8 8 tag = "v${version}"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "regclient"; 12 12 repo = "regclient"; 13 13 rev = tag; 14 - sha256 = "sha256-3nYVhKHNz0V0j6JlZ5Dm5TFWA2kmUhshNVUym/QWSyM="; 14 + sha256 = "sha256-AaSl++/i00YAvmvaUSEwLLpItYACtmWEFTuUngl7rkI="; 15 15 }; 16 - vendorSha256 = "sha256-rj4sQ8Ci2KMayJNXn+KVihOiZehk233l48Ps0yjOOE4="; 16 + vendorSha256 = "sha256-qpZ3RsBOkWqLCDK11vBGkAZJBC7T8hmpmm4ccGeWBus="; 17 17 18 18 outputs = [ "out" ] ++ bins; 19 19
+9 -20
pkgs/development/tools/rust/bindgen/unwrapped.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, clang, rustfmt, writeTextFile 1 + { lib, fetchFromGitHub, rustPlatform, clang, rustfmt 2 2 , runtimeShell 3 3 , bash 4 4 }: 5 - 6 - rustPlatform.buildRustPackage rec { 5 + let 6 + # bindgen hardcodes rustfmt outputs that use nightly features 7 + rustfmt-nightly = rustfmt.override { asNightly = true; }; 8 + in rustPlatform.buildRustPackage rec { 7 9 pname = "rust-bindgen-unwrapped"; 8 10 version = "0.59.2"; 9 11 ··· 25 27 ''; 26 28 27 29 doCheck = true; 28 - checkInputs = 29 - let fakeRustup = writeTextFile { 30 - name = "fake-rustup"; 31 - executable = true; 32 - destination = "/bin/rustup"; 33 - text = '' 34 - #!${runtimeShell} 35 - shift 36 - shift 37 - exec "$@" 38 - ''; 39 - }; 40 - in [ 41 - rustfmt 42 - fakeRustup # the test suite insists in calling `rustup run nightly rustfmt` 43 - clang 44 - ]; 30 + checkInputs = [ clang ]; 31 + 32 + RUSTFMT = "${rustfmt-nightly}/bin/rustfmt"; 33 + 45 34 preCheck = '' 46 35 # for the ci folder, notably 47 36 patchShebangs .
+3 -4
pkgs/games/katago/default.nix
··· 1 1 { stdenv 2 2 , boost 3 3 , cmake 4 - , cudatoolkit 5 - , cudnn 4 + , cudaPackages 6 5 , eigen 7 6 , fetchFromGitHub 8 7 , gperftools ··· 52 51 ] ++ lib.optionals (!enableGPU) [ 53 52 eigen 54 53 ] ++ lib.optionals (enableGPU && enableCuda) [ 55 - cudnn 54 + cudaPackages.cudnn 56 55 mesa.drivers 57 56 ] ++ lib.optionals (enableGPU && !enableCuda) [ 58 57 opencl-headers ··· 86 85 preConfigure = '' 87 86 cd cpp/ 88 87 '' + lib.optionalString enableCuda '' 89 - export CUDA_PATH="${cudatoolkit}" 88 + export CUDA_PATH="${cudaPackages.cudatoolkit}" 90 89 export EXTRA_LDFLAGS="-L/run/opengl-driver/lib" 91 90 ''; 92 91
+6 -3
pkgs/servers/web-apps/wiki-js/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wiki-js"; 5 - version = "2.5.276"; 5 + version = "2.5.277"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/Requarks/wiki/releases/download/v${version}/${pname}.tar.gz"; 9 - sha256 = "sha256-ulx3/yj5wxmHsep0+93xpy6VeQJkMXRjGd/xx2F1zII="; 9 + sha256 = "sha256-YLw0DR4dbPfNY56lNybEQFXFEVPZ99sQkwDl6gtz40E="; 10 10 }; 11 11 12 12 sourceRoot = "."; ··· 21 21 runHook postInstall 22 22 ''; 23 23 24 - passthru.tests = { inherit (nixosTests) wiki-js; }; 24 + passthru = { 25 + tests = { inherit (nixosTests) wiki-js; }; 26 + updateScript = ./update.sh; 27 + }; 25 28 26 29 meta = with lib; { 27 30 homepage = "https://js.wiki/";
+13
pkgs/servers/web-apps/wiki-js/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p curl common-updater-scripts 3 + 4 + oldVersion="$(nix-instantiate --eval -E "with import ./. {}; lib.getVersion wiki-js" | tr -d '"')" 5 + latestTag="$(git ls-remote --tags --sort="v:refname" https://github.com/Requarks/wiki.git | tail -1 | awk '{ print $2 }' | sed -E "s,^refs/tags/v(.*)$,\1,")" 6 + 7 + targetVersion="${1:-$latestTag}" 8 + if [ ! "${oldVersion}" = "${targetVersion}" ]; then 9 + update-source-version wiki-js "${targetVersion}" 10 + nix-build -A wiki-js 11 + else 12 + echo "wiki-js is already up-to-date" 13 + fi
-52
pkgs/test/cuda/cuda-library-samples/default.nix
··· 1 - { callPackage 2 - , cudatoolkit_10_1, cudatoolkit_10_2 3 - , cudatoolkit_11_0, cudatoolkit_11_1, cudatoolkit_11_2, cudatoolkit_11_3, cudatoolkit_11_4 4 - , cutensor_cudatoolkit_10_1, cutensor_cudatoolkit_10_2 5 - , cutensor_cudatoolkit_11_0, cutensor_cudatoolkit_11_1, cutensor_cudatoolkit_11_2, cutensor_cudatoolkit_11_3, cutensor_cudatoolkit_11_4 6 - }: 7 - 8 - rec { 9 - 10 - cuda-library-samples_cudatoolkit_10_1 = callPackage ./generic.nix { 11 - cudatoolkit = cudatoolkit_10_1; 12 - cutensor_cudatoolkit = cutensor_cudatoolkit_10_1; 13 - }; 14 - 15 - cuda-library-samples_cudatoolkit_10_2 = callPackage ./generic.nix { 16 - cudatoolkit = cudatoolkit_10_2; 17 - cutensor_cudatoolkit = cutensor_cudatoolkit_10_2; 18 - }; 19 - 20 - cuda-library-samples_cudatoolkit_10 = 21 - cuda-library-samples_cudatoolkit_10_2; 22 - 23 - ## 24 - 25 - cuda-library-samples_cudatoolkit_11_0 = callPackage ./generic.nix { 26 - cudatoolkit = cudatoolkit_11_0; 27 - cutensor_cudatoolkit = cutensor_cudatoolkit_11_0; 28 - }; 29 - 30 - cuda-library-samples_cudatoolkit_11_1 = callPackage ./generic.nix { 31 - cudatoolkit = cudatoolkit_11_1; 32 - cutensor_cudatoolkit = cutensor_cudatoolkit_11_1; 33 - }; 34 - 35 - cuda-library-samples_cudatoolkit_11_2 = callPackage ./generic.nix { 36 - cudatoolkit = cudatoolkit_11_2; 37 - cutensor_cudatoolkit = cutensor_cudatoolkit_11_2; 38 - }; 39 - 40 - cuda-library-samples_cudatoolkit_11_3 = callPackage ./generic.nix { 41 - cudatoolkit = cudatoolkit_11_3; 42 - cutensor_cudatoolkit = cutensor_cudatoolkit_11_3; 43 - }; 44 - 45 - cuda-library-samples_cudatoolkit_11_4 = callPackage ./generic.nix { 46 - cudatoolkit = cudatoolkit_11_4; 47 - cutensor_cudatoolkit = cutensor_cudatoolkit_11_4; 48 - }; 49 - 50 - cuda-library-samples_cudatoolkit_11 = 51 - cuda-library-samples_cudatoolkit_11_4; 52 - }
+3
pkgs/test/cuda/cuda-library-samples/extension.nix
··· 1 + final: prev: { 2 + cuda-library-samples = final.callPackage ./generic.nix { }; 3 + }
+3 -3
pkgs/test/cuda/cuda-library-samples/generic.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 2 , cmake, addOpenGLRunpath 3 3 , cudatoolkit 4 - , cutensor_cudatoolkit 4 + , cutensor 5 5 }: 6 6 7 7 let ··· 61 61 # CUTENSOR_ROOT is double escaped 62 62 postPatch = '' 63 63 substituteInPlace CMakeLists.txt \ 64 - --replace "\''${CUTENSOR_ROOT}/include" "${cutensor_cudatoolkit.dev}/include" 64 + --replace "\''${CUTENSOR_ROOT}/include" "${cutensor.dev}/include" 65 65 ''; 66 66 67 - CUTENSOR_ROOT = cutensor_cudatoolkit; 67 + CUTENSOR_ROOT = cutensor; 68 68 }); 69 69 }
-54
pkgs/test/cuda/cuda-samples/default.nix
··· 1 - { callPackage 2 - , cudatoolkit_10_0, cudatoolkit_10_1, cudatoolkit_10_2 3 - , cudatoolkit_11_0, cudatoolkit_11_1, cudatoolkit_11_2, cudatoolkit_11_3, cudatoolkit_11_4 4 - }: 5 - 6 - rec { 7 - ## 8 - 9 - cuda-samples_cudatoolkit_10_0 = callPackage ./generic.nix { 10 - cudatoolkit = cudatoolkit_10_0; 11 - sha256 = "1zvh4xsdyc59m87brpcmssxsjlp9dkynh4asnkcmc3g94f53l0jw"; 12 - }; 13 - 14 - cuda-samples_cudatoolkit_10_1 = callPackage ./generic.nix { 15 - cudatoolkit = cudatoolkit_10_1; 16 - sha256 = "1s8ka0hznrni36ajhzf2gqpdrl8kd8fi047qijxks5l2abc093qd"; 17 - }; 18 - 19 - cuda-samples_cudatoolkit_10_2 = callPackage ./generic.nix { 20 - cudatoolkit = cudatoolkit_10_2; 21 - sha256 = "01p1innzgh9siacpld6nsqimj8jkg93rk4gj8q4crn62pa5vhd94"; 22 - }; 23 - 24 - cuda-samples_cudatoolkit_10 = cuda-samples_cudatoolkit_10_2; 25 - 26 - ## 27 - 28 - cuda-samples_cudatoolkit_11_0 = callPackage ./generic.nix { 29 - cudatoolkit = cudatoolkit_11_0; 30 - sha256 = "1n3vjc8c7zdig2xgl5fppavrphqzhdiv9m9nk6smh4f99fwi0705"; 31 - }; 32 - 33 - cuda-samples_cudatoolkit_11_1 = callPackage ./generic.nix { 34 - cudatoolkit = cudatoolkit_11_1; 35 - sha256 = "1kjixk50i8y1bkiwbdn5lkv342crvkmbvy1xl5j3lsa1ica21kwh"; 36 - }; 37 - 38 - cuda-samples_cudatoolkit_11_2 = callPackage ./generic.nix { 39 - cudatoolkit = cudatoolkit_11_2; 40 - sha256 = "1p1qjvfbm28l933mmnln02rqrf0cy9kbpsyb488d1haiqzvrazl1"; 41 - }; 42 - 43 - cuda-samples_cudatoolkit_11_3 = callPackage ./generic.nix { 44 - cudatoolkit = cudatoolkit_11_3; 45 - sha256 = "0kbibb6pgz8j5iq6284axcnmycaha9bw8qlmdp6yfwmnahq1v0yz"; 46 - }; 47 - 48 - cuda-samples_cudatoolkit_11_4 = callPackage ./generic.nix { 49 - cudatoolkit = cudatoolkit_11_4; 50 - sha256 = "082dkk5y34wyvjgj2p5j1d00rk8xaxb9z0mhvz16bd469r1bw2qk"; 51 - }; 52 - 53 - cuda-samples_cudatoolkit_11 = cuda-samples_cudatoolkit_11_4; 54 - }
+20
pkgs/test/cuda/cuda-samples/extension.nix
··· 1 + final: prev: let 2 + 3 + sha256 = { 4 + "10.0" = "1zvh4xsdyc59m87brpcmssxsjlp9dkynh4asnkcmc3g94f53l0jw"; 5 + "10.1" = "1s8ka0hznrni36ajhzf2gqpdrl8kd8fi047qijxks5l2abc093qd"; 6 + "10.2" = "01p1innzgh9siacpld6nsqimj8jkg93rk4gj8q4crn62pa5vhd94"; 7 + "11.0" = "1n3vjc8c7zdig2xgl5fppavrphqzhdiv9m9nk6smh4f99fwi0705"; 8 + "11.1" = "1kjixk50i8y1bkiwbdn5lkv342crvkmbvy1xl5j3lsa1ica21kwh"; 9 + "11.2" = "1p1qjvfbm28l933mmnln02rqrf0cy9kbpsyb488d1haiqzvrazl1"; 10 + "11.3" = "0kbibb6pgz8j5iq6284axcnmycaha9bw8qlmdp6yfwmnahq1v0yz"; 11 + "11.4" = "082dkk5y34wyvjgj2p5j1d00rk8xaxb9z0mhvz16bd469r1bw2qk"; 12 + "11.5" = "sha256-AKRZbke0K59lakhTi8dX2cR2aBuWPZkiQxyKaZTvHrI="; 13 + "11.6" = "sha256-AsLNmAplfuQbXg9zt09tXAuFJ524EtTYsQuUlV1tPkE="; 14 + }.${prev.cudaVersion}; 15 + 16 + in { 17 + cuda-samples = final.callPackage ./generic.nix { 18 + inherit sha256; 19 + }; 20 + }
+7 -7
pkgs/tools/admin/eksctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "eksctl"; 5 - version = "0.91.0"; 5 + version = "0.92.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "weaveworks"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-Hz/joHOzy71ZtbpoTjomccSgc49VyWACTC9EwSiDpzc="; 11 + sha256 = "sha256-CsOR5S2FpIE/T1N/wLzXs5ltuLkice0YRKgdZUTz3ic="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-rkEVtIHXD5lXj8r89vhoWhJZF3unvwB43Zz3jBHRjYU="; 14 + vendorSha256 = "sha256-gNmIBjGG/EieNNjC7XLOD/SXQm96kRxbiT2JmdaPrh4="; 15 15 16 16 doCheck = false; 17 17 ··· 29 29 nativeBuildInputs = [ installShellFiles ]; 30 30 31 31 postInstall = '' 32 - for shell in bash fish zsh; do 33 - $out/bin/eksctl completion $shell > eksctl.$shell 34 - installShellCompletion eksctl.$shell 35 - done 32 + installShellCompletion --cmd eksctl \ 33 + --bash <($out/bin/eksctl completion bash) \ 34 + --fish <($out/bin/eksctl completion fish) \ 35 + --zsh <($out/bin/eksctl completion zsh) 36 36 ''; 37 37 38 38 meta = with lib; {
+2 -2
pkgs/tools/misc/yad/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "yad"; 6 - version = "10.1"; 6 + version = "11.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "v1cont"; 10 10 repo = "yad"; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-k41Z3QVGm7JUR1ny0vJKLxakabK9Da5qCnrPUHvAkWE="; 12 + sha256 = "sha256-I+3euq3qel9VCDVf0Bd4XdMOCt+g/CYlnnje50lbRr8="; 13 13 }; 14 14 15 15 configureFlags = [
+2 -2
pkgs/tools/networking/godns/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "godns"; 5 - version = "2.7.1"; 5 + version = "2.7.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "TimothyYe"; 9 9 repo = "godns"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-4PkG8u0wYHHFWR9s4s08tkeBbXdxTUv48HRZsSraNak="; 11 + sha256 = "sha256-4QWcccJHvytZmWZJnPcI8W6pQCWgXz0FkTe8sX54Cbk="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-vhByl9oJjFIvOskAgLubZ5RCcitKd2jjxi8D9nU6850=";
+11 -4
pkgs/tools/networking/pmacct/default.nix
··· 11 11 , withNflog ? true, libnetfilter_log 12 12 , withSQLite ? true, sqlite 13 13 , withPgSQL ? true, postgresql 14 - , withMysql ? true, libmysqlclient, zlib 14 + , withMysql ? true, libmysqlclient, zlib, numactl 15 15 , gnutlsSupport ? false, gnutls 16 + , testVersion 17 + , pmacct 16 18 }: 17 19 18 20 stdenv.mkDerivation rec { 19 - version = "1.7.6"; 21 + version = "1.7.7"; 20 22 pname = "pmacct"; 21 23 22 24 src = fetchFromGitHub { 23 25 owner = "pmacct"; 24 26 repo = "pmacct"; 25 27 rev = "v${version}"; 26 - sha256 = "0x1i75hwz44siqvn4i58jgji0zwrqgn6ayv89s9m9nh3b423nsiv"; 28 + sha256 = "1pjaa44qj3y5dfwsd1a9r7a4riy7afza8phx2npcsyyarssxc63w"; 27 29 }; 28 30 29 31 nativeBuildInputs = [ ··· 38 40 ++ lib.optional withNflog libnetfilter_log 39 41 ++ lib.optional withSQLite sqlite 40 42 ++ lib.optional withPgSQL postgresql 41 - ++ lib.optionals withMysql [ libmysqlclient zlib ] 43 + ++ lib.optionals withMysql [ libmysqlclient zlib numactl ] 42 44 ++ lib.optional gnutlsSupport gnutls; 43 45 44 46 MYSQL_CONFIG = lib.optionalString withMysql "${lib.getDev libmysqlclient}/bin/mysql_config"; ··· 52 54 ++ lib.optional withMysql "--enable-mysql" 53 55 ++ lib.optional gnutlsSupport "--enable-gnutls"; 54 56 57 + passthru.tests = { 58 + version = testVersion { package = pmacct; command = "pmacct -V"; }; 59 + }; 60 + 55 61 meta = with lib; { 56 62 description = "A small set of multi-purpose passive network monitoring tools"; 57 63 longDescription = '' ··· 59 65 [NetFlow IPFIX sFlow libpcap BGP BMP RPKI IGP Streaming Telemetry] 60 66 ''; 61 67 homepage = "http://www.pmacct.net/"; 68 + changelog = "https://github.com/pmacct/pmacct/blob/v${version}/ChangeLog"; 62 69 license = licenses.gpl2; 63 70 maintainers = with maintainers; [ _0x4A6F ]; 64 71 platforms = platforms.unix;
+3 -3
pkgs/tools/security/cfripper/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "cfripper"; 8 - version = "1.7.1"; 8 + version = "1.8.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "Skyscanner"; 12 12 repo = pname; 13 - rev = version; 14 - hash = "sha256-Q1J5M6RyYjVi2rkOCThFQdBCxVKkza+wytO67vLlVQg="; 13 + rev = "refs/tags/${version}"; 14 + hash = "sha256-x6QfS3DdJMpVKOLrz3EvYzIU72GzLdEePfpE9siEmCo="; 15 15 }; 16 16 17 17 propagatedBuildInputs = with python3.pkgs; [
+25
pkgs/tools/wayland/swaysome/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitLab 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "swaysome"; 8 + version = "1.1.2"; 9 + 10 + src = fetchFromGitLab { 11 + owner = "hyask"; 12 + repo = pname; 13 + rev = version; 14 + sha256 = "sha256-eX2Pzn5It4yf94ZWH/7yAJjwpayVYvpvbrvk7qvbimg="; 15 + }; 16 + 17 + cargoSha256 = "sha256-WXjmXwqeWnQVyFs51t81kHHMMn9HQQjBRw1g1cU+6/M="; 18 + 19 + meta = with lib; { 20 + description = "Helper to make sway behave more like awesomewm"; 21 + homepage = "https://gitlab.com/hyask/swaysome"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ esclear ]; 24 + }; 25 + }
+2 -2
pkgs/tools/wayland/wob/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "wob"; 16 - version = "0.12"; 16 + version = "0.13"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "francma"; 20 20 repo = pname; 21 21 rev = version; 22 - sha256 = "sha256-gVQqZbz6ylBBlmhSgyaSEvAyMi48QiuviwZodPVGJxI="; 22 + sha256 = "sha256-CXRBNnnhNV5LBIasVtmGrRG4ZXFGC7qNInU7Y0QsHbs="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
+45 -1
pkgs/top-level/aliases.nix
··· 195 195 cryptol = throw "cryptol was removed due to prolonged broken build"; # Added 2020-08-21 196 196 197 197 # CUDA Toolkit 198 - 199 198 cudatoolkit_6 = throw "cudatoolkit_6 has been removed in favor of newer versions"; # Added 2021-02-14 200 199 cudatoolkit_65 = throw "cudatoolkit_65 has been removed in favor of newer versions"; # Added 2021-02-14 201 200 cudatoolkit_7 = throw "cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14 ··· 205 204 cudatoolkit_9_0 = throw "cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18 206 205 cudatoolkit_9_1 = throw "cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 207 206 cudatoolkit_9_2 = throw "cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18 207 + cudatoolkit_10 = throw "cudatoolkit_10 has been renamed to cudaPackages_10.cudatoolkit"; # Added 2022-04-04 208 + cudatoolkit_10_0 = throw "cudatoolkit_10_0 has been renamed to cudaPackages_10_0.cudatoolkit"; # Added 2022-04-04 209 + cudatoolkit_10_1 = throw "cudatoolkit_10_1 has been renamed to cudaPackages_10_1.cudatoolkit"; # Added 2022-04-04 210 + cudatoolkit_10_2 = throw "cudatoolkit_10_2 has been renamed to cudaPackages_10_2.cudatoolkit"; # Added 2022-04-04 211 + cudatoolkit_11_0 = throw "cudatoolkit_11_0 has been renamed to cudaPackages_11_0.cudatoolkit"; # Added 2022-04-04 212 + cudatoolkit_11_1 = throw "cudatoolkit_11_1 has been renamed to cudaPackages_11_1.cudatoolkit"; # Added 2022-04-04 213 + cudatoolkit_11_2 = throw "cudatoolkit_11_2 has been renamed to cudaPackages_11_2.cudatoolkit"; # Added 2022-04-04 214 + cudatoolkit_11_3 = throw "cudatoolkit_11_3 has been renamed to cudaPackages_11_3.cudatoolkit"; # Added 2022-04-04 215 + cudatoolkit_11_4 = throw "cudatoolkit_11_4 has been renamed to cudaPackages_11_4.cudatoolkit"; # Added 2022-04-04 216 + cudatoolkit_11_5 = throw "cudatoolkit_11_5 has been renamed to cudaPackages_11_5.cudatoolkit"; # Added 2022-04-04 217 + cudatoolkit_11_6 = throw "cudatoolkit_11_6 has been renamed to cudaPackages_11_6.cudatoolkit"; # Added 2022-04-04 218 + 219 + cudnn = throw "cudnn is now part of cudaPackages*"; # Added 2022-04-04 208 220 cudnn6_cudatoolkit_8 = throw "cudnn6_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 209 221 cudnn_cudatoolkit_7 = throw "cudnn_cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14 222 + cudnn_7_4_cudatoolkit_10_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 210 223 cudnn_cudatoolkit_7_5 = throw "cudnn_cudatoolkit_7_5 has been removed in favor of newer versions"; # Added 2021-02-14 224 + cudnn_7_6_cudatoolkit_10_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 225 + cudnn_7_6_cudatoolkit_10_1 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 211 226 cudnn_cudatoolkit_8 = throw "cudnn_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 227 + cudnn_8_1_cudatoolkit_10_2 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 228 + cudnn_8_1_cudatoolkit_11_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 229 + cudnn_8_1_cudatoolkit_11_1 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 230 + cudnn_8_1_cudatoolkit_11_2 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 231 + cudnn_8_1_cudatoolkit_10 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 232 + cudnn_8_3_cudatoolkit_10_2 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 233 + cudnn_8_3_cudatoolkit_11_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 234 + cudnn_8_3_cudatoolkit_11_1 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 235 + cudnn_8_3_cudatoolkit_11_2 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 236 + cudnn_8_3_cudatoolkit_11_3 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 237 + cudnn_8_3_cudatoolkit_11_4 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 238 + cudnn_8_3_cudatoolkit_11_5 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 239 + cudnn_8_3_cudatoolkit_10 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 240 + cudnn_8_3_cudatoolkit_11 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 212 241 cudnn_cudatoolkit_9 = throw "cudnn_cudatoolkit_9 has been removed in favor of newer versions"; # Added 2021-04-18 213 242 cudnn_cudatoolkit_9_0 = throw "cudnn_cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18 214 243 cudnn_cudatoolkit_9_1 = throw "cudnn_cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 215 244 cudnn_cudatoolkit_9_2 = throw "cudnn_cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18 245 + 246 + cutensor = throw "cutensor is now part of cudaPackages*"; # Added 2022-04-04 247 + cutensor_cudatoolkit_10 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 248 + cutensor_cudatoolkit_10_1 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 249 + cutensor_cudatoolkit_10_2 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 250 + cutensor_cudatoolkit_11 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 251 + cutensor_cudatoolkit_11_0 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 252 + cutensor_cudatoolkit_11_1 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 253 + cutensor_cudatoolkit_11_2 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 254 + cutensor_cudatoolkit_11_3 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 255 + cutensor_cudatoolkit_11_4 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 216 256 217 257 cloud-print-connector = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; 218 258 cquery = throw "cquery has been removed because it is abandoned by upstream. Consider switching to clangd or ccls instead"; # Added 2020-06-15 ··· 782 822 mysqlWorkbench = throw "'mysqlWorkbench' has been renamed to/replaced by 'mysql-workbench'"; # Converted to throw 2022-02-22 783 823 784 824 ### N ### 825 + 826 + nccl = throw "nccl has been renamed to cudaPackages.nccl"; # Added 2022-04-04 827 + nccl_cudatoolkit_10 = throw "nccl_cudatoolkit_10 has been renamed to cudaPackages_10.nccl"; # Added 2022-04-04 828 + nccl_cudatoolkit_11 = throw "nccl_cudatoolkit_11 has been renamed to cudaPackages_11.nccl"; # Added 2022-04-04 785 829 786 830 net_snmp = net-snmp; # Added 2019-12-21 787 831 nagiosPluginsOfficial = monitoring-plugins;
+21 -62
pkgs/top-level/all-packages.nix
··· 2363 2363 2364 2364 libtensorflow-bin = callPackage ../development/libraries/science/math/tensorflow/bin.nix { 2365 2365 cudaSupport = config.cudaSupport or false; 2366 - cudatoolkit = cudatoolkit_10_0; 2367 - cudnn = cudnn_7_4_cudatoolkit_10_0; 2366 + cudaPackages = cudaPackages_10_0; 2368 2367 }; 2369 2368 2370 2369 libtensorflow = ··· 2742 2741 swaycwd = callPackage ../tools/wayland/swaycwd { }; 2743 2742 2744 2743 swayr = callPackage ../tools/wayland/swayr { }; 2744 + 2745 + swaysome = callPackage ../tools/wayland/swaysome { }; 2745 2746 2746 2747 swaytools = callPackage ../tools/wayland/swaytools { }; 2747 2748 ··· 4622 4623 4623 4624 snooze = callPackage ../tools/system/snooze { }; 4624 4625 4625 - cudaPackages = recurseIntoAttrs (callPackage ../development/compilers/cudatoolkit {}); 4626 - inherit (cudaPackages) 4627 - cudatoolkit_10 4628 - cudatoolkit_10_0 4629 - cudatoolkit_10_1 4630 - cudatoolkit_10_2 4631 - cudatoolkit_11 4632 - cudatoolkit_11_0 4633 - cudatoolkit_11_1 4634 - cudatoolkit_11_2 4635 - cudatoolkit_11_3 4636 - cudatoolkit_11_4 4637 - cudatoolkit_11_5 4638 - cudatoolkit_11_6; 4626 + cudaPackages_10_0 = callPackage ./cuda-packages.nix { cudaVersion = "10.0"; }; 4627 + cudaPackages_10_1 = callPackage ./cuda-packages.nix { cudaVersion = "10.1"; }; 4628 + cudaPackages_10_2 = callPackage ./cuda-packages.nix { cudaVersion = "10.2"; }; 4629 + cudaPackages_10 = cudaPackages_10_2; 4639 4630 4640 - cudatoolkit = cudatoolkit_11; 4631 + cudaPackages_11_0 = callPackage ./cuda-packages.nix { cudaVersion = "11.0"; }; 4632 + cudaPackages_11_1 = callPackage ./cuda-packages.nix { cudaVersion = "11.1"; }; 4633 + cudaPackages_11_2 = callPackage ./cuda-packages.nix { cudaVersion = "11.2"; }; 4634 + cudaPackages_11_3 = callPackage ./cuda-packages.nix { cudaVersion = "11.3"; }; 4635 + cudaPackages_11_4 = callPackage ./cuda-packages.nix { cudaVersion = "11.4"; }; 4636 + cudaPackages_11_5 = callPackage ./cuda-packages.nix { cudaVersion = "11.5"; }; 4637 + cudaPackages_11_6 = callPackage ./cuda-packages.nix { cudaVersion = "11.6"; }; 4638 + cudaPackages_11 = cudaPackages_11_5; 4639 + cudaPackages = cudaPackages_11; 4641 4640 4642 - cudnnPackages = callPackages ../development/libraries/science/math/cudnn { }; 4643 - inherit (cudnnPackages) 4644 - cudnn_7_4_cudatoolkit_10_0 4645 - cudnn_7_6_cudatoolkit_10_0 4646 - cudnn_7_6_cudatoolkit_10_1 4647 - cudnn_8_1_cudatoolkit_10_2 4648 - cudnn_8_1_cudatoolkit_11_0 4649 - cudnn_8_1_cudatoolkit_11_1 4650 - cudnn_8_1_cudatoolkit_11_2 4651 - cudnn_8_1_cudatoolkit_10 4652 - cudnn_8_3_cudatoolkit_10_2 4653 - cudnn_8_3_cudatoolkit_11_0 4654 - cudnn_8_3_cudatoolkit_11_1 4655 - cudnn_8_3_cudatoolkit_11_2 4656 - cudnn_8_3_cudatoolkit_11_3 4657 - cudnn_8_3_cudatoolkit_11_4 4658 - cudnn_8_3_cudatoolkit_11_5 4659 - cudnn_8_3_cudatoolkit_10 4660 - cudnn_8_3_cudatoolkit_11; 4661 - 4662 - # Make sure to keep this in sync with the `cudatoolkit` version! 4663 - cudnn = cudnn_8_3_cudatoolkit_11; 4664 - 4665 - cutensorPackages = callPackages ../development/libraries/science/math/cutensor { }; 4666 - inherit (cutensorPackages) 4667 - cutensor_cudatoolkit_10 4668 - cutensor_cudatoolkit_10_1 4669 - cutensor_cudatoolkit_10_2 4670 - cutensor_cudatoolkit_11 4671 - cutensor_cudatoolkit_11_0 4672 - cutensor_cudatoolkit_11_1 4673 - cutensor_cudatoolkit_11_2 4674 - cutensor_cudatoolkit_11_3 4675 - cutensor_cudatoolkit_11_4; 4676 - 4677 - cutensor = cutensor_cudatoolkit_11; 4641 + # TODO: move to alias 4642 + cudatoolkit = cudaPackages.cudatoolkit; 4643 + cudatoolkit_11 = cudaPackages_11.cudatoolkit; 4678 4644 4679 4645 curie = callPackage ../data/fonts/curie { }; 4680 4646 ··· 8187 8153 8188 8154 nbd = callPackage ../tools/networking/nbd { }; 8189 8155 xnbd = callPackage ../tools/networking/xnbd { }; 8190 - 8191 - nccl = callPackage ../development/libraries/science/math/nccl { }; 8192 - nccl_cudatoolkit_10 = nccl.override { cudatoolkit = cudatoolkit_10; }; 8193 - nccl_cudatoolkit_11 = nccl.override { cudatoolkit = cudatoolkit_11; }; 8194 8156 8195 8157 ndjbdns = callPackage ../tools/networking/ndjbdns { }; 8196 8158 ··· 26411 26373 26412 26374 gpu-screen-recorder = callPackage ../applications/video/gpu-screen-recorder { 26413 26375 # rm me as soon as this package gains the support for cuda 11 26414 - cudatoolkit = cudatoolkit_10; 26376 + inherit (cudaPackages_10) cudatoolkit; 26415 26377 }; 26416 26378 26417 26379 gpu-screen-recorder-gtk = callPackage ../applications/video/gpu-screen-recorder/gpu-screen-recorder-gtk.nix { }; ··· 31325 31287 31326 31288 katagoWithCuda = katago.override { 31327 31289 enableCuda = true; 31328 - cudnn = cudnn_8_3_cudatoolkit_11; 31329 - cudatoolkit = cudatoolkit_11; 31330 31290 }; 31331 31291 31332 31292 katagoCPU = katago.override { ··· 32930 32890 32931 32891 caffe = callPackage ../applications/science/math/caffe ({ 32932 32892 cudaSupport = config.cudaSupport or false; 32933 - cudatoolkit = cudatoolkit_10_1; 32934 - cudnn = cudnn_7_6_cudatoolkit_10_1; 32893 + cudaPackages = cudaPackages_10_1; 32935 32894 opencv3 = opencv3WithoutCuda; # Used only for image loading. 32936 32895 blas = openblas; 32937 32896 inherit (darwin.apple_sdk.frameworks) Accelerate CoreGraphics CoreVideo;
+72
pkgs/top-level/cuda-packages.nix
··· 1 + { lib 2 + , pkgs 3 + , cudaVersion 4 + }: 5 + 6 + with lib; 7 + 8 + let 9 + 10 + scope = makeScope pkgs.newScope (final: { 11 + # Here we put package set configuration and utility functions. 12 + inherit cudaVersion; 13 + cudaMajorVersion = versions.major final.cudaVersion; 14 + cudaMajorMinorVersion = lib.versions.majorMinor final.cudaVersion; 15 + inherit lib pkgs; 16 + 17 + addBuildInputs = drv: buildInputs: drv.overrideAttrs (oldAttrs: { 18 + buildInputs = (oldAttrs.buildInputs or []) ++ buildInputs; 19 + }); 20 + }); 21 + 22 + cutensorExtension = final: prev: let 23 + ### CuTensor 24 + 25 + buildCuTensorPackage = final.callPackage ../development/libraries/science/math/cutensor/generic.nix; 26 + 27 + cuTensorVersions = { 28 + "1.2.2.5" = { 29 + hash = "sha256-lU7iK4DWuC/U3s1Ct/rq2Gr3w4F2U7RYYgpmF05bibY="; 30 + }; 31 + "1.3.1.3" = { 32 + hash = "sha256-mNlVnabB2IC3HnYY0mb06RLqQzDxN9ePGVeBy3hkBC8="; 33 + }; 34 + }; 35 + 36 + inherit (final) cudaMajorMinorVersion cudaMajorVersion; 37 + 38 + cutensor = buildCuTensorPackage rec { 39 + version = if cudaMajorMinorVersion == "10.1" then "1.2.2.5" else "1.3.1.3"; 40 + inherit (cuTensorVersions.${version}) hash; 41 + # This can go into generic.nix 42 + libPath = "lib/${if cudaMajorVersion == "10" then cudaMajorMinorVersion else cudaMajorVersion}"; 43 + }; 44 + in { inherit cutensor; }; 45 + 46 + extraPackagesExtension = final: prev: { 47 + 48 + nccl = final.callPackage ../development/libraries/science/math/nccl { }; 49 + 50 + autoAddOpenGLRunpathHook = final.callPackage ( { makeSetupHook, addOpenGLRunpath }: 51 + makeSetupHook { 52 + name = "auto-add-opengl-runpath-hook"; 53 + deps = [ 54 + addOpenGLRunpath 55 + ]; 56 + } ../development/compilers/cudatoolkit/auto-add-opengl-runpath-hook.sh 57 + ) {}; 58 + 59 + }; 60 + 61 + composedExtension = composeManyExtensions [ 62 + extraPackagesExtension 63 + (import ../development/compilers/cudatoolkit/extension.nix) 64 + (import ../development/compilers/cudatoolkit/redist/extension.nix) 65 + (import ../development/compilers/cudatoolkit/redist/overrides.nix) 66 + (import ../development/libraries/science/math/cudnn/extension.nix) 67 + (import ../test/cuda/cuda-samples/extension.nix) 68 + (import ../test/cuda/cuda-library-samples/extension.nix) 69 + cutensorExtension 70 + ]; 71 + 72 + in (scope.overrideScope' composedExtension)
+14 -25
pkgs/top-level/python-packages.nix
··· 94 94 95 95 disabledIf = x: drv: if x then disabled drv else drv; 96 96 97 - # CUDA-related packages that are compatible with the currently packaged version 98 - # of TensorFlow, used to keep these versions in sync in related packages like `jaxlib`. 99 - tensorflow_compat_cudatoolkit = pkgs.cudatoolkit_11_2; 100 - tensorflow_compat_cudnn = pkgs.cudnn_8_1_cudatoolkit_11_2; 101 - tensorflow_compat_nccl = pkgs.nccl_cudatoolkit_11; 102 - 103 97 in { 104 98 105 99 inherit pkgs stdenv; ··· 1958 1952 1959 1953 cufflinks = callPackage ../development/python-modules/cufflinks { }; 1960 1954 1961 - cupy = callPackage ../development/python-modules/cupy { 1962 - cudatoolkit = pkgs.cudatoolkit_11; 1963 - cudnn = pkgs.cudnn_8_3_cudatoolkit_11; 1964 - nccl = pkgs.nccl_cudatoolkit_11; 1965 - cutensor = pkgs.cutensor_cudatoolkit_11; 1966 - }; 1955 + cupy = callPackage ../development/python-modules/cupy { }; 1967 1956 1968 1957 curio = callPackage ../development/python-modules/curio { }; 1969 1958 ··· 4230 4219 4231 4220 jaxlib-bin = callPackage ../development/python-modules/jaxlib/bin.nix { 4232 4221 cudaSupport = pkgs.config.cudaSupport or false; 4233 - cudatoolkit_11 = tensorflow_compat_cudatoolkit; 4234 - cudnn = tensorflow_compat_cudnn; 4222 + inherit (self.tensorflow) cudaPackages; 4235 4223 }; 4236 4224 4237 4225 jaxlib-build = callPackage ../development/python-modules/jaxlib { 4238 4226 # Some platforms don't have `cudaSupport` defined, hence the need for 'or false'. 4239 4227 cudaSupport = pkgs.config.cudaSupport or false; 4240 - cudatoolkit = tensorflow_compat_cudatoolkit; 4241 - cudnn = tensorflow_compat_cudnn; 4242 - nccl = tensorflow_compat_nccl; 4228 + inherit (self.tensorflow) cudaPackages; 4243 4229 }; 4244 4230 4245 4231 jaxlib = self.jaxlib-build; 4246 4232 4247 4233 jaxlibWithCuda = self.jaxlib-build.override { 4248 4234 cudaSupport = true; 4235 + 4249 4236 }; 4250 4237 4251 4238 jaxlibWithoutCuda = self.jaxlib-build.override { ··· 5680 5667 5681 5668 numba = callPackage ../development/python-modules/numba { 5682 5669 cudaSupport = pkgs.config.cudaSupport or false; 5683 - cudatoolkit = tensorflow_compat_cudatoolkit; 5684 5670 }; 5685 5671 5686 5672 numbaWithCuda = self.numba.override { ··· 6875 6861 pyctr = callPackage ../development/python-modules/pyctr { }; 6876 6862 6877 6863 pycuda = callPackage ../development/python-modules/pycuda { 6878 - inherit (pkgs) cudatoolkit; 6879 6864 inherit (pkgs.stdenv) mkDerivation; 6880 6865 }; 6881 6866 ··· 7595 7580 }); 7596 7581 7597 7582 pyrealsense2WithCuda = toPythonModule (pkgs.librealsenseWithCuda.override { 7583 + cudaSupport = true; 7598 7584 enablePython = true; 7599 7585 pythonPackages = self; 7600 7586 }); ··· 9893 9879 9894 9880 tensorboardx = callPackage ../development/python-modules/tensorboardx { }; 9895 9881 9896 - tensorflow-bin = callPackage ../development/python-modules/tensorflow/bin.nix { 9882 + tensorflow-bin = let 9883 + # CUDA-related packages that are compatible with the currently packaged version 9884 + # of TensorFlow, used to keep these versions in sync in related packages like `jaxlib`. 9885 + cudaPackages = pkgs.cudaPackages_11_2.overrideScope' (final: prev: { 9886 + cudnn = prev.cudnn_8_1_1; 9887 + }); 9888 + in callPackage ../development/python-modules/tensorflow/bin.nix { 9897 9889 cudaSupport = pkgs.config.cudaSupport or false; 9898 - cudatoolkit = tensorflow_compat_cudatoolkit; 9899 - cudnn = tensorflow_compat_cudnn; 9890 + inherit cudaPackages; 9900 9891 }; 9901 9892 9902 9893 tensorflow-build = callPackage ../development/python-modules/tensorflow { 9903 9894 inherit (pkgs.darwin) cctools; 9904 9895 cudaSupport = pkgs.config.cudaSupport or false; 9905 - cudatoolkit = tensorflow_compat_cudatoolkit; 9906 - cudnn = tensorflow_compat_cudnn; 9907 - nccl = tensorflow_compat_nccl; 9896 + inherit (self.tensorflow-bin) cudaPackages; 9908 9897 inherit (pkgs.darwin.apple_sdk.frameworks) Foundation Security; 9909 9898 flatbuffers-core = pkgs.flatbuffers; 9910 9899 flatbuffers-python = self.flatbuffers;
+55
pkgs/top-level/release-cuda.nix
··· 1 + /* 2 + Test CUDA packages. 3 + 4 + This release file will not be tested on hydra.nixos.org 5 + because it requires unfree software. 6 + 7 + Test for example like this: 8 + 9 + $ hydra-eval-jobs pkgs/top-level/release-cuda.nix --option restrict-eval false -I foo=. --arg nixpkgs '{ outPath = ./.; revCount = 0; shortRev = "aabbcc"; }' 10 + 11 + */ 12 + 13 + { # The platforms for which we build Nixpkgs. 14 + supportedSystems ? [ 15 + "x86_64-linux" 16 + ] 17 + , # Attributes passed to nixpkgs. 18 + nixpkgsArgs ? { config = { allowUnfree = true; inHydra = true; }; } 19 + }: 20 + 21 + with import ./release-lib.nix {inherit supportedSystems nixpkgsArgs; }; 22 + with lib; 23 + 24 + let 25 + # Package sets to evaluate 26 + packageSets = [ 27 + "cudaPackages_10_0" 28 + "cudaPackages_10_1" 29 + "cudaPackages_10_2" 30 + "cudaPackages_10" 31 + "cudaPackages_11_0" 32 + "cudaPackages_11_1" 33 + "cudaPackages_11_2" 34 + "cudaPackages_11_3" 35 + "cudaPackages_11_4" 36 + "cudaPackages_11_5" 37 + "cudaPackages_11_6" 38 + "cudaPackages_11" 39 + "cudaPackages" 40 + ]; 41 + 42 + evalPackageSet = pset: mapTestOn { ${pset} = packagePlatforms pkgs.${pset}; }; 43 + 44 + jobs = (mapTestOn ({ 45 + # Packages to evaluate 46 + python3.pkgs.caffeWithCuda = linux; 47 + python3.pkgs.jaxlibWithCuda = linux; 48 + python3.pkgs.libgpuarray = linux; 49 + python3.pkgs.tensorflowWithCuda = linux; 50 + python3.pkgs.pyrealsense2WithCuda = linux; 51 + python3.pkgs.pytorchWithCuda = linux; 52 + python3.pkgs.jaxlib = linux; 53 + }) // (genAttrs packageSets evalPackageSet)); 54 + 55 + in jobs