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 <xi:include href="bower.section.xml" /> 12 <xi:include href="coq.section.xml" /> 13 <xi:include href="crystal.section.xml" /> 14 <xi:include href="dhall.section.xml" /> 15 <xi:include href="dotnet.section.xml" /> 16 <xi:include href="emscripten.section.xml" />
··· 11 <xi:include href="bower.section.xml" /> 12 <xi:include href="coq.section.xml" /> 13 <xi:include href="crystal.section.xml" /> 14 + <xi:include href="cuda.section.xml" /> 15 <xi:include href="dhall.section.xml" /> 16 <xi:include href="dotnet.section.xml" /> 17 <xi:include href="emscripten.section.xml" />
+1 -1
nixos/modules/services/misc/ethminer.nix
··· 85 config = mkIf cfg.enable { 86 87 systemd.services.ethminer = { 88 - path = optional (cfg.toolkit == "cuda") [ pkgs.cudatoolkit ]; 89 description = "ethminer ethereum mining service"; 90 wantedBy = [ "multi-user.target" ]; 91 after = [ "network.target" ];
··· 85 config = mkIf cfg.enable { 86 87 systemd.services.ethminer = { 88 + path = optional (cfg.toolkit == "cuda") [ pkgs.cudaPackages.cudatoolkit ]; 89 description = "ethminer ethereum mining service"; 90 wantedBy = [ "multi-user.target" ]; 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 From 546b343294209abbb193883ab76b679b7f99c6d3 Mon Sep 17 00:00:00 2001 2 From: Thiago Kenji Okada <thiagokokada@gmail.com> 3 Date: Sat, 20 Nov 2021 16:03:50 -0300 4 - Subject: [PATCH 1/2] Disable "menu_show_core_updater" 5 6 --- 7 retroarch.cfg | 2 +-
··· 1 From 546b343294209abbb193883ab76b679b7f99c6d3 Mon Sep 17 00:00:00 2001 2 From: Thiago Kenji Okada <thiagokokada@gmail.com> 3 Date: Sat, 20 Nov 2021 16:03:50 -0300 4 + Subject: [PATCH] Disable "menu_show_core_updater" 5 6 --- 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 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" 5 6 This patch sets "libretro_info_path" to `handle = false`, so instead of 7 using the values from `retroarch.cfg`, it will always use the default. ··· 10 `@libretro_info_path` string, so we can substitute it with the full path 11 to it during build. 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(-) 17 18 diff --git a/configuration.c b/configuration.c 19 - index e6a3841324..afb1d6e2ce 100644 20 --- a/configuration.c 21 +++ b/configuration.c 22 - @@ -1456,7 +1456,7 @@ static struct config_path_setting *populate_settings_path( 23 SETTING_PATH("core_options_path", 24 settings->paths.path_core_options, false, NULL, true); 25 SETTING_PATH("libretro_info_path", ··· 29 settings->paths.path_content_database, false, NULL, true); 30 SETTING_PATH("cheat_database_path", 31 diff --git a/frontend/drivers/platform_darwin.m b/frontend/drivers/platform_darwin.m 32 - index f922e50c55..52732f65ae 100644 33 --- a/frontend/drivers/platform_darwin.m 34 +++ b/frontend/drivers/platform_darwin.m 35 - @@ -383,14 +383,9 @@ static void frontend_darwin_get_env(int *argc, char *argv[], 36 home_dir_buf, "shaders_glsl", 37 sizeof(g_defaults.dirs[DEFAULT_DIR_SHADER])); 38 #endif ··· 50 #ifdef HAVE_VIDEO_LAYOUT 51 fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_VIDEO_LAYOUT], home_dir_buf, "layouts", sizeof(g_defaults.dirs[DEFAULT_DIR_VIDEO_LAYOUT])); 52 diff --git a/frontend/drivers/platform_unix.c b/frontend/drivers/platform_unix.c 53 - index 722e1c595c..d87e01cf12 100644 54 --- a/frontend/drivers/platform_unix.c 55 +++ b/frontend/drivers/platform_unix.c 56 - @@ -1815,8 +1815,8 @@ static void frontend_unix_get_env(int *argc, 57 strcpy_literal(base_path, "retroarch"); 58 #endif 59 60 - - fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE], base_path, 61 - - "cores", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE])); 62 + fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE], "@libretro_directory@", 63 + "", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE])); 64 #if defined(DINGUX) 65 /* On platforms that require manual core installation/ 66 * removal, placing core info files in the same directory 67 - @@ -1825,8 +1825,8 @@ static void frontend_unix_get_env(int *argc, 68 fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE_INFO], base_path, 69 "core_info", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE_INFO])); 70 #else ··· 76 fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_AUTOCONFIG], base_path, 77 "autoconfig", sizeof(g_defaults.dirs[DEFAULT_DIR_AUTOCONFIG])); 78 -- 79 - 2.31.1 80
··· 1 + From 7bf021529ff15ca2580b15b3c0bfdc137d5beffe Mon Sep 17 00:00:00 2001 2 From: Thiago Kenji Okada <thiagokokada@gmail.com> 3 + Date: Wed, 9 Mar 2022 18:24:15 +0000 4 + Subject: [PATCH] Use fixed paths on "libretro_info_path" 5 6 This patch sets "libretro_info_path" to `handle = false`, so instead of 7 using the values from `retroarch.cfg`, it will always use the default. ··· 10 `@libretro_info_path` string, so we can substitute it with the full path 11 to it during build. 12 --- 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 18 diff --git a/configuration.c b/configuration.c 19 + index 7e346ff6e9..c4b2100203 100644 20 --- a/configuration.c 21 +++ b/configuration.c 22 + @@ -1466,7 +1466,7 @@ static struct config_path_setting *populate_settings_path( 23 SETTING_PATH("core_options_path", 24 settings->paths.path_core_options, false, NULL, true); 25 SETTING_PATH("libretro_info_path", ··· 29 settings->paths.path_content_database, false, NULL, true); 30 SETTING_PATH("cheat_database_path", 31 diff --git a/frontend/drivers/platform_darwin.m b/frontend/drivers/platform_darwin.m 32 + index 6c5fdca400..552dcb7e2b 100644 33 --- a/frontend/drivers/platform_darwin.m 34 +++ b/frontend/drivers/platform_darwin.m 35 + @@ -388,14 +388,9 @@ static void frontend_darwin_get_env(int *argc, char *argv[], 36 home_dir_buf, "shaders_glsl", 37 sizeof(g_defaults.dirs[DEFAULT_DIR_SHADER])); 38 #endif ··· 50 #ifdef HAVE_VIDEO_LAYOUT 51 fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_VIDEO_LAYOUT], home_dir_buf, "layouts", sizeof(g_defaults.dirs[DEFAULT_DIR_VIDEO_LAYOUT])); 52 diff --git a/frontend/drivers/platform_unix.c b/frontend/drivers/platform_unix.c 53 + index b3b5dad173..7f1561e523 100644 54 --- a/frontend/drivers/platform_unix.c 55 +++ b/frontend/drivers/platform_unix.c 56 + @@ -1820,12 +1820,8 @@ static void frontend_unix_get_env(int *argc, 57 strcpy_literal(base_path, "retroarch"); 58 #endif 59 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])); 66 + fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE], "@libretro_directory@", 67 + "", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE])); 68 #if defined(DINGUX) 69 /* On platforms that require manual core installation/ 70 * removal, placing core info files in the same directory 71 + @@ -1834,8 +1830,8 @@ static void frontend_unix_get_env(int *argc, 72 fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE_INFO], base_path, 73 "core_info", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE_INFO])); 74 #else ··· 80 fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_AUTOCONFIG], base_path, 81 "autoconfig", sizeof(g_defaults.dirs[DEFAULT_DIR_AUTOCONFIG])); 82 -- 83 + 2.32.0 84
+15 -43
pkgs/applications/emulators/retroarch/cores.nix
··· 1 { lib 2 , stdenv 3 - , SDL 4 , alsa-lib 5 , boost 6 - , buildPackages 7 , bzip2 8 , cmake 9 , curl 10 , fetchFromGitHub 11 , ffmpeg 12 , fluidsynth 13 , gettext 14 , hexdump 15 , hidapi 16 , icu 17 , libaio 18 , libGL 19 , libGLU 20 - , libevdev 21 , libjpeg 22 , libpcap 23 , libpng ··· 32 , portaudio 33 , python3 34 , retroarch 35 , sfml 36 , snappy 37 , udev ··· 53 , description 54 # Check https://github.com/libretro/libretro-core-info for license information 55 , license 56 , src ? (getCoreSrc core) 57 , broken ? false 58 - , version ? "unstable-2022-01-21" 59 , platforms ? retroarch.meta.platforms 60 # The resulting core file is based on core name 61 # Setting `normalizeCore` to `true` will convert `-` to `_` on the core filename 62 , normalizeCore ? true 63 , ... 64 }@args: 65 - stdenv.mkDerivation ( 66 let 67 d2u = if normalizeCore then (lib.replaceChars [ "-" ] [ "_" ]) else (x: x); 68 in 69 (rec { ··· 79 linux = "unix"; 80 darwin = "osx"; 81 windows = "win"; 82 - }.${stdenv.hostPlatform.parsed.kernel.name} or stdenv.hostPlatform.parsed.kernel.name}" 83 "ARCH=${{ 84 armv7l = "arm"; 85 armv6l = "arm"; 86 i686 = "x86"; 87 - }.${stdenv.hostPlatform.parsed.cpu.name} or stdenv.hostPlatform.parsed.cpu.name}" 88 ] ++ (args.makeFlags or [ ]); 89 90 coreDir = "${placeholder "out"}/lib/retroarch/cores"; ··· 94 95 mkdir -p $out/bin 96 mkdir -p $coreDir 97 - mv ${d2u args.core}_libretro${stdenv.hostPlatform.extensions.sharedLibrary} $coreDir 98 makeWrapper ${retroarch}/bin/retroarch $out/bin/retroarch-${core} \ 99 - --add-flags "-L $coreDir/${d2u core}_libretro${stdenv.hostPlatform.extensions.sharedLibrary} $@" 100 101 runHook postInstall 102 ''; ··· 298 citra = mkLibRetroCore { 299 core = "citra"; 300 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"; 319 license = lib.licenses.gpl2Plus; 320 - extraNativeBuildInputs = [ cmake pkg-config ]; 321 - extraBuildInputs = [ libGLU libGL boost ]; 322 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"; 332 }; 333 334 desmume = mkLibRetroCore { ··· 476 description = "Port of Hatari to libretro"; 477 license = lib.licenses.gpl2Only; 478 extraBuildInputs = [ SDL zlib ]; 479 - extraNativeBuildInputs = [ cmake which ]; 480 - dontUseCmakeConfigure = true; 481 dontConfigure = true; 482 makeFlags = [ "EXTERNAL_ZLIB=1" ]; 483 - depsBuildBuild = [ buildPackages.stdenv.cc ]; 484 }; 485 486 mame = mkLibRetroCore { ··· 488 description = "Port of MAME to libretro"; 489 license = with lib.licenses; [ bsd3 gpl2Plus ]; 490 extraBuildInputs = [ alsa-lib libGLU libGL portaudio python3 xorg.libX11 ]; 491 - makefile = "Makefile.libretro"; 492 }; 493 494 mame2000 = mkLibRetroCore { ··· 619 src = getCoreSrc core; 620 description = "Neko Project II kai libretro port"; 621 license = lib.licenses.mit; 622 - makefile = "Makefile.libretro"; 623 makeFlags = [ 624 # See https://github.com/AZO234/NP2kai/tags 625 "NP2KAI_VERSION=rev.22"
··· 1 { lib 2 , stdenv 3 , alsa-lib 4 , boost 5 , bzip2 6 , cmake 7 , curl 8 , fetchFromGitHub 9 , ffmpeg 10 , fluidsynth 11 + , gcc10Stdenv 12 , gettext 13 , hexdump 14 , hidapi 15 , icu 16 , libaio 17 + , libevdev 18 , libGL 19 , libGLU 20 , libjpeg 21 , libpcap 22 , libpng ··· 31 , portaudio 32 , python3 33 , retroarch 34 + , SDL 35 , sfml 36 , snappy 37 , udev ··· 53 , description 54 # Check https://github.com/libretro/libretro-core-info for license information 55 , license 56 + , stdenvOverride ? stdenv 57 , src ? (getCoreSrc core) 58 , broken ? false 59 + , version ? "unstable-2022-04-08" 60 , platforms ? retroarch.meta.platforms 61 # The resulting core file is based on core name 62 # Setting `normalizeCore` to `true` will convert `-` to `_` on the core filename 63 , normalizeCore ? true 64 , ... 65 }@args: 66 + stdenvOverride.mkDerivation ( 67 let 68 + inherit (stdenvOverride) hostPlatform; 69 d2u = if normalizeCore then (lib.replaceChars [ "-" ] [ "_" ]) else (x: x); 70 in 71 (rec { ··· 81 linux = "unix"; 82 darwin = "osx"; 83 windows = "win"; 84 + }.${hostPlatform.parsed.kernel.name} or hostPlatform.parsed.kernel.name}" 85 "ARCH=${{ 86 armv7l = "arm"; 87 armv6l = "arm"; 88 i686 = "x86"; 89 + }.${hostPlatform.parsed.cpu.name} or hostPlatform.parsed.cpu.name}" 90 ] ++ (args.makeFlags or [ ]); 91 92 coreDir = "${placeholder "out"}/lib/retroarch/cores"; ··· 96 97 mkdir -p $out/bin 98 mkdir -p $coreDir 99 + mv ${d2u args.core}_libretro${hostPlatform.extensions.sharedLibrary} $coreDir 100 makeWrapper ${retroarch}/bin/retroarch $out/bin/retroarch-${core} \ 101 + --add-flags "-L $coreDir/${d2u core}_libretro${hostPlatform.extensions.sharedLibrary} $@" 102 103 runHook postInstall 104 ''; ··· 300 citra = mkLibRetroCore { 301 core = "citra"; 302 description = "Port of Citra to libretro"; 303 + stdenvOverride = gcc10Stdenv; 304 license = lib.licenses.gpl2Plus; 305 + extraBuildInputs = [ libGLU libGL boost ffmpeg nasm ]; 306 makefile = "Makefile"; 307 + makeFlags = [ "HAVE_FFMPEG_STATIC=0" ]; 308 }; 309 310 desmume = mkLibRetroCore { ··· 452 description = "Port of Hatari to libretro"; 453 license = lib.licenses.gpl2Only; 454 extraBuildInputs = [ SDL zlib ]; 455 + extraNativeBuildInputs = [ which ]; 456 dontConfigure = true; 457 makeFlags = [ "EXTERNAL_ZLIB=1" ]; 458 }; 459 460 mame = mkLibRetroCore { ··· 462 description = "Port of MAME to libretro"; 463 license = with lib.licenses; [ bsd3 gpl2Plus ]; 464 extraBuildInputs = [ alsa-lib libGLU libGL portaudio python3 xorg.libX11 ]; 465 }; 466 467 mame2000 = mkLibRetroCore { ··· 592 src = getCoreSrc core; 593 description = "Neko Project II kai libretro port"; 594 license = lib.licenses.mit; 595 makeFlags = [ 596 # See https://github.com/AZO234/NP2kai/tags 597 "NP2KAI_VERSION=rev.22"
+25 -8
pkgs/applications/emulators/retroarch/default.nix
··· 35 }: 36 37 let 38 - version = "1.10.0"; 39 libretroCoreInfo = fetchFromGitHub { 40 owner = "libretro"; 41 repo = "libretro-core-info"; 42 - sha256 = "sha256-3j7fvcfbgyk71MmbUUKYi+/0cpQFNbYXO+DMDUjDqkQ="; 43 rev = "v${version}"; 44 }; 45 runtimeLibs = lib.optional withVulkan vulkan-loader ··· 52 src = fetchFromGitHub { 53 owner = "libretro"; 54 repo = "RetroArch"; 55 - sha256 = "sha256-bpTSzODVRKRs1OW6JafjbU3e/AqdQeGzWcg1lb9SIyo="; 56 rev = "v${version}"; 57 }; 58 59 patches = [ 60 - ./0001-Disable-menu_show_core_updater.patch 61 - ./0002-Use-fixed-paths-on-libretro_info_path.patch 62 ]; 63 64 postPatch = '' ··· 104 '' + lib.optionalString (runtimeLibs != [ ]) '' 105 wrapProgram $out/bin/retroarch \ 106 --prefix LD_LIBRARY_PATH ':' ${lib.makeLibraryPath runtimeLibs} 107 ''; 108 109 preFixup = "rm $out/bin/retroarch-cg2glsl"; 110 111 meta = with lib; { 112 homepage = "https://libretro.com"; ··· 115 platforms = platforms.unix; 116 changelog = "https://github.com/libretro/RetroArch/blob/v${version}/CHANGES.md"; 117 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 }; 122 }
··· 35 }: 36 37 let 38 + version = "1.10.2"; 39 libretroCoreInfo = fetchFromGitHub { 40 owner = "libretro"; 41 repo = "libretro-core-info"; 42 + sha256 = "sha256-XOSIVH3BSwAFKUeRvyYc2OXDa+TLjoKVGl+b8fgnvtY="; 43 rev = "v${version}"; 44 }; 45 runtimeLibs = lib.optional withVulkan vulkan-loader ··· 52 src = fetchFromGitHub { 53 owner = "libretro"; 54 repo = "RetroArch"; 55 + sha256 = "sha256-fMsHMQiEoXeFKITxeEyRH829z5SCf8p0Hxq6ww1p3z4="; 56 rev = "v${version}"; 57 }; 58 59 patches = [ 60 + ./disable-menu_show_core_updater.patch 61 + ./use-fixed-paths-on-libretro_info_path.patch 62 ]; 63 64 postPatch = '' ··· 104 '' + lib.optionalString (runtimeLibs != [ ]) '' 105 wrapProgram $out/bin/retroarch \ 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/ 123 ''; 124 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" ]; 130 131 meta = with lib; { 132 homepage = "https://libretro.com"; ··· 135 platforms = platforms.unix; 136 changelog = "https://github.com/libretro/RetroArch/blob/v${version}/CHANGES.md"; 137 maintainers = with maintainers; [ MP2E edwtjo matthewbauer kolbycrouch thiagokokada ]; 138 }; 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 "atari800": { 3 "owner": "libretro", 4 "repo": "libretro-atari800", 5 - "rev": "478a8ec99a7f8436a39d5ac193c5fe313233ee7b", 6 - "sha256": "LJpRegJVR2+sS1UmTTpVest0rMrNDBMXmj/jRFVglWI=" 7 }, 8 "beetle-gba": { 9 "owner": "libretro", ··· 14 "beetle-lynx": { 15 "owner": "libretro", 16 "repo": "beetle-lynx-libretro", 17 - "rev": "8930e88a4342945c023cbf713031a65de11a8e75", 18 - "sha256": "bg/a+9ZJNTUIuEHKrFIss8sia3JWMWXIXbxha5qKVeI=" 19 }, 20 "beetle-ngp": { 21 "owner": "libretro", 22 "repo": "beetle-ngp-libretro", 23 - "rev": "f7c393184e5228c3d3807ee74c951c4c549107d8", 24 - "sha256": "7vki8VkwOzxwMZcUxekg1DFSskV7VNQ1SRaU3M1xHZ0=" 25 }, 26 "beetle-pce-fast": { 27 "owner": "libretro", 28 "repo": "beetle-pce-fast-libretro", 29 - "rev": "0f43fd4dc406e7da6bbdc13b6eb1c105d6072f8a", 30 - "sha256": "u1lOgXEYuGAF4sOLdsBzcA4/A5Yz1b82TjFBiM57yE4=" 31 }, 32 "beetle-pcfx": { 33 "owner": "libretro", 34 "repo": "beetle-pcfx-libretro", 35 - "rev": "6d2b11e17ad5a95907c983e7c8a70e75508c2d41", 36 - "sha256": "WG2YpCYdL/MxW5EbiP2+1VtAjbX7yYDIcLXhb+YySI4=" 37 }, 38 "beetle-psx": { 39 "owner": "libretro", 40 "repo": "beetle-psx-libretro", 41 - "rev": "297970e4ff080ea80a5670209aeea4fde8059020", 42 - "sha256": "6kZher3/+5ywXyC3n9R9JVA4IVLZBaSfAcWEKp2SsDE=" 43 }, 44 "beetle-saturn": { 45 "owner": "libretro", 46 "repo": "beetle-saturn-libretro", 47 - "rev": "e6ba71f8bcc647b646d94dec812b24d00c41cf3f", 48 - "sha256": "tDbV+CsDr4bowBbJ/C8J9scfCryTAXxz58pGaUHU5yU=" 49 }, 50 "beetle-snes": { 51 "owner": "libretro", 52 "repo": "beetle-bsnes-libretro", 53 - "rev": "bc867656d7438aaffc6818b3b92350587bc78a47", 54 - "sha256": "TyUCRGK+uyXowDjXW9/4m+zL8Vh/3GGsX1eznrTCbAg=" 55 }, 56 "beetle-supergrafx": { 57 "owner": "libretro", 58 "repo": "beetle-supergrafx-libretro", 59 - "rev": "7bae6fb1a238f1e66b129c7c70c7cb6dbdc09fa1", 60 - "sha256": "OAJ86XrwjDrgCjrk0RHMn8sHYaJFhJhLaQnhaEVXN38=" 61 }, 62 "beetle-vb": { 63 "owner": "libretro", 64 "repo": "beetle-vb-libretro", 65 - "rev": "aa77198c6c60b935503b5ea2149b8ff7598344da", 66 - "sha256": "ShsMYc2vjDoiN1yCCoSl91P5ecYJDj/V+VWUYuYVxas=" 67 }, 68 "beetle-wswan": { 69 "owner": "libretro", 70 "repo": "beetle-wswan-libretro", 71 - "rev": "5717c101b314f64d4c384c23b1934d09fcbf82bb", 72 - "sha256": "Nfezb6hja1qHv1fMGU9HMbbb56GHAfe/zIgRqrzz334=" 73 }, 74 "blastem": { 75 "owner": "libretro", ··· 80 "bluemsx": { 81 "owner": "libretro", 82 "repo": "bluemsx-libretro", 83 - "rev": "5dfdb75106e10ef8bc21b8bcea1432ecbd590b2a", 84 - "sha256": "0D0xufIt3qmQ+/UjyWynoLyLDSza8cTrFp3UwGWBXko=" 85 }, 86 "bsnes": { 87 "owner": "libretro", 88 "repo": "bsnes-libretro", 89 - "rev": "1b2987ab1e9caf5c8d7550da01ffa08edff2f128", 90 - "sha256": "l6Jvn0ZgFaKSWjiV2bN9aemxLyfnNEQFc+HS1/MuiaY=" 91 }, 92 "bsnes-hd": { 93 "owner": "DerKoun", ··· 98 "bsnes-mercury": { 99 "owner": "libretro", 100 "repo": "bsnes-mercury", 101 - "rev": "d232c6ea90552f5921fec33a06626f08d3e18b24", 102 - "sha256": "fpl7hmqz+Ca+9ZeM6E1JSikbiu+NJUU8xXtyl6Dd9Gg=" 103 }, 104 "citra": { 105 "owner": "libretro", 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 121 }, 122 "desmume": { 123 "owner": "libretro", 124 "repo": "desmume", 125 - "rev": "7ea0fc96804fcd9c8d33e8f76cf64b1be50cc5ea", 126 - "sha256": "4S/CirRVOBN6PVbato5X5fu0tBn3Fu5FEAbdf3TBqng=" 127 }, 128 "desmume2015": { 129 "owner": "libretro", 130 "repo": "desmume2015", 131 - "rev": "cd89fb7c48c735cb321311fbce7e6e9889dda1ce", 132 - "sha256": "9Ou/n6pxRjJOp/Ybpyg4+Simosj2X26kLZCMEqeVL6U=" 133 }, 134 "dolphin": { 135 "owner": "libretro", 136 "repo": "dolphin", 137 - "rev": "3b19e6d1781584f3e1fd2922b48b8ae6b3bcb686", 138 - "sha256": "EcgJhkMzdZfYRwSpU1OcsJqQyq4V8dq5PndVufZFy7k=" 139 }, 140 "dosbox": { 141 "owner": "libretro", 142 "repo": "dosbox-libretro", 143 - "rev": "aa71b67d54eaaf9e41cdd3cb5153d9cff0ad116e", 144 - "sha256": "L0Y67UROjldnXUlLQ+Xbd7RHLb96jDxlB/k+LR9Kbas=" 145 }, 146 "eightyone": { 147 "owner": "libretro", 148 "repo": "81-libretro", 149 - "rev": "86d7d5afe98f16006d4b1fdb99d281f1d7ea6b2f", 150 - "sha256": "QN7anzqv1z8SgY8dlkjr8Ns7reGWc7hTneiRmorXZSk=" 151 }, 152 "fbalpha2012": { 153 "owner": "libretro", 154 "repo": "fbalpha2012", 155 - "rev": "23f98fc7cf4f2f216149c263cf5913d2e28be8d4", 156 - "sha256": "dAInW6tTV7oXcPhKMnHWcmQaWQCTqRrYHD2yuaI1I1w=" 157 }, 158 "fbneo": { 159 "owner": "libretro", 160 "repo": "fbneo", 161 - "rev": "4ecf2782a4eee042d1e126d1671e5231b6437b6e", 162 - "sha256": "15MYI03r45mmRsXCwzWnjfBdtzSaHLp7DfmcACQFTvU=" 163 }, 164 "fceumm": { 165 "owner": "libretro", 166 "repo": "libretro-fceumm", 167 - "rev": "eb06d17e7912780a3ee117ae73bc50c3948c761c", 168 - "sha256": "aBqskJtK1bFBjwaoo9hilr33fyAWsdj5+hFC3WY3sKk=" 169 }, 170 "flycast": { 171 "owner": "libretro", 172 "repo": "flycast", 173 - "rev": "0d8c6a2e717c002bc76ce26a152353b004fb15e7", 174 - "sha256": "t2RGHAyYXeHVqTqqhayOUWx/msFN9q/Z9P2wXJUtQTI=" 175 }, 176 "fmsx": { 177 "owner": "libretro", 178 "repo": "fmsx-libretro", 179 - "rev": "dfcda056896576c6a1c75c002a82d0e6c1160ccc", 180 - "sha256": "9ANZ1suAQcYOhqSchQ20Yuqvgw06j5Sd3Z1fjrp2UFc=" 181 }, 182 "freeintv": { 183 "owner": "libretro", 184 "repo": "freeintv", 185 - "rev": "d58caf23ed1438a1db58f8d6ac24ca521b411d3b", 186 - "sha256": "nUV+A3Zh66M1K5NDK0ksNF5H1HS3AQdeYLaGfaA34n4=" 187 }, 188 "gambatte": { 189 "owner": "libretro", 190 "repo": "gambatte-libretro", 191 - "rev": "79bb2e56d034c30d8dcac02b6c34a59ec8fe91bc", 192 - "sha256": "H+Hkeep18whaSYbyG8DcaJqsVVu7DEX9T28pkfXfyCg=" 193 }, 194 "genesis-plus-gx": { 195 "owner": "libretro", 196 "repo": "Genesis-Plus-GX", 197 - "rev": "88c9ad000ba553b9c819d9eb259f741fabd877bb", 198 - "sha256": "8ZCMq8/sk5TqwTNWMfDevZHRPSOM1PJ57kiZZ7qfQxA=" 199 }, 200 "gpsp": { 201 "owner": "libretro", 202 "repo": "gpsp", 203 - "rev": "e554360dd3ed283696fc607877024a219248b735", 204 - "sha256": "ImsqB89XmjF8nvs7j8IZVvFltgZRYvF2L7LTcJG/xCU=" 205 }, 206 "gw": { 207 "owner": "libretro", 208 "repo": "gw-libretro", 209 - "rev": "0f1ccca156388880bf4507ad44741f80945dfc6f", 210 - "sha256": "BVpx8pL224J2u9W6UDrxzfEv4qIsh6wrf3bDdd1R850=" 211 }, 212 "handy": { 213 "owner": "libretro", 214 "repo": "libretro-handy", 215 - "rev": "3b02159ba32aa37c1b93d7f7eac56b28e3715645", 216 - "sha256": "mBKK+pdWgkxYkV4OOiBrlWbLAMugDX0fd6QRh0D7JYU=" 217 }, 218 "hatari": { 219 "owner": "libretro", 220 "repo": "hatari", 221 - "rev": "79d128888ca3efdd27d639a35edf72a9bc81a798", 222 - "sha256": "du2xORgAXTSQArqNuFa5gjticgZ+weqySFHVz2Y2qzI=" 223 }, 224 "mame": { 225 "owner": "libretro", 226 "repo": "mame", 227 - "rev": "2f9c793a77222ae46266c71f64d491cf7870dc1e", 228 - "sha256": "WAhm6QMMVbnuSIK4PW7Ek+AAkMs7s95gGb6ERzlon0w=" 229 }, 230 "mame2000": { 231 "owner": "libretro", 232 "repo": "mame2000-libretro", 233 - "rev": "4793742b457945afb74053c8a895e6ff0b36b033", 234 - "sha256": "DA9fZTic/jlYzSAIiOjfhohyEyQZiBNdIa8YCZoKZNs=" 235 }, 236 "mame2003": { 237 "owner": "libretro", 238 "repo": "mame2003-libretro", 239 - "rev": "dbda6ddacdd8962cfea25000421dba398e551aef", 240 - "sha256": "RSL3iZZEJCxOtsJqjnM5ZiT0yM2nAgg/Ujq6FBLMHkk=" 241 }, 242 "mame2003-plus": { 243 "owner": "libretro", 244 "repo": "mame2003-plus-libretro", 245 - "rev": "9c0c954f0f88730f44abdd4d414691fef6b1cd7c", 246 - "sha256": "NLdHc0VuZhqQhAzv+8kipc0mhqT2BNaJeLYZUx7DwRU=" 247 }, 248 "mame2010": { 249 "owner": "libretro", ··· 260 "mame2016": { 261 "owner": "libretro", 262 "repo": "mame2016-libretro", 263 - "rev": "bcff8046328da388d100b1634718515e1b15415d", 264 - "sha256": "XxnX39+0VUbG9TF8+wFEFVxHCm2rzrJsIQryyNsF6zU=" 265 }, 266 "melonds": { 267 "owner": "libretro", 268 "repo": "melonds", 269 - "rev": "0053daa700018657bf2e47562b3b4eb86f9b9d03", 270 - "sha256": "K6ZYuk7cE+ioq1rLRyAKNQxddCYIOXLU5SXT7sYgGnc=" 271 }, 272 "mesen": { 273 "owner": "libretro", 274 "repo": "mesen", 275 - "rev": "094d82bf724448426acbaad45e83bc38994e32f6", 276 - "sha256": "9+AqZRv8lugNNa+ZZzIPJNO87J1aBUEiOggL8aYno1M=" 277 }, 278 "mesen-s": { 279 "owner": "libretro", 280 "repo": "mesen-s", 281 - "rev": "42eb0e8ad346608dae86feb8a04833d16ad21541", 282 - "sha256": "q6zeoNiZtFy8ZYls9/E+O7o9BYTcVcmYjbJA48qiraU=" 283 }, 284 "meteor": { 285 "owner": "libretro", ··· 290 "mgba": { 291 "owner": "libretro", 292 "repo": "mgba", 293 - "rev": "43da6e1d54ad0395f474346db88fe59a4c0aa451", 294 - "sha256": "JxiWIBQi1fZoBV2lvx2r7iIvlQm0BYuJFz0TsxngUT8=" 295 }, 296 "mupen64plus": { 297 "owner": "libretro", 298 "repo": "mupen64plus-libretro-nx", 299 - "rev": "350f90a73cf0f5d65357ce982ccbaa3b22fc3569", 300 - "sha256": "9Hq93+dvO60LBbcXLIHsTq243QThicI0rVJW3tou/5Y=" 301 }, 302 "neocd": { 303 "owner": "libretro", 304 "repo": "neocd_libretro", 305 - "rev": "83d10f3be10fff2f28aa56fc674c687528cb7f5c", 306 - "sha256": "yYZGoMsUfE8cpU9i826UWQGi1l0zPJPcBDb2CINxGeQ=" 307 }, 308 "nestopia": { 309 "owner": "libretro", 310 "repo": "nestopia", 311 - "rev": "8af07b7ab49e45495cbc4ba73cd2f879d9908b55", 312 - "sha256": "Z447flP1L/7gWEovWhbBearPKzsZNnGE2cz7jH7kEnY=" 313 }, 314 "np2kai": { 315 "owner": "AZO234", 316 "repo": "NP2kai", 317 - "rev": "30d4b6959c48db039207a37e278c868c7737ed69", 318 - "sha256": "uIcgbpcEz6yUKrBe0r84Yq2ihWfT0+TdUTIF5kMT5mI=", 319 "fetchSubmodules": true 320 }, 321 "o2em": { 322 "owner": "libretro", 323 "repo": "libretro-o2em", 324 - "rev": "f1050243e0d5285e7769e94a882b0cf39d2b7370", 325 - "sha256": "wD+iJ8cKC8jYFZ6OVvX71uO7sSh5b/LLoc5+g7f3Yyg=" 326 }, 327 "opera": { 328 "owner": "libretro", ··· 333 "parallel-n64": { 334 "owner": "libretro", 335 "repo": "parallel-n64", 336 - "rev": "28c4572c9a09447b3bf5ed5fbd3594a558bc210d", 337 - "sha256": "by8NvKjVT9OrgVhNtv5E4Fqmdva42lWV8UQi0SKfBL8=" 338 }, 339 "pcsx2": { 340 "owner": "libretro", 341 "repo": "pcsx2", 342 - "rev": "3ef2a36b0608e9dcae808c7ef01c7a760d628735", 343 - "sha256": "ezqVntonhGfejiGx9cxQEnjsXEHqT++M1fO0Jz1t/Us=" 344 }, 345 "pcsx_rearmed": { 346 "owner": "libretro", 347 "repo": "pcsx_rearmed", 348 - "rev": "12fc12797064599dfca2d44043d5c02a949711ef", 349 - "sha256": "SXmNfHGyk+KChiwkKlA+d/oezzp/7p1DJY+w2bES6kg=" 350 }, 351 "picodrive": { 352 "owner": "libretro", 353 "repo": "picodrive", 354 - "rev": "50b8b47838fea8096535d543caaacdcc56aa7df2", 355 - "sha256": "C1Htwel5PHZcjkKmjiiN/QgRofMhqlArxktOSqoTxTc=", 356 "fetchSubmodules": true 357 }, 358 "play": { 359 "owner": "jpd002", 360 "repo": "Play-", 361 - "rev": "fd6a5161030215090d48a8036680f57914c71bb0", 362 - "sha256": "g6UBRV7biLjPBXdlejjXUSk3v1wrsYWA3quZlpPj23U=", 363 "fetchSubmodules": true 364 }, 365 "ppsspp": { 366 "owner": "hrydgard", 367 "repo": "ppsspp", 368 - "rev": "54d63cc1daf2a0cdc812e9af85854bb4ae5ef399", 369 - "sha256": "iB/8zf4FYdsbiKZVq/YISTEQSoo1kme1uZsyuhbOcoc=", 370 "fetchSubmodules": true 371 }, 372 "prboom": { 373 "owner": "libretro", 374 "repo": "libretro-prboom", 375 - "rev": "af1b5bf89d01095326ee27e178f9257f9e728873", 376 - "sha256": "pvTUv4E+wBOYfjz8Ph11CK4E7rIm1T+u90TWDNXEBIU=" 377 }, 378 "prosystem": { 379 "owner": "libretro", 380 "repo": "prosystem-libretro", 381 - "rev": "89e6df7b60d151310fedbe118fb472959a9dcd61", 382 - "sha256": "uxgKddS53X7ntPClE8MGezBAG+7OAFvMXTnyKpOOau0=" 383 }, 384 "quicknes": { 385 "owner": "libretro", 386 "repo": "QuickNES_Core", 387 - "rev": "743e6e06db246c5edab27c738c7a573d83140485", 388 - "sha256": "NYmP+HFeZGUeIRaT3bzdpWw9cmEAaBkA3EGnw/zpDXA=" 389 }, 390 "sameboy": { 391 "owner": "libretro", ··· 396 "scummvm": { 397 "owner": "libretro", 398 "repo": "scummvm", 399 - "rev": "80cb7269a33b233dcea27d8d01df084b0d35c80a", 400 - "sha256": "5kMWM8d5aBbT7TseNyaYxw7VDkrLL0G+KUvJcUboQgA=" 401 }, 402 "smsplus-gx": { 403 "owner": "libretro", 404 "repo": "smsplus-gx", 405 - "rev": "3f1ffede55bcfe0168caa484a00bf041ab591abf", 406 - "sha256": "fD+grzMPk4uXvmzGf+f9Mor0eefBLHIumCydsSHUsck=" 407 }, 408 "snes9x": { 409 "owner": "snes9xgit", 410 "repo": "snes9x", 411 - "rev": "34b6160805c4995a8edf5f9b3328f5e492ae4c44", 412 - "sha256": "YRRqtd5iu2evRk+7SyQpqpxqTaEFOkDZ/XQHEjpSBcM=" 413 }, 414 "snes9x2002": { 415 "owner": "libretro", 416 "repo": "snes9x2002", 417 - "rev": "e16cb16efa00765b1bc3b8fee195680efb1542c7", 418 - "sha256": "0dhLpNy+NUE3mE/ejEwbq3G28/a2HONS5NPslI5LOEc=" 419 }, 420 "snes9x2005": { 421 "owner": "libretro", 422 "repo": "snes9x2005", 423 - "rev": "77e9cd293c791b47f4397da0a47242b329243cb5", 424 - "sha256": "iHGfZIGzE4n3EHrVRxTULuYKsOse5NcJftmasoJFwFo=" 425 }, 426 "snes9x2010": { 427 "owner": "libretro", 428 "repo": "snes9x2010", 429 - "rev": "714b1c8e08c7580430190119b07e793405773ac2", 430 - "sha256": "yKSQEE+lT4V2V1XqemfziHuIt79TcvC0ranU9ounTXo=" 431 }, 432 "stella": { 433 "owner": "stella-emu", 434 "repo": "stella", 435 - "rev": "1db9de390a331a7d55c35591c93d9e89184cce5f", 436 - "sha256": "vICKxx+UBYvMzZ3a3F86yzJRKfdo0jMxa27wsUX0KZw=" 437 }, 438 "stella2014": { 439 "owner": "libretro", 440 "repo": "stella2014-libretro", 441 - "rev": "934c7a2a44ef038af529b68950ddba4f7ea3478e", 442 - "sha256": "s7LQ47sAPTyk4COONk4qnebxCq78zGLIjh3Y2+1fIak=" 443 }, 444 "swanstation": { 445 "owner": "libretro", 446 "repo": "swanstation", 447 - "rev": "61c5debe60192b0fecd8c15310b2e4c4473f9438", 448 - "sha256": "DZJApJnGDMsUhjO35TBc7tMldCGKDPPtrwxPLe0Ey1s=" 449 }, 450 "tgbdual": { 451 "owner": "libretro", ··· 462 "tic80": { 463 "owner": "libretro", 464 "repo": "tic-80", 465 - "rev": "967eb78c3610385a0e6cba8bb5c60ebc3b886d3e", 466 - "sha256": "N0QFNTYFVbhWwt2yx5fLM7Dl6pJZPYrt9o3+6rjnWa8=", 467 "fetchSubmodules": true 468 }, 469 "vba-m": { ··· 475 "vba-next": { 476 "owner": "libretro", 477 "repo": "vba-next", 478 - "rev": "b218f48bb27b5d3885fa4076ff325922b5acd817", 479 - "sha256": "idqGMbMA9mZlIh0QAba3BxpPDi/bFJJkUbnxV3xMOCo=" 480 }, 481 "vecx": { 482 "owner": "libretro", 483 "repo": "libretro-vecx", 484 - "rev": "28d6efc8972313903d0802a736ff8c3bc115e78f", 485 - "sha256": "VYa8s+HB8IYF+HS6SA+sO5DzpgCtnMGrh88KTVNGICY=" 486 }, 487 "virtualjaguar": { 488 "owner": "libretro", 489 "repo": "virtualjaguar-libretro", 490 - "rev": "d1b1b28a6ad2518b746e3f7537ec6d66db96ec57", 491 - "sha256": "Io25dt80fqIqIxwzF2DK9J5UFz6YCUQoqThcIuxdEBo=" 492 }, 493 "yabause": { 494 "owner": "libretro", 495 "repo": "yabause", 496 - "rev": "f30153ff9e534b96049c6f1ac3075b572642ceb5", 497 - "sha256": "AdqCr5X3Bq8ic2jkIestmYi+CBByZ5Fyf0BUYwBkWnA=" 498 } 499 }
··· 2 "atari800": { 3 "owner": "libretro", 4 "repo": "libretro-atari800", 5 + "rev": "beab30e7ea10b7ed14d0514064f47d16f76cd995", 6 + "sha256": "r9MsnasNhhYdFyr2VHJXkTXssB5U00JW6wN/+i+SNUk=" 7 }, 8 "beetle-gba": { 9 "owner": "libretro", ··· 14 "beetle-lynx": { 15 "owner": "libretro", 16 "repo": "beetle-lynx-libretro", 17 + "rev": "de0d520d679cb92767876d4e98da908b1ea6a2d6", 18 + "sha256": "BszU5bnlHBOwQSZOM9P4WIP863rS5RluNWvGBFxqzYs=" 19 }, 20 "beetle-ngp": { 21 "owner": "libretro", 22 "repo": "beetle-ngp-libretro", 23 + "rev": "6abc74d9dc6a86460ab71c93c153fe1cb8ef4dbb", 24 + "sha256": "+p3MwlzwwTghIKTDMzkqGlxhZiy/Px7xaDK3a0JagUE=" 25 }, 26 "beetle-pce-fast": { 27 "owner": "libretro", 28 "repo": "beetle-pce-fast-libretro", 29 + "rev": "e8801687f232a6f8828b3ff5dadbc9fe1b0076fc", 30 + "sha256": "YM+URLnMqsdmk/5yqCg8U4mPpgtmj5qne2CrbTpTeN8=" 31 }, 32 "beetle-pcfx": { 33 "owner": "libretro", 34 "repo": "beetle-pcfx-libretro", 35 + "rev": "00abc26cafb15cc33dcd73f4bd6b93cbaab6e1ea", 36 + "sha256": "4a1wV3WKZmg1ed3BD0PN0Ap9E9XahQtilRWTGV5Ns3g=" 37 }, 38 "beetle-psx": { 39 "owner": "libretro", 40 "repo": "beetle-psx-libretro", 41 + "rev": "88929ae90b4807a41b1b240377ab440e39ecf2cc", 42 + "sha256": "5AX5FPsmsqGWCNzLgJ7lsekZaIdano2j5sb4qUkD4cQ=" 43 }, 44 "beetle-saturn": { 45 "owner": "libretro", 46 "repo": "beetle-saturn-libretro", 47 + "rev": "ae30f29e340a00b33e38df85ceaa599151a47cd7", 48 + "sha256": "nc239PRM/TfkZMWm4Zl5kSoZBQcrMcMudupvCJtTBlc=" 49 }, 50 "beetle-snes": { 51 "owner": "libretro", 52 "repo": "beetle-bsnes-libretro", 53 + "rev": "d770563fc3c4bd9abb522952cefb4aa923ba0b91", 54 + "sha256": "zHPtfgp9hc8Q4gXJ5VgfJLWLeYjCsQhkfU1T5RM7AL0=" 55 }, 56 "beetle-supergrafx": { 57 "owner": "libretro", 58 "repo": "beetle-supergrafx-libretro", 59 + "rev": "59991a98c232b1a8350a9d67ac554c5b22771d3c", 60 + "sha256": "zv3dAPWrj6hkNaFQ5vUKm5Orcrb2XO48WSkAFiAVUO0=" 61 }, 62 "beetle-vb": { 63 "owner": "libretro", 64 "repo": "beetle-vb-libretro", 65 + "rev": "a91437af0879124aa00b6cb30ca1189f2c84b7cb", 66 + "sha256": "ryahr/g6PDvUKCPkF1D8xozNGNCa4bLw63b5Ra9Vsfo=" 67 }, 68 "beetle-wswan": { 69 "owner": "libretro", 70 "repo": "beetle-wswan-libretro", 71 + "rev": "089a62477c5f51ac746a5fc8eacf3599e9feb649", 72 + "sha256": "yaaEJ+XgrBgtTEkffgnxvt2mrp5dsDYJ+TTxCZZU5OE=" 73 }, 74 "blastem": { 75 "owner": "libretro", ··· 80 "bluemsx": { 81 "owner": "libretro", 82 "repo": "bluemsx-libretro", 83 + "rev": "92d0c41b4973854114c7b2d06ab727a266d404c5", 84 + "sha256": "dL4k+zG8L4KK4lwf9eXPVGk/u5xQn2htIEpoKyj9kQI=" 85 }, 86 "bsnes": { 87 "owner": "libretro", 88 "repo": "bsnes-libretro", 89 + "rev": "26c583e1c5d09253b6c61e2b9d418e8758eef632", 90 + "sha256": "Qa0ScFHcEgBUoWouNoW4JINZ2aHjNATndxhcwKw476Q=" 91 }, 92 "bsnes-hd": { 93 "owner": "DerKoun", ··· 98 "bsnes-mercury": { 99 "owner": "libretro", 100 "repo": "bsnes-mercury", 101 + "rev": "4ba6d8d88e57d3193d95e1bcf39e8d31121f76d4", 102 + "sha256": "w2MVslgRlxW4SMzgcXP4gXr9A8B07N7LNrB1LXzk1Zk=" 103 }, 104 "citra": { 105 "owner": "libretro", 106 "repo": "citra", 107 + "rev": "44e01f99016008eff18bc7a28234d1098382358d", 108 + "sha256": "vIrUStv+VM8pYeznnWSVBRfSA71/B7VIY7B/syymGzE=", 109 + "fetchSubmodules": true 110 }, 111 "desmume": { 112 "owner": "libretro", 113 "repo": "desmume", 114 + "rev": "5d0ae2be2c9fb6362af528b3722e81323318eb9f", 115 + "sha256": "4bJ6fLZ+fV7SnZ71YT3JFcXFOgmskNUCmCHwc2QNl0A=" 116 }, 117 "desmume2015": { 118 "owner": "libretro", 119 "repo": "desmume2015", 120 + "rev": "af397ff3d1f208c27f3922cc8f2b8e08884ba893", 121 + "sha256": "kEb+og4g7rJvCinBZKcb42geZO6W8ynGsTG9yqYgI+U=" 122 }, 123 "dolphin": { 124 "owner": "libretro", 125 "repo": "dolphin", 126 + "rev": "6a0b6ee8a4d5363e669f5faf43abc8f17e4278a8", 127 + "sha256": "TeeHnttGmCeOTDTK/gJM+RpusjDDndapZAa3T+oLiq0=" 128 }, 129 "dosbox": { 130 "owner": "libretro", 131 "repo": "dosbox-libretro", 132 + "rev": "74cd17ed0ff810ff78cb8c1f1e45513bfe8a0f32", 133 + "sha256": "0PIloW7j/87asDJ8IDw4r3r4muxNF+RbvkIRPLZQvRc=" 134 }, 135 "eightyone": { 136 "owner": "libretro", 137 "repo": "81-libretro", 138 + "rev": "6aba19246c1ec08f3de5659b2dbc3277ec6bfb97", 139 + "sha256": "2G6NkNlvqvP5RM35ydppnr2/RRbeiIpM2HKOpt8PkgU=" 140 }, 141 "fbalpha2012": { 142 "owner": "libretro", 143 "repo": "fbalpha2012", 144 + "rev": "7f8860543a81ba79c0e1ce1aa219af44568c628a", 145 + "sha256": "r1lH+CR+nVRCPkVo0XwLi35/ven/FEkNhWUTA6cUVxc=" 146 }, 147 "fbneo": { 148 "owner": "libretro", 149 "repo": "fbneo", 150 + "rev": "01bf2e189dcd96f978c3a4ae7bbbb00f2d90aabf", 151 + "sha256": "naCfGSrwA9vO3Cu2rHLplCMcTbpx6S/sapwisFCcL5c=" 152 }, 153 "fceumm": { 154 "owner": "libretro", 155 "repo": "libretro-fceumm", 156 + "rev": "b3c35b6515b2b6a789c589f976a4a323ebebe3eb", 157 + "sha256": "zwFQGQyO0Vj/IBM1k8JB3D/jB3OwDuGdSHLavr8Fxgw=" 158 }, 159 "flycast": { 160 "owner": "libretro", 161 "repo": "flycast", 162 + "rev": "4c293f306bc16a265c2d768af5d0cea138426054", 163 + "sha256": "9IxpRBY1zifhOebLJSDMA/wiOfcZj+KOiPrgmjiFxvo=" 164 }, 165 "fmsx": { 166 "owner": "libretro", 167 "repo": "fmsx-libretro", 168 + "rev": "f9ea9eacd49297783c216d147dcc1a22465b2749", 169 + "sha256": "nDsaaUeZUm4zTj07+2nPDefoDpw18vXdhQr1BH6/4eY=" 170 }, 171 "freeintv": { 172 "owner": "libretro", 173 "repo": "freeintv", 174 + "rev": "295dd3c9e4b2d4f652f6a6a904afbe90a8187068", 175 + "sha256": "tz0X6AfD7IL3Y50vjgSO5r6sDhu++6Gj8Rp7de5OqMk=" 176 }, 177 "gambatte": { 178 "owner": "libretro", 179 "repo": "gambatte-libretro", 180 + "rev": "15536214cdce31894d374b2ffa2494543057082b", 181 + "sha256": "cTSoK6rezRajnuWPt7WkYn3SWL0sTu7h5X3Ig1KukDA=" 182 }, 183 "genesis-plus-gx": { 184 "owner": "libretro", 185 "repo": "Genesis-Plus-GX", 186 + "rev": "144045b30a18ab4b27c3ae46490274988f302748", 187 + "sha256": "ydnyPdkJmM+xhuJqIOxZISFcTN8RFgOLbnRvOBJORek=" 188 }, 189 "gpsp": { 190 "owner": "libretro", 191 "repo": "gpsp", 192 + "rev": "d4547baf26dd70a18eeb38d231ce3f998004ec30", 193 + "sha256": "9XU9TmBpuZeAOzqxuKVQZvdHRgX8fm4HcEfleM3jB7E=" 194 }, 195 "gw": { 196 "owner": "libretro", 197 "repo": "gw-libretro", 198 + "rev": "85bf5c936044db0bf4138e7eb8ab20d3a7330035", 199 + "sha256": "yCAnveQw+VyZFQ/GsUBuyoMRQ4yfhA0f3tYghZ2HecU=" 200 }, 201 "handy": { 202 "owner": "libretro", 203 "repo": "libretro-handy", 204 + "rev": "5145f79bb746f6d9c0b340c2f9cc4bf059848924", 205 + "sha256": "madTjJWKM8elM35LRAwm0RwnA44skLtIK2/7RXPSNl0=" 206 }, 207 "hatari": { 208 "owner": "libretro", 209 "repo": "hatari", 210 + "rev": "e5e36a5262cfeadc3d1c7b411b7a70719c4f293c", 211 + "sha256": "T4I3NVEMBKr5HLs60x48VNRl2TMnhqvaF+LTtYQ7qdU=" 212 }, 213 "mame": { 214 "owner": "libretro", 215 "repo": "mame", 216 + "rev": "2a0e4ea0e2362bb7dcf77216c9fcb48426cea1e8", 217 + "sha256": "imuHEwzDpI8jbdOeOhBBfzl4k74mDq/3SrKD8upzZmo=" 218 }, 219 "mame2000": { 220 "owner": "libretro", 221 "repo": "mame2000-libretro", 222 + "rev": "f35db3877f8a79a174dd3b2e37f4ebf39d71d5a4", 223 + "sha256": "JmtvxKWAYNk1SyV1YpFeLX49zzGqpUv6nqM82xU70OM=" 224 }, 225 "mame2003": { 226 "owner": "libretro", 227 "repo": "mame2003-libretro", 228 + "rev": "3eb27d5f161522cf873c0642f14b8e2267b3820f", 229 + "sha256": "TQ4FwboKeEP58hOL2hYs4OYes2o0wSKFSp4CqZV5r6I=" 230 }, 231 "mame2003-plus": { 232 "owner": "libretro", 233 "repo": "mame2003-plus-libretro", 234 + "rev": "e5ee29ecb8182952f861f22516e5791625fe2671", 235 + "sha256": "YunfAITR/Etm8lvEab/HigZoBz+ayJQ7ezjItWI/HvE=" 236 }, 237 "mame2010": { 238 "owner": "libretro", ··· 249 "mame2016": { 250 "owner": "libretro", 251 "repo": "mame2016-libretro", 252 + "rev": "01058613a0109424c4e7211e49ed83ac950d3993", 253 + "sha256": "IsM7f/zlzvomVOYlinJVqZllUhDfy4NNTeTPtNmdVak=" 254 }, 255 "melonds": { 256 "owner": "libretro", 257 "repo": "melonds", 258 + "rev": "e93ec3e462d3dfc1556781510a3cee113f02abb2", 259 + "sha256": "NDrsqX17OKw1/PIZSrWAxhVl+Qk/xG7lCnr6Ts+7YJ4=" 260 }, 261 "mesen": { 262 "owner": "libretro", 263 "repo": "mesen", 264 + "rev": "bb9ea02eba28682986044a6f49329ec533aa26ba", 265 + "sha256": "G2NQDpByvI9RFEwrRiKXcMnPtVtqpvEoZgk7/fk5qCU=" 266 }, 267 "mesen-s": { 268 "owner": "libretro", 269 "repo": "mesen-s", 270 + "rev": "3694c7f9692a0be32d86979c347884ae9def0a3b", 271 + "sha256": "VBNl4682e2X12WNjtXZ3P4/Kw4OeRLSRWyZqYDpfmCo=" 272 }, 273 "meteor": { 274 "owner": "libretro", ··· 279 "mgba": { 280 "owner": "libretro", 281 "repo": "mgba", 282 + "rev": "5d48e0744059ebf38a4e937b256ffd5df4e0d103", 283 + "sha256": "OYw2nlldFx5B7WX0E8Gbgfp1j4h65ZxyKDS9tneHXQg=" 284 }, 285 "mupen64plus": { 286 "owner": "libretro", 287 "repo": "mupen64plus-libretro-nx", 288 + "rev": "6e9dcd2cd9d23d3e79eaf2349bf7e9f25ad45bf1", 289 + "sha256": "rs/VL2K6aS8Rl01IyxUiWipzLEzg+7+fbXxI0qN5X/I=" 290 }, 291 "neocd": { 292 "owner": "libretro", 293 "repo": "neocd_libretro", 294 + "rev": "327aeceecdf71c8a0c0af3d6dc53686c94fe44ad", 295 + "sha256": "cY0P+0EQ0b9df+YT2EMvrxjp5L+DwIg31rEJqchU+hc=" 296 }, 297 "nestopia": { 298 "owner": "libretro", 299 "repo": "nestopia", 300 + "rev": "7dbd5c6384c4c6326004c97fd8e6fa07cb4edcef", 301 + "sha256": "OBkWP36BzwsEW+ORF2opHlXwXHgGN0l2ZxBuyDO/sKY=" 302 }, 303 "np2kai": { 304 "owner": "AZO234", 305 "repo": "NP2kai", 306 + "rev": "2b09ea6a589cdcae27bca27160b3f82638fbb45d", 307 + "sha256": "M3kGA1TU3xui6of9XgUspI+Zf+hjYP1d2mgKwxsy3IQ=", 308 "fetchSubmodules": true 309 }, 310 "o2em": { 311 "owner": "libretro", 312 "repo": "libretro-o2em", 313 + "rev": "efd749cec2dd1ce42a8aa3048a89f817d271d804", 314 + "sha256": "aw0bJyQzYFOlQQOfNsRgqdeUJP1qF4llJxLq5t9oc5g=" 315 }, 316 "opera": { 317 "owner": "libretro", ··· 322 "parallel-n64": { 323 "owner": "libretro", 324 "repo": "parallel-n64", 325 + "rev": "b804ab1a199d6ff1f8fef4aa7dfcf663990e430b", 326 + "sha256": "zAet6hYa/79CBbvwZNTNs/ayWuHHlwg+0Y4BAUFddBc=" 327 }, 328 "pcsx2": { 329 "owner": "libretro", 330 "repo": "pcsx2", 331 + "rev": "0251730a21d7238856d79aa25e2942b48edb38f6", 332 + "sha256": "a/lWLBCww4QwxdO7Sbvmfq0XF9FnP4xzF51ljsWk46I=" 333 }, 334 "pcsx_rearmed": { 335 "owner": "libretro", 336 "repo": "pcsx_rearmed", 337 + "rev": "37d9bf8315be570a350cd44876ae14f9b0eff20b", 338 + "sha256": "ieuEWs+NIQFCgMl/yTnaFdClxEv5NurrLuUvkjSUar0=" 339 }, 340 "picodrive": { 341 "owner": "libretro", 342 "repo": "picodrive", 343 + "rev": "bb6a52fe60e6f3bdcd17effe75e68fd0f8c44ba7", 344 + "sha256": "wztctLbK7VE4OPJS7ixKwnN4VkQv96Te3FmJlZ5m4A0=", 345 "fetchSubmodules": true 346 }, 347 "play": { 348 "owner": "jpd002", 349 "repo": "Play-", 350 + "rev": "ec2a9460ea2beeb69d30534ee8affbda4fc4b156", 351 + "sha256": "8maLaSJiF9soJdIlYoFHSG+2XXYTdLmWH6cq9vZRd/4=", 352 "fetchSubmodules": true 353 }, 354 "ppsspp": { 355 "owner": "hrydgard", 356 "repo": "ppsspp", 357 + "rev": "0eea0acf13022ff8d910adb55cec14ebad825afc", 358 + "sha256": "f1Tscndz0TcW0bUhixEvsrbFKefLfsCFjqWA7ANnfB4=", 359 "fetchSubmodules": true 360 }, 361 "prboom": { 362 "owner": "libretro", 363 "repo": "libretro-prboom", 364 + "rev": "b22a6b19fd976a14374db9083baea9c91b079106", 365 + "sha256": "NmEWRTHaZjV2Y6Wrc3WOamXCnOawKc2ja1KBDxokRiY=" 366 }, 367 "prosystem": { 368 "owner": "libretro", 369 "repo": "prosystem-libretro", 370 + "rev": "fbf62c3dacaac694f7ec26cf9be10a51b27271e7", 371 + "sha256": "Opb6CUeT/bnaTg4MJo7DNsVyaPa73PLbIor25HHWzZ0=" 372 }, 373 "quicknes": { 374 "owner": "libretro", 375 "repo": "QuickNES_Core", 376 + "rev": "e6f08c165af45fc2d2f26c80ba0cfc33e26f9cfe", 377 + "sha256": "JQtlqN3mvIwKy6iN9opHPHnh0E7AIn9JVitIfXklI/I=" 378 }, 379 "sameboy": { 380 "owner": "libretro", ··· 385 "scummvm": { 386 "owner": "libretro", 387 "repo": "scummvm", 388 + "rev": "2fb2e4c551c9c1510c56f6e890ee0300b7b3fca3", 389 + "sha256": "wrlFqu+ONbYH4xMFDByOgySobGrkhVc7kYWI4JzA4ew=" 390 }, 391 "smsplus-gx": { 392 "owner": "libretro", 393 "repo": "smsplus-gx", 394 + "rev": "8e8378896bc15c8a9f756339b596171ba266cc14", 395 + "sha256": "zvG2SF4zx3Yaaf54NZ2DgsGPN59msW8TvQFCS4OMcHQ=" 396 }, 397 "snes9x": { 398 "owner": "snes9xgit", 399 "repo": "snes9x", 400 + "rev": "78d006ffdbb5cb6944177db52c3640152948d928", 401 + "sha256": "Qh+nLtwdLfjwYxXCv49pPPf0mqdxKRv/JLRm82knJu0=" 402 }, 403 "snes9x2002": { 404 "owner": "libretro", 405 "repo": "snes9x2002", 406 + "rev": "25d9d4fea4c7d7fcc8608c65c2bec9bcbc41f26e", 407 + "sha256": "EYcaWckvTfi2ajx6C1olE5pW51diLSjMdqZdyH8U2Ck=" 408 }, 409 "snes9x2005": { 410 "owner": "libretro", 411 "repo": "snes9x2005", 412 + "rev": "23f759bc4bf2e39733296f7749e446418e3cd0f3", 413 + "sha256": "/bZrMp7NHgdYvA3Tw1ZoWXRg7VxmatRUX5cCJsU3NCY=" 414 }, 415 "snes9x2010": { 416 "owner": "libretro", 417 "repo": "snes9x2010", 418 + "rev": "b12f3ba46f09dd5d0254676ed4b9e289d16b9ea8", 419 + "sha256": "i4GEqZkgwlehuUQGcjLdMkO9xNWRs8k+3y2OGivwXCw=" 420 }, 421 "stella": { 422 "owner": "stella-emu", 423 "repo": "stella", 424 + "rev": "071e8f7eb1096dfe95d9eb2e5b7b27b30f28fbf9", 425 + "sha256": "8WzBL8ojsHYxOqItHeeG4djALhqBBOV7nHE078UzqAY=" 426 }, 427 "stella2014": { 428 "owner": "libretro", 429 "repo": "stella2014-libretro", 430 + "rev": "1a2e96bc6ccf91de6fb4322048da05f67a9d21d4", 431 + "sha256": "yINO6EU2kCldfxKcqym5ha3uIEQg7I6t4Wmu+8b6Hmw=" 432 }, 433 "swanstation": { 434 "owner": "libretro", 435 "repo": "swanstation", 436 + "rev": "0932243b0e5f1a5a237b0521b30b39473b61fa31", 437 + "sha256": "krA7X9CIOg53giWSMXgzgazeyWFXEpMobPSnOB7g994=" 438 }, 439 "tgbdual": { 440 "owner": "libretro", ··· 451 "tic80": { 452 "owner": "libretro", 453 "repo": "tic-80", 454 + "rev": "e9f62f85a154796c6baaee8a9f6fd0cfdd447019", 455 + "sha256": "JTAoIqxqpaLjsQiIpJ4wQsREI5/rTxVxDywoL3oLI4Q=", 456 "fetchSubmodules": true 457 }, 458 "vba-m": { ··· 464 "vba-next": { 465 "owner": "libretro", 466 "repo": "vba-next", 467 + "rev": "ebd175d57ebb2065726099d32034cb25934787ce", 468 + "sha256": "hTUlhLzvsemNz6wSmlnQNoNtzaVhipA+hmVmhzZVN+w=" 469 }, 470 "vecx": { 471 "owner": "libretro", 472 "repo": "libretro-vecx", 473 + "rev": "141af284202c86ed0d4ce9030c76954a144287cf", 474 + "sha256": "p5vMuG2vr3BTJOQWNcTPb89MlkVrRvJNTIJSU8r9zfU=" 475 }, 476 "virtualjaguar": { 477 "owner": "libretro", 478 "repo": "virtualjaguar-libretro", 479 + "rev": "263c979be4ca757c43fb525bd6f0887998e57041", 480 + "sha256": "6Q6Y0IFUWS9ZPhnAK3EUo4hMGPdBn8eNEYCK/zLgAKU=" 481 }, 482 "yabause": { 483 "owner": "libretro", 484 "repo": "yabause", 485 + "rev": "17dfcd8de4700341d972993501d3a043925675ce", 486 + "sha256": "xwW7Oe3Cy3yC0xC5acLW6OGUIG+dKd1mwiXK5ZAumdo=" 487 } 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 9 buildCommand = '' 10 mkdir -p $out/lib 11 - for coreDir in $cores 12 - do 13 ln -s $coreDir/* $out/lib/. 14 done 15 ··· 29 30 meta = with retroarch.meta; { 31 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 - + "."; 36 }; 37 }
··· 8 9 buildCommand = '' 10 mkdir -p $out/lib 11 + for coreDir in $cores; do 12 ln -s $coreDir/* $out/lib/. 13 done 14 ··· 28 29 meta = with retroarch.meta; { 30 inherit changelog description homepage license maintainers platforms; 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; 40 }; 41 }
+2 -2
pkgs/applications/misc/blender/default.nix
··· 5 , openvdb, libXxf86vm, tbb, alembic 6 , zlib, zstd, fftw, opensubdiv, freetype, jemalloc, ocl-icd, addOpenGLRunpath 7 , jackaudioSupport ? false, libjack2 8 - , cudaSupport ? config.cudaSupport or false, cudatoolkit_11 9 , colladaSupport ? true, opencollada 10 , spaceNavSupport ? stdenv.isLinux, libspnav 11 , makeWrapper ··· 63 llvmPackages.openmp SDL Cocoa CoreGraphics ForceFeedback OpenAL OpenGL 64 ]) 65 ++ optional jackaudioSupport libjack2 66 - ++ optional cudaSupport cudatoolkit_11 67 ++ optional colladaSupport opencollada 68 ++ optional spaceNavSupport libspnav; 69 pythonPath = with python310Packages; [ numpy requests ];
··· 5 , openvdb, libXxf86vm, tbb, alembic 6 , zlib, zstd, fftw, opensubdiv, freetype, jemalloc, ocl-icd, addOpenGLRunpath 7 , jackaudioSupport ? false, libjack2 8 + , cudaSupport ? config.cudaSupport or false, cudaPackages ? {} 9 , colladaSupport ? true, opencollada 10 , spaceNavSupport ? stdenv.isLinux, libspnav 11 , makeWrapper ··· 63 llvmPackages.openmp SDL Cocoa CoreGraphics ForceFeedback OpenAL OpenGL 64 ]) 65 ++ optional jackaudioSupport libjack2 66 + ++ optional cudaSupport cudaPackages.cudatoolkit 67 ++ optional colladaSupport opencollada 68 ++ optional spaceNavSupport libspnav; 69 pythonPath = with python310Packages; [ numpy requests ];
+3 -1
pkgs/applications/misc/firestarter/default.nix
··· 8 , glibc 9 , git 10 , pkg-config 11 - , cudatoolkit 12 , withCuda ? false 13 }: 14 15 let 16 hwloc = stdenv.mkDerivation rec { 17 pname = "hwloc"; 18 version = "2.2.0";
··· 8 , glibc 9 , git 10 , pkg-config 11 + , cudaPackages ? {} 12 , withCuda ? false 13 }: 14 15 let 16 + inherit (cudaPackages) cudatoolkit; 17 + 18 hwloc = stdenv.mkDerivation rec { 19 pname = "hwloc"; 20 version = "2.2.0";
+4 -1
pkgs/applications/networking/cluster/terraform-providers/default.nix
··· 104 ultradns = archived "2022/01"; 105 vthunder = throw "provider was renamed to thunder on 2022/01"; 106 }; 107 in 108 - automated-providers // special-providers // removed-providers // { inherit mkProvider; }
··· 104 ultradns = archived "2022/01"; 105 vthunder = throw "provider was renamed to thunder on 2022/01"; 106 }; 107 + 108 + # excluding aliases, used by terraform-full 109 + actualProviders = automated-providers // special-providers; 110 in 111 + actualProviders // removed-providers // { inherit actualProviders mkProvider; }
+1 -1
pkgs/applications/networking/cluster/terraform/default.nix
··· 85 passthru = { 86 withPlugins = newplugins: 87 withPlugins (x: newplugins x ++ actualPlugins); 88 - full = withPlugins (p: lib.filter lib.isDerivation (lib.attrValues p)); 89 90 # Expose wrappers around the override* functions of the terraform 91 # derivation.
··· 85 passthru = { 86 withPlugins = newplugins: 87 withPlugins (x: newplugins x ++ actualPlugins); 88 + full = withPlugins (p: lib.filter lib.isDerivation (lib.attrValues p.actualProviders)); 89 90 # Expose wrappers around the override* functions of the terraform 91 # derivation.
+2 -2
pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix
··· 47 }); 48 in nodejs-14_x.pkgs.deltachat-desktop.override rec { 49 pname = "deltachat-desktop"; 50 - version = "1.28.1"; 51 52 src = fetchFromGitHub { 53 owner = "deltachat"; 54 repo = "deltachat-desktop"; 55 rev = "v${version}"; 56 - hash = "sha256-i2Cb2HfapYTaxg5IUl4pGWYUM6o/4mWgMO7QsBqDHoU="; 57 }; 58 59 nativeBuildInputs = [
··· 47 }); 48 in nodejs-14_x.pkgs.deltachat-desktop.override rec { 49 pname = "deltachat-desktop"; 50 + version = "1.28.2"; 51 52 src = fetchFromGitHub { 53 owner = "deltachat"; 54 repo = "deltachat-desktop"; 55 rev = "v${version}"; 56 + hash = "sha256-jhtriDnt8Yl8eCmUTEyoPjccZV8RNAchMykkkiRpF60="; 57 }; 58 59 nativeBuildInputs = [
+2 -2
pkgs/applications/networking/instant-messengers/deltachat-desktop/package.json
··· 1 { 2 "name": "deltachat-desktop", 3 - "version": "1.28.1", 4 "dependencies": { 5 "@blueprintjs/core": "^3.22.3", 6 "@deltachat/message_parser_wasm": "^0.3.0", ··· 51 "@types/react-window": "^1.8.4", 52 "@types/react-window-infinite-loader": "^1.0.4", 53 "@types/url-parse": "^1.4.3", 54 - "electron": "^14.2.6", 55 "esbuild": "^0.12.29", 56 "glob-watcher": "^5.0.5", 57 "sass": "^1.26.5",
··· 1 { 2 "name": "deltachat-desktop", 3 + "version": "1.28.2", 4 "dependencies": { 5 "@blueprintjs/core": "^3.22.3", 6 "@deltachat/message_parser_wasm": "^0.3.0", ··· 51 "@types/react-window": "^1.8.4", 52 "@types/react-window-infinite-loader": "^1.0.4", 53 "@types/url-parse": "^1.4.3", 54 + "electron": "^14.2.9", 55 "esbuild": "^0.12.29", 56 "glob-watcher": "^5.0.5", 57 "sass": "^1.26.5",
+2 -2
pkgs/applications/office/morgen/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "morgen"; 6 - version = "2.5.0"; 7 8 src = fetchurl { 9 url = "https://download.todesktop.com/210203cqcj00tw1/morgen-${version}.deb"; 10 - sha256 = "sha256-6hBhfJ18ROCfmqoxrJZ5TiYCFb1xZKsJeobXFy5yfQM="; 11 }; 12 13 nativeBuildInputs = [
··· 3 4 stdenv.mkDerivation rec { 5 pname = "morgen"; 6 + version = "2.5.2"; 7 8 src = fetchurl { 9 url = "https://download.todesktop.com/210203cqcj00tw1/morgen-${version}.deb"; 10 + sha256 = "sha256-KU58UjhFDEJGzHEGVbrii8a9cZwr7ulkQgK1Fea9smk="; 11 }; 12 13 nativeBuildInputs = [
+7 -3
pkgs/applications/science/math/caffe/default.nix
··· 13 , Accelerate, CoreGraphics, CoreVideo 14 , lmdbSupport ? true, lmdb 15 , leveldbSupport ? true, leveldb, snappy 16 - , cudaSupport ? config.cudaSupport or false, cudatoolkit 17 - , cudnnSupport ? cudaSupport, cudnn ? null 18 - , ncclSupport ? false, nccl ? null 19 , pythonSupport ? false, python ? null, numpy ? null 20 , substituteAll 21 }: 22 23 assert leveldbSupport -> (leveldb != null && snappy != null); 24 assert cudnnSupport -> cudaSupport;
··· 13 , Accelerate, CoreGraphics, CoreVideo 14 , lmdbSupport ? true, lmdb 15 , leveldbSupport ? true, leveldb, snappy 16 + , cudaSupport ? config.cudaSupport or false, cudaPackages ? {} 17 + , cudnnSupport ? cudaSupport 18 + , ncclSupport ? false 19 , pythonSupport ? false, python ? null, numpy ? null 20 , substituteAll 21 }: 22 + 23 + let 24 + inherit (cudaPackages) cudatoolkit cudnn nccl; 25 + in 26 27 assert leveldbSupport -> (leveldb != null && snappy != null); 28 assert cudnnSupport -> cudaSupport;
+6 -2
pkgs/applications/science/math/cntk/default.nix
··· 2 , fetchpatch 3 , openblas, blas, lapack, opencv3, libzip, boost, protobuf, mpi 4 , onebitSGDSupport ? false 5 - , cudaSupport ? false, addOpenGLRunpath, cudatoolkit, nvidia_x11 6 - , cudnnSupport ? cudaSupport, cudnn 7 }: 8 9 assert cudnnSupport -> cudaSupport; 10 assert blas.implementation == "openblas" && lapack.implementation == "openblas";
··· 2 , fetchpatch 3 , openblas, blas, lapack, opencv3, libzip, boost, protobuf, mpi 4 , onebitSGDSupport ? false 5 + , cudaSupport ? false, cudaPackages ? {}, addOpenGLRunpath, cudatoolkit, nvidia_x11 6 + , cudnnSupport ? cudaSupport 7 }: 8 + 9 + let 10 + inherit (cudaPackages) cudatoolkit cudnn; 11 + in 12 13 assert cudnnSupport -> cudaSupport; 14 assert blas.implementation == "openblas" && lapack.implementation == "openblas";
+6 -2
pkgs/applications/science/math/mxnet/default.nix
··· 1 { config, stdenv, lib, fetchurl, fetchpatch, bash, cmake 2 , opencv3, gtest, blas, gomp, llvmPackages, perl 3 - , cudaSupport ? config.cudaSupport or false, cudatoolkit, nvidia_x11 4 - , cudnnSupport ? cudaSupport, cudnn 5 , cudaCapabilities ? [ "3.7" "5.0" "6.0" "7.0" "7.5" "8.0" "8.6" ] 6 }: 7 8 assert cudnnSupport -> cudaSupport; 9
··· 1 { config, stdenv, lib, fetchurl, fetchpatch, bash, cmake 2 , opencv3, gtest, blas, gomp, llvmPackages, perl 3 + , cudaSupport ? config.cudaSupport or false, cudaPackages ? {}, nvidia_x11 4 + , cudnnSupport ? cudaSupport 5 , cudaCapabilities ? [ "3.7" "5.0" "6.0" "7.0" "7.5" "8.0" "8.6" ] 6 }: 7 + 8 + let 9 + inherit (cudaPackages) cudatoolkit cudnn; 10 + in 11 12 assert cudnnSupport -> cudaSupport; 13
+4 -4
pkgs/data/themes/flat-remix-gnome/default.nix
··· 7 let 8 # make install will use dconf to find desktop background file uri. 9 # consider adding an args to allow specify pictures manually. 10 - # https://github.com/daniruiz/flat-remix-gnome/blob/20211223/Makefile#L38 11 fake-dconf = writeScriptBin "dconf" "echo -n"; 12 in 13 stdenv.mkDerivation rec { 14 pname = "flat-remix-gnome"; 15 - version = "20211223"; 16 17 src = fetchFromGitHub { 18 owner = "daniruiz"; 19 repo = pname; 20 rev = version; 21 - hash = "sha256-hAehJNDr8r0Jhhz0h7ygXI08ouNiWDT16SPm49i90lM="; 22 }; 23 24 nativeBuildInputs = [ glib fake-dconf ]; 25 makeFlags = [ "PREFIX=$(out)" ]; 26 preInstall = '' 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 29 mkdir -p $out/share/gnome-shell/ 30 touch $out/share/gnome-shell/gnome-shell-theme.gresource 31 '';
··· 7 let 8 # make install will use dconf to find desktop background file uri. 9 # consider adding an args to allow specify pictures manually. 10 + # https://github.com/daniruiz/flat-remix-gnome/blob/20220407/Makefile#L38 11 fake-dconf = writeScriptBin "dconf" "echo -n"; 12 in 13 stdenv.mkDerivation rec { 14 pname = "flat-remix-gnome"; 15 + version = "20220407"; 16 17 src = fetchFromGitHub { 18 owner = "daniruiz"; 19 repo = pname; 20 rev = version; 21 + hash = "sha256-Q54uF49NbvupN6LH80bgRtvyW7Cqm9vqsWXDkQrF4HQ="; 22 }; 23 24 nativeBuildInputs = [ glib fake-dconf ]; 25 makeFlags = [ "PREFIX=$(out)" ]; 26 preInstall = '' 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/20220407/Makefile#L56 29 mkdir -p $out/share/gnome-shell/ 30 touch $out/share/gnome-shell/gnome-shell-theme.gresource 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 ''; 255 passthru = { 256 cc = gcc; 257 majorVersion = lib.versions.majorMinor version; 258 }; 259
··· 254 ''; 255 passthru = { 256 cc = gcc; 257 + majorMinorVersion = lib.versions.majorMinor version; 258 majorVersion = lib.versions.majorMinor version; 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 }: 2 3 rustPlatform.buildRustPackage rec { 4 - pname = "rustfmt"; 5 inherit (rustPlatform.rust.rustc) version src; 6 7 # the rust source tarball already has all the dependencies vendored, no need to fetch them again ··· 19 # As of rustc 1.45.0, these env vars are required to build rustfmt (due to 20 # https://github.com/rust-lang/rust/pull/72001) 21 CFG_RELEASE = rustPlatform.rust.rustc.version; 22 - CFG_RELEASE_CHANNEL = "stable"; 23 24 meta = with lib; { 25 description = "A tool for formatting Rust code according to style guidelines";
··· 1 + { lib, stdenv, rustPlatform, Security, asNightly ? false }: 2 3 rustPlatform.buildRustPackage rec { 4 + pname = "rustfmt" + lib.optionalString asNightly "-nightly"; 5 inherit (rustPlatform.rust.rustc) version src; 6 7 # the rust source tarball already has all the dependencies vendored, no need to fetch them again ··· 19 # As of rustc 1.45.0, these env vars are required to build rustfmt (due to 20 # https://github.com/rust-lang/rust/pull/72001) 21 CFG_RELEASE = rustPlatform.rust.rustc.version; 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 ]; 26 27 meta = with lib; { 28 description = "A tool for formatting Rust code according to style guidelines";
+3 -3
pkgs/development/libraries/librealsense/default.nix
··· 8 , ninja 9 , pkg-config 10 , gcc 11 - , cudaSupport ? config.cudaSupport or false, cudatoolkit 12 , enablePython ? false, pythonPackages ? null 13 }: 14 15 - assert cudaSupport -> cudatoolkit != null; 16 assert enablePython -> pythonPackages != null; 17 18 stdenv.mkDerivation rec { ··· 31 buildInputs = [ 32 libusb1 33 gcc.cc.lib 34 - ] ++ lib.optional cudaSupport cudatoolkit 35 ++ lib.optionals enablePython (with pythonPackages; [python pybind11 ]); 36 37 patches = [
··· 8 , ninja 9 , pkg-config 10 , gcc 11 + , cudaSupport ? config.cudaSupport or false, cudaPackages ? {} 12 , enablePython ? false, pythonPackages ? null 13 }: 14 15 + assert cudaSupport -> (cudaPackages?cudatoolkit && cudaPackages.cudatoolkit != null); 16 assert enablePython -> pythonPackages != null; 17 18 stdenv.mkDerivation rec { ··· 31 buildInputs = [ 32 libusb1 33 gcc.cc.lib 34 + ] ++ lib.optional cudaSupport cudaPackages.cudatoolkit 35 ++ lib.optionals enablePython (with pythonPackages; [python pybind11 ]); 36 37 patches = [
+6 -2
pkgs/development/libraries/science/math/caffe2/default.nix
··· 5 , python, future, six, python-protobuf, numpy, pydot 6 , eigen 7 , doxygen 8 - , useCuda ? (config.cudaSupport or false), cudatoolkit ? null 9 - , useCudnn ? (config.cudnnSupport or false), cudnn ? null 10 , useOpenmp ? false, openmp ? null 11 , useOpencv3 ? true, opencv3 ? null 12 , useLeveldb ? false, leveldb ? null ··· 19 #, useNccl ? false 20 #, useNnpack ? false 21 }: 22 23 assert useCuda -> cudatoolkit != null; 24 assert useCudnn -> (useCuda && cudnn != null);
··· 5 , python, future, six, python-protobuf, numpy, pydot 6 , eigen 7 , doxygen 8 + , useCuda ? (config.cudaSupport or false), cudaPackages ? {} 9 + , useCudnn ? (config.cudnnSupport or false) 10 , useOpenmp ? false, openmp ? null 11 , useOpencv3 ? true, opencv3 ? null 12 , useLeveldb ? false, leveldb ? null ··· 19 #, useNccl ? false 20 #, useNnpack ? false 21 }: 22 + 23 + let 24 + inherit (cudaPackages) cudatoolkit cudnn; 25 + in 26 27 assert useCuda -> cudatoolkit != null; 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 { stdenv 8 , lib 9 , cudatoolkit ··· 19 removeStatic ? false 20 }: 21 22 - stdenv.mkDerivation { 23 name = "cudatoolkit-${cudatoolkit.majorVersion}-cudnn-${version}"; 24 25 inherit version; 26 # It's often the case that the src depends on the version of cudatoolkit it's 27 # being linked against, so we pass in `cudatoolkit` as an argument to `mkSrc`. 28 - src = mkSrc cudatoolkit; 29 30 nativeBuildInputs = [ addOpenGLRunpath ]; 31 ··· 81 # official version constraints (as recorded in default.nix). In some cases 82 # you _may_ be able to smudge version constraints, just know that you're 83 # 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 - 90 description = "NVIDIA CUDA Deep Neural Network library (cuDNN)"; 91 homepage = "https://developer.nvidia.com/cudnn"; 92 license = licenses.unfree;
··· 1 { stdenv 2 , lib 3 , cudatoolkit ··· 13 removeStatic ? false 14 }: 15 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 { 29 name = "cudatoolkit-${cudatoolkit.majorVersion}-cudnn-${version}"; 30 31 inherit version; 32 # It's often the case that the src depends on the version of cudatoolkit it's 33 # being linked against, so we pass in `cudatoolkit` as an argument to `mkSrc`. 34 + src = fetchurl { 35 + inherit url hash sha256; 36 + }; 37 38 nativeBuildInputs = [ addOpenGLRunpath ]; 39 ··· 89 # official version constraints (as recorded in default.nix). In some cases 90 # you _may_ be able to smudge version constraints, just know that you're 91 # embarking into unknown and unsupported territory when doing so. 92 + broken = !(elem cudatoolkit.majorMinorVersion supportedCudaVersions); 93 description = "NVIDIA CUDA Deep Neural Network library (cuDNN)"; 94 homepage = "https://developer.nvidia.com/cudnn"; 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 , symlinkJoin 7 8 , cudaSupport 9 - , cudatoolkit 10 - , cudnn 11 }: 12 let 13 cudatoolkit_joined = symlinkJoin { 14 name = "${cudatoolkit.name}-unsplit"; 15 paths = [ cudatoolkit.out cudatoolkit.lib ];
··· 6 , symlinkJoin 7 8 , cudaSupport 9 + , cudaPackages ? {} 10 }: 11 let 12 + inherit (cudaPackages) cudatoolkit cudnn; 13 + 14 cudatoolkit_joined = symlinkJoin { 15 name = "${cudatoolkit.name}-unsplit"; 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 }: 2 3 assert let majorIs = lib.versions.major cudatoolkit.version; 4 in majorIs == "9" || majorIs == "10" || majorIs == "11";
··· 1 + { lib, stdenv, fetchurl, cmake, gfortran, ninja, cudaPackages, libpthreadstubs, lapack, blas }: 2 + 3 + let 4 + inherit (cudaPackages) cudatoolkit; 5 + in 6 7 assert let majorIs = lib.versions.major cudatoolkit.version; 8 in majorIs == "9" || majorIs == "10" || majorIs == "11";
+4 -1
pkgs/development/libraries/science/math/tensorflow/bin.nix
··· 1 { lib, stdenv 2 , fetchurl 3 , addOpenGLRunpath 4 - , cudaSupport ? false, symlinkJoin, cudatoolkit, cudnn 5 }: 6 7 with lib; 8 let 9 broken = !stdenv.isLinux && !stdenv.isDarwin; 10 11 tfType = if cudaSupport then "gpu" else "cpu"; 12
··· 1 { lib, stdenv 2 , fetchurl 3 , addOpenGLRunpath 4 + , cudaSupport ? false, cudaPackages ? {} 5 + , symlinkJoin 6 }: 7 8 with lib; 9 let 10 broken = !stdenv.isLinux && !stdenv.isDarwin; 11 + 12 + inherit (cudaPackages) cudatoolkit cudnn; 13 14 tfType = if cudaSupport then "gpu" else "cpu"; 15
+1419 -1497
pkgs/development/node-packages/node-packages.nix
··· 58 sha512 = "7rHvIQLvfBYatq+oAy4dvi6Vf00gNVnvdhqR5a7gpav7qEPDpwOFY1pW5T9tKr32KZd4rcCwqVZgygEewnaP2A=="; 59 }; 60 }; 61 "@alexbosworth/html2unicode-1.1.5" = { 62 name = "_at_alexbosworth_slash_html2unicode"; 63 packageName = "@alexbosworth/html2unicode"; ··· 103 sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="; 104 }; 105 }; 106 - "@angular-devkit/architect-0.1303.1" = { 107 name = "_at_angular-devkit_slash_architect"; 108 packageName = "@angular-devkit/architect"; 109 - version = "0.1303.1"; 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.1.tgz"; 112 - sha512 = "ppaLzNZPrqrI96ddgm1RuEALVpWZsmHbIPLDd0GBwhF6aOkwF0LpZHd5XyS4ktGFZPReiFIjWSVtqV5vaBdRsw=="; 113 }; 114 }; 115 - "@angular-devkit/core-13.3.0" = { 116 name = "_at_angular-devkit_slash_core"; 117 packageName = "@angular-devkit/core"; 118 - version = "13.3.0"; 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.0.tgz"; 121 - sha512 = "8YrreVbWlJVZnk5zs4vfkRItrPEtWhUcxWOBfYT/Kwu4FwJVAnNuhJAxxXOAQ2Ckd7cv30Idh/RFVLbTZ5Gs9w=="; 122 }; 123 }; 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" = { 134 name = "_at_angular-devkit_slash_schematics"; 135 packageName = "@angular-devkit/schematics"; 136 - version = "13.3.0"; 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.0.tgz"; 139 - sha512 = "hq7tqnB3uVT/iDgqWWZ4kvnijeAcgd4cfLzZiCPaYn1nuhZf0tWsho6exhJ/odMZHvVp7w8OibqWiUKxNY9zHA=="; 140 }; 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" = { 152 name = "_at_angular-devkit_slash_schematics-cli"; 153 packageName = "@angular-devkit/schematics-cli"; 154 - version = "13.3.0"; 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-13.3.0.tgz"; 157 - sha512 = "DXT+k4228Ke1zCoU9QxPhXm1xzeYBs5aqgMWhyjXdkfDokJcjQM79CSVLHdKX/OLgR51qhnQ5qVFEHHhVV40EQ=="; 158 }; 159 }; 160 "@antora/asciidoc-loader-3.0.1" = { ··· 1210 sha512 = "p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ=="; 1211 }; 1212 }; 1213 - "@babel/core-7.17.8" = { 1214 name = "_at_babel_slash_core"; 1215 packageName = "@babel/core"; 1216 - version = "7.17.8"; 1217 src = fetchurl { 1218 - url = "https://registry.npmjs.org/@babel/core/-/core-7.17.8.tgz"; 1219 - sha512 = "OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ=="; 1220 }; 1221 }; 1222 "@babel/core-7.9.0" = { ··· 1228 sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w=="; 1229 }; 1230 }; 1231 - "@babel/generator-7.17.7" = { 1232 name = "_at_babel_slash_generator"; 1233 packageName = "@babel/generator"; 1234 - version = "7.17.7"; 1235 src = fetchurl { 1236 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.7.tgz"; 1237 - sha512 = "oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w=="; 1238 }; 1239 }; 1240 "@babel/helper-annotate-as-pure-7.16.7" = { ··· 1264 sha512 = "UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w=="; 1265 }; 1266 }; 1267 - "@babel/helper-create-class-features-plugin-7.17.6" = { 1268 name = "_at_babel_slash_helper-create-class-features-plugin"; 1269 packageName = "@babel/helper-create-class-features-plugin"; 1270 - version = "7.17.6"; 1271 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=="; 1274 }; 1275 }; 1276 "@babel/helper-create-regexp-features-plugin-7.17.0" = { ··· 1309 sha512 = "KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ=="; 1310 }; 1311 }; 1312 - "@babel/helper-function-name-7.16.7" = { 1313 name = "_at_babel_slash_helper-function-name"; 1314 packageName = "@babel/helper-function-name"; 1315 - version = "7.16.7"; 1316 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=="; 1328 }; 1329 }; 1330 "@babel/helper-hoist-variables-7.16.7" = { ··· 1453 sha512 = "8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw=="; 1454 }; 1455 }; 1456 - "@babel/helpers-7.17.8" = { 1457 name = "_at_babel_slash_helpers"; 1458 packageName = "@babel/helpers"; 1459 - version = "7.17.8"; 1460 src = fetchurl { 1461 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.8.tgz"; 1462 - sha512 = "QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw=="; 1463 }; 1464 }; 1465 - "@babel/highlight-7.16.10" = { 1466 name = "_at_babel_slash_highlight"; 1467 packageName = "@babel/highlight"; 1468 - version = "7.16.10"; 1469 src = fetchurl { 1470 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz"; 1471 - sha512 = "5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw=="; 1472 }; 1473 }; 1474 "@babel/node-7.16.8" = { ··· 1489 sha512 = "RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw=="; 1490 }; 1491 }; 1492 - "@babel/parser-7.17.8" = { 1493 name = "_at_babel_slash_parser"; 1494 packageName = "@babel/parser"; 1495 - version = "7.17.8"; 1496 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.8.tgz"; 1498 - sha512 = "BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ=="; 1499 }; 1500 }; 1501 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" = { ··· 1993 sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g=="; 1994 }; 1995 }; 1996 - "@babel/plugin-transform-modules-commonjs-7.17.7" = { 1997 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 1998 packageName = "@babel/plugin-transform-modules-commonjs"; 1999 - version = "7.17.7"; 2000 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=="; 2003 }; 2004 }; 2005 "@babel/plugin-transform-modules-systemjs-7.17.8" = { ··· 2101 sha512 = "hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA=="; 2102 }; 2103 }; 2104 - "@babel/plugin-transform-regenerator-7.16.7" = { 2105 name = "_at_babel_slash_plugin-transform-regenerator"; 2106 packageName = "@babel/plugin-transform-regenerator"; 2107 - version = "7.16.7"; 2108 src = fetchurl { 2109 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz"; 2110 - sha512 = "mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q=="; 2111 }; 2112 }; 2113 "@babel/plugin-transform-reserved-words-7.16.7" = { ··· 2281 sha512 = "aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA=="; 2282 }; 2283 }; 2284 - "@babel/runtime-7.17.8" = { 2285 name = "_at_babel_slash_runtime"; 2286 packageName = "@babel/runtime"; 2287 - version = "7.17.8"; 2288 src = fetchurl { 2289 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.8.tgz"; 2290 - sha512 = "dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA=="; 2291 }; 2292 }; 2293 "@babel/runtime-7.9.0" = { ··· 2299 sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA=="; 2300 }; 2301 }; 2302 - "@babel/runtime-corejs3-7.17.8" = { 2303 name = "_at_babel_slash_runtime-corejs3"; 2304 packageName = "@babel/runtime-corejs3"; 2305 - version = "7.17.8"; 2306 src = fetchurl { 2307 - url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.17.8.tgz"; 2308 - sha512 = "ZbYSUvoSF6dXZmMl/CYTMOvzIFnbGfv4W3SEHYgMvNsFTeLaF2gkGAF4K2ddmtSK4Emej+0aYcnSC6N5dPCXUQ=="; 2309 }; 2310 }; 2311 "@babel/template-7.16.7" = { ··· 2317 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 2318 }; 2319 }; 2320 - "@babel/traverse-7.17.3" = { 2321 name = "_at_babel_slash_traverse"; 2322 packageName = "@babel/traverse"; 2323 - version = "7.17.3"; 2324 src = fetchurl { 2325 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz"; 2326 - sha512 = "5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw=="; 2327 }; 2328 }; 2329 "@babel/types-7.16.0" = { ··· 2344 sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; 2345 }; 2346 }; 2347 - "@blueprintjs/colors-4.0.2" = { 2348 name = "_at_blueprintjs_slash_colors"; 2349 packageName = "@blueprintjs/colors"; 2350 - version = "4.0.2"; 2351 src = fetchurl { 2352 - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.2.tgz"; 2353 - sha512 = "+luoTHBcdUD5y5SGCxk9CAHPfa9WeGdHuTRGABFanoyXZwrtzh5a8hlN/g3B5xeseGdoz50uMtmeanF8Atx0fg=="; 2354 }; 2355 }; 2356 "@blueprintjs/core-3.54.0" = { ··· 2695 sha512 = "NKz7pDZ7pwj/b33i3f4WLpC1rOOUMmENwYgftxU+giU2YBeKM2wZbMTSEIzsrel56r0UlQYmdIVlP/B4nnVaoQ=="; 2696 }; 2697 }; 2698 - "@cspell/dict-bash-2.0.1" = { 2699 name = "_at_cspell_slash_dict-bash"; 2700 packageName = "@cspell/dict-bash"; 2701 - version = "2.0.1"; 2702 src = fetchurl { 2703 - url = "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-2.0.1.tgz"; 2704 - sha512 = "pBx3T/5w7fPF8XD5cx3NwtRFvNpQYmYqzM043NKP2hDmlx4uFwbH599Lvt5mwCMZKfIoRXaNUQvq7se2gstQjw=="; 2705 }; 2706 }; 2707 "@cspell/dict-companies-2.0.3" = { ··· 2713 sha512 = "O622rMAaHm85AmqNyMki5je8HB/1XlTKbGOXh2UUhooI5qdgdfrjTQ6VBuHwHrfEfuODBHYTNYXVB2m23XqHCg=="; 2714 }; 2715 }; 2716 - "@cspell/dict-cpp-2.0.0" = { 2717 name = "_at_cspell_slash_dict-cpp"; 2718 packageName = "@cspell/dict-cpp"; 2719 - version = "2.0.0"; 2720 src = fetchurl { 2721 - url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-2.0.0.tgz"; 2722 - sha512 = "EflHLs2pHEEXZM6jPfTGR/KHZKQtJlvzqgkg1zaA1YKv5HQNw9Wy5KVPGEV2bjPcFsZJO3xXjO1KBZcoOPjPmA=="; 2723 }; 2724 }; 2725 "@cspell/dict-cryptocurrencies-2.0.0" = { ··· 3694 sha512 = "+WoaAaoYx/wfkrz1Ag40JqHvDUFfQcg+dQ3jaEOoau16y7EZGIe7oN8WYIXNMgWuMxH7r1QlanFbQZ+ziKjHmw=="; 3695 }; 3696 }; 3697 - "@fluentui/react-8.64.0" = { 3698 name = "_at_fluentui_slash_react"; 3699 packageName = "@fluentui/react"; 3700 - version = "8.64.0"; 3701 src = fetchurl { 3702 - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.64.0.tgz"; 3703 - sha512 = "ykO3VHQVQL6IUAXnp5No38fMqG5XOqjP0bNOv5klCYelfF0bnDdbzmT+nHMorq+SKqaHnbnryO+OQuXDmyujCQ=="; 3704 }; 3705 }; 3706 "@fluentui/react-focus-8.5.6" = { ··· 3883 sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg=="; 3884 }; 3885 }; 3886 - "@graphql-tools/batch-execute-8.4.1" = { 3887 name = "_at_graphql-tools_slash_batch-execute"; 3888 packageName = "@graphql-tools/batch-execute"; 3889 - version = "8.4.1"; 3890 src = fetchurl { 3891 - url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.1.tgz"; 3892 - sha512 = "63+lNWrwXmofjZVa7ML+n9CBviClF3K+RP3Xx3hxGQ8BrhvB1pWS1yzaUZqrkiiKdTu1v3mJGVfmooHwzlyPwQ=="; 3893 }; 3894 }; 3895 "@graphql-tools/delegate-7.1.5" = { ··· 3901 sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; 3902 }; 3903 }; 3904 - "@graphql-tools/delegate-8.7.1" = { 3905 name = "_at_graphql-tools_slash_delegate"; 3906 packageName = "@graphql-tools/delegate"; 3907 - version = "8.7.1"; 3908 src = fetchurl { 3909 - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.1.tgz"; 3910 - sha512 = "e98/NRaOH5wQy624bRd5i5qUKz5tCs8u4xBmxW89d7t6V6CveXj7pvAgmnR9DbwOkO6IA3P799p/aa/YG/pWTA=="; 3911 }; 3912 }; 3913 "@graphql-tools/graphql-file-loader-6.2.7" = { ··· 3919 sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; 3920 }; 3921 }; 3922 - "@graphql-tools/graphql-file-loader-7.3.7" = { 3923 name = "_at_graphql-tools_slash_graphql-file-loader"; 3924 packageName = "@graphql-tools/graphql-file-loader"; 3925 - version = "7.3.7"; 3926 src = fetchurl { 3927 - url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.7.tgz"; 3928 - sha512 = "fwXLycYvabPhusGtYuFrOPbjeIvLWr6viGkQc9KmiBm2Z2kZrlNRNUlYkXXRzMoiqRkzqFJYhOgWDE7LsOnbjw=="; 3929 }; 3930 }; 3931 - "@graphql-tools/import-6.6.9" = { 3932 name = "_at_graphql-tools_slash_import"; 3933 packageName = "@graphql-tools/import"; 3934 - version = "6.6.9"; 3935 src = fetchurl { 3936 - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.9.tgz"; 3937 - sha512 = "sKaLqvPmNLQlY4te+nnBhRrf5WBISoiyVkbriCLz0kHw805iHdJaU2KxUoHsRTR7WlYq0g9gzB0oVaRh99Q5aA=="; 3938 }; 3939 }; 3940 "@graphql-tools/json-file-loader-6.2.6" = { ··· 3946 sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA=="; 3947 }; 3948 }; 3949 - "@graphql-tools/json-file-loader-7.3.7" = { 3950 name = "_at_graphql-tools_slash_json-file-loader"; 3951 packageName = "@graphql-tools/json-file-loader"; 3952 - version = "7.3.7"; 3953 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=="; 3956 }; 3957 }; 3958 "@graphql-tools/load-6.2.4" = { ··· 3964 sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; 3965 }; 3966 }; 3967 - "@graphql-tools/load-7.5.6" = { 3968 name = "_at_graphql-tools_slash_load"; 3969 packageName = "@graphql-tools/load"; 3970 - version = "7.5.6"; 3971 src = fetchurl { 3972 - url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.6.tgz"; 3973 - sha512 = "IocEP4METGdbDzV44VaeiXO387NOYSW4cTuBP8qybHZX0XlIp8bEv7c8GKS3m8DeRop/9SnOL7HyiAfNMA4Chg=="; 3974 }; 3975 }; 3976 "@graphql-tools/merge-6.2.17" = { ··· 3982 sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow=="; 3983 }; 3984 }; 3985 - "@graphql-tools/merge-8.2.6" = { 3986 name = "_at_graphql-tools_slash_merge"; 3987 packageName = "@graphql-tools/merge"; 3988 - version = "8.2.6"; 3989 src = fetchurl { 3990 - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.6.tgz"; 3991 - sha512 = "dkwTm4czMISi/Io47IVvq2Fl9q4TIGKpJ0VZjuXYdEFkECyH6A5uwxZfPVandZG+gQs8ocFFoa6RisiUJLZrJw=="; 3992 }; 3993 }; 3994 "@graphql-tools/schema-7.1.5" = { ··· 4000 sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA=="; 4001 }; 4002 }; 4003 - "@graphql-tools/schema-8.3.6" = { 4004 name = "_at_graphql-tools_slash_schema"; 4005 packageName = "@graphql-tools/schema"; 4006 - version = "8.3.6"; 4007 src = fetchurl { 4008 - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.6.tgz"; 4009 - sha512 = "7tWYRQ8hB/rv2zAtv2LtnQl4UybyJPtRz/VLKRmgi7+F5t8iYBahmmsxMDAYMWMmWMqEDiKk54TvAes+J069rQ=="; 4010 }; 4011 }; 4012 "@graphql-tools/url-loader-6.10.1" = { ··· 4018 sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; 4019 }; 4020 }; 4021 - "@graphql-tools/url-loader-7.9.8" = { 4022 name = "_at_graphql-tools_slash_url-loader"; 4023 packageName = "@graphql-tools/url-loader"; 4024 - version = "7.9.8"; 4025 src = fetchurl { 4026 - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.8.tgz"; 4027 - sha512 = "nRMXwwoIDLt7ohBWvKKjEEH61YS1nnWs6BVgGStePfmRGrhxECpLWmfAmKLNXPqDJN7Nu6ykFJYjt65j5l6qsw=="; 4028 }; 4029 }; 4030 "@graphql-tools/utils-6.2.4" = { ··· 4054 sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ=="; 4055 }; 4056 }; 4057 - "@graphql-tools/utils-8.6.5" = { 4058 name = "_at_graphql-tools_slash_utils"; 4059 packageName = "@graphql-tools/utils"; 4060 - version = "8.6.5"; 4061 src = fetchurl { 4062 - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.5.tgz"; 4063 - sha512 = "mjOtaWiS2WIqRz/cq5gaeM3sVrllcu2xbtHROw1su1v3xWa3D3dKgn8Lrl7+tvWs5WUVySsBss/VZ3WdoPkCrA=="; 4064 }; 4065 }; 4066 "@graphql-tools/wrap-7.0.8" = { ··· 4072 sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; 4073 }; 4074 }; 4075 - "@graphql-tools/wrap-8.4.10" = { 4076 name = "_at_graphql-tools_slash_wrap"; 4077 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"; 4088 src = fetchurl { 4089 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.4.4.tgz"; 4090 - sha512 = "a6222b7Dl6fIlMgzVl7e+NiRoLiZFbpcwvBH2Oli56Bn7W4/3Ld+86hK4ffPn5rx2DlDidmIcvIJiOQXyhv9gA=="; 4091 }; 4092 }; 4093 "@grpc/grpc-js-1.5.10" = { ··· 4099 sha512 = "++oAubX/7rJzlqH0ShyzDENNNDHYrlttdc3NM40KlaVQDcgGqQknuPoavmyTC+oNUDyxPCX5dHceKhfcgN3tiw=="; 4100 }; 4101 }; 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 "@grpc/grpc-js-1.5.7" = { 4112 name = "_at_grpc_slash_grpc-js"; 4113 packageName = "@grpc/grpc-js"; ··· 4126 sha512 = "ix3rQS64rKL1s6CfIaRgnts+RNYZZ2NaYyTK7iimai6an/0GGDbukzy990hJ5vtKHjhaqJxJMB6Qq7BMZ0zZSQ=="; 4127 }; 4128 }; 4129 - "@grpc/proto-loader-0.6.6" = { 4130 - name = "_at_grpc_slash_proto-loader"; 4131 - packageName = "@grpc/proto-loader"; 4132 - version = "0.6.6"; 4133 src = fetchurl { 4134 - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.6.tgz"; 4135 - sha512 = "cdMaPZ8AiFz6ua6PUbP+LKbhwJbFXnrQ/mlnKGUyzDUZ3wp7vPLksnmLCBX6SHgSmjX7CbNVNLFYD5GmmjO4GQ=="; 4136 }; 4137 }; 4138 "@grpc/proto-loader-0.6.9" = { ··· 5755 sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; 5756 }; 5757 }; 5758 - "@microsoft/load-themed-styles-1.10.250" = { 5759 name = "_at_microsoft_slash_load-themed-styles"; 5760 packageName = "@microsoft/load-themed-styles"; 5761 - version = "1.10.250"; 5762 src = fetchurl { 5763 - url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.250.tgz"; 5764 - sha512 = "uxn8ho0Wlc+JL8epCErwKIBK5ulva33VrabPbqPM1A770RGdxfW0J9PhnaIDOlz9p2w4DeyNhcLXIZry2eOaBg=="; 5765 }; 5766 }; 5767 "@mitmaro/errors-1.0.0" = { ··· 5818 sha512 = "BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg=="; 5819 }; 5820 }; 5821 - "@nestjs/schematics-8.0.9" = { 5822 name = "_at_nestjs_slash_schematics"; 5823 packageName = "@nestjs/schematics"; 5824 - version = "8.0.9"; 5825 src = fetchurl { 5826 - url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.9.tgz"; 5827 - sha512 = "2YNRFWyQCxKaK7XTKBRKecERKQj2cg9FLxsHwAf9beryXxVmciTmHV0gHCW7Pfatj38R50QFGPN71wuyyZIC5g=="; 5828 }; 5829 }; 5830 "@netflix/nerror-1.1.3" = { ··· 6106 sha512 = "/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw=="; 6107 }; 6108 }; 6109 - "@npmcli/git-3.0.0" = { 6110 name = "_at_npmcli_slash_git"; 6111 packageName = "@npmcli/git"; 6112 - version = "3.0.0"; 6113 src = fetchurl { 6114 - url = "https://registry.npmjs.org/@npmcli/git/-/git-3.0.0.tgz"; 6115 - sha512 = "xfSBJ+KBMZWWqRHFbEgIaXG/LtELHrQZMJ72Gkb3yWdHysu/7+VGOs8ME0c3td7QNQX57Ggo3kYL6ylcd70/kA=="; 6116 }; 6117 }; 6118 "@npmcli/installed-package-contents-1.0.7" = { ··· 6151 sha512 = "1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="; 6152 }; 6153 }; 6154 "@npmcli/name-from-folder-1.0.1" = { 6155 name = "_at_npmcli_slash_name-from-folder"; 6156 packageName = "@npmcli/name-from-folder"; ··· 6169 sha512 = "fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA=="; 6170 }; 6171 }; 6172 "@npmcli/package-json-1.0.1" = { 6173 name = "_at_npmcli_slash_package-json"; 6174 packageName = "@npmcli/package-json"; ··· 6185 src = fetchurl { 6186 url = "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz"; 6187 sha512 = "QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg=="; 6188 }; 6189 }; 6190 "@npmcli/run-script-1.8.6" = { ··· 6205 sha512 = "fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig=="; 6206 }; 6207 }; 6208 - "@npmcli/run-script-3.0.1" = { 6209 name = "_at_npmcli_slash_run-script"; 6210 packageName = "@npmcli/run-script"; 6211 - version = "3.0.1"; 6212 src = fetchurl { 6213 - url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-3.0.1.tgz"; 6214 - sha512 = "o2fkld5hYwu9sKYzoXTpqEocMnDLaigobaPzLaGB63k/ExmLBTaB+KpfKlpcIePPnuP8RFR+0GDI4KopJCM6Xg=="; 6215 }; 6216 }; 6217 "@oclif/command-1.8.0" = { ··· 6925 sha512 = "h2FvqLA75ZQdIXX1y+ylGjIIi7YtbAUJyIapxaO081h3EsYG2jr9sRL4sym5ECgmvbyua/DEgtMLX3eGYn09FA=="; 6926 }; 6927 }; 6928 - "@parcel/css-1.7.4" = { 6929 name = "_at_parcel_slash_css"; 6930 packageName = "@parcel/css"; 6931 - version = "1.7.4"; 6932 src = fetchurl { 6933 - url = "https://registry.npmjs.org/@parcel/css/-/css-1.7.4.tgz"; 6934 - sha512 = "K1N9mxEkWQQmSINMNuGvlyPq7yCY+AtHskGxWav97lhu2i8GMMXRV9kc8/x/jkZh5KDBWO5vHhdQiujRBrgR8g=="; 6935 }; 6936 }; 6937 - "@parcel/css-darwin-arm64-1.7.4" = { 6938 name = "_at_parcel_slash_css-darwin-arm64"; 6939 packageName = "@parcel/css-darwin-arm64"; 6940 - version = "1.7.4"; 6941 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=="; 6944 }; 6945 }; 6946 - "@parcel/css-darwin-x64-1.7.4" = { 6947 name = "_at_parcel_slash_css-darwin-x64"; 6948 packageName = "@parcel/css-darwin-x64"; 6949 - version = "1.7.4"; 6950 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=="; 6953 }; 6954 }; 6955 - "@parcel/css-linux-arm-gnueabihf-1.7.4" = { 6956 name = "_at_parcel_slash_css-linux-arm-gnueabihf"; 6957 packageName = "@parcel/css-linux-arm-gnueabihf"; 6958 - version = "1.7.4"; 6959 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=="; 6962 }; 6963 }; 6964 - "@parcel/css-linux-arm64-gnu-1.7.4" = { 6965 name = "_at_parcel_slash_css-linux-arm64-gnu"; 6966 packageName = "@parcel/css-linux-arm64-gnu"; 6967 - version = "1.7.4"; 6968 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=="; 6971 }; 6972 }; 6973 - "@parcel/css-linux-arm64-musl-1.7.4" = { 6974 name = "_at_parcel_slash_css-linux-arm64-musl"; 6975 packageName = "@parcel/css-linux-arm64-musl"; 6976 - version = "1.7.4"; 6977 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=="; 6980 }; 6981 }; 6982 - "@parcel/css-linux-x64-gnu-1.7.4" = { 6983 name = "_at_parcel_slash_css-linux-x64-gnu"; 6984 packageName = "@parcel/css-linux-x64-gnu"; 6985 - version = "1.7.4"; 6986 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=="; 6989 }; 6990 }; 6991 - "@parcel/css-linux-x64-musl-1.7.4" = { 6992 name = "_at_parcel_slash_css-linux-x64-musl"; 6993 packageName = "@parcel/css-linux-x64-musl"; 6994 - version = "1.7.4"; 6995 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=="; 6998 }; 6999 }; 7000 - "@parcel/css-win32-x64-msvc-1.7.4" = { 7001 name = "_at_parcel_slash_css-win32-x64-msvc"; 7002 packageName = "@parcel/css-win32-x64-msvc"; 7003 - version = "1.7.4"; 7004 src = fetchurl { 7005 - url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.7.4.tgz"; 7006 - sha512 = "xmg18iISCn1f9IyYUif6yR8FuEmi93qzH55oUiri5vZWuCY8xfraHsRA6i8yLWnxgDmVeHyiN0IICl7rgZo10A=="; 7007 }; 7008 }; 7009 "@parcel/diagnostic-2.4.1" = { ··· 7780 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 7781 }; 7782 }; 7783 - "@schematics/angular-13.3.1" = { 7784 name = "_at_schematics_slash_angular"; 7785 packageName = "@schematics/angular"; 7786 - version = "13.3.1"; 7787 src = fetchurl { 7788 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.1.tgz"; 7789 - sha512 = "+lrK/d1eJsAK6d6E9TDeg3Vc71bDy1KsE8M+lEINdX9Wax22mAz4pw20X9RSCw5RHgn+XcNUuMsgRJAwVhDNpg=="; 7790 }; 7791 }; 7792 "@segment/loosely-validate-event-2.0.0" = { ··· 9436 sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="; 9437 }; 9438 }; 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 "@types/node-17.0.21" = { 9458 name = "_at_types_slash_node"; 9459 packageName = "@types/node"; ··· 9553 sha512 = "Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ=="; 9554 }; 9555 }; 9556 - "@types/prop-types-15.7.4" = { 9557 name = "_at_types_slash_prop-types"; 9558 packageName = "@types/prop-types"; 9559 - version = "15.7.4"; 9560 src = fetchurl { 9561 - url = "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz"; 9562 - sha512 = "rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="; 9563 }; 9564 }; 9565 "@types/pug-2.0.6" = { ··· 9650 src = fetchurl { 9651 url = "https://registry.npmjs.org/@types/react-window-infinite-loader/-/react-window-infinite-loader-1.0.6.tgz"; 9652 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 }; 9663 }; 9664 "@types/request-2.48.8" = { ··· 10073 src = fetchurl { 10074 url = "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz"; 10075 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 }; 10095 }; 10096 "@types/ws-8.5.2" = { ··· 11108 src = fetchurl { 11109 url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz"; 11110 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 }; 11121 }; 11122 "@xmldom/xmldom-0.8.2" = { ··· 13936 sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; 13937 }; 13938 }; 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 "async-3.2.3" = { 13949 name = "async"; 13950 packageName = "async"; ··· 14107 sha1 = "1e762817d849ce44bfac07925a42036787061b15"; 14108 }; 14109 }; 14110 - "asyncjs-util-1.2.7" = { 14111 name = "asyncjs-util"; 14112 packageName = "asyncjs-util"; 14113 - version = "1.2.7"; 14114 src = fetchurl { 14115 - url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.7.tgz"; 14116 - sha512 = "+NoBU9in09GHOWgRv+HhF3kDxqgJ6KowRA7xwHZKxajnh+ybBJhp24i2nOyulZtpdn+4eyrfLvTD6VoRk7TWyQ=="; 14117 }; 14118 }; 14119 - "asyncjs-util-1.2.8" = { 14120 name = "asyncjs-util"; 14121 packageName = "asyncjs-util"; 14122 - version = "1.2.8"; 14123 src = fetchurl { 14124 - url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.8.tgz"; 14125 - sha512 = "wUcEKoAxBWWNE1wXkoIvIyM1vVDfvItYXANYTgwemeRL8FgV6z70XdLGLBMty0WiQSub0fBuKIyF+Hz3DCahOg=="; 14126 }; 14127 }; 14128 "asynckit-0.4.0" = { ··· 14305 sha512 = "fChMDiSfWcW0EUWmiqlyc+VAIXKH0w7BBruL3cVWSwO+5oA5A9juGF4NCBV2/KAHzaKaG0hXKPE49Wh6Lq74ag=="; 14306 }; 14307 }; 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" = { 14318 name = "aws-sdk"; 14319 packageName = "aws-sdk"; 14320 - version = "2.1108.0"; 14321 src = fetchurl { 14322 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1108.0.tgz"; 14323 - sha512 = "BpoHW6vk8cXQDf0M+j7LSti7db4vIWocfUDTFbmkOT0hH9pR3f4IDzbnGzGmlka6IOFWkb9sVHl+P5S2meswOg=="; 14324 }; 14325 }; 14326 "aws-sign2-0.6.0" = { ··· 14728 sha512 = "Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A=="; 14729 }; 14730 }; 14731 - "babel-plugin-styled-components-2.0.6" = { 14732 name = "babel-plugin-styled-components"; 14733 packageName = "babel-plugin-styled-components"; 14734 - version = "2.0.6"; 14735 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=="; 14738 }; 14739 }; 14740 "babel-plugin-syntax-flow-6.18.0" = { ··· 15754 sha512 = "O1htyufFTYy3EO0JkHg2CLykdXEtV2ssqw47Gq9A0WByp662xpJnMEB9m43LZjsSDjIAOozWRExlFQk2hlV1XQ=="; 15755 }; 15756 }; 15757 - "bipf-1.6.1" = { 15758 name = "bipf"; 15759 packageName = "bipf"; 15760 - version = "1.6.1"; 15761 src = fetchurl { 15762 - url = "https://registry.npmjs.org/bipf/-/bipf-1.6.1.tgz"; 15763 - sha512 = "wsn3ickoiYgUn9Bd0JUTPnpJemEcjWtXkMLLQyNVhrnKhRxKhma8Gq/DoB1Di8GUcHhgeEVH+PQT2C/JRFpOgw=="; 15764 }; 15765 }; 15766 "bit-field-1.5.3" = { ··· 15788 src = fetchurl { 15789 url = "https://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-5.2.0.tgz"; 15790 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 }; 15801 }; 15802 "bitcoinjs-lib-6.0.1" = { ··· 16285 sha512 = "zEvNSymgMeMMeFwWmwpklFoN/OJA3YO/pVgFTBV3TVq5ulfS0+mVKEGfeInEQESoaSVK1dsVPGr2RLD22uH/aQ=="; 16286 }; 16287 }; 16288 - "bolt03-1.2.13" = { 16289 - name = "bolt03"; 16290 - packageName = "bolt03"; 16291 - version = "1.2.13"; 16292 src = fetchurl { 16293 - url = "https://registry.npmjs.org/bolt03/-/bolt03-1.2.13.tgz"; 16294 - sha512 = "7KfDXG9JsWwMWZxYSYkP9Ga9vC3JQHvEcIZio4m/edNPAvgSiUCadNPaEjUI9gGeGaRa1RatYg33arBKr4Y3+A=="; 16295 }; 16296 }; 16297 - "bolt07-1.7.4" = { 16298 - name = "bolt07"; 16299 - packageName = "bolt07"; 16300 - version = "1.7.4"; 16301 src = fetchurl { 16302 - url = "https://registry.npmjs.org/bolt07/-/bolt07-1.7.4.tgz"; 16303 - sha512 = "y82Na9vEBY+rqjJhjYMFAch70nWvbL5OiEPFqNf7cGTtQfG7g/Vui2KnemrX1mxEw2SgccF+Rn1NSRm9HFtu3w=="; 16304 }; 16305 }; 16306 "bolt07-1.8.0" = { ··· 16312 sha512 = "UJq+p94UK9QsU3P1npJyWF3r8TuJd6kv6P4m656VQK/m5ifw0bWCkYF0ngcHbFGq3j8u3gP8/tkGtB8WwPPRbQ=="; 16313 }; 16314 }; 16315 - "bolt09-0.2.0" = { 16316 - name = "bolt09"; 16317 - packageName = "bolt09"; 16318 - version = "0.2.0"; 16319 src = fetchurl { 16320 - url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.0.tgz"; 16321 - sha512 = "s6QWo7qqu6fKGLISGMSG+vFxIRzeUT3KQHDiHpvhflyI3TQD6zdaMu4fEpP7PoyMFJt2Ve26SBvvRP3MM7V0bw=="; 16322 }; 16323 }; 16324 "bolt09-0.2.1" = { ··· 16337 src = fetchurl { 16338 url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.2.tgz"; 16339 sha512 = "m533YWZ/R/p1buxEK/19v94Ay1vS1PJNwfP30BCVj6l96NGpOa9t40HYuMpoX+xFYwOx8kZs+GGTb9TbJund0w=="; 16340 }; 16341 }; 16342 "bonjour-3.5.0" = { ··· 17600 sha512 = "VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ=="; 17601 }; 17602 }; 17603 - "cacache-16.0.3" = { 17604 name = "cacache"; 17605 packageName = "cacache"; 17606 - version = "16.0.3"; 17607 src = fetchurl { 17608 - url = "https://registry.npmjs.org/cacache/-/cacache-16.0.3.tgz"; 17609 - sha512 = "eC7wYodNCVb97kuHGk5P+xZsvUJHkhSEOyNwkenqQPAsOtrTjvWOE5vSPNBpz9d8X3acIf6w2Ub5s4rvOCTs4g=="; 17610 }; 17611 }; 17612 "cache-base-1.0.1" = { ··· 18167 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 18168 }; 18169 }; 18170 - "cdk8s-1.5.62" = { 18171 name = "cdk8s"; 18172 packageName = "cdk8s"; 18173 - version = "1.5.62"; 18174 src = fetchurl { 18175 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.62.tgz"; 18176 - sha512 = "zspC9PLbuRVlDp+D9mhnqiBD3d4TAcgiIU0E12B6paJUM9gZaJEOi5q/DQcoGXa0AbnnGbSjmd+b0BgHFQJTGg=="; 18177 }; 18178 }; 18179 - "cdk8s-plus-22-1.0.0-beta.180" = { 18180 name = "cdk8s-plus-22"; 18181 packageName = "cdk8s-plus-22"; 18182 - version = "1.0.0-beta.180"; 18183 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=="; 18186 }; 18187 }; 18188 "cdktf-0.10.1" = { ··· 20831 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 20832 }; 20833 }; 20834 - "constructs-10.0.106" = { 20835 name = "constructs"; 20836 packageName = "constructs"; 20837 - version = "10.0.106"; 20838 src = fetchurl { 20839 - url = "https://registry.npmjs.org/constructs/-/constructs-10.0.106.tgz"; 20840 - sha512 = "6k8z7O3q6UigE62QW/z34YcSqa1elCDEGz1rTwaMkiVjdL93mB6YLNCpC21FYVUbx+rauTdsQCD3ejVxdAmazg=="; 20841 }; 20842 }; 20843 - "constructs-3.3.259" = { 20844 name = "constructs"; 20845 packageName = "constructs"; 20846 - version = "3.3.259"; 20847 src = fetchurl { 20848 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.259.tgz"; 20849 - sha512 = "hI++shPkBPk8yPD/Af48B6nPmnZIXsKx2dnqDiqadoU0i7Z75/G/TqtLVF96h8XC4A6JkzQ89+CxJLpRTqwy8w=="; 20850 }; 20851 }; 20852 "consume-http-header-1.0.0" = { ··· 21496 src = fetchurl { 21497 url = "https://registry.npmjs.org/core_d/-/core_d-3.2.0.tgz"; 21498 sha512 = "waKkgHU2P19huhuMjCqCDWTYjxCIHoB+nnYjI7pVMUOC1giWxMNDrXkPw9QjWY+PWCFm49bD3wA/J+c7BGZ+og=="; 21499 }; 21500 }; 21501 "corestore-5.8.2" = { ··· 22623 sha512 = "4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw=="; 22624 }; 22625 }; 22626 - "d3-7.4.2" = { 22627 name = "d3"; 22628 packageName = "d3"; 22629 - version = "7.4.2"; 22630 src = fetchurl { 22631 - url = "https://registry.npmjs.org/d3/-/d3-7.4.2.tgz"; 22632 - sha512 = "7VK+QBAWtNDbP2EU/ThkXgjd0u1MsXYYgCK2ElQ4BBWh0usE75tHVVeYx47m2pqQEy4isYKAA0tAFSln0l+9EQ=="; 22633 }; 22634 }; 22635 "d3-array-1.2.4" = { ··· 22650 sha512 = "33qQ+ZoZlli19IFiQx4QEpf2CBEayMRzhlisJHSCsSUbDXv6ZishqS1x7uFVClKG4Wr7rZVHvaAttoLow6GqdQ=="; 22651 }; 22652 }; 22653 - "d3-array-3.1.4" = { 22654 name = "d3-array"; 22655 packageName = "d3-array"; 22656 - version = "3.1.4"; 22657 src = fetchurl { 22658 - url = "https://registry.npmjs.org/d3-array/-/d3-array-3.1.4.tgz"; 22659 - sha512 = "H8lM97Gr9+LAR4WVHETCMt6LlWtLJVMCKsz1ojors+/PvAs2QqdLa20BuYvU11/DU+nLF0GVWL5Rv3jSgo2KmA=="; 22660 }; 22661 }; 22662 "d3-axis-1.0.12" = { ··· 24810 sha512 = "6GfzuDWU0OFAuOvBokXpXPLxjOJ5DZ157Ue3sGQQM3LgAamb8m0R0ruSfN0DDu+XG5XJgT50i6zZ/0o8RglreQ=="; 24811 }; 24812 }; 24813 - "dezalgo-1.0.3" = { 24814 name = "dezalgo"; 24815 packageName = "dezalgo"; 24816 - version = "1.0.3"; 24817 src = fetchurl { 24818 - url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz"; 24819 - sha1 = "7f742de066fc748bc8db820569dddce49bf0d456"; 24820 }; 24821 }; 24822 "dht-rpc-4.9.6" = { ··· 25350 sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="; 25351 }; 25352 }; 25353 - "domelementtype-2.2.0" = { 25354 name = "domelementtype"; 25355 packageName = "domelementtype"; 25356 - version = "2.2.0"; 25357 src = fetchurl { 25358 - url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz"; 25359 - sha512 = "DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A=="; 25360 }; 25361 }; 25362 "domexception-1.0.1" = { ··· 25890 sha512 = "nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="; 25891 }; 25892 }; 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 "ecpair-2.0.1" = { 25903 name = "ecpair"; 25904 packageName = "ecpair"; ··· 26034 sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw=="; 26035 }; 26036 }; 26037 - "electron-to-chromium-1.4.103" = { 26038 name = "electron-to-chromium"; 26039 packageName = "electron-to-chromium"; 26040 - version = "1.4.103"; 26041 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=="; 26044 }; 26045 }; 26046 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 26792 sha1 = "5dae3e650e5be3684b88066513d528d092629862"; 26793 }; 26794 }; 26795 - "es5-ext-0.10.59" = { 26796 name = "es5-ext"; 26797 packageName = "es5-ext"; 26798 - version = "0.10.59"; 26799 src = fetchurl { 26800 - url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.59.tgz"; 26801 - sha512 = "cOgyhW0tIJyQY1Kfw6Kr0viu9ZlUctVchRMZ7R0HiH3dxTSp5zJDLecwxUqPUrGKMsgBI1wd1FL+d9Jxfi4cLw=="; 26802 }; 26803 }; 26804 "es6-error-4.1.1" = { ··· 28700 sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; 28701 }; 28702 }; 28703 - "fast-equals-3.0.0" = { 28704 name = "fast-equals"; 28705 packageName = "fast-equals"; 28706 - version = "3.0.0"; 28707 src = fetchurl { 28708 - url = "https://registry.npmjs.org/fast-equals/-/fast-equals-3.0.0.tgz"; 28709 - sha512 = "Af7nSOpf7617idrFg0MJY6x7yVDPoO80aSwtKTC0afT8B/SsmvTpA+2a+uPLmhVF5IHmY5NPuBAA3dJrp55rJA=="; 28710 }; 28711 }; 28712 "fast-fifo-1.1.0" = { ··· 29861 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 29862 }; 29863 }; 29864 - "flow-parser-0.175.0" = { 29865 name = "flow-parser"; 29866 packageName = "flow-parser"; 29867 - version = "0.175.0"; 29868 src = fetchurl { 29869 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.175.0.tgz"; 29870 - sha512 = "9XG5JGOjhODF+OQF5ufCw8XiGi+8B46scjr3Q49JxN7IDRdT2W+1AOuvKKd6j766/5E7qSuCn/dsq1y3hihntg=="; 29871 }; 29872 }; 29873 "fluent-ffmpeg-2.1.2" = { ··· 30149 sha512 = "DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw=="; 30150 }; 30151 }; 30152 - "fork-ts-checker-webpack-plugin-7.2.1" = { 30153 name = "fork-ts-checker-webpack-plugin"; 30154 packageName = "fork-ts-checker-webpack-plugin"; 30155 - version = "7.2.1"; 30156 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=="; 30159 }; 30160 }; 30161 "fork-ts-checker-webpack-plugin-v5-5.2.1" = { ··· 32040 sha1 = "2edeeb958084d0f8ea7988e5d995b1c7dfc14777"; 32041 }; 32042 }; 32043 - "goldengate-10.4.2" = { 32044 name = "goldengate"; 32045 packageName = "goldengate"; 32046 - version = "10.4.2"; 32047 src = fetchurl { 32048 - url = "https://registry.npmjs.org/goldengate/-/goldengate-10.4.2.tgz"; 32049 - sha512 = "VZ0VPPIuiSO5/ZZr/UqFP3X3Yv04/TZxIe+SO+Ceqy43ulthPZcnrWsB8hYW2gqZzOPJeVJaYaX9FmL70kYITw=="; 32050 }; 32051 }; 32052 - "goldengate-11.1.0" = { 32053 name = "goldengate"; 32054 packageName = "goldengate"; 32055 - version = "11.1.0"; 32056 src = fetchurl { 32057 - url = "https://registry.npmjs.org/goldengate/-/goldengate-11.1.0.tgz"; 32058 - sha512 = "nwrFxarqF2kxQXEzgcfvfqh64eokhcfyPl5i/RXGueRwUUSV7XW64A4BehcPcjKMKMxPM9RZarBTwa4vdnSZMA=="; 32059 }; 32060 }; 32061 "gonzales-pe-4.3.0" = { ··· 33867 sha1 = "c78de65b5663aa597989dd2b7ab49200d7e4db98"; 33868 }; 33869 }; 33870 - "html-tags-3.1.0" = { 33871 name = "html-tags"; 33872 packageName = "html-tags"; 33873 - version = "3.1.0"; 33874 src = fetchurl { 33875 - url = "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz"; 33876 - sha512 = "1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg=="; 33877 }; 33878 }; 33879 - "html-to-text-8.1.0" = { 33880 name = "html-to-text"; 33881 packageName = "html-to-text"; 33882 - version = "8.1.0"; 33883 src = fetchurl { 33884 - url = "https://registry.npmjs.org/html-to-text/-/html-to-text-8.1.0.tgz"; 33885 - sha512 = "Z9iYAqYK2c18GswSbnxJSeMs7lyJgwR2oIkDOyOHGBbYsPsG4HvT379jj3Lcbfko8A5ceyyMHAfkmp/BiXA9/Q=="; 33886 }; 33887 }; 33888 "html-void-elements-1.0.5" = { ··· 33939 sha512 = "jWTtP3dCd7R8x/tt9DK3pvpcQd7HDMcRPUqPxr/i9989q2k5RHIhmlRDFeyQ/LSd8IKrteG8Ce5g0Ig4eGIipg=="; 33940 }; 33941 }; 33942 - "htmlnano-2.0.1" = { 33943 name = "htmlnano"; 33944 packageName = "htmlnano"; 33945 - version = "2.0.1"; 33946 src = fetchurl { 33947 - url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.0.1.tgz"; 33948 - sha512 = "SIe/X2W5/9hmB4sFSw4HxQEMR1ERq+GXvasJQiatjKWEv6QCuvNHfPqeW8DRNtuGHOPlsfuFz0SbAStv63ZMvw=="; 33949 }; 33950 }; 33951 "htmlparser2-3.10.1" = { ··· 34794 sha512 = "rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw=="; 34795 }; 34796 }; 34797 "image-data-uri-2.0.1" = { 34798 name = "image-data-uri"; 34799 packageName = "image-data-uri"; ··· 35251 src = fetchurl { 35252 url = "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz"; 35253 sha512 = "7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA=="; 35254 }; 35255 }; 35256 "init-package-json-2.0.5" = { ··· 35757 sha512 = "CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw=="; 35758 }; 35759 }; 35760 - "invoices-2.0.1" = { 35761 name = "invoices"; 35762 packageName = "invoices"; 35763 - version = "2.0.1"; 35764 src = fetchurl { 35765 - url = "https://registry.npmjs.org/invoices/-/invoices-2.0.1.tgz"; 35766 - sha512 = "qd6Os70iotC/P09ArTWsXB3/G8MJRYMkrJQ1k2983kzdKVlROgWobKmdvrA/IFmjg0Ztg/wDkhx49dIQqT8PzQ=="; 35767 }; 35768 }; 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" = { 35788 name = "invoices"; 35789 packageName = "invoices"; 35790 - version = "2.0.4"; 35791 src = fetchurl { 35792 - url = "https://registry.npmjs.org/invoices/-/invoices-2.0.4.tgz"; 35793 - sha512 = "+Np4KWjNSlYm7Qp12zkRN5eu9tkA7FAFIP60bmpbMbwQbgz5gV9go3bkY8CpGj+Z1zifw5N8U+pH+wko/XSjpw=="; 35794 }; 35795 }; 35796 "iota-array-1.0.0" = { ··· 38494 sha512 = "ZUzuO2JgnxE01tgIdZorsUZj5jiHP8uxeLDU/vsnmnAU2ZbMHFDT1cWacoAKESDnCyFF8VRCuPXHx8e5/SOXig=="; 38495 }; 38496 }; 38497 - "jsii-srcmak-0.1.521" = { 38498 name = "jsii-srcmak"; 38499 packageName = "jsii-srcmak"; 38500 - version = "0.1.521"; 38501 src = fetchurl { 38502 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.521.tgz"; 38503 - sha512 = "cZv5C7kMUz+UZqZsZpmz+xDWZCC8VNJNRo/nO+1uuzKuBk1XRAvKOEiMI5E//tZqRuv2BXuyGIhyJOMrOpP4dg=="; 38504 }; 38505 }; 38506 "json-bigint-1.0.0" = { ··· 38791 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 38792 }; 38793 }; 38794 - "json2csv-5.0.6" = { 38795 name = "json2csv"; 38796 packageName = "json2csv"; 38797 - version = "5.0.6"; 38798 src = fetchurl { 38799 - url = "https://registry.npmjs.org/json2csv/-/json2csv-5.0.6.tgz"; 38800 - sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 38801 }; 38802 }; 38803 - "json2jsii-0.2.181" = { 38804 name = "json2jsii"; 38805 packageName = "json2jsii"; 38806 - version = "0.2.181"; 38807 src = fetchurl { 38808 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.181.tgz"; 38809 - sha512 = "pFUtkCYepbjES8GBuxzkHXEuQyx7CE2VZp6OouvjbrFYJTx3SbbDXmyPuk/ytiD2pPBblwlpb+9VOohxBxXZsQ=="; 38810 }; 38811 }; 38812 "json3-3.2.6" = { ··· 39160 sha1 = "b88f3a7b2e67a2a048152982c7a3756d9c4828f0"; 39161 }; 39162 }; 39163 - "jszip-3.9.0" = { 39164 name = "jszip"; 39165 packageName = "jszip"; 39166 - version = "3.9.0"; 39167 src = fetchurl { 39168 - url = "https://registry.npmjs.org/jszip/-/jszip-3.9.0.tgz"; 39169 - sha512 = "Vb3SMfASUN1EKrFzv5A5+lTaZnzLzT5E6A9zyT7WFqMSfhT2Z7iS5FgSOjx2Olm3MDj8OqKj6GHyP2kMt1Ir6w=="; 39170 }; 39171 }; 39172 "junk-3.1.0" = { ··· 39475 sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 39476 }; 39477 }; 39478 - "keyv-4.2.1" = { 39479 name = "keyv"; 39480 packageName = "keyv"; 39481 - version = "4.2.1"; 39482 src = fetchurl { 39483 - url = "https://registry.npmjs.org/keyv/-/keyv-4.2.1.tgz"; 39484 - sha512 = "cAJq5cTfxQdq1DHZEVNpnk4mEvhP+8UP8UQftLtTtJ98beKkRHf+62M0mIDM2u/IWXyP8bmGB375/6uGdSX2MA=="; 39485 }; 39486 }; 39487 "khroma-1.4.1" = { ··· 40339 sha512 = "BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA=="; 40340 }; 40341 }; 40342 - "lightning-4.14.3" = { 40343 name = "lightning"; 40344 packageName = "lightning"; 40345 - version = "4.14.3"; 40346 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=="; 40358 }; 40359 }; 40360 "lightning-5.8.2" = { ··· 40375 sha512 = "qiKxXH81vfxJdR1TbY095IKjD7kwbiWbdGcGHs1GMaAxxcGo/iqf5F+VDWHwGjSlPMohMI827vN0JHqZQKcojA=="; 40376 }; 40377 }; 40378 "lilconfig-2.0.5" = { 40379 name = "lilconfig"; 40380 packageName = "lilconfig"; ··· 40573 sha512 = "UmQV0oZZcV3EN6rjcAjIiuWcc3MYZGWQ0GUYz46Ron5fuTa/dUow7WSQa6leFkvZIKVUdECBWVw96tckfEzUFQ=="; 40574 }; 40575 }; 40576 - "ln-accounting-5.0.5" = { 40577 name = "ln-accounting"; 40578 packageName = "ln-accounting"; 40579 - version = "5.0.5"; 40580 src = fetchurl { 40581 - url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.5.tgz"; 40582 - sha512 = "WPAdlGE9byTrL79U4PrSV19fbOCmvWlRlGydt52qPy6CSrY1xkGe2s736ge3tjwNmcFDf4XSrxq7xn/oyF658w=="; 40583 }; 40584 }; 40585 - "ln-service-52.16.0" = { 40586 name = "ln-service"; 40587 packageName = "ln-service"; 40588 - version = "52.16.0"; 40589 src = fetchurl { 40590 - url = "https://registry.npmjs.org/ln-service/-/ln-service-52.16.0.tgz"; 40591 - sha512 = "20ZIPPyGI4odh/Jxq6Lawtc+Zx7MkPuxnn34TuhZpM6ppwVbSGJSuJPctLrhZvWdaYYeboz3BITiqI/o4KvChQ=="; 40592 }; 40593 }; 40594 - "ln-service-53.7.3" = { 40595 name = "ln-service"; 40596 packageName = "ln-service"; 40597 - version = "53.7.3"; 40598 src = fetchurl { 40599 - url = "https://registry.npmjs.org/ln-service/-/ln-service-53.7.3.tgz"; 40600 - sha512 = "iA+G0yn3j74BcGdKxhHRCDphMSgGg4NWzFNy9r484WPBjq6KQgCRcxE0I8A0Rgi73kqMckKZmYEKrJMUuJyNYw=="; 40601 }; 40602 }; 40603 "ln-service-53.9.3" = { ··· 40627 sha512 = "YqtS0v6zsDvv7rA51bSbXnB7Il4HQida+FpPD9KTAXdEiJW1L/NiyV4B+oosaygdUbT2oYgM3xw++L7XVBkPvA=="; 40628 }; 40629 }; 40630 - "ln-telegram-3.21.0" = { 40631 name = "ln-telegram"; 40632 packageName = "ln-telegram"; 40633 - version = "3.21.0"; 40634 src = fetchurl { 40635 - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.21.0.tgz"; 40636 - sha512 = "a1MvI5yMUStDZ7tOnPeh3nz6yftIESRw/R79oeh2eSvYbS6AGel35pKJ5E+aXVWuQR+0jeA3uGKKBBI1LGc9mw=="; 40637 }; 40638 }; 40639 "load-bmfont-1.4.1" = { ··· 42553 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 42554 }; 42555 }; 42556 - "lru-cache-7.7.3" = { 42557 name = "lru-cache"; 42558 packageName = "lru-cache"; 42559 - version = "7.7.3"; 42560 src = fetchurl { 42561 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.7.3.tgz"; 42562 - sha512 = "WY9wjJNQt9+PZilnLbuFKM+SwDull9+6IAguOrarOMoOHTcJ9GnXSO11+Gw6c7xtDkBkthR57OZMtZKYr+1CEw=="; 42563 }; 42564 }; 42565 "lru-queue-0.1.0" = { ··· 42824 sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="; 42825 }; 42826 }; 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 "make-fetch-happen-10.1.2" = { 42837 name = "make-fetch-happen"; 42838 packageName = "make-fetch-happen"; ··· 45866 sha512 = "JG0V47xRIQ9pyUnx6Hb4+3TrQoia2nA3UIdmyTldhxaxtKFkekkKpUW/N6fwHwod9o4BGuJGtouxOk+yCP5PEA=="; 45867 }; 45868 }; 45869 - "msgpackr-extract-1.1.0" = { 45870 name = "msgpackr-extract"; 45871 packageName = "msgpackr-extract"; 45872 - version = "1.1.0"; 45873 src = fetchurl { 45874 - url = "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-1.1.0.tgz"; 45875 - sha512 = "9QxKc4KYr7bNV0/2JPDbRIxCgMEYhDiZtOszvA+eH8Rx8IOOSv3bzP95RoxREwgekdXej+/GhA2Y6paSNBYsgA=="; 45876 }; 45877 }; 45878 "msgpackr-extract-darwin-arm64-1.1.0" = { ··· 46757 sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="; 46758 }; 46759 }; 46760 - "needle-3.0.0" = { 46761 name = "needle"; 46762 packageName = "needle"; 46763 - version = "3.0.0"; 46764 src = fetchurl { 46765 - url = "https://registry.npmjs.org/needle/-/needle-3.0.0.tgz"; 46766 - sha512 = "eGr0qnfHxAjr+Eptl1zr2lgUQUPC1SZfTkg2kFi0kxr1ChJonHUVYobkug8siBKMlyUVVp56MSkp6CSeXH/jgw=="; 46767 }; 46768 }; 46769 "negotiator-0.3.0" = { ··· 47433 sha512 = "amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ=="; 47434 }; 47435 }; 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"; 47444 }; 47445 }; 47446 "node-hid-2.1.1" = { ··· 48199 sha512 = "L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ=="; 48200 }; 48201 }; 48202 - "npm-packlist-4.0.0" = { 48203 name = "npm-packlist"; 48204 packageName = "npm-packlist"; 48205 - version = "4.0.0"; 48206 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=="; 48209 }; 48210 }; 48211 "npm-pick-manifest-6.1.1" = { ··· 50324 sha512 = "LdnkVwu808S7ngeKpUjJZDWXsWXqMLYtTGE2pXtKjpIs5Nn2qL6d84Sh+/gxyeJHtTz0qmOEuYnFfn61/TuU0A=="; 50325 }; 50326 }; 50327 "pac-proxy-agent-4.1.0" = { 50328 name = "pac-proxy-agent"; 50329 packageName = "pac-proxy-agent"; ··· 50468 sha512 = "CdYEl03JDrRO3x18uHjBYA9TyoW8gy+ThVcypcDkxPtKlw76e4ejhYB6i9lJ+/cebbjpqPW/CijjqxwDTts8Ow=="; 50469 }; 50470 }; 50471 - "pacote-13.0.5" = { 50472 name = "pacote"; 50473 packageName = "pacote"; 50474 - version = "13.0.5"; 50475 src = fetchurl { 50476 - url = "https://registry.npmjs.org/pacote/-/pacote-13.0.5.tgz"; 50477 - sha512 = "6CYfot3/rUAn3qqzF2d/jrrXm5HlBtvaSgfmg0VtOUAdJ8fbSq21BJwftMGArkL71yXHIbUJ7Bt5B04547HELA=="; 50478 }; 50479 }; 50480 "pad-0.0.5" = { ··· 50493 src = fetchurl { 50494 url = "https://registry.npmjs.org/pad-component/-/pad-component-0.0.1.tgz"; 50495 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 }; 50506 }; 50507 "paid-services-3.14.5" = { ··· 52250 sha512 = "2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg=="; 52251 }; 52252 }; 52253 - "polished-4.2.1" = { 52254 name = "polished"; 52255 packageName = "polished"; 52256 - version = "4.2.1"; 52257 src = fetchurl { 52258 - url = "https://registry.npmjs.org/polished/-/polished-4.2.1.tgz"; 52259 - sha512 = "vRkUnHBwVX7kIeCzCghcLCWoDenV+sV7lkItnmTc7bb6Uzbe8ogU1FxqEW8+dXCxUX8YW8vusQ0HTk2yES7bfQ=="; 52260 }; 52261 }; 52262 "polyraf-1.1.0" = { ··· 53583 sha512 = "99PZ5+RU4gqiTfK5ZDMDkZtn6eL4WlKfFyVJV7lFQvH3iGmQ85DqMTOdxorERO26LHkevR2qsxnHp0x/2UDJPA=="; 53584 }; 53585 }; 53586 - "probing-2.0.3" = { 53587 name = "probing"; 53588 packageName = "probing"; 53589 - version = "2.0.3"; 53590 src = fetchurl { 53591 - url = "https://registry.npmjs.org/probing/-/probing-2.0.3.tgz"; 53592 - sha512 = "6PuKCNitH3pjTjHndVtSkb300EQCiYPKJCxfDHlu9uwEcjDc7Fipee8U9fTm5W8frVCB7Vo4V4dlwGL9WVL2OQ=="; 53593 }; 53594 }; 53595 "proc-log-1.0.0" = { ··· 54195 sha512 = "0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA=="; 54196 }; 54197 }; 54198 - "psbt-1.1.10" = { 54199 name = "psbt"; 54200 packageName = "psbt"; 54201 - version = "1.1.10"; 54202 src = fetchurl { 54203 - url = "https://registry.npmjs.org/psbt/-/psbt-1.1.10.tgz"; 54204 - sha512 = "LLyJcNVKRK8AUXKcpCrZA21+mlrjzlzTLQZp/Yu279hqqQrakAu9IusT7zEddhhkQrzm6UQ9cER3nhrIZqh0hw=="; 54205 }; 54206 }; 54207 - "psbt-2.0.0" = { 54208 name = "psbt"; 54209 packageName = "psbt"; 54210 - version = "2.0.0"; 54211 src = fetchurl { 54212 - url = "https://registry.npmjs.org/psbt/-/psbt-2.0.0.tgz"; 54213 - sha512 = "V3RueLeXhP/WZETCtUxFn9aaEjHKdJIp2jir1rgK3iU0fV4hC0f45wDRDrrtcFHIUyvudgzhg6Bcgr8cGaWXlA=="; 54214 }; 54215 }; 54216 "pseudomap-1.0.2" = { ··· 57030 sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 57031 }; 57032 }; 57033 - "regenerator-transform-0.14.5" = { 57034 name = "regenerator-transform"; 57035 packageName = "regenerator-transform"; 57036 - version = "0.14.5"; 57037 src = fetchurl { 57038 - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz"; 57039 - sha512 = "eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw=="; 57040 }; 57041 }; 57042 "regex-cache-0.4.4" = { ··· 59541 sha512 = "zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA=="; 59542 }; 59543 }; 59544 - "sass-1.49.11" = { 59545 name = "sass"; 59546 packageName = "sass"; 59547 - version = "1.49.11"; 59548 src = fetchurl { 59549 - url = "https://registry.npmjs.org/sass/-/sass-1.49.11.tgz"; 59550 - sha512 = "wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ=="; 59551 }; 59552 }; 59553 "sass-loader-10.2.0" = { ··· 59701 src = fetchurl { 59702 url = "https://registry.npmjs.org/sdp/-/sdp-2.12.0.tgz"; 59703 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 }; 59714 }; 59715 "secp256k1-4.0.3" = { ··· 59971 src = fetchurl { 59972 url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 59973 sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 59974 }; 59975 }; 59976 "semver-compare-1.0.0" = { ··· 61710 sha512 = "zlOmAKFLJzTI+MbvmkWhnOOJ++NYo0Iy7F93ARNPmvZvpWG2l8Ff3uwM3CkpHqRw8v3pcRROScM5E+vbeTeOKw=="; 61711 }; 61712 }; 61713 - "sonic-boom-2.6.0" = { 61714 name = "sonic-boom"; 61715 packageName = "sonic-boom"; 61716 - version = "2.6.0"; 61717 src = fetchurl { 61718 - url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.6.0.tgz"; 61719 - sha512 = "6xYZFRmDEtxGqfOKcDQ4cPLrNa0SPEDI+wlzDAHowXE6YV42NeXqg9mP2KkiM8JVu3lHfZ2iQKYlGOz+kTpphg=="; 61720 }; 61721 }; 61722 "sorcery-0.10.0" = { ··· 62844 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 62845 }; 62846 }; 62847 - "sscaff-1.2.248" = { 62848 name = "sscaff"; 62849 packageName = "sscaff"; 62850 - version = "1.2.248"; 62851 src = fetchurl { 62852 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.248.tgz"; 62853 - sha512 = "rHpwuR6VXLYvHowk/AZTNbTbhnxQ20+G6izyrdCXH7qxIcU05sbo328b8WdglFi3ncm6FF9Rn2PmGEc2HGaY/Q=="; 62854 }; 62855 }; 62856 "ssh-config-1.1.6" = { ··· 64401 sha1 = "3a26ab96e06f78cf4ace8d083f6227fa55970947"; 64402 }; 64403 }; 64404 - "sucrase-3.20.3" = { 64405 name = "sucrase"; 64406 packageName = "sucrase"; 64407 - version = "3.20.3"; 64408 src = fetchurl { 64409 - url = "https://registry.npmjs.org/sucrase/-/sucrase-3.20.3.tgz"; 64410 - sha512 = "azqwq0/Bs6RzLAdb4dXxsCgMtAaD2hzmUr4UhSfsxO46JFPAwMnnb441B/qsudZiS6Ylea3JXZe3Q497lsgXzQ=="; 64411 }; 64412 }; 64413 "sudo-block-1.2.0" = { ··· 64500 sha512 = "DnarpKN6Xn8e3pYlFV4Yvsj9yxLY4q5FIsUe5JvN7vjzP+YCfzXv03dTkZSD2yzrSadsNYHf0IgOUJwKjX457A=="; 64501 }; 64502 }; 64503 - "supercluster-7.1.4" = { 64504 name = "supercluster"; 64505 packageName = "supercluster"; 64506 - version = "7.1.4"; 64507 src = fetchurl { 64508 - url = "https://registry.npmjs.org/supercluster/-/supercluster-7.1.4.tgz"; 64509 - sha512 = "GhKkRM1jMR6WUwGPw05fs66pOFWhf59lXq+Q3J3SxPvhNcmgOtLRV6aVQPMRsmXdpaeFJGivt+t7QXUPL3ff4g=="; 64510 }; 64511 }; 64512 "superstatic-7.1.0" = { ··· 64671 sha512 = "VKXPRScCzAZqeBZOGq4LLwtNrAu++mVn7XvQox3eFDV7Ciq0Lg70Q8QWjH9iXF7J+pMlXhPsSFwpCb2E+hoeyA=="; 64672 }; 64673 }; 64674 - "svelte2tsx-0.5.6" = { 64675 name = "svelte2tsx"; 64676 packageName = "svelte2tsx"; 64677 - version = "0.5.6"; 64678 src = fetchurl { 64679 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.6.tgz"; 64680 - sha512 = "B4WZUtoTdVD+F73H1RQEH3Hrv7m2/ahThmAUkjT5CTWRigQaJqYQpSjisCH1Pzfi9B37YikDnAi4u4uxwYM+iw=="; 64681 }; 64682 }; 64683 "sver-compat-1.5.0" = { ··· 67039 sha1 = "5f4278e701800967a8fc383fd19648878f2a6e3a"; 67040 }; 67041 }; 67042 - "tsconfig-paths-3.14.0" = { 67043 name = "tsconfig-paths"; 67044 packageName = "tsconfig-paths"; 67045 - version = "3.14.0"; 67046 src = fetchurl { 67047 - url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.0.tgz"; 67048 - sha512 = "cg/1jAZoL57R39+wiw4u/SCC6Ic9Q5NqjBOb+9xISedOYurfog9ZNmKJSxAnb2m/5Bq4lE9lhUcau33Ml8DM0g=="; 67049 }; 67050 }; 67051 "tsconfig-paths-webpack-plugin-3.5.2" = { ··· 67523 src = fetchurl { 67524 url = "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz"; 67525 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 }; 67536 }; 67537 "type-fest-2.12.0" = { ··· 71846 sha512 = "EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA=="; 71847 }; 71848 }; 71849 "web-streams-polyfill-4.0.0-beta.1" = { 71850 name = "web-streams-polyfill"; 71851 packageName = "web-streams-polyfill"; ··· 71981 sha512 = "6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q=="; 71982 }; 71983 }; 71984 - "webpack-5.70.0" = { 71985 name = "webpack"; 71986 packageName = "webpack"; 71987 - version = "5.70.0"; 71988 src = fetchurl { 71989 - url = "https://registry.npmjs.org/webpack/-/webpack-5.70.0.tgz"; 71990 - sha512 = "ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw=="; 71991 }; 71992 }; 71993 - "webpack-5.71.0" = { 71994 name = "webpack"; 71995 packageName = "webpack"; 71996 - version = "5.71.0"; 71997 src = fetchurl { 71998 - url = "https://registry.npmjs.org/webpack/-/webpack-5.71.0.tgz"; 71999 - sha512 = "g4dFT7CFG8LY0iU5G8nBL6VlkT21Z7dcYDpJAEJV5Q1WLb9UwnFbrem1k7K52ILqEmomN7pnzWFxxE6SlDY56A=="; 72000 }; 72001 }; 72002 "webpack-bundle-analyzer-3.9.0" = { ··· 73131 src = fetchurl { 73132 url = "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz"; 73133 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 }; 73144 }; 73145 "ws-8.5.0" = { ··· 74445 "@angular/cli" = nodeEnv.buildNodePackage { 74446 name = "_at_angular_slash_cli"; 74447 packageName = "@angular/cli"; 74448 - version = "13.3.1"; 74449 src = fetchurl { 74450 - url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.1.tgz"; 74451 - sha512 = "0uwU8v3V/2s95X4cZT582J6upReT/ZNw/VAf4p4q51JN+BBvdCEb251xTF+TcOojyToFyJYvg8T28XSrsNsmTQ=="; 74452 }; 74453 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" 74457 sources."@gar/promisify-1.1.3" 74458 sources."@npmcli/fs-1.1.1" 74459 sources."@npmcli/git-2.1.0" ··· 74462 sources."@npmcli/node-gyp-1.0.3" 74463 sources."@npmcli/promise-spawn-1.3.2" 74464 sources."@npmcli/run-script-2.0.0" 74465 - sources."@schematics/angular-13.3.1" 74466 sources."@tootallnate/once-1.1.2" 74467 sources."@yarnpkg/lockfile-1.1.0" 74468 sources."abbrev-1.1.1" ··· 74587 (sources."npm-registry-fetch-12.0.2" // { 74588 dependencies = [ 74589 sources."@npmcli/fs-2.1.0" 74590 sources."@tootallnate/once-2.0.0" 74591 - sources."cacache-16.0.3" 74592 sources."http-proxy-agent-5.0.0" 74593 - sources."lru-cache-7.7.3" 74594 - (sources."make-fetch-happen-10.1.1" // { 74595 dependencies = [ 74596 sources."minipass-fetch-2.1.0" 74597 ]; 74598 }) 74599 ]; 74600 }) 74601 sources."npmlog-6.0.1" ··· 75040 sources."pascal-case-3.1.2" 75041 sources."source-map-0.7.3" 75042 sources."svelte-3.46.6" 75043 - sources."svelte2tsx-0.5.6" 75044 sources."tslib-2.3.1" 75045 sources."typescript-4.6.3" 75046 sources."vscode-css-languageservice-5.4.1" ··· 75199 ]; 75200 }) 75201 sources."json-stringify-safe-5.0.1" 75202 - sources."jszip-3.9.0" 75203 sources."keygrip-1.1.0" 75204 (sources."koa-2.13.4" // { 75205 dependencies = [ ··· 75340 dependencies = [ 75341 sources."@babel/code-frame-7.16.7" 75342 sources."@babel/helper-validator-identifier-7.16.7" 75343 - (sources."@babel/highlight-7.16.10" // { 75344 dependencies = [ 75345 sources."ansi-styles-3.2.1" 75346 sources."chalk-2.4.2" ··· 75592 dependencies = [ 75593 sources."@babel/code-frame-7.16.7" 75594 sources."@babel/helper-validator-identifier-7.16.7" 75595 - (sources."@babel/highlight-7.16.10" // { 75596 dependencies = [ 75597 sources."ansi-styles-3.2.1" 75598 sources."chalk-2.4.2" ··· 75736 sources."jsonfile-6.1.0" 75737 sources."jwa-2.0.0" 75738 sources."jws-4.0.0" 75739 - sources."keyv-4.2.1" 75740 sources."lines-and-columns-1.2.4" 75741 sources."locate-path-6.0.0" 75742 sources."lodash-4.17.21" ··· 75760 sources."normalize-newline-4.1.0" 75761 (sources."normalize-package-data-3.0.3" // { 75762 dependencies = [ 75763 - sources."semver-7.3.5" 75764 ]; 75765 }) 75766 sources."normalize-path-3.0.0" ··· 76256 sha512 = "hV1PG20mLFmYbSJvV+JIGVLUT3zzDt2snR9T7tKMBAVvGQBAfzodylbTZe+b20hNz3Max2Z4zsKVksRu71x1+A=="; 76257 }; 76258 dependencies = [ 76259 - sources."@babel/parser-7.17.8" 76260 sources."@medable/mdctl-api-1.0.64" 76261 sources."@medable/mdctl-api-driver-1.0.64" 76262 sources."@medable/mdctl-axon-tools-1.0.64" ··· 77286 "@nestjs/cli" = nodeEnv.buildNodePackage { 77287 name = "_at_nestjs_slash_cli"; 77288 packageName = "@nestjs/cli"; 77289 - version = "8.2.4"; 77290 src = fetchurl { 77291 - url = "https://registry.npmjs.org/@nestjs/cli/-/cli-8.2.4.tgz"; 77292 - sha512 = "9zNV9oMtaz1vwLO3WXviD0wzRpyiaLWJZ7KCIZLk62U22RDNRsbtLLDS52Wkig5L8UU7Z1xRfrEv+s3f9keysQ=="; 77293 }; 77294 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" // { 77298 dependencies = [ 77299 sources."chalk-4.1.2" 77300 sources."inquirer-8.2.0" ··· 77304 }) 77305 sources."@babel/code-frame-7.16.7" 77306 sources."@babel/helper-validator-identifier-7.16.7" 77307 - (sources."@babel/highlight-7.16.10" // { 77308 dependencies = [ 77309 sources."ansi-styles-3.2.1" 77310 sources."chalk-2.4.2" ··· 77314 sources."supports-color-5.5.0" 77315 ]; 77316 }) 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 - }) 77323 sources."@types/eslint-8.4.1" 77324 sources."@types/eslint-scope-3.7.3" 77325 sources."@types/estree-0.0.51" ··· 77348 sources."acorn-import-assertions-1.8.0" 77349 sources."ajv-8.9.0" 77350 sources."ajv-formats-2.1.1" 77351 - sources."ajv-keywords-5.1.0" 77352 sources."ansi-colors-4.1.1" 77353 sources."ansi-escapes-4.3.2" 77354 sources."ansi-regex-5.0.1" ··· 77383 sources."cross-spawn-7.0.3" 77384 sources."deepmerge-4.2.2" 77385 sources."defaults-1.0.3" 77386 - sources."electron-to-chromium-1.4.103" 77387 sources."emoji-regex-8.0.0" 77388 sources."end-of-stream-1.4.4" 77389 sources."enhanced-resolve-5.9.2" ··· 77405 sources."fast-json-stable-stringify-2.1.0" 77406 sources."figures-3.2.0" 77407 sources."fill-range-7.0.1" 77408 - (sources."fork-ts-checker-webpack-plugin-7.2.1" // { 77409 dependencies = [ 77410 sources."chalk-4.1.2" 77411 ]; ··· 77465 sources."chalk-4.1.2" 77466 ]; 77467 }) 77468 - sources."lru-cache-6.0.0" 77469 sources."macos-release-2.5.0" 77470 sources."magic-string-0.25.7" 77471 sources."memfs-3.4.1" ··· 77474 sources."mime-types-2.1.35" 77475 sources."mimic-fn-2.1.0" 77476 sources."minimatch-3.1.2" 77477 - sources."minimist-1.2.5" 77478 sources."mute-stream-0.0.8" 77479 sources."neo-async-2.6.2" 77480 sources."node-emoji-1.11.0" ··· 77514 sources."rxjs-6.6.7" 77515 sources."safe-buffer-5.2.1" 77516 sources."safer-buffer-2.1.2" 77517 - sources."schema-utils-4.0.0" 77518 - sources."semver-7.3.5" 77519 sources."serialize-javascript-6.0.0" 77520 sources."shebang-command-2.0.0" 77521 sources."shebang-regex-3.0.0" ··· 77544 }) 77545 (sources."terser-webpack-plugin-5.3.1" // { 77546 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 sources."source-map-0.6.1" 77552 ]; 77553 }) ··· 77555 sources."tmp-0.0.33" 77556 sources."to-regex-range-5.0.1" 77557 sources."tree-kill-1.2.2" 77558 - sources."tsconfig-paths-3.14.0" 77559 (sources."tsconfig-paths-webpack-plugin-3.5.2" // { 77560 dependencies = [ 77561 sources."chalk-4.1.2" ··· 77569 sources."util-deprecate-1.0.2" 77570 sources."watchpack-2.3.1" 77571 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 - }) 77580 sources."webpack-node-externals-3.0.0" 77581 sources."webpack-sources-3.2.3" 77582 sources."which-2.0.2" 77583 sources."windows-release-4.0.0" 77584 sources."wrappy-1.0.2" 77585 - sources."yallist-4.0.0" 77586 sources."yaml-1.10.2" 77587 ]; 77588 buildInputs = globalBuildInputs; ··· 77774 sources."async-limiter-1.0.1" 77775 sources."asynckit-0.4.0" 77776 sources."atob-2.1.2" 77777 - (sources."aws-sdk-2.1107.0" // { 77778 dependencies = [ 77779 sources."uuid-3.3.2" 77780 ]; ··· 78064 sources."@apollographql/graphql-upload-8-fork-8.1.3" 78065 sources."@babel/code-frame-7.16.7" 78066 sources."@babel/compat-data-7.17.7" 78067 - (sources."@babel/core-7.17.8" // { 78068 dependencies = [ 78069 sources."semver-6.3.0" 78070 ]; 78071 }) 78072 - (sources."@babel/generator-7.17.7" // { 78073 dependencies = [ 78074 sources."source-map-0.5.7" 78075 ]; ··· 78081 sources."semver-6.3.0" 78082 ]; 78083 }) 78084 - sources."@babel/helper-create-class-features-plugin-7.17.6" 78085 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 78086 (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 78087 dependencies = [ ··· 78090 }) 78091 sources."@babel/helper-environment-visitor-7.16.7" 78092 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" 78095 sources."@babel/helper-hoist-variables-7.16.7" 78096 sources."@babel/helper-member-expression-to-functions-7.17.7" 78097 sources."@babel/helper-module-imports-7.16.7" ··· 78106 sources."@babel/helper-validator-identifier-7.16.7" 78107 sources."@babel/helper-validator-option-7.16.7" 78108 sources."@babel/helper-wrap-function-7.16.8" 78109 - sources."@babel/helpers-7.17.8" 78110 - (sources."@babel/highlight-7.16.10" // { 78111 dependencies = [ 78112 sources."ansi-styles-3.2.1" 78113 sources."chalk-2.4.2" ··· 78117 sources."supports-color-5.5.0" 78118 ]; 78119 }) 78120 - sources."@babel/parser-7.17.8" 78121 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 78122 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 78123 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 78167 sources."@babel/plugin-transform-literals-7.16.7" 78168 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 78169 sources."@babel/plugin-transform-modules-amd-7.16.7" 78170 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 78171 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 78172 sources."@babel/plugin-transform-modules-umd-7.16.7" 78173 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 78175 sources."@babel/plugin-transform-object-super-7.16.7" 78176 sources."@babel/plugin-transform-parameters-7.16.7" 78177 sources."@babel/plugin-transform-property-literals-7.16.7" 78178 - sources."@babel/plugin-transform-regenerator-7.16.7" 78179 sources."@babel/plugin-transform-reserved-words-7.16.7" 78180 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 78181 sources."@babel/plugin-transform-spread-7.16.7" ··· 78200 sources."semver-5.7.1" 78201 ]; 78202 }) 78203 - sources."@babel/runtime-7.17.8" 78204 sources."@babel/template-7.16.7" 78205 - sources."@babel/traverse-7.17.3" 78206 sources."@babel/types-7.17.0" 78207 sources."@hapi/hoek-9.2.1" 78208 sources."@hapi/topo-5.1.0" ··· 78499 sources."easy-stack-1.0.1" 78500 sources."ee-first-1.1.1" 78501 sources."ejs-3.1.6" 78502 - sources."electron-to-chromium-1.4.103" 78503 sources."emoji-regex-8.0.0" 78504 sources."encodeurl-1.0.2" 78505 sources."end-of-stream-1.4.4" ··· 78604 sources."which-2.0.2" 78605 ]; 78606 }) 78607 - sources."flow-parser-0.175.0" 78608 sources."for-each-0.3.3" 78609 sources."for-in-1.0.2" 78610 sources."forwarded-0.2.0" ··· 78939 sources."regenerate-1.4.2" 78940 sources."regenerate-unicode-properties-10.0.1" 78941 sources."regenerator-runtime-0.13.9" 78942 - sources."regenerator-transform-0.14.5" 78943 sources."regex-not-1.0.2" 78944 sources."regexpu-core-5.0.1" 78945 sources."regjsgen-0.6.0" ··· 78972 sources."commander-2.20.3" 78973 ]; 78974 }) 78975 - sources."semver-7.3.5" 78976 (sources."send-0.17.2" // { 78977 dependencies = [ 78978 (sources."debug-2.6.9" // { ··· 79342 }; 79343 dependencies = [ 79344 sources."@babel/code-frame-7.16.7" 79345 - sources."@babel/generator-7.17.7" 79346 sources."@babel/helper-validator-identifier-7.16.7" 79347 - sources."@babel/highlight-7.16.10" 79348 - sources."@babel/parser-7.17.8" 79349 sources."@babel/template-7.16.7" 79350 sources."@babel/types-7.17.0" 79351 sources."@webassemblyjs/ast-1.11.1" ··· 79423 dependencies = [ 79424 sources."@babel/code-frame-7.16.7" 79425 sources."@babel/helper-validator-identifier-7.16.7" 79426 - sources."@babel/highlight-7.16.10" 79427 sources."@sindresorhus/is-0.14.0" 79428 sources."@szmarczak/http-timer-1.1.2" 79429 sources."@types/acorn-4.0.6" ··· 79761 sources."retext-profanities-7.1.0" 79762 sources."sade-1.8.1" 79763 sources."safe-buffer-5.2.1" 79764 - sources."semver-7.3.5" 79765 (sources."semver-diff-3.1.1" // { 79766 dependencies = [ 79767 sources."semver-6.3.0" ··· 79912 sources."@ampproject/remapping-2.1.2" 79913 sources."@babel/code-frame-7.16.7" 79914 sources."@babel/compat-data-7.17.7" 79915 - sources."@babel/core-7.17.8" 79916 - (sources."@babel/generator-7.17.7" // { 79917 dependencies = [ 79918 sources."source-map-0.5.7" 79919 ]; 79920 }) 79921 sources."@babel/helper-compilation-targets-7.17.7" 79922 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" 79925 sources."@babel/helper-hoist-variables-7.16.7" 79926 sources."@babel/helper-module-imports-7.16.7" 79927 sources."@babel/helper-module-transforms-7.17.7" ··· 79929 sources."@babel/helper-split-export-declaration-7.16.7" 79930 sources."@babel/helper-validator-identifier-7.16.7" 79931 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" 79935 sources."@babel/template-7.16.7" 79936 - sources."@babel/traverse-7.17.3" 79937 sources."@babel/types-7.17.0" 79938 sources."@jridgewell/resolve-uri-3.0.5" 79939 sources."@jridgewell/sourcemap-codec-1.4.11" 79940 sources."@jridgewell/trace-mapping-0.3.4" 79941 - sources."@xmldom/xmldom-0.8.1" 79942 sources."JSV-4.0.2" 79943 sources."ansi-styles-3.2.1" 79944 sources."array-unique-0.3.2" ··· 79956 sources."convert-source-map-1.8.0" 79957 sources."debug-4.3.4" 79958 sources."ejs-3.1.6" 79959 - sources."electron-to-chromium-1.4.103" 79960 sources."ensure-posix-path-1.1.1" 79961 sources."escalade-3.1.1" 79962 sources."escape-string-regexp-1.0.5" ··· 80333 dependencies = [ 80334 sources."browserslist-4.20.2" 80335 sources."caniuse-lite-1.0.30001325" 80336 - sources."electron-to-chromium-1.4.103" 80337 sources."escalade-3.1.1" 80338 sources."fraction.js-4.2.0" 80339 sources."node-releases-2.0.2" ··· 80368 sources."ansi-regex-5.0.1" 80369 sources."ansi-styles-4.3.0" 80370 sources."ast-types-0.13.4" 80371 - (sources."aws-sdk-2.1107.0" // { 80372 dependencies = [ 80373 sources."uuid-3.3.2" 80374 ]; ··· 80410 sources."depd-2.0.0" 80411 sources."devtools-protocol-0.0.901419" 80412 sources."dom-serializer-1.3.2" 80413 - sources."domelementtype-2.2.0" 80414 sources."domhandler-4.3.1" 80415 sources."domutils-2.8.0" 80416 sources."emoji-regex-8.0.0" ··· 80576 dependencies = [ 80577 sources."@babel/code-frame-7.16.7" 80578 sources."@babel/helper-validator-identifier-7.16.7" 80579 - (sources."@babel/highlight-7.16.10" // { 80580 dependencies = [ 80581 sources."ansi-styles-3.2.1" 80582 sources."chalk-2.4.2" ··· 80761 sources."nice-try-1.0.5" 80762 (sources."normalize-package-data-3.0.3" // { 80763 dependencies = [ 80764 - sources."semver-7.3.5" 80765 ]; 80766 }) 80767 sources."normalize-url-4.5.1" ··· 80986 balanceofsatoshis = nodeEnv.buildNodePackage { 80987 name = "balanceofsatoshis"; 80988 packageName = "balanceofsatoshis"; 80989 - version = "11.64.1"; 80990 src = fetchurl { 80991 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.64.1.tgz"; 80992 - sha512 = "k8ft+Al3mYVW9hfQ2JjkKIrbUmIyhZzjUqHz16ieo/4ggWMPr8WxKiiz7ZuPgG/kog8XY0RlkFT2F0/9Ej9gdg=="; 80993 }; 80994 dependencies = [ 80995 (sources."@alexbosworth/caporal-1.4.1" // { ··· 80998 ]; 80999 }) 81000 sources."@alexbosworth/cli-table3-0.6.1" 81001 - sources."@alexbosworth/fiat-1.0.1" 81002 sources."@alexbosworth/html2unicode-1.1.5" 81003 sources."@alexbosworth/node-fetch-2.6.2" 81004 (sources."@alexbosworth/prettyjson-1.2.2" // { ··· 81014 ]; 81015 }) 81016 sources."@grammyjs/types-2.6.0" 81017 - sources."@grpc/grpc-js-1.5.7" 81018 sources."@grpc/proto-loader-0.6.9" 81019 sources."@handsontable/formulajs-2.0.2" 81020 sources."@mitmaro/errors-1.0.0" ··· 81044 sources."@types/request-2.48.8" 81045 sources."@types/serve-static-1.13.10" 81046 sources."@types/tough-cookie-4.0.1" 81047 - sources."@types/ws-8.5.2" 81048 sources."abort-controller-3.0.0" 81049 sources."accepts-1.3.8" 81050 (sources."agent-base-6.0.2" // { ··· 81064 sources."asciichart-1.5.25" 81065 sources."astral-regex-2.0.0" 81066 sources."async-3.2.3" 81067 - sources."asyncjs-util-1.2.8" 81068 sources."asynckit-0.4.0" 81069 sources."base-x-3.0.9" 81070 sources."base64-js-1.5.1" 81071 sources."basic-auth-2.0.1" 81072 sources."bech32-2.0.0" 81073 sources."bessel-1.0.2" 81074 - sources."bindings-1.5.0" 81075 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 sources."bip65-1.0.3" 81084 sources."bip66-1.1.5" 81085 sources."bip68-1.0.4" ··· 81092 }) 81093 sources."bluebird-3.7.2" 81094 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" 81100 (sources."boxen-5.1.2" // { 81101 dependencies = [ 81102 sources."ansi-styles-4.3.0" ··· 81105 sources."type-fest-0.20.2" 81106 ]; 81107 }) 81108 - sources."brorand-1.1.0" 81109 sources."bs58-4.0.1" 81110 sources."bs58check-2.1.2" 81111 sources."buffer-5.7.1" ··· 81118 sources."lowercase-keys-2.0.0" 81119 ]; 81120 }) 81121 sources."camelcase-6.3.0" 81122 sources."cbor-8.1.0" 81123 (sources."chalk-1.1.3" // { ··· 81156 sources."core-util-is-1.0.3" 81157 sources."cors-2.8.5" 81158 sources."create-hash-1.2.0" 81159 - sources."create-hmac-1.1.7" 81160 sources."crypto-js-4.1.1" 81161 sources."crypto-random-string-2.0.0" 81162 sources."csv-parse-5.0.4" ··· 81169 sources."define-property-1.0.0" 81170 sources."delayed-stream-1.0.0" 81171 sources."delegates-1.0.0" 81172 - sources."depd-1.1.2" 81173 - sources."destroy-1.0.4" 81174 sources."dot-prop-5.3.0" 81175 sources."duplexer3-0.1.4" 81176 sources."ecpair-2.0.1" 81177 sources."ee-first-1.1.1" 81178 - (sources."elliptic-6.5.4" // { 81179 - dependencies = [ 81180 - sources."bn.js-4.12.0" 81181 - ]; 81182 - }) 81183 sources."emoji-regex-8.0.0" 81184 sources."encodeurl-1.0.2" 81185 sources."end-of-stream-1.4.4" ··· 81192 sources."exit-hook-1.1.1" 81193 (sources."express-4.17.3" // { 81194 dependencies = [ 81195 sources."safe-buffer-5.2.1" 81196 ]; 81197 }) 81198 sources."extend-3.0.2" ··· 81201 sources."fast-deep-equal-3.1.3" 81202 sources."fast-levenshtein-2.0.6" 81203 sources."figures-1.7.0" 81204 - sources."file-uri-to-path-1.0.0" 81205 - sources."finalhandler-1.1.2" 81206 sources."form-data-2.5.1" 81207 sources."forwarded-0.2.0" 81208 sources."fresh-0.5.2" 81209 sources."gauge-1.2.7" 81210 sources."get-caller-file-2.0.5" 81211 sources."get-stream-4.1.0" 81212 - sources."global-dirs-3.0.0" 81213 - (sources."goldengate-11.1.0" // { 81214 dependencies = [ 81215 - sources."ln-service-53.9.3" 81216 ]; 81217 }) 81218 sources."got-9.6.0" ··· 81223 sources."ms-2.1.2" 81224 ]; 81225 }) 81226 (sources."has-ansi-2.0.0" // { 81227 dependencies = [ 81228 sources."ansi-regex-2.1.1" 81229 ]; 81230 }) 81231 sources."has-flag-4.0.0" 81232 sources."has-unicode-2.0.1" 81233 sources."has-yarn-2.1.0" 81234 (sources."hash-base-3.1.0" // { ··· 81237 sources."safe-buffer-5.2.1" 81238 ]; 81239 }) 81240 - sources."hash.js-1.1.7" 81241 - sources."hmac-drbg-1.0.1" 81242 sources."hot-formula-parser-4.0.0" 81243 sources."http-cache-semantics-4.1.0" 81244 - sources."http-errors-1.8.1" 81245 sources."iconv-lite-0.4.24" 81246 sources."ieee754-1.2.1" 81247 sources."import-lazy-4.0.0" 81248 sources."imurmurhash-0.1.4" 81249 sources."inherits-2.0.4" 81250 - sources."ini-2.0.0" 81251 (sources."inquirer-8.2.2" // { 81252 dependencies = [ 81253 sources."ansi-escapes-4.3.2" ··· 81265 sources."type-fest-0.21.3" 81266 ]; 81267 }) 81268 - (sources."invoices-2.0.4" // { 81269 dependencies = [ 81270 - sources."bolt09-0.2.1" 81271 - sources."tiny-secp256k1-2.2.0" 81272 - sources."uint8array-tools-0.0.6" 81273 ]; 81274 }) 81275 sources."ip-1.1.5" ··· 81297 sources."isstream-0.1.2" 81298 sources."json-buffer-3.0.0" 81299 sources."json-schema-traverse-1.0.0" 81300 - sources."json2csv-5.0.6" 81301 sources."jsonparse-1.3.1" 81302 sources."jstat-1.9.5" 81303 sources."keyv-3.1.0" 81304 sources."kind-of-6.0.3" 81305 sources."latest-version-5.1.0" 81306 - (sources."lightning-5.8.2" // { 81307 dependencies = [ 81308 - sources."@types/node-17.0.21" 81309 ]; 81310 }) 81311 - (sources."ln-accounting-5.0.5" // { 81312 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" // { 81325 dependencies = [ 81326 - sources."bn.js-5.2.0" 81327 ]; 81328 }) 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" // { 81339 dependencies = [ 81340 - sources."bech32-2.0.0" 81341 - sources."bn.js-5.2.0" 81342 ]; 81343 }) 81344 - (sources."lightning-4.14.3" // { 81345 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 - }) 81357 ]; 81358 }) 81359 - sources."ln-service-52.16.0" 81360 - sources."ms-2.1.1" 81361 - (sources."psbt-1.1.10" // { 81362 dependencies = [ 81363 - sources."bitcoinjs-lib-5.2.0" 81364 - sources."bn.js-5.2.0" 81365 ]; 81366 }) 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" 81375 ]; 81376 }) 81377 - (sources."ln-service-53.9.4" // { 81378 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" 81383 ]; 81384 }) 81385 - (sources."ln-sync-3.11.0" // { 81386 dependencies = [ 81387 - sources."ln-service-53.9.3" 81388 ]; 81389 }) 81390 - (sources."ln-telegram-3.21.0" // { 81391 dependencies = [ 81392 - sources."ln-service-53.9.3" 81393 - sources."paid-services-3.14.4" 81394 ]; 81395 }) 81396 sources."lodash-4.17.21" ··· 81411 }) 81412 sources."long-4.0.0" 81413 sources."lowercase-keys-1.0.1" 81414 - sources."lru-cache-6.0.0" 81415 sources."luxon-2.3.1" 81416 sources."macaroon-3.0.4" 81417 (sources."make-dir-3.1.0" // { ··· 81422 sources."md5.js-1.3.5" 81423 sources."media-typer-0.3.0" 81424 sources."merge-descriptors-1.0.1" 81425 - sources."merkle-lib-2.0.10" 81426 sources."methods-1.1.2" 81427 sources."micromist-1.1.0" 81428 sources."mime-1.6.0" ··· 81430 sources."mime-types-2.1.35" 81431 sources."mimic-fn-2.1.0" 81432 sources."mimic-response-1.0.1" 81433 - sources."minimalistic-assert-1.0.1" 81434 - sources."minimalistic-crypto-utils-1.0.1" 81435 sources."minimist-1.2.6" 81436 sources."mkdirp-0.5.6" 81437 - sources."moment-2.29.1" 81438 (sources."morgan-1.10.0" // { 81439 dependencies = [ 81440 - sources."depd-2.0.0" 81441 ]; 81442 }) 81443 sources."ms-2.0.0" 81444 sources."mute-stream-0.0.6" 81445 - sources."nan-2.15.0" 81446 sources."negotiator-0.6.3" 81447 - sources."node-addon-api-2.0.2" 81448 sources."node-fetch-2.6.7" 81449 - sources."node-gyp-build-4.4.0" 81450 sources."nofilter-3.1.0" 81451 sources."normalize-url-4.5.1" 81452 sources."npmlog-2.0.4" 81453 sources."number-is-nan-1.0.1" 81454 sources."object-assign-4.1.1" 81455 - sources."on-finished-2.3.0" 81456 sources."on-headers-1.0.2" 81457 sources."once-1.4.0" 81458 sources."onetime-1.1.0" ··· 81469 sources."os-shim-0.1.3" 81470 sources."os-tmpdir-1.0.2" 81471 sources."p-cancelable-1.1.0" 81472 - sources."p2tr-1.3.0" 81473 (sources."package-json-6.5.0" // { 81474 dependencies = [ 81475 sources."semver-6.3.0" 81476 ]; 81477 }) 81478 - sources."paid-services-3.14.5" 81479 sources."parseurl-1.3.3" 81480 sources."path-to-regexp-0.1.7" 81481 sources."pinkie-2.0.4" 81482 sources."pinkie-promise-2.0.1" 81483 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 - }) 81507 sources."process-nextick-args-2.0.1" 81508 sources."protobufjs-6.11.2" 81509 sources."proxy-addr-2.0.7" 81510 - sources."psbt-2.0.0" 81511 sources."pump-3.0.0" 81512 sources."punycode-2.1.1" 81513 sources."pupa-2.1.1" 81514 sources."pushdata-bitcoin-1.0.1" 81515 sources."qrcode-terminal-0.12.0" 81516 - sources."qs-6.9.7" 81517 sources."randombytes-2.1.0" 81518 sources."range-parser-1.2.1" 81519 - sources."raw-body-2.4.3" 81520 (sources."rc-1.2.8" // { 81521 dependencies = [ 81522 sources."ini-1.3.8" ··· 81536 sources."safe-buffer-5.1.2" 81537 sources."safer-buffer-2.1.2" 81538 sources."sanitize-filename-1.6.3" 81539 - sources."secp256k1-4.0.2" 81540 - sources."semver-7.3.5" 81541 (sources."semver-diff-3.1.1" // { 81542 dependencies = [ 81543 sources."semver-6.3.0" ··· 81545 }) 81546 (sources."send-0.17.2" // { 81547 dependencies = [ 81548 sources."ms-2.1.3" 81549 ]; 81550 }) 81551 sources."serve-static-1.14.2" 81552 sources."setprototypeof-1.2.0" 81553 sources."sha.js-2.4.11" 81554 sources."signal-exit-3.0.7" 81555 sources."sjcl-1.0.8" 81556 (sources."slice-ansi-4.0.0" // { ··· 81568 }) 81569 sources."spawn-sync-1.0.15" 81570 sources."stack-trace-0.0.10" 81571 - sources."statuses-1.5.0" 81572 sources."string-width-4.2.3" 81573 sources."string_decoder-1.1.1" 81574 sources."strip-ansi-6.0.1" ··· 81586 }) 81587 sources."through-2.3.8" 81588 sources."tiny-emitter-2.1.0" 81589 - sources."tiny-secp256k1-2.2.1" 81590 sources."tmp-0.0.29" 81591 sources."to-readable-stream-1.0.0" 81592 sources."toidentifier-1.0.1" ··· 81595 sources."tslib-2.3.1" 81596 sources."tweetnacl-1.0.3" 81597 sources."tweetnacl-util-0.15.1" 81598 - sources."type-fest-2.12.0" 81599 sources."type-is-1.6.18" 81600 sources."typedarray-0.0.6" 81601 sources."typedarray-to-buffer-3.1.5" 81602 sources."typeforce-1.18.0" 81603 - sources."uint8array-tools-0.0.7" 81604 sources."unique-string-2.0.0" 81605 sources."unpipe-1.0.0" 81606 (sources."update-notifier-5.1.0" // { ··· 81640 sources."ws-8.5.0" 81641 sources."xdg-basedir-4.0.0" 81642 sources."y18n-5.0.8" 81643 - sources."yallist-4.0.0" 81644 sources."yargs-16.2.0" 81645 sources."yargs-parser-20.2.9" 81646 ]; ··· 81838 sources."domhandler-4.3.1" 81839 ]; 81840 }) 81841 - sources."domelementtype-2.2.0" 81842 sources."domhandler-3.3.0" 81843 (sources."domutils-2.8.0" // { 81844 dependencies = [ ··· 82586 dependencies = [ 82587 sources."@babel/code-frame-7.16.7" 82588 sources."@babel/helper-validator-identifier-7.16.7" 82589 - sources."@babel/highlight-7.16.10" 82590 - sources."@babel/parser-7.17.8" 82591 sources."@babel/types-7.17.0" 82592 sources."@kwsites/file-exists-1.1.1" 82593 sources."@kwsites/promise-deferred-1.1.1" ··· 82946 sources."safe-buffer-5.1.2" 82947 sources."safe-json-stringify-1.2.0" 82948 sources."safer-buffer-2.1.2" 82949 - sources."semver-7.3.5" 82950 (sources."send-0.17.2" // { 82951 dependencies = [ 82952 (sources."debug-2.6.9" // { ··· 84085 sources."@nodelib/fs.stat-2.0.5" 84086 sources."@nodelib/fs.walk-1.2.8" 84087 sources."@types/node-12.20.47" 84088 - sources."@xmldom/xmldom-0.8.1" 84089 sources."ajv-8.11.0" 84090 sources."ansi-regex-5.0.1" 84091 sources."ansi-styles-4.3.0" ··· 84095 sources."call-bind-1.0.2" 84096 sources."camelcase-6.3.0" 84097 sources."case-1.6.3" 84098 - sources."cdk8s-1.5.62" 84099 - sources."cdk8s-plus-22-1.0.0-beta.180" 84100 sources."chalk-4.1.2" 84101 sources."cliui-7.0.4" 84102 sources."clone-2.1.2" ··· 84109 sources."color-name-1.1.4" 84110 sources."colors-1.4.0" 84111 sources."commonmark-0.30.0" 84112 - sources."constructs-3.3.259" 84113 sources."date-format-4.0.6" 84114 sources."debug-4.3.4" 84115 sources."decamelize-5.0.1" ··· 84196 sources."yargs-16.2.0" 84197 ]; 84198 }) 84199 - (sources."jsii-srcmak-0.1.521" // { 84200 dependencies = [ 84201 sources."fs-extra-9.1.0" 84202 ]; 84203 }) 84204 sources."json-schema-0.4.0" 84205 sources."json-schema-traverse-1.0.0" 84206 - sources."json2jsii-0.2.181" 84207 sources."jsonfile-6.1.0" 84208 sources."jsonschema-1.4.0" 84209 sources."locate-path-5.0.0" 84210 sources."log4js-6.4.4" 84211 sources."lower-case-2.0.2" 84212 - sources."lru-cache-6.0.0" 84213 sources."mdurl-1.0.1" 84214 sources."merge2-1.4.1" 84215 sources."micromatch-4.0.5" ··· 84236 sources."reusify-1.0.4" 84237 sources."rfdc-1.3.0" 84238 sources."run-parallel-1.2.0" 84239 - sources."semver-7.3.5" 84240 (sources."semver-intersect-1.4.0" // { 84241 dependencies = [ 84242 sources."semver-5.7.1" ··· 84247 sources."snake-case-3.0.4" 84248 sources."sort-json-2.0.1" 84249 sources."spdx-license-list-6.5.0" 84250 - sources."sscaff-1.2.248" 84251 (sources."streamroller-3.0.6" // { 84252 dependencies = [ 84253 sources."fs-extra-10.0.1" ··· 84273 sources."wrap-ansi-7.0.0" 84274 sources."xmlbuilder-15.1.1" 84275 sources."y18n-5.0.8" 84276 - sources."yallist-4.0.0" 84277 sources."yaml-2.0.0-11" 84278 (sources."yargs-15.4.1" // { 84279 dependencies = [ ··· 84306 }; 84307 dependencies = [ 84308 sources."@babel/code-frame-7.16.7" 84309 - sources."@babel/generator-7.17.7" 84310 sources."@babel/helper-validator-identifier-7.16.7" 84311 - sources."@babel/highlight-7.16.10" 84312 - sources."@babel/parser-7.17.8" 84313 sources."@babel/template-7.16.7" 84314 sources."@babel/types-7.17.0" 84315 sources."@cdktf/hcl2cdk-0.10.1" ··· 84331 sources."@nodelib/fs.walk-1.2.8" 84332 sources."@types/node-17.0.23" 84333 sources."@types/node-fetch-2.6.1" 84334 - sources."@xmldom/xmldom-0.8.1" 84335 sources."ansi-regex-5.0.1" 84336 sources."ansi-styles-3.2.1" 84337 sources."arr-rotate-1.0.0" ··· 84358 sources."combined-stream-1.0.8" 84359 sources."commonmark-0.30.0" 84360 sources."concat-map-0.0.1" 84361 - sources."constructs-10.0.106" 84362 sources."date-format-4.0.6" 84363 sources."debug-4.3.4" 84364 sources."decamelize-1.2.0" ··· 84501 sources."yargs-parser-20.2.9" 84502 ]; 84503 }) 84504 - (sources."jsii-srcmak-0.1.521" // { 84505 dependencies = [ 84506 sources."fs-extra-9.1.0" 84507 sources."jsonfile-6.1.0" ··· 84514 sources."locate-path-5.0.0" 84515 sources."lodash.isequal-4.5.0" 84516 sources."log4js-6.4.4" 84517 - sources."lru-cache-6.0.0" 84518 sources."mdurl-1.0.1" 84519 sources."merge2-1.4.1" 84520 sources."micromatch-4.0.5" ··· 84554 sources."rfdc-1.3.0" 84555 sources."run-parallel-1.2.0" 84556 sources."safe-buffer-5.2.1" 84557 - sources."semver-7.3.5" 84558 (sources."semver-intersect-1.4.0" // { 84559 dependencies = [ 84560 sources."semver-5.7.1" ··· 84602 sources."wrappy-1.0.2" 84603 sources."xmlbuilder-15.1.1" 84604 sources."y18n-4.0.3" 84605 - sources."yallist-4.0.0" 84606 (sources."yargs-17.4.0" // { 84607 dependencies = [ 84608 sources."ansi-styles-4.3.0" ··· 84691 dependencies = [ 84692 sources."@babel/code-frame-7.16.7" 84693 sources."@babel/helper-validator-identifier-7.16.7" 84694 - sources."@babel/highlight-7.16.10" 84695 sources."@types/minimist-1.2.2" 84696 sources."@types/normalize-package-data-2.4.1" 84697 sources."ansi-styles-3.2.1" ··· 84755 sources."read-pkg-6.0.0" 84756 sources."read-pkg-up-8.0.0" 84757 sources."redent-4.0.0" 84758 - sources."semver-7.3.5" 84759 sources."shebang-command-2.0.0" 84760 sources."shebang-regex-3.0.0" 84761 sources."signal-exit-3.0.7" ··· 85339 }) 85340 sources."lodash-4.17.21" 85341 sources."log4js-6.4.4" 85342 - sources."lru-cache-6.0.0" 85343 sources."metals-languageclient-0.4.2" 85344 sources."minimatch-3.1.2" 85345 sources."minimist-1.2.6" ··· 85381 sources."rfdc-1.3.0" 85382 sources."rimraf-3.0.2" 85383 sources."safe-buffer-5.2.1" 85384 - sources."semver-7.3.5" 85385 sources."setimmediate-1.0.5" 85386 sources."shebang-command-1.2.0" 85387 sources."shebang-regex-1.0.0" ··· 85633 sources."@ampproject/remapping-2.1.2" 85634 sources."@babel/code-frame-7.16.7" 85635 sources."@babel/compat-data-7.17.7" 85636 - sources."@babel/core-7.17.8" 85637 - sources."@babel/generator-7.17.7" 85638 sources."@babel/helper-compilation-targets-7.17.7" 85639 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" 85642 sources."@babel/helper-hoist-variables-7.16.7" 85643 sources."@babel/helper-module-imports-7.16.7" 85644 sources."@babel/helper-module-transforms-7.17.7" ··· 85646 sources."@babel/helper-split-export-declaration-7.16.7" 85647 sources."@babel/helper-validator-identifier-7.16.7" 85648 sources."@babel/helper-validator-option-7.16.7" 85649 - sources."@babel/helpers-7.17.8" 85650 - (sources."@babel/highlight-7.16.10" // { 85651 dependencies = [ 85652 sources."chalk-2.4.2" 85653 ]; 85654 }) 85655 - sources."@babel/parser-7.17.8" 85656 sources."@babel/template-7.16.7" 85657 - sources."@babel/traverse-7.17.3" 85658 sources."@babel/types-7.17.0" 85659 sources."@jridgewell/resolve-uri-3.0.5" 85660 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 85722 sources."dir-glob-3.0.1" 85723 (sources."dom-serializer-0.2.2" // { 85724 dependencies = [ 85725 - sources."domelementtype-2.2.0" 85726 sources."entities-2.2.0" 85727 ]; 85728 }) 85729 sources."domelementtype-1.3.1" 85730 sources."domhandler-2.4.2" 85731 sources."domutils-1.7.0" 85732 - sources."electron-to-chromium-1.4.103" 85733 sources."emoji-regex-8.0.0" 85734 sources."entities-1.1.2" 85735 sources."error-ex-1.3.2" ··· 85763 sources."has-1.0.3" 85764 sources."has-flag-3.0.0" 85765 sources."hosted-git-info-4.1.0" 85766 - sources."html-tags-3.1.0" 85767 sources."htmlparser2-3.10.1" 85768 sources."ignore-5.2.0" 85769 (sources."import-fresh-3.3.0" // { ··· 85828 sources."node-releases-2.0.2" 85829 (sources."normalize-package-data-3.0.3" // { 85830 dependencies = [ 85831 - sources."semver-7.3.5" 85832 ]; 85833 }) 85834 sources."normalize-range-0.1.2" ··· 86013 dependencies = [ 86014 sources."@babel/code-frame-7.16.7" 86015 sources."@babel/helper-validator-identifier-7.16.7" 86016 - sources."@babel/highlight-7.16.10" 86017 sources."ansi-styles-3.2.1" 86018 sources."argparse-1.0.10" 86019 sources."balanced-match-1.0.2" ··· 86100 coc-tsserver = nodeEnv.buildNodePackage { 86101 name = "coc-tsserver"; 86102 packageName = "coc-tsserver"; 86103 - version = "1.9.15"; 86104 src = fetchurl { 86105 - url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.9.15.tgz"; 86106 - sha512 = "7mvLHnOqiXl0sk6mq78SmdIYL0nouIzejpTDgRlRjUrAXTCqXfpFVqfJg+2xASpcGTR5nH1lYMk/LXRrnFltIw=="; 86107 }; 86108 dependencies = [ 86109 sources."typescript-4.6.3" ··· 86147 dependencies = [ 86148 sources."@babel/code-frame-7.12.11" 86149 sources."@babel/helper-validator-identifier-7.16.7" 86150 - (sources."@babel/highlight-7.16.10" // { 86151 dependencies = [ 86152 sources."chalk-2.4.2" 86153 sources."escape-string-regexp-1.0.5" ··· 86259 sources."lodash-4.17.21" 86260 sources."lodash.merge-4.6.2" 86261 sources."lodash.truncate-4.4.2" 86262 - sources."lru-cache-6.0.0" 86263 sources."minimatch-3.1.2" 86264 sources."minimist-1.2.6" 86265 sources."mkdirp-0.5.6" ··· 86283 sources."resolve-1.22.0" 86284 sources."resolve-from-4.0.0" 86285 sources."rimraf-3.0.2" 86286 - sources."semver-7.3.5" 86287 sources."shebang-command-2.0.0" 86288 sources."shebang-regex-3.0.0" 86289 (sources."slice-ansi-4.0.0" // { ··· 86331 sources."which-2.0.2" 86332 sources."word-wrap-1.2.3" 86333 sources."wrappy-1.0.2" 86334 - sources."yallist-4.0.0" 86335 ]; 86336 buildInputs = globalBuildInputs; 86337 meta = { ··· 86787 dependencies = [ 86788 sources."@babel/code-frame-7.16.7" 86789 sources."@babel/helper-validator-identifier-7.16.7" 86790 - sources."@babel/highlight-7.16.10" 86791 sources."@hutson/parse-repository-url-3.0.2" 86792 sources."@types/minimist-1.2.2" 86793 sources."@types/normalize-package-data-2.4.1" ··· 86918 sources."neo-async-2.6.2" 86919 (sources."normalize-package-data-3.0.3" // { 86920 dependencies = [ 86921 - sources."semver-7.3.5" 86922 ]; 86923 }) 86924 sources."p-limit-1.3.0" ··· 87480 sources."safe-buffer-5.1.2" 87481 sources."safer-buffer-2.1.2" 87482 sources."sax-1.1.4" 87483 - sources."semver-7.3.5" 87484 (sources."semver-diff-3.1.1" // { 87485 dependencies = [ 87486 sources."semver-6.3.0" ··· 87613 dependencies = [ 87614 sources."@babel/code-frame-7.16.7" 87615 sources."@babel/helper-validator-identifier-7.16.7" 87616 - sources."@babel/highlight-7.16.10" 87617 sources."@nodelib/fs.scandir-2.1.5" 87618 sources."@nodelib/fs.stat-2.0.5" 87619 sources."@nodelib/fs.walk-1.2.8" ··· 87686 sources."nested-error-stacks-2.1.1" 87687 (sources."normalize-package-data-3.0.3" // { 87688 dependencies = [ 87689 - sources."semver-7.3.5" 87690 ]; 87691 }) 87692 sources."p-event-4.2.0" ··· 87783 sources."debug-3.2.7" 87784 sources."define-properties-1.1.3" 87785 sources."delayed-stream-1.0.0" 87786 - sources."es5-ext-0.10.59" 87787 sources."es6-iterator-2.0.3" 87788 sources."es6-map-0.1.5" 87789 (sources."es6-set-0.1.5" // { ··· 87939 sources."isexe-2.0.0" 87940 sources."jsonfile-6.1.0" 87941 sources."kleur-3.0.3" 87942 - sources."lru-cache-6.0.0" 87943 sources."minimatch-3.1.2" 87944 sources."minimist-1.2.6" 87945 sources."mkdirp-0.5.6" ··· 87952 sources."readable-stream-1.1.14" 87953 sources."rimraf-2.7.1" 87954 sources."safe-buffer-5.1.2" 87955 - sources."semver-7.3.5" 87956 sources."shebang-command-2.0.0" 87957 sources."shebang-regex-3.0.0" 87958 sources."sisteransi-1.0.5" ··· 87983 sources."which-2.0.2" 87984 sources."wrappy-1.0.2" 87985 sources."xtend-4.0.2" 87986 - sources."yallist-4.0.0" 87987 ]; 87988 buildInputs = globalBuildInputs; 87989 meta = { ··· 88024 dependencies = [ 88025 sources."@babel/code-frame-7.16.7" 88026 sources."@babel/helper-validator-identifier-7.16.7" 88027 - (sources."@babel/highlight-7.16.10" // { 88028 dependencies = [ 88029 sources."ansi-styles-3.2.1" 88030 sources."chalk-2.4.2" ··· 88039 sources."@cspell/cspell-types-5.19.5" 88040 sources."@cspell/dict-ada-2.0.0" 88041 sources."@cspell/dict-aws-2.0.0" 88042 - sources."@cspell/dict-bash-2.0.1" 88043 sources."@cspell/dict-companies-2.0.3" 88044 - sources."@cspell/dict-cpp-2.0.0" 88045 sources."@cspell/dict-cryptocurrencies-2.0.0" 88046 sources."@cspell/dict-csharp-2.0.1" 88047 sources."@cspell/dict-css-2.0.0" ··· 88104 sources."error-ex-1.3.2" 88105 sources."escape-string-regexp-1.0.5" 88106 sources."esprima-4.0.1" 88107 - sources."fast-equals-3.0.0" 88108 sources."fast-json-stable-stringify-2.1.0" 88109 sources."file-entry-cache-6.0.1" 88110 sources."fill-range-7.0.1" ··· 88139 sources."jsonfile-6.1.0" 88140 sources."lines-and-columns-1.2.4" 88141 sources."locate-path-6.0.0" 88142 - sources."lru-cache-6.0.0" 88143 (sources."make-dir-3.1.0" // { 88144 dependencies = [ 88145 sources."semver-6.3.0" ··· 88160 sources."resolve-from-5.0.0" 88161 sources."resolve-global-1.0.0" 88162 sources."rimraf-3.0.2" 88163 - sources."semver-7.3.5" 88164 sources."signal-exit-3.0.7" 88165 sources."strip-ansi-6.0.1" 88166 sources."supports-color-7.2.0" ··· 88173 sources."wrappy-1.0.2" 88174 sources."write-file-atomic-3.0.3" 88175 sources."xdg-basedir-4.0.0" 88176 - sources."yallist-4.0.0" 88177 sources."yaml-1.10.2" 88178 sources."yocto-queue-0.1.0" 88179 ]; ··· 88855 "deltachat-desktop-../../applications/networking/instant-messengers/deltachat-desktop" = nodeEnv.buildNodePackage { 88856 name = "deltachat-desktop"; 88857 packageName = "deltachat-desktop"; 88858 - version = "1.28.1"; 88859 src = ../../applications/networking/instant-messengers/deltachat-desktop; 88860 dependencies = [ 88861 sources."@ampproject/remapping-2.1.2" 88862 sources."@babel/code-frame-7.16.7" 88863 sources."@babel/compat-data-7.17.7" 88864 - sources."@babel/core-7.17.8" 88865 - (sources."@babel/generator-7.17.7" // { 88866 dependencies = [ 88867 sources."source-map-0.5.7" 88868 ]; ··· 88870 sources."@babel/helper-annotate-as-pure-7.16.7" 88871 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 88872 sources."@babel/helper-compilation-targets-7.17.7" 88873 - sources."@babel/helper-create-class-features-plugin-7.17.6" 88874 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 88875 sources."@babel/helper-define-polyfill-provider-0.3.1" 88876 sources."@babel/helper-environment-visitor-7.16.7" 88877 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" 88880 sources."@babel/helper-hoist-variables-7.16.7" 88881 sources."@babel/helper-member-expression-to-functions-7.17.7" 88882 sources."@babel/helper-module-imports-7.16.7" ··· 88891 sources."@babel/helper-validator-identifier-7.16.7" 88892 sources."@babel/helper-validator-option-7.16.7" 88893 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" 88897 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 88898 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 88899 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 88941 sources."@babel/plugin-transform-literals-7.16.7" 88942 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 88943 sources."@babel/plugin-transform-modules-amd-7.16.7" 88944 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 88945 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 88946 sources."@babel/plugin-transform-modules-umd-7.16.7" 88947 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 88953 sources."@babel/plugin-transform-react-jsx-7.17.3" 88954 sources."@babel/plugin-transform-react-jsx-development-7.16.7" 88955 sources."@babel/plugin-transform-react-pure-annotations-7.16.7" 88956 - sources."@babel/plugin-transform-regenerator-7.16.7" 88957 sources."@babel/plugin-transform-reserved-words-7.16.7" 88958 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 88959 sources."@babel/plugin-transform-spread-7.16.7" ··· 88965 sources."@babel/preset-env-7.16.11" 88966 sources."@babel/preset-modules-0.1.5" 88967 sources."@babel/preset-react-7.16.7" 88968 - sources."@babel/runtime-7.17.8" 88969 sources."@babel/template-7.16.7" 88970 - sources."@babel/traverse-7.17.3" 88971 sources."@babel/types-7.17.0" 88972 - sources."@blueprintjs/colors-4.0.2" 88973 sources."@blueprintjs/core-3.54.0" 88974 sources."@blueprintjs/icons-3.33.0" 88975 sources."@deltachat/message_parser_wasm-0.3.0" ··· 89003 sources."@types/minimist-1.2.2" 89004 sources."@types/node-14.18.12" 89005 sources."@types/node-fetch-2.6.1" 89006 - sources."@types/prop-types-15.7.4" 89007 sources."@types/rc-1.2.1" 89008 sources."@types/react-16.14.24" 89009 sources."@types/react-dom-16.9.14" ··· 89125 sources."duplexer3-0.1.4" 89126 sources."earcut-2.2.3" 89127 sources."electron-14.2.9" 89128 - sources."electron-to-chromium-1.4.103" 89129 sources."emoji-js-clean-4.0.0" 89130 sources."emoji-mart-3.0.1" 89131 sources."emoji-regex-9.2.2" ··· 89206 sources."glob-watcher-5.0.5" 89207 (sources."global-agent-3.0.0" // { 89208 dependencies = [ 89209 - sources."semver-7.3.5" 89210 ]; 89211 }) 89212 sources."global-tunnel-ng-2.7.1" ··· 89272 sources."lodash.debounce-4.0.8" 89273 sources."loose-envify-1.4.0" 89274 sources."lowercase-keys-1.0.1" 89275 - sources."lru-cache-6.0.0" 89276 sources."map-cache-0.2.2" 89277 sources."map-visit-1.0.0" 89278 (sources."mapbox-gl-1.13.2" // { ··· 89380 sources."regenerate-1.4.2" 89381 sources."regenerate-unicode-properties-10.0.1" 89382 sources."regenerator-runtime-0.13.9" 89383 - sources."regenerator-transform-0.14.5" 89384 sources."regex-not-1.0.2" 89385 sources."regexp.prototype.flags-1.4.1" 89386 sources."regexpu-core-5.0.1" ··· 89404 sources."rw-0.1.4" 89405 sources."safe-buffer-5.2.1" 89406 sources."safe-regex-1.1.0" 89407 - (sources."sass-1.49.11" // { 89408 dependencies = [ 89409 sources."anymatch-3.1.2" 89410 sources."binary-extensions-2.2.0" ··· 89495 sources."string_decoder-1.3.0" 89496 sources."strip-json-comments-2.0.1" 89497 sources."sumchecker-3.0.1" 89498 - sources."supercluster-7.1.4" 89499 sources."supports-color-5.5.0" 89500 sources."supports-preserve-symlinks-flag-1.0.0" 89501 sources."temp-dir-1.0.0" ··· 89549 sources."whatwg-url-5.0.0" 89550 sources."wrappy-1.0.2" 89551 sources."xml-js-1.6.11" 89552 - sources."yallist-4.0.0" 89553 sources."yauzl-2.10.0" 89554 ]; 89555 buildInputs = globalBuildInputs; ··· 90171 sources."jsonfile-6.1.0" 90172 sources."jsprim-1.4.2" 90173 sources."junk-3.1.0" 90174 - sources."keyv-4.2.1" 90175 sources."load-json-file-2.0.0" 90176 sources."locate-path-2.0.0" 90177 sources."lodash-4.17.21" ··· 90316 sources."rxjs-7.5.5" 90317 sources."safe-buffer-5.2.1" 90318 sources."safer-buffer-2.1.2" 90319 - sources."semver-7.3.5" 90320 sources."semver-compare-1.0.0" 90321 sources."serialize-error-7.0.1" 90322 sources."set-blocking-2.0.0" ··· 90458 sources."@ampproject/remapping-2.1.2" 90459 sources."@babel/code-frame-7.16.7" 90460 sources."@babel/compat-data-7.17.7" 90461 - (sources."@babel/core-7.17.8" // { 90462 dependencies = [ 90463 sources."semver-6.3.0" 90464 ]; 90465 }) 90466 - sources."@babel/generator-7.17.7" 90467 sources."@babel/helper-annotate-as-pure-7.16.7" 90468 (sources."@babel/helper-compilation-targets-7.17.7" // { 90469 dependencies = [ ··· 90471 ]; 90472 }) 90473 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" 90476 sources."@babel/helper-hoist-variables-7.16.7" 90477 sources."@babel/helper-module-imports-7.16.7" 90478 sources."@babel/helper-module-transforms-7.17.7" ··· 90481 sources."@babel/helper-split-export-declaration-7.16.7" 90482 sources."@babel/helper-validator-identifier-7.16.7" 90483 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" 90487 sources."@babel/plugin-proposal-object-rest-spread-7.17.3" 90488 sources."@babel/plugin-syntax-jsx-7.16.7" 90489 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 90491 sources."@babel/plugin-transform-parameters-7.16.7" 90492 sources."@babel/plugin-transform-react-jsx-7.17.3" 90493 sources."@babel/template-7.16.7" 90494 - sources."@babel/traverse-7.17.3" 90495 sources."@babel/types-7.17.0" 90496 sources."@jridgewell/resolve-uri-3.0.5" 90497 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 90534 sources."concat-map-0.0.1" 90535 (sources."conf-7.1.2" // { 90536 dependencies = [ 90537 - sources."semver-7.3.5" 90538 ]; 90539 }) 90540 sources."convert-source-map-1.8.0" ··· 90549 ]; 90550 }) 90551 sources."dot-prop-5.3.0" 90552 - sources."electron-to-chromium-1.4.103" 90553 sources."emoji-regex-8.0.0" 90554 sources."emojilib-2.4.0" 90555 sources."end-of-stream-1.4.4" ··· 90618 sources."locate-path-3.0.0" 90619 sources."lodash-4.17.21" 90620 sources."loose-envify-1.4.0" 90621 - sources."lru-cache-6.0.0" 90622 (sources."make-dir-3.1.0" // { 90623 dependencies = [ 90624 sources."semver-6.3.0" ··· 90744 }) 90745 sources."wrappy-1.0.2" 90746 sources."ws-7.5.7" 90747 - sources."yallist-4.0.0" 90748 sources."yargs-parser-18.1.3" 90749 sources."yoga-layout-prebuilt-1.10.0" 90750 ]; ··· 90783 dependencies = [ 90784 sources."@babel/code-frame-7.12.11" 90785 sources."@babel/helper-validator-identifier-7.16.7" 90786 - (sources."@babel/highlight-7.16.10" // { 90787 dependencies = [ 90788 sources."ansi-styles-3.2.1" 90789 sources."chalk-2.4.2" ··· 90817 sources."@fluentui/foundation-legacy-8.2.5" 90818 sources."@fluentui/keyboard-key-0.4.0" 90819 sources."@fluentui/merge-styles-8.5.0" 90820 - sources."@fluentui/react-8.64.0" 90821 sources."@fluentui/react-focus-8.5.6" 90822 sources."@fluentui/react-hooks-8.5.3" 90823 sources."@fluentui/react-window-provider-2.2.0" ··· 90844 ]; 90845 }) 90846 sources."@humanwhocodes/object-schema-1.2.1" 90847 - sources."@microsoft/load-themed-styles-1.10.250" 90848 sources."@node-rs/crc32-1.5.0" 90849 sources."@node-rs/crc32-android-arm-eabi-1.5.0" 90850 sources."@node-rs/crc32-android-arm64-1.5.0" ··· 91247 sources."enhanced-resolve-5.9.2" 91248 sources."enquirer-2.3.6" 91249 sources."error-ex-1.3.2" 91250 - sources."es5-ext-0.10.59" 91251 sources."es6-iterator-2.0.3" 91252 sources."es6-symbol-3.1.3" 91253 sources."es6-weak-map-2.0.3" ··· 91648 }) 91649 sources."loose-envify-1.4.0" 91650 sources."lowercase-keys-1.0.1" 91651 - sources."lru-cache-6.0.0" 91652 sources."lru-queue-0.1.0" 91653 sources."make-error-1.3.6" 91654 sources."make-iterator-1.0.1" ··· 91681 sources."mimic-response-1.0.1" 91682 sources."minimatch-3.1.2" 91683 sources."minimist-1.2.5" 91684 - (sources."minipass-2.9.0" // { 91685 - dependencies = [ 91686 - sources."yallist-3.1.1" 91687 - ]; 91688 - }) 91689 sources."minizlib-1.3.3" 91690 (sources."mirakurun-3.9.0-beta.26" // { 91691 dependencies = [ ··· 92032 sources."saslprep-1.0.3" 92033 sources."sax-1.2.4" 92034 sources."scheduler-0.20.2" 92035 - sources."semver-7.3.5" 92036 sources."semver-greatest-satisfied-range-1.1.0" 92037 (sources."send-0.17.1" // { 92038 dependencies = [ ··· 92177 sources."minimist-1.2.6" 92178 sources."mkdirp-0.5.6" 92179 sources."safe-buffer-5.2.1" 92180 - sources."yallist-3.1.1" 92181 ]; 92182 }) 92183 sources."text-table-0.2.0" ··· 92319 sources."xmlbuilder-11.0.1" 92320 sources."xtend-4.0.2" 92321 sources."y18n-5.0.8" 92322 - sources."yallist-4.0.0" 92323 (sources."yargonaut-1.1.4" // { 92324 dependencies = [ 92325 sources."ansi-styles-2.2.1" ··· 92360 sources."@achrinza/node-ipc-9.2.2" 92361 sources."@babel/code-frame-7.16.7" 92362 sources."@babel/helper-validator-identifier-7.16.7" 92363 - sources."@babel/highlight-7.16.10" 92364 (sources."@eslint/eslintrc-0.4.3" // { 92365 dependencies = [ 92366 sources."acorn-7.4.1" ··· 92536 dependencies = [ 92537 sources."lru-cache-5.1.1" 92538 sources."semver-6.3.0" 92539 - sources."yallist-3.1.1" 92540 ]; 92541 }) 92542 (sources."@vue/component-compiler-utils-3.3.0" // { ··· 92695 (sources."cacache-12.0.4" // { 92696 dependencies = [ 92697 sources."lru-cache-5.1.1" 92698 - sources."yallist-3.1.1" 92699 ]; 92700 }) 92701 sources."cache-base-1.0.1" ··· 92946 sources."dom-converter-0.2.0" 92947 (sources."dom-serializer-0.2.2" // { 92948 dependencies = [ 92949 - sources."domelementtype-2.2.0" 92950 ]; 92951 }) 92952 sources."domain-browser-1.2.0" 92953 sources."domelementtype-1.3.1" 92954 (sources."domhandler-4.3.1" // { 92955 dependencies = [ 92956 - sources."domelementtype-2.2.0" 92957 ]; 92958 }) 92959 sources."domutils-1.7.0" ··· 92966 sources."ecc-jsbn-0.1.2" 92967 sources."ee-first-1.1.1" 92968 sources."ejs-2.7.4" 92969 - sources."electron-to-chromium-1.4.103" 92970 (sources."elliptic-6.5.4" // { 92971 dependencies = [ 92972 sources."bn.js-4.12.0" ··· 93257 (sources."htmlparser2-6.1.0" // { 93258 dependencies = [ 93259 sources."dom-serializer-1.3.2" 93260 - sources."domelementtype-2.2.0" 93261 sources."domutils-2.8.0" 93262 ]; 93263 }) ··· 93403 sources."log-symbols-2.2.0" 93404 sources."loglevel-1.8.0" 93405 sources."lower-case-1.1.4" 93406 - sources."lru-cache-6.0.0" 93407 (sources."make-dir-2.1.0" // { 93408 dependencies = [ 93409 sources."semver-5.7.1" ··· 93446 sources."minimalistic-crypto-utils-1.0.1" 93447 sources."minimatch-3.1.2" 93448 sources."minimist-1.2.6" 93449 - sources."minipass-3.1.6" 93450 sources."mississippi-3.0.0" 93451 (sources."mixin-deep-1.3.2" // { 93452 dependencies = [ ··· 93760 sources."css-select-4.3.0" 93761 sources."css-what-6.1.0" 93762 sources."dom-serializer-1.3.2" 93763 - sources."domelementtype-2.2.0" 93764 sources."domutils-2.8.0" 93765 sources."nth-check-2.0.1" 93766 sources."strip-ansi-3.0.1" ··· 93810 sources."schema-utils-1.0.0" 93811 sources."select-hose-2.0.0" 93812 sources."selfsigned-1.10.14" 93813 - sources."semver-7.3.5" 93814 (sources."send-0.17.2" // { 93815 dependencies = [ 93816 (sources."debug-2.6.9" // { ··· 94280 sources."xmlhttprequest-ssl-2.0.0" 94281 sources."xtend-4.0.2" 94282 sources."y18n-4.0.3" 94283 - sources."yallist-4.0.0" 94284 sources."yaml-1.10.2" 94285 (sources."yargs-16.2.0" // { 94286 dependencies = [ ··· 94433 eslint_d = nodeEnv.buildNodePackage { 94434 name = "eslint_d"; 94435 packageName = "eslint_d"; 94436 - version = "11.1.1"; 94437 src = fetchurl { 94438 - url = "https://registry.npmjs.org/eslint_d/-/eslint_d-11.1.1.tgz"; 94439 - sha512 = "PaNWblwIa10KZUt9EObGBzrsaxB+CPtk5d99sTveXmAtQrPSmrntKpWqxN/Mwot0qnI5gCllzkPZi6tO710KUA=="; 94440 }; 94441 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" 94454 sources."@humanwhocodes/object-schema-1.2.1" 94455 - sources."acorn-7.4.1" 94456 sources."acorn-jsx-5.3.2" 94457 sources."ajv-6.12.6" 94458 - sources."ansi-colors-4.1.1" 94459 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" 94463 sources."balanced-match-1.0.2" 94464 sources."brace-expansion-1.1.11" 94465 sources."callsites-3.1.0" 94466 (sources."chalk-4.1.2" // { 94467 dependencies = [ 94468 - sources."ansi-styles-4.3.0" 94469 - sources."color-convert-2.0.1" 94470 - sources."color-name-1.1.4" 94471 sources."supports-color-7.2.0" 94472 ]; 94473 }) 94474 - sources."color-convert-1.9.3" 94475 - sources."color-name-1.1.3" 94476 sources."concat-map-0.0.1" 94477 - sources."core_d-3.2.0" 94478 sources."cross-spawn-7.0.3" 94479 sources."debug-4.3.4" 94480 sources."deep-is-0.1.4" 94481 sources."doctrine-3.0.0" 94482 - sources."emoji-regex-8.0.0" 94483 - sources."enquirer-2.3.6" 94484 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" // { 94488 dependencies = [ 94489 - sources."eslint-visitor-keys-1.3.0" 94490 ]; 94491 }) 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" 94510 sources."esutils-2.0.3" 94511 sources."fast-deep-equal-3.1.3" 94512 sources."fast-json-stable-stringify-2.1.0" ··· 94517 sources."fs.realpath-1.0.0" 94518 sources."functional-red-black-tree-1.0.1" 94519 sources."glob-7.2.0" 94520 - sources."glob-parent-5.1.2" 94521 sources."globals-13.13.0" 94522 sources."has-flag-4.0.0" 94523 - sources."ignore-4.0.6" 94524 sources."import-fresh-3.3.0" 94525 sources."imurmurhash-0.1.4" 94526 sources."inflight-1.0.6" 94527 sources."inherits-2.0.4" 94528 sources."is-extglob-2.1.1" 94529 - sources."is-fullwidth-code-point-3.0.0" 94530 sources."is-glob-4.0.3" 94531 sources."isexe-2.0.0" 94532 - sources."js-tokens-4.0.0" 94533 - sources."js-yaml-3.14.1" 94534 sources."json-schema-traverse-0.4.1" 94535 sources."json-stable-stringify-without-jsonify-1.0.1" 94536 sources."levn-0.4.1" 94537 sources."lodash.merge-4.6.2" 94538 - sources."lodash.truncate-4.4.2" 94539 - sources."lru-cache-6.0.0" 94540 sources."minimatch-3.1.2" 94541 sources."ms-2.1.2" 94542 sources."nanolru-1.0.0" ··· 94547 sources."path-is-absolute-1.0.1" 94548 sources."path-key-3.1.1" 94549 sources."prelude-ls-1.2.1" 94550 - sources."progress-2.0.3" 94551 sources."punycode-2.1.1" 94552 sources."regexpp-3.2.0" 94553 - sources."require-from-string-2.0.2" 94554 sources."resolve-from-4.0.0" 94555 sources."rimraf-3.0.2" 94556 - sources."semver-7.3.5" 94557 sources."shebang-command-2.0.0" 94558 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 sources."strip-ansi-6.0.1" 94569 sources."strip-json-comments-3.1.1" 94570 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 sources."text-table-0.2.0" 94578 sources."type-check-0.4.0" 94579 sources."type-fest-0.20.2" ··· 94582 sources."which-2.0.2" 94583 sources."word-wrap-1.2.3" 94584 sources."wrappy-1.0.2" 94585 - sources."yallist-4.0.0" 94586 ]; 94587 buildInputs = globalBuildInputs; 94588 meta = { ··· 94627 sources."semver-5.7.1" 94628 ]; 94629 }) 94630 - sources."@babel/generator-7.17.7" 94631 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" 94634 sources."@babel/helper-hoist-variables-7.16.7" 94635 sources."@babel/helper-module-imports-7.16.7" 94636 sources."@babel/helper-module-transforms-7.17.7" 94637 sources."@babel/helper-simple-access-7.17.7" 94638 sources."@babel/helper-split-export-declaration-7.16.7" 94639 sources."@babel/helper-validator-identifier-7.16.7" 94640 - sources."@babel/helpers-7.17.8" 94641 - (sources."@babel/highlight-7.16.10" // { 94642 dependencies = [ 94643 sources."chalk-2.4.2" 94644 ]; 94645 }) 94646 - sources."@babel/parser-7.17.8" 94647 sources."@babel/runtime-7.9.0" 94648 (sources."@babel/template-7.16.7" // { 94649 dependencies = [ 94650 sources."@babel/code-frame-7.16.7" 94651 ]; 94652 }) 94653 - (sources."@babel/traverse-7.17.3" // { 94654 dependencies = [ 94655 sources."@babel/code-frame-7.16.7" 94656 ]; ··· 94661 sources."@expo/config-6.0.19" 94662 (sources."@expo/config-plugins-4.1.0" // { 94663 dependencies = [ 94664 - sources."semver-7.3.5" 94665 ]; 94666 }) 94667 sources."@expo/config-types-44.0.0" ··· 94720 sources."@nodelib/fs.walk-1.2.8" 94721 (sources."@npmcli/fs-1.1.1" // { 94722 dependencies = [ 94723 - sources."semver-7.3.5" 94724 ]; 94725 }) 94726 (sources."@npmcli/move-file-1.1.2" // { ··· 94945 sources."bytes-3.0.0" 94946 (sources."cacache-15.3.0" // { 94947 dependencies = [ 94948 sources."minipass-3.1.6" 94949 sources."mkdirp-1.0.4" 94950 sources."rimraf-3.0.2" ··· 95206 ]; 95207 }) 95208 sources."domain-browser-1.2.0" 95209 - sources."domelementtype-2.2.0" 95210 sources."domhandler-3.3.0" 95211 sources."domino-2.1.6" 95212 (sources."domutils-2.8.0" // { ··· 95224 sources."duplexer3-0.1.4" 95225 sources."duplexify-3.7.1" 95226 sources."ee-first-1.1.1" 95227 - sources."electron-to-chromium-1.4.103" 95228 (sources."elliptic-6.5.4" // { 95229 dependencies = [ 95230 sources."bn.js-4.12.0" ··· 95460 sources."he-1.2.0" 95461 sources."hex-color-regex-1.1.0" 95462 sources."hmac-drbg-1.0.1" 95463 - sources."hosted-git-info-3.0.8" 95464 sources."hpack.js-2.1.6" 95465 sources."hsl-regex-1.0.0" 95466 sources."hsla-regex-1.0.0" ··· 95637 sources."jsonfile-6.1.0" 95638 sources."jsonify-0.0.0" 95639 sources."keychain-1.3.0" 95640 - sources."keyv-4.2.1" 95641 sources."killable-1.0.1" 95642 sources."kind-of-6.0.3" 95643 sources."kleur-3.0.3" ··· 95670 ]; 95671 }) 95672 sources."lowercase-keys-2.0.0" 95673 - sources."lru-cache-6.0.0" 95674 (sources."make-dir-2.1.0" // { 95675 dependencies = [ 95676 sources."semver-5.7.1" ··· 96393 sources."ws-3.3.3" 96394 ]; 96395 }) 96396 - (sources."sucrase-3.20.3" // { 96397 dependencies = [ 96398 sources."commander-4.1.1" 96399 ]; ··· 96414 sources."css-what-3.4.2" 96415 (sources."dom-serializer-0.2.2" // { 96416 dependencies = [ 96417 - sources."domelementtype-2.2.0" 96418 ]; 96419 }) 96420 sources."domelementtype-1.3.1" ··· 96782 sources."@ampproject/remapping-2.1.2" 96783 sources."@babel/code-frame-7.16.7" 96784 sources."@babel/compat-data-7.17.7" 96785 - sources."@babel/core-7.17.8" 96786 - sources."@babel/generator-7.17.7" 96787 sources."@babel/helper-annotate-as-pure-7.16.7" 96788 sources."@babel/helper-compilation-targets-7.17.7" 96789 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" 96792 sources."@babel/helper-hoist-variables-7.16.7" 96793 sources."@babel/helper-module-imports-7.16.7" 96794 sources."@babel/helper-module-transforms-7.17.7" ··· 96797 sources."@babel/helper-split-export-declaration-7.16.7" 96798 sources."@babel/helper-validator-identifier-7.16.7" 96799 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" 96803 sources."@babel/plugin-proposal-object-rest-spread-7.17.3" 96804 sources."@babel/plugin-syntax-jsx-7.16.7" 96805 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 96807 sources."@babel/plugin-transform-parameters-7.16.7" 96808 sources."@babel/plugin-transform-react-jsx-7.17.3" 96809 sources."@babel/template-7.16.7" 96810 - sources."@babel/traverse-7.17.3" 96811 sources."@babel/types-7.17.0" 96812 sources."@jridgewell/resolve-uri-3.0.5" 96813 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 96865 }) 96866 sources."delay-5.0.0" 96867 sources."devtools-protocol-0.0.969999" 96868 - sources."electron-to-chromium-1.4.103" 96869 sources."emoji-regex-8.0.0" 96870 sources."end-of-stream-1.4.4" 96871 sources."error-ex-1.3.2" ··· 96935 sources."node-releases-2.0.2" 96936 (sources."normalize-package-data-3.0.3" // { 96937 dependencies = [ 96938 - sources."semver-7.3.5" 96939 ]; 96940 }) 96941 sources."object-assign-4.1.1" ··· 97307 sources."lodash.templatesettings-4.2.0" 97308 sources."log-symbols-4.1.0" 97309 sources."lowercase-keys-1.0.1" 97310 - sources."lru-cache-6.0.0" 97311 sources."merge2-1.4.1" 97312 sources."micromatch-4.0.5" 97313 sources."mime-db-1.52.0" ··· 97372 sources."rxjs-7.5.5" 97373 sources."safe-buffer-5.2.1" 97374 sources."safer-buffer-2.1.2" 97375 - sources."semver-7.3.5" 97376 sources."shebang-command-1.2.0" 97377 sources."shebang-regex-1.0.0" 97378 sources."signal-exit-3.0.7" ··· 97428 sources."widest-line-3.1.0" 97429 sources."word-wrap-1.2.3" 97430 sources."wrap-ansi-7.0.0" 97431 - sources."yallist-4.0.0" 97432 ]; 97433 buildInputs = globalBuildInputs; 97434 meta = { ··· 97467 sources."@jsdevtools/ono-7.1.3" 97468 (sources."@npmcli/fs-1.1.1" // { 97469 dependencies = [ 97470 - sources."semver-7.3.5" 97471 ]; 97472 }) 97473 (sources."@npmcli/move-file-1.1.2" // { ··· 97578 sources."bytes-3.1.2" 97579 (sources."cacache-15.3.0" // { 97580 dependencies = [ 97581 sources."mkdirp-1.0.4" 97582 ]; 97583 }) ··· 97710 sources."end-of-stream-1.4.4" 97711 sources."env-paths-2.2.1" 97712 sources."err-code-2.0.3" 97713 - sources."es5-ext-0.10.59" 97714 sources."es6-iterator-2.0.3" 97715 sources."es6-symbol-3.1.3" 97716 sources."es6-weak-map-2.0.3" ··· 97730 dependencies = [ 97731 sources."ajv-8.11.0" 97732 sources."json-schema-traverse-1.0.0" 97733 - sources."semver-7.3.5" 97734 ]; 97735 }) 97736 sources."exegesis-express-4.0.0" ··· 97829 sources."glob-slash-1.0.0" 97830 sources."glob-slasher-1.0.1" 97831 sources."global-dirs-2.1.0" 97832 - sources."google-auth-library-7.14.1" 97833 sources."google-gax-2.29.6" 97834 sources."google-p12-pem-3.1.3" 97835 sources."got-9.6.0" ··· 97956 sources."logform-2.4.0" 97957 sources."long-4.0.0" 97958 sources."lowercase-keys-1.0.1" 97959 - sources."lru-cache-6.0.0" 97960 sources."lru-queue-0.1.0" 97961 (sources."make-dir-3.1.0" // { 97962 dependencies = [ ··· 97965 }) 97966 (sources."make-fetch-happen-9.1.0" // { 97967 dependencies = [ 97968 sources."socks-proxy-agent-6.1.1" 97969 ]; 97970 }) ··· 98023 sources."node-forge-1.3.1" 98024 (sources."node-gyp-8.4.1" // { 98025 dependencies = [ 98026 - sources."semver-7.3.5" 98027 sources."which-2.0.2" 98028 ]; 98029 }) ··· 98270 sources."ini-2.0.0" 98271 sources."is-installed-globally-0.4.0" 98272 sources."is-npm-5.0.0" 98273 - sources."semver-7.3.5" 98274 sources."type-fest-0.20.2" 98275 ]; 98276 }) ··· 98380 dependencies = [ 98381 sources."@babel/code-frame-7.16.7" 98382 sources."@babel/helper-validator-identifier-7.16.7" 98383 - (sources."@babel/highlight-7.16.10" // { 98384 dependencies = [ 98385 sources."ansi-styles-3.2.1" 98386 sources."chalk-2.4.2" ··· 98539 sources."rxjs-7.5.5" 98540 sources."safe-buffer-5.2.1" 98541 sources."safer-buffer-2.1.2" 98542 - sources."semver-7.3.5" 98543 sources."shebang-command-2.0.0" 98544 sources."shebang-regex-3.0.0" 98545 sources."signal-exit-3.0.7" ··· 99339 sources."@ampproject/remapping-2.1.2" 99340 sources."@babel/code-frame-7.16.7" 99341 sources."@babel/compat-data-7.17.7" 99342 - (sources."@babel/core-7.17.8" // { 99343 dependencies = [ 99344 sources."semver-6.3.0" 99345 ]; 99346 }) 99347 - (sources."@babel/generator-7.17.7" // { 99348 dependencies = [ 99349 sources."source-map-0.5.7" 99350 ]; ··· 99355 sources."semver-6.3.0" 99356 ]; 99357 }) 99358 - sources."@babel/helper-create-class-features-plugin-7.17.6" 99359 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" 99362 sources."@babel/helper-hoist-variables-7.16.7" 99363 sources."@babel/helper-member-expression-to-functions-7.17.7" 99364 sources."@babel/helper-module-imports-7.16.7" ··· 99370 sources."@babel/helper-split-export-declaration-7.16.7" 99371 sources."@babel/helper-validator-identifier-7.16.7" 99372 sources."@babel/helper-validator-option-7.16.7" 99373 - sources."@babel/helpers-7.17.8" 99374 - (sources."@babel/highlight-7.16.10" // { 99375 dependencies = [ 99376 sources."chalk-2.4.2" 99377 ]; 99378 }) 99379 - sources."@babel/parser-7.17.8" 99380 sources."@babel/plugin-syntax-typescript-7.16.7" 99381 sources."@babel/plugin-transform-typescript-7.16.8" 99382 sources."@babel/preset-typescript-7.16.7" 99383 - sources."@babel/runtime-7.17.8" 99384 sources."@babel/template-7.16.7" 99385 - sources."@babel/traverse-7.17.3" 99386 sources."@babel/types-7.17.0" 99387 sources."@hapi/hoek-9.2.1" 99388 sources."@hapi/topo-5.1.0" ··· 99491 sources."delayed-stream-1.0.0" 99492 sources."dom-converter-0.2.0" 99493 sources."dom-serializer-1.3.2" 99494 - sources."domelementtype-2.2.0" 99495 sources."domhandler-4.3.1" 99496 sources."domutils-2.8.0" 99497 sources."dot-prop-5.3.0" 99498 sources."duplexer3-0.1.4" 99499 - sources."electron-to-chromium-1.4.103" 99500 sources."emoji-regex-8.0.0" 99501 sources."end-of-stream-1.4.4" 99502 sources."entities-2.2.0" ··· 99596 sources."json-buffer-3.0.1" 99597 sources."json5-2.2.1" 99598 sources."jsonfile-6.1.0" 99599 - sources."keyv-4.2.1" 99600 sources."kleur-3.0.3" 99601 sources."latest-version-5.1.0" 99602 sources."lmdb-2.2.6" ··· 99620 sources."minimist-1.2.6" 99621 sources."ms-2.1.2" 99622 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 - }) 99628 sources."msgpackr-extract-darwin-arm64-1.1.0" 99629 sources."msgpackr-extract-darwin-x64-1.1.0" 99630 sources."msgpackr-extract-linux-arm-1.1.0" ··· 99636 sources."nice-try-1.0.5" 99637 sources."node-fetch-2.6.7" 99638 sources."node-gyp-build-4.4.0" 99639 sources."node-object-hash-2.3.10" 99640 sources."node-releases-2.0.2" 99641 sources."normalize-url-6.1.0" ··· 99724 sources."rxjs-6.6.7" 99725 sources."safe-buffer-5.1.2" 99726 sources."safer-buffer-2.1.2" 99727 - sources."semver-7.3.5" 99728 (sources."semver-diff-3.1.1" // { 99729 dependencies = [ 99730 sources."semver-6.3.0" ··· 99827 dependencies = [ 99828 sources."@babel/code-frame-7.16.7" 99829 sources."@babel/helper-validator-identifier-7.16.7" 99830 - (sources."@babel/highlight-7.16.10" // { 99831 dependencies = [ 99832 sources."ansi-styles-3.2.1" 99833 sources."chalk-2.4.2" ··· 99897 sources."lines-and-columns-1.2.4" 99898 sources."locate-path-5.0.0" 99899 sources."lodash-4.17.21" 99900 - sources."lru-cache-6.0.0" 99901 sources."merge-stream-2.0.0" 99902 sources."mimic-fn-2.1.0" 99903 sources."minimatch-3.1.2" ··· 99934 sources."resolve-1.22.0" 99935 sources."run-async-2.4.1" 99936 sources."sanitize-filename-1.6.3" 99937 - sources."semver-7.3.5" 99938 sources."shebang-command-2.0.0" 99939 sources."shebang-regex-3.0.0" 99940 sources."shelljs-0.8.5" ··· 99972 ]; 99973 }) 99974 sources."wrappy-1.0.2" 99975 - sources."yallist-4.0.0" 99976 sources."yeoman-generator-5.6.1" 99977 (sources."yosay-2.0.2" // { 99978 dependencies = [ ··· 100333 sources."is-interactive-2.0.0" 100334 sources."is-unicode-supported-1.2.0" 100335 sources."json-buffer-3.0.1" 100336 - sources."keyv-4.2.1" 100337 sources."li-1.3.0" 100338 (sources."log-symbols-5.1.0" // { 100339 dependencies = [ ··· 100399 dependencies = [ 100400 sources."@babel/code-frame-7.16.7" 100401 sources."@babel/helper-validator-identifier-7.16.7" 100402 - (sources."@babel/highlight-7.16.10" // { 100403 dependencies = [ 100404 sources."ansi-styles-3.2.1" 100405 sources."chalk-2.4.2" ··· 100521 sources."has-1.0.3" 100522 sources."has-flag-4.0.0" 100523 sources."has-yarn-2.1.0" 100524 - sources."hosted-git-info-4.1.0" 100525 sources."http-cache-semantics-4.1.0" 100526 sources."http-errors-2.0.0" 100527 sources."http-proxy-agent-4.0.1" ··· 100576 sources."lodash-4.17.21" 100577 sources."log-symbols-4.1.0" 100578 sources."lowercase-keys-1.0.1" 100579 - sources."lru-cache-6.0.0" 100580 (sources."make-dir-3.1.0" // { 100581 dependencies = [ 100582 sources."semver-6.3.0" ··· 100674 sources."rxjs-7.5.5" 100675 sources."safe-buffer-5.2.1" 100676 sources."safer-buffer-2.1.2" 100677 - sources."semver-7.3.5" 100678 (sources."semver-diff-3.1.1" // { 100679 dependencies = [ 100680 sources."semver-6.3.0" ··· 100945 sources."@ardatan/aggregate-error-0.0.6" 100946 sources."@babel/code-frame-7.16.7" 100947 sources."@babel/helper-validator-identifier-7.16.7" 100948 - (sources."@babel/highlight-7.16.10" // { 100949 dependencies = [ 100950 sources."ansi-styles-3.2.1" 100951 sources."chalk-2.4.2" ··· 100986 sources."tslib-2.1.0" 100987 ]; 100988 }) 100989 - (sources."@graphql-tools/import-6.6.9" // { 100990 dependencies = [ 100991 - sources."@graphql-tools/utils-8.6.5" 100992 sources."tslib-2.3.1" 100993 ]; 100994 }) ··· 101013 sources."tslib-2.3.1" 101014 ]; 101015 }) 101016 - (sources."@graphql-tools/schema-8.3.6" // { 101017 dependencies = [ 101018 - sources."@graphql-tools/merge-8.2.6" 101019 - sources."@graphql-tools/utils-8.6.5" 101020 sources."tslib-2.3.1" 101021 ]; 101022 }) ··· 101524 dependencies = [ 101525 sources."@babel/code-frame-7.16.7" 101526 sources."@babel/helper-validator-identifier-7.16.7" 101527 - (sources."@babel/highlight-7.16.10" // { 101528 dependencies = [ 101529 sources."ansi-styles-3.2.1" 101530 sources."chalk-2.4.2" ··· 101537 }) 101538 sources."@cronvel/get-pixels-3.4.0" 101539 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" // { 101549 dependencies = [ 101550 (sources."subscriptions-transport-ws-0.11.0" // { 101551 dependencies = [ ··· 101555 sources."ws-8.5.0" 101556 ]; 101557 }) 101558 - sources."@graphql-tools/utils-8.6.5" 101559 - sources."@graphql-tools/wrap-8.4.10" 101560 sources."@iarna/toml-2.2.5" 101561 sources."@n1ru4l/graphql-live-query-0.9.0" 101562 sources."@nodelib/fs.scandir-2.1.5" ··· 101758 sources."lodash.get-4.4.2" 101759 sources."lodash.template-4.5.0" 101760 sources."lodash.templatesettings-4.2.0" 101761 - sources."lru-cache-6.0.0" 101762 sources."make-error-1.3.6" 101763 sources."media-typer-0.3.0" 101764 sources."merge-descriptors-1.0.1" ··· 101811 sources."reusify-1.0.4" 101812 sources."run-parallel-1.2.0" 101813 sources."safe-buffer-5.1.1" 101814 - sources."semver-7.3.5" 101815 (sources."send-0.16.2" // { 101816 dependencies = [ 101817 sources."debug-2.6.9" ··· 101875 sources."widest-line-3.1.0" 101876 sources."wrap-ansi-7.0.0" 101877 sources."ws-7.4.2" 101878 - sources."yallist-4.0.0" 101879 sources."yaml-1.10.2" 101880 sources."yn-3.1.1" 101881 sources."yocto-queue-0.1.0" ··· 102324 sources."each-props-1.3.2" 102325 sources."end-of-stream-1.4.4" 102326 sources."error-ex-1.3.2" 102327 - sources."es5-ext-0.10.59" 102328 sources."es6-iterator-2.0.3" 102329 sources."es6-symbol-3.1.3" 102330 sources."es6-weak-map-2.0.3" ··· 102744 ]; 102745 }) 102746 sources."error-ex-1.3.2" 102747 - sources."es5-ext-0.10.59" 102748 sources."es6-iterator-2.0.3" 102749 sources."es6-symbol-3.1.3" 102750 (sources."expand-brackets-2.1.4" // { ··· 103382 sources."assert-plus-1.0.0" 103383 sources."async-2.6.3" 103384 sources."asynckit-0.4.0" 103385 - sources."aws-sdk-2.1107.0" 103386 sources."aws-sign2-0.7.0" 103387 sources."aws4-1.11.0" 103388 sources."base64-js-1.5.1" ··· 104066 sources."diagnostic-channel-publishers-0.4.4" 104067 sources."discontinuous-range-1.0.0" 104068 sources."dom-serializer-1.3.2" 104069 - sources."domelementtype-2.2.0" 104070 sources."domhandler-4.3.1" 104071 sources."domutils-2.8.0" 104072 sources."ecc-jsbn-0.1.2" ··· 104096 sources."har-schema-2.0.0" 104097 sources."har-validator-5.1.5" 104098 sources."he-1.2.0" 104099 - sources."html-to-text-8.1.0" 104100 sources."htmlparser2-6.1.0" 104101 sources."http-signature-1.2.0" 104102 sources."inflight-1.0.6" ··· 104152 sources."safe-buffer-5.2.1" 104153 sources."safer-buffer-2.1.2" 104154 sources."selderee-0.6.0" 104155 - sources."semver-7.3.5" 104156 sources."shimmer-1.2.1" 104157 sources."sigmund-1.0.1" 104158 sources."sshpk-1.17.0" ··· 104636 sources."resumer-0.0.0" 104637 sources."safer-buffer-2.1.2" 104638 sources."semaphore-async-await-1.5.1" 104639 - (sources."semver-7.3.5" // { 104640 dependencies = [ 104641 - sources."lru-cache-6.0.0" 104642 ]; 104643 }) 104644 sources."seq-0.3.5" ··· 104669 sources."wrap-ansi-7.0.0" 104670 sources."xpath-0.0.32" 104671 sources."y18n-5.0.8" 104672 - sources."yallist-4.0.0" 104673 sources."yargs-16.2.0" 104674 sources."yargs-parser-20.2.9" 104675 ]; ··· 104989 sources."async-mutex-0.1.4" 104990 sources."asynckit-0.4.0" 104991 sources."atob-2.1.2" 104992 - (sources."aws-sdk-2.1108.0" // { 104993 dependencies = [ 104994 sources."sax-1.2.1" 104995 sources."uuid-3.3.2" ··· 105054 ]; 105055 }) 105056 sources."cwise-compiler-1.1.3" 105057 - sources."d3-7.4.2" 105058 - sources."d3-array-3.1.4" 105059 sources."d3-axis-3.0.0" 105060 sources."d3-brush-3.0.0" 105061 sources."d3-chord-3.0.1" ··· 105147 sources."domhandler-4.3.1" 105148 ]; 105149 }) 105150 - sources."domelementtype-2.2.0" 105151 sources."domexception-1.0.1" 105152 sources."domhandler-3.3.0" 105153 sources."dompurify-2.3.5" ··· 105339 sources."highlight.js-9.12.0" 105340 ]; 105341 }) 105342 - sources."lru-cache-6.0.0" 105343 sources."magicli-0.0.8" 105344 (sources."markdown-it-10.0.0" // { 105345 dependencies = [ ··· 105370 sources."mimic-response-3.1.0" 105371 sources."minimatch-3.1.2" 105372 sources."minimist-1.2.6" 105373 - (sources."minipass-2.9.0" // { 105374 - dependencies = [ 105375 - sources."yallist-3.1.1" 105376 - ]; 105377 - }) 105378 sources."minizlib-1.3.3" 105379 sources."mkdirp-0.5.6" 105380 sources."mkdirp-classic-0.5.3" ··· 105507 sources."safer-buffer-2.1.2" 105508 sources."sax-1.2.4" 105509 sources."saxes-3.1.11" 105510 - sources."semver-7.3.5" 105511 sources."server-destroy-1.0.1" 105512 sources."set-blocking-2.0.0" 105513 sources."setimmediate-1.0.5" ··· 105585 sources."symbol-observable-1.2.0" 105586 sources."symbol-tree-3.2.4" 105587 sources."table-layout-0.4.5" 105588 - (sources."tar-4.4.19" // { 105589 - dependencies = [ 105590 - sources."yallist-3.1.1" 105591 - ]; 105592 - }) 105593 sources."tar-fs-2.1.1" 105594 (sources."tar-stream-2.2.0" // { 105595 dependencies = [ ··· 105671 sources."xml2js-0.4.23" 105672 sources."xmlbuilder-11.0.1" 105673 sources."xmlchars-2.2.0" 105674 - sources."yallist-4.0.0" 105675 sources."yargs-parser-7.0.0" 105676 ]; 105677 buildInputs = globalBuildInputs; ··· 105757 sha512 = "IdQ8ppSo5LKZ9o3M+LKIIK8i00DIe5msDvG3G81Km+1dhy0XrOWD0Ji8H61ElgyEj/O9KRLokgKbAM9XX9CJAg=="; 105758 }; 105759 dependencies = [ 105760 - sources."@babel/parser-7.17.8" 105761 sources."@types/linkify-it-3.0.2" 105762 sources."@types/markdown-it-12.2.3" 105763 sources."@types/mdurl-1.0.2" ··· 105810 sources."date-now-0.1.4" 105811 (sources."dom-serializer-0.2.2" // { 105812 dependencies = [ 105813 - sources."domelementtype-2.2.0" 105814 sources."entities-2.2.0" 105815 ]; 105816 }) ··· 105874 sources."d-1.0.1" 105875 sources."difflib-0.2.4" 105876 sources."dreamopt-0.8.0" 105877 - sources."es5-ext-0.10.59" 105878 sources."es6-iterator-2.0.3" 105879 sources."es6-symbol-3.1.3" 105880 sources."es6-weak-map-2.0.3" ··· 106099 sources."lodash-id-0.14.1" 106100 sources."lowdb-1.0.0" 106101 sources."lowercase-keys-1.0.1" 106102 - sources."lru-cache-6.0.0" 106103 (sources."make-dir-3.1.0" // { 106104 dependencies = [ 106105 sources."semver-6.3.0" ··· 106161 sources."responselike-1.0.2" 106162 sources."safe-buffer-5.1.2" 106163 sources."safer-buffer-2.1.2" 106164 - sources."semver-7.3.5" 106165 sources."semver-compare-1.0.0" 106166 (sources."semver-diff-3.1.1" // { 106167 dependencies = [ ··· 106206 sources."write-file-atomic-3.0.3" 106207 sources."xdg-basedir-4.0.0" 106208 sources."y18n-5.0.8" 106209 - sources."yallist-4.0.0" 106210 sources."yargs-17.4.0" 106211 sources."yargs-parser-21.0.1" 106212 ]; ··· 106933 sources."dotenv-8.6.0" 106934 sources."emoji-regex-8.0.0" 106935 sources."env-paths-2.2.1" 106936 - sources."es5-ext-0.10.59" 106937 sources."es6-iterator-2.0.3" 106938 sources."es6-symbol-3.1.3" 106939 sources."escape-string-regexp-4.0.0" ··· 106986 sources."jsonfile-4.0.0" 106987 sources."locate-path-3.0.0" 106988 sources."lodash-4.17.21" 106989 - sources."lru-cache-6.0.0" 106990 (sources."make-dir-3.1.0" // { 106991 dependencies = [ 106992 sources."semver-6.3.0" ··· 107035 ]; 107036 }) 107037 sources."safer-buffer-2.1.2" 107038 - sources."semver-7.3.5" 107039 sources."shebang-command-1.2.0" 107040 sources."shebang-regex-1.0.0" 107041 sources."side-channel-1.0.4" ··· 107061 sources."widest-line-3.1.0" 107062 sources."wrap-ansi-7.0.0" 107063 sources."write-file-atomic-3.0.3" 107064 - sources."yallist-4.0.0" 107065 ]; 107066 buildInputs = globalBuildInputs; 107067 meta = { ··· 107284 sources."@babel/cli-7.17.6" 107285 sources."@babel/code-frame-7.16.7" 107286 sources."@babel/compat-data-7.17.7" 107287 - (sources."@babel/core-7.17.8" // { 107288 dependencies = [ 107289 sources."semver-6.3.0" 107290 ]; 107291 }) 107292 - sources."@babel/generator-7.17.7" 107293 sources."@babel/helper-annotate-as-pure-7.16.7" 107294 (sources."@babel/helper-compilation-targets-7.17.7" // { 107295 dependencies = [ ··· 107297 ]; 107298 }) 107299 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" 107302 sources."@babel/helper-hoist-variables-7.16.7" 107303 sources."@babel/helper-module-imports-7.16.7" 107304 sources."@babel/helper-module-transforms-7.17.7" ··· 107307 sources."@babel/helper-split-export-declaration-7.16.7" 107308 sources."@babel/helper-validator-identifier-7.16.7" 107309 sources."@babel/helper-validator-option-7.16.7" 107310 - sources."@babel/helpers-7.17.8" 107311 - sources."@babel/highlight-7.16.10" 107312 sources."@babel/node-7.16.8" 107313 - sources."@babel/parser-7.17.8" 107314 sources."@babel/plugin-syntax-jsx-7.16.7" 107315 sources."@babel/plugin-transform-react-jsx-7.17.3" 107316 sources."@babel/register-7.17.7" 107317 sources."@babel/template-7.16.7" 107318 - sources."@babel/traverse-7.17.3" 107319 sources."@babel/types-7.17.0" 107320 sources."@jridgewell/resolve-uri-3.0.5" 107321 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 107475 }) 107476 sources."dotenv-8.6.0" 107477 sources."ee-first-1.1.1" 107478 - sources."electron-to-chromium-1.4.103" 107479 sources."emoji-regex-8.0.0" 107480 sources."encodeurl-1.0.2" 107481 sources."end-of-stream-1.4.4" ··· 107628 sources."levn-0.3.0" 107629 sources."locate-path-3.0.0" 107630 sources."lodash-4.17.21" 107631 - sources."lru-cache-6.0.0" 107632 sources."ltx-3.0.0" 107633 sources."make-dir-2.1.0" 107634 sources."md5.js-1.3.5" ··· 107702 sources."color-convert-2.0.1" 107703 sources."color-name-1.1.4" 107704 sources."has-flag-4.0.0" 107705 - sources."semver-7.3.5" 107706 sources."supports-color-7.2.0" 107707 ]; 107708 }) ··· 107838 sources."xml-name-validator-3.0.0" 107839 sources."xmlchars-2.2.0" 107840 sources."y18n-5.0.8" 107841 - sources."yallist-4.0.0" 107842 (sources."yargs-16.2.0" // { 107843 dependencies = [ 107844 sources."is-fullwidth-code-point-3.0.0" ··· 108467 dependencies = [ 108468 sources."@babel/code-frame-7.16.7" 108469 sources."@babel/helper-validator-identifier-7.16.7" 108470 - (sources."@babel/highlight-7.16.10" // { 108471 dependencies = [ 108472 sources."ansi-styles-3.2.1" 108473 sources."chalk-2.4.2" ··· 108721 sources."depd-1.1.2" 108722 sources."deprecation-2.3.1" 108723 sources."detect-indent-5.0.0" 108724 - sources."dezalgo-1.0.3" 108725 sources."dir-glob-3.0.1" 108726 sources."dot-prop-6.0.1" 108727 sources."duplexer-0.1.2" ··· 109094 sources."rxjs-6.6.7" 109095 sources."safe-buffer-5.2.1" 109096 sources."safer-buffer-2.1.2" 109097 - sources."semver-7.3.5" 109098 sources."set-blocking-2.0.0" 109099 sources."shallow-clone-3.0.1" 109100 sources."shebang-command-2.0.0" ··· 110162 sources."@ampproject/remapping-2.1.2" 110163 sources."@babel/code-frame-7.16.7" 110164 sources."@babel/compat-data-7.17.7" 110165 - sources."@babel/core-7.17.8" 110166 - sources."@babel/generator-7.17.7" 110167 sources."@babel/helper-annotate-as-pure-7.16.7" 110168 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 110169 sources."@babel/helper-compilation-targets-7.17.7" 110170 - sources."@babel/helper-create-class-features-plugin-7.17.6" 110171 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 110172 sources."@babel/helper-define-polyfill-provider-0.3.1" 110173 sources."@babel/helper-environment-visitor-7.16.7" 110174 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" 110177 sources."@babel/helper-hoist-variables-7.16.7" 110178 sources."@babel/helper-member-expression-to-functions-7.17.7" 110179 sources."@babel/helper-module-imports-7.16.7" ··· 110188 sources."@babel/helper-validator-identifier-7.16.7" 110189 sources."@babel/helper-validator-option-7.16.7" 110190 sources."@babel/helper-wrap-function-7.16.8" 110191 - sources."@babel/helpers-7.17.8" 110192 - (sources."@babel/highlight-7.16.10" // { 110193 dependencies = [ 110194 sources."chalk-2.4.2" 110195 ]; 110196 }) 110197 - sources."@babel/parser-7.17.8" 110198 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 110199 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 110200 sources."@babel/plugin-external-helpers-7.8.3" ··· 110244 sources."@babel/plugin-transform-literals-7.16.7" 110245 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 110246 sources."@babel/plugin-transform-modules-amd-7.16.7" 110247 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 110248 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 110249 sources."@babel/plugin-transform-modules-umd-7.16.7" 110250 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 110252 sources."@babel/plugin-transform-object-super-7.16.7" 110253 sources."@babel/plugin-transform-parameters-7.16.7" 110254 sources."@babel/plugin-transform-property-literals-7.16.7" 110255 - sources."@babel/plugin-transform-regenerator-7.16.7" 110256 sources."@babel/plugin-transform-reserved-words-7.16.7" 110257 sources."@babel/plugin-transform-runtime-7.17.0" 110258 sources."@babel/plugin-transform-shorthand-properties-7.16.7" ··· 110265 sources."@babel/preset-env-7.16.11" 110266 sources."@babel/preset-modules-0.1.5" 110267 sources."@babel/preset-stage-2-7.8.3" 110268 - sources."@babel/runtime-7.17.8" 110269 sources."@babel/template-7.16.7" 110270 - sources."@babel/traverse-7.17.3" 110271 sources."@babel/types-7.17.0" 110272 sources."@cnakazawa/watch-1.0.4" 110273 sources."@comandeer/babel-plugin-banner-5.0.0" ··· 110588 sources."duplexer2-0.1.4" 110589 sources."duplexify-3.7.1" 110590 sources."ecc-jsbn-0.1.2" 110591 - sources."electron-to-chromium-1.4.103" 110592 (sources."elliptic-6.5.4" // { 110593 dependencies = [ 110594 sources."bn.js-4.12.0" ··· 110982 sources."regenerate-1.4.2" 110983 sources."regenerate-unicode-properties-10.0.1" 110984 sources."regenerator-runtime-0.13.9" 110985 - sources."regenerator-transform-0.14.5" 110986 sources."regex-not-1.0.2" 110987 sources."regexpu-core-5.0.1" 110988 sources."regjsgen-0.6.0" ··· 111686 sources."commander-6.2.1" 111687 sources."debug-3.2.7" 111688 sources."has-flag-4.0.0" 111689 - sources."iconv-lite-0.4.24" 111690 sources."is-absolute-url-3.0.3" 111691 sources."is-relative-url-3.0.0" 111692 sources."isemail-3.2.0" ··· 111695 sources."markdown-link-extractor-2.0.1" 111696 sources."marked-4.0.12" 111697 sources."ms-2.1.3" 111698 - sources."needle-3.0.0" 111699 sources."progress-2.0.3" 111700 sources."punycode-2.1.1" 111701 sources."safer-buffer-2.1.2" ··· 111899 }) 111900 sources."ecc-jsbn-0.1.2" 111901 sources."entities-1.1.2" 111902 - sources."es5-ext-0.10.59" 111903 sources."es6-iterator-2.0.3" 111904 sources."es6-map-0.1.5" 111905 (sources."es6-set-0.1.5" // { ··· 112210 sources."commander-9.1.0" 112211 sources."concat-map-0.0.1" 112212 sources."cross-fetch-3.1.5" 112213 - sources."d3-7.4.2" 112214 - sources."d3-array-3.1.4" 112215 sources."d3-axis-3.0.0" 112216 sources."d3-brush-3.0.0" 112217 sources."d3-chord-3.0.1" ··· 112622 dependencies = [ 112623 sources."@babel/code-frame-7.16.7" 112624 sources."@babel/helper-validator-identifier-7.16.7" 112625 - (sources."@babel/highlight-7.16.10" // { 112626 dependencies = [ 112627 sources."ansi-styles-3.2.1" 112628 sources."chalk-2.4.2" ··· 112819 sources."latest-version-5.1.0" 112820 sources."lodash-4.17.21" 112821 sources."lowercase-keys-1.0.1" 112822 - sources."lru-cache-6.0.0" 112823 (sources."make-dir-3.1.0" // { 112824 dependencies = [ 112825 sources."semver-6.3.0" ··· 112893 sources."ripemd160-2.0.2" 112894 sources."rxjs-6.6.7" 112895 sources."safe-buffer-5.2.1" 112896 - sources."semver-7.3.5" 112897 (sources."semver-diff-3.1.1" // { 112898 dependencies = [ 112899 sources."semver-6.3.0" ··· 112963 sources."write-file-atomic-3.0.3" 112964 sources."xdg-basedir-4.0.0" 112965 sources."y18n-5.0.8" 112966 - sources."yallist-4.0.0" 112967 sources."yargs-16.2.0" 112968 sources."yargs-parser-20.2.9" 112969 ]; ··· 113003 sources."is-stream-2.0.1" 113004 sources."kuler-2.0.0" 113005 sources."logform-2.4.0" 113006 - sources."lru-cache-6.0.0" 113007 sources."ms-2.1.3" 113008 sources."one-time-1.0.0" 113009 sources."readable-stream-3.6.0" 113010 sources."safe-buffer-5.2.1" 113011 sources."safe-stable-stringify-2.3.1" 113012 - sources."semver-7.3.5" 113013 sources."simple-swizzle-0.2.2" 113014 sources."stack-trace-0.0.10" 113015 sources."string_decoder-1.3.0" ··· 113018 sources."util-deprecate-1.0.2" 113019 sources."winston-3.3.3" 113020 sources."winston-transport-4.5.0" 113021 - sources."yallist-4.0.0" 113022 ]; 113023 buildInputs = globalBuildInputs; 113024 meta = { ··· 113063 dependencies = [ 113064 sources."@gar/promisify-1.1.3" 113065 sources."@npmcli/fs-2.1.0" 113066 - sources."@npmcli/move-file-1.1.2" 113067 sources."@tootallnate/once-2.0.0" 113068 sources."abbrev-1.1.1" 113069 sources."agent-base-6.0.2" ··· 113074 sources."are-we-there-yet-3.0.0" 113075 sources."balanced-match-1.0.2" 113076 sources."brace-expansion-1.1.11" 113077 - (sources."cacache-16.0.3" // { 113078 - dependencies = [ 113079 - sources."ssri-8.0.1" 113080 - ]; 113081 - }) 113082 sources."chownr-2.0.0" 113083 sources."clean-stack-2.2.0" 113084 sources."color-support-1.1.3" ··· 113111 sources."is-fullwidth-code-point-3.0.0" 113112 sources."is-lambda-1.0.1" 113113 sources."isexe-2.0.0" 113114 - sources."lru-cache-7.7.3" 113115 sources."make-fetch-happen-10.1.2" 113116 sources."minimatch-3.1.2" 113117 sources."minipass-3.1.6" ··· 113136 sources."rimraf-3.0.2" 113137 sources."safe-buffer-5.2.1" 113138 sources."safer-buffer-2.1.2" 113139 - (sources."semver-7.3.5" // { 113140 - dependencies = [ 113141 - sources."lru-cache-6.0.0" 113142 - ]; 113143 - }) 113144 sources."set-blocking-2.0.0" 113145 sources."signal-exit-3.0.7" 113146 sources."smart-buffer-4.2.0" ··· 113593 sha512 = "DAx4v9/W2MEBb/tHNO94bmjeELdAg7CVZlPJX+UBH1RsmXB0q/3ZYW1Zi55NVMVN/0sBBO1g+dI/L0NWCG8s9A=="; 113594 }; 113595 dependencies = [ 113596 - sources."@babel/runtime-7.17.8" 113597 sources."@mapbox/node-pre-gyp-1.0.9" 113598 sources."@node-red/editor-api-2.2.2" 113599 sources."@node-red/editor-client-2.2.2" ··· 113718 sources."detect-libc-2.0.1" 113719 sources."dicer-0.2.5" 113720 sources."dom-serializer-1.3.2" 113721 - sources."domelementtype-2.2.0" 113722 sources."domhandler-4.3.1" 113723 sources."domutils-2.8.0" 113724 (sources."duplexify-4.1.2" // { ··· 113800 sources."universalify-2.0.0" 113801 ]; 113802 }) 113803 - sources."keyv-4.2.1" 113804 sources."leven-2.1.0" 113805 sources."lodash.clonedeep-4.5.0" 113806 sources."lowercase-keys-2.0.0" ··· 114059 sources."json-stringify-safe-5.0.1" 114060 sources."jsonfile-1.0.1" 114061 sources."jsprim-1.4.2" 114062 - sources."lru-cache-6.0.0" 114063 sources."mime-db-1.52.0" 114064 sources."mime-types-2.1.35" 114065 sources."minimatch-3.1.2" ··· 114120 sources."rimraf-2.2.8" 114121 sources."safe-buffer-5.2.1" 114122 sources."safer-buffer-2.1.2" 114123 - sources."semver-7.3.5" 114124 sources."set-blocking-2.0.0" 114125 sources."signal-exit-3.0.7" 114126 sources."slasp-0.0.4" ··· 114262 sources."keyv-3.1.0" 114263 sources."latest-version-5.1.0" 114264 sources."lowercase-keys-1.0.1" 114265 - sources."lru-cache-6.0.0" 114266 (sources."make-dir-3.1.0" // { 114267 dependencies = [ 114268 sources."semver-6.3.0" ··· 114316 sources."unique-string-2.0.0" 114317 (sources."update-notifier-5.1.0" // { 114318 dependencies = [ 114319 - sources."semver-7.3.5" 114320 ]; 114321 }) 114322 sources."url-parse-lax-3.0.0" ··· 114325 sources."wrappy-1.0.2" 114326 sources."write-file-atomic-3.0.3" 114327 sources."xdg-basedir-4.0.0" 114328 - sources."yallist-4.0.0" 114329 ]; 114330 buildInputs = globalBuildInputs; 114331 meta = { ··· 114348 dependencies = [ 114349 sources."@babel/code-frame-7.16.7" 114350 sources."@babel/helper-validator-identifier-7.16.7" 114351 - (sources."@babel/highlight-7.16.10" // { 114352 dependencies = [ 114353 sources."ansi-styles-3.2.1" 114354 sources."chalk-2.4.2" ··· 114578 sources."js-tokens-4.0.0" 114579 sources."json-buffer-3.0.1" 114580 sources."json-parse-even-better-errors-2.3.1" 114581 - sources."keyv-4.2.1" 114582 sources."kind-of-6.0.3" 114583 sources."latest-version-5.1.0" 114584 sources."lines-and-columns-1.2.4" ··· 114792 sources."rxjs-6.6.7" 114793 sources."safer-buffer-2.1.2" 114794 sources."scoped-regex-2.1.0" 114795 - sources."semver-7.3.5" 114796 (sources."semver-diff-3.1.1" // { 114797 dependencies = [ 114798 sources."semver-6.3.0" ··· 114887 npm-check-updates = nodeEnv.buildNodePackage { 114888 name = "npm-check-updates"; 114889 packageName = "npm-check-updates"; 114890 - version = "12.5.7"; 114891 src = fetchurl { 114892 - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.5.7.tgz"; 114893 - sha512 = "WDkqPBevmgphV1UH3FImsDEpTAq2UFvnMZC3GdXPknE2VL701kfKylnae8IA9ZeYfm/uU0249N9gjMXqA/9y3w=="; 114894 }; 114895 dependencies = [ 114896 sources."@gar/promisify-1.1.3" ··· 114898 sources."@nodelib/fs.stat-2.0.5" 114899 sources."@nodelib/fs.walk-1.2.8" 114900 sources."@npmcli/fs-2.1.0" 114901 - sources."@npmcli/git-3.0.0" 114902 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" 114907 sources."@sindresorhus/is-0.14.0" 114908 sources."@szmarczak/http-timer-1.1.2" 114909 sources."@tootallnate/once-2.0.0" ··· 114924 sources."braces-3.0.2" 114925 sources."buffer-from-1.1.2" 114926 sources."builtins-5.0.0" 114927 - sources."cacache-16.0.3" 114928 (sources."cacheable-request-6.1.0" // { 114929 dependencies = [ 114930 sources."get-stream-5.2.0" ··· 115003 sources."humanize-ms-1.2.1" 115004 sources."iconv-lite-0.6.3" 115005 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 - }) 115012 sources."import-lazy-2.1.0" 115013 sources."imurmurhash-0.1.4" 115014 sources."indent-string-4.0.0" ··· 115054 sources."locate-path-6.0.0" 115055 sources."lodash-4.17.21" 115056 sources."lowercase-keys-1.0.1" 115057 - sources."lru-cache-7.7.3" 115058 (sources."make-dir-3.1.0" // { 115059 dependencies = [ 115060 sources."semver-6.3.0" 115061 ]; 115062 }) 115063 - (sources."make-fetch-happen-10.1.2" // { 115064 - dependencies = [ 115065 - sources."ssri-9.0.0" 115066 - ]; 115067 - }) 115068 sources."merge2-1.4.1" 115069 sources."micromatch-4.0.5" 115070 sources."mimic-response-1.0.1" ··· 115089 sources."npm-install-checks-5.0.0" 115090 sources."npm-normalize-package-bin-1.0.1" 115091 sources."npm-package-arg-9.0.2" 115092 - sources."npm-packlist-4.0.0" 115093 sources."npm-pick-manifest-7.0.1" 115094 sources."npm-registry-fetch-13.1.0" 115095 sources."npmlog-6.0.1" ··· 115104 sources."semver-6.3.0" 115105 ]; 115106 }) 115107 - sources."pacote-13.0.5" 115108 sources."parse-github-url-1.0.2" 115109 sources."path-exists-4.0.0" 115110 sources."path-is-absolute-1.0.1" ··· 115135 sources."run-parallel-1.2.0" 115136 sources."safe-buffer-5.2.1" 115137 sources."safer-buffer-2.1.2" 115138 - (sources."semver-7.3.5" // { 115139 - dependencies = [ 115140 - sources."lru-cache-6.0.0" 115141 - ]; 115142 - }) 115143 (sources."semver-diff-3.1.1" // { 115144 dependencies = [ 115145 sources."semver-6.3.0" ··· 115160 sources."spdx-exceptions-2.3.0" 115161 sources."spdx-expression-parse-3.0.1" 115162 sources."spdx-license-ids-3.0.11" 115163 - sources."ssri-8.0.1" 115164 sources."string-width-4.2.3" 115165 sources."string_decoder-1.3.0" 115166 sources."strip-ansi-6.0.1" ··· 115511 sources."@ampproject/remapping-2.1.2" 115512 sources."@babel/code-frame-7.16.7" 115513 sources."@babel/compat-data-7.17.7" 115514 - (sources."@babel/core-7.17.8" // { 115515 dependencies = [ 115516 sources."json5-2.2.1" 115517 sources."semver-6.3.0" 115518 ]; 115519 }) 115520 - (sources."@babel/generator-7.17.7" // { 115521 dependencies = [ 115522 sources."source-map-0.5.7" 115523 ]; ··· 115529 sources."semver-6.3.0" 115530 ]; 115531 }) 115532 - sources."@babel/helper-create-class-features-plugin-7.17.6" 115533 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 115534 (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 115535 dependencies = [ ··· 115538 }) 115539 sources."@babel/helper-environment-visitor-7.16.7" 115540 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" 115543 sources."@babel/helper-hoist-variables-7.16.7" 115544 sources."@babel/helper-member-expression-to-functions-7.17.7" 115545 sources."@babel/helper-module-imports-7.16.7" ··· 115554 sources."@babel/helper-validator-identifier-7.16.7" 115555 sources."@babel/helper-validator-option-7.16.7" 115556 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" 115560 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 115561 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 115562 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 115606 sources."@babel/plugin-transform-literals-7.16.7" 115607 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 115608 sources."@babel/plugin-transform-modules-amd-7.16.7" 115609 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 115610 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 115611 sources."@babel/plugin-transform-modules-umd-7.16.7" 115612 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 115615 sources."@babel/plugin-transform-parameters-7.16.7" 115616 sources."@babel/plugin-transform-property-literals-7.16.7" 115617 sources."@babel/plugin-transform-react-jsx-7.17.3" 115618 - sources."@babel/plugin-transform-regenerator-7.16.7" 115619 sources."@babel/plugin-transform-reserved-words-7.16.7" 115620 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 115621 sources."@babel/plugin-transform-spread-7.16.7" ··· 115630 ]; 115631 }) 115632 sources."@babel/preset-modules-0.1.5" 115633 - sources."@babel/runtime-7.17.8" 115634 sources."@babel/template-7.16.7" 115635 - sources."@babel/traverse-7.17.3" 115636 sources."@babel/types-7.17.0" 115637 sources."@iarna/toml-2.2.5" 115638 sources."@jridgewell/resolve-uri-3.0.5" ··· 115877 }) 115878 (sources."dom-serializer-0.2.2" // { 115879 dependencies = [ 115880 - sources."domelementtype-2.2.0" 115881 ]; 115882 }) 115883 sources."domain-browser-1.2.0" ··· 115885 sources."domexception-1.0.1" 115886 (sources."domhandler-4.3.1" // { 115887 dependencies = [ 115888 - sources."domelementtype-2.2.0" 115889 ]; 115890 }) 115891 sources."domutils-1.7.0" ··· 115895 sources."duplexer2-0.1.4" 115896 sources."ecc-jsbn-0.1.2" 115897 sources."ee-first-1.1.1" 115898 - sources."electron-to-chromium-1.4.103" 115899 (sources."elliptic-6.5.4" // { 115900 dependencies = [ 115901 sources."bn.js-4.12.0" ··· 116012 (sources."htmlparser2-6.1.0" // { 116013 dependencies = [ 116014 sources."dom-serializer-1.3.2" 116015 - sources."domelementtype-2.2.0" 116016 sources."domutils-2.8.0" 116017 ]; 116018 }) ··· 116312 sources."regenerate-1.4.2" 116313 sources."regenerate-unicode-properties-10.0.1" 116314 sources."regenerator-runtime-0.13.9" 116315 - sources."regenerator-transform-0.14.5" 116316 (sources."regex-not-1.0.2" // { 116317 dependencies = [ 116318 sources."extend-shallow-3.0.2" ··· 116544 dependencies = [ 116545 sources."@babel/code-frame-7.16.7" 116546 sources."@babel/helper-validator-identifier-7.16.7" 116547 - (sources."@babel/highlight-7.16.10" // { 116548 dependencies = [ 116549 sources."chalk-2.4.2" 116550 ]; ··· 116555 sources."@parcel/compressor-raw-2.4.1" 116556 sources."@parcel/config-default-2.4.1" 116557 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" 116567 sources."@parcel/diagnostic-2.4.1" 116568 sources."@parcel/events-2.4.1" 116569 sources."@parcel/fs-2.4.1" ··· 116658 sources."entities-2.2.0" 116659 ]; 116660 }) 116661 - sources."domelementtype-2.2.0" 116662 sources."domhandler-4.3.1" 116663 sources."domutils-2.8.0" 116664 sources."dotenv-7.0.0" 116665 sources."dotenv-expand-5.1.0" 116666 - sources."electron-to-chromium-1.4.103" 116667 sources."entities-3.0.1" 116668 sources."error-ex-1.3.2" 116669 sources."escalade-3.1.1" ··· 116671 sources."get-port-4.2.0" 116672 sources."globals-13.13.0" 116673 sources."has-flag-3.0.0" 116674 - sources."htmlnano-2.0.1" 116675 sources."htmlparser2-7.2.0" 116676 sources."import-fresh-3.3.0" 116677 sources."is-arrayish-0.2.1" ··· 116684 sources."lmdb-2.2.4" 116685 sources."mdn-data-2.0.14" 116686 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 - }) 116692 sources."msgpackr-extract-darwin-arm64-1.1.0" 116693 sources."msgpackr-extract-darwin-x64-1.1.0" 116694 sources."msgpackr-extract-linux-arm-1.1.0" ··· 116698 sources."nan-2.15.0" 116699 sources."node-addon-api-3.2.1" 116700 sources."node-gyp-build-4.4.0" 116701 sources."node-releases-2.0.2" 116702 sources."nth-check-2.0.1" 116703 sources."nullthrows-1.1.1" ··· 116900 sources."lodash-4.17.21" 116901 sources."lodash.clone-4.5.0" 116902 sources."lodash.clonedeep-4.5.0" 116903 - sources."lru-cache-6.0.0" 116904 sources."media-typer-0.3.0" 116905 sources."mediawiki-title-0.6.5" 116906 sources."merge-descriptors-1.0.1" ··· 116980 sources."serve-static-1.14.2" 116981 (sources."service-runner-2.9.0" // { 116982 dependencies = [ 116983 - sources."semver-7.3.5" 116984 sources."yargs-14.2.3" 116985 ]; 116986 }) ··· 117023 sources."wrap-ansi-5.1.0" 117024 sources."wrappy-1.0.2" 117025 sources."y18n-4.0.3" 117026 - sources."yallist-4.0.0" 117027 (sources."yargs-13.3.2" // { 117028 dependencies = [ 117029 sources."yargs-parser-13.1.2" ··· 117932 sources."isarray-1.0.0" 117933 sources."jsonfile-6.1.0" 117934 sources."levn-0.3.0" 117935 - sources."lru-cache-6.0.0" 117936 sources."merge2-1.4.1" 117937 sources."micromatch-4.0.5" 117938 sources."mimic-response-2.1.0" ··· 117974 sources."reusify-1.0.4" 117975 sources."run-parallel-1.2.0" 117976 sources."safe-buffer-5.1.2" 117977 - sources."semver-7.3.5" 117978 sources."set-blocking-2.0.0" 117979 sources."signal-exit-3.0.7" 117980 sources."simple-concat-1.0.1" ··· 118009 sources."wrap-ansi-7.0.0" 118010 sources."wrappy-1.0.2" 118011 sources."y18n-5.0.8" 118012 - sources."yallist-4.0.0" 118013 sources."yargs-16.2.0" 118014 sources."yargs-parser-20.2.9" 118015 ]; ··· 118209 sources."safe-buffer-5.2.1" 118210 sources."safer-buffer-2.1.2" 118211 sources."sax-1.2.4" 118212 - (sources."semver-7.3.5" // { 118213 dependencies = [ 118214 - sources."lru-cache-6.0.0" 118215 - sources."yallist-4.0.0" 118216 ]; 118217 }) 118218 sources."setprototypeof-1.2.0" ··· 118450 sources."ini-1.3.8" 118451 sources."is-fullwidth-code-point-1.0.0" 118452 sources."isarray-1.0.0" 118453 - sources."lru-cache-6.0.0" 118454 sources."mimic-response-3.1.0" 118455 sources."minimist-1.2.6" 118456 sources."mkdirp-classic-0.5.3" ··· 118465 sources."rc-1.2.8" 118466 sources."readable-stream-2.3.7" 118467 sources."safe-buffer-5.1.2" 118468 - sources."semver-7.3.5" 118469 sources."set-blocking-2.0.0" 118470 sources."signal-exit-3.0.7" 118471 sources."simple-concat-1.0.1" ··· 118484 sources."util-deprecate-1.0.2" 118485 sources."wide-align-1.1.5" 118486 sources."wrappy-1.0.2" 118487 - sources."yallist-4.0.0" 118488 ]; 118489 buildInputs = globalBuildInputs; 118490 meta = { ··· 119470 sources."@babel/cli-7.17.6" 119471 sources."@babel/code-frame-7.16.7" 119472 sources."@babel/compat-data-7.17.7" 119473 - (sources."@babel/core-7.17.8" // { 119474 dependencies = [ 119475 sources."semver-6.3.0" 119476 ]; 119477 }) 119478 - sources."@babel/generator-7.17.7" 119479 sources."@babel/helper-annotate-as-pure-7.16.7" 119480 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 119481 (sources."@babel/helper-compilation-targets-7.17.7" // { ··· 119483 sources."semver-6.3.0" 119484 ]; 119485 }) 119486 - sources."@babel/helper-create-class-features-plugin-7.17.6" 119487 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 119488 (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 119489 dependencies = [ ··· 119492 }) 119493 sources."@babel/helper-environment-visitor-7.16.7" 119494 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" 119497 sources."@babel/helper-hoist-variables-7.16.7" 119498 sources."@babel/helper-member-expression-to-functions-7.17.7" 119499 sources."@babel/helper-module-imports-7.16.7" ··· 119508 sources."@babel/helper-validator-identifier-7.16.7" 119509 sources."@babel/helper-validator-option-7.16.7" 119510 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" 119514 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 119515 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 119516 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 119560 sources."@babel/plugin-transform-literals-7.16.7" 119561 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 119562 sources."@babel/plugin-transform-modules-amd-7.16.7" 119563 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 119564 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 119565 sources."@babel/plugin-transform-modules-umd-7.16.7" 119566 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 119572 sources."@babel/plugin-transform-react-jsx-7.17.3" 119573 sources."@babel/plugin-transform-react-jsx-development-7.16.7" 119574 sources."@babel/plugin-transform-react-pure-annotations-7.16.7" 119575 - sources."@babel/plugin-transform-regenerator-7.16.7" 119576 sources."@babel/plugin-transform-reserved-words-7.16.7" 119577 (sources."@babel/plugin-transform-runtime-7.17.0" // { 119578 dependencies = [ ··· 119595 sources."@babel/preset-react-7.16.7" 119596 sources."@babel/preset-stage-0-7.8.3" 119597 sources."@babel/register-7.17.7" 119598 - sources."@babel/runtime-7.17.8" 119599 sources."@babel/template-7.16.7" 119600 - sources."@babel/traverse-7.17.3" 119601 sources."@babel/types-7.17.0" 119602 sources."@jridgewell/resolve-uri-3.0.5" 119603 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 120005 sources."dom-converter-0.2.0" 120006 (sources."dom-serializer-0.2.2" // { 120007 dependencies = [ 120008 - sources."domelementtype-2.2.0" 120009 ]; 120010 }) 120011 sources."domain-browser-1.2.0" 120012 sources."domelementtype-1.3.1" 120013 (sources."domhandler-4.3.1" // { 120014 dependencies = [ 120015 - sources."domelementtype-2.2.0" 120016 ]; 120017 }) 120018 sources."domutils-1.7.0" ··· 120029 sources."duplexify-3.7.1" 120030 sources."ee-first-1.1.1" 120031 sources."ejs-2.7.4" 120032 - sources."electron-to-chromium-1.4.103" 120033 (sources."elliptic-6.5.4" // { 120034 dependencies = [ 120035 sources."bn.js-4.12.0" ··· 120260 (sources."htmlparser2-6.1.0" // { 120261 dependencies = [ 120262 sources."dom-serializer-1.3.2" 120263 - sources."domelementtype-2.2.0" 120264 sources."domutils-2.8.0" 120265 ]; 120266 }) ··· 120748 sources."regenerate-1.4.2" 120749 sources."regenerate-unicode-properties-10.0.1" 120750 sources."regenerator-runtime-0.13.9" 120751 - sources."regenerator-transform-0.14.5" 120752 sources."regex-not-1.0.2" 120753 sources."regexp.prototype.flags-1.4.1" 120754 sources."regexpu-core-5.0.1" ··· 120768 sources."css-select-4.3.0" 120769 sources."css-what-6.1.0" 120770 sources."dom-serializer-1.3.2" 120771 - sources."domelementtype-2.2.0" 120772 sources."domutils-2.8.0" 120773 sources."nth-check-2.0.1" 120774 sources."strip-ansi-3.0.1" ··· 121408 }; 121409 dependencies = [ 121410 sources."@babel/code-frame-7.16.7" 121411 - (sources."@babel/generator-7.17.7" // { 121412 dependencies = [ 121413 sources."source-map-0.5.7" 121414 ]; 121415 }) 121416 sources."@babel/helper-annotate-as-pure-7.16.7" 121417 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" 121420 sources."@babel/helper-hoist-variables-7.16.7" 121421 sources."@babel/helper-module-imports-7.16.7" 121422 sources."@babel/helper-split-export-declaration-7.16.7" 121423 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" 121427 sources."@babel/template-7.16.7" 121428 - sources."@babel/traverse-7.17.3" 121429 sources."@babel/types-7.17.0" 121430 sources."@emotion/is-prop-valid-1.1.2" 121431 sources."@emotion/memoize-0.7.5" ··· 121451 sources."util-0.10.3" 121452 ]; 121453 }) 121454 - sources."babel-plugin-styled-components-2.0.6" 121455 sources."babel-plugin-syntax-jsx-6.18.0" 121456 sources."balanced-match-1.0.2" 121457 sources."base64-js-1.5.1" ··· 121607 sources."perfect-scrollbar-1.5.5" 121608 sources."picomatch-2.3.1" 121609 sources."pluralize-8.0.0" 121610 - sources."polished-4.2.1" 121611 sources."postcss-value-parser-4.2.0" 121612 sources."prismjs-1.27.0" 121613 sources."process-0.11.10" ··· 122030 sources."livereload-js-3.3.3" 122031 sources."lodash-4.17.21" 122032 sources."lowercase-keys-1.0.1" 122033 - sources."lru-cache-6.0.0" 122034 (sources."make-dir-3.1.0" // { 122035 dependencies = [ 122036 sources."semver-6.3.0" ··· 122100 sources."rimraf-2.7.1" 122101 sources."safe-buffer-5.2.1" 122102 sources."safer-buffer-2.1.2" 122103 - sources."semver-7.3.5" 122104 (sources."semver-diff-3.1.1" // { 122105 dependencies = [ 122106 sources."semver-6.3.0" ··· 122158 sources."write-file-atomic-3.0.3" 122159 sources."ws-7.5.7" 122160 sources."xdg-basedir-4.0.0" 122161 - sources."yallist-4.0.0" 122162 sources."yaml-front-matter-4.1.1" 122163 sources."yargs-parser-20.2.9" 122164 sources."yauzl-2.10.0" ··· 122298 sources."cross-spawn-7.0.3" 122299 sources."css-select-4.3.0" 122300 sources."css-what-6.1.0" 122301 - sources."d3-7.4.2" 122302 - sources."d3-array-3.1.4" 122303 sources."d3-axis-3.0.0" 122304 sources."d3-brush-3.0.0" 122305 sources."d3-chord-3.0.1" ··· 122354 sources."dir-glob-3.0.1" 122355 sources."doctrine-3.0.0" 122356 sources."dom-serializer-1.3.2" 122357 - sources."domelementtype-2.2.0" 122358 sources."domhandler-4.3.1" 122359 sources."domutils-2.8.0" 122360 sources."duplexer2-0.1.4" ··· 122363 sources."commander-2.20.3" 122364 sources."lru-cache-4.1.5" 122365 sources."semver-5.7.1" 122366 - sources."yallist-2.1.2" 122367 ]; 122368 }) 122369 sources."emoji-regex-8.0.0" ··· 122438 sources."has-flag-4.0.0" 122439 sources."has-symbols-1.0.3" 122440 sources."has-unicode-2.0.1" 122441 - sources."hosted-git-info-4.1.0" 122442 sources."htmlparser2-6.1.0" 122443 sources."http-proxy-agent-4.0.1" 122444 sources."https-proxy-agent-5.0.0" ··· 122466 sources."linkify-it-3.0.3" 122467 sources."listenercount-1.0.1" 122468 sources."lodash.merge-4.6.2" 122469 - sources."lru-cache-6.0.0" 122470 (sources."markdown-it-12.3.2" // { 122471 dependencies = [ 122472 sources."entities-2.1.0" ··· 122533 sources."safe-buffer-5.1.2" 122534 sources."safer-buffer-2.1.2" 122535 sources."sax-1.2.4" 122536 - sources."semver-7.3.5" 122537 sources."set-blocking-2.0.0" 122538 sources."setimmediate-1.0.5" 122539 sources."shebang-command-2.0.0" ··· 122604 sources."xml2js-0.4.23" 122605 sources."xmlbuilder-11.0.1" 122606 sources."y18n-5.0.8" 122607 - sources."yallist-4.0.0" 122608 sources."yargs-17.4.0" 122609 sources."yargs-parser-21.0.1" 122610 sources."yauzl-2.10.0" ··· 122747 sass = nodeEnv.buildNodePackage { 122748 name = "sass"; 122749 packageName = "sass"; 122750 - version = "1.49.11"; 122751 src = fetchurl { 122752 - url = "https://registry.npmjs.org/sass/-/sass-1.49.11.tgz"; 122753 - sha512 = "wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ=="; 122754 }; 122755 dependencies = [ 122756 sources."anymatch-3.1.2" ··· 122784 semver = nodeEnv.buildNodePackage { 122785 name = "semver"; 122786 packageName = "semver"; 122787 - version = "7.3.5"; 122788 src = fetchurl { 122789 - url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 122790 - sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 122791 }; 122792 dependencies = [ 122793 - sources."lru-cache-6.0.0" 122794 - sources."yallist-4.0.0" 122795 ]; 122796 buildInputs = globalBuildInputs; 122797 meta = { ··· 122927 serverless = nodeEnv.buildNodePackage { 122928 name = "serverless"; 122929 packageName = "serverless"; 122930 - version = "3.11.0"; 122931 src = fetchurl { 122932 - url = "https://registry.npmjs.org/serverless/-/serverless-3.11.0.tgz"; 122933 - sha512 = "v4yfKOK46ri12TkiuNfUrLo+PrfR4BI9WkrUxPF66Cst7Kdu1RH0qiCA6Gxpibauox++gnbxCdgoJ+XKw9nv1g=="; 122934 }; 122935 dependencies = [ 122936 sources."2-thenable-1.0.0" ··· 122985 sources."async-3.2.3" 122986 sources."asynckit-0.4.0" 122987 sources."at-least-node-1.0.0" 122988 - (sources."aws-sdk-2.1108.0" // { 122989 dependencies = [ 122990 sources."buffer-4.9.2" 122991 sources."ieee754-1.1.13" ··· 123127 sources."duration-0.2.2" 123128 sources."emoji-regex-8.0.0" 123129 sources."end-of-stream-1.4.4" 123130 - sources."es5-ext-0.10.59" 123131 sources."es6-iterator-2.0.3" 123132 (sources."es6-set-0.1.5" // { 123133 dependencies = [ ··· 123225 }) 123226 sources."json-schema-traverse-1.0.0" 123227 sources."jsonfile-6.1.0" 123228 - sources."jszip-3.9.0" 123229 sources."jwt-decode-2.2.0" 123230 - sources."keyv-4.2.1" 123231 sources."lazystream-1.0.1" 123232 sources."lie-3.3.0" 123233 sources."lodash-4.17.21" ··· 123240 sources."log-node-8.0.3" 123241 sources."log-symbols-4.1.0" 123242 sources."lowercase-keys-2.0.0" 123243 - sources."lru-cache-6.0.0" 123244 sources."lru-queue-0.1.0" 123245 (sources."make-dir-3.1.0" // { 123246 dependencies = [ ··· 123325 sources."safer-buffer-2.1.2" 123326 sources."sax-1.2.1" 123327 sources."seek-bzip-1.0.6" 123328 - sources."semver-7.3.5" 123329 sources."set-immediate-shim-1.0.1" 123330 sources."shebang-command-1.2.0" 123331 sources."shebang-regex-1.0.0" ··· 124050 snyk = nodeEnv.buildNodePackage { 124051 name = "snyk"; 124052 packageName = "snyk"; 124053 - version = "1.895.0"; 124054 src = fetchurl { 124055 - url = "https://registry.npmjs.org/snyk/-/snyk-1.895.0.tgz"; 124056 - sha512 = "8/1P6Hx5aiDzTYKCC+yPg5ZhKf4gflodohaQc8/852ftUkCZ58UJopaYkiBTXbN51OTLRIK/TLGfPY0DpVUe+w=="; 124057 }; 124058 buildInputs = globalBuildInputs; 124059 meta = { ··· 124117 dependencies = [ 124118 sources."@babel/code-frame-7.16.7" 124119 sources."@babel/helper-validator-identifier-7.16.7" 124120 - (sources."@babel/highlight-7.16.10" // { 124121 dependencies = [ 124122 sources."ansi-styles-3.2.1" 124123 sources."chalk-2.4.2" ··· 124216 sources."round-to-6.0.0" 124217 sources."safe-buffer-5.2.1" 124218 sources."sax-1.2.4" 124219 - sources."semver-7.3.5" 124220 sources."signal-exit-3.0.7" 124221 (sources."slice-ansi-5.0.0" // { 124222 dependencies = [ ··· 124349 sources."binary-search-1.3.6" 124350 sources."binary-search-bounds-2.0.5" 124351 sources."bindings-1.5.0" 124352 - sources."bipf-1.6.1" 124353 sources."blake2s-1.1.0" 124354 sources."brace-expansion-1.1.11" 124355 sources."braces-1.8.5" ··· 125313 sources."async-1.5.2" 125314 sources."async-limiter-1.0.1" 125315 sources."asynckit-0.4.0" 125316 - (sources."aws-sdk-2.1108.0" // { 125317 dependencies = [ 125318 sources."uuid-3.3.2" 125319 ]; ··· 126121 dependencies = [ 126122 sources."@babel/code-frame-7.16.7" 126123 sources."@babel/helper-validator-identifier-7.16.7" 126124 - sources."@babel/highlight-7.16.10" 126125 sources."@nodelib/fs.scandir-2.1.5" 126126 sources."@nodelib/fs.stat-2.0.5" 126127 sources."@nodelib/fs.walk-1.2.8" ··· 126187 sources."has-1.0.3" 126188 sources."has-flag-3.0.0" 126189 sources."hosted-git-info-4.1.0" 126190 - sources."html-tags-3.1.0" 126191 sources."ignore-5.2.0" 126192 (sources."import-fresh-3.3.0" // { 126193 dependencies = [ ··· 126273 sources."reusify-1.0.4" 126274 sources."rimraf-3.0.2" 126275 sources."run-parallel-1.2.0" 126276 - sources."semver-7.3.5" 126277 sources."signal-exit-3.0.7" 126278 sources."slash-3.0.0" 126279 (sources."slice-ansi-4.0.0" // { ··· 126467 svelte-check = nodeEnv.buildNodePackage { 126468 name = "svelte-check"; 126469 packageName = "svelte-check"; 126470 - version = "2.4.6"; 126471 src = fetchurl { 126472 - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.4.6.tgz"; 126473 - sha512 = "luzdly7RJhyXucQe8ID/7CqDgXdMrPYXmyZBjCbp+cixzTopZotuWevrB5hWDOnOU19m2cyetigIIa7WDHnCmQ=="; 126474 }; 126475 dependencies = [ 126476 sources."@nodelib/fs.scandir-2.1.5" ··· 126549 svelte-language-server = nodeEnv.buildNodePackage { 126550 name = "svelte-language-server"; 126551 packageName = "svelte-language-server"; 126552 - version = "0.14.23"; 126553 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=="; 126556 }; 126557 dependencies = [ 126558 sources."@emmetio/abbreviation-2.2.3" ··· 126621 sources."strip-indent-3.0.0" 126622 sources."svelte-3.46.6" 126623 sources."svelte-preprocess-4.10.5" 126624 - sources."svelte2tsx-0.5.6" 126625 sources."to-regex-range-5.0.1" 126626 sources."tslib-2.3.1" 126627 sources."typescript-4.6.3" ··· 126677 sources."css-what-6.1.0" 126678 sources."csso-4.2.0" 126679 sources."dom-serializer-1.3.2" 126680 - sources."domelementtype-2.2.0" 126681 sources."domhandler-4.3.1" 126682 sources."domutils-2.8.0" 126683 sources."entities-2.2.0" ··· 127355 dependencies = [ 127356 sources."@babel/code-frame-7.16.7" 127357 sources."@babel/helper-validator-identifier-7.16.7" 127358 - (sources."@babel/highlight-7.16.10" // { 127359 dependencies = [ 127360 sources."ansi-styles-3.2.1" 127361 sources."chalk-2.4.2" ··· 127969 dependencies = [ 127970 sources."@babel/code-frame-7.16.7" 127971 sources."@babel/helper-validator-identifier-7.16.7" 127972 - sources."@babel/highlight-7.16.10" 127973 sources."@sindresorhus/is-0.14.0" 127974 sources."@szmarczak/http-timer-1.1.2" 127975 sources."@types/hast-2.3.4" ··· 128849 sources."detect-libc-1.0.3" 128850 sources."dicer-0.3.0" 128851 sources."dom-serializer-1.3.2" 128852 - sources."domelementtype-2.2.0" 128853 sources."domhandler-4.3.1" 128854 sources."domutils-2.8.0" 128855 sources."duplexer3-0.1.4" ··· 128969 }) 128970 sources."jwa-2.0.0" 128971 sources."jws-4.0.0" 128972 - sources."keyv-4.2.1" 128973 sources."ldap-filter-0.3.3" 128974 sources."ldapjs-2.3.1" 128975 sources."linkify-it-3.0.3" ··· 129324 sources."detect-libc-1.0.3" 129325 sources."dicer-0.3.0" 129326 sources."dom-serializer-1.3.2" 129327 - sources."domelementtype-2.2.0" 129328 sources."domhandler-4.3.1" 129329 sources."domutils-2.8.0" 129330 sources."duplexer3-0.1.4" ··· 129444 }) 129445 sources."jwa-2.0.0" 129446 sources."jws-4.0.0" 129447 - sources."keyv-4.2.1" 129448 sources."ldap-filter-0.3.3" 129449 sources."ldapjs-2.3.1" 129450 sources."linkify-it-3.0.3" ··· 130590 }) 130591 sources."jwa-2.0.0" 130592 sources."jws-4.0.0" 130593 - sources."keyv-4.2.1" 130594 sources."ldap-filter-0.3.3" 130595 sources."ldapjs-2.1.1" 130596 sources."linkify-it-3.0.2" ··· 131057 }) 131058 sources."jwa-2.0.0" 131059 sources."jws-4.0.0" 131060 - sources."keyv-4.2.1" 131061 sources."ldap-filter-0.3.3" 131062 sources."ldapjs-2.1.1" 131063 sources."linkify-it-3.0.2" ··· 131804 sources."jsonfile-6.1.0" 131805 sources."jsprim-1.4.2" 131806 sources."keypress-0.2.1" 131807 - sources."lru-cache-6.0.0" 131808 sources."mime-db-1.52.0" 131809 sources."mime-types-2.1.35" 131810 sources."minimatch-3.1.2" ··· 131828 sources."rimraf-2.6.3" 131829 sources."safe-buffer-5.2.1" 131830 sources."safer-buffer-2.1.2" 131831 - sources."semver-7.3.5" 131832 sources."sprintf-0.1.5" 131833 sources."sshpk-1.17.0" 131834 sources."stack-trace-0.0.10" ··· 131851 ]; 131852 }) 131853 sources."wrappy-1.0.2" 131854 - sources."yallist-4.0.0" 131855 sources."yauzl-2.10.0" 131856 ]; 131857 buildInputs = globalBuildInputs; ··· 132200 sources."isexe-2.0.0" 132201 sources."jsonfile-6.1.0" 132202 sources."locate-path-3.0.0" 132203 - sources."lru-cache-6.0.0" 132204 sources."merge2-1.4.1" 132205 sources."micromatch-4.0.5" 132206 sources."minimatch-3.1.2" ··· 132219 sources."reusify-1.0.4" 132220 sources."rimraf-3.0.2" 132221 sources."run-parallel-1.2.0" 132222 - sources."semver-7.3.5" 132223 sources."slash-3.0.0" 132224 sources."temp-dir-2.0.0" 132225 sources."tempy-1.0.1" ··· 132235 sources."vscode-uri-3.0.3" 132236 sources."which-2.0.2" 132237 sources."wrappy-1.0.2" 132238 - sources."yallist-4.0.0" 132239 ]; 132240 buildInputs = globalBuildInputs; 132241 meta = { ··· 132429 sources."jquery-ui-1.13.1" 132430 sources."json-buffer-3.0.1" 132431 sources."just-detect-adblock-1.1.0" 132432 - sources."keyv-4.2.1" 132433 sources."knockout-3.5.1" 132434 sources."kuler-2.0.0" 132435 sources."latest-version-6.0.0" ··· 132507 sources."safe-buffer-5.2.1" 132508 sources."safe-stable-stringify-2.3.1" 132509 sources."safer-buffer-2.1.2" 132510 - (sources."semver-7.3.5" // { 132511 dependencies = [ 132512 - sources."lru-cache-6.0.0" 132513 - sources."yallist-4.0.0" 132514 ]; 132515 }) 132516 (sources."send-0.17.2" // { ··· 132615 dependencies = [ 132616 sources."@babel/code-frame-7.16.7" 132617 sources."@babel/helper-validator-identifier-7.16.7" 132618 - sources."@babel/highlight-7.16.10" 132619 sources."@types/concat-stream-2.0.0" 132620 sources."@types/debug-4.1.7" 132621 sources."@types/is-empty-1.2.1" ··· 132664 sources."lines-and-columns-2.0.3" 132665 sources."load-plugin-4.0.1" 132666 sources."locate-path-3.0.0" 132667 - sources."lru-cache-6.0.0" 132668 sources."minimatch-3.1.2" 132669 sources."ms-2.1.2" 132670 sources."once-1.4.0" ··· 132676 sources."path-is-absolute-1.0.1" 132677 sources."readable-stream-3.6.0" 132678 sources."safe-buffer-5.2.1" 132679 - sources."semver-7.3.5" 132680 sources."string-width-5.1.2" 132681 sources."string_decoder-1.3.0" 132682 sources."strip-ansi-7.0.1" ··· 132703 sources."vscode-languageserver-textdocument-1.0.4" 132704 sources."vscode-languageserver-types-3.16.0" 132705 sources."wrappy-1.0.2" 132706 - sources."yallist-4.0.0" 132707 ]; 132708 buildInputs = globalBuildInputs; 132709 meta = { ··· 132743 sources."commander-7.2.0" 132744 sources."concat-map-0.0.1" 132745 sources."console-control-strings-1.1.0" 132746 - sources."d3-array-3.1.4" 132747 sources."d3-color-3.1.0" 132748 sources."d3-delaunay-6.0.2" 132749 sources."d3-dispatch-3.0.1" ··· 132780 sources."inherits-2.0.4" 132781 sources."internmap-2.0.3" 132782 sources."is-fullwidth-code-point-3.0.0" 132783 - sources."lru-cache-6.0.0" 132784 (sources."make-dir-3.1.0" // { 132785 dependencies = [ 132786 sources."semver-6.3.0" ··· 132806 sources."rw-1.3.3" 132807 sources."safe-buffer-5.2.1" 132808 sources."safer-buffer-2.1.2" 132809 - sources."semver-7.3.5" 132810 sources."set-blocking-2.0.0" 132811 sources."signal-exit-3.0.7" 132812 sources."simple-concat-1.0.1" ··· 133071 dependencies = [ 133072 sources."@babel/code-frame-7.12.11" 133073 sources."@babel/helper-validator-identifier-7.16.7" 133074 - (sources."@babel/highlight-7.16.10" // { 133075 dependencies = [ 133076 sources."chalk-2.4.2" 133077 sources."escape-string-regexp-1.0.5" ··· 133183 sources."lodash-4.17.21" 133184 sources."lodash.merge-4.6.2" 133185 sources."lodash.truncate-4.4.2" 133186 - sources."lru-cache-6.0.0" 133187 sources."minimatch-3.1.2" 133188 sources."minimist-1.2.6" 133189 sources."mkdirp-0.5.6" ··· 133207 sources."resolve-1.22.0" 133208 sources."resolve-from-4.0.0" 133209 sources."rimraf-3.0.2" 133210 - sources."semver-7.3.5" 133211 sources."shebang-command-2.0.0" 133212 sources."shebang-regex-3.0.0" 133213 (sources."slice-ansi-4.0.0" // { ··· 133254 sources."which-2.0.2" 133255 sources."word-wrap-1.2.3" 133256 sources."wrappy-1.0.2" 133257 - sources."yallist-4.0.0" 133258 ]; 133259 buildInputs = globalBuildInputs; 133260 meta = { ··· 133558 sources."denodeify-1.2.1" 133559 sources."diff-5.0.0" 133560 sources."dom-serializer-1.3.2" 133561 - sources."domelementtype-2.2.0" 133562 sources."domhandler-4.3.1" 133563 sources."domutils-2.8.0" 133564 - sources."electron-to-chromium-1.4.103" 133565 sources."emoji-regex-8.0.0" 133566 sources."emojis-list-3.0.0" 133567 sources."enhanced-resolve-5.9.2" ··· 133633 sources."locate-path-6.0.0" 133634 sources."lodash-4.17.21" 133635 sources."log-symbols-4.0.0" 133636 - sources."lru-cache-6.0.0" 133637 (sources."markdown-it-10.0.0" // { 133638 dependencies = [ 133639 sources."argparse-1.0.10" ··· 133743 (sources."ts-loader-8.3.0" // { 133744 dependencies = [ 133745 sources."enhanced-resolve-4.5.0" 133746 - sources."semver-7.3.5" 133747 sources."tapable-1.1.3" 133748 ]; 133749 }) ··· 133770 sources."vscode-debugadapter-testsupport-1.51.0" 133771 sources."vscode-debugprotocol-1.51.0" 133772 sources."watchpack-2.3.1" 133773 - sources."webpack-5.71.0" 133774 (sources."webpack-cli-4.9.2" // { 133775 dependencies = [ 133776 sources."commander-7.2.0" ··· 133792 }) 133793 sources."wrappy-1.0.2" 133794 sources."y18n-5.0.8" 133795 - sources."yallist-4.0.0" 133796 sources."yaml-1.10.2" 133797 (sources."yargs-16.2.0" // { 133798 dependencies = [ ··· 134120 dependencies = [ 134121 sources."@babel/code-frame-7.16.7" 134122 sources."@babel/helper-validator-identifier-7.16.7" 134123 - sources."@babel/highlight-7.16.10" 134124 sources."@emmetio/extract-abbreviation-0.1.6" 134125 sources."@mrmlnc/readdir-enhanced-2.2.1" 134126 sources."@nodelib/fs.stat-1.1.3" ··· 135062 sha512 = "slGcIXCA/j5d2uzQ7flA4/veF0P0eE+Om/Bw7uEO2LC9a3mVNdB+2bSR1CILMjvgyFy9Q9D6eseomQgp7UW5Dg=="; 135063 }; 135064 dependencies = [ 135065 - sources."@babel/runtime-corejs3-7.17.8" 135066 sources."@mapbox/node-pre-gyp-1.0.9" 135067 sources."@tootallnate/once-1.1.2" 135068 sources."@types/raf-3.4.0" ··· 135159 sources."levn-0.3.0" 135160 sources."lodash-4.17.21" 135161 sources."logidrom-0.3.1" 135162 - sources."lru-cache-6.0.0" 135163 (sources."make-dir-3.1.0" // { 135164 dependencies = [ 135165 sources."semver-6.3.0" ··· 135198 sources."safer-buffer-2.1.2" 135199 sources."sax-1.2.4" 135200 sources."saxes-5.0.1" 135201 - sources."semver-7.3.5" 135202 sources."set-blocking-2.0.0" 135203 sources."signal-exit-3.0.7" 135204 sources."simple-concat-1.0.1" ··· 135262 dependencies = [ 135263 sources."@babel/code-frame-7.16.7" 135264 sources."@babel/helper-validator-identifier-7.16.7" 135265 - (sources."@babel/highlight-7.16.10" // { 135266 dependencies = [ 135267 sources."ansi-styles-3.2.1" 135268 sources."chalk-2.4.2" ··· 135390 sources."delayed-stream-1.0.0" 135391 sources."doctrine-3.0.0" 135392 sources."dom-serializer-1.3.2" 135393 - sources."domelementtype-2.2.0" 135394 sources."domhandler-4.3.1" 135395 sources."domutils-2.8.0" 135396 sources."dot-prop-5.3.0" ··· 135553 ]; 135554 }) 135555 sources."jsprim-1.4.2" 135556 - (sources."jszip-3.9.0" // { 135557 dependencies = [ 135558 sources."readable-stream-2.3.7" 135559 sources."safe-buffer-5.1.2" ··· 135717 ]; 135718 }) 135719 sources."signal-exit-3.0.7" 135720 - sources."sonic-boom-2.6.0" 135721 sources."source-map-0.6.1" 135722 sources."source-map-js-1.0.2" 135723 sources."source-map-support-0.5.20" ··· 135810 webpack = nodeEnv.buildNodePackage { 135811 name = "webpack"; 135812 packageName = "webpack"; 135813 - version = "5.71.0"; 135814 src = fetchurl { 135815 - url = "https://registry.npmjs.org/webpack/-/webpack-5.71.0.tgz"; 135816 - sha512 = "g4dFT7CFG8LY0iU5G8nBL6VlkT21Z7dcYDpJAEJV5Q1WLb9UwnFbrem1k7K52ILqEmomN7pnzWFxxE6SlDY56A=="; 135817 }; 135818 dependencies = [ 135819 sources."@types/eslint-8.4.1" ··· 135847 sources."caniuse-lite-1.0.30001325" 135848 sources."chrome-trace-event-1.0.3" 135849 sources."commander-2.20.3" 135850 - sources."electron-to-chromium-1.4.103" 135851 sources."enhanced-resolve-5.9.2" 135852 sources."es-module-lexer-0.9.3" 135853 sources."escalade-3.1.1" ··· 135975 webpack-dev-server = nodeEnv.buildNodePackage { 135976 name = "webpack-dev-server"; 135977 packageName = "webpack-dev-server"; 135978 - version = "4.8.0"; 135979 src = fetchurl { 135980 - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.8.0.tgz"; 135981 - sha512 = "yZ7OWVP1nOtv8s10R/ZCsH6zf6QKkNusMRBE9DsQbOknRzKaFYYrbwVPCXp8ynUOTt3RlD9szM8H0pUlrJ6wcw=="; 135982 }; 135983 dependencies = [ 135984 sources."@leichtgewicht/ip-codec-2.0.3" ··· 136798 sha512 = "0V5CpR62BY1EOevIxXq5BL84YJeIunEzRsFlqb00tc7D77I51/0bvgdGRZhEwhNI2rFxKZ1i77eoisT56gfMTQ=="; 136799 }; 136800 dependencies = [ 136801 - sources."@babel/runtime-7.17.8" 136802 sources."@gar/promisify-1.1.3" 136803 sources."@isaacs/string-locale-compare-1.1.0" 136804 sources."@nodelib/fs.scandir-2.1.5" ··· 136807 (sources."@npmcli/arborist-4.3.1" // { 136808 dependencies = [ 136809 sources."mkdirp-1.0.4" 136810 - sources."semver-7.3.5" 136811 ]; 136812 }) 136813 (sources."@npmcli/fs-1.1.1" // { 136814 dependencies = [ 136815 - sources."semver-7.3.5" 136816 ]; 136817 }) 136818 (sources."@npmcli/git-2.1.0" // { 136819 dependencies = [ 136820 sources."mkdirp-1.0.4" 136821 - sources."semver-7.3.5" 136822 sources."which-2.0.2" 136823 ]; 136824 }) 136825 sources."@npmcli/installed-package-contents-1.0.7" ··· 136831 }) 136832 (sources."@npmcli/metavuln-calculator-2.0.0" // { 136833 dependencies = [ 136834 - sources."semver-7.3.5" 136835 ]; 136836 }) 136837 (sources."@npmcli/move-file-1.1.2" // { ··· 136918 sources."builtins-1.0.3" 136919 (sources."cacache-15.3.0" // { 136920 dependencies = [ 136921 sources."mkdirp-1.0.4" 136922 ]; 136923 }) 136924 (sources."cacheable-request-2.1.4" // { ··· 136985 sources."delegates-1.0.0" 136986 sources."depd-1.1.2" 136987 sources."detect-node-2.1.0" 136988 - sources."dezalgo-1.0.3" 136989 sources."diff-5.0.0" 136990 sources."dir-glob-3.0.1" 136991 sources."dot-prop-4.2.1" ··· 137043 sources."glob-parent-5.1.2" 137044 (sources."global-agent-2.2.0" // { 137045 dependencies = [ 137046 - sources."semver-7.3.5" 137047 ]; 137048 }) 137049 sources."global-dirs-0.1.1" ··· 137196 sources."log-symbols-2.2.0" 137197 sources."loud-rejection-1.6.0" 137198 sources."lowercase-keys-1.0.1" 137199 - sources."lru-cache-6.0.0" 137200 sources."macos-release-2.5.0" 137201 sources."make-dir-1.3.0" 137202 (sources."make-fetch-happen-9.1.0" // { 137203 dependencies = [ 137204 sources."http-cache-semantics-4.1.0" 137205 ]; 137206 }) 137207 sources."map-age-cleaner-0.1.3" ··· 137230 sources."mimic-response-1.0.1" 137231 sources."minimatch-3.1.2" 137232 sources."minimist-1.2.6" 137233 - sources."minipass-3.1.6" 137234 sources."minipass-collect-1.0.2" 137235 sources."minipass-fetch-1.4.1" 137236 sources."minipass-flush-1.0.5" 137237 sources."minipass-json-stream-1.0.1" 137238 sources."minipass-pipeline-1.2.4" 137239 sources."minipass-sized-1.0.3" 137240 - sources."minizlib-2.1.2" 137241 sources."mkdirp-0.5.6" 137242 (sources."mkdirp-infer-owner-2.0.0" // { 137243 dependencies = [ ··· 137258 sources."is-fullwidth-code-point-3.0.0" 137259 sources."npmlog-6.0.1" 137260 sources."readable-stream-3.6.0" 137261 - sources."semver-7.3.5" 137262 sources."string-width-4.2.3" 137263 sources."strip-ansi-6.0.1" 137264 sources."which-2.0.2" ··· 137272 sources."npm-conf-1.1.3" 137273 (sources."npm-install-checks-4.0.0" // { 137274 dependencies = [ 137275 - sources."semver-7.3.5" 137276 ]; 137277 }) 137278 (sources."npm-keyword-5.0.0" // { ··· 137289 (sources."npm-package-arg-8.1.5" // { 137290 dependencies = [ 137291 sources."hosted-git-info-4.1.0" 137292 - sources."semver-7.3.5" 137293 ]; 137294 }) 137295 sources."npm-packlist-3.0.0" 137296 (sources."npm-pick-manifest-6.1.1" // { 137297 dependencies = [ 137298 - sources."semver-7.3.5" 137299 ]; 137300 }) 137301 (sources."npm-registry-fetch-12.0.2" // { 137302 dependencies = [ 137303 sources."@npmcli/fs-2.1.0" 137304 sources."@tootallnate/once-2.0.0" 137305 - (sources."cacache-16.0.3" // { 137306 - dependencies = [ 137307 - sources."ssri-8.0.1" 137308 - ]; 137309 - }) 137310 sources."debug-4.3.4" 137311 sources."http-cache-semantics-4.1.0" 137312 sources."http-proxy-agent-5.0.0" 137313 - sources."lru-cache-7.7.3" 137314 (sources."make-fetch-happen-10.1.2" // { 137315 dependencies = [ 137316 sources."minipass-fetch-2.1.0" ··· 137318 }) 137319 sources."mkdirp-1.0.4" 137320 sources."ms-2.1.2" 137321 - (sources."semver-7.3.5" // { 137322 - dependencies = [ 137323 - sources."lru-cache-6.0.0" 137324 - ]; 137325 - }) 137326 sources."ssri-9.0.0" 137327 ]; 137328 }) ··· 137599 (sources."tar-6.1.11" // { 137600 dependencies = [ 137601 sources."mkdirp-1.0.4" 137602 ]; 137603 }) 137604 (sources."term-size-1.2.0" // { ··· 137607 sources."execa-0.7.0" 137608 sources."get-stream-3.0.0" 137609 sources."lru-cache-4.1.5" 137610 - sources."yallist-2.1.2" 137611 ]; 137612 }) 137613 sources."text-table-0.2.0" ··· 137683 sources."wrappy-1.0.2" 137684 sources."write-file-atomic-2.4.3" 137685 sources."xdg-basedir-3.0.0" 137686 - sources."yallist-4.0.0" 137687 (sources."yeoman-character-1.1.0" // { 137688 dependencies = [ 137689 sources."has-flag-1.0.0" ··· 137732 sources."readable-stream-3.6.0" 137733 sources."restore-cursor-3.1.0" 137734 sources."rxjs-7.5.5" 137735 - sources."semver-7.3.5" 137736 sources."shebang-command-2.0.0" 137737 sources."shebang-regex-3.0.0" 137738 sources."string-width-4.2.3" ··· 137824 sources."through-2.3.8" 137825 sources."to-regex-range-5.0.1" 137826 sources."universalify-2.0.0" 137827 - sources."web-streams-polyfill-3.2.0" 137828 sources."which-2.0.2" 137829 sources."yaml-1.10.2" 137830 ];
··· 58 sha512 = "7rHvIQLvfBYatq+oAy4dvi6Vf00gNVnvdhqR5a7gpav7qEPDpwOFY1pW5T9tKr32KZd4rcCwqVZgygEewnaP2A=="; 59 }; 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 + }; 70 "@alexbosworth/html2unicode-1.1.5" = { 71 name = "_at_alexbosworth_slash_html2unicode"; 72 packageName = "@alexbosworth/html2unicode"; ··· 112 sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="; 113 }; 114 }; 115 + "@angular-devkit/architect-0.1303.2" = { 116 name = "_at_angular-devkit_slash_architect"; 117 packageName = "@angular-devkit/architect"; 118 + version = "0.1303.2"; 119 src = fetchurl { 120 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.2.tgz"; 121 + sha512 = "aywsRuucfZ4Tu68wtYI8ItWVbsbc9wc0xm4DB+ROtkAcmuuk4aiLgSqW2Eux6QxmGnq9U/yjFMLASOhFB8qDlw=="; 122 }; 123 }; 124 + "@angular-devkit/core-13.3.2" = { 125 name = "_at_angular-devkit_slash_core"; 126 packageName = "@angular-devkit/core"; 127 + version = "13.3.2"; 128 src = fetchurl { 129 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.2.tgz"; 130 + sha512 = "wav5plcnlxQAfZ+0EUt3dvVTJnJ1au2TlKVQ0jSQJdR1LA6N7QUI49N2Ua6ZnDMwruQaQkoynitMW2l1it3qYQ=="; 131 }; 132 }; 133 + "@angular-devkit/schematics-13.3.2" = { 134 name = "_at_angular-devkit_slash_schematics"; 135 packageName = "@angular-devkit/schematics"; 136 + version = "13.3.2"; 137 src = fetchurl { 138 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.2.tgz"; 139 + sha512 = "XCLb23jmqHN0gJg9ZlICaFgfpfnCufIQp5SOsRKMKRkhjKycvDmKnfBTKDlkzb1IaUl6wQwP5k7Z69b9EX+CQw=="; 140 }; 141 }; 142 + "@angular-devkit/schematics-cli-13.3.2" = { 143 name = "_at_angular-devkit_slash_schematics-cli"; 144 packageName = "@angular-devkit/schematics-cli"; 145 + version = "13.3.2"; 146 src = fetchurl { 147 + url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-13.3.2.tgz"; 148 + sha512 = "cUHZFNq2kaCaReJAU28MSu2D+WDFTqt2v03U79TryOutYdF8BV4FyfvKqCSW6WXna219GXSXPepVqDYcjvn7/w=="; 149 }; 150 }; 151 "@antora/asciidoc-loader-3.0.1" = { ··· 1201 sha512 = "p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ=="; 1202 }; 1203 }; 1204 + "@babel/core-7.17.9" = { 1205 name = "_at_babel_slash_core"; 1206 packageName = "@babel/core"; 1207 + version = "7.17.9"; 1208 src = fetchurl { 1209 + url = "https://registry.npmjs.org/@babel/core/-/core-7.17.9.tgz"; 1210 + sha512 = "5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw=="; 1211 }; 1212 }; 1213 "@babel/core-7.9.0" = { ··· 1219 sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w=="; 1220 }; 1221 }; 1222 + "@babel/generator-7.17.9" = { 1223 name = "_at_babel_slash_generator"; 1224 packageName = "@babel/generator"; 1225 + version = "7.17.9"; 1226 src = fetchurl { 1227 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.9.tgz"; 1228 + sha512 = "rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ=="; 1229 }; 1230 }; 1231 "@babel/helper-annotate-as-pure-7.16.7" = { ··· 1255 sha512 = "UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w=="; 1256 }; 1257 }; 1258 + "@babel/helper-create-class-features-plugin-7.17.9" = { 1259 name = "_at_babel_slash_helper-create-class-features-plugin"; 1260 packageName = "@babel/helper-create-class-features-plugin"; 1261 + version = "7.17.9"; 1262 src = fetchurl { 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=="; 1265 }; 1266 }; 1267 "@babel/helper-create-regexp-features-plugin-7.17.0" = { ··· 1300 sha512 = "KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ=="; 1301 }; 1302 }; 1303 + "@babel/helper-function-name-7.17.9" = { 1304 name = "_at_babel_slash_helper-function-name"; 1305 packageName = "@babel/helper-function-name"; 1306 + version = "7.17.9"; 1307 src = fetchurl { 1308 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz"; 1309 + sha512 = "7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg=="; 1310 }; 1311 }; 1312 "@babel/helper-hoist-variables-7.16.7" = { ··· 1435 sha512 = "8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw=="; 1436 }; 1437 }; 1438 + "@babel/helpers-7.17.9" = { 1439 name = "_at_babel_slash_helpers"; 1440 packageName = "@babel/helpers"; 1441 + version = "7.17.9"; 1442 src = fetchurl { 1443 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz"; 1444 + sha512 = "cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q=="; 1445 }; 1446 }; 1447 + "@babel/highlight-7.17.9" = { 1448 name = "_at_babel_slash_highlight"; 1449 packageName = "@babel/highlight"; 1450 + version = "7.17.9"; 1451 src = fetchurl { 1452 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz"; 1453 + sha512 = "J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg=="; 1454 }; 1455 }; 1456 "@babel/node-7.16.8" = { ··· 1471 sha512 = "RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw=="; 1472 }; 1473 }; 1474 + "@babel/parser-7.17.9" = { 1475 name = "_at_babel_slash_parser"; 1476 packageName = "@babel/parser"; 1477 + version = "7.17.9"; 1478 src = fetchurl { 1479 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.9.tgz"; 1480 + sha512 = "vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg=="; 1481 }; 1482 }; 1483 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" = { ··· 1975 sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g=="; 1976 }; 1977 }; 1978 + "@babel/plugin-transform-modules-commonjs-7.17.9" = { 1979 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 1980 packageName = "@babel/plugin-transform-modules-commonjs"; 1981 + version = "7.17.9"; 1982 src = fetchurl { 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=="; 1985 }; 1986 }; 1987 "@babel/plugin-transform-modules-systemjs-7.17.8" = { ··· 2083 sha512 = "hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA=="; 2084 }; 2085 }; 2086 + "@babel/plugin-transform-regenerator-7.17.9" = { 2087 name = "_at_babel_slash_plugin-transform-regenerator"; 2088 packageName = "@babel/plugin-transform-regenerator"; 2089 + version = "7.17.9"; 2090 src = fetchurl { 2091 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.17.9.tgz"; 2092 + sha512 = "Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ=="; 2093 }; 2094 }; 2095 "@babel/plugin-transform-reserved-words-7.16.7" = { ··· 2263 sha512 = "aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA=="; 2264 }; 2265 }; 2266 + "@babel/runtime-7.17.9" = { 2267 name = "_at_babel_slash_runtime"; 2268 packageName = "@babel/runtime"; 2269 + version = "7.17.9"; 2270 src = fetchurl { 2271 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz"; 2272 + sha512 = "lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg=="; 2273 }; 2274 }; 2275 "@babel/runtime-7.9.0" = { ··· 2281 sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA=="; 2282 }; 2283 }; 2284 + "@babel/runtime-corejs3-7.17.9" = { 2285 name = "_at_babel_slash_runtime-corejs3"; 2286 packageName = "@babel/runtime-corejs3"; 2287 + version = "7.17.9"; 2288 src = fetchurl { 2289 + url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.17.9.tgz"; 2290 + sha512 = "WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw=="; 2291 }; 2292 }; 2293 "@babel/template-7.16.7" = { ··· 2299 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 2300 }; 2301 }; 2302 + "@babel/traverse-7.17.9" = { 2303 name = "_at_babel_slash_traverse"; 2304 packageName = "@babel/traverse"; 2305 + version = "7.17.9"; 2306 src = fetchurl { 2307 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.9.tgz"; 2308 + sha512 = "PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw=="; 2309 }; 2310 }; 2311 "@babel/types-7.16.0" = { ··· 2326 sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; 2327 }; 2328 }; 2329 + "@blueprintjs/colors-4.0.5" = { 2330 name = "_at_blueprintjs_slash_colors"; 2331 packageName = "@blueprintjs/colors"; 2332 + version = "4.0.5"; 2333 src = fetchurl { 2334 + url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.5.tgz"; 2335 + sha512 = "5ewWnDdUzyP7hnfidIPyAykGmjHAY2xjcUPM3J2hmnAQ4FORWPv7Mr3PJ9D0D7GfZV/ACx3URRclE1MXfvVlGA=="; 2336 }; 2337 }; 2338 "@blueprintjs/core-3.54.0" = { ··· 2677 sha512 = "NKz7pDZ7pwj/b33i3f4WLpC1rOOUMmENwYgftxU+giU2YBeKM2wZbMTSEIzsrel56r0UlQYmdIVlP/B4nnVaoQ=="; 2678 }; 2679 }; 2680 + "@cspell/dict-bash-2.0.2" = { 2681 name = "_at_cspell_slash_dict-bash"; 2682 packageName = "@cspell/dict-bash"; 2683 + version = "2.0.2"; 2684 src = fetchurl { 2685 + url = "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-2.0.2.tgz"; 2686 + sha512 = "ASIgI/LmV2TYrD4mtk+gm4XmUSTRomOyRt7NDWyBpEww/AeawC2O2NH6FosyUT6dUU3GaXt2wgJRN7R78n1SGg=="; 2687 }; 2688 }; 2689 "@cspell/dict-companies-2.0.3" = { ··· 2695 sha512 = "O622rMAaHm85AmqNyMki5je8HB/1XlTKbGOXh2UUhooI5qdgdfrjTQ6VBuHwHrfEfuODBHYTNYXVB2m23XqHCg=="; 2696 }; 2697 }; 2698 + "@cspell/dict-cpp-2.0.1" = { 2699 name = "_at_cspell_slash_dict-cpp"; 2700 packageName = "@cspell/dict-cpp"; 2701 + version = "2.0.1"; 2702 src = fetchurl { 2703 + url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-2.0.1.tgz"; 2704 + sha512 = "M7ILooLd8qpAEk2Mr8QG/f5hMSaswKXu10Z4u7bmWJNUutPEMrliFvfY/HoYJoE0zX980wRhZg3UqZYKWjJ2bA=="; 2705 }; 2706 }; 2707 "@cspell/dict-cryptocurrencies-2.0.0" = { ··· 3676 sha512 = "+WoaAaoYx/wfkrz1Ag40JqHvDUFfQcg+dQ3jaEOoau16y7EZGIe7oN8WYIXNMgWuMxH7r1QlanFbQZ+ziKjHmw=="; 3677 }; 3678 }; 3679 + "@fluentui/react-8.64.1" = { 3680 name = "_at_fluentui_slash_react"; 3681 packageName = "@fluentui/react"; 3682 + version = "8.64.1"; 3683 src = fetchurl { 3684 + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.64.1.tgz"; 3685 + sha512 = "2xk+LqUwn7Xp3eDIgeLInX4f6hgdie6RGcZo7D1nGSIB0p5EOR8IcwhataYs3HMte3WFWBRJhYbEXYZVfCfvfA=="; 3686 }; 3687 }; 3688 "@fluentui/react-focus-8.5.6" = { ··· 3865 sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg=="; 3866 }; 3867 }; 3868 + "@graphql-tools/batch-execute-8.4.2" = { 3869 name = "_at_graphql-tools_slash_batch-execute"; 3870 packageName = "@graphql-tools/batch-execute"; 3871 + version = "8.4.2"; 3872 src = fetchurl { 3873 + url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.2.tgz"; 3874 + sha512 = "5/el640oG/jfjQCjCRDdtIALyUib8YPONM2NSmckp2g1nOrPTAx/isz3Uptp9y5OI1UXXhONiKy5euTbgsGoXw=="; 3875 }; 3876 }; 3877 "@graphql-tools/delegate-7.1.5" = { ··· 3883 sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; 3884 }; 3885 }; 3886 + "@graphql-tools/delegate-8.7.2" = { 3887 name = "_at_graphql-tools_slash_delegate"; 3888 packageName = "@graphql-tools/delegate"; 3889 + version = "8.7.2"; 3890 src = fetchurl { 3891 + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.2.tgz"; 3892 + sha512 = "SSmx5N6Cq23KRT0YepdmcYugey7MDZSXxtJ8KHHdc5eW9IAHXZWsJWdVnI9woU9omsnE6svnxblZb1UUBl7AUg=="; 3893 }; 3894 }; 3895 "@graphql-tools/graphql-file-loader-6.2.7" = { ··· 3901 sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; 3902 }; 3903 }; 3904 + "@graphql-tools/graphql-file-loader-7.3.8" = { 3905 name = "_at_graphql-tools_slash_graphql-file-loader"; 3906 packageName = "@graphql-tools/graphql-file-loader"; 3907 + version = "7.3.8"; 3908 src = fetchurl { 3909 + url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.8.tgz"; 3910 + sha512 = "SpQZQ0klbox/kxYCLFBTmhLuQFm7P6usWVIqwROK4JSomwCuccc2zDsr1H7ayDpanD3yfkzMsl6gPkOkAo52pA=="; 3911 }; 3912 }; 3913 + "@graphql-tools/import-6.6.10" = { 3914 name = "_at_graphql-tools_slash_import"; 3915 packageName = "@graphql-tools/import"; 3916 + version = "6.6.10"; 3917 src = fetchurl { 3918 + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.10.tgz"; 3919 + sha512 = "yHdlEPTvIjrngtQFNgkMQJt/DjG3hQKvc6Mb8kaatFV4yERN5zx+0vpdrwxTwRNG1N7bI/YCkbrc7PXOb+g89Q=="; 3920 }; 3921 }; 3922 "@graphql-tools/json-file-loader-6.2.6" = { ··· 3928 sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA=="; 3929 }; 3930 }; 3931 + "@graphql-tools/json-file-loader-7.3.8" = { 3932 name = "_at_graphql-tools_slash_json-file-loader"; 3933 packageName = "@graphql-tools/json-file-loader"; 3934 + version = "7.3.8"; 3935 src = fetchurl { 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=="; 3938 }; 3939 }; 3940 "@graphql-tools/load-6.2.4" = { ··· 3946 sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; 3947 }; 3948 }; 3949 + "@graphql-tools/load-7.5.7" = { 3950 name = "_at_graphql-tools_slash_load"; 3951 packageName = "@graphql-tools/load"; 3952 + version = "7.5.7"; 3953 src = fetchurl { 3954 + url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.7.tgz"; 3955 + sha512 = "Z4oKf4MdBvl0EyubmvPL14ldhovKz8C61rQPHD8pjnC8Z0RbvW0a/sns/yuHuCVZoJMsSboU65DPzPTIoQUM4w=="; 3956 }; 3957 }; 3958 "@graphql-tools/merge-6.2.17" = { ··· 3964 sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow=="; 3965 }; 3966 }; 3967 + "@graphql-tools/merge-8.2.7" = { 3968 name = "_at_graphql-tools_slash_merge"; 3969 packageName = "@graphql-tools/merge"; 3970 + version = "8.2.7"; 3971 src = fetchurl { 3972 + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.7.tgz"; 3973 + sha512 = "rKxjNogqu1UYAG/y5FOb6lJsmSQbWA+jq4inWjNEVX54VGGE7/WGnmPaqcsyomNOfS3vIRS6NnG+DxiQSqetjg=="; 3974 }; 3975 }; 3976 "@graphql-tools/schema-7.1.5" = { ··· 3982 sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA=="; 3983 }; 3984 }; 3985 + "@graphql-tools/schema-8.3.7" = { 3986 name = "_at_graphql-tools_slash_schema"; 3987 packageName = "@graphql-tools/schema"; 3988 + version = "8.3.7"; 3989 src = fetchurl { 3990 + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.7.tgz"; 3991 + sha512 = "7byr9J6rfMPFPfiR4u65dy20xHATTvbgOY7KYd1sYPnMKKfRZe0tUgpnE+noXcfob7N8s366WaVh7bEoztQMwg=="; 3992 }; 3993 }; 3994 "@graphql-tools/url-loader-6.10.1" = { ··· 4000 sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; 4001 }; 4002 }; 4003 + "@graphql-tools/url-loader-7.9.9" = { 4004 name = "_at_graphql-tools_slash_url-loader"; 4005 packageName = "@graphql-tools/url-loader"; 4006 + version = "7.9.9"; 4007 src = fetchurl { 4008 + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.9.tgz"; 4009 + sha512 = "qhjBJ3oCXZrzvJchVwtrahr48TXOHPYZ4YXklGrbJVoJs3LP0a7CYUwuXeiNuN+dpgaxkb175sIEN9m0FadGRw=="; 4010 }; 4011 }; 4012 "@graphql-tools/utils-6.2.4" = { ··· 4036 sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ=="; 4037 }; 4038 }; 4039 + "@graphql-tools/utils-8.6.6" = { 4040 name = "_at_graphql-tools_slash_utils"; 4041 packageName = "@graphql-tools/utils"; 4042 + version = "8.6.6"; 4043 src = fetchurl { 4044 + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.6.tgz"; 4045 + sha512 = "wjY2ljKLCnnbRrDNPPgPNqCujou0LFSOWcxAjV6DYUlfFWTsAEvlYmsmY4T+K12wI/fnqoJ2bUwIlap1plFDMg=="; 4046 }; 4047 }; 4048 "@graphql-tools/wrap-7.0.8" = { ··· 4054 sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; 4055 }; 4056 }; 4057 + "@graphql-tools/wrap-8.4.11" = { 4058 name = "_at_graphql-tools_slash_wrap"; 4059 packageName = "@graphql-tools/wrap"; 4060 + version = "8.4.11"; 4061 src = fetchurl { 4062 + url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.11.tgz"; 4063 + sha512 = "bif9yNZCoG1fFTGuIV4UblsJI95VSufl0RReXdr6f2yNbnqjSzgoDMB17WQlLrNOBrXa7r8N5aWBr5hBGhtGig=="; 4064 }; 4065 }; 4066 "@grpc/grpc-js-1.5.10" = { ··· 4072 sha512 = "++oAubX/7rJzlqH0ShyzDENNNDHYrlttdc3NM40KlaVQDcgGqQknuPoavmyTC+oNUDyxPCX5dHceKhfcgN3tiw=="; 4073 }; 4074 }; 4075 "@grpc/grpc-js-1.5.7" = { 4076 name = "_at_grpc_slash_grpc-js"; 4077 packageName = "@grpc/grpc-js"; ··· 4090 sha512 = "ix3rQS64rKL1s6CfIaRgnts+RNYZZ2NaYyTK7iimai6an/0GGDbukzy990hJ5vtKHjhaqJxJMB6Qq7BMZ0zZSQ=="; 4091 }; 4092 }; 4093 + "@grpc/grpc-js-1.6.2" = { 4094 + name = "_at_grpc_slash_grpc-js"; 4095 + packageName = "@grpc/grpc-js"; 4096 + version = "1.6.2"; 4097 src = fetchurl { 4098 + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.2.tgz"; 4099 + sha512 = "9+89Ne1K8F9u86T+l1yIV2DS+dWHYVK61SsDZN4MFTFehOOaJ4rHxa1cW8Lwdn2/6tOx7N3+SY/vfcjztOHopA=="; 4100 }; 4101 }; 4102 "@grpc/proto-loader-0.6.9" = { ··· 5719 sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; 5720 }; 5721 }; 5722 + "@microsoft/load-themed-styles-1.10.251" = { 5723 name = "_at_microsoft_slash_load-themed-styles"; 5724 packageName = "@microsoft/load-themed-styles"; 5725 + version = "1.10.251"; 5726 src = fetchurl { 5727 + url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.251.tgz"; 5728 + sha512 = "Ro0EiAwOIwC6YP00Fw8ixY2xWDQmV+HdfMskcrCfEUZidwBBEt7wlWnjx4SnaJH+sdDTlnnHzuERE2lzH9IvPA=="; 5729 }; 5730 }; 5731 "@mitmaro/errors-1.0.0" = { ··· 5782 sha512 = "BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg=="; 5783 }; 5784 }; 5785 + "@nestjs/schematics-8.0.10" = { 5786 name = "_at_nestjs_slash_schematics"; 5787 packageName = "@nestjs/schematics"; 5788 + version = "8.0.10"; 5789 src = fetchurl { 5790 + url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.10.tgz"; 5791 + sha512 = "gQq/8TYjtgum+5+QuPfHHKgKxDgNLGh8mH+EJ1skOKX+GTxgt5jmg1GFmwEfiOXZUcF9thT6GsOVNKWrdO3YMg=="; 5792 }; 5793 }; 5794 "@netflix/nerror-1.1.3" = { ··· 6070 sha512 = "/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw=="; 6071 }; 6072 }; 6073 + "@npmcli/git-3.0.1" = { 6074 name = "_at_npmcli_slash_git"; 6075 packageName = "@npmcli/git"; 6076 + version = "3.0.1"; 6077 src = fetchurl { 6078 + url = "https://registry.npmjs.org/@npmcli/git/-/git-3.0.1.tgz"; 6079 + sha512 = "UU85F/T+F1oVn3IsB/L6k9zXIMpXBuUBE25QDH0SsURwT6IOBqkC7M16uqo2vVZIyji3X1K4XH9luip7YekH1A=="; 6080 }; 6081 }; 6082 "@npmcli/installed-package-contents-1.0.7" = { ··· 6115 sha512 = "1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="; 6116 }; 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 + }; 6127 "@npmcli/name-from-folder-1.0.1" = { 6128 name = "_at_npmcli_slash_name-from-folder"; 6129 packageName = "@npmcli/name-from-folder"; ··· 6142 sha512 = "fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA=="; 6143 }; 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 + }; 6154 "@npmcli/package-json-1.0.1" = { 6155 name = "_at_npmcli_slash_package-json"; 6156 packageName = "@npmcli/package-json"; ··· 6167 src = fetchurl { 6168 url = "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz"; 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=="; 6179 }; 6180 }; 6181 "@npmcli/run-script-1.8.6" = { ··· 6196 sha512 = "fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig=="; 6197 }; 6198 }; 6199 + "@npmcli/run-script-3.0.2" = { 6200 name = "_at_npmcli_slash_run-script"; 6201 packageName = "@npmcli/run-script"; 6202 + version = "3.0.2"; 6203 src = fetchurl { 6204 + url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-3.0.2.tgz"; 6205 + sha512 = "vdjD/PMBl+OX9j9C9irx5sCCIKfp2PWkpPNH9zxvlJAfSZ3Qp5aU412v+O3PFJl3R1PFNwuyChCqHg4ma6ci2Q=="; 6206 }; 6207 }; 6208 "@oclif/command-1.8.0" = { ··· 6916 sha512 = "h2FvqLA75ZQdIXX1y+ylGjIIi7YtbAUJyIapxaO081h3EsYG2jr9sRL4sym5ECgmvbyua/DEgtMLX3eGYn09FA=="; 6917 }; 6918 }; 6919 + "@parcel/css-1.8.0" = { 6920 name = "_at_parcel_slash_css"; 6921 packageName = "@parcel/css"; 6922 + version = "1.8.0"; 6923 src = fetchurl { 6924 + url = "https://registry.npmjs.org/@parcel/css/-/css-1.8.0.tgz"; 6925 + sha512 = "l6+gGOIk+JEZ+RuqsGzl4yDFKfSC8Uq+FaHzJgwIuIcdHip8ENMr8HMHiOPeO3VSo1JRn3yt5+MIntm2GIzAIA=="; 6926 }; 6927 }; 6928 + "@parcel/css-darwin-arm64-1.8.0" = { 6929 name = "_at_parcel_slash_css-darwin-arm64"; 6930 packageName = "@parcel/css-darwin-arm64"; 6931 + version = "1.8.0"; 6932 src = fetchurl { 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=="; 6935 }; 6936 }; 6937 + "@parcel/css-darwin-x64-1.8.0" = { 6938 name = "_at_parcel_slash_css-darwin-x64"; 6939 packageName = "@parcel/css-darwin-x64"; 6940 + version = "1.8.0"; 6941 src = fetchurl { 6942 + url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.8.0.tgz"; 6943 + sha512 = "SWmB7fnD0USm9AHZBHx9EJBo1c2dwLFuA/HBD3in4yDPGS5kSqfIJTfux3NO/aySsy7NAC3FOgK/L2A2PdtpGQ=="; 6944 }; 6945 }; 6946 + "@parcel/css-linux-arm-gnueabihf-1.8.0" = { 6947 name = "_at_parcel_slash_css-linux-arm-gnueabihf"; 6948 packageName = "@parcel/css-linux-arm-gnueabihf"; 6949 + version = "1.8.0"; 6950 src = fetchurl { 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=="; 6953 }; 6954 }; 6955 + "@parcel/css-linux-arm64-gnu-1.8.0" = { 6956 name = "_at_parcel_slash_css-linux-arm64-gnu"; 6957 packageName = "@parcel/css-linux-arm64-gnu"; 6958 + version = "1.8.0"; 6959 src = fetchurl { 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=="; 6962 }; 6963 }; 6964 + "@parcel/css-linux-arm64-musl-1.8.0" = { 6965 name = "_at_parcel_slash_css-linux-arm64-musl"; 6966 packageName = "@parcel/css-linux-arm64-musl"; 6967 + version = "1.8.0"; 6968 src = fetchurl { 6969 + url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.8.0.tgz"; 6970 + sha512 = "0p0AJ3QypEC0NwFWbzy5JbI8ZDLUED3BGXvqdD7jfOx14qCW2apq7OKBSwSCS8ZvBo8G2tkss7nbyOG5NbIjUQ=="; 6971 }; 6972 }; 6973 + "@parcel/css-linux-x64-gnu-1.8.0" = { 6974 name = "_at_parcel_slash_css-linux-x64-gnu"; 6975 packageName = "@parcel/css-linux-x64-gnu"; 6976 + version = "1.8.0"; 6977 src = fetchurl { 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=="; 6980 }; 6981 }; 6982 + "@parcel/css-linux-x64-musl-1.8.0" = { 6983 name = "_at_parcel_slash_css-linux-x64-musl"; 6984 packageName = "@parcel/css-linux-x64-musl"; 6985 + version = "1.8.0"; 6986 src = fetchurl { 6987 + url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.8.0.tgz"; 6988 + sha512 = "5Q5SQREh1tSOjvIu55acqEzWDdZJZiwlgdoC8nTYmIRsyFn4SVibVMDau5qWmb3Xtswr/hm41xesG3nIBXCX+Q=="; 6989 }; 6990 }; 6991 + "@parcel/css-win32-x64-msvc-1.8.0" = { 6992 name = "_at_parcel_slash_css-win32-x64-msvc"; 6993 packageName = "@parcel/css-win32-x64-msvc"; 6994 + version = "1.8.0"; 6995 src = fetchurl { 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=="; 6998 }; 6999 }; 7000 "@parcel/diagnostic-2.4.1" = { ··· 7771 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 7772 }; 7773 }; 7774 + "@schematics/angular-13.3.2" = { 7775 name = "_at_schematics_slash_angular"; 7776 packageName = "@schematics/angular"; 7777 + version = "13.3.2"; 7778 src = fetchurl { 7779 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.2.tgz"; 7780 + sha512 = "ycTrPEsaSEtJ/CR8MVBrU6jaxcdBSy1lGUW8qSElsGS0OkHFKaV7fkzS9h0gPK9ANp6grZn0Ms3Hy3gAKQkiiQ=="; 7781 }; 7782 }; 7783 "@segment/loosely-validate-event-2.0.0" = { ··· 9427 sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="; 9428 }; 9429 }; 9430 "@types/node-17.0.21" = { 9431 name = "_at_types_slash_node"; 9432 packageName = "@types/node"; ··· 9526 sha512 = "Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ=="; 9527 }; 9528 }; 9529 + "@types/prop-types-15.7.5" = { 9530 name = "_at_types_slash_prop-types"; 9531 packageName = "@types/prop-types"; 9532 + version = "15.7.5"; 9533 src = fetchurl { 9534 + url = "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz"; 9535 + sha512 = "JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="; 9536 }; 9537 }; 9538 "@types/pug-2.0.6" = { ··· 9623 src = fetchurl { 9624 url = "https://registry.npmjs.org/@types/react-window-infinite-loader/-/react-window-infinite-loader-1.0.6.tgz"; 9625 sha512 = "V8g8sBDLVeJJAfEENJS7VXZK+DRJ+jzPNtk8jpj2G+obhf+iqGNUDGwNWCbBhLiD+KpHhf3kWQlKBRi0tAeU4Q=="; 9626 }; 9627 }; 9628 "@types/request-2.48.8" = { ··· 10037 src = fetchurl { 10038 url = "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz"; 10039 sha512 = "JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww=="; 10040 }; 10041 }; 10042 "@types/ws-8.5.2" = { ··· 11054 src = fetchurl { 11055 url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz"; 11056 sha512 = "V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A=="; 11057 }; 11058 }; 11059 "@xmldom/xmldom-0.8.2" = { ··· 13873 sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; 13874 }; 13875 }; 13876 "async-3.2.3" = { 13877 name = "async"; 13878 packageName = "async"; ··· 14035 sha1 = "1e762817d849ce44bfac07925a42036787061b15"; 14036 }; 14037 }; 14038 + "asyncjs-util-1.2.8" = { 14039 name = "asyncjs-util"; 14040 packageName = "asyncjs-util"; 14041 + version = "1.2.8"; 14042 src = fetchurl { 14043 + url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.8.tgz"; 14044 + sha512 = "wUcEKoAxBWWNE1wXkoIvIyM1vVDfvItYXANYTgwemeRL8FgV6z70XdLGLBMty0WiQSub0fBuKIyF+Hz3DCahOg=="; 14045 }; 14046 }; 14047 + "asyncjs-util-1.2.9" = { 14048 name = "asyncjs-util"; 14049 packageName = "asyncjs-util"; 14050 + version = "1.2.9"; 14051 src = fetchurl { 14052 + url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.9.tgz"; 14053 + sha512 = "U9imS8ehJA6DPNdBdvoLcIRDFh7yzI9J93CC8/2obk8gUSIy8KKhmCqYe+3NlISJhxLLi8aWmVL1Gkb3dz1xhg=="; 14054 }; 14055 }; 14056 "asynckit-0.4.0" = { ··· 14233 sha512 = "fChMDiSfWcW0EUWmiqlyc+VAIXKH0w7BBruL3cVWSwO+5oA5A9juGF4NCBV2/KAHzaKaG0hXKPE49Wh6Lq74ag=="; 14234 }; 14235 }; 14236 + "aws-sdk-2.1110.0" = { 14237 name = "aws-sdk"; 14238 packageName = "aws-sdk"; 14239 + version = "2.1110.0"; 14240 src = fetchurl { 14241 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1110.0.tgz"; 14242 + sha512 = "qxHqzE2ikGNRzhajcmWIBuptML3LBwz9TMnS0jLQjXOP54fZYW6EEKy2Dy7MKjHKeo8QQy/EWtDdWfH9Fu5UIA=="; 14243 }; 14244 }; 14245 "aws-sign2-0.6.0" = { ··· 14647 sha512 = "Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A=="; 14648 }; 14649 }; 14650 + "babel-plugin-styled-components-2.0.7" = { 14651 name = "babel-plugin-styled-components"; 14652 packageName = "babel-plugin-styled-components"; 14653 + version = "2.0.7"; 14654 src = fetchurl { 14655 + url = "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.7.tgz"; 14656 + sha512 = "i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA=="; 14657 }; 14658 }; 14659 "babel-plugin-syntax-flow-6.18.0" = { ··· 15673 sha512 = "O1htyufFTYy3EO0JkHg2CLykdXEtV2ssqw47Gq9A0WByp662xpJnMEB9m43LZjsSDjIAOozWRExlFQk2hlV1XQ=="; 15674 }; 15675 }; 15676 + "bipf-1.6.2" = { 15677 name = "bipf"; 15678 packageName = "bipf"; 15679 + version = "1.6.2"; 15680 src = fetchurl { 15681 + url = "https://registry.npmjs.org/bipf/-/bipf-1.6.2.tgz"; 15682 + sha512 = "Bp6Wo3VVrsVxGwXuRuzca78mYxyTHs0MJz1cZRNhEJPb1KBh7J/2k5ixG35qmDyKscJeCM8+wx20lvBN26ueCg=="; 15683 }; 15684 }; 15685 "bit-field-1.5.3" = { ··· 15707 src = fetchurl { 15708 url = "https://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-5.2.0.tgz"; 15709 sha512 = "5DcLxGUDejgNBYcieMIUfjORtUeNWl828VWLHJGVKZCb4zIS1oOySTUr0LGmcqJBQgTBz3bGbRQla4FgrdQEIQ=="; 15710 }; 15711 }; 15712 "bitcoinjs-lib-6.0.1" = { ··· 16195 sha512 = "zEvNSymgMeMMeFwWmwpklFoN/OJA3YO/pVgFTBV3TVq5ulfS0+mVKEGfeInEQESoaSVK1dsVPGr2RLD22uH/aQ=="; 16196 }; 16197 }; 16198 + "bolt01-1.2.4" = { 16199 + name = "bolt01"; 16200 + packageName = "bolt01"; 16201 + version = "1.2.4"; 16202 src = fetchurl { 16203 + url = "https://registry.npmjs.org/bolt01/-/bolt01-1.2.4.tgz"; 16204 + sha512 = "384VACEF6DSao3ffTeD19rgsaYXIQ1UtHUSZf2KAKRYe0i4Amu05E7aNRzymNAB9VapL3nCu5ehR130InCRFCA=="; 16205 }; 16206 }; 16207 + "bolt03-1.2.14" = { 16208 + name = "bolt03"; 16209 + packageName = "bolt03"; 16210 + version = "1.2.14"; 16211 src = fetchurl { 16212 + url = "https://registry.npmjs.org/bolt03/-/bolt03-1.2.14.tgz"; 16213 + sha512 = "LhBa/3hqtSY7fBgE4FzoJXNPtE1tzxEfuWc32LQXNAwvgeWJP3tlQtNqhfPwfDFflSIysSe5N/yK/ybgd/oniA=="; 16214 }; 16215 }; 16216 "bolt07-1.8.0" = { ··· 16222 sha512 = "UJq+p94UK9QsU3P1npJyWF3r8TuJd6kv6P4m656VQK/m5ifw0bWCkYF0ngcHbFGq3j8u3gP8/tkGtB8WwPPRbQ=="; 16223 }; 16224 }; 16225 + "bolt07-1.8.1" = { 16226 + name = "bolt07"; 16227 + packageName = "bolt07"; 16228 + version = "1.8.1"; 16229 src = fetchurl { 16230 + url = "https://registry.npmjs.org/bolt07/-/bolt07-1.8.1.tgz"; 16231 + sha512 = "vgh796VOdJBunZZZX0YuW1DmkS9SbW93rCLPOmWPsAHS/mStEs4+5d0KM1bYX6QBHshY9ecg4kgJaB18jrZsIA=="; 16232 }; 16233 }; 16234 "bolt09-0.2.1" = { ··· 16247 src = fetchurl { 16248 url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.2.tgz"; 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=="; 16259 }; 16260 }; 16261 "bonjour-3.5.0" = { ··· 17519 sha512 = "VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ=="; 17520 }; 17521 }; 17522 + "cacache-16.0.4" = { 17523 name = "cacache"; 17524 packageName = "cacache"; 17525 + version = "16.0.4"; 17526 src = fetchurl { 17527 + url = "https://registry.npmjs.org/cacache/-/cacache-16.0.4.tgz"; 17528 + sha512 = "U0D4wF3/W8ZgK4qDA5fTtOVSr0gaDfd5aa7tUdAV0uukVWKsAIn6SzXQCoVlg7RWZiJa+bcsM3/pXLumGaL2Ug=="; 17529 }; 17530 }; 17531 "cache-base-1.0.1" = { ··· 18086 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 18087 }; 18088 }; 18089 + "cdk8s-1.5.64" = { 18090 name = "cdk8s"; 18091 packageName = "cdk8s"; 18092 + version = "1.5.64"; 18093 src = fetchurl { 18094 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.64.tgz"; 18095 + sha512 = "HogF9VmYgTucZV1jvEujVYe6U1lkHr18Lz5HmcUTLhgGBU+h3XfIWabfpnRgiNn0pWfINvM/WowHZEBL8f8+Tw=="; 18096 }; 18097 }; 18098 + "cdk8s-plus-22-1.0.0-beta.181" = { 18099 name = "cdk8s-plus-22"; 18100 packageName = "cdk8s-plus-22"; 18101 + version = "1.0.0-beta.181"; 18102 src = fetchurl { 18103 + url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.181.tgz"; 18104 + sha512 = "IFjdHKx+WlpLjazfpVCPUPkZtTMPKngm2XtajLGp8rvswxNuH6PbekUuT3TnnjXflvSrItQLOs+zbc7SViH3ow=="; 18105 }; 18106 }; 18107 "cdktf-0.10.1" = { ··· 20750 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 20751 }; 20752 }; 20753 + "constructs-10.0.108" = { 20754 name = "constructs"; 20755 packageName = "constructs"; 20756 + version = "10.0.108"; 20757 src = fetchurl { 20758 + url = "https://registry.npmjs.org/constructs/-/constructs-10.0.108.tgz"; 20759 + sha512 = "A5sZMVWEblwtPBAOScOt8lBn2epTUljGy/sVfHi7juLnSNSZd2qaO7t62qvbIWJEpH047uYGd755PomB+sXeHA=="; 20760 }; 20761 }; 20762 + "constructs-3.3.261" = { 20763 name = "constructs"; 20764 packageName = "constructs"; 20765 + version = "3.3.261"; 20766 src = fetchurl { 20767 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.261.tgz"; 20768 + sha512 = "WAcluBHRkIlTIW0jXOhp9Fm8ZtjS2cF3MbAxN6/VEdAVtjuXlHqKmrBOVIp8V5L26ze/xuMz3mDhq1CrC2pjsw=="; 20769 }; 20770 }; 20771 "consume-http-header-1.0.0" = { ··· 21415 src = fetchurl { 21416 url = "https://registry.npmjs.org/core_d/-/core_d-3.2.0.tgz"; 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=="; 21427 }; 21428 }; 21429 "corestore-5.8.2" = { ··· 22551 sha512 = "4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw=="; 22552 }; 22553 }; 22554 + "d3-7.4.3" = { 22555 name = "d3"; 22556 packageName = "d3"; 22557 + version = "7.4.3"; 22558 src = fetchurl { 22559 + url = "https://registry.npmjs.org/d3/-/d3-7.4.3.tgz"; 22560 + sha512 = "x5cxHjtlXjtCzzaFv23mk6JKHKJzkYm/ePygQdeztcwYVedTHVQ7INyuAmRfjO7d4HTzQuofxzqva/d06Nh++Q=="; 22561 }; 22562 }; 22563 "d3-array-1.2.4" = { ··· 22578 sha512 = "33qQ+ZoZlli19IFiQx4QEpf2CBEayMRzhlisJHSCsSUbDXv6ZishqS1x7uFVClKG4Wr7rZVHvaAttoLow6GqdQ=="; 22579 }; 22580 }; 22581 + "d3-array-3.1.5" = { 22582 name = "d3-array"; 22583 packageName = "d3-array"; 22584 + version = "3.1.5"; 22585 src = fetchurl { 22586 + url = "https://registry.npmjs.org/d3-array/-/d3-array-3.1.5.tgz"; 22587 + sha512 = "Rs6syGyepVjAYXWvhiFiVWUM8l4B/0p33tvlS+eXCVOaFrbz1dU7t+T16SJx/frnaLMXmFmKoXg/5aUVXxmMKQ=="; 22588 }; 22589 }; 22590 "d3-axis-1.0.12" = { ··· 24738 sha512 = "6GfzuDWU0OFAuOvBokXpXPLxjOJ5DZ157Ue3sGQQM3LgAamb8m0R0ruSfN0DDu+XG5XJgT50i6zZ/0o8RglreQ=="; 24739 }; 24740 }; 24741 + "dezalgo-1.0.4" = { 24742 name = "dezalgo"; 24743 packageName = "dezalgo"; 24744 + version = "1.0.4"; 24745 src = fetchurl { 24746 + url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz"; 24747 + sha512 = "rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig=="; 24748 }; 24749 }; 24750 "dht-rpc-4.9.6" = { ··· 25278 sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="; 25279 }; 25280 }; 25281 + "domelementtype-2.3.0" = { 25282 name = "domelementtype"; 25283 packageName = "domelementtype"; 25284 + version = "2.3.0"; 25285 src = fetchurl { 25286 + url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz"; 25287 + sha512 = "OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="; 25288 }; 25289 }; 25290 "domexception-1.0.1" = { ··· 25818 sha512 = "nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="; 25819 }; 25820 }; 25821 "ecpair-2.0.1" = { 25822 name = "ecpair"; 25823 packageName = "ecpair"; ··· 25953 sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw=="; 25954 }; 25955 }; 25956 + "electron-to-chromium-1.4.106" = { 25957 name = "electron-to-chromium"; 25958 packageName = "electron-to-chromium"; 25959 + version = "1.4.106"; 25960 src = fetchurl { 25961 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.106.tgz"; 25962 + sha512 = "ZYfpVLULm67K7CaaGP7DmjyeMY4naxsbTy+syVVxT6QHI1Ww8XbJjmr9fDckrhq44WzCrcC5kH3zGpdusxwwqg=="; 25963 }; 25964 }; 25965 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 26711 sha1 = "5dae3e650e5be3684b88066513d528d092629862"; 26712 }; 26713 }; 26714 + "es5-ext-0.10.60" = { 26715 name = "es5-ext"; 26716 packageName = "es5-ext"; 26717 + version = "0.10.60"; 26718 src = fetchurl { 26719 + url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.60.tgz"; 26720 + sha512 = "jpKNXIt60htYG59/9FGf2PYT3pwMpnEbNKysU+k/4FGwyGtMotOvcZOuW+EmXXYASRqYSXQfGL5cVIthOTgbkg=="; 26721 }; 26722 }; 26723 "es6-error-4.1.1" = { ··· 28619 sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; 28620 }; 28621 }; 28622 + "fast-equals-3.0.1" = { 28623 name = "fast-equals"; 28624 packageName = "fast-equals"; 28625 + version = "3.0.1"; 28626 src = fetchurl { 28627 + url = "https://registry.npmjs.org/fast-equals/-/fast-equals-3.0.1.tgz"; 28628 + sha512 = "J9FxqqC9E/ja0C+SYhoG3Jl6pQuhP92HNcVC75xDEhB+GUzPnjEp3vMfPIxPprYZFfXS5hpVvvPCWUMiDSMS8Q=="; 28629 }; 28630 }; 28631 "fast-fifo-1.1.0" = { ··· 29780 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 29781 }; 29782 }; 29783 + "flow-parser-0.175.1" = { 29784 name = "flow-parser"; 29785 packageName = "flow-parser"; 29786 + version = "0.175.1"; 29787 src = fetchurl { 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=="; 29790 }; 29791 }; 29792 "fluent-ffmpeg-2.1.2" = { ··· 30068 sha512 = "DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw=="; 30069 }; 30070 }; 30071 + "fork-ts-checker-webpack-plugin-7.2.3" = { 30072 name = "fork-ts-checker-webpack-plugin"; 30073 packageName = "fork-ts-checker-webpack-plugin"; 30074 + version = "7.2.3"; 30075 src = fetchurl { 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=="; 30078 }; 30079 }; 30080 "fork-ts-checker-webpack-plugin-v5-5.2.1" = { ··· 31959 sha1 = "2edeeb958084d0f8ea7988e5d995b1c7dfc14777"; 31960 }; 31961 }; 31962 + "goldengate-11.1.0" = { 31963 name = "goldengate"; 31964 packageName = "goldengate"; 31965 + version = "11.1.0"; 31966 src = fetchurl { 31967 + url = "https://registry.npmjs.org/goldengate/-/goldengate-11.1.0.tgz"; 31968 + sha512 = "nwrFxarqF2kxQXEzgcfvfqh64eokhcfyPl5i/RXGueRwUUSV7XW64A4BehcPcjKMKMxPM9RZarBTwa4vdnSZMA=="; 31969 }; 31970 }; 31971 + "goldengate-11.1.1" = { 31972 name = "goldengate"; 31973 packageName = "goldengate"; 31974 + version = "11.1.1"; 31975 src = fetchurl { 31976 + url = "https://registry.npmjs.org/goldengate/-/goldengate-11.1.1.tgz"; 31977 + sha512 = "mxP1gmk5Bg72biHUgH7RYAQAjqX16/e5npGYPeBScspNYdwxqK87PDkZADy3p26dlOnbZN3G7tP06xzASKb7/g=="; 31978 }; 31979 }; 31980 "gonzales-pe-4.3.0" = { ··· 33786 sha1 = "c78de65b5663aa597989dd2b7ab49200d7e4db98"; 33787 }; 33788 }; 33789 + "html-tags-3.2.0" = { 33790 name = "html-tags"; 33791 packageName = "html-tags"; 33792 + version = "3.2.0"; 33793 src = fetchurl { 33794 + url = "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz"; 33795 + sha512 = "vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg=="; 33796 }; 33797 }; 33798 + "html-to-text-8.1.1" = { 33799 name = "html-to-text"; 33800 packageName = "html-to-text"; 33801 + version = "8.1.1"; 33802 src = fetchurl { 33803 + url = "https://registry.npmjs.org/html-to-text/-/html-to-text-8.1.1.tgz"; 33804 + sha512 = "uHdOmIGMy0Z1tJdcJzhbUQm3+V+6Q8YmFYCr1+SxjjwlO2Ha9S/D2eq1P8NLjH5fTzJCLQTL9xCXZNuIwraipw=="; 33805 }; 33806 }; 33807 "html-void-elements-1.0.5" = { ··· 33858 sha512 = "jWTtP3dCd7R8x/tt9DK3pvpcQd7HDMcRPUqPxr/i9989q2k5RHIhmlRDFeyQ/LSd8IKrteG8Ce5g0Ig4eGIipg=="; 33859 }; 33860 }; 33861 + "htmlnano-2.0.2" = { 33862 name = "htmlnano"; 33863 packageName = "htmlnano"; 33864 + version = "2.0.2"; 33865 src = fetchurl { 33866 + url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.0.2.tgz"; 33867 + sha512 = "+ZrQFS4Ub+zd+/fWwfvoYCEGNEa0/zrpys6CyXxvZDwtL7Pl+pOtRkiujyvBQ7Lmfp7/iEPxtOFgxWA16Gkj3w=="; 33868 }; 33869 }; 33870 "htmlparser2-3.10.1" = { ··· 34713 sha512 = "rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw=="; 34714 }; 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 + }; 34725 "image-data-uri-2.0.1" = { 34726 name = "image-data-uri"; 34727 packageName = "image-data-uri"; ··· 35179 src = fetchurl { 35180 url = "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz"; 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=="; 35191 }; 35192 }; 35193 "init-package-json-2.0.5" = { ··· 35694 sha512 = "CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw=="; 35695 }; 35696 }; 35697 + "invoices-2.0.4" = { 35698 name = "invoices"; 35699 packageName = "invoices"; 35700 + version = "2.0.4"; 35701 src = fetchurl { 35702 + url = "https://registry.npmjs.org/invoices/-/invoices-2.0.4.tgz"; 35703 + sha512 = "+Np4KWjNSlYm7Qp12zkRN5eu9tkA7FAFIP60bmpbMbwQbgz5gV9go3bkY8CpGj+Z1zifw5N8U+pH+wko/XSjpw=="; 35704 }; 35705 }; 35706 + "invoices-2.0.5" = { 35707 name = "invoices"; 35708 packageName = "invoices"; 35709 + version = "2.0.5"; 35710 src = fetchurl { 35711 + url = "https://registry.npmjs.org/invoices/-/invoices-2.0.5.tgz"; 35712 + sha512 = "097isfZK3qaDJXQOEqTr3IfnrFZnGCAsbyqWNHAESdG12vBC39dprZWFwPLtnv7I8exhJG6WFFlaC51qaJan/w=="; 35713 }; 35714 }; 35715 "iota-array-1.0.0" = { ··· 38413 sha512 = "ZUzuO2JgnxE01tgIdZorsUZj5jiHP8uxeLDU/vsnmnAU2ZbMHFDT1cWacoAKESDnCyFF8VRCuPXHx8e5/SOXig=="; 38414 }; 38415 }; 38416 + "jsii-srcmak-0.1.523" = { 38417 name = "jsii-srcmak"; 38418 packageName = "jsii-srcmak"; 38419 + version = "0.1.523"; 38420 src = fetchurl { 38421 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.523.tgz"; 38422 + sha512 = "b7vkOZnBcDYl/32tPn0cSPetl4znNTXP7AHDDi9rhP7rgIQx8YWDaPHZsGSpA6RgvC7aGBgHVVYLsC6qPeLJ7w=="; 38423 }; 38424 }; 38425 "json-bigint-1.0.0" = { ··· 38710 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 38711 }; 38712 }; 38713 + "json2csv-5.0.7" = { 38714 name = "json2csv"; 38715 packageName = "json2csv"; 38716 + version = "5.0.7"; 38717 src = fetchurl { 38718 + url = "https://registry.npmjs.org/json2csv/-/json2csv-5.0.7.tgz"; 38719 + sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; 38720 }; 38721 }; 38722 + "json2jsii-0.2.183" = { 38723 name = "json2jsii"; 38724 packageName = "json2jsii"; 38725 + version = "0.2.183"; 38726 src = fetchurl { 38727 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.183.tgz"; 38728 + sha512 = "Xd8EZ7c0JQ27mqXV4uCSwoRMUjNBnTrEkXOhrd8b0hlJoG4WmUFJRAHanPgfsiMwDJVWHMxss11euEfnYqfe7g=="; 38729 }; 38730 }; 38731 "json3-3.2.6" = { ··· 39079 sha1 = "b88f3a7b2e67a2a048152982c7a3756d9c4828f0"; 39080 }; 39081 }; 39082 + "jszip-3.9.1" = { 39083 name = "jszip"; 39084 packageName = "jszip"; 39085 + version = "3.9.1"; 39086 src = fetchurl { 39087 + url = "https://registry.npmjs.org/jszip/-/jszip-3.9.1.tgz"; 39088 + sha512 = "H9A60xPqJ1CuC4Ka6qxzXZeU8aNmgOeP5IFqwJbQQwtu2EUYxota3LdsiZWplF7Wgd9tkAd0mdu36nceSaPuYw=="; 39089 }; 39090 }; 39091 "junk-3.1.0" = { ··· 39394 sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 39395 }; 39396 }; 39397 + "keyv-4.2.2" = { 39398 name = "keyv"; 39399 packageName = "keyv"; 39400 + version = "4.2.2"; 39401 src = fetchurl { 39402 + url = "https://registry.npmjs.org/keyv/-/keyv-4.2.2.tgz"; 39403 + sha512 = "uYS0vKTlBIjNCAUqrjlxmruxOEiZxZIHXyp32sdcGmP+ukFrmWUnE//RcPXJH3Vxrni1H2gsQbjHE0bH7MtMQQ=="; 39404 }; 39405 }; 39406 "khroma-1.4.1" = { ··· 40258 sha512 = "BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA=="; 40259 }; 40260 }; 40261 + "lightning-5.10.1" = { 40262 name = "lightning"; 40263 packageName = "lightning"; 40264 + version = "5.10.1"; 40265 src = fetchurl { 40266 + url = "https://registry.npmjs.org/lightning/-/lightning-5.10.1.tgz"; 40267 + sha512 = "dIrN4vPzmzq9DaMD6c+9DqQwJCMl1lOleWrhIrv+HIpzq6rdNJvUXaVJOFz1OV8P3zy2Q3+s9VxnzeN70ee+ow=="; 40268 }; 40269 }; 40270 "lightning-5.8.2" = { ··· 40285 sha512 = "qiKxXH81vfxJdR1TbY095IKjD7kwbiWbdGcGHs1GMaAxxcGo/iqf5F+VDWHwGjSlPMohMI827vN0JHqZQKcojA=="; 40286 }; 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 + }; 40297 "lilconfig-2.0.5" = { 40298 name = "lilconfig"; 40299 packageName = "lilconfig"; ··· 40492 sha512 = "UmQV0oZZcV3EN6rjcAjIiuWcc3MYZGWQ0GUYz46Ron5fuTa/dUow7WSQa6leFkvZIKVUdECBWVw96tckfEzUFQ=="; 40493 }; 40494 }; 40495 + "ln-accounting-5.0.6" = { 40496 name = "ln-accounting"; 40497 packageName = "ln-accounting"; 40498 + version = "5.0.6"; 40499 src = fetchurl { 40500 + url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.6.tgz"; 40501 + sha512 = "ep+JDvgqQTINsUskIAlLgXE2mVsR01Atl0kFbd5D41RjCvr6tnTGocKG5CSxmp5USIpQnY2Jan1VQkXjrLukBg=="; 40502 }; 40503 }; 40504 + "ln-service-53.10.0" = { 40505 name = "ln-service"; 40506 packageName = "ln-service"; 40507 + version = "53.10.0"; 40508 src = fetchurl { 40509 + url = "https://registry.npmjs.org/ln-service/-/ln-service-53.10.0.tgz"; 40510 + sha512 = "YXpywZVf/oSWiuntp5v6IRPYNCCMlsGkWkFsX4eygnXqZnKDOaBSgvBHYJ871C0SJuyQD4oN0wazTYD+PhQUGA=="; 40511 }; 40512 }; 40513 + "ln-service-53.11.0" = { 40514 name = "ln-service"; 40515 packageName = "ln-service"; 40516 + version = "53.11.0"; 40517 src = fetchurl { 40518 + url = "https://registry.npmjs.org/ln-service/-/ln-service-53.11.0.tgz"; 40519 + sha512 = "qdsgLRFGdn8+zfSDgbGw584fS2QQromxp4VRXzj9nk3qveTD6IwBjaEhC1xtY73MQCHQ3ALkWVn3aYMoy5erFw=="; 40520 }; 40521 }; 40522 "ln-service-53.9.3" = { ··· 40546 sha512 = "YqtS0v6zsDvv7rA51bSbXnB7Il4HQida+FpPD9KTAXdEiJW1L/NiyV4B+oosaygdUbT2oYgM3xw++L7XVBkPvA=="; 40547 }; 40548 }; 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" = { 40568 name = "ln-telegram"; 40569 packageName = "ln-telegram"; 40570 + version = "3.21.1"; 40571 src = fetchurl { 40572 + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.21.1.tgz"; 40573 + sha512 = "xvTNSaM8fG/jnORTPnpU6+righKsqaYNyS1NR4NseqnS3fM5vshsCb+do5mY1R3BNh8Fp6CDT+agakF7hVlFDg=="; 40574 }; 40575 }; 40576 "load-bmfont-1.4.1" = { ··· 42490 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 42491 }; 42492 }; 42493 + "lru-cache-7.8.0" = { 42494 name = "lru-cache"; 42495 packageName = "lru-cache"; 42496 + version = "7.8.0"; 42497 src = fetchurl { 42498 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.8.0.tgz"; 42499 + sha512 = "AmXqneQZL3KZMIgBpaPTeI6pfwh+xQ2vutMsyqOu1TBdEXFZgpG/80wuJ531w2ZN7TI0/oc8CPxzh/DKQudZqg=="; 42500 }; 42501 }; 42502 "lru-queue-0.1.0" = { ··· 42761 sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="; 42762 }; 42763 }; 42764 "make-fetch-happen-10.1.2" = { 42765 name = "make-fetch-happen"; 42766 packageName = "make-fetch-happen"; ··· 45794 sha512 = "JG0V47xRIQ9pyUnx6Hb4+3TrQoia2nA3UIdmyTldhxaxtKFkekkKpUW/N6fwHwod9o4BGuJGtouxOk+yCP5PEA=="; 45795 }; 45796 }; 45797 + "msgpackr-extract-1.1.3" = { 45798 name = "msgpackr-extract"; 45799 packageName = "msgpackr-extract"; 45800 + version = "1.1.3"; 45801 src = fetchurl { 45802 + url = "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-1.1.3.tgz"; 45803 + sha512 = "eFFRviOsqjfr6tOBwuccUdTaTPWn3Rb/Kf5zjoz5IZJMpQD4ZeLecDcRzuze+jzlqQ2cJo1gyuV8dCFEojWkjg=="; 45804 }; 45805 }; 45806 "msgpackr-extract-darwin-arm64-1.1.0" = { ··· 46685 sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="; 46686 }; 46687 }; 46688 + "needle-3.1.0" = { 46689 name = "needle"; 46690 packageName = "needle"; 46691 + version = "3.1.0"; 46692 src = fetchurl { 46693 + url = "https://registry.npmjs.org/needle/-/needle-3.1.0.tgz"; 46694 + sha512 = "gCE9weDhjVGCRqS8dwDR/D3GTAeyXLXuqp7I8EzH6DllZGXSUyxuqqLh+YX9rMAWaaTFyVAg6rHGL25dqvczKw=="; 46695 }; 46696 }; 46697 "negotiator-0.3.0" = { ··· 47361 sha512 = "amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ=="; 47362 }; 47363 }; 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=="; 47371 }; 47372 }; 47373 "node-hid-2.1.1" = { ··· 48126 sha512 = "L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ=="; 48127 }; 48128 }; 48129 + "npm-packlist-5.0.0" = { 48130 name = "npm-packlist"; 48131 packageName = "npm-packlist"; 48132 + version = "5.0.0"; 48133 src = fetchurl { 48134 + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.0.0.tgz"; 48135 + sha512 = "uU20UwM4Hogfab1Q7htJbhcyafM9lGHxOrDjkKvR2S3z7Ds0uRaESk0cXctczk+ABT4DZWNwjB10xlurFdEwZg=="; 48136 }; 48137 }; 48138 "npm-pick-manifest-6.1.1" = { ··· 50251 sha512 = "LdnkVwu808S7ngeKpUjJZDWXsWXqMLYtTGE2pXtKjpIs5Nn2qL6d84Sh+/gxyeJHtTz0qmOEuYnFfn61/TuU0A=="; 50252 }; 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 + }; 50263 "pac-proxy-agent-4.1.0" = { 50264 name = "pac-proxy-agent"; 50265 packageName = "pac-proxy-agent"; ··· 50404 sha512 = "CdYEl03JDrRO3x18uHjBYA9TyoW8gy+ThVcypcDkxPtKlw76e4ejhYB6i9lJ+/cebbjpqPW/CijjqxwDTts8Ow=="; 50405 }; 50406 }; 50407 + "pacote-13.1.1" = { 50408 name = "pacote"; 50409 packageName = "pacote"; 50410 + version = "13.1.1"; 50411 src = fetchurl { 50412 + url = "https://registry.npmjs.org/pacote/-/pacote-13.1.1.tgz"; 50413 + sha512 = "MTT3k1OhUo+IpvoHGp25OwsRU0L+kJQM236OCywxvY4OIJ/YfloNW2/Yc3HMASH10BkfZaGMVK/pxybB7fWcLw=="; 50414 }; 50415 }; 50416 "pad-0.0.5" = { ··· 50429 src = fetchurl { 50430 url = "https://registry.npmjs.org/pad-component/-/pad-component-0.0.1.tgz"; 50431 sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac"; 50432 }; 50433 }; 50434 "paid-services-3.14.5" = { ··· 52177 sha512 = "2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg=="; 52178 }; 52179 }; 52180 + "polished-4.2.2" = { 52181 name = "polished"; 52182 packageName = "polished"; 52183 + version = "4.2.2"; 52184 src = fetchurl { 52185 + url = "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz"; 52186 + sha512 = "Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ=="; 52187 }; 52188 }; 52189 "polyraf-1.1.0" = { ··· 53510 sha512 = "99PZ5+RU4gqiTfK5ZDMDkZtn6eL4WlKfFyVJV7lFQvH3iGmQ85DqMTOdxorERO26LHkevR2qsxnHp0x/2UDJPA=="; 53511 }; 53512 }; 53513 + "probing-2.0.5" = { 53514 name = "probing"; 53515 packageName = "probing"; 53516 + version = "2.0.5"; 53517 src = fetchurl { 53518 + url = "https://registry.npmjs.org/probing/-/probing-2.0.5.tgz"; 53519 + sha512 = "vlE0H17RSL3WkZVYtCyoMivLKmtp5ZMwMaSMvCiwE894iPAfNS4p4dgHk2My0tqhfRsHLebgn2p5Tq39Ik2Llw=="; 53520 }; 53521 }; 53522 "proc-log-1.0.0" = { ··· 54122 sha512 = "0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA=="; 54123 }; 54124 }; 54125 + "psbt-2.0.0" = { 54126 name = "psbt"; 54127 packageName = "psbt"; 54128 + version = "2.0.0"; 54129 src = fetchurl { 54130 + url = "https://registry.npmjs.org/psbt/-/psbt-2.0.0.tgz"; 54131 + sha512 = "V3RueLeXhP/WZETCtUxFn9aaEjHKdJIp2jir1rgK3iU0fV4hC0f45wDRDrrtcFHIUyvudgzhg6Bcgr8cGaWXlA=="; 54132 }; 54133 }; 54134 + "psbt-2.0.1" = { 54135 name = "psbt"; 54136 packageName = "psbt"; 54137 + version = "2.0.1"; 54138 src = fetchurl { 54139 + url = "https://registry.npmjs.org/psbt/-/psbt-2.0.1.tgz"; 54140 + sha512 = "4s5DSXDJ9xAYjuRJXf8rEuqs+Leyl11TE3y98xzlhMJN2UYXSLkAW1KSUdm/gdu1cSTcdcicIFZscNXmxFko+w=="; 54141 }; 54142 }; 54143 "pseudomap-1.0.2" = { ··· 56957 sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 56958 }; 56959 }; 56960 + "regenerator-transform-0.15.0" = { 56961 name = "regenerator-transform"; 56962 packageName = "regenerator-transform"; 56963 + version = "0.15.0"; 56964 src = fetchurl { 56965 + url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz"; 56966 + sha512 = "LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg=="; 56967 }; 56968 }; 56969 "regex-cache-0.4.4" = { ··· 59468 sha512 = "zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA=="; 59469 }; 59470 }; 59471 + "sass-1.50.0" = { 59472 name = "sass"; 59473 packageName = "sass"; 59474 + version = "1.50.0"; 59475 src = fetchurl { 59476 + url = "https://registry.npmjs.org/sass/-/sass-1.50.0.tgz"; 59477 + sha512 = "cLsD6MEZ5URXHStxApajEh7gW189kkjn4Rc8DQweMyF+o5HF5nfEz8QYLMlPsTOD88DknatTmBWkOcw5/LnJLQ=="; 59478 }; 59479 }; 59480 "sass-loader-10.2.0" = { ··· 59628 src = fetchurl { 59629 url = "https://registry.npmjs.org/sdp/-/sdp-2.12.0.tgz"; 59630 sha512 = "jhXqQAQVM+8Xj5EjJGVweuEzgtGWb3tmEEpl3CLP3cStInSbVHSg0QWOGQzNq8pSID4JkpeV2mPqlMDLrm0/Vw=="; 59631 }; 59632 }; 59633 "secp256k1-4.0.3" = { ··· 59889 src = fetchurl { 59890 url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 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=="; 59901 }; 59902 }; 59903 "semver-compare-1.0.0" = { ··· 61637 sha512 = "zlOmAKFLJzTI+MbvmkWhnOOJ++NYo0Iy7F93ARNPmvZvpWG2l8Ff3uwM3CkpHqRw8v3pcRROScM5E+vbeTeOKw=="; 61638 }; 61639 }; 61640 + "sonic-boom-2.7.0" = { 61641 name = "sonic-boom"; 61642 packageName = "sonic-boom"; 61643 + version = "2.7.0"; 61644 src = fetchurl { 61645 + url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.7.0.tgz"; 61646 + sha512 = "Ynxp0OGQG91wvDjCbFlRMHbSUmDq7dE/EgDeUJ/j+Q9x1FVkFry20cjLykxRSmlm3QS0B4JYAKE8239XKN4SHQ=="; 61647 }; 61648 }; 61649 "sorcery-0.10.0" = { ··· 62771 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 62772 }; 62773 }; 62774 + "sscaff-1.2.250" = { 62775 name = "sscaff"; 62776 packageName = "sscaff"; 62777 + version = "1.2.250"; 62778 src = fetchurl { 62779 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.250.tgz"; 62780 + sha512 = "J9asMSddhWmXhjcpm6THvrOgWliXPKmjr6Yzpto64cNPrQOI0RYd8pVTuQNg5bZPDM1/4XM4ywzFcBM7vjeilw=="; 62781 }; 62782 }; 62783 "ssh-config-1.1.6" = { ··· 64328 sha1 = "3a26ab96e06f78cf4ace8d083f6227fa55970947"; 64329 }; 64330 }; 64331 + "sucrase-3.21.0" = { 64332 name = "sucrase"; 64333 packageName = "sucrase"; 64334 + version = "3.21.0"; 64335 src = fetchurl { 64336 + url = "https://registry.npmjs.org/sucrase/-/sucrase-3.21.0.tgz"; 64337 + sha512 = "FjAhMJjDcifARI7bZej0Bi1yekjWQHoEvWIXhLPwDhC6O4iZ5PtGb86WV56riW87hzpgB13wwBKO9vKAiWu5VQ=="; 64338 }; 64339 }; 64340 "sudo-block-1.2.0" = { ··· 64427 sha512 = "DnarpKN6Xn8e3pYlFV4Yvsj9yxLY4q5FIsUe5JvN7vjzP+YCfzXv03dTkZSD2yzrSadsNYHf0IgOUJwKjX457A=="; 64428 }; 64429 }; 64430 + "supercluster-7.1.5" = { 64431 name = "supercluster"; 64432 packageName = "supercluster"; 64433 + version = "7.1.5"; 64434 src = fetchurl { 64435 + url = "https://registry.npmjs.org/supercluster/-/supercluster-7.1.5.tgz"; 64436 + sha512 = "EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg=="; 64437 }; 64438 }; 64439 "superstatic-7.1.0" = { ··· 64598 sha512 = "VKXPRScCzAZqeBZOGq4LLwtNrAu++mVn7XvQox3eFDV7Ciq0Lg70Q8QWjH9iXF7J+pMlXhPsSFwpCb2E+hoeyA=="; 64599 }; 64600 }; 64601 + "svelte2tsx-0.5.7" = { 64602 name = "svelte2tsx"; 64603 packageName = "svelte2tsx"; 64604 + version = "0.5.7"; 64605 src = fetchurl { 64606 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.7.tgz"; 64607 + sha512 = "rekPWR5at7DNvIlJRSCyKFZ6Go/KyqjDRL/zRWQSNMbvTIocsm/gDtSbLz64ZP5Qz3tUeod7QzDqX13lF60kCg=="; 64608 }; 64609 }; 64610 "sver-compat-1.5.0" = { ··· 66966 sha1 = "5f4278e701800967a8fc383fd19648878f2a6e3a"; 66967 }; 66968 }; 66969 + "tsconfig-paths-3.14.1" = { 66970 name = "tsconfig-paths"; 66971 packageName = "tsconfig-paths"; 66972 + version = "3.14.1"; 66973 src = fetchurl { 66974 + url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz"; 66975 + sha512 = "fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ=="; 66976 }; 66977 }; 66978 "tsconfig-paths-webpack-plugin-3.5.2" = { ··· 67450 src = fetchurl { 67451 url = "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz"; 67452 sha512 = "yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA=="; 67453 }; 67454 }; 67455 "type-fest-2.12.0" = { ··· 71764 sha512 = "EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA=="; 71765 }; 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 + }; 71776 "web-streams-polyfill-4.0.0-beta.1" = { 71777 name = "web-streams-polyfill"; 71778 packageName = "web-streams-polyfill"; ··· 71908 sha512 = "6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q=="; 71909 }; 71910 }; 71911 + "webpack-5.71.0" = { 71912 name = "webpack"; 71913 packageName = "webpack"; 71914 + version = "5.71.0"; 71915 src = fetchurl { 71916 + url = "https://registry.npmjs.org/webpack/-/webpack-5.71.0.tgz"; 71917 + sha512 = "g4dFT7CFG8LY0iU5G8nBL6VlkT21Z7dcYDpJAEJV5Q1WLb9UwnFbrem1k7K52ILqEmomN7pnzWFxxE6SlDY56A=="; 71918 }; 71919 }; 71920 + "webpack-5.72.0" = { 71921 name = "webpack"; 71922 packageName = "webpack"; 71923 + version = "5.72.0"; 71924 src = fetchurl { 71925 + url = "https://registry.npmjs.org/webpack/-/webpack-5.72.0.tgz"; 71926 + sha512 = "qmSmbspI0Qo5ld49htys8GY9XhS9CGqFoHTsOVAnjBdg0Zn79y135R+k4IR4rKK6+eKaabMhJwiVB7xw0SJu5w=="; 71927 }; 71928 }; 71929 "webpack-bundle-analyzer-3.9.0" = { ··· 73058 src = fetchurl { 73059 url = "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz"; 73060 sha512 = "wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA=="; 73061 }; 73062 }; 73063 "ws-8.5.0" = { ··· 74363 "@angular/cli" = nodeEnv.buildNodePackage { 74364 name = "_at_angular_slash_cli"; 74365 packageName = "@angular/cli"; 74366 + version = "13.3.2"; 74367 src = fetchurl { 74368 + url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.2.tgz"; 74369 + sha512 = "sfhMbm0wBAYmG+8YEYYZ5QkFyv2TJmMua/LbGoJE/y5UKBN+zLsMO3G/CW3D6pWThbgf04qQpi2LHonbPC/Bkg=="; 74370 }; 74371 dependencies = [ 74372 + sources."@angular-devkit/architect-0.1303.2" 74373 + sources."@angular-devkit/core-13.3.2" 74374 + sources."@angular-devkit/schematics-13.3.2" 74375 sources."@gar/promisify-1.1.3" 74376 sources."@npmcli/fs-1.1.1" 74377 sources."@npmcli/git-2.1.0" ··· 74380 sources."@npmcli/node-gyp-1.0.3" 74381 sources."@npmcli/promise-spawn-1.3.2" 74382 sources."@npmcli/run-script-2.0.0" 74383 + sources."@schematics/angular-13.3.2" 74384 sources."@tootallnate/once-1.1.2" 74385 sources."@yarnpkg/lockfile-1.1.0" 74386 sources."abbrev-1.1.1" ··· 74505 (sources."npm-registry-fetch-12.0.2" // { 74506 dependencies = [ 74507 sources."@npmcli/fs-2.1.0" 74508 + sources."@npmcli/move-file-2.0.0" 74509 sources."@tootallnate/once-2.0.0" 74510 + sources."cacache-16.0.4" 74511 sources."http-proxy-agent-5.0.0" 74512 + sources."lru-cache-7.8.0" 74513 + (sources."make-fetch-happen-10.1.2" // { 74514 dependencies = [ 74515 sources."minipass-fetch-2.1.0" 74516 ]; 74517 }) 74518 + sources."ssri-9.0.0" 74519 ]; 74520 }) 74521 sources."npmlog-6.0.1" ··· 74960 sources."pascal-case-3.1.2" 74961 sources."source-map-0.7.3" 74962 sources."svelte-3.46.6" 74963 + sources."svelte2tsx-0.5.7" 74964 sources."tslib-2.3.1" 74965 sources."typescript-4.6.3" 74966 sources."vscode-css-languageservice-5.4.1" ··· 75119 ]; 75120 }) 75121 sources."json-stringify-safe-5.0.1" 75122 + sources."jszip-3.9.1" 75123 sources."keygrip-1.1.0" 75124 (sources."koa-2.13.4" // { 75125 dependencies = [ ··· 75260 dependencies = [ 75261 sources."@babel/code-frame-7.16.7" 75262 sources."@babel/helper-validator-identifier-7.16.7" 75263 + (sources."@babel/highlight-7.17.9" // { 75264 dependencies = [ 75265 sources."ansi-styles-3.2.1" 75266 sources."chalk-2.4.2" ··· 75512 dependencies = [ 75513 sources."@babel/code-frame-7.16.7" 75514 sources."@babel/helper-validator-identifier-7.16.7" 75515 + (sources."@babel/highlight-7.17.9" // { 75516 dependencies = [ 75517 sources."ansi-styles-3.2.1" 75518 sources."chalk-2.4.2" ··· 75656 sources."jsonfile-6.1.0" 75657 sources."jwa-2.0.0" 75658 sources."jws-4.0.0" 75659 + sources."keyv-4.2.2" 75660 sources."lines-and-columns-1.2.4" 75661 sources."locate-path-6.0.0" 75662 sources."lodash-4.17.21" ··· 75680 sources."normalize-newline-4.1.0" 75681 (sources."normalize-package-data-3.0.3" // { 75682 dependencies = [ 75683 + sources."lru-cache-7.8.0" 75684 + sources."semver-7.3.6" 75685 ]; 75686 }) 75687 sources."normalize-path-3.0.0" ··· 76177 sha512 = "hV1PG20mLFmYbSJvV+JIGVLUT3zzDt2snR9T7tKMBAVvGQBAfzodylbTZe+b20hNz3Max2Z4zsKVksRu71x1+A=="; 76178 }; 76179 dependencies = [ 76180 + sources."@babel/parser-7.17.9" 76181 sources."@medable/mdctl-api-1.0.64" 76182 sources."@medable/mdctl-api-driver-1.0.64" 76183 sources."@medable/mdctl-axon-tools-1.0.64" ··· 77207 "@nestjs/cli" = nodeEnv.buildNodePackage { 77208 name = "_at_nestjs_slash_cli"; 77209 packageName = "@nestjs/cli"; 77210 + version = "8.2.5"; 77211 src = fetchurl { 77212 + url = "https://registry.npmjs.org/@nestjs/cli/-/cli-8.2.5.tgz"; 77213 + sha512 = "b5DzZ08q/6iWvLz+n2DhEyZ3rsOurN1ec1jYQaWC5DCVQoZCwyOew48bVf01kevTK4eZyQxPwuErf7HnFAc0oQ=="; 77214 }; 77215 dependencies = [ 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" // { 77219 dependencies = [ 77220 sources."chalk-4.1.2" 77221 sources."inquirer-8.2.0" ··· 77225 }) 77226 sources."@babel/code-frame-7.16.7" 77227 sources."@babel/helper-validator-identifier-7.16.7" 77228 + (sources."@babel/highlight-7.17.9" // { 77229 dependencies = [ 77230 sources."ansi-styles-3.2.1" 77231 sources."chalk-2.4.2" ··· 77235 sources."supports-color-5.5.0" 77236 ]; 77237 }) 77238 + sources."@nestjs/schematics-8.0.10" 77239 sources."@types/eslint-8.4.1" 77240 sources."@types/eslint-scope-3.7.3" 77241 sources."@types/estree-0.0.51" ··· 77264 sources."acorn-import-assertions-1.8.0" 77265 sources."ajv-8.9.0" 77266 sources."ajv-formats-2.1.1" 77267 + sources."ajv-keywords-3.5.2" 77268 sources."ansi-colors-4.1.1" 77269 sources."ansi-escapes-4.3.2" 77270 sources."ansi-regex-5.0.1" ··· 77299 sources."cross-spawn-7.0.3" 77300 sources."deepmerge-4.2.2" 77301 sources."defaults-1.0.3" 77302 + sources."electron-to-chromium-1.4.106" 77303 sources."emoji-regex-8.0.0" 77304 sources."end-of-stream-1.4.4" 77305 sources."enhanced-resolve-5.9.2" ··· 77321 sources."fast-json-stable-stringify-2.1.0" 77322 sources."figures-3.2.0" 77323 sources."fill-range-7.0.1" 77324 + (sources."fork-ts-checker-webpack-plugin-7.2.3" // { 77325 dependencies = [ 77326 sources."chalk-4.1.2" 77327 ]; ··· 77381 sources."chalk-4.1.2" 77382 ]; 77383 }) 77384 + sources."lru-cache-7.8.0" 77385 sources."macos-release-2.5.0" 77386 sources."magic-string-0.25.7" 77387 sources."memfs-3.4.1" ··· 77390 sources."mime-types-2.1.35" 77391 sources."mimic-fn-2.1.0" 77392 sources."minimatch-3.1.2" 77393 + sources."minimist-1.2.6" 77394 sources."mute-stream-0.0.8" 77395 sources."neo-async-2.6.2" 77396 sources."node-emoji-1.11.0" ··· 77430 sources."rxjs-6.6.7" 77431 sources."safe-buffer-5.2.1" 77432 sources."safer-buffer-2.1.2" 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" 77440 sources."serialize-javascript-6.0.0" 77441 sources."shebang-command-2.0.0" 77442 sources."shebang-regex-3.0.0" ··· 77465 }) 77466 (sources."terser-webpack-plugin-5.3.1" // { 77467 dependencies = [ 77468 sources."source-map-0.6.1" 77469 ]; 77470 }) ··· 77472 sources."tmp-0.0.33" 77473 sources."to-regex-range-5.0.1" 77474 sources."tree-kill-1.2.2" 77475 + sources."tsconfig-paths-3.14.1" 77476 (sources."tsconfig-paths-webpack-plugin-3.5.2" // { 77477 dependencies = [ 77478 sources."chalk-4.1.2" ··· 77486 sources."util-deprecate-1.0.2" 77487 sources."watchpack-2.3.1" 77488 sources."wcwidth-1.0.1" 77489 + sources."webpack-5.71.0" 77490 sources."webpack-node-externals-3.0.0" 77491 sources."webpack-sources-3.2.3" 77492 sources."which-2.0.2" 77493 sources."windows-release-4.0.0" 77494 sources."wrappy-1.0.2" 77495 sources."yaml-1.10.2" 77496 ]; 77497 buildInputs = globalBuildInputs; ··· 77683 sources."async-limiter-1.0.1" 77684 sources."asynckit-0.4.0" 77685 sources."atob-2.1.2" 77686 + (sources."aws-sdk-2.1110.0" // { 77687 dependencies = [ 77688 sources."uuid-3.3.2" 77689 ]; ··· 77973 sources."@apollographql/graphql-upload-8-fork-8.1.3" 77974 sources."@babel/code-frame-7.16.7" 77975 sources."@babel/compat-data-7.17.7" 77976 + (sources."@babel/core-7.17.9" // { 77977 dependencies = [ 77978 sources."semver-6.3.0" 77979 ]; 77980 }) 77981 + (sources."@babel/generator-7.17.9" // { 77982 dependencies = [ 77983 sources."source-map-0.5.7" 77984 ]; ··· 77990 sources."semver-6.3.0" 77991 ]; 77992 }) 77993 + sources."@babel/helper-create-class-features-plugin-7.17.9" 77994 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 77995 (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 77996 dependencies = [ ··· 77999 }) 78000 sources."@babel/helper-environment-visitor-7.16.7" 78001 sources."@babel/helper-explode-assignable-expression-7.16.7" 78002 + sources."@babel/helper-function-name-7.17.9" 78003 sources."@babel/helper-hoist-variables-7.16.7" 78004 sources."@babel/helper-member-expression-to-functions-7.17.7" 78005 sources."@babel/helper-module-imports-7.16.7" ··· 78014 sources."@babel/helper-validator-identifier-7.16.7" 78015 sources."@babel/helper-validator-option-7.16.7" 78016 sources."@babel/helper-wrap-function-7.16.8" 78017 + sources."@babel/helpers-7.17.9" 78018 + (sources."@babel/highlight-7.17.9" // { 78019 dependencies = [ 78020 sources."ansi-styles-3.2.1" 78021 sources."chalk-2.4.2" ··· 78025 sources."supports-color-5.5.0" 78026 ]; 78027 }) 78028 + sources."@babel/parser-7.17.9" 78029 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 78030 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 78031 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 78075 sources."@babel/plugin-transform-literals-7.16.7" 78076 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 78077 sources."@babel/plugin-transform-modules-amd-7.16.7" 78078 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 78079 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 78080 sources."@babel/plugin-transform-modules-umd-7.16.7" 78081 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 78083 sources."@babel/plugin-transform-object-super-7.16.7" 78084 sources."@babel/plugin-transform-parameters-7.16.7" 78085 sources."@babel/plugin-transform-property-literals-7.16.7" 78086 + sources."@babel/plugin-transform-regenerator-7.17.9" 78087 sources."@babel/plugin-transform-reserved-words-7.16.7" 78088 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 78089 sources."@babel/plugin-transform-spread-7.16.7" ··· 78108 sources."semver-5.7.1" 78109 ]; 78110 }) 78111 + sources."@babel/runtime-7.17.9" 78112 sources."@babel/template-7.16.7" 78113 + sources."@babel/traverse-7.17.9" 78114 sources."@babel/types-7.17.0" 78115 sources."@hapi/hoek-9.2.1" 78116 sources."@hapi/topo-5.1.0" ··· 78407 sources."easy-stack-1.0.1" 78408 sources."ee-first-1.1.1" 78409 sources."ejs-3.1.6" 78410 + sources."electron-to-chromium-1.4.106" 78411 sources."emoji-regex-8.0.0" 78412 sources."encodeurl-1.0.2" 78413 sources."end-of-stream-1.4.4" ··· 78512 sources."which-2.0.2" 78513 ]; 78514 }) 78515 + sources."flow-parser-0.175.1" 78516 sources."for-each-0.3.3" 78517 sources."for-in-1.0.2" 78518 sources."forwarded-0.2.0" ··· 78847 sources."regenerate-1.4.2" 78848 sources."regenerate-unicode-properties-10.0.1" 78849 sources."regenerator-runtime-0.13.9" 78850 + sources."regenerator-transform-0.15.0" 78851 sources."regex-not-1.0.2" 78852 sources."regexpu-core-5.0.1" 78853 sources."regjsgen-0.6.0" ··· 78880 sources."commander-2.20.3" 78881 ]; 78882 }) 78883 + (sources."semver-7.3.6" // { 78884 + dependencies = [ 78885 + sources."lru-cache-7.8.0" 78886 + ]; 78887 + }) 78888 (sources."send-0.17.2" // { 78889 dependencies = [ 78890 (sources."debug-2.6.9" // { ··· 79254 }; 79255 dependencies = [ 79256 sources."@babel/code-frame-7.16.7" 79257 + sources."@babel/generator-7.17.9" 79258 sources."@babel/helper-validator-identifier-7.16.7" 79259 + sources."@babel/highlight-7.17.9" 79260 + sources."@babel/parser-7.17.9" 79261 sources."@babel/template-7.16.7" 79262 sources."@babel/types-7.17.0" 79263 sources."@webassemblyjs/ast-1.11.1" ··· 79335 dependencies = [ 79336 sources."@babel/code-frame-7.16.7" 79337 sources."@babel/helper-validator-identifier-7.16.7" 79338 + sources."@babel/highlight-7.17.9" 79339 sources."@sindresorhus/is-0.14.0" 79340 sources."@szmarczak/http-timer-1.1.2" 79341 sources."@types/acorn-4.0.6" ··· 79673 sources."retext-profanities-7.1.0" 79674 sources."sade-1.8.1" 79675 sources."safe-buffer-5.2.1" 79676 + (sources."semver-7.3.6" // { 79677 + dependencies = [ 79678 + sources."lru-cache-7.8.0" 79679 + ]; 79680 + }) 79681 (sources."semver-diff-3.1.1" // { 79682 dependencies = [ 79683 sources."semver-6.3.0" ··· 79828 sources."@ampproject/remapping-2.1.2" 79829 sources."@babel/code-frame-7.16.7" 79830 sources."@babel/compat-data-7.17.7" 79831 + sources."@babel/core-7.17.9" 79832 + (sources."@babel/generator-7.17.9" // { 79833 dependencies = [ 79834 sources."source-map-0.5.7" 79835 ]; 79836 }) 79837 sources."@babel/helper-compilation-targets-7.17.7" 79838 sources."@babel/helper-environment-visitor-7.16.7" 79839 + sources."@babel/helper-function-name-7.17.9" 79840 sources."@babel/helper-hoist-variables-7.16.7" 79841 sources."@babel/helper-module-imports-7.16.7" 79842 sources."@babel/helper-module-transforms-7.17.7" ··· 79844 sources."@babel/helper-split-export-declaration-7.16.7" 79845 sources."@babel/helper-validator-identifier-7.16.7" 79846 sources."@babel/helper-validator-option-7.16.7" 79847 + sources."@babel/helpers-7.17.9" 79848 + sources."@babel/highlight-7.17.9" 79849 + sources."@babel/parser-7.17.9" 79850 sources."@babel/template-7.16.7" 79851 + sources."@babel/traverse-7.17.9" 79852 sources."@babel/types-7.17.0" 79853 sources."@jridgewell/resolve-uri-3.0.5" 79854 sources."@jridgewell/sourcemap-codec-1.4.11" 79855 sources."@jridgewell/trace-mapping-0.3.4" 79856 + sources."@xmldom/xmldom-0.8.2" 79857 sources."JSV-4.0.2" 79858 sources."ansi-styles-3.2.1" 79859 sources."array-unique-0.3.2" ··· 79871 sources."convert-source-map-1.8.0" 79872 sources."debug-4.3.4" 79873 sources."ejs-3.1.6" 79874 + sources."electron-to-chromium-1.4.106" 79875 sources."ensure-posix-path-1.1.1" 79876 sources."escalade-3.1.1" 79877 sources."escape-string-regexp-1.0.5" ··· 80248 dependencies = [ 80249 sources."browserslist-4.20.2" 80250 sources."caniuse-lite-1.0.30001325" 80251 + sources."electron-to-chromium-1.4.106" 80252 sources."escalade-3.1.1" 80253 sources."fraction.js-4.2.0" 80254 sources."node-releases-2.0.2" ··· 80283 sources."ansi-regex-5.0.1" 80284 sources."ansi-styles-4.3.0" 80285 sources."ast-types-0.13.4" 80286 + (sources."aws-sdk-2.1110.0" // { 80287 dependencies = [ 80288 sources."uuid-3.3.2" 80289 ]; ··· 80325 sources."depd-2.0.0" 80326 sources."devtools-protocol-0.0.901419" 80327 sources."dom-serializer-1.3.2" 80328 + sources."domelementtype-2.3.0" 80329 sources."domhandler-4.3.1" 80330 sources."domutils-2.8.0" 80331 sources."emoji-regex-8.0.0" ··· 80491 dependencies = [ 80492 sources."@babel/code-frame-7.16.7" 80493 sources."@babel/helper-validator-identifier-7.16.7" 80494 + (sources."@babel/highlight-7.17.9" // { 80495 dependencies = [ 80496 sources."ansi-styles-3.2.1" 80497 sources."chalk-2.4.2" ··· 80676 sources."nice-try-1.0.5" 80677 (sources."normalize-package-data-3.0.3" // { 80678 dependencies = [ 80679 + sources."lru-cache-7.8.0" 80680 + sources."semver-7.3.6" 80681 ]; 80682 }) 80683 sources."normalize-url-4.5.1" ··· 80902 balanceofsatoshis = nodeEnv.buildNodePackage { 80903 name = "balanceofsatoshis"; 80904 packageName = "balanceofsatoshis"; 80905 + version = "11.64.2"; 80906 src = fetchurl { 80907 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.64.2.tgz"; 80908 + sha512 = "sYju0HhL1tlxwa85jBioJZ7Cgbzbuy8Xx2MrE084KZ/00KEfVOMEEKoAjtKIK4BanQCeDA/EzuBjEksDx8K9Ag=="; 80909 }; 80910 dependencies = [ 80911 (sources."@alexbosworth/caporal-1.4.1" // { ··· 80914 ]; 80915 }) 80916 sources."@alexbosworth/cli-table3-0.6.1" 80917 + sources."@alexbosworth/fiat-1.0.2" 80918 sources."@alexbosworth/html2unicode-1.1.5" 80919 sources."@alexbosworth/node-fetch-2.6.2" 80920 (sources."@alexbosworth/prettyjson-1.2.2" // { ··· 80930 ]; 80931 }) 80932 sources."@grammyjs/types-2.6.0" 80933 + sources."@grpc/grpc-js-1.6.1" 80934 sources."@grpc/proto-loader-0.6.9" 80935 sources."@handsontable/formulajs-2.0.2" 80936 sources."@mitmaro/errors-1.0.0" ··· 80960 sources."@types/request-2.48.8" 80961 sources."@types/serve-static-1.13.10" 80962 sources."@types/tough-cookie-4.0.1" 80963 + sources."@types/ws-8.5.3" 80964 sources."abort-controller-3.0.0" 80965 sources."accepts-1.3.8" 80966 (sources."agent-base-6.0.2" // { ··· 80980 sources."asciichart-1.5.25" 80981 sources."astral-regex-2.0.0" 80982 sources."async-3.2.3" 80983 + sources."asyncjs-util-1.2.9" 80984 sources."asynckit-0.4.0" 80985 sources."base-x-3.0.9" 80986 sources."base64-js-1.5.1" 80987 sources."basic-auth-2.0.1" 80988 sources."bech32-2.0.0" 80989 sources."bessel-1.0.2" 80990 sources."bip174-2.0.1" 80991 sources."bip65-1.0.3" 80992 sources."bip66-1.1.5" 80993 sources."bip68-1.0.4" ··· 81000 }) 81001 sources."bluebird-3.7.2" 81002 sources."bn.js-5.2.0" 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" 81008 (sources."boxen-5.1.2" // { 81009 dependencies = [ 81010 sources."ansi-styles-4.3.0" ··· 81013 sources."type-fest-0.20.2" 81014 ]; 81015 }) 81016 sources."bs58-4.0.1" 81017 sources."bs58check-2.1.2" 81018 sources."buffer-5.7.1" ··· 81025 sources."lowercase-keys-2.0.0" 81026 ]; 81027 }) 81028 + sources."call-bind-1.0.2" 81029 sources."camelcase-6.3.0" 81030 sources."cbor-8.1.0" 81031 (sources."chalk-1.1.3" // { ··· 81064 sources."core-util-is-1.0.3" 81065 sources."cors-2.8.5" 81066 sources."create-hash-1.2.0" 81067 sources."crypto-js-4.1.1" 81068 sources."crypto-random-string-2.0.0" 81069 sources."csv-parse-5.0.4" ··· 81076 sources."define-property-1.0.0" 81077 sources."delayed-stream-1.0.0" 81078 sources."delegates-1.0.0" 81079 + sources."depd-2.0.0" 81080 + sources."destroy-1.2.0" 81081 sources."dot-prop-5.3.0" 81082 sources."duplexer3-0.1.4" 81083 sources."ecpair-2.0.1" 81084 sources."ee-first-1.1.1" 81085 sources."emoji-regex-8.0.0" 81086 sources."encodeurl-1.0.2" 81087 sources."end-of-stream-1.4.4" ··· 81094 sources."exit-hook-1.1.1" 81095 (sources."express-4.17.3" // { 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" 81103 sources."safe-buffer-5.2.1" 81104 + sources."statuses-1.5.0" 81105 ]; 81106 }) 81107 sources."extend-3.0.2" ··· 81110 sources."fast-deep-equal-3.1.3" 81111 sources."fast-levenshtein-2.0.6" 81112 sources."figures-1.7.0" 81113 + (sources."finalhandler-1.1.2" // { 81114 + dependencies = [ 81115 + sources."on-finished-2.3.0" 81116 + sources."statuses-1.5.0" 81117 + ]; 81118 + }) 81119 sources."form-data-2.5.1" 81120 sources."forwarded-0.2.0" 81121 sources."fresh-0.5.2" 81122 + sources."function-bind-1.1.1" 81123 sources."gauge-1.2.7" 81124 sources."get-caller-file-2.0.5" 81125 + sources."get-intrinsic-1.1.1" 81126 sources."get-stream-4.1.0" 81127 + (sources."global-dirs-3.0.0" // { 81128 dependencies = [ 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" 81141 ]; 81142 }) 81143 sources."got-9.6.0" ··· 81148 sources."ms-2.1.2" 81149 ]; 81150 }) 81151 + sources."has-1.0.3" 81152 (sources."has-ansi-2.0.0" // { 81153 dependencies = [ 81154 sources."ansi-regex-2.1.1" 81155 ]; 81156 }) 81157 sources."has-flag-4.0.0" 81158 + sources."has-symbols-1.0.3" 81159 sources."has-unicode-2.0.1" 81160 sources."has-yarn-2.1.0" 81161 (sources."hash-base-3.1.0" // { ··· 81164 sources."safe-buffer-5.2.1" 81165 ]; 81166 }) 81167 sources."hot-formula-parser-4.0.0" 81168 sources."http-cache-semantics-4.1.0" 81169 + sources."http-errors-2.0.0" 81170 sources."iconv-lite-0.4.24" 81171 sources."ieee754-1.2.1" 81172 sources."import-lazy-4.0.0" 81173 sources."imurmurhash-0.1.4" 81174 sources."inherits-2.0.4" 81175 + sources."ini-3.0.0" 81176 (sources."inquirer-8.2.2" // { 81177 dependencies = [ 81178 sources."ansi-escapes-4.3.2" ··· 81190 sources."type-fest-0.21.3" 81191 ]; 81192 }) 81193 + (sources."invoices-2.0.5" // { 81194 dependencies = [ 81195 + sources."bolt09-0.2.2" 81196 ]; 81197 }) 81198 sources."ip-1.1.5" ··· 81220 sources."isstream-0.1.2" 81221 sources."json-buffer-3.0.0" 81222 sources."json-schema-traverse-1.0.0" 81223 + sources."json2csv-5.0.7" 81224 sources."jsonparse-1.3.1" 81225 sources."jstat-1.9.5" 81226 sources."keyv-3.1.0" 81227 sources."kind-of-6.0.3" 81228 sources."latest-version-5.1.0" 81229 + (sources."lightning-5.9.0" // { 81230 dependencies = [ 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" 81248 ]; 81249 }) 81250 + (sources."ln-accounting-5.0.6" // { 81251 dependencies = [ 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" // { 81260 dependencies = [ 81261 + sources."asyncjs-util-1.2.8" 81262 + sources."ln-service-53.9.3" 81263 ]; 81264 }) 81265 + sources."http-errors-1.8.1" 81266 + sources."invoices-2.0.4" 81267 + (sources."lightning-5.8.2" // { 81268 dependencies = [ 81269 + sources."asyncjs-util-1.2.8" 81270 + sources."tiny-secp256k1-2.2.1" 81271 ]; 81272 }) 81273 + (sources."ln-service-53.10.0" // { 81274 dependencies = [ 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" 81282 ]; 81283 }) 81284 + sources."on-finished-2.3.0" 81285 + (sources."p2tr-1.3.0" // { 81286 dependencies = [ 81287 + sources."tiny-secp256k1-2.2.1" 81288 ]; 81289 }) 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" 81297 ]; 81298 }) 81299 + (sources."ln-service-53.11.0" // { 81300 dependencies = [ 81301 + sources."@grpc/grpc-js-1.6.2" 81302 + sources."bolt09-0.2.3" 81303 + sources."lightning-5.10.1" 81304 ]; 81305 }) 81306 + (sources."ln-sync-3.12.0" // { 81307 dependencies = [ 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 + }) 81319 ]; 81320 }) 81321 + (sources."ln-telegram-3.21.1" // { 81322 dependencies = [ 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" 81350 ]; 81351 }) 81352 sources."lodash-4.17.21" ··· 81367 }) 81368 sources."long-4.0.0" 81369 sources."lowercase-keys-1.0.1" 81370 + sources."lru-cache-7.8.0" 81371 sources."luxon-2.3.1" 81372 sources."macaroon-3.0.4" 81373 (sources."make-dir-3.1.0" // { ··· 81378 sources."md5.js-1.3.5" 81379 sources."media-typer-0.3.0" 81380 sources."merge-descriptors-1.0.1" 81381 sources."methods-1.1.2" 81382 sources."micromist-1.1.0" 81383 sources."mime-1.6.0" ··· 81385 sources."mime-types-2.1.35" 81386 sources."mimic-fn-2.1.0" 81387 sources."mimic-response-1.0.1" 81388 sources."minimist-1.2.6" 81389 sources."mkdirp-0.5.6" 81390 + sources."moment-2.29.2" 81391 (sources."morgan-1.10.0" // { 81392 dependencies = [ 81393 + sources."on-finished-2.3.0" 81394 ]; 81395 }) 81396 sources."ms-2.0.0" 81397 sources."mute-stream-0.0.6" 81398 sources."negotiator-0.6.3" 81399 sources."node-fetch-2.6.7" 81400 sources."nofilter-3.1.0" 81401 sources."normalize-url-4.5.1" 81402 sources."npmlog-2.0.4" 81403 sources."number-is-nan-1.0.1" 81404 sources."object-assign-4.1.1" 81405 + sources."object-inspect-1.12.0" 81406 + sources."on-finished-2.4.1" 81407 sources."on-headers-1.0.2" 81408 sources."once-1.4.0" 81409 sources."onetime-1.1.0" ··· 81420 sources."os-shim-0.1.3" 81421 sources."os-tmpdir-1.0.2" 81422 sources."p-cancelable-1.1.0" 81423 + sources."p2tr-1.3.1" 81424 (sources."package-json-6.5.0" // { 81425 dependencies = [ 81426 sources."semver-6.3.0" 81427 ]; 81428 }) 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 + }) 81463 sources."parseurl-1.3.3" 81464 sources."path-to-regexp-0.1.7" 81465 sources."pinkie-2.0.4" 81466 sources."pinkie-promise-2.0.1" 81467 sources."prepend-http-2.0.0" 81468 + sources."probing-2.0.5" 81469 sources."process-nextick-args-2.0.1" 81470 sources."protobufjs-6.11.2" 81471 sources."proxy-addr-2.0.7" 81472 + sources."psbt-2.0.1" 81473 sources."pump-3.0.0" 81474 sources."punycode-2.1.1" 81475 sources."pupa-2.1.1" 81476 sources."pushdata-bitcoin-1.0.1" 81477 sources."qrcode-terminal-0.12.0" 81478 + sources."qs-6.10.3" 81479 sources."randombytes-2.1.0" 81480 sources."range-parser-1.2.1" 81481 + sources."raw-body-2.5.1" 81482 (sources."rc-1.2.8" // { 81483 dependencies = [ 81484 sources."ini-1.3.8" ··· 81498 sources."safe-buffer-5.1.2" 81499 sources."safer-buffer-2.1.2" 81500 sources."sanitize-filename-1.6.3" 81501 + sources."semver-7.3.6" 81502 (sources."semver-diff-3.1.1" // { 81503 dependencies = [ 81504 sources."semver-6.3.0" ··· 81506 }) 81507 (sources."send-0.17.2" // { 81508 dependencies = [ 81509 + sources."depd-1.1.2" 81510 + sources."destroy-1.0.4" 81511 + sources."http-errors-1.8.1" 81512 sources."ms-2.1.3" 81513 + sources."on-finished-2.3.0" 81514 + sources."statuses-1.5.0" 81515 ]; 81516 }) 81517 sources."serve-static-1.14.2" 81518 sources."setprototypeof-1.2.0" 81519 sources."sha.js-2.4.11" 81520 + sources."side-channel-1.0.4" 81521 sources."signal-exit-3.0.7" 81522 sources."sjcl-1.0.8" 81523 (sources."slice-ansi-4.0.0" // { ··· 81535 }) 81536 sources."spawn-sync-1.0.15" 81537 sources."stack-trace-0.0.10" 81538 + sources."statuses-2.0.1" 81539 sources."string-width-4.2.3" 81540 sources."string_decoder-1.1.1" 81541 sources."strip-ansi-6.0.1" ··· 81553 }) 81554 sources."through-2.3.8" 81555 sources."tiny-emitter-2.1.0" 81556 + (sources."tiny-secp256k1-2.2.1" // { 81557 + dependencies = [ 81558 + sources."uint8array-tools-0.0.7" 81559 + ]; 81560 + }) 81561 sources."tmp-0.0.29" 81562 sources."to-readable-stream-1.0.0" 81563 sources."toidentifier-1.0.1" ··· 81566 sources."tslib-2.3.1" 81567 sources."tweetnacl-1.0.3" 81568 sources."tweetnacl-util-0.15.1" 81569 + sources."type-fest-2.12.2" 81570 sources."type-is-1.6.18" 81571 sources."typedarray-0.0.6" 81572 sources."typedarray-to-buffer-3.1.5" 81573 sources."typeforce-1.18.0" 81574 + sources."uint8array-tools-0.0.6" 81575 sources."unique-string-2.0.0" 81576 sources."unpipe-1.0.0" 81577 (sources."update-notifier-5.1.0" // { ··· 81611 sources."ws-8.5.0" 81612 sources."xdg-basedir-4.0.0" 81613 sources."y18n-5.0.8" 81614 sources."yargs-16.2.0" 81615 sources."yargs-parser-20.2.9" 81616 ]; ··· 81808 sources."domhandler-4.3.1" 81809 ]; 81810 }) 81811 + sources."domelementtype-2.3.0" 81812 sources."domhandler-3.3.0" 81813 (sources."domutils-2.8.0" // { 81814 dependencies = [ ··· 82556 dependencies = [ 82557 sources."@babel/code-frame-7.16.7" 82558 sources."@babel/helper-validator-identifier-7.16.7" 82559 + sources."@babel/highlight-7.17.9" 82560 + sources."@babel/parser-7.17.9" 82561 sources."@babel/types-7.17.0" 82562 sources."@kwsites/file-exists-1.1.1" 82563 sources."@kwsites/promise-deferred-1.1.1" ··· 82916 sources."safe-buffer-5.1.2" 82917 sources."safe-json-stringify-1.2.0" 82918 sources."safer-buffer-2.1.2" 82919 + (sources."semver-7.3.6" // { 82920 + dependencies = [ 82921 + sources."lru-cache-7.8.0" 82922 + ]; 82923 + }) 82924 (sources."send-0.17.2" // { 82925 dependencies = [ 82926 (sources."debug-2.6.9" // { ··· 84059 sources."@nodelib/fs.stat-2.0.5" 84060 sources."@nodelib/fs.walk-1.2.8" 84061 sources."@types/node-12.20.47" 84062 + sources."@xmldom/xmldom-0.8.2" 84063 sources."ajv-8.11.0" 84064 sources."ansi-regex-5.0.1" 84065 sources."ansi-styles-4.3.0" ··· 84069 sources."call-bind-1.0.2" 84070 sources."camelcase-6.3.0" 84071 sources."case-1.6.3" 84072 + sources."cdk8s-1.5.64" 84073 + sources."cdk8s-plus-22-1.0.0-beta.181" 84074 sources."chalk-4.1.2" 84075 sources."cliui-7.0.4" 84076 sources."clone-2.1.2" ··· 84083 sources."color-name-1.1.4" 84084 sources."colors-1.4.0" 84085 sources."commonmark-0.30.0" 84086 + sources."constructs-3.3.261" 84087 sources."date-format-4.0.6" 84088 sources."debug-4.3.4" 84089 sources."decamelize-5.0.1" ··· 84170 sources."yargs-16.2.0" 84171 ]; 84172 }) 84173 + (sources."jsii-srcmak-0.1.523" // { 84174 dependencies = [ 84175 sources."fs-extra-9.1.0" 84176 ]; 84177 }) 84178 sources."json-schema-0.4.0" 84179 sources."json-schema-traverse-1.0.0" 84180 + sources."json2jsii-0.2.183" 84181 sources."jsonfile-6.1.0" 84182 sources."jsonschema-1.4.0" 84183 sources."locate-path-5.0.0" 84184 sources."log4js-6.4.4" 84185 sources."lower-case-2.0.2" 84186 + sources."lru-cache-7.8.0" 84187 sources."mdurl-1.0.1" 84188 sources."merge2-1.4.1" 84189 sources."micromatch-4.0.5" ··· 84210 sources."reusify-1.0.4" 84211 sources."rfdc-1.3.0" 84212 sources."run-parallel-1.2.0" 84213 + sources."semver-7.3.6" 84214 (sources."semver-intersect-1.4.0" // { 84215 dependencies = [ 84216 sources."semver-5.7.1" ··· 84221 sources."snake-case-3.0.4" 84222 sources."sort-json-2.0.1" 84223 sources."spdx-license-list-6.5.0" 84224 + sources."sscaff-1.2.250" 84225 (sources."streamroller-3.0.6" // { 84226 dependencies = [ 84227 sources."fs-extra-10.0.1" ··· 84247 sources."wrap-ansi-7.0.0" 84248 sources."xmlbuilder-15.1.1" 84249 sources."y18n-5.0.8" 84250 sources."yaml-2.0.0-11" 84251 (sources."yargs-15.4.1" // { 84252 dependencies = [ ··· 84279 }; 84280 dependencies = [ 84281 sources."@babel/code-frame-7.16.7" 84282 + sources."@babel/generator-7.17.9" 84283 sources."@babel/helper-validator-identifier-7.16.7" 84284 + sources."@babel/highlight-7.17.9" 84285 + sources."@babel/parser-7.17.9" 84286 sources."@babel/template-7.16.7" 84287 sources."@babel/types-7.17.0" 84288 sources."@cdktf/hcl2cdk-0.10.1" ··· 84304 sources."@nodelib/fs.walk-1.2.8" 84305 sources."@types/node-17.0.23" 84306 sources."@types/node-fetch-2.6.1" 84307 + sources."@xmldom/xmldom-0.8.2" 84308 sources."ansi-regex-5.0.1" 84309 sources."ansi-styles-3.2.1" 84310 sources."arr-rotate-1.0.0" ··· 84331 sources."combined-stream-1.0.8" 84332 sources."commonmark-0.30.0" 84333 sources."concat-map-0.0.1" 84334 + sources."constructs-10.0.108" 84335 sources."date-format-4.0.6" 84336 sources."debug-4.3.4" 84337 sources."decamelize-1.2.0" ··· 84474 sources."yargs-parser-20.2.9" 84475 ]; 84476 }) 84477 + (sources."jsii-srcmak-0.1.523" // { 84478 dependencies = [ 84479 sources."fs-extra-9.1.0" 84480 sources."jsonfile-6.1.0" ··· 84487 sources."locate-path-5.0.0" 84488 sources."lodash.isequal-4.5.0" 84489 sources."log4js-6.4.4" 84490 + sources."lru-cache-7.8.0" 84491 sources."mdurl-1.0.1" 84492 sources."merge2-1.4.1" 84493 sources."micromatch-4.0.5" ··· 84527 sources."rfdc-1.3.0" 84528 sources."run-parallel-1.2.0" 84529 sources."safe-buffer-5.2.1" 84530 + sources."semver-7.3.6" 84531 (sources."semver-intersect-1.4.0" // { 84532 dependencies = [ 84533 sources."semver-5.7.1" ··· 84575 sources."wrappy-1.0.2" 84576 sources."xmlbuilder-15.1.1" 84577 sources."y18n-4.0.3" 84578 (sources."yargs-17.4.0" // { 84579 dependencies = [ 84580 sources."ansi-styles-4.3.0" ··· 84663 dependencies = [ 84664 sources."@babel/code-frame-7.16.7" 84665 sources."@babel/helper-validator-identifier-7.16.7" 84666 + sources."@babel/highlight-7.17.9" 84667 sources."@types/minimist-1.2.2" 84668 sources."@types/normalize-package-data-2.4.1" 84669 sources."ansi-styles-3.2.1" ··· 84727 sources."read-pkg-6.0.0" 84728 sources."read-pkg-up-8.0.0" 84729 sources."redent-4.0.0" 84730 + (sources."semver-7.3.6" // { 84731 + dependencies = [ 84732 + sources."lru-cache-7.8.0" 84733 + ]; 84734 + }) 84735 sources."shebang-command-2.0.0" 84736 sources."shebang-regex-3.0.0" 84737 sources."signal-exit-3.0.7" ··· 85315 }) 85316 sources."lodash-4.17.21" 85317 sources."log4js-6.4.4" 85318 + sources."lru-cache-7.8.0" 85319 sources."metals-languageclient-0.4.2" 85320 sources."minimatch-3.1.2" 85321 sources."minimist-1.2.6" ··· 85357 sources."rfdc-1.3.0" 85358 sources."rimraf-3.0.2" 85359 sources."safe-buffer-5.2.1" 85360 + sources."semver-7.3.6" 85361 sources."setimmediate-1.0.5" 85362 sources."shebang-command-1.2.0" 85363 sources."shebang-regex-1.0.0" ··· 85609 sources."@ampproject/remapping-2.1.2" 85610 sources."@babel/code-frame-7.16.7" 85611 sources."@babel/compat-data-7.17.7" 85612 + sources."@babel/core-7.17.9" 85613 + sources."@babel/generator-7.17.9" 85614 sources."@babel/helper-compilation-targets-7.17.7" 85615 sources."@babel/helper-environment-visitor-7.16.7" 85616 + sources."@babel/helper-function-name-7.17.9" 85617 sources."@babel/helper-hoist-variables-7.16.7" 85618 sources."@babel/helper-module-imports-7.16.7" 85619 sources."@babel/helper-module-transforms-7.17.7" ··· 85621 sources."@babel/helper-split-export-declaration-7.16.7" 85622 sources."@babel/helper-validator-identifier-7.16.7" 85623 sources."@babel/helper-validator-option-7.16.7" 85624 + sources."@babel/helpers-7.17.9" 85625 + (sources."@babel/highlight-7.17.9" // { 85626 dependencies = [ 85627 sources."chalk-2.4.2" 85628 ]; 85629 }) 85630 + sources."@babel/parser-7.17.9" 85631 sources."@babel/template-7.16.7" 85632 + sources."@babel/traverse-7.17.9" 85633 sources."@babel/types-7.17.0" 85634 sources."@jridgewell/resolve-uri-3.0.5" 85635 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 85697 sources."dir-glob-3.0.1" 85698 (sources."dom-serializer-0.2.2" // { 85699 dependencies = [ 85700 + sources."domelementtype-2.3.0" 85701 sources."entities-2.2.0" 85702 ]; 85703 }) 85704 sources."domelementtype-1.3.1" 85705 sources."domhandler-2.4.2" 85706 sources."domutils-1.7.0" 85707 + sources."electron-to-chromium-1.4.106" 85708 sources."emoji-regex-8.0.0" 85709 sources."entities-1.1.2" 85710 sources."error-ex-1.3.2" ··· 85738 sources."has-1.0.3" 85739 sources."has-flag-3.0.0" 85740 sources."hosted-git-info-4.1.0" 85741 + sources."html-tags-3.2.0" 85742 sources."htmlparser2-3.10.1" 85743 sources."ignore-5.2.0" 85744 (sources."import-fresh-3.3.0" // { ··· 85803 sources."node-releases-2.0.2" 85804 (sources."normalize-package-data-3.0.3" // { 85805 dependencies = [ 85806 + sources."lru-cache-7.8.0" 85807 + sources."semver-7.3.6" 85808 ]; 85809 }) 85810 sources."normalize-range-0.1.2" ··· 85989 dependencies = [ 85990 sources."@babel/code-frame-7.16.7" 85991 sources."@babel/helper-validator-identifier-7.16.7" 85992 + sources."@babel/highlight-7.17.9" 85993 sources."ansi-styles-3.2.1" 85994 sources."argparse-1.0.10" 85995 sources."balanced-match-1.0.2" ··· 86076 coc-tsserver = nodeEnv.buildNodePackage { 86077 name = "coc-tsserver"; 86078 packageName = "coc-tsserver"; 86079 + version = "1.9.16"; 86080 src = fetchurl { 86081 + url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.9.16.tgz"; 86082 + sha512 = "aTEVdLHrxbvlw1EctzSIzATXk10NBskOXk15LA6gCFsLC8sctzf437BHr+IfW5Le4kCTb4+Nrr+RYMl2+i7EAw=="; 86083 }; 86084 dependencies = [ 86085 sources."typescript-4.6.3" ··· 86123 dependencies = [ 86124 sources."@babel/code-frame-7.12.11" 86125 sources."@babel/helper-validator-identifier-7.16.7" 86126 + (sources."@babel/highlight-7.17.9" // { 86127 dependencies = [ 86128 sources."chalk-2.4.2" 86129 sources."escape-string-regexp-1.0.5" ··· 86235 sources."lodash-4.17.21" 86236 sources."lodash.merge-4.6.2" 86237 sources."lodash.truncate-4.4.2" 86238 + sources."lru-cache-7.8.0" 86239 sources."minimatch-3.1.2" 86240 sources."minimist-1.2.6" 86241 sources."mkdirp-0.5.6" ··· 86259 sources."resolve-1.22.0" 86260 sources."resolve-from-4.0.0" 86261 sources."rimraf-3.0.2" 86262 + sources."semver-7.3.6" 86263 sources."shebang-command-2.0.0" 86264 sources."shebang-regex-3.0.0" 86265 (sources."slice-ansi-4.0.0" // { ··· 86307 sources."which-2.0.2" 86308 sources."word-wrap-1.2.3" 86309 sources."wrappy-1.0.2" 86310 ]; 86311 buildInputs = globalBuildInputs; 86312 meta = { ··· 86762 dependencies = [ 86763 sources."@babel/code-frame-7.16.7" 86764 sources."@babel/helper-validator-identifier-7.16.7" 86765 + sources."@babel/highlight-7.17.9" 86766 sources."@hutson/parse-repository-url-3.0.2" 86767 sources."@types/minimist-1.2.2" 86768 sources."@types/normalize-package-data-2.4.1" ··· 86893 sources."neo-async-2.6.2" 86894 (sources."normalize-package-data-3.0.3" // { 86895 dependencies = [ 86896 + sources."lru-cache-7.8.0" 86897 + sources."semver-7.3.6" 86898 ]; 86899 }) 86900 sources."p-limit-1.3.0" ··· 87456 sources."safe-buffer-5.1.2" 87457 sources."safer-buffer-2.1.2" 87458 sources."sax-1.1.4" 87459 + (sources."semver-7.3.6" // { 87460 + dependencies = [ 87461 + sources."lru-cache-7.8.0" 87462 + ]; 87463 + }) 87464 (sources."semver-diff-3.1.1" // { 87465 dependencies = [ 87466 sources."semver-6.3.0" ··· 87593 dependencies = [ 87594 sources."@babel/code-frame-7.16.7" 87595 sources."@babel/helper-validator-identifier-7.16.7" 87596 + sources."@babel/highlight-7.17.9" 87597 sources."@nodelib/fs.scandir-2.1.5" 87598 sources."@nodelib/fs.stat-2.0.5" 87599 sources."@nodelib/fs.walk-1.2.8" ··· 87666 sources."nested-error-stacks-2.1.1" 87667 (sources."normalize-package-data-3.0.3" // { 87668 dependencies = [ 87669 + sources."lru-cache-7.8.0" 87670 + sources."semver-7.3.6" 87671 ]; 87672 }) 87673 sources."p-event-4.2.0" ··· 87764 sources."debug-3.2.7" 87765 sources."define-properties-1.1.3" 87766 sources."delayed-stream-1.0.0" 87767 + sources."es5-ext-0.10.60" 87768 sources."es6-iterator-2.0.3" 87769 sources."es6-map-0.1.5" 87770 (sources."es6-set-0.1.5" // { ··· 87920 sources."isexe-2.0.0" 87921 sources."jsonfile-6.1.0" 87922 sources."kleur-3.0.3" 87923 + sources."lru-cache-7.8.0" 87924 sources."minimatch-3.1.2" 87925 sources."minimist-1.2.6" 87926 sources."mkdirp-0.5.6" ··· 87933 sources."readable-stream-1.1.14" 87934 sources."rimraf-2.7.1" 87935 sources."safe-buffer-5.1.2" 87936 + sources."semver-7.3.6" 87937 sources."shebang-command-2.0.0" 87938 sources."shebang-regex-3.0.0" 87939 sources."sisteransi-1.0.5" ··· 87964 sources."which-2.0.2" 87965 sources."wrappy-1.0.2" 87966 sources."xtend-4.0.2" 87967 ]; 87968 buildInputs = globalBuildInputs; 87969 meta = { ··· 88004 dependencies = [ 88005 sources."@babel/code-frame-7.16.7" 88006 sources."@babel/helper-validator-identifier-7.16.7" 88007 + (sources."@babel/highlight-7.17.9" // { 88008 dependencies = [ 88009 sources."ansi-styles-3.2.1" 88010 sources."chalk-2.4.2" ··· 88019 sources."@cspell/cspell-types-5.19.5" 88020 sources."@cspell/dict-ada-2.0.0" 88021 sources."@cspell/dict-aws-2.0.0" 88022 + sources."@cspell/dict-bash-2.0.2" 88023 sources."@cspell/dict-companies-2.0.3" 88024 + sources."@cspell/dict-cpp-2.0.1" 88025 sources."@cspell/dict-cryptocurrencies-2.0.0" 88026 sources."@cspell/dict-csharp-2.0.1" 88027 sources."@cspell/dict-css-2.0.0" ··· 88084 sources."error-ex-1.3.2" 88085 sources."escape-string-regexp-1.0.5" 88086 sources."esprima-4.0.1" 88087 + sources."fast-equals-3.0.1" 88088 sources."fast-json-stable-stringify-2.1.0" 88089 sources."file-entry-cache-6.0.1" 88090 sources."fill-range-7.0.1" ··· 88119 sources."jsonfile-6.1.0" 88120 sources."lines-and-columns-1.2.4" 88121 sources."locate-path-6.0.0" 88122 + sources."lru-cache-7.8.0" 88123 (sources."make-dir-3.1.0" // { 88124 dependencies = [ 88125 sources."semver-6.3.0" ··· 88140 sources."resolve-from-5.0.0" 88141 sources."resolve-global-1.0.0" 88142 sources."rimraf-3.0.2" 88143 + sources."semver-7.3.6" 88144 sources."signal-exit-3.0.7" 88145 sources."strip-ansi-6.0.1" 88146 sources."supports-color-7.2.0" ··· 88153 sources."wrappy-1.0.2" 88154 sources."write-file-atomic-3.0.3" 88155 sources."xdg-basedir-4.0.0" 88156 sources."yaml-1.10.2" 88157 sources."yocto-queue-0.1.0" 88158 ]; ··· 88834 "deltachat-desktop-../../applications/networking/instant-messengers/deltachat-desktop" = nodeEnv.buildNodePackage { 88835 name = "deltachat-desktop"; 88836 packageName = "deltachat-desktop"; 88837 + version = "1.28.2"; 88838 src = ../../applications/networking/instant-messengers/deltachat-desktop; 88839 dependencies = [ 88840 sources."@ampproject/remapping-2.1.2" 88841 sources."@babel/code-frame-7.16.7" 88842 sources."@babel/compat-data-7.17.7" 88843 + sources."@babel/core-7.17.9" 88844 + (sources."@babel/generator-7.17.9" // { 88845 dependencies = [ 88846 sources."source-map-0.5.7" 88847 ]; ··· 88849 sources."@babel/helper-annotate-as-pure-7.16.7" 88850 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 88851 sources."@babel/helper-compilation-targets-7.17.7" 88852 + sources."@babel/helper-create-class-features-plugin-7.17.9" 88853 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 88854 sources."@babel/helper-define-polyfill-provider-0.3.1" 88855 sources."@babel/helper-environment-visitor-7.16.7" 88856 sources."@babel/helper-explode-assignable-expression-7.16.7" 88857 + sources."@babel/helper-function-name-7.17.9" 88858 sources."@babel/helper-hoist-variables-7.16.7" 88859 sources."@babel/helper-member-expression-to-functions-7.17.7" 88860 sources."@babel/helper-module-imports-7.16.7" ··· 88869 sources."@babel/helper-validator-identifier-7.16.7" 88870 sources."@babel/helper-validator-option-7.16.7" 88871 sources."@babel/helper-wrap-function-7.16.8" 88872 + sources."@babel/helpers-7.17.9" 88873 + sources."@babel/highlight-7.17.9" 88874 + sources."@babel/parser-7.17.9" 88875 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 88876 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 88877 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 88919 sources."@babel/plugin-transform-literals-7.16.7" 88920 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 88921 sources."@babel/plugin-transform-modules-amd-7.16.7" 88922 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 88923 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 88924 sources."@babel/plugin-transform-modules-umd-7.16.7" 88925 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 88931 sources."@babel/plugin-transform-react-jsx-7.17.3" 88932 sources."@babel/plugin-transform-react-jsx-development-7.16.7" 88933 sources."@babel/plugin-transform-react-pure-annotations-7.16.7" 88934 + sources."@babel/plugin-transform-regenerator-7.17.9" 88935 sources."@babel/plugin-transform-reserved-words-7.16.7" 88936 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 88937 sources."@babel/plugin-transform-spread-7.16.7" ··· 88943 sources."@babel/preset-env-7.16.11" 88944 sources."@babel/preset-modules-0.1.5" 88945 sources."@babel/preset-react-7.16.7" 88946 + sources."@babel/runtime-7.17.9" 88947 sources."@babel/template-7.16.7" 88948 + sources."@babel/traverse-7.17.9" 88949 sources."@babel/types-7.17.0" 88950 + sources."@blueprintjs/colors-4.0.5" 88951 sources."@blueprintjs/core-3.54.0" 88952 sources."@blueprintjs/icons-3.33.0" 88953 sources."@deltachat/message_parser_wasm-0.3.0" ··· 88981 sources."@types/minimist-1.2.2" 88982 sources."@types/node-14.18.12" 88983 sources."@types/node-fetch-2.6.1" 88984 + sources."@types/prop-types-15.7.5" 88985 sources."@types/rc-1.2.1" 88986 sources."@types/react-16.14.24" 88987 sources."@types/react-dom-16.9.14" ··· 89103 sources."duplexer3-0.1.4" 89104 sources."earcut-2.2.3" 89105 sources."electron-14.2.9" 89106 + sources."electron-to-chromium-1.4.106" 89107 sources."emoji-js-clean-4.0.0" 89108 sources."emoji-mart-3.0.1" 89109 sources."emoji-regex-9.2.2" ··· 89184 sources."glob-watcher-5.0.5" 89185 (sources."global-agent-3.0.0" // { 89186 dependencies = [ 89187 + sources."semver-7.3.6" 89188 ]; 89189 }) 89190 sources."global-tunnel-ng-2.7.1" ··· 89250 sources."lodash.debounce-4.0.8" 89251 sources."loose-envify-1.4.0" 89252 sources."lowercase-keys-1.0.1" 89253 + sources."lru-cache-7.8.0" 89254 sources."map-cache-0.2.2" 89255 sources."map-visit-1.0.0" 89256 (sources."mapbox-gl-1.13.2" // { ··· 89358 sources."regenerate-1.4.2" 89359 sources."regenerate-unicode-properties-10.0.1" 89360 sources."regenerator-runtime-0.13.9" 89361 + sources."regenerator-transform-0.15.0" 89362 sources."regex-not-1.0.2" 89363 sources."regexp.prototype.flags-1.4.1" 89364 sources."regexpu-core-5.0.1" ··· 89382 sources."rw-0.1.4" 89383 sources."safe-buffer-5.2.1" 89384 sources."safe-regex-1.1.0" 89385 + (sources."sass-1.50.0" // { 89386 dependencies = [ 89387 sources."anymatch-3.1.2" 89388 sources."binary-extensions-2.2.0" ··· 89473 sources."string_decoder-1.3.0" 89474 sources."strip-json-comments-2.0.1" 89475 sources."sumchecker-3.0.1" 89476 + sources."supercluster-7.1.5" 89477 sources."supports-color-5.5.0" 89478 sources."supports-preserve-symlinks-flag-1.0.0" 89479 sources."temp-dir-1.0.0" ··· 89527 sources."whatwg-url-5.0.0" 89528 sources."wrappy-1.0.2" 89529 sources."xml-js-1.6.11" 89530 sources."yauzl-2.10.0" 89531 ]; 89532 buildInputs = globalBuildInputs; ··· 90148 sources."jsonfile-6.1.0" 90149 sources."jsprim-1.4.2" 90150 sources."junk-3.1.0" 90151 + sources."keyv-4.2.2" 90152 sources."load-json-file-2.0.0" 90153 sources."locate-path-2.0.0" 90154 sources."lodash-4.17.21" ··· 90293 sources."rxjs-7.5.5" 90294 sources."safe-buffer-5.2.1" 90295 sources."safer-buffer-2.1.2" 90296 + (sources."semver-7.3.6" // { 90297 + dependencies = [ 90298 + sources."lru-cache-7.8.0" 90299 + ]; 90300 + }) 90301 sources."semver-compare-1.0.0" 90302 sources."serialize-error-7.0.1" 90303 sources."set-blocking-2.0.0" ··· 90439 sources."@ampproject/remapping-2.1.2" 90440 sources."@babel/code-frame-7.16.7" 90441 sources."@babel/compat-data-7.17.7" 90442 + (sources."@babel/core-7.17.9" // { 90443 dependencies = [ 90444 sources."semver-6.3.0" 90445 ]; 90446 }) 90447 + sources."@babel/generator-7.17.9" 90448 sources."@babel/helper-annotate-as-pure-7.16.7" 90449 (sources."@babel/helper-compilation-targets-7.17.7" // { 90450 dependencies = [ ··· 90452 ]; 90453 }) 90454 sources."@babel/helper-environment-visitor-7.16.7" 90455 + sources."@babel/helper-function-name-7.17.9" 90456 sources."@babel/helper-hoist-variables-7.16.7" 90457 sources."@babel/helper-module-imports-7.16.7" 90458 sources."@babel/helper-module-transforms-7.17.7" ··· 90461 sources."@babel/helper-split-export-declaration-7.16.7" 90462 sources."@babel/helper-validator-identifier-7.16.7" 90463 sources."@babel/helper-validator-option-7.16.7" 90464 + sources."@babel/helpers-7.17.9" 90465 + sources."@babel/highlight-7.17.9" 90466 + sources."@babel/parser-7.17.9" 90467 sources."@babel/plugin-proposal-object-rest-spread-7.17.3" 90468 sources."@babel/plugin-syntax-jsx-7.16.7" 90469 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 90471 sources."@babel/plugin-transform-parameters-7.16.7" 90472 sources."@babel/plugin-transform-react-jsx-7.17.3" 90473 sources."@babel/template-7.16.7" 90474 + sources."@babel/traverse-7.17.9" 90475 sources."@babel/types-7.17.0" 90476 sources."@jridgewell/resolve-uri-3.0.5" 90477 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 90514 sources."concat-map-0.0.1" 90515 (sources."conf-7.1.2" // { 90516 dependencies = [ 90517 + sources."semver-7.3.6" 90518 ]; 90519 }) 90520 sources."convert-source-map-1.8.0" ··· 90529 ]; 90530 }) 90531 sources."dot-prop-5.3.0" 90532 + sources."electron-to-chromium-1.4.106" 90533 sources."emoji-regex-8.0.0" 90534 sources."emojilib-2.4.0" 90535 sources."end-of-stream-1.4.4" ··· 90598 sources."locate-path-3.0.0" 90599 sources."lodash-4.17.21" 90600 sources."loose-envify-1.4.0" 90601 + sources."lru-cache-7.8.0" 90602 (sources."make-dir-3.1.0" // { 90603 dependencies = [ 90604 sources."semver-6.3.0" ··· 90724 }) 90725 sources."wrappy-1.0.2" 90726 sources."ws-7.5.7" 90727 sources."yargs-parser-18.1.3" 90728 sources."yoga-layout-prebuilt-1.10.0" 90729 ]; ··· 90762 dependencies = [ 90763 sources."@babel/code-frame-7.12.11" 90764 sources."@babel/helper-validator-identifier-7.16.7" 90765 + (sources."@babel/highlight-7.17.9" // { 90766 dependencies = [ 90767 sources."ansi-styles-3.2.1" 90768 sources."chalk-2.4.2" ··· 90796 sources."@fluentui/foundation-legacy-8.2.5" 90797 sources."@fluentui/keyboard-key-0.4.0" 90798 sources."@fluentui/merge-styles-8.5.0" 90799 + sources."@fluentui/react-8.64.1" 90800 sources."@fluentui/react-focus-8.5.6" 90801 sources."@fluentui/react-hooks-8.5.3" 90802 sources."@fluentui/react-window-provider-2.2.0" ··· 90823 ]; 90824 }) 90825 sources."@humanwhocodes/object-schema-1.2.1" 90826 + sources."@microsoft/load-themed-styles-1.10.251" 90827 sources."@node-rs/crc32-1.5.0" 90828 sources."@node-rs/crc32-android-arm-eabi-1.5.0" 90829 sources."@node-rs/crc32-android-arm64-1.5.0" ··· 91226 sources."enhanced-resolve-5.9.2" 91227 sources."enquirer-2.3.6" 91228 sources."error-ex-1.3.2" 91229 + sources."es5-ext-0.10.60" 91230 sources."es6-iterator-2.0.3" 91231 sources."es6-symbol-3.1.3" 91232 sources."es6-weak-map-2.0.3" ··· 91627 }) 91628 sources."loose-envify-1.4.0" 91629 sources."lowercase-keys-1.0.1" 91630 + sources."lru-cache-7.8.0" 91631 sources."lru-queue-0.1.0" 91632 sources."make-error-1.3.6" 91633 sources."make-iterator-1.0.1" ··· 91660 sources."mimic-response-1.0.1" 91661 sources."minimatch-3.1.2" 91662 sources."minimist-1.2.5" 91663 + sources."minipass-2.9.0" 91664 sources."minizlib-1.3.3" 91665 (sources."mirakurun-3.9.0-beta.26" // { 91666 dependencies = [ ··· 92007 sources."saslprep-1.0.3" 92008 sources."sax-1.2.4" 92009 sources."scheduler-0.20.2" 92010 + sources."semver-7.3.6" 92011 sources."semver-greatest-satisfied-range-1.1.0" 92012 (sources."send-0.17.1" // { 92013 dependencies = [ ··· 92152 sources."minimist-1.2.6" 92153 sources."mkdirp-0.5.6" 92154 sources."safe-buffer-5.2.1" 92155 ]; 92156 }) 92157 sources."text-table-0.2.0" ··· 92293 sources."xmlbuilder-11.0.1" 92294 sources."xtend-4.0.2" 92295 sources."y18n-5.0.8" 92296 + sources."yallist-3.1.1" 92297 (sources."yargonaut-1.1.4" // { 92298 dependencies = [ 92299 sources."ansi-styles-2.2.1" ··· 92334 sources."@achrinza/node-ipc-9.2.2" 92335 sources."@babel/code-frame-7.16.7" 92336 sources."@babel/helper-validator-identifier-7.16.7" 92337 + sources."@babel/highlight-7.17.9" 92338 (sources."@eslint/eslintrc-0.4.3" // { 92339 dependencies = [ 92340 sources."acorn-7.4.1" ··· 92510 dependencies = [ 92511 sources."lru-cache-5.1.1" 92512 sources."semver-6.3.0" 92513 ]; 92514 }) 92515 (sources."@vue/component-compiler-utils-3.3.0" // { ··· 92668 (sources."cacache-12.0.4" // { 92669 dependencies = [ 92670 sources."lru-cache-5.1.1" 92671 ]; 92672 }) 92673 sources."cache-base-1.0.1" ··· 92918 sources."dom-converter-0.2.0" 92919 (sources."dom-serializer-0.2.2" // { 92920 dependencies = [ 92921 + sources."domelementtype-2.3.0" 92922 ]; 92923 }) 92924 sources."domain-browser-1.2.0" 92925 sources."domelementtype-1.3.1" 92926 (sources."domhandler-4.3.1" // { 92927 dependencies = [ 92928 + sources."domelementtype-2.3.0" 92929 ]; 92930 }) 92931 sources."domutils-1.7.0" ··· 92938 sources."ecc-jsbn-0.1.2" 92939 sources."ee-first-1.1.1" 92940 sources."ejs-2.7.4" 92941 + sources."electron-to-chromium-1.4.106" 92942 (sources."elliptic-6.5.4" // { 92943 dependencies = [ 92944 sources."bn.js-4.12.0" ··· 93229 (sources."htmlparser2-6.1.0" // { 93230 dependencies = [ 93231 sources."dom-serializer-1.3.2" 93232 + sources."domelementtype-2.3.0" 93233 sources."domutils-2.8.0" 93234 ]; 93235 }) ··· 93375 sources."log-symbols-2.2.0" 93376 sources."loglevel-1.8.0" 93377 sources."lower-case-1.1.4" 93378 + sources."lru-cache-7.8.0" 93379 (sources."make-dir-2.1.0" // { 93380 dependencies = [ 93381 sources."semver-5.7.1" ··· 93418 sources."minimalistic-crypto-utils-1.0.1" 93419 sources."minimatch-3.1.2" 93420 sources."minimist-1.2.6" 93421 + (sources."minipass-3.1.6" // { 93422 + dependencies = [ 93423 + sources."yallist-4.0.0" 93424 + ]; 93425 + }) 93426 sources."mississippi-3.0.0" 93427 (sources."mixin-deep-1.3.2" // { 93428 dependencies = [ ··· 93736 sources."css-select-4.3.0" 93737 sources."css-what-6.1.0" 93738 sources."dom-serializer-1.3.2" 93739 + sources."domelementtype-2.3.0" 93740 sources."domutils-2.8.0" 93741 sources."nth-check-2.0.1" 93742 sources."strip-ansi-3.0.1" ··· 93786 sources."schema-utils-1.0.0" 93787 sources."select-hose-2.0.0" 93788 sources."selfsigned-1.10.14" 93789 + sources."semver-7.3.6" 93790 (sources."send-0.17.2" // { 93791 dependencies = [ 93792 (sources."debug-2.6.9" // { ··· 94256 sources."xmlhttprequest-ssl-2.0.0" 94257 sources."xtend-4.0.2" 94258 sources."y18n-4.0.3" 94259 + sources."yallist-3.1.1" 94260 sources."yaml-1.10.2" 94261 (sources."yargs-16.2.0" // { 94262 dependencies = [ ··· 94409 eslint_d = nodeEnv.buildNodePackage { 94410 name = "eslint_d"; 94411 packageName = "eslint_d"; 94412 + version = "12.0.0"; 94413 src = fetchurl { 94414 + url = "https://registry.npmjs.org/eslint_d/-/eslint_d-12.0.0.tgz"; 94415 + sha512 = "jSueemgxyOsxVLOWkJuBbJfQB1vt9rjCqAbht51W/2982VcDxQ3ywjUaEvWTF+oTFWe2M1ER+d54kFgoZCGevg=="; 94416 }; 94417 dependencies = [ 94418 + sources."@eslint/eslintrc-1.2.1" 94419 + sources."@humanwhocodes/config-array-0.9.5" 94420 sources."@humanwhocodes/object-schema-1.2.1" 94421 + sources."acorn-8.7.0" 94422 sources."acorn-jsx-5.3.2" 94423 sources."ajv-6.12.6" 94424 sources."ansi-regex-5.0.1" 94425 + sources."ansi-styles-4.3.0" 94426 + sources."argparse-2.0.1" 94427 sources."balanced-match-1.0.2" 94428 sources."brace-expansion-1.1.11" 94429 sources."callsites-3.1.0" 94430 (sources."chalk-4.1.2" // { 94431 dependencies = [ 94432 sources."supports-color-7.2.0" 94433 ]; 94434 }) 94435 + sources."color-convert-2.0.1" 94436 + sources."color-name-1.1.4" 94437 sources."concat-map-0.0.1" 94438 + sources."core_d-4.0.0" 94439 sources."cross-spawn-7.0.3" 94440 sources."debug-4.3.4" 94441 sources."deep-is-0.1.4" 94442 sources."doctrine-3.0.0" 94443 sources."escape-string-regexp-4.0.0" 94444 + sources."eslint-8.12.0" 94445 + sources."eslint-scope-7.1.1" 94446 + (sources."eslint-utils-3.0.0" // { 94447 dependencies = [ 94448 + sources."eslint-visitor-keys-2.1.0" 94449 ]; 94450 }) 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" 94456 sources."esutils-2.0.3" 94457 sources."fast-deep-equal-3.1.3" 94458 sources."fast-json-stable-stringify-2.1.0" ··· 94463 sources."fs.realpath-1.0.0" 94464 sources."functional-red-black-tree-1.0.1" 94465 sources."glob-7.2.0" 94466 + sources."glob-parent-6.0.2" 94467 sources."globals-13.13.0" 94468 sources."has-flag-4.0.0" 94469 + sources."ignore-5.2.0" 94470 sources."import-fresh-3.3.0" 94471 sources."imurmurhash-0.1.4" 94472 sources."inflight-1.0.6" 94473 sources."inherits-2.0.4" 94474 sources."is-extglob-2.1.1" 94475 sources."is-glob-4.0.3" 94476 sources."isexe-2.0.0" 94477 + sources."js-yaml-4.1.0" 94478 sources."json-schema-traverse-0.4.1" 94479 sources."json-stable-stringify-without-jsonify-1.0.1" 94480 sources."levn-0.4.1" 94481 sources."lodash.merge-4.6.2" 94482 sources."minimatch-3.1.2" 94483 sources."ms-2.1.2" 94484 sources."nanolru-1.0.0" ··· 94489 sources."path-is-absolute-1.0.1" 94490 sources."path-key-3.1.1" 94491 sources."prelude-ls-1.2.1" 94492 sources."punycode-2.1.1" 94493 sources."regexpp-3.2.0" 94494 sources."resolve-from-4.0.0" 94495 sources."rimraf-3.0.2" 94496 sources."shebang-command-2.0.0" 94497 sources."shebang-regex-3.0.0" 94498 sources."strip-ansi-6.0.1" 94499 sources."strip-json-comments-3.1.1" 94500 sources."supports-color-8.1.1" 94501 sources."text-table-0.2.0" 94502 sources."type-check-0.4.0" 94503 sources."type-fest-0.20.2" ··· 94506 sources."which-2.0.2" 94507 sources."word-wrap-1.2.3" 94508 sources."wrappy-1.0.2" 94509 ]; 94510 buildInputs = globalBuildInputs; 94511 meta = { ··· 94550 sources."semver-5.7.1" 94551 ]; 94552 }) 94553 + sources."@babel/generator-7.17.9" 94554 sources."@babel/helper-environment-visitor-7.16.7" 94555 + sources."@babel/helper-function-name-7.17.9" 94556 sources."@babel/helper-hoist-variables-7.16.7" 94557 sources."@babel/helper-module-imports-7.16.7" 94558 sources."@babel/helper-module-transforms-7.17.7" 94559 sources."@babel/helper-simple-access-7.17.7" 94560 sources."@babel/helper-split-export-declaration-7.16.7" 94561 sources."@babel/helper-validator-identifier-7.16.7" 94562 + sources."@babel/helpers-7.17.9" 94563 + (sources."@babel/highlight-7.17.9" // { 94564 dependencies = [ 94565 sources."chalk-2.4.2" 94566 ]; 94567 }) 94568 + sources."@babel/parser-7.17.9" 94569 sources."@babel/runtime-7.9.0" 94570 (sources."@babel/template-7.16.7" // { 94571 dependencies = [ 94572 sources."@babel/code-frame-7.16.7" 94573 ]; 94574 }) 94575 + (sources."@babel/traverse-7.17.9" // { 94576 dependencies = [ 94577 sources."@babel/code-frame-7.16.7" 94578 ]; ··· 94583 sources."@expo/config-6.0.19" 94584 (sources."@expo/config-plugins-4.1.0" // { 94585 dependencies = [ 94586 + sources."semver-7.3.6" 94587 ]; 94588 }) 94589 sources."@expo/config-types-44.0.0" ··· 94642 sources."@nodelib/fs.walk-1.2.8" 94643 (sources."@npmcli/fs-1.1.1" // { 94644 dependencies = [ 94645 + sources."semver-7.3.6" 94646 ]; 94647 }) 94648 (sources."@npmcli/move-file-1.1.2" // { ··· 94867 sources."bytes-3.0.0" 94868 (sources."cacache-15.3.0" // { 94869 dependencies = [ 94870 + sources."lru-cache-6.0.0" 94871 sources."minipass-3.1.6" 94872 sources."mkdirp-1.0.4" 94873 sources."rimraf-3.0.2" ··· 95129 ]; 95130 }) 95131 sources."domain-browser-1.2.0" 95132 + sources."domelementtype-2.3.0" 95133 sources."domhandler-3.3.0" 95134 sources."domino-2.1.6" 95135 (sources."domutils-2.8.0" // { ··· 95147 sources."duplexer3-0.1.4" 95148 sources."duplexify-3.7.1" 95149 sources."ee-first-1.1.1" 95150 + sources."electron-to-chromium-1.4.106" 95151 (sources."elliptic-6.5.4" // { 95152 dependencies = [ 95153 sources."bn.js-4.12.0" ··· 95383 sources."he-1.2.0" 95384 sources."hex-color-regex-1.1.0" 95385 sources."hmac-drbg-1.0.1" 95386 + (sources."hosted-git-info-3.0.8" // { 95387 + dependencies = [ 95388 + sources."lru-cache-6.0.0" 95389 + ]; 95390 + }) 95391 sources."hpack.js-2.1.6" 95392 sources."hsl-regex-1.0.0" 95393 sources."hsla-regex-1.0.0" ··· 95564 sources."jsonfile-6.1.0" 95565 sources."jsonify-0.0.0" 95566 sources."keychain-1.3.0" 95567 + sources."keyv-4.2.2" 95568 sources."killable-1.0.1" 95569 sources."kind-of-6.0.3" 95570 sources."kleur-3.0.3" ··· 95597 ]; 95598 }) 95599 sources."lowercase-keys-2.0.0" 95600 + sources."lru-cache-7.8.0" 95601 (sources."make-dir-2.1.0" // { 95602 dependencies = [ 95603 sources."semver-5.7.1" ··· 96320 sources."ws-3.3.3" 96321 ]; 96322 }) 96323 + (sources."sucrase-3.21.0" // { 96324 dependencies = [ 96325 sources."commander-4.1.1" 96326 ]; ··· 96341 sources."css-what-3.4.2" 96342 (sources."dom-serializer-0.2.2" // { 96343 dependencies = [ 96344 + sources."domelementtype-2.3.0" 96345 ]; 96346 }) 96347 sources."domelementtype-1.3.1" ··· 96709 sources."@ampproject/remapping-2.1.2" 96710 sources."@babel/code-frame-7.16.7" 96711 sources."@babel/compat-data-7.17.7" 96712 + sources."@babel/core-7.17.9" 96713 + sources."@babel/generator-7.17.9" 96714 sources."@babel/helper-annotate-as-pure-7.16.7" 96715 sources."@babel/helper-compilation-targets-7.17.7" 96716 sources."@babel/helper-environment-visitor-7.16.7" 96717 + sources."@babel/helper-function-name-7.17.9" 96718 sources."@babel/helper-hoist-variables-7.16.7" 96719 sources."@babel/helper-module-imports-7.16.7" 96720 sources."@babel/helper-module-transforms-7.17.7" ··· 96723 sources."@babel/helper-split-export-declaration-7.16.7" 96724 sources."@babel/helper-validator-identifier-7.16.7" 96725 sources."@babel/helper-validator-option-7.16.7" 96726 + sources."@babel/helpers-7.17.9" 96727 + sources."@babel/highlight-7.17.9" 96728 + sources."@babel/parser-7.17.9" 96729 sources."@babel/plugin-proposal-object-rest-spread-7.17.3" 96730 sources."@babel/plugin-syntax-jsx-7.16.7" 96731 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 96733 sources."@babel/plugin-transform-parameters-7.16.7" 96734 sources."@babel/plugin-transform-react-jsx-7.17.3" 96735 sources."@babel/template-7.16.7" 96736 + sources."@babel/traverse-7.17.9" 96737 sources."@babel/types-7.17.0" 96738 sources."@jridgewell/resolve-uri-3.0.5" 96739 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 96791 }) 96792 sources."delay-5.0.0" 96793 sources."devtools-protocol-0.0.969999" 96794 + sources."electron-to-chromium-1.4.106" 96795 sources."emoji-regex-8.0.0" 96796 sources."end-of-stream-1.4.4" 96797 sources."error-ex-1.3.2" ··· 96861 sources."node-releases-2.0.2" 96862 (sources."normalize-package-data-3.0.3" // { 96863 dependencies = [ 96864 + sources."lru-cache-7.8.0" 96865 + sources."semver-7.3.6" 96866 ]; 96867 }) 96868 sources."object-assign-4.1.1" ··· 97234 sources."lodash.templatesettings-4.2.0" 97235 sources."log-symbols-4.1.0" 97236 sources."lowercase-keys-1.0.1" 97237 + sources."lru-cache-7.8.0" 97238 sources."merge2-1.4.1" 97239 sources."micromatch-4.0.5" 97240 sources."mime-db-1.52.0" ··· 97299 sources."rxjs-7.5.5" 97300 sources."safe-buffer-5.2.1" 97301 sources."safer-buffer-2.1.2" 97302 + sources."semver-7.3.6" 97303 sources."shebang-command-1.2.0" 97304 sources."shebang-regex-1.0.0" 97305 sources."signal-exit-3.0.7" ··· 97355 sources."widest-line-3.1.0" 97356 sources."word-wrap-1.2.3" 97357 sources."wrap-ansi-7.0.0" 97358 ]; 97359 buildInputs = globalBuildInputs; 97360 meta = { ··· 97393 sources."@jsdevtools/ono-7.1.3" 97394 (sources."@npmcli/fs-1.1.1" // { 97395 dependencies = [ 97396 + sources."semver-7.3.6" 97397 ]; 97398 }) 97399 (sources."@npmcli/move-file-1.1.2" // { ··· 97504 sources."bytes-3.1.2" 97505 (sources."cacache-15.3.0" // { 97506 dependencies = [ 97507 + sources."lru-cache-6.0.0" 97508 sources."mkdirp-1.0.4" 97509 ]; 97510 }) ··· 97637 sources."end-of-stream-1.4.4" 97638 sources."env-paths-2.2.1" 97639 sources."err-code-2.0.3" 97640 + sources."es5-ext-0.10.60" 97641 sources."es6-iterator-2.0.3" 97642 sources."es6-symbol-3.1.3" 97643 sources."es6-weak-map-2.0.3" ··· 97657 dependencies = [ 97658 sources."ajv-8.11.0" 97659 sources."json-schema-traverse-1.0.0" 97660 + sources."semver-7.3.6" 97661 ]; 97662 }) 97663 sources."exegesis-express-4.0.0" ··· 97756 sources."glob-slash-1.0.0" 97757 sources."glob-slasher-1.0.1" 97758 sources."global-dirs-2.1.0" 97759 + (sources."google-auth-library-7.14.1" // { 97760 + dependencies = [ 97761 + sources."lru-cache-6.0.0" 97762 + ]; 97763 + }) 97764 sources."google-gax-2.29.6" 97765 sources."google-p12-pem-3.1.3" 97766 sources."got-9.6.0" ··· 97887 sources."logform-2.4.0" 97888 sources."long-4.0.0" 97889 sources."lowercase-keys-1.0.1" 97890 + sources."lru-cache-7.8.0" 97891 sources."lru-queue-0.1.0" 97892 (sources."make-dir-3.1.0" // { 97893 dependencies = [ ··· 97896 }) 97897 (sources."make-fetch-happen-9.1.0" // { 97898 dependencies = [ 97899 + sources."lru-cache-6.0.0" 97900 sources."socks-proxy-agent-6.1.1" 97901 ]; 97902 }) ··· 97955 sources."node-forge-1.3.1" 97956 (sources."node-gyp-8.4.1" // { 97957 dependencies = [ 97958 + sources."semver-7.3.6" 97959 sources."which-2.0.2" 97960 ]; 97961 }) ··· 98202 sources."ini-2.0.0" 98203 sources."is-installed-globally-0.4.0" 98204 sources."is-npm-5.0.0" 98205 + sources."semver-7.3.6" 98206 sources."type-fest-0.20.2" 98207 ]; 98208 }) ··· 98312 dependencies = [ 98313 sources."@babel/code-frame-7.16.7" 98314 sources."@babel/helper-validator-identifier-7.16.7" 98315 + (sources."@babel/highlight-7.17.9" // { 98316 dependencies = [ 98317 sources."ansi-styles-3.2.1" 98318 sources."chalk-2.4.2" ··· 98471 sources."rxjs-7.5.5" 98472 sources."safe-buffer-5.2.1" 98473 sources."safer-buffer-2.1.2" 98474 + (sources."semver-7.3.6" // { 98475 + dependencies = [ 98476 + sources."lru-cache-7.8.0" 98477 + ]; 98478 + }) 98479 sources."shebang-command-2.0.0" 98480 sources."shebang-regex-3.0.0" 98481 sources."signal-exit-3.0.7" ··· 99275 sources."@ampproject/remapping-2.1.2" 99276 sources."@babel/code-frame-7.16.7" 99277 sources."@babel/compat-data-7.17.7" 99278 + (sources."@babel/core-7.17.9" // { 99279 dependencies = [ 99280 sources."semver-6.3.0" 99281 ]; 99282 }) 99283 + (sources."@babel/generator-7.17.9" // { 99284 dependencies = [ 99285 sources."source-map-0.5.7" 99286 ]; ··· 99291 sources."semver-6.3.0" 99292 ]; 99293 }) 99294 + sources."@babel/helper-create-class-features-plugin-7.17.9" 99295 sources."@babel/helper-environment-visitor-7.16.7" 99296 + sources."@babel/helper-function-name-7.17.9" 99297 sources."@babel/helper-hoist-variables-7.16.7" 99298 sources."@babel/helper-member-expression-to-functions-7.17.7" 99299 sources."@babel/helper-module-imports-7.16.7" ··· 99305 sources."@babel/helper-split-export-declaration-7.16.7" 99306 sources."@babel/helper-validator-identifier-7.16.7" 99307 sources."@babel/helper-validator-option-7.16.7" 99308 + sources."@babel/helpers-7.17.9" 99309 + (sources."@babel/highlight-7.17.9" // { 99310 dependencies = [ 99311 sources."chalk-2.4.2" 99312 ]; 99313 }) 99314 + sources."@babel/parser-7.17.9" 99315 sources."@babel/plugin-syntax-typescript-7.16.7" 99316 sources."@babel/plugin-transform-typescript-7.16.8" 99317 sources."@babel/preset-typescript-7.16.7" 99318 + sources."@babel/runtime-7.17.9" 99319 sources."@babel/template-7.16.7" 99320 + sources."@babel/traverse-7.17.9" 99321 sources."@babel/types-7.17.0" 99322 sources."@hapi/hoek-9.2.1" 99323 sources."@hapi/topo-5.1.0" ··· 99426 sources."delayed-stream-1.0.0" 99427 sources."dom-converter-0.2.0" 99428 sources."dom-serializer-1.3.2" 99429 + sources."domelementtype-2.3.0" 99430 sources."domhandler-4.3.1" 99431 sources."domutils-2.8.0" 99432 sources."dot-prop-5.3.0" 99433 sources."duplexer3-0.1.4" 99434 + sources."electron-to-chromium-1.4.106" 99435 sources."emoji-regex-8.0.0" 99436 sources."end-of-stream-1.4.4" 99437 sources."entities-2.2.0" ··· 99531 sources."json-buffer-3.0.1" 99532 sources."json5-2.2.1" 99533 sources."jsonfile-6.1.0" 99534 + sources."keyv-4.2.2" 99535 sources."kleur-3.0.3" 99536 sources."latest-version-5.1.0" 99537 sources."lmdb-2.2.6" ··· 99555 sources."minimist-1.2.6" 99556 sources."ms-2.1.2" 99557 sources."msgpackr-1.5.5" 99558 + sources."msgpackr-extract-1.1.3" 99559 sources."msgpackr-extract-darwin-arm64-1.1.0" 99560 sources."msgpackr-extract-darwin-x64-1.1.0" 99561 sources."msgpackr-extract-linux-arm-1.1.0" ··· 99567 sources."nice-try-1.0.5" 99568 sources."node-fetch-2.6.7" 99569 sources."node-gyp-build-4.4.0" 99570 + sources."node-gyp-build-optional-packages-4.3.1" 99571 sources."node-object-hash-2.3.10" 99572 sources."node-releases-2.0.2" 99573 sources."normalize-url-6.1.0" ··· 99656 sources."rxjs-6.6.7" 99657 sources."safe-buffer-5.1.2" 99658 sources."safer-buffer-2.1.2" 99659 + (sources."semver-7.3.6" // { 99660 + dependencies = [ 99661 + sources."lru-cache-7.8.0" 99662 + ]; 99663 + }) 99664 (sources."semver-diff-3.1.1" // { 99665 dependencies = [ 99666 sources."semver-6.3.0" ··· 99763 dependencies = [ 99764 sources."@babel/code-frame-7.16.7" 99765 sources."@babel/helper-validator-identifier-7.16.7" 99766 + (sources."@babel/highlight-7.17.9" // { 99767 dependencies = [ 99768 sources."ansi-styles-3.2.1" 99769 sources."chalk-2.4.2" ··· 99833 sources."lines-and-columns-1.2.4" 99834 sources."locate-path-5.0.0" 99835 sources."lodash-4.17.21" 99836 + sources."lru-cache-7.8.0" 99837 sources."merge-stream-2.0.0" 99838 sources."mimic-fn-2.1.0" 99839 sources."minimatch-3.1.2" ··· 99870 sources."resolve-1.22.0" 99871 sources."run-async-2.4.1" 99872 sources."sanitize-filename-1.6.3" 99873 + sources."semver-7.3.6" 99874 sources."shebang-command-2.0.0" 99875 sources."shebang-regex-3.0.0" 99876 sources."shelljs-0.8.5" ··· 99908 ]; 99909 }) 99910 sources."wrappy-1.0.2" 99911 sources."yeoman-generator-5.6.1" 99912 (sources."yosay-2.0.2" // { 99913 dependencies = [ ··· 100268 sources."is-interactive-2.0.0" 100269 sources."is-unicode-supported-1.2.0" 100270 sources."json-buffer-3.0.1" 100271 + sources."keyv-4.2.2" 100272 sources."li-1.3.0" 100273 (sources."log-symbols-5.1.0" // { 100274 dependencies = [ ··· 100334 dependencies = [ 100335 sources."@babel/code-frame-7.16.7" 100336 sources."@babel/helper-validator-identifier-7.16.7" 100337 + (sources."@babel/highlight-7.17.9" // { 100338 dependencies = [ 100339 sources."ansi-styles-3.2.1" 100340 sources."chalk-2.4.2" ··· 100456 sources."has-1.0.3" 100457 sources."has-flag-4.0.0" 100458 sources."has-yarn-2.1.0" 100459 + (sources."hosted-git-info-4.1.0" // { 100460 + dependencies = [ 100461 + sources."lru-cache-6.0.0" 100462 + ]; 100463 + }) 100464 sources."http-cache-semantics-4.1.0" 100465 sources."http-errors-2.0.0" 100466 sources."http-proxy-agent-4.0.1" ··· 100515 sources."lodash-4.17.21" 100516 sources."log-symbols-4.1.0" 100517 sources."lowercase-keys-1.0.1" 100518 + sources."lru-cache-7.8.0" 100519 (sources."make-dir-3.1.0" // { 100520 dependencies = [ 100521 sources."semver-6.3.0" ··· 100613 sources."rxjs-7.5.5" 100614 sources."safe-buffer-5.2.1" 100615 sources."safer-buffer-2.1.2" 100616 + sources."semver-7.3.6" 100617 (sources."semver-diff-3.1.1" // { 100618 dependencies = [ 100619 sources."semver-6.3.0" ··· 100884 sources."@ardatan/aggregate-error-0.0.6" 100885 sources."@babel/code-frame-7.16.7" 100886 sources."@babel/helper-validator-identifier-7.16.7" 100887 + (sources."@babel/highlight-7.17.9" // { 100888 dependencies = [ 100889 sources."ansi-styles-3.2.1" 100890 sources."chalk-2.4.2" ··· 100925 sources."tslib-2.1.0" 100926 ]; 100927 }) 100928 + (sources."@graphql-tools/import-6.6.10" // { 100929 dependencies = [ 100930 + sources."@graphql-tools/utils-8.6.6" 100931 sources."tslib-2.3.1" 100932 ]; 100933 }) ··· 100952 sources."tslib-2.3.1" 100953 ]; 100954 }) 100955 + (sources."@graphql-tools/schema-8.3.7" // { 100956 dependencies = [ 100957 + sources."@graphql-tools/merge-8.2.7" 100958 + sources."@graphql-tools/utils-8.6.6" 100959 sources."tslib-2.3.1" 100960 ]; 100961 }) ··· 101463 dependencies = [ 101464 sources."@babel/code-frame-7.16.7" 101465 sources."@babel/helper-validator-identifier-7.16.7" 101466 + (sources."@babel/highlight-7.17.9" // { 101467 dependencies = [ 101468 sources."ansi-styles-3.2.1" 101469 sources."chalk-2.4.2" ··· 101476 }) 101477 sources."@cronvel/get-pixels-3.4.0" 101478 sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" 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" // { 101488 dependencies = [ 101489 (sources."subscriptions-transport-ws-0.11.0" // { 101490 dependencies = [ ··· 101494 sources."ws-8.5.0" 101495 ]; 101496 }) 101497 + sources."@graphql-tools/utils-8.6.6" 101498 + sources."@graphql-tools/wrap-8.4.11" 101499 sources."@iarna/toml-2.2.5" 101500 sources."@n1ru4l/graphql-live-query-0.9.0" 101501 sources."@nodelib/fs.scandir-2.1.5" ··· 101697 sources."lodash.get-4.4.2" 101698 sources."lodash.template-4.5.0" 101699 sources."lodash.templatesettings-4.2.0" 101700 + sources."lru-cache-7.8.0" 101701 sources."make-error-1.3.6" 101702 sources."media-typer-0.3.0" 101703 sources."merge-descriptors-1.0.1" ··· 101750 sources."reusify-1.0.4" 101751 sources."run-parallel-1.2.0" 101752 sources."safe-buffer-5.1.1" 101753 + sources."semver-7.3.6" 101754 (sources."send-0.16.2" // { 101755 dependencies = [ 101756 sources."debug-2.6.9" ··· 101814 sources."widest-line-3.1.0" 101815 sources."wrap-ansi-7.0.0" 101816 sources."ws-7.4.2" 101817 sources."yaml-1.10.2" 101818 sources."yn-3.1.1" 101819 sources."yocto-queue-0.1.0" ··· 102262 sources."each-props-1.3.2" 102263 sources."end-of-stream-1.4.4" 102264 sources."error-ex-1.3.2" 102265 + sources."es5-ext-0.10.60" 102266 sources."es6-iterator-2.0.3" 102267 sources."es6-symbol-3.1.3" 102268 sources."es6-weak-map-2.0.3" ··· 102682 ]; 102683 }) 102684 sources."error-ex-1.3.2" 102685 + sources."es5-ext-0.10.60" 102686 sources."es6-iterator-2.0.3" 102687 sources."es6-symbol-3.1.3" 102688 (sources."expand-brackets-2.1.4" // { ··· 103320 sources."assert-plus-1.0.0" 103321 sources."async-2.6.3" 103322 sources."asynckit-0.4.0" 103323 + sources."aws-sdk-2.1110.0" 103324 sources."aws-sign2-0.7.0" 103325 sources."aws4-1.11.0" 103326 sources."base64-js-1.5.1" ··· 104004 sources."diagnostic-channel-publishers-0.4.4" 104005 sources."discontinuous-range-1.0.0" 104006 sources."dom-serializer-1.3.2" 104007 + sources."domelementtype-2.3.0" 104008 sources."domhandler-4.3.1" 104009 sources."domutils-2.8.0" 104010 sources."ecc-jsbn-0.1.2" ··· 104034 sources."har-schema-2.0.0" 104035 sources."har-validator-5.1.5" 104036 sources."he-1.2.0" 104037 + sources."html-to-text-8.1.1" 104038 sources."htmlparser2-6.1.0" 104039 sources."http-signature-1.2.0" 104040 sources."inflight-1.0.6" ··· 104090 sources."safe-buffer-5.2.1" 104091 sources."safer-buffer-2.1.2" 104092 sources."selderee-0.6.0" 104093 + (sources."semver-7.3.6" // { 104094 + dependencies = [ 104095 + sources."lru-cache-7.8.0" 104096 + ]; 104097 + }) 104098 sources."shimmer-1.2.1" 104099 sources."sigmund-1.0.1" 104100 sources."sshpk-1.17.0" ··· 104578 sources."resumer-0.0.0" 104579 sources."safer-buffer-2.1.2" 104580 sources."semaphore-async-await-1.5.1" 104581 + (sources."semver-7.3.6" // { 104582 dependencies = [ 104583 + sources."lru-cache-7.8.0" 104584 ]; 104585 }) 104586 sources."seq-0.3.5" ··· 104611 sources."wrap-ansi-7.0.0" 104612 sources."xpath-0.0.32" 104613 sources."y18n-5.0.8" 104614 sources."yargs-16.2.0" 104615 sources."yargs-parser-20.2.9" 104616 ]; ··· 104930 sources."async-mutex-0.1.4" 104931 sources."asynckit-0.4.0" 104932 sources."atob-2.1.2" 104933 + (sources."aws-sdk-2.1110.0" // { 104934 dependencies = [ 104935 sources."sax-1.2.1" 104936 sources."uuid-3.3.2" ··· 104995 ]; 104996 }) 104997 sources."cwise-compiler-1.1.3" 104998 + sources."d3-7.4.3" 104999 + sources."d3-array-3.1.5" 105000 sources."d3-axis-3.0.0" 105001 sources."d3-brush-3.0.0" 105002 sources."d3-chord-3.0.1" ··· 105088 sources."domhandler-4.3.1" 105089 ]; 105090 }) 105091 + sources."domelementtype-2.3.0" 105092 sources."domexception-1.0.1" 105093 sources."domhandler-3.3.0" 105094 sources."dompurify-2.3.5" ··· 105280 sources."highlight.js-9.12.0" 105281 ]; 105282 }) 105283 + sources."lru-cache-7.8.0" 105284 sources."magicli-0.0.8" 105285 (sources."markdown-it-10.0.0" // { 105286 dependencies = [ ··· 105311 sources."mimic-response-3.1.0" 105312 sources."minimatch-3.1.2" 105313 sources."minimist-1.2.6" 105314 + sources."minipass-2.9.0" 105315 sources."minizlib-1.3.3" 105316 sources."mkdirp-0.5.6" 105317 sources."mkdirp-classic-0.5.3" ··· 105444 sources."safer-buffer-2.1.2" 105445 sources."sax-1.2.4" 105446 sources."saxes-3.1.11" 105447 + sources."semver-7.3.6" 105448 sources."server-destroy-1.0.1" 105449 sources."set-blocking-2.0.0" 105450 sources."setimmediate-1.0.5" ··· 105522 sources."symbol-observable-1.2.0" 105523 sources."symbol-tree-3.2.4" 105524 sources."table-layout-0.4.5" 105525 + sources."tar-4.4.19" 105526 sources."tar-fs-2.1.1" 105527 (sources."tar-stream-2.2.0" // { 105528 dependencies = [ ··· 105604 sources."xml2js-0.4.23" 105605 sources."xmlbuilder-11.0.1" 105606 sources."xmlchars-2.2.0" 105607 + sources."yallist-3.1.1" 105608 sources."yargs-parser-7.0.0" 105609 ]; 105610 buildInputs = globalBuildInputs; ··· 105690 sha512 = "IdQ8ppSo5LKZ9o3M+LKIIK8i00DIe5msDvG3G81Km+1dhy0XrOWD0Ji8H61ElgyEj/O9KRLokgKbAM9XX9CJAg=="; 105691 }; 105692 dependencies = [ 105693 + sources."@babel/parser-7.17.9" 105694 sources."@types/linkify-it-3.0.2" 105695 sources."@types/markdown-it-12.2.3" 105696 sources."@types/mdurl-1.0.2" ··· 105743 sources."date-now-0.1.4" 105744 (sources."dom-serializer-0.2.2" // { 105745 dependencies = [ 105746 + sources."domelementtype-2.3.0" 105747 sources."entities-2.2.0" 105748 ]; 105749 }) ··· 105807 sources."d-1.0.1" 105808 sources."difflib-0.2.4" 105809 sources."dreamopt-0.8.0" 105810 + sources."es5-ext-0.10.60" 105811 sources."es6-iterator-2.0.3" 105812 sources."es6-symbol-3.1.3" 105813 sources."es6-weak-map-2.0.3" ··· 106032 sources."lodash-id-0.14.1" 106033 sources."lowdb-1.0.0" 106034 sources."lowercase-keys-1.0.1" 106035 + sources."lru-cache-7.8.0" 106036 (sources."make-dir-3.1.0" // { 106037 dependencies = [ 106038 sources."semver-6.3.0" ··· 106094 sources."responselike-1.0.2" 106095 sources."safe-buffer-5.1.2" 106096 sources."safer-buffer-2.1.2" 106097 + sources."semver-7.3.6" 106098 sources."semver-compare-1.0.0" 106099 (sources."semver-diff-3.1.1" // { 106100 dependencies = [ ··· 106139 sources."write-file-atomic-3.0.3" 106140 sources."xdg-basedir-4.0.0" 106141 sources."y18n-5.0.8" 106142 sources."yargs-17.4.0" 106143 sources."yargs-parser-21.0.1" 106144 ]; ··· 106865 sources."dotenv-8.6.0" 106866 sources."emoji-regex-8.0.0" 106867 sources."env-paths-2.2.1" 106868 + sources."es5-ext-0.10.60" 106869 sources."es6-iterator-2.0.3" 106870 sources."es6-symbol-3.1.3" 106871 sources."escape-string-regexp-4.0.0" ··· 106918 sources."jsonfile-4.0.0" 106919 sources."locate-path-3.0.0" 106920 sources."lodash-4.17.21" 106921 + sources."lru-cache-7.8.0" 106922 (sources."make-dir-3.1.0" // { 106923 dependencies = [ 106924 sources."semver-6.3.0" ··· 106967 ]; 106968 }) 106969 sources."safer-buffer-2.1.2" 106970 + sources."semver-7.3.6" 106971 sources."shebang-command-1.2.0" 106972 sources."shebang-regex-1.0.0" 106973 sources."side-channel-1.0.4" ··· 106993 sources."widest-line-3.1.0" 106994 sources."wrap-ansi-7.0.0" 106995 sources."write-file-atomic-3.0.3" 106996 ]; 106997 buildInputs = globalBuildInputs; 106998 meta = { ··· 107215 sources."@babel/cli-7.17.6" 107216 sources."@babel/code-frame-7.16.7" 107217 sources."@babel/compat-data-7.17.7" 107218 + (sources."@babel/core-7.17.9" // { 107219 dependencies = [ 107220 sources."semver-6.3.0" 107221 ]; 107222 }) 107223 + sources."@babel/generator-7.17.9" 107224 sources."@babel/helper-annotate-as-pure-7.16.7" 107225 (sources."@babel/helper-compilation-targets-7.17.7" // { 107226 dependencies = [ ··· 107228 ]; 107229 }) 107230 sources."@babel/helper-environment-visitor-7.16.7" 107231 + sources."@babel/helper-function-name-7.17.9" 107232 sources."@babel/helper-hoist-variables-7.16.7" 107233 sources."@babel/helper-module-imports-7.16.7" 107234 sources."@babel/helper-module-transforms-7.17.7" ··· 107237 sources."@babel/helper-split-export-declaration-7.16.7" 107238 sources."@babel/helper-validator-identifier-7.16.7" 107239 sources."@babel/helper-validator-option-7.16.7" 107240 + sources."@babel/helpers-7.17.9" 107241 + sources."@babel/highlight-7.17.9" 107242 sources."@babel/node-7.16.8" 107243 + sources."@babel/parser-7.17.9" 107244 sources."@babel/plugin-syntax-jsx-7.16.7" 107245 sources."@babel/plugin-transform-react-jsx-7.17.3" 107246 sources."@babel/register-7.17.7" 107247 sources."@babel/template-7.16.7" 107248 + sources."@babel/traverse-7.17.9" 107249 sources."@babel/types-7.17.0" 107250 sources."@jridgewell/resolve-uri-3.0.5" 107251 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 107405 }) 107406 sources."dotenv-8.6.0" 107407 sources."ee-first-1.1.1" 107408 + sources."electron-to-chromium-1.4.106" 107409 sources."emoji-regex-8.0.0" 107410 sources."encodeurl-1.0.2" 107411 sources."end-of-stream-1.4.4" ··· 107558 sources."levn-0.3.0" 107559 sources."locate-path-3.0.0" 107560 sources."lodash-4.17.21" 107561 + sources."lru-cache-7.8.0" 107562 sources."ltx-3.0.0" 107563 sources."make-dir-2.1.0" 107564 sources."md5.js-1.3.5" ··· 107632 sources."color-convert-2.0.1" 107633 sources."color-name-1.1.4" 107634 sources."has-flag-4.0.0" 107635 + sources."semver-7.3.6" 107636 sources."supports-color-7.2.0" 107637 ]; 107638 }) ··· 107768 sources."xml-name-validator-3.0.0" 107769 sources."xmlchars-2.2.0" 107770 sources."y18n-5.0.8" 107771 (sources."yargs-16.2.0" // { 107772 dependencies = [ 107773 sources."is-fullwidth-code-point-3.0.0" ··· 108396 dependencies = [ 108397 sources."@babel/code-frame-7.16.7" 108398 sources."@babel/helper-validator-identifier-7.16.7" 108399 + (sources."@babel/highlight-7.17.9" // { 108400 dependencies = [ 108401 sources."ansi-styles-3.2.1" 108402 sources."chalk-2.4.2" ··· 108650 sources."depd-1.1.2" 108651 sources."deprecation-2.3.1" 108652 sources."detect-indent-5.0.0" 108653 + sources."dezalgo-1.0.4" 108654 sources."dir-glob-3.0.1" 108655 sources."dot-prop-6.0.1" 108656 sources."duplexer-0.1.2" ··· 109023 sources."rxjs-6.6.7" 109024 sources."safe-buffer-5.2.1" 109025 sources."safer-buffer-2.1.2" 109026 + (sources."semver-7.3.6" // { 109027 + dependencies = [ 109028 + sources."lru-cache-7.8.0" 109029 + ]; 109030 + }) 109031 sources."set-blocking-2.0.0" 109032 sources."shallow-clone-3.0.1" 109033 sources."shebang-command-2.0.0" ··· 110095 sources."@ampproject/remapping-2.1.2" 110096 sources."@babel/code-frame-7.16.7" 110097 sources."@babel/compat-data-7.17.7" 110098 + sources."@babel/core-7.17.9" 110099 + sources."@babel/generator-7.17.9" 110100 sources."@babel/helper-annotate-as-pure-7.16.7" 110101 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 110102 sources."@babel/helper-compilation-targets-7.17.7" 110103 + sources."@babel/helper-create-class-features-plugin-7.17.9" 110104 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 110105 sources."@babel/helper-define-polyfill-provider-0.3.1" 110106 sources."@babel/helper-environment-visitor-7.16.7" 110107 sources."@babel/helper-explode-assignable-expression-7.16.7" 110108 + sources."@babel/helper-function-name-7.17.9" 110109 sources."@babel/helper-hoist-variables-7.16.7" 110110 sources."@babel/helper-member-expression-to-functions-7.17.7" 110111 sources."@babel/helper-module-imports-7.16.7" ··· 110120 sources."@babel/helper-validator-identifier-7.16.7" 110121 sources."@babel/helper-validator-option-7.16.7" 110122 sources."@babel/helper-wrap-function-7.16.8" 110123 + sources."@babel/helpers-7.17.9" 110124 + (sources."@babel/highlight-7.17.9" // { 110125 dependencies = [ 110126 sources."chalk-2.4.2" 110127 ]; 110128 }) 110129 + sources."@babel/parser-7.17.9" 110130 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 110131 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 110132 sources."@babel/plugin-external-helpers-7.8.3" ··· 110176 sources."@babel/plugin-transform-literals-7.16.7" 110177 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 110178 sources."@babel/plugin-transform-modules-amd-7.16.7" 110179 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 110180 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 110181 sources."@babel/plugin-transform-modules-umd-7.16.7" 110182 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 110184 sources."@babel/plugin-transform-object-super-7.16.7" 110185 sources."@babel/plugin-transform-parameters-7.16.7" 110186 sources."@babel/plugin-transform-property-literals-7.16.7" 110187 + sources."@babel/plugin-transform-regenerator-7.17.9" 110188 sources."@babel/plugin-transform-reserved-words-7.16.7" 110189 sources."@babel/plugin-transform-runtime-7.17.0" 110190 sources."@babel/plugin-transform-shorthand-properties-7.16.7" ··· 110197 sources."@babel/preset-env-7.16.11" 110198 sources."@babel/preset-modules-0.1.5" 110199 sources."@babel/preset-stage-2-7.8.3" 110200 + sources."@babel/runtime-7.17.9" 110201 sources."@babel/template-7.16.7" 110202 + sources."@babel/traverse-7.17.9" 110203 sources."@babel/types-7.17.0" 110204 sources."@cnakazawa/watch-1.0.4" 110205 sources."@comandeer/babel-plugin-banner-5.0.0" ··· 110520 sources."duplexer2-0.1.4" 110521 sources."duplexify-3.7.1" 110522 sources."ecc-jsbn-0.1.2" 110523 + sources."electron-to-chromium-1.4.106" 110524 (sources."elliptic-6.5.4" // { 110525 dependencies = [ 110526 sources."bn.js-4.12.0" ··· 110914 sources."regenerate-1.4.2" 110915 sources."regenerate-unicode-properties-10.0.1" 110916 sources."regenerator-runtime-0.13.9" 110917 + sources."regenerator-transform-0.15.0" 110918 sources."regex-not-1.0.2" 110919 sources."regexpu-core-5.0.1" 110920 sources."regjsgen-0.6.0" ··· 111618 sources."commander-6.2.1" 111619 sources."debug-3.2.7" 111620 sources."has-flag-4.0.0" 111621 + sources."iconv-lite-0.6.3" 111622 sources."is-absolute-url-3.0.3" 111623 sources."is-relative-url-3.0.0" 111624 sources."isemail-3.2.0" ··· 111627 sources."markdown-link-extractor-2.0.1" 111628 sources."marked-4.0.12" 111629 sources."ms-2.1.3" 111630 + sources."needle-3.1.0" 111631 sources."progress-2.0.3" 111632 sources."punycode-2.1.1" 111633 sources."safer-buffer-2.1.2" ··· 111831 }) 111832 sources."ecc-jsbn-0.1.2" 111833 sources."entities-1.1.2" 111834 + sources."es5-ext-0.10.60" 111835 sources."es6-iterator-2.0.3" 111836 sources."es6-map-0.1.5" 111837 (sources."es6-set-0.1.5" // { ··· 112142 sources."commander-9.1.0" 112143 sources."concat-map-0.0.1" 112144 sources."cross-fetch-3.1.5" 112145 + sources."d3-7.4.3" 112146 + sources."d3-array-3.1.5" 112147 sources."d3-axis-3.0.0" 112148 sources."d3-brush-3.0.0" 112149 sources."d3-chord-3.0.1" ··· 112554 dependencies = [ 112555 sources."@babel/code-frame-7.16.7" 112556 sources."@babel/helper-validator-identifier-7.16.7" 112557 + (sources."@babel/highlight-7.17.9" // { 112558 dependencies = [ 112559 sources."ansi-styles-3.2.1" 112560 sources."chalk-2.4.2" ··· 112751 sources."latest-version-5.1.0" 112752 sources."lodash-4.17.21" 112753 sources."lowercase-keys-1.0.1" 112754 + sources."lru-cache-7.8.0" 112755 (sources."make-dir-3.1.0" // { 112756 dependencies = [ 112757 sources."semver-6.3.0" ··· 112825 sources."ripemd160-2.0.2" 112826 sources."rxjs-6.6.7" 112827 sources."safe-buffer-5.2.1" 112828 + sources."semver-7.3.6" 112829 (sources."semver-diff-3.1.1" // { 112830 dependencies = [ 112831 sources."semver-6.3.0" ··· 112895 sources."write-file-atomic-3.0.3" 112896 sources."xdg-basedir-4.0.0" 112897 sources."y18n-5.0.8" 112898 sources."yargs-16.2.0" 112899 sources."yargs-parser-20.2.9" 112900 ]; ··· 112934 sources."is-stream-2.0.1" 112935 sources."kuler-2.0.0" 112936 sources."logform-2.4.0" 112937 + sources."lru-cache-7.8.0" 112938 sources."ms-2.1.3" 112939 sources."one-time-1.0.0" 112940 sources."readable-stream-3.6.0" 112941 sources."safe-buffer-5.2.1" 112942 sources."safe-stable-stringify-2.3.1" 112943 + sources."semver-7.3.6" 112944 sources."simple-swizzle-0.2.2" 112945 sources."stack-trace-0.0.10" 112946 sources."string_decoder-1.3.0" ··· 112949 sources."util-deprecate-1.0.2" 112950 sources."winston-3.3.3" 112951 sources."winston-transport-4.5.0" 112952 ]; 112953 buildInputs = globalBuildInputs; 112954 meta = { ··· 112993 dependencies = [ 112994 sources."@gar/promisify-1.1.3" 112995 sources."@npmcli/fs-2.1.0" 112996 + sources."@npmcli/move-file-2.0.0" 112997 sources."@tootallnate/once-2.0.0" 112998 sources."abbrev-1.1.1" 112999 sources."agent-base-6.0.2" ··· 113004 sources."are-we-there-yet-3.0.0" 113005 sources."balanced-match-1.0.2" 113006 sources."brace-expansion-1.1.11" 113007 + sources."cacache-16.0.4" 113008 sources."chownr-2.0.0" 113009 sources."clean-stack-2.2.0" 113010 sources."color-support-1.1.3" ··· 113037 sources."is-fullwidth-code-point-3.0.0" 113038 sources."is-lambda-1.0.1" 113039 sources."isexe-2.0.0" 113040 + sources."lru-cache-7.8.0" 113041 sources."make-fetch-happen-10.1.2" 113042 sources."minimatch-3.1.2" 113043 sources."minipass-3.1.6" ··· 113062 sources."rimraf-3.0.2" 113063 sources."safe-buffer-5.2.1" 113064 sources."safer-buffer-2.1.2" 113065 + sources."semver-7.3.6" 113066 sources."set-blocking-2.0.0" 113067 sources."signal-exit-3.0.7" 113068 sources."smart-buffer-4.2.0" ··· 113515 sha512 = "DAx4v9/W2MEBb/tHNO94bmjeELdAg7CVZlPJX+UBH1RsmXB0q/3ZYW1Zi55NVMVN/0sBBO1g+dI/L0NWCG8s9A=="; 113516 }; 113517 dependencies = [ 113518 + sources."@babel/runtime-7.17.9" 113519 sources."@mapbox/node-pre-gyp-1.0.9" 113520 sources."@node-red/editor-api-2.2.2" 113521 sources."@node-red/editor-client-2.2.2" ··· 113640 sources."detect-libc-2.0.1" 113641 sources."dicer-0.2.5" 113642 sources."dom-serializer-1.3.2" 113643 + sources."domelementtype-2.3.0" 113644 sources."domhandler-4.3.1" 113645 sources."domutils-2.8.0" 113646 (sources."duplexify-4.1.2" // { ··· 113722 sources."universalify-2.0.0" 113723 ]; 113724 }) 113725 + sources."keyv-4.2.2" 113726 sources."leven-2.1.0" 113727 sources."lodash.clonedeep-4.5.0" 113728 sources."lowercase-keys-2.0.0" ··· 113981 sources."json-stringify-safe-5.0.1" 113982 sources."jsonfile-1.0.1" 113983 sources."jsprim-1.4.2" 113984 + sources."lru-cache-7.8.0" 113985 sources."mime-db-1.52.0" 113986 sources."mime-types-2.1.35" 113987 sources."minimatch-3.1.2" ··· 114042 sources."rimraf-2.2.8" 114043 sources."safe-buffer-5.2.1" 114044 sources."safer-buffer-2.1.2" 114045 + sources."semver-7.3.6" 114046 sources."set-blocking-2.0.0" 114047 sources."signal-exit-3.0.7" 114048 sources."slasp-0.0.4" ··· 114184 sources."keyv-3.1.0" 114185 sources."latest-version-5.1.0" 114186 sources."lowercase-keys-1.0.1" 114187 + sources."lru-cache-7.8.0" 114188 (sources."make-dir-3.1.0" // { 114189 dependencies = [ 114190 sources."semver-6.3.0" ··· 114238 sources."unique-string-2.0.0" 114239 (sources."update-notifier-5.1.0" // { 114240 dependencies = [ 114241 + sources."semver-7.3.6" 114242 ]; 114243 }) 114244 sources."url-parse-lax-3.0.0" ··· 114247 sources."wrappy-1.0.2" 114248 sources."write-file-atomic-3.0.3" 114249 sources."xdg-basedir-4.0.0" 114250 ]; 114251 buildInputs = globalBuildInputs; 114252 meta = { ··· 114269 dependencies = [ 114270 sources."@babel/code-frame-7.16.7" 114271 sources."@babel/helper-validator-identifier-7.16.7" 114272 + (sources."@babel/highlight-7.17.9" // { 114273 dependencies = [ 114274 sources."ansi-styles-3.2.1" 114275 sources."chalk-2.4.2" ··· 114499 sources."js-tokens-4.0.0" 114500 sources."json-buffer-3.0.1" 114501 sources."json-parse-even-better-errors-2.3.1" 114502 + sources."keyv-4.2.2" 114503 sources."kind-of-6.0.3" 114504 sources."latest-version-5.1.0" 114505 sources."lines-and-columns-1.2.4" ··· 114713 sources."rxjs-6.6.7" 114714 sources."safer-buffer-2.1.2" 114715 sources."scoped-regex-2.1.0" 114716 + (sources."semver-7.3.6" // { 114717 + dependencies = [ 114718 + sources."lru-cache-7.8.0" 114719 + ]; 114720 + }) 114721 (sources."semver-diff-3.1.1" // { 114722 dependencies = [ 114723 sources."semver-6.3.0" ··· 114812 npm-check-updates = nodeEnv.buildNodePackage { 114813 name = "npm-check-updates"; 114814 packageName = "npm-check-updates"; 114815 + version = "12.5.8"; 114816 src = fetchurl { 114817 + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.5.8.tgz"; 114818 + sha512 = "8SDZ6qYXI0aKf63zSbByqB9QmK8ygrZ+UVcXg9kGQyvH7dGIcFauFF0ksC0NdThHkU/5QhowJVSHXva9zujkJg=="; 114819 }; 114820 dependencies = [ 114821 sources."@gar/promisify-1.1.3" ··· 114823 sources."@nodelib/fs.stat-2.0.5" 114824 sources."@nodelib/fs.walk-1.2.8" 114825 sources."@npmcli/fs-2.1.0" 114826 + sources."@npmcli/git-3.0.1" 114827 sources."@npmcli/installed-package-contents-1.0.7" 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" 114832 sources."@sindresorhus/is-0.14.0" 114833 sources."@szmarczak/http-timer-1.1.2" 114834 sources."@tootallnate/once-2.0.0" ··· 114849 sources."braces-3.0.2" 114850 sources."buffer-from-1.1.2" 114851 sources."builtins-5.0.0" 114852 + sources."cacache-16.0.4" 114853 (sources."cacheable-request-6.1.0" // { 114854 dependencies = [ 114855 sources."get-stream-5.2.0" ··· 114928 sources."humanize-ms-1.2.1" 114929 sources."iconv-lite-0.6.3" 114930 sources."ignore-5.2.0" 114931 + sources."ignore-walk-5.0.1" 114932 sources."import-lazy-2.1.0" 114933 sources."imurmurhash-0.1.4" 114934 sources."indent-string-4.0.0" ··· 114974 sources."locate-path-6.0.0" 114975 sources."lodash-4.17.21" 114976 sources."lowercase-keys-1.0.1" 114977 + sources."lru-cache-7.8.0" 114978 (sources."make-dir-3.1.0" // { 114979 dependencies = [ 114980 sources."semver-6.3.0" 114981 ]; 114982 }) 114983 + sources."make-fetch-happen-10.1.2" 114984 sources."merge2-1.4.1" 114985 sources."micromatch-4.0.5" 114986 sources."mimic-response-1.0.1" ··· 115005 sources."npm-install-checks-5.0.0" 115006 sources."npm-normalize-package-bin-1.0.1" 115007 sources."npm-package-arg-9.0.2" 115008 + sources."npm-packlist-5.0.0" 115009 sources."npm-pick-manifest-7.0.1" 115010 sources."npm-registry-fetch-13.1.0" 115011 sources."npmlog-6.0.1" ··· 115020 sources."semver-6.3.0" 115021 ]; 115022 }) 115023 + sources."pacote-13.1.1" 115024 sources."parse-github-url-1.0.2" 115025 sources."path-exists-4.0.0" 115026 sources."path-is-absolute-1.0.1" ··· 115051 sources."run-parallel-1.2.0" 115052 sources."safe-buffer-5.2.1" 115053 sources."safer-buffer-2.1.2" 115054 + sources."semver-7.3.6" 115055 (sources."semver-diff-3.1.1" // { 115056 dependencies = [ 115057 sources."semver-6.3.0" ··· 115072 sources."spdx-exceptions-2.3.0" 115073 sources."spdx-expression-parse-3.0.1" 115074 sources."spdx-license-ids-3.0.11" 115075 + sources."ssri-9.0.0" 115076 sources."string-width-4.2.3" 115077 sources."string_decoder-1.3.0" 115078 sources."strip-ansi-6.0.1" ··· 115423 sources."@ampproject/remapping-2.1.2" 115424 sources."@babel/code-frame-7.16.7" 115425 sources."@babel/compat-data-7.17.7" 115426 + (sources."@babel/core-7.17.9" // { 115427 dependencies = [ 115428 sources."json5-2.2.1" 115429 sources."semver-6.3.0" 115430 ]; 115431 }) 115432 + (sources."@babel/generator-7.17.9" // { 115433 dependencies = [ 115434 sources."source-map-0.5.7" 115435 ]; ··· 115441 sources."semver-6.3.0" 115442 ]; 115443 }) 115444 + sources."@babel/helper-create-class-features-plugin-7.17.9" 115445 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 115446 (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 115447 dependencies = [ ··· 115450 }) 115451 sources."@babel/helper-environment-visitor-7.16.7" 115452 sources."@babel/helper-explode-assignable-expression-7.16.7" 115453 + sources."@babel/helper-function-name-7.17.9" 115454 sources."@babel/helper-hoist-variables-7.16.7" 115455 sources."@babel/helper-member-expression-to-functions-7.17.7" 115456 sources."@babel/helper-module-imports-7.16.7" ··· 115465 sources."@babel/helper-validator-identifier-7.16.7" 115466 sources."@babel/helper-validator-option-7.16.7" 115467 sources."@babel/helper-wrap-function-7.16.8" 115468 + sources."@babel/helpers-7.17.9" 115469 + sources."@babel/highlight-7.17.9" 115470 + sources."@babel/parser-7.17.9" 115471 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 115472 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 115473 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 115517 sources."@babel/plugin-transform-literals-7.16.7" 115518 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 115519 sources."@babel/plugin-transform-modules-amd-7.16.7" 115520 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 115521 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 115522 sources."@babel/plugin-transform-modules-umd-7.16.7" 115523 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 115526 sources."@babel/plugin-transform-parameters-7.16.7" 115527 sources."@babel/plugin-transform-property-literals-7.16.7" 115528 sources."@babel/plugin-transform-react-jsx-7.17.3" 115529 + sources."@babel/plugin-transform-regenerator-7.17.9" 115530 sources."@babel/plugin-transform-reserved-words-7.16.7" 115531 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 115532 sources."@babel/plugin-transform-spread-7.16.7" ··· 115541 ]; 115542 }) 115543 sources."@babel/preset-modules-0.1.5" 115544 + sources."@babel/runtime-7.17.9" 115545 sources."@babel/template-7.16.7" 115546 + sources."@babel/traverse-7.17.9" 115547 sources."@babel/types-7.17.0" 115548 sources."@iarna/toml-2.2.5" 115549 sources."@jridgewell/resolve-uri-3.0.5" ··· 115788 }) 115789 (sources."dom-serializer-0.2.2" // { 115790 dependencies = [ 115791 + sources."domelementtype-2.3.0" 115792 ]; 115793 }) 115794 sources."domain-browser-1.2.0" ··· 115796 sources."domexception-1.0.1" 115797 (sources."domhandler-4.3.1" // { 115798 dependencies = [ 115799 + sources."domelementtype-2.3.0" 115800 ]; 115801 }) 115802 sources."domutils-1.7.0" ··· 115806 sources."duplexer2-0.1.4" 115807 sources."ecc-jsbn-0.1.2" 115808 sources."ee-first-1.1.1" 115809 + sources."electron-to-chromium-1.4.106" 115810 (sources."elliptic-6.5.4" // { 115811 dependencies = [ 115812 sources."bn.js-4.12.0" ··· 115923 (sources."htmlparser2-6.1.0" // { 115924 dependencies = [ 115925 sources."dom-serializer-1.3.2" 115926 + sources."domelementtype-2.3.0" 115927 sources."domutils-2.8.0" 115928 ]; 115929 }) ··· 116223 sources."regenerate-1.4.2" 116224 sources."regenerate-unicode-properties-10.0.1" 116225 sources."regenerator-runtime-0.13.9" 116226 + sources."regenerator-transform-0.15.0" 116227 (sources."regex-not-1.0.2" // { 116228 dependencies = [ 116229 sources."extend-shallow-3.0.2" ··· 116455 dependencies = [ 116456 sources."@babel/code-frame-7.16.7" 116457 sources."@babel/helper-validator-identifier-7.16.7" 116458 + (sources."@babel/highlight-7.17.9" // { 116459 dependencies = [ 116460 sources."chalk-2.4.2" 116461 ]; ··· 116466 sources."@parcel/compressor-raw-2.4.1" 116467 sources."@parcel/config-default-2.4.1" 116468 sources."@parcel/core-2.4.1" 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" 116478 sources."@parcel/diagnostic-2.4.1" 116479 sources."@parcel/events-2.4.1" 116480 sources."@parcel/fs-2.4.1" ··· 116569 sources."entities-2.2.0" 116570 ]; 116571 }) 116572 + sources."domelementtype-2.3.0" 116573 sources."domhandler-4.3.1" 116574 sources."domutils-2.8.0" 116575 sources."dotenv-7.0.0" 116576 sources."dotenv-expand-5.1.0" 116577 + sources."electron-to-chromium-1.4.106" 116578 sources."entities-3.0.1" 116579 sources."error-ex-1.3.2" 116580 sources."escalade-3.1.1" ··· 116582 sources."get-port-4.2.0" 116583 sources."globals-13.13.0" 116584 sources."has-flag-3.0.0" 116585 + sources."htmlnano-2.0.2" 116586 sources."htmlparser2-7.2.0" 116587 sources."import-fresh-3.3.0" 116588 sources."is-arrayish-0.2.1" ··· 116595 sources."lmdb-2.2.4" 116596 sources."mdn-data-2.0.14" 116597 sources."msgpackr-1.5.5" 116598 + sources."msgpackr-extract-1.1.3" 116599 sources."msgpackr-extract-darwin-arm64-1.1.0" 116600 sources."msgpackr-extract-darwin-x64-1.1.0" 116601 sources."msgpackr-extract-linux-arm-1.1.0" ··· 116605 sources."nan-2.15.0" 116606 sources."node-addon-api-3.2.1" 116607 sources."node-gyp-build-4.4.0" 116608 + sources."node-gyp-build-optional-packages-4.3.1" 116609 sources."node-releases-2.0.2" 116610 sources."nth-check-2.0.1" 116611 sources."nullthrows-1.1.1" ··· 116808 sources."lodash-4.17.21" 116809 sources."lodash.clone-4.5.0" 116810 sources."lodash.clonedeep-4.5.0" 116811 + sources."lru-cache-7.8.0" 116812 sources."media-typer-0.3.0" 116813 sources."mediawiki-title-0.6.5" 116814 sources."merge-descriptors-1.0.1" ··· 116888 sources."serve-static-1.14.2" 116889 (sources."service-runner-2.9.0" // { 116890 dependencies = [ 116891 + sources."semver-7.3.6" 116892 sources."yargs-14.2.3" 116893 ]; 116894 }) ··· 116931 sources."wrap-ansi-5.1.0" 116932 sources."wrappy-1.0.2" 116933 sources."y18n-4.0.3" 116934 (sources."yargs-13.3.2" // { 116935 dependencies = [ 116936 sources."yargs-parser-13.1.2" ··· 117839 sources."isarray-1.0.0" 117840 sources."jsonfile-6.1.0" 117841 sources."levn-0.3.0" 117842 + sources."lru-cache-7.8.0" 117843 sources."merge2-1.4.1" 117844 sources."micromatch-4.0.5" 117845 sources."mimic-response-2.1.0" ··· 117881 sources."reusify-1.0.4" 117882 sources."run-parallel-1.2.0" 117883 sources."safe-buffer-5.1.2" 117884 + sources."semver-7.3.6" 117885 sources."set-blocking-2.0.0" 117886 sources."signal-exit-3.0.7" 117887 sources."simple-concat-1.0.1" ··· 117916 sources."wrap-ansi-7.0.0" 117917 sources."wrappy-1.0.2" 117918 sources."y18n-5.0.8" 117919 sources."yargs-16.2.0" 117920 sources."yargs-parser-20.2.9" 117921 ]; ··· 118115 sources."safe-buffer-5.2.1" 118116 sources."safer-buffer-2.1.2" 118117 sources."sax-1.2.4" 118118 + (sources."semver-7.3.6" // { 118119 dependencies = [ 118120 + sources."lru-cache-7.8.0" 118121 ]; 118122 }) 118123 sources."setprototypeof-1.2.0" ··· 118355 sources."ini-1.3.8" 118356 sources."is-fullwidth-code-point-1.0.0" 118357 sources."isarray-1.0.0" 118358 + sources."lru-cache-7.8.0" 118359 sources."mimic-response-3.1.0" 118360 sources."minimist-1.2.6" 118361 sources."mkdirp-classic-0.5.3" ··· 118370 sources."rc-1.2.8" 118371 sources."readable-stream-2.3.7" 118372 sources."safe-buffer-5.1.2" 118373 + sources."semver-7.3.6" 118374 sources."set-blocking-2.0.0" 118375 sources."signal-exit-3.0.7" 118376 sources."simple-concat-1.0.1" ··· 118389 sources."util-deprecate-1.0.2" 118390 sources."wide-align-1.1.5" 118391 sources."wrappy-1.0.2" 118392 ]; 118393 buildInputs = globalBuildInputs; 118394 meta = { ··· 119374 sources."@babel/cli-7.17.6" 119375 sources."@babel/code-frame-7.16.7" 119376 sources."@babel/compat-data-7.17.7" 119377 + (sources."@babel/core-7.17.9" // { 119378 dependencies = [ 119379 sources."semver-6.3.0" 119380 ]; 119381 }) 119382 + sources."@babel/generator-7.17.9" 119383 sources."@babel/helper-annotate-as-pure-7.16.7" 119384 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 119385 (sources."@babel/helper-compilation-targets-7.17.7" // { ··· 119387 sources."semver-6.3.0" 119388 ]; 119389 }) 119390 + sources."@babel/helper-create-class-features-plugin-7.17.9" 119391 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 119392 (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 119393 dependencies = [ ··· 119396 }) 119397 sources."@babel/helper-environment-visitor-7.16.7" 119398 sources."@babel/helper-explode-assignable-expression-7.16.7" 119399 + sources."@babel/helper-function-name-7.17.9" 119400 sources."@babel/helper-hoist-variables-7.16.7" 119401 sources."@babel/helper-member-expression-to-functions-7.17.7" 119402 sources."@babel/helper-module-imports-7.16.7" ··· 119411 sources."@babel/helper-validator-identifier-7.16.7" 119412 sources."@babel/helper-validator-option-7.16.7" 119413 sources."@babel/helper-wrap-function-7.16.8" 119414 + sources."@babel/helpers-7.17.9" 119415 + sources."@babel/highlight-7.17.9" 119416 + sources."@babel/parser-7.17.9" 119417 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 119418 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 119419 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 119463 sources."@babel/plugin-transform-literals-7.16.7" 119464 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 119465 sources."@babel/plugin-transform-modules-amd-7.16.7" 119466 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 119467 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 119468 sources."@babel/plugin-transform-modules-umd-7.16.7" 119469 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 119475 sources."@babel/plugin-transform-react-jsx-7.17.3" 119476 sources."@babel/plugin-transform-react-jsx-development-7.16.7" 119477 sources."@babel/plugin-transform-react-pure-annotations-7.16.7" 119478 + sources."@babel/plugin-transform-regenerator-7.17.9" 119479 sources."@babel/plugin-transform-reserved-words-7.16.7" 119480 (sources."@babel/plugin-transform-runtime-7.17.0" // { 119481 dependencies = [ ··· 119498 sources."@babel/preset-react-7.16.7" 119499 sources."@babel/preset-stage-0-7.8.3" 119500 sources."@babel/register-7.17.7" 119501 + sources."@babel/runtime-7.17.9" 119502 sources."@babel/template-7.16.7" 119503 + sources."@babel/traverse-7.17.9" 119504 sources."@babel/types-7.17.0" 119505 sources."@jridgewell/resolve-uri-3.0.5" 119506 sources."@jridgewell/sourcemap-codec-1.4.11" ··· 119908 sources."dom-converter-0.2.0" 119909 (sources."dom-serializer-0.2.2" // { 119910 dependencies = [ 119911 + sources."domelementtype-2.3.0" 119912 ]; 119913 }) 119914 sources."domain-browser-1.2.0" 119915 sources."domelementtype-1.3.1" 119916 (sources."domhandler-4.3.1" // { 119917 dependencies = [ 119918 + sources."domelementtype-2.3.0" 119919 ]; 119920 }) 119921 sources."domutils-1.7.0" ··· 119932 sources."duplexify-3.7.1" 119933 sources."ee-first-1.1.1" 119934 sources."ejs-2.7.4" 119935 + sources."electron-to-chromium-1.4.106" 119936 (sources."elliptic-6.5.4" // { 119937 dependencies = [ 119938 sources."bn.js-4.12.0" ··· 120163 (sources."htmlparser2-6.1.0" // { 120164 dependencies = [ 120165 sources."dom-serializer-1.3.2" 120166 + sources."domelementtype-2.3.0" 120167 sources."domutils-2.8.0" 120168 ]; 120169 }) ··· 120651 sources."regenerate-1.4.2" 120652 sources."regenerate-unicode-properties-10.0.1" 120653 sources."regenerator-runtime-0.13.9" 120654 + sources."regenerator-transform-0.15.0" 120655 sources."regex-not-1.0.2" 120656 sources."regexp.prototype.flags-1.4.1" 120657 sources."regexpu-core-5.0.1" ··· 120671 sources."css-select-4.3.0" 120672 sources."css-what-6.1.0" 120673 sources."dom-serializer-1.3.2" 120674 + sources."domelementtype-2.3.0" 120675 sources."domutils-2.8.0" 120676 sources."nth-check-2.0.1" 120677 sources."strip-ansi-3.0.1" ··· 121311 }; 121312 dependencies = [ 121313 sources."@babel/code-frame-7.16.7" 121314 + (sources."@babel/generator-7.17.9" // { 121315 dependencies = [ 121316 sources."source-map-0.5.7" 121317 ]; 121318 }) 121319 sources."@babel/helper-annotate-as-pure-7.16.7" 121320 sources."@babel/helper-environment-visitor-7.16.7" 121321 + sources."@babel/helper-function-name-7.17.9" 121322 sources."@babel/helper-hoist-variables-7.16.7" 121323 sources."@babel/helper-module-imports-7.16.7" 121324 sources."@babel/helper-split-export-declaration-7.16.7" 121325 sources."@babel/helper-validator-identifier-7.16.7" 121326 + sources."@babel/highlight-7.17.9" 121327 + sources."@babel/parser-7.17.9" 121328 + sources."@babel/runtime-7.17.9" 121329 sources."@babel/template-7.16.7" 121330 + sources."@babel/traverse-7.17.9" 121331 sources."@babel/types-7.17.0" 121332 sources."@emotion/is-prop-valid-1.1.2" 121333 sources."@emotion/memoize-0.7.5" ··· 121353 sources."util-0.10.3" 121354 ]; 121355 }) 121356 + sources."babel-plugin-styled-components-2.0.7" 121357 sources."babel-plugin-syntax-jsx-6.18.0" 121358 sources."balanced-match-1.0.2" 121359 sources."base64-js-1.5.1" ··· 121509 sources."perfect-scrollbar-1.5.5" 121510 sources."picomatch-2.3.1" 121511 sources."pluralize-8.0.0" 121512 + sources."polished-4.2.2" 121513 sources."postcss-value-parser-4.2.0" 121514 sources."prismjs-1.27.0" 121515 sources."process-0.11.10" ··· 121932 sources."livereload-js-3.3.3" 121933 sources."lodash-4.17.21" 121934 sources."lowercase-keys-1.0.1" 121935 + sources."lru-cache-7.8.0" 121936 (sources."make-dir-3.1.0" // { 121937 dependencies = [ 121938 sources."semver-6.3.0" ··· 122002 sources."rimraf-2.7.1" 122003 sources."safe-buffer-5.2.1" 122004 sources."safer-buffer-2.1.2" 122005 + sources."semver-7.3.6" 122006 (sources."semver-diff-3.1.1" // { 122007 dependencies = [ 122008 sources."semver-6.3.0" ··· 122060 sources."write-file-atomic-3.0.3" 122061 sources."ws-7.5.7" 122062 sources."xdg-basedir-4.0.0" 122063 sources."yaml-front-matter-4.1.1" 122064 sources."yargs-parser-20.2.9" 122065 sources."yauzl-2.10.0" ··· 122199 sources."cross-spawn-7.0.3" 122200 sources."css-select-4.3.0" 122201 sources."css-what-6.1.0" 122202 + sources."d3-7.4.3" 122203 + sources."d3-array-3.1.5" 122204 sources."d3-axis-3.0.0" 122205 sources."d3-brush-3.0.0" 122206 sources."d3-chord-3.0.1" ··· 122255 sources."dir-glob-3.0.1" 122256 sources."doctrine-3.0.0" 122257 sources."dom-serializer-1.3.2" 122258 + sources."domelementtype-2.3.0" 122259 sources."domhandler-4.3.1" 122260 sources."domutils-2.8.0" 122261 sources."duplexer2-0.1.4" ··· 122264 sources."commander-2.20.3" 122265 sources."lru-cache-4.1.5" 122266 sources."semver-5.7.1" 122267 ]; 122268 }) 122269 sources."emoji-regex-8.0.0" ··· 122338 sources."has-flag-4.0.0" 122339 sources."has-symbols-1.0.3" 122340 sources."has-unicode-2.0.1" 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 + }) 122347 sources."htmlparser2-6.1.0" 122348 sources."http-proxy-agent-4.0.1" 122349 sources."https-proxy-agent-5.0.0" ··· 122371 sources."linkify-it-3.0.3" 122372 sources."listenercount-1.0.1" 122373 sources."lodash.merge-4.6.2" 122374 + sources."lru-cache-7.8.0" 122375 (sources."markdown-it-12.3.2" // { 122376 dependencies = [ 122377 sources."entities-2.1.0" ··· 122438 sources."safe-buffer-5.1.2" 122439 sources."safer-buffer-2.1.2" 122440 sources."sax-1.2.4" 122441 + sources."semver-7.3.6" 122442 sources."set-blocking-2.0.0" 122443 sources."setimmediate-1.0.5" 122444 sources."shebang-command-2.0.0" ··· 122509 sources."xml2js-0.4.23" 122510 sources."xmlbuilder-11.0.1" 122511 sources."y18n-5.0.8" 122512 + sources."yallist-2.1.2" 122513 sources."yargs-17.4.0" 122514 sources."yargs-parser-21.0.1" 122515 sources."yauzl-2.10.0" ··· 122652 sass = nodeEnv.buildNodePackage { 122653 name = "sass"; 122654 packageName = "sass"; 122655 + version = "1.50.0"; 122656 src = fetchurl { 122657 + url = "https://registry.npmjs.org/sass/-/sass-1.50.0.tgz"; 122658 + sha512 = "cLsD6MEZ5URXHStxApajEh7gW189kkjn4Rc8DQweMyF+o5HF5nfEz8QYLMlPsTOD88DknatTmBWkOcw5/LnJLQ=="; 122659 }; 122660 dependencies = [ 122661 sources."anymatch-3.1.2" ··· 122689 semver = nodeEnv.buildNodePackage { 122690 name = "semver"; 122691 packageName = "semver"; 122692 + version = "7.3.6"; 122693 src = fetchurl { 122694 + url = "https://registry.npmjs.org/semver/-/semver-7.3.6.tgz"; 122695 + sha512 = "HZWqcgwLsjaX1HBD31msI/rXktuIhS+lWvdE4kN9z+8IVT4Itc7vqU2WvYsyD6/sjYCt4dEKH/m1M3dwI9CC5w=="; 122696 }; 122697 dependencies = [ 122698 + sources."lru-cache-7.8.0" 122699 ]; 122700 buildInputs = globalBuildInputs; 122701 meta = { ··· 122831 serverless = nodeEnv.buildNodePackage { 122832 name = "serverless"; 122833 packageName = "serverless"; 122834 + version = "3.12.0"; 122835 src = fetchurl { 122836 + url = "https://registry.npmjs.org/serverless/-/serverless-3.12.0.tgz"; 122837 + sha512 = "CKpJGnKYxfxCYw0IojoidfZiueOl0bhbzTcRcHDVDPJLi3DYMQ+o6EwWtF7m36Nkw6FXT36Wot7pmljHoXYrQQ=="; 122838 }; 122839 dependencies = [ 122840 sources."2-thenable-1.0.0" ··· 122889 sources."async-3.2.3" 122890 sources."asynckit-0.4.0" 122891 sources."at-least-node-1.0.0" 122892 + (sources."aws-sdk-2.1110.0" // { 122893 dependencies = [ 122894 sources."buffer-4.9.2" 122895 sources."ieee754-1.1.13" ··· 123031 sources."duration-0.2.2" 123032 sources."emoji-regex-8.0.0" 123033 sources."end-of-stream-1.4.4" 123034 + sources."es5-ext-0.10.60" 123035 sources."es6-iterator-2.0.3" 123036 (sources."es6-set-0.1.5" // { 123037 dependencies = [ ··· 123129 }) 123130 sources."json-schema-traverse-1.0.0" 123131 sources."jsonfile-6.1.0" 123132 + sources."jszip-3.9.1" 123133 sources."jwt-decode-2.2.0" 123134 + sources."keyv-4.2.2" 123135 sources."lazystream-1.0.1" 123136 sources."lie-3.3.0" 123137 sources."lodash-4.17.21" ··· 123144 sources."log-node-8.0.3" 123145 sources."log-symbols-4.1.0" 123146 sources."lowercase-keys-2.0.0" 123147 + sources."lru-cache-7.8.0" 123148 sources."lru-queue-0.1.0" 123149 (sources."make-dir-3.1.0" // { 123150 dependencies = [ ··· 123229 sources."safer-buffer-2.1.2" 123230 sources."sax-1.2.1" 123231 sources."seek-bzip-1.0.6" 123232 + sources."semver-7.3.6" 123233 sources."set-immediate-shim-1.0.1" 123234 sources."shebang-command-1.2.0" 123235 sources."shebang-regex-1.0.0" ··· 123954 snyk = nodeEnv.buildNodePackage { 123955 name = "snyk"; 123956 packageName = "snyk"; 123957 + version = "1.898.0"; 123958 src = fetchurl { 123959 + url = "https://registry.npmjs.org/snyk/-/snyk-1.898.0.tgz"; 123960 + sha512 = "FwBO3h3RFJuUVtH8zs6xyca6SsFmp+qDHkOubak6hhsL1SIp2t9Rvpjv8S6+S6S3hktK3KVecKlYhFdmVAK5CA=="; 123961 }; 123962 buildInputs = globalBuildInputs; 123963 meta = { ··· 124021 dependencies = [ 124022 sources."@babel/code-frame-7.16.7" 124023 sources."@babel/helper-validator-identifier-7.16.7" 124024 + (sources."@babel/highlight-7.17.9" // { 124025 dependencies = [ 124026 sources."ansi-styles-3.2.1" 124027 sources."chalk-2.4.2" ··· 124120 sources."round-to-6.0.0" 124121 sources."safe-buffer-5.2.1" 124122 sources."sax-1.2.4" 124123 + (sources."semver-7.3.6" // { 124124 + dependencies = [ 124125 + sources."lru-cache-7.8.0" 124126 + ]; 124127 + }) 124128 sources."signal-exit-3.0.7" 124129 (sources."slice-ansi-5.0.0" // { 124130 dependencies = [ ··· 124257 sources."binary-search-1.3.6" 124258 sources."binary-search-bounds-2.0.5" 124259 sources."bindings-1.5.0" 124260 + sources."bipf-1.6.2" 124261 sources."blake2s-1.1.0" 124262 sources."brace-expansion-1.1.11" 124263 sources."braces-1.8.5" ··· 125221 sources."async-1.5.2" 125222 sources."async-limiter-1.0.1" 125223 sources."asynckit-0.4.0" 125224 + (sources."aws-sdk-2.1110.0" // { 125225 dependencies = [ 125226 sources."uuid-3.3.2" 125227 ]; ··· 126029 dependencies = [ 126030 sources."@babel/code-frame-7.16.7" 126031 sources."@babel/helper-validator-identifier-7.16.7" 126032 + sources."@babel/highlight-7.17.9" 126033 sources."@nodelib/fs.scandir-2.1.5" 126034 sources."@nodelib/fs.stat-2.0.5" 126035 sources."@nodelib/fs.walk-1.2.8" ··· 126095 sources."has-1.0.3" 126096 sources."has-flag-3.0.0" 126097 sources."hosted-git-info-4.1.0" 126098 + sources."html-tags-3.2.0" 126099 sources."ignore-5.2.0" 126100 (sources."import-fresh-3.3.0" // { 126101 dependencies = [ ··· 126181 sources."reusify-1.0.4" 126182 sources."rimraf-3.0.2" 126183 sources."run-parallel-1.2.0" 126184 + (sources."semver-7.3.6" // { 126185 + dependencies = [ 126186 + sources."lru-cache-7.8.0" 126187 + ]; 126188 + }) 126189 sources."signal-exit-3.0.7" 126190 sources."slash-3.0.0" 126191 (sources."slice-ansi-4.0.0" // { ··· 126379 svelte-check = nodeEnv.buildNodePackage { 126380 name = "svelte-check"; 126381 packageName = "svelte-check"; 126382 + version = "2.5.0"; 126383 src = fetchurl { 126384 + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.5.0.tgz"; 126385 + sha512 = "/laO032JQ1TpmYHgaaLndHNPeWW3VSL3liMB97sA9fYTEzlIy3jIo4Rgr7EzjNvieiNWG73C5voOAeNHlrwbpg=="; 126386 }; 126387 dependencies = [ 126388 sources."@nodelib/fs.scandir-2.1.5" ··· 126461 svelte-language-server = nodeEnv.buildNodePackage { 126462 name = "svelte-language-server"; 126463 packageName = "svelte-language-server"; 126464 + version = "0.14.24"; 126465 src = fetchurl { 126466 + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.24.tgz"; 126467 + sha512 = "SwRYWCSA9hb6W5VX7zO7CF9+Va31boaei69mq3Z2HatxPZ9FRh1gebCuYZOfHdSKtSgc3BK9uCmyoaLRjUUHIg=="; 126468 }; 126469 dependencies = [ 126470 sources."@emmetio/abbreviation-2.2.3" ··· 126533 sources."strip-indent-3.0.0" 126534 sources."svelte-3.46.6" 126535 sources."svelte-preprocess-4.10.5" 126536 + sources."svelte2tsx-0.5.7" 126537 sources."to-regex-range-5.0.1" 126538 sources."tslib-2.3.1" 126539 sources."typescript-4.6.3" ··· 126589 sources."css-what-6.1.0" 126590 sources."csso-4.2.0" 126591 sources."dom-serializer-1.3.2" 126592 + sources."domelementtype-2.3.0" 126593 sources."domhandler-4.3.1" 126594 sources."domutils-2.8.0" 126595 sources."entities-2.2.0" ··· 127267 dependencies = [ 127268 sources."@babel/code-frame-7.16.7" 127269 sources."@babel/helper-validator-identifier-7.16.7" 127270 + (sources."@babel/highlight-7.17.9" // { 127271 dependencies = [ 127272 sources."ansi-styles-3.2.1" 127273 sources."chalk-2.4.2" ··· 127881 dependencies = [ 127882 sources."@babel/code-frame-7.16.7" 127883 sources."@babel/helper-validator-identifier-7.16.7" 127884 + sources."@babel/highlight-7.17.9" 127885 sources."@sindresorhus/is-0.14.0" 127886 sources."@szmarczak/http-timer-1.1.2" 127887 sources."@types/hast-2.3.4" ··· 128761 sources."detect-libc-1.0.3" 128762 sources."dicer-0.3.0" 128763 sources."dom-serializer-1.3.2" 128764 + sources."domelementtype-2.3.0" 128765 sources."domhandler-4.3.1" 128766 sources."domutils-2.8.0" 128767 sources."duplexer3-0.1.4" ··· 128881 }) 128882 sources."jwa-2.0.0" 128883 sources."jws-4.0.0" 128884 + sources."keyv-4.2.2" 128885 sources."ldap-filter-0.3.3" 128886 sources."ldapjs-2.3.1" 128887 sources."linkify-it-3.0.3" ··· 129236 sources."detect-libc-1.0.3" 129237 sources."dicer-0.3.0" 129238 sources."dom-serializer-1.3.2" 129239 + sources."domelementtype-2.3.0" 129240 sources."domhandler-4.3.1" 129241 sources."domutils-2.8.0" 129242 sources."duplexer3-0.1.4" ··· 129356 }) 129357 sources."jwa-2.0.0" 129358 sources."jws-4.0.0" 129359 + sources."keyv-4.2.2" 129360 sources."ldap-filter-0.3.3" 129361 sources."ldapjs-2.3.1" 129362 sources."linkify-it-3.0.3" ··· 130502 }) 130503 sources."jwa-2.0.0" 130504 sources."jws-4.0.0" 130505 + sources."keyv-4.2.2" 130506 sources."ldap-filter-0.3.3" 130507 sources."ldapjs-2.1.1" 130508 sources."linkify-it-3.0.2" ··· 130969 }) 130970 sources."jwa-2.0.0" 130971 sources."jws-4.0.0" 130972 + sources."keyv-4.2.2" 130973 sources."ldap-filter-0.3.3" 130974 sources."ldapjs-2.1.1" 130975 sources."linkify-it-3.0.2" ··· 131716 sources."jsonfile-6.1.0" 131717 sources."jsprim-1.4.2" 131718 sources."keypress-0.2.1" 131719 + sources."lru-cache-7.8.0" 131720 sources."mime-db-1.52.0" 131721 sources."mime-types-2.1.35" 131722 sources."minimatch-3.1.2" ··· 131740 sources."rimraf-2.6.3" 131741 sources."safe-buffer-5.2.1" 131742 sources."safer-buffer-2.1.2" 131743 + sources."semver-7.3.6" 131744 sources."sprintf-0.1.5" 131745 sources."sshpk-1.17.0" 131746 sources."stack-trace-0.0.10" ··· 131763 ]; 131764 }) 131765 sources."wrappy-1.0.2" 131766 sources."yauzl-2.10.0" 131767 ]; 131768 buildInputs = globalBuildInputs; ··· 132111 sources."isexe-2.0.0" 132112 sources."jsonfile-6.1.0" 132113 sources."locate-path-3.0.0" 132114 + sources."lru-cache-7.8.0" 132115 sources."merge2-1.4.1" 132116 sources."micromatch-4.0.5" 132117 sources."minimatch-3.1.2" ··· 132130 sources."reusify-1.0.4" 132131 sources."rimraf-3.0.2" 132132 sources."run-parallel-1.2.0" 132133 + sources."semver-7.3.6" 132134 sources."slash-3.0.0" 132135 sources."temp-dir-2.0.0" 132136 sources."tempy-1.0.1" ··· 132146 sources."vscode-uri-3.0.3" 132147 sources."which-2.0.2" 132148 sources."wrappy-1.0.2" 132149 ]; 132150 buildInputs = globalBuildInputs; 132151 meta = { ··· 132339 sources."jquery-ui-1.13.1" 132340 sources."json-buffer-3.0.1" 132341 sources."just-detect-adblock-1.1.0" 132342 + sources."keyv-4.2.2" 132343 sources."knockout-3.5.1" 132344 sources."kuler-2.0.0" 132345 sources."latest-version-6.0.0" ··· 132417 sources."safe-buffer-5.2.1" 132418 sources."safe-stable-stringify-2.3.1" 132419 sources."safer-buffer-2.1.2" 132420 + (sources."semver-7.3.6" // { 132421 dependencies = [ 132422 + sources."lru-cache-7.8.0" 132423 ]; 132424 }) 132425 (sources."send-0.17.2" // { ··· 132524 dependencies = [ 132525 sources."@babel/code-frame-7.16.7" 132526 sources."@babel/helper-validator-identifier-7.16.7" 132527 + sources."@babel/highlight-7.17.9" 132528 sources."@types/concat-stream-2.0.0" 132529 sources."@types/debug-4.1.7" 132530 sources."@types/is-empty-1.2.1" ··· 132573 sources."lines-and-columns-2.0.3" 132574 sources."load-plugin-4.0.1" 132575 sources."locate-path-3.0.0" 132576 + sources."lru-cache-7.8.0" 132577 sources."minimatch-3.1.2" 132578 sources."ms-2.1.2" 132579 sources."once-1.4.0" ··· 132585 sources."path-is-absolute-1.0.1" 132586 sources."readable-stream-3.6.0" 132587 sources."safe-buffer-5.2.1" 132588 + sources."semver-7.3.6" 132589 sources."string-width-5.1.2" 132590 sources."string_decoder-1.3.0" 132591 sources."strip-ansi-7.0.1" ··· 132612 sources."vscode-languageserver-textdocument-1.0.4" 132613 sources."vscode-languageserver-types-3.16.0" 132614 sources."wrappy-1.0.2" 132615 ]; 132616 buildInputs = globalBuildInputs; 132617 meta = { ··· 132651 sources."commander-7.2.0" 132652 sources."concat-map-0.0.1" 132653 sources."console-control-strings-1.1.0" 132654 + sources."d3-array-3.1.5" 132655 sources."d3-color-3.1.0" 132656 sources."d3-delaunay-6.0.2" 132657 sources."d3-dispatch-3.0.1" ··· 132688 sources."inherits-2.0.4" 132689 sources."internmap-2.0.3" 132690 sources."is-fullwidth-code-point-3.0.0" 132691 + sources."lru-cache-7.8.0" 132692 (sources."make-dir-3.1.0" // { 132693 dependencies = [ 132694 sources."semver-6.3.0" ··· 132714 sources."rw-1.3.3" 132715 sources."safe-buffer-5.2.1" 132716 sources."safer-buffer-2.1.2" 132717 + sources."semver-7.3.6" 132718 sources."set-blocking-2.0.0" 132719 sources."signal-exit-3.0.7" 132720 sources."simple-concat-1.0.1" ··· 132979 dependencies = [ 132980 sources."@babel/code-frame-7.12.11" 132981 sources."@babel/helper-validator-identifier-7.16.7" 132982 + (sources."@babel/highlight-7.17.9" // { 132983 dependencies = [ 132984 sources."chalk-2.4.2" 132985 sources."escape-string-regexp-1.0.5" ··· 133091 sources."lodash-4.17.21" 133092 sources."lodash.merge-4.6.2" 133093 sources."lodash.truncate-4.4.2" 133094 + sources."lru-cache-7.8.0" 133095 sources."minimatch-3.1.2" 133096 sources."minimist-1.2.6" 133097 sources."mkdirp-0.5.6" ··· 133115 sources."resolve-1.22.0" 133116 sources."resolve-from-4.0.0" 133117 sources."rimraf-3.0.2" 133118 + sources."semver-7.3.6" 133119 sources."shebang-command-2.0.0" 133120 sources."shebang-regex-3.0.0" 133121 (sources."slice-ansi-4.0.0" // { ··· 133162 sources."which-2.0.2" 133163 sources."word-wrap-1.2.3" 133164 sources."wrappy-1.0.2" 133165 ]; 133166 buildInputs = globalBuildInputs; 133167 meta = { ··· 133465 sources."denodeify-1.2.1" 133466 sources."diff-5.0.0" 133467 sources."dom-serializer-1.3.2" 133468 + sources."domelementtype-2.3.0" 133469 sources."domhandler-4.3.1" 133470 sources."domutils-2.8.0" 133471 + sources."electron-to-chromium-1.4.106" 133472 sources."emoji-regex-8.0.0" 133473 sources."emojis-list-3.0.0" 133474 sources."enhanced-resolve-5.9.2" ··· 133540 sources."locate-path-6.0.0" 133541 sources."lodash-4.17.21" 133542 sources."log-symbols-4.0.0" 133543 + sources."lru-cache-7.8.0" 133544 (sources."markdown-it-10.0.0" // { 133545 dependencies = [ 133546 sources."argparse-1.0.10" ··· 133650 (sources."ts-loader-8.3.0" // { 133651 dependencies = [ 133652 sources."enhanced-resolve-4.5.0" 133653 + sources."semver-7.3.6" 133654 sources."tapable-1.1.3" 133655 ]; 133656 }) ··· 133677 sources."vscode-debugadapter-testsupport-1.51.0" 133678 sources."vscode-debugprotocol-1.51.0" 133679 sources."watchpack-2.3.1" 133680 + sources."webpack-5.72.0" 133681 (sources."webpack-cli-4.9.2" // { 133682 dependencies = [ 133683 sources."commander-7.2.0" ··· 133699 }) 133700 sources."wrappy-1.0.2" 133701 sources."y18n-5.0.8" 133702 sources."yaml-1.10.2" 133703 (sources."yargs-16.2.0" // { 133704 dependencies = [ ··· 134026 dependencies = [ 134027 sources."@babel/code-frame-7.16.7" 134028 sources."@babel/helper-validator-identifier-7.16.7" 134029 + sources."@babel/highlight-7.17.9" 134030 sources."@emmetio/extract-abbreviation-0.1.6" 134031 sources."@mrmlnc/readdir-enhanced-2.2.1" 134032 sources."@nodelib/fs.stat-1.1.3" ··· 134968 sha512 = "slGcIXCA/j5d2uzQ7flA4/veF0P0eE+Om/Bw7uEO2LC9a3mVNdB+2bSR1CILMjvgyFy9Q9D6eseomQgp7UW5Dg=="; 134969 }; 134970 dependencies = [ 134971 + sources."@babel/runtime-corejs3-7.17.9" 134972 sources."@mapbox/node-pre-gyp-1.0.9" 134973 sources."@tootallnate/once-1.1.2" 134974 sources."@types/raf-3.4.0" ··· 135065 sources."levn-0.3.0" 135066 sources."lodash-4.17.21" 135067 sources."logidrom-0.3.1" 135068 + sources."lru-cache-7.8.0" 135069 (sources."make-dir-3.1.0" // { 135070 dependencies = [ 135071 sources."semver-6.3.0" ··· 135104 sources."safer-buffer-2.1.2" 135105 sources."sax-1.2.4" 135106 sources."saxes-5.0.1" 135107 + sources."semver-7.3.6" 135108 sources."set-blocking-2.0.0" 135109 sources."signal-exit-3.0.7" 135110 sources."simple-concat-1.0.1" ··· 135168 dependencies = [ 135169 sources."@babel/code-frame-7.16.7" 135170 sources."@babel/helper-validator-identifier-7.16.7" 135171 + (sources."@babel/highlight-7.17.9" // { 135172 dependencies = [ 135173 sources."ansi-styles-3.2.1" 135174 sources."chalk-2.4.2" ··· 135296 sources."delayed-stream-1.0.0" 135297 sources."doctrine-3.0.0" 135298 sources."dom-serializer-1.3.2" 135299 + sources."domelementtype-2.3.0" 135300 sources."domhandler-4.3.1" 135301 sources."domutils-2.8.0" 135302 sources."dot-prop-5.3.0" ··· 135459 ]; 135460 }) 135461 sources."jsprim-1.4.2" 135462 + (sources."jszip-3.9.1" // { 135463 dependencies = [ 135464 sources."readable-stream-2.3.7" 135465 sources."safe-buffer-5.1.2" ··· 135623 ]; 135624 }) 135625 sources."signal-exit-3.0.7" 135626 + sources."sonic-boom-2.7.0" 135627 sources."source-map-0.6.1" 135628 sources."source-map-js-1.0.2" 135629 sources."source-map-support-0.5.20" ··· 135716 webpack = nodeEnv.buildNodePackage { 135717 name = "webpack"; 135718 packageName = "webpack"; 135719 + version = "5.72.0"; 135720 src = fetchurl { 135721 + url = "https://registry.npmjs.org/webpack/-/webpack-5.72.0.tgz"; 135722 + sha512 = "qmSmbspI0Qo5ld49htys8GY9XhS9CGqFoHTsOVAnjBdg0Zn79y135R+k4IR4rKK6+eKaabMhJwiVB7xw0SJu5w=="; 135723 }; 135724 dependencies = [ 135725 sources."@types/eslint-8.4.1" ··· 135753 sources."caniuse-lite-1.0.30001325" 135754 sources."chrome-trace-event-1.0.3" 135755 sources."commander-2.20.3" 135756 + sources."electron-to-chromium-1.4.106" 135757 sources."enhanced-resolve-5.9.2" 135758 sources."es-module-lexer-0.9.3" 135759 sources."escalade-3.1.1" ··· 135881 webpack-dev-server = nodeEnv.buildNodePackage { 135882 name = "webpack-dev-server"; 135883 packageName = "webpack-dev-server"; 135884 + version = "4.8.1"; 135885 src = fetchurl { 135886 + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.8.1.tgz"; 135887 + sha512 = "dwld70gkgNJa33czmcj/PlKY/nOy/BimbrgZRaR9vDATBQAYgLzggR0nxDtPLJiLrMgZwbE6RRfJ5vnBBasTyg=="; 135888 }; 135889 dependencies = [ 135890 sources."@leichtgewicht/ip-codec-2.0.3" ··· 136704 sha512 = "0V5CpR62BY1EOevIxXq5BL84YJeIunEzRsFlqb00tc7D77I51/0bvgdGRZhEwhNI2rFxKZ1i77eoisT56gfMTQ=="; 136705 }; 136706 dependencies = [ 136707 + sources."@babel/runtime-7.17.9" 136708 sources."@gar/promisify-1.1.3" 136709 sources."@isaacs/string-locale-compare-1.1.0" 136710 sources."@nodelib/fs.scandir-2.1.5" ··· 136713 (sources."@npmcli/arborist-4.3.1" // { 136714 dependencies = [ 136715 sources."mkdirp-1.0.4" 136716 + sources."semver-7.3.6" 136717 ]; 136718 }) 136719 (sources."@npmcli/fs-1.1.1" // { 136720 dependencies = [ 136721 + sources."semver-7.3.6" 136722 ]; 136723 }) 136724 (sources."@npmcli/git-2.1.0" // { 136725 dependencies = [ 136726 + sources."lru-cache-6.0.0" 136727 sources."mkdirp-1.0.4" 136728 + (sources."semver-7.3.6" // { 136729 + dependencies = [ 136730 + sources."lru-cache-7.8.0" 136731 + ]; 136732 + }) 136733 sources."which-2.0.2" 136734 + sources."yallist-4.0.0" 136735 ]; 136736 }) 136737 sources."@npmcli/installed-package-contents-1.0.7" ··· 136743 }) 136744 (sources."@npmcli/metavuln-calculator-2.0.0" // { 136745 dependencies = [ 136746 + sources."semver-7.3.6" 136747 ]; 136748 }) 136749 (sources."@npmcli/move-file-1.1.2" // { ··· 136830 sources."builtins-1.0.3" 136831 (sources."cacache-15.3.0" // { 136832 dependencies = [ 136833 + sources."lru-cache-6.0.0" 136834 sources."mkdirp-1.0.4" 136835 + sources."yallist-4.0.0" 136836 ]; 136837 }) 136838 (sources."cacheable-request-2.1.4" // { ··· 136899 sources."delegates-1.0.0" 136900 sources."depd-1.1.2" 136901 sources."detect-node-2.1.0" 136902 + sources."dezalgo-1.0.4" 136903 sources."diff-5.0.0" 136904 sources."dir-glob-3.0.1" 136905 sources."dot-prop-4.2.1" ··· 136957 sources."glob-parent-5.1.2" 136958 (sources."global-agent-2.2.0" // { 136959 dependencies = [ 136960 + sources."semver-7.3.6" 136961 ]; 136962 }) 136963 sources."global-dirs-0.1.1" ··· 137110 sources."log-symbols-2.2.0" 137111 sources."loud-rejection-1.6.0" 137112 sources."lowercase-keys-1.0.1" 137113 + sources."lru-cache-7.8.0" 137114 sources."macos-release-2.5.0" 137115 sources."make-dir-1.3.0" 137116 (sources."make-fetch-happen-9.1.0" // { 137117 dependencies = [ 137118 sources."http-cache-semantics-4.1.0" 137119 + sources."lru-cache-6.0.0" 137120 + sources."yallist-4.0.0" 137121 ]; 137122 }) 137123 sources."map-age-cleaner-0.1.3" ··· 137146 sources."mimic-response-1.0.1" 137147 sources."minimatch-3.1.2" 137148 sources."minimist-1.2.6" 137149 + (sources."minipass-3.1.6" // { 137150 + dependencies = [ 137151 + sources."yallist-4.0.0" 137152 + ]; 137153 + }) 137154 sources."minipass-collect-1.0.2" 137155 sources."minipass-fetch-1.4.1" 137156 sources."minipass-flush-1.0.5" 137157 sources."minipass-json-stream-1.0.1" 137158 sources."minipass-pipeline-1.2.4" 137159 sources."minipass-sized-1.0.3" 137160 + (sources."minizlib-2.1.2" // { 137161 + dependencies = [ 137162 + sources."yallist-4.0.0" 137163 + ]; 137164 + }) 137165 sources."mkdirp-0.5.6" 137166 (sources."mkdirp-infer-owner-2.0.0" // { 137167 dependencies = [ ··· 137182 sources."is-fullwidth-code-point-3.0.0" 137183 sources."npmlog-6.0.1" 137184 sources."readable-stream-3.6.0" 137185 + sources."semver-7.3.6" 137186 sources."string-width-4.2.3" 137187 sources."strip-ansi-6.0.1" 137188 sources."which-2.0.2" ··· 137196 sources."npm-conf-1.1.3" 137197 (sources."npm-install-checks-4.0.0" // { 137198 dependencies = [ 137199 + sources."semver-7.3.6" 137200 ]; 137201 }) 137202 (sources."npm-keyword-5.0.0" // { ··· 137213 (sources."npm-package-arg-8.1.5" // { 137214 dependencies = [ 137215 sources."hosted-git-info-4.1.0" 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" 137223 ]; 137224 }) 137225 sources."npm-packlist-3.0.0" 137226 (sources."npm-pick-manifest-6.1.1" // { 137227 dependencies = [ 137228 + sources."semver-7.3.6" 137229 ]; 137230 }) 137231 (sources."npm-registry-fetch-12.0.2" // { 137232 dependencies = [ 137233 sources."@npmcli/fs-2.1.0" 137234 + sources."@npmcli/move-file-2.0.0" 137235 sources."@tootallnate/once-2.0.0" 137236 + sources."cacache-16.0.4" 137237 sources."debug-4.3.4" 137238 sources."http-cache-semantics-4.1.0" 137239 sources."http-proxy-agent-5.0.0" 137240 (sources."make-fetch-happen-10.1.2" // { 137241 dependencies = [ 137242 sources."minipass-fetch-2.1.0" ··· 137244 }) 137245 sources."mkdirp-1.0.4" 137246 sources."ms-2.1.2" 137247 + sources."semver-7.3.6" 137248 sources."ssri-9.0.0" 137249 ]; 137250 }) ··· 137521 (sources."tar-6.1.11" // { 137522 dependencies = [ 137523 sources."mkdirp-1.0.4" 137524 + sources."yallist-4.0.0" 137525 ]; 137526 }) 137527 (sources."term-size-1.2.0" // { ··· 137530 sources."execa-0.7.0" 137531 sources."get-stream-3.0.0" 137532 sources."lru-cache-4.1.5" 137533 ]; 137534 }) 137535 sources."text-table-0.2.0" ··· 137605 sources."wrappy-1.0.2" 137606 sources."write-file-atomic-2.4.3" 137607 sources."xdg-basedir-3.0.0" 137608 + sources."yallist-2.1.2" 137609 (sources."yeoman-character-1.1.0" // { 137610 dependencies = [ 137611 sources."has-flag-1.0.0" ··· 137654 sources."readable-stream-3.6.0" 137655 sources."restore-cursor-3.1.0" 137656 sources."rxjs-7.5.5" 137657 + sources."semver-7.3.6" 137658 sources."shebang-command-2.0.0" 137659 sources."shebang-regex-3.0.0" 137660 sources."string-width-4.2.3" ··· 137746 sources."through-2.3.8" 137747 sources."to-regex-range-5.0.1" 137748 sources."universalify-2.0.0" 137749 + sources."web-streams-polyfill-3.2.1" 137750 sources."which-2.0.2" 137751 sources."yaml-1.10.2" 137752 ];
+2 -2
pkgs/development/php-packages/phpstan/default.nix
··· 1 { mkDerivation, fetchurl, makeWrapper, lib, php }: 2 let 3 pname = "phpstan"; 4 - version = "1.5.3"; 5 in 6 mkDerivation { 7 inherit pname version; 8 9 src = fetchurl { 10 url = "https://github.com/phpstan/phpstan/releases/download/${version}/phpstan.phar"; 11 - sha256 = "sha256-tIVzXxOyHVz2AE0PjQdkQ+uevdSqsjBRIZQWVDwzuKg="; 12 }; 13 14 dontUnpack = true;
··· 1 { mkDerivation, fetchurl, makeWrapper, lib, php }: 2 let 3 pname = "phpstan"; 4 + version = "1.5.4"; 5 in 6 mkDerivation { 7 inherit pname version; 8 9 src = fetchurl { 10 url = "https://github.com/phpstan/phpstan/releases/download/${version}/phpstan.phar"; 11 + sha256 = "sha256-6dXYrDpQ3E+z8mcZof7GSXOrUMoceuPTHO21Z8l4Wyw="; 12 }; 13 14 dontUnpack = true;
+2 -2
pkgs/development/php-packages/xdebug/default.nix
··· 3 buildPecl { 4 pname = "xdebug"; 5 6 - version = "3.1.3"; 7 - sha256 = "sha256-N9CmcBlV9bNAbGwye3cCvXwhRi5lbztMziSgUlgBPU4="; 8 9 doCheck = true; 10 checkTarget = "test";
··· 3 buildPecl { 4 pname = "xdebug"; 5 6 + version = "3.1.4"; 7 + sha256 = "sha256-QZWSb59sToAv90m7LKhaxQY2cZpy5TieNy4171I1Bfk="; 8 9 doCheck = true; 10 checkTarget = "test";
+9 -3
pkgs/development/python-modules/Theano/default.nix
··· 11 , setuptools 12 , six 13 , libgpuarray 14 - , cudaSupport ? false, cudatoolkit 15 - , cudnnSupport ? false, cudnn 16 }: 17 18 assert cudnnSupport -> cudaSupport; 19 ··· 39 ( lib.optional cudaSupport libgpuarray_ 40 ++ lib.optional cudnnSupport cudnn ); 41 42 - libgpuarray_ = libgpuarray.override { inherit cudaSupport cudatoolkit; }; 43 44 in buildPythonPackage rec { 45 pname = "Theano";
··· 11 , setuptools 12 , six 13 , libgpuarray 14 + , cudaSupport ? false, cudaPackages ? {} 15 + , cudnnSupport ? false 16 }: 17 + 18 + let 19 + inherit (cudaPackages) cudatoolkit cudnn; 20 + in 21 22 assert cudnnSupport -> cudaSupport; 23 ··· 43 ( lib.optional cudaSupport libgpuarray_ 44 ++ lib.optional cudnnSupport cudnn ); 45 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; }; 49 50 in buildPythonPackage rec { 51 pname = "Theano";
+4 -6
pkgs/development/python-modules/cupy/default.nix
··· 1 { lib, buildPythonPackage 2 , fetchPypi, isPy3k, cython 3 , fastrlock, numpy, six, wheel, pytestCheckHook, mock, setuptools 4 - , cudatoolkit, cudnn, cutensor, nccl 5 , addOpenGLRunpath 6 }: 7 8 - assert cudnn.cudatoolkit == cudatoolkit; 9 - assert cutensor.cudatoolkit == cudatoolkit; 10 - assert nccl.cudatoolkit == cudatoolkit; 11 - 12 - buildPythonPackage rec { 13 pname = "cupy"; 14 version = "10.2.0"; 15 disabled = !isPy3k;
··· 1 { lib, buildPythonPackage 2 , fetchPypi, isPy3k, cython 3 , fastrlock, numpy, six, wheel, pytestCheckHook, mock, setuptools 4 + , cudaPackages 5 , addOpenGLRunpath 6 }: 7 8 + let 9 + inherit (cudaPackages) cudatoolkit cudnn cutensor nccl; 10 + in buildPythonPackage rec { 11 pname = "cupy"; 12 version = "10.2.0"; 13 disabled = !isPy3k;
+8
pkgs/development/python-modules/fipy/default.nix
··· 39 ] ++ lib.optionals isPy27 [ pysparse ] 40 ++ lib.optionals (!stdenv.isDarwin) [ gmsh ]; 41 42 checkPhase = '' 43 export OMPI_MCA_plm_rsh_agent=${openssh}/bin/ssh 44 ${python.interpreter} setup.py test --modules
··· 39 ] ++ lib.optionals isPy27 [ pysparse ] 40 ++ lib.optionals (!stdenv.isDarwin) [ gmsh ]; 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 + 50 checkPhase = '' 51 export OMPI_MCA_plm_rsh_agent=${openssh}/bin/ssh 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 14 buildPythonPackage rec { 15 pname = "globus-sdk"; 16 - version = "3.6.0"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.6"; ··· 21 src = fetchFromGitHub { 22 owner = "globus"; 23 repo = "globus-sdk-python"; 24 - rev = version; 25 - hash = "sha256-SBLQ+uSZE8YkT+fQWIKGlfhocJXX5k9kSejAbjazjM8="; 26 }; 27 28 propagatedBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "globus-sdk"; 16 + version = "3.7.0"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.6"; ··· 21 src = fetchFromGitHub { 22 owner = "globus"; 23 repo = "globus-sdk-python"; 24 + rev = "refs/tags/${version}"; 25 + hash = "sha256-Us3SCkrBPL3v9YCOQ7ceF3neCUZkJTrchYsvCRSX84Y="; 26 }; 27 28 propagatedBuildInputs = [
+8 -4
pkgs/development/python-modules/jaxlib/bin.nix
··· 18 , autoPatchelfHook 19 , buildPythonPackage 20 , config 21 - , cudatoolkit_11 22 , cudnn 23 , fetchurl 24 , flatbuffers ··· 29 , stdenv 30 # Options: 31 , cudaSupport ? config.cudaSupport or false 32 }: 33 34 # There are no jaxlib wheels targeting cudnn <8.0.5, and although there are 35 # wheels for cudatoolkit <11.1, we don't support them. 36 - assert cudaSupport -> lib.versionAtLeast cudatoolkit_11.version "11.1"; 37 assert cudaSupport -> lib.versionAtLeast cudnn.version "8.0.5"; 38 39 let ··· 116 rpath=$(patchelf --print-rpath $file) 117 # For some reason `makeLibraryPath` on `cudatoolkit_11` maps to 118 # <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 120 done 121 ''; 122 ··· 127 # more info. 128 postInstall = lib.optional cudaSupport '' 129 mkdir -p $out/bin 130 - ln -s ${cudatoolkit_11}/bin/ptxas $out/bin/ptxas 131 ''; 132 133 pythonImportsCheck = [ "jaxlib" ];
··· 18 , autoPatchelfHook 19 , buildPythonPackage 20 , config 21 , cudnn 22 , fetchurl 23 , flatbuffers ··· 28 , stdenv 29 # Options: 30 , cudaSupport ? config.cudaSupport or false 31 + , cudaPackages ? {} 32 }: 33 34 + let 35 + inherit (cudaPackages) cudatoolkit cudnn; 36 + in 37 + 38 # There are no jaxlib wheels targeting cudnn <8.0.5, and although there are 39 # wheels for cudatoolkit <11.1, we don't support them. 40 + assert cudaSupport -> lib.versionAtLeast cudatoolkit.version "11.1"; 41 assert cudaSupport -> lib.versionAtLeast cudnn.version "8.0.5"; 42 43 let ··· 120 rpath=$(patchelf --print-rpath $file) 121 # For some reason `makeLibraryPath` on `cudatoolkit_11` maps to 122 # <cudatoolkit_11.lib>/lib which is different from <cudatoolkit_11>/lib. 123 + patchelf --set-rpath "$rpath:${cudatoolkit}/lib:${lib.makeLibraryPath [ cudatoolkit.lib cudnn ]}" $file 124 done 125 ''; 126 ··· 131 # more info. 132 postInstall = lib.optional cudaSupport '' 133 mkdir -p $out/bin 134 + ln -s ${cudatoolkit}/bin/ptxas $out/bin/ptxas 135 ''; 136 137 pythonImportsCheck = [ "jaxlib" ];
+3 -5
pkgs/development/python-modules/jaxlib/default.nix
··· 18 , wheel 19 , which 20 21 - # Build-time and runtime CUDA dependencies: 22 - , cudatoolkit ? null 23 - , cudnn ? null 24 - , nccl ? null 25 - 26 # Python dependencies: 27 , absl-py 28 , flatbuffers ··· 42 # CUDA flags: 43 , cudaCapabilities ? [ "sm_35" "sm_50" "sm_60" "sm_70" "sm_75" "compute_80" ] 44 , cudaSupport ? false 45 46 # MKL: 47 , mklSupport ? true 48 }: 49 50 let 51 52 pname = "jaxlib"; 53 version = "0.3.0";
··· 18 , wheel 19 , which 20 21 # Python dependencies: 22 , absl-py 23 , flatbuffers ··· 37 # CUDA flags: 38 , cudaCapabilities ? [ "sm_35" "sm_50" "sm_60" "sm_70" "sm_75" "compute_80" ] 39 , cudaSupport ? false 40 + , cudaPackages ? {} 41 42 # MKL: 43 , mklSupport ? true 44 }: 45 46 let 47 + 48 + inherit (cudaPackages) cudatoolkit cudnn nccl; 49 50 pname = "jaxlib"; 51 version = "0.3.0";
+2 -2
pkgs/development/python-modules/libgpuarray/default.nix
··· 9 , six 10 , nose 11 , Mako 12 - , cudaSupport ? false, cudatoolkit 13 , openclSupport ? true, ocl-icd, clblas 14 }: 15 ··· 30 configurePhase = "cmakeConfigurePhase"; 31 32 libraryPath = lib.makeLibraryPath ( 33 - lib.optionals cudaSupport [ cudatoolkit.lib cudatoolkit.out ] 34 ++ lib.optionals openclSupport ([ clblas ] ++ lib.optional (!stdenv.isDarwin) ocl-icd) 35 ); 36
··· 9 , six 10 , nose 11 , Mako 12 + , cudaSupport ? false, cudaPackages 13 , openclSupport ? true, ocl-icd, clblas 14 }: 15 ··· 30 configurePhase = "cmakeConfigurePhase"; 31 32 libraryPath = lib.makeLibraryPath ( 33 + lib.optionals cudaSupport (with cudaPackages; [ cudatoolkit.lib cudatoolkit.out ]) 34 ++ lib.optionals openclSupport ([ clblas ] ++ lib.optional (!stdenv.isDarwin) ocl-icd) 35 ); 36
+5 -2
pkgs/development/python-modules/numba/default.nix
··· 13 14 # CUDA-only dependencies: 15 , addOpenGLRunpath ? null 16 - , cudatoolkit ? null 17 18 # CUDA flags: 19 , cudaSupport ? false 20 }: 21 - buildPythonPackage rec { 22 version = "0.55.1"; 23 pname = "numba"; 24 disabled = pythonOlder "3.6" || pythonAtLeast "3.10";
··· 13 14 # CUDA-only dependencies: 15 , addOpenGLRunpath ? null 16 + , cudaPackages ? {} 17 18 # CUDA flags: 19 , cudaSupport ? false 20 }: 21 + 22 + let 23 + inherit (cudaPackages) cudatoolkit; 24 + in buildPythonPackage rec { 25 version = "0.55.1"; 26 pname = "numba"; 27 disabled = pythonOlder "3.6" || pythonAtLeast "3.10";
+2 -2
pkgs/development/python-modules/pex/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "pex"; 10 - version = "2.1.77"; 11 format = "flit"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - hash = "sha256-lvzRb+m3a3DmimzVIroobJaNe2PuMoadb48YwhxCVvA="; 18 }; 19 20 nativeBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "pex"; 10 + version = "2.1.78"; 11 format = "flit"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-1bWAEMMBjmyLS1W+VWgD9BsZq5f0DmEOQryXH9vupCY="; 18 }; 19 20 nativeBuildInputs = [
+3 -1
pkgs/development/python-modules/pycuda/default.nix
··· 10 , decorator 11 , appdirs 12 , six 13 - , cudatoolkit 14 , python 15 , mkDerivation 16 , lib ··· 19 compyte = import ./compyte.nix { 20 inherit mkDerivation fetchFromGitHub; 21 }; 22 in 23 buildPythonPackage rec { 24 pname = "pycuda";
··· 10 , decorator 11 , appdirs 12 , six 13 + , cudaPackages 14 , python 15 , mkDerivation 16 , lib ··· 19 compyte = import ./compyte.nix { 20 inherit mkDerivation fetchFromGitHub; 21 }; 22 + 23 + inherit (cudaPackages) cudatoolkit; 24 in 25 buildPythonPackage rec { 26 pname = "pycuda";
+8 -4
pkgs/development/python-modules/python-binance/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "python-binance"; 17 - version = "1.0.10"; 18 disabled = pythonOlder "3.6"; 19 20 src = fetchFromGitHub { 21 owner = "sammchardy"; 22 repo = pname; 23 - rev = "v${version}"; 24 - sha256 = "09pq2blvky1ah4k8yc6zkp2g5nkn3awc52ad3lxvj6m33akfzxiv"; 25 }; 26 27 propagatedBuildInputs = [ ··· 44 "tests/test_historical_klines.py" 45 ]; 46 47 - pythonImportsCheck = [ "binance" ]; 48 49 meta = with lib; { 50 description = "Binance Exchange API python implementation for automated trading";
··· 14 15 buildPythonPackage rec { 16 pname = "python-binance"; 17 + version = "1.0.16"; 18 + format = "setuptools"; 19 + 20 disabled = pythonOlder "3.6"; 21 22 src = fetchFromGitHub { 23 owner = "sammchardy"; 24 repo = pname; 25 + rev = "refs/tags/v${version}"; 26 + hash = "sha256-2v3qeykjQR/CUOC6F0Xomm49Q+wrYJS8vmL3+u6ew0M="; 27 }; 28 29 propagatedBuildInputs = [ ··· 46 "tests/test_historical_klines.py" 47 ]; 48 49 + pythonImportsCheck = [ 50 + "binance" 51 + ]; 52 53 meta = with lib; { 54 description = "Binance Exchange API python implementation for automated trading";
+6 -2
pkgs/development/python-modules/pytorch/default.nix
··· 1 { stdenv, lib, fetchFromGitHub, fetchpatch, buildPythonPackage, python, 2 - cudaSupport ? false, cudatoolkit, cudnn, nccl, magma, 3 mklDnnSupport ? true, useSystemNccl ? true, 4 MPISupport ? false, mpi, 5 buildDocs ? false, ··· 28 pillow, six, future, tensorboard, protobuf, 29 30 isPy3k, pythonOlder }: 31 32 # assert that everything needed for cuda is present and that the correct cuda versions are used 33 assert !cudaSupport || (let majorIs = lib.versions.major cudatoolkit.version; ··· 300 requiredSystemFeatures = [ "big-parallel" ]; 301 302 passthru = { 303 - inherit cudaSupport; 304 cudaArchList = final_cudaArchList; 305 # 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 blasProvider = blas.provider;
··· 1 { stdenv, lib, fetchFromGitHub, fetchpatch, buildPythonPackage, python, 2 + cudaSupport ? false, cudaPackages, magma, 3 mklDnnSupport ? true, useSystemNccl ? true, 4 MPISupport ? false, mpi, 5 buildDocs ? false, ··· 28 pillow, six, future, tensorboard, protobuf, 29 30 isPy3k, pythonOlder }: 31 + 32 + let 33 + inherit (cudaPackages) cudatoolkit cudnn nccl; 34 + in 35 36 # assert that everything needed for cuda is present and that the correct cuda versions are used 37 assert !cudaSupport || (let majorIs = lib.versions.major cudatoolkit.version; ··· 304 requiredSystemFeatures = [ "big-parallel" ]; 305 306 passthru = { 307 + inherit cudaSupport cudaPackages; 308 cudaArchList = final_cudaArchList; 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. 310 blasProvider = blas.provider;
+2 -2
pkgs/development/python-modules/sabyenc3/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "sabyenc3"; 9 - version = "5.1.6"; 10 format = "setuptools"; 11 12 disabled = pythonOlder "3.7"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-DHHil9ZQsrKLgw5dje0Yo1J5FZAFrY1tn5y3mdBJHWg="; 17 }; 18 19 # Tests are not included in pypi distribution
··· 6 7 buildPythonPackage rec { 8 pname = "sabyenc3"; 9 + version = "5.1.7"; 10 format = "setuptools"; 11 12 disabled = pythonOlder "3.7"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-pewB7JAQ/4KitGFrHX52Gn02my/bOcQCz79cwh6vElk="; 17 }; 18 19 # Tests are not included in pypi distribution
+2 -2
pkgs/development/python-modules/stripe/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "stripe"; 10 - version = "2.70.0"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - hash = "sha256-7YiX9o5rrDOYzJmOtWNFUYQGMNZQTAAm/P0K2RyadKQ="; 18 }; 19 20 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "stripe"; 10 + version = "2.71.0"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-38AE/EOfylmYsVVBTyq46Ou3WJ5LdJJlP0usgQCDYcM="; 18 }; 19 20 propagatedBuildInputs = [
+6 -2
pkgs/development/python-modules/tensorflow/bin.nix
··· 20 , tensorflow-estimator 21 , tensorboard 22 , cudaSupport ? false 23 - , cudatoolkit 24 - , cudnn 25 , patchelfUnstable 26 , zlib 27 , python ··· 43 44 let 45 packages = import ./binary-hashes.nix; 46 in buildPythonPackage { 47 pname = "tensorflow" + lib.optionalString cudaSupport "-gpu"; 48 inherit (packages) version; ··· 181 "tensorflow.python" 182 "tensorflow.python.framework" 183 ]; 184 185 meta = with lib; { 186 description = "Computation using data flow graphs for scalable machine learning";
··· 20 , tensorflow-estimator 21 , tensorboard 22 , cudaSupport ? false 23 + , cudaPackages ? {} 24 , patchelfUnstable 25 , zlib 26 , python ··· 42 43 let 44 packages = import ./binary-hashes.nix; 45 + inherit (cudaPackages) cudatoolkit cudnn; 46 in buildPythonPackage { 47 pname = "tensorflow" + lib.optionalString cudaSupport "-gpu"; 48 inherit (packages) version; ··· 181 "tensorflow.python" 182 "tensorflow.python.framework" 183 ]; 184 + 185 + passthru = { 186 + inherit cudaPackages; 187 + }; 188 189 meta = with lib; { 190 description = "Computation using data flow graphs for scalable machine learning";
+6 -1
pkgs/development/python-modules/tensorflow/default.nix
··· 17 # that in nix as well. It would make some things easier and less confusing, but 18 # it would also make the default tensorflow package unfree. See 19 # https://groups.google.com/a/tensorflow.org/forum/#!topic/developers/iRCt5m4qUz0 20 - , cudaSupport ? false, cudatoolkit ? null, cudnn ? null, nccl ? null 21 , mklSupport ? false, mkl ? null 22 , tensorboardSupport ? true 23 # XLA without CUDA is broken ··· 30 # Darwin deps 31 , Foundation, Security, cctools, llvmPackages_11 32 }: 33 34 assert cudaSupport -> cudatoolkit != null 35 && cudnn != null; ··· 514 # Regression test for #77626 removed because not more `tensorflow.contrib`. 515 516 passthru = { 517 deps = bazel-build.deps; 518 libtensorflow = bazel-build.out; 519 };
··· 17 # that in nix as well. It would make some things easier and less confusing, but 18 # it would also make the default tensorflow package unfree. See 19 # https://groups.google.com/a/tensorflow.org/forum/#!topic/developers/iRCt5m4qUz0 20 + , cudaSupport ? false, cudaPackages ? {} 21 , mklSupport ? false, mkl ? null 22 , tensorboardSupport ? true 23 # XLA without CUDA is broken ··· 30 # Darwin deps 31 , Foundation, Security, cctools, llvmPackages_11 32 }: 33 + 34 + let 35 + inherit (cudaPackages) cudatoolkit cudnn nccl; 36 + in 37 38 assert cudaSupport -> cudatoolkit != null 39 && cudnn != null; ··· 518 # Regression test for #77626 removed because not more `tensorflow.contrib`. 519 520 passthru = { 521 + inherit cudaPackages; 522 deps = bazel-build.deps; 523 libtensorflow = bazel-build.out; 524 };
+2 -2
pkgs/development/python-modules/torchvision/default.nix
··· 11 , pillow 12 , pytorch 13 , pytest 14 - , cudatoolkit 15 - , cudnn 16 , cudaSupport ? pytorch.cudaSupport or false # by default uses the value from pytorch 17 }: 18 19 let 20 cudatoolkit_joined = symlinkJoin { 21 name = "${cudatoolkit.name}-unsplit"; 22 paths = [ cudatoolkit.out cudatoolkit.lib ];
··· 11 , pillow 12 , pytorch 13 , pytest 14 , cudaSupport ? pytorch.cudaSupport or false # by default uses the value from pytorch 15 }: 16 17 let 18 + inherit (pytorch.cudaPackages) cudatoolkit cudnn; 19 + 20 cudatoolkit_joined = symlinkJoin { 21 name = "${cudatoolkit.name}-unsplit"; 22 paths = [ cudatoolkit.out cudatoolkit.lib ];
+2 -2
pkgs/development/tools/pipenv/default.nix
··· 19 20 in buildPythonApplication rec { 21 pname = "pipenv"; 22 - version = "2022.3.28"; 23 24 src = fetchPypi { 25 inherit pname version; 26 - sha256 = "sha256-TnquYtrXZ5zoG1TMNFG+GfssRp4mkzWzaxQTL+XO7LM="; 27 }; 28 29 LC_ALL = "en_US.UTF-8";
··· 19 20 in buildPythonApplication rec { 21 pname = "pipenv"; 22 + version = "2022.4.8"; 23 24 src = fetchPypi { 25 inherit pname version; 26 + sha256 = "sha256-U1Yr9p2eUjj5mh4hAcNWdGscCu+l3OubioSlo+IB3g0="; 27 }; 28 29 LC_ALL = "en_US.UTF-8";
+3 -3
pkgs/development/tools/regclient/default.nix
··· 4 5 buildGoModule rec { 6 pname = "regclient"; 7 - version = "0.3.10"; 8 tag = "v${version}"; 9 10 src = fetchFromGitHub { 11 owner = "regclient"; 12 repo = "regclient"; 13 rev = tag; 14 - sha256 = "sha256-3nYVhKHNz0V0j6JlZ5Dm5TFWA2kmUhshNVUym/QWSyM="; 15 }; 16 - vendorSha256 = "sha256-rj4sQ8Ci2KMayJNXn+KVihOiZehk233l48Ps0yjOOE4="; 17 18 outputs = [ "out" ] ++ bins; 19
··· 4 5 buildGoModule rec { 6 pname = "regclient"; 7 + version = "0.4.0"; 8 tag = "v${version}"; 9 10 src = fetchFromGitHub { 11 owner = "regclient"; 12 repo = "regclient"; 13 rev = tag; 14 + sha256 = "sha256-AaSl++/i00YAvmvaUSEwLLpItYACtmWEFTuUngl7rkI="; 15 }; 16 + vendorSha256 = "sha256-qpZ3RsBOkWqLCDK11vBGkAZJBC7T8hmpmm4ccGeWBus="; 17 18 outputs = [ "out" ] ++ bins; 19
+9 -20
pkgs/development/tools/rust/bindgen/unwrapped.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, clang, rustfmt, writeTextFile 2 , runtimeShell 3 , bash 4 }: 5 - 6 - rustPlatform.buildRustPackage rec { 7 pname = "rust-bindgen-unwrapped"; 8 version = "0.59.2"; 9 ··· 25 ''; 26 27 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 - ]; 45 preCheck = '' 46 # for the ci folder, notably 47 patchShebangs .
··· 1 + { lib, fetchFromGitHub, rustPlatform, clang, rustfmt 2 , runtimeShell 3 , bash 4 }: 5 + let 6 + # bindgen hardcodes rustfmt outputs that use nightly features 7 + rustfmt-nightly = rustfmt.override { asNightly = true; }; 8 + in rustPlatform.buildRustPackage rec { 9 pname = "rust-bindgen-unwrapped"; 10 version = "0.59.2"; 11 ··· 27 ''; 28 29 doCheck = true; 30 + checkInputs = [ clang ]; 31 + 32 + RUSTFMT = "${rustfmt-nightly}/bin/rustfmt"; 33 + 34 preCheck = '' 35 # for the ci folder, notably 36 patchShebangs .
+3 -4
pkgs/games/katago/default.nix
··· 1 { stdenv 2 , boost 3 , cmake 4 - , cudatoolkit 5 - , cudnn 6 , eigen 7 , fetchFromGitHub 8 , gperftools ··· 52 ] ++ lib.optionals (!enableGPU) [ 53 eigen 54 ] ++ lib.optionals (enableGPU && enableCuda) [ 55 - cudnn 56 mesa.drivers 57 ] ++ lib.optionals (enableGPU && !enableCuda) [ 58 opencl-headers ··· 86 preConfigure = '' 87 cd cpp/ 88 '' + lib.optionalString enableCuda '' 89 - export CUDA_PATH="${cudatoolkit}" 90 export EXTRA_LDFLAGS="-L/run/opengl-driver/lib" 91 ''; 92
··· 1 { stdenv 2 , boost 3 , cmake 4 + , cudaPackages 5 , eigen 6 , fetchFromGitHub 7 , gperftools ··· 51 ] ++ lib.optionals (!enableGPU) [ 52 eigen 53 ] ++ lib.optionals (enableGPU && enableCuda) [ 54 + cudaPackages.cudnn 55 mesa.drivers 56 ] ++ lib.optionals (enableGPU && !enableCuda) [ 57 opencl-headers ··· 85 preConfigure = '' 86 cd cpp/ 87 '' + lib.optionalString enableCuda '' 88 + export CUDA_PATH="${cudaPackages.cudatoolkit}" 89 export EXTRA_LDFLAGS="-L/run/opengl-driver/lib" 90 ''; 91
+6 -3
pkgs/servers/web-apps/wiki-js/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "wiki-js"; 5 - version = "2.5.276"; 6 7 src = fetchurl { 8 url = "https://github.com/Requarks/wiki/releases/download/v${version}/${pname}.tar.gz"; 9 - sha256 = "sha256-ulx3/yj5wxmHsep0+93xpy6VeQJkMXRjGd/xx2F1zII="; 10 }; 11 12 sourceRoot = "."; ··· 21 runHook postInstall 22 ''; 23 24 - passthru.tests = { inherit (nixosTests) wiki-js; }; 25 26 meta = with lib; { 27 homepage = "https://js.wiki/";
··· 2 3 stdenv.mkDerivation rec { 4 pname = "wiki-js"; 5 + version = "2.5.277"; 6 7 src = fetchurl { 8 url = "https://github.com/Requarks/wiki/releases/download/v${version}/${pname}.tar.gz"; 9 + sha256 = "sha256-YLw0DR4dbPfNY56lNybEQFXFEVPZ99sQkwDl6gtz40E="; 10 }; 11 12 sourceRoot = "."; ··· 21 runHook postInstall 22 ''; 23 24 + passthru = { 25 + tests = { inherit (nixosTests) wiki-js; }; 26 + updateScript = ./update.sh; 27 + }; 28 29 meta = with lib; { 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 { lib, stdenv, fetchFromGitHub 2 , cmake, addOpenGLRunpath 3 , cudatoolkit 4 - , cutensor_cudatoolkit 5 }: 6 7 let ··· 61 # CUTENSOR_ROOT is double escaped 62 postPatch = '' 63 substituteInPlace CMakeLists.txt \ 64 - --replace "\''${CUTENSOR_ROOT}/include" "${cutensor_cudatoolkit.dev}/include" 65 ''; 66 67 - CUTENSOR_ROOT = cutensor_cudatoolkit; 68 }); 69 }
··· 1 { lib, stdenv, fetchFromGitHub 2 , cmake, addOpenGLRunpath 3 , cudatoolkit 4 + , cutensor 5 }: 6 7 let ··· 61 # CUTENSOR_ROOT is double escaped 62 postPatch = '' 63 substituteInPlace CMakeLists.txt \ 64 + --replace "\''${CUTENSOR_ROOT}/include" "${cutensor.dev}/include" 65 ''; 66 67 + CUTENSOR_ROOT = cutensor; 68 }); 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 3 buildGoModule rec { 4 pname = "eksctl"; 5 - version = "0.91.0"; 6 7 src = fetchFromGitHub { 8 owner = "weaveworks"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-Hz/joHOzy71ZtbpoTjomccSgc49VyWACTC9EwSiDpzc="; 12 }; 13 14 - vendorSha256 = "sha256-rkEVtIHXD5lXj8r89vhoWhJZF3unvwB43Zz3jBHRjYU="; 15 16 doCheck = false; 17 ··· 29 nativeBuildInputs = [ installShellFiles ]; 30 31 postInstall = '' 32 - for shell in bash fish zsh; do 33 - $out/bin/eksctl completion $shell > eksctl.$shell 34 - installShellCompletion eksctl.$shell 35 - done 36 ''; 37 38 meta = with lib; {
··· 2 3 buildGoModule rec { 4 pname = "eksctl"; 5 + version = "0.92.0"; 6 7 src = fetchFromGitHub { 8 owner = "weaveworks"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-CsOR5S2FpIE/T1N/wLzXs5ltuLkice0YRKgdZUTz3ic="; 12 }; 13 14 + vendorSha256 = "sha256-gNmIBjGG/EieNNjC7XLOD/SXQm96kRxbiT2JmdaPrh4="; 15 16 doCheck = false; 17 ··· 29 nativeBuildInputs = [ installShellFiles ]; 30 31 postInstall = '' 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 ''; 37 38 meta = with lib; {
+2 -2
pkgs/tools/misc/yad/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "yad"; 6 - version = "10.1"; 7 8 src = fetchFromGitHub { 9 owner = "v1cont"; 10 repo = "yad"; 11 rev = "v${version}"; 12 - sha256 = "sha256-k41Z3QVGm7JUR1ny0vJKLxakabK9Da5qCnrPUHvAkWE="; 13 }; 14 15 configureFlags = [
··· 3 4 stdenv.mkDerivation rec { 5 pname = "yad"; 6 + version = "11.0"; 7 8 src = fetchFromGitHub { 9 owner = "v1cont"; 10 repo = "yad"; 11 rev = "v${version}"; 12 + sha256 = "sha256-I+3euq3qel9VCDVf0Bd4XdMOCt+g/CYlnnje50lbRr8="; 13 }; 14 15 configureFlags = [
+2 -2
pkgs/tools/networking/godns/default.nix
··· 2 3 buildGoModule rec { 4 pname = "godns"; 5 - version = "2.7.1"; 6 7 src = fetchFromGitHub { 8 owner = "TimothyYe"; 9 repo = "godns"; 10 rev = "v${version}"; 11 - sha256 = "sha256-4PkG8u0wYHHFWR9s4s08tkeBbXdxTUv48HRZsSraNak="; 12 }; 13 14 vendorSha256 = "sha256-vhByl9oJjFIvOskAgLubZ5RCcitKd2jjxi8D9nU6850=";
··· 2 3 buildGoModule rec { 4 pname = "godns"; 5 + version = "2.7.3"; 6 7 src = fetchFromGitHub { 8 owner = "TimothyYe"; 9 repo = "godns"; 10 rev = "v${version}"; 11 + sha256 = "sha256-4QWcccJHvytZmWZJnPcI8W6pQCWgXz0FkTe8sX54Cbk="; 12 }; 13 14 vendorSha256 = "sha256-vhByl9oJjFIvOskAgLubZ5RCcitKd2jjxi8D9nU6850=";
+11 -4
pkgs/tools/networking/pmacct/default.nix
··· 11 , withNflog ? true, libnetfilter_log 12 , withSQLite ? true, sqlite 13 , withPgSQL ? true, postgresql 14 - , withMysql ? true, libmysqlclient, zlib 15 , gnutlsSupport ? false, gnutls 16 }: 17 18 stdenv.mkDerivation rec { 19 - version = "1.7.6"; 20 pname = "pmacct"; 21 22 src = fetchFromGitHub { 23 owner = "pmacct"; 24 repo = "pmacct"; 25 rev = "v${version}"; 26 - sha256 = "0x1i75hwz44siqvn4i58jgji0zwrqgn6ayv89s9m9nh3b423nsiv"; 27 }; 28 29 nativeBuildInputs = [ ··· 38 ++ lib.optional withNflog libnetfilter_log 39 ++ lib.optional withSQLite sqlite 40 ++ lib.optional withPgSQL postgresql 41 - ++ lib.optionals withMysql [ libmysqlclient zlib ] 42 ++ lib.optional gnutlsSupport gnutls; 43 44 MYSQL_CONFIG = lib.optionalString withMysql "${lib.getDev libmysqlclient}/bin/mysql_config"; ··· 52 ++ lib.optional withMysql "--enable-mysql" 53 ++ lib.optional gnutlsSupport "--enable-gnutls"; 54 55 meta = with lib; { 56 description = "A small set of multi-purpose passive network monitoring tools"; 57 longDescription = '' ··· 59 [NetFlow IPFIX sFlow libpcap BGP BMP RPKI IGP Streaming Telemetry] 60 ''; 61 homepage = "http://www.pmacct.net/"; 62 license = licenses.gpl2; 63 maintainers = with maintainers; [ _0x4A6F ]; 64 platforms = platforms.unix;
··· 11 , withNflog ? true, libnetfilter_log 12 , withSQLite ? true, sqlite 13 , withPgSQL ? true, postgresql 14 + , withMysql ? true, libmysqlclient, zlib, numactl 15 , gnutlsSupport ? false, gnutls 16 + , testVersion 17 + , pmacct 18 }: 19 20 stdenv.mkDerivation rec { 21 + version = "1.7.7"; 22 pname = "pmacct"; 23 24 src = fetchFromGitHub { 25 owner = "pmacct"; 26 repo = "pmacct"; 27 rev = "v${version}"; 28 + sha256 = "1pjaa44qj3y5dfwsd1a9r7a4riy7afza8phx2npcsyyarssxc63w"; 29 }; 30 31 nativeBuildInputs = [ ··· 40 ++ lib.optional withNflog libnetfilter_log 41 ++ lib.optional withSQLite sqlite 42 ++ lib.optional withPgSQL postgresql 43 + ++ lib.optionals withMysql [ libmysqlclient zlib numactl ] 44 ++ lib.optional gnutlsSupport gnutls; 45 46 MYSQL_CONFIG = lib.optionalString withMysql "${lib.getDev libmysqlclient}/bin/mysql_config"; ··· 54 ++ lib.optional withMysql "--enable-mysql" 55 ++ lib.optional gnutlsSupport "--enable-gnutls"; 56 57 + passthru.tests = { 58 + version = testVersion { package = pmacct; command = "pmacct -V"; }; 59 + }; 60 + 61 meta = with lib; { 62 description = "A small set of multi-purpose passive network monitoring tools"; 63 longDescription = '' ··· 65 [NetFlow IPFIX sFlow libpcap BGP BMP RPKI IGP Streaming Telemetry] 66 ''; 67 homepage = "http://www.pmacct.net/"; 68 + changelog = "https://github.com/pmacct/pmacct/blob/v${version}/ChangeLog"; 69 license = licenses.gpl2; 70 maintainers = with maintainers; [ _0x4A6F ]; 71 platforms = platforms.unix;
+3 -3
pkgs/tools/security/cfripper/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "cfripper"; 8 - version = "1.7.1"; 9 10 src = fetchFromGitHub { 11 owner = "Skyscanner"; 12 repo = pname; 13 - rev = version; 14 - hash = "sha256-Q1J5M6RyYjVi2rkOCThFQdBCxVKkza+wytO67vLlVQg="; 15 }; 16 17 propagatedBuildInputs = with python3.pkgs; [
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "cfripper"; 8 + version = "1.8.0"; 9 10 src = fetchFromGitHub { 11 owner = "Skyscanner"; 12 repo = pname; 13 + rev = "refs/tags/${version}"; 14 + hash = "sha256-x6QfS3DdJMpVKOLrz3EvYzIU72GzLdEePfpE9siEmCo="; 15 }; 16 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 14 stdenv.mkDerivation rec { 15 pname = "wob"; 16 - version = "0.12"; 17 18 src = fetchFromGitHub { 19 owner = "francma"; 20 repo = pname; 21 rev = version; 22 - sha256 = "sha256-gVQqZbz6ylBBlmhSgyaSEvAyMi48QiuviwZodPVGJxI="; 23 }; 24 25 nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
··· 13 14 stdenv.mkDerivation rec { 15 pname = "wob"; 16 + version = "0.13"; 17 18 src = fetchFromGitHub { 19 owner = "francma"; 20 repo = pname; 21 rev = version; 22 + sha256 = "sha256-CXRBNnnhNV5LBIasVtmGrRG4ZXFGC7qNInU7Y0QsHbs="; 23 }; 24 25 nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
+45 -1
pkgs/top-level/aliases.nix
··· 195 cryptol = throw "cryptol was removed due to prolonged broken build"; # Added 2020-08-21 196 197 # CUDA Toolkit 198 - 199 cudatoolkit_6 = throw "cudatoolkit_6 has been removed in favor of newer versions"; # Added 2021-02-14 200 cudatoolkit_65 = throw "cudatoolkit_65 has been removed in favor of newer versions"; # Added 2021-02-14 201 cudatoolkit_7 = throw "cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14 ··· 205 cudatoolkit_9_0 = throw "cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18 206 cudatoolkit_9_1 = throw "cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 207 cudatoolkit_9_2 = throw "cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18 208 cudnn6_cudatoolkit_8 = throw "cudnn6_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 209 cudnn_cudatoolkit_7 = throw "cudnn_cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14 210 cudnn_cudatoolkit_7_5 = throw "cudnn_cudatoolkit_7_5 has been removed in favor of newer versions"; # Added 2021-02-14 211 cudnn_cudatoolkit_8 = throw "cudnn_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 212 cudnn_cudatoolkit_9 = throw "cudnn_cudatoolkit_9 has been removed in favor of newer versions"; # Added 2021-04-18 213 cudnn_cudatoolkit_9_0 = throw "cudnn_cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18 214 cudnn_cudatoolkit_9_1 = throw "cudnn_cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 215 cudnn_cudatoolkit_9_2 = throw "cudnn_cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18 216 217 cloud-print-connector = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; 218 cquery = throw "cquery has been removed because it is abandoned by upstream. Consider switching to clangd or ccls instead"; # Added 2020-06-15 ··· 782 mysqlWorkbench = throw "'mysqlWorkbench' has been renamed to/replaced by 'mysql-workbench'"; # Converted to throw 2022-02-22 783 784 ### N ### 785 786 net_snmp = net-snmp; # Added 2019-12-21 787 nagiosPluginsOfficial = monitoring-plugins;
··· 195 cryptol = throw "cryptol was removed due to prolonged broken build"; # Added 2020-08-21 196 197 # CUDA Toolkit 198 cudatoolkit_6 = throw "cudatoolkit_6 has been removed in favor of newer versions"; # Added 2021-02-14 199 cudatoolkit_65 = throw "cudatoolkit_65 has been removed in favor of newer versions"; # Added 2021-02-14 200 cudatoolkit_7 = throw "cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14 ··· 204 cudatoolkit_9_0 = throw "cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18 205 cudatoolkit_9_1 = throw "cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 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 220 cudnn6_cudatoolkit_8 = throw "cudnn6_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 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 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 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 241 cudnn_cudatoolkit_9 = throw "cudnn_cudatoolkit_9 has been removed in favor of newer versions"; # Added 2021-04-18 242 cudnn_cudatoolkit_9_0 = throw "cudnn_cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18 243 cudnn_cudatoolkit_9_1 = throw "cudnn_cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 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 256 257 cloud-print-connector = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; 258 cquery = throw "cquery has been removed because it is abandoned by upstream. Consider switching to clangd or ccls instead"; # Added 2020-06-15 ··· 822 mysqlWorkbench = throw "'mysqlWorkbench' has been renamed to/replaced by 'mysql-workbench'"; # Converted to throw 2022-02-22 823 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 829 830 net_snmp = net-snmp; # Added 2019-12-21 831 nagiosPluginsOfficial = monitoring-plugins;
+21 -62
pkgs/top-level/all-packages.nix
··· 2363 2364 libtensorflow-bin = callPackage ../development/libraries/science/math/tensorflow/bin.nix { 2365 cudaSupport = config.cudaSupport or false; 2366 - cudatoolkit = cudatoolkit_10_0; 2367 - cudnn = cudnn_7_4_cudatoolkit_10_0; 2368 }; 2369 2370 libtensorflow = ··· 2742 swaycwd = callPackage ../tools/wayland/swaycwd { }; 2743 2744 swayr = callPackage ../tools/wayland/swayr { }; 2745 2746 swaytools = callPackage ../tools/wayland/swaytools { }; 2747 ··· 4622 4623 snooze = callPackage ../tools/system/snooze { }; 4624 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; 4639 4640 - cudatoolkit = cudatoolkit_11; 4641 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; 4678 4679 curie = callPackage ../data/fonts/curie { }; 4680 ··· 8187 8188 nbd = callPackage ../tools/networking/nbd { }; 8189 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 8195 ndjbdns = callPackage ../tools/networking/ndjbdns { }; 8196 ··· 26411 26412 gpu-screen-recorder = callPackage ../applications/video/gpu-screen-recorder { 26413 # rm me as soon as this package gains the support for cuda 11 26414 - cudatoolkit = cudatoolkit_10; 26415 }; 26416 26417 gpu-screen-recorder-gtk = callPackage ../applications/video/gpu-screen-recorder/gpu-screen-recorder-gtk.nix { }; ··· 31325 31326 katagoWithCuda = katago.override { 31327 enableCuda = true; 31328 - cudnn = cudnn_8_3_cudatoolkit_11; 31329 - cudatoolkit = cudatoolkit_11; 31330 }; 31331 31332 katagoCPU = katago.override { ··· 32930 32931 caffe = callPackage ../applications/science/math/caffe ({ 32932 cudaSupport = config.cudaSupport or false; 32933 - cudatoolkit = cudatoolkit_10_1; 32934 - cudnn = cudnn_7_6_cudatoolkit_10_1; 32935 opencv3 = opencv3WithoutCuda; # Used only for image loading. 32936 blas = openblas; 32937 inherit (darwin.apple_sdk.frameworks) Accelerate CoreGraphics CoreVideo;
··· 2363 2364 libtensorflow-bin = callPackage ../development/libraries/science/math/tensorflow/bin.nix { 2365 cudaSupport = config.cudaSupport or false; 2366 + cudaPackages = cudaPackages_10_0; 2367 }; 2368 2369 libtensorflow = ··· 2741 swaycwd = callPackage ../tools/wayland/swaycwd { }; 2742 2743 swayr = callPackage ../tools/wayland/swayr { }; 2744 + 2745 + swaysome = callPackage ../tools/wayland/swaysome { }; 2746 2747 swaytools = callPackage ../tools/wayland/swaytools { }; 2748 ··· 4623 4624 snooze = callPackage ../tools/system/snooze { }; 4625 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; 4630 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; 4640 4641 + # TODO: move to alias 4642 + cudatoolkit = cudaPackages.cudatoolkit; 4643 + cudatoolkit_11 = cudaPackages_11.cudatoolkit; 4644 4645 curie = callPackage ../data/fonts/curie { }; 4646 ··· 8153 8154 nbd = callPackage ../tools/networking/nbd { }; 8155 xnbd = callPackage ../tools/networking/xnbd { }; 8156 8157 ndjbdns = callPackage ../tools/networking/ndjbdns { }; 8158 ··· 26373 26374 gpu-screen-recorder = callPackage ../applications/video/gpu-screen-recorder { 26375 # rm me as soon as this package gains the support for cuda 11 26376 + inherit (cudaPackages_10) cudatoolkit; 26377 }; 26378 26379 gpu-screen-recorder-gtk = callPackage ../applications/video/gpu-screen-recorder/gpu-screen-recorder-gtk.nix { }; ··· 31287 31288 katagoWithCuda = katago.override { 31289 enableCuda = true; 31290 }; 31291 31292 katagoCPU = katago.override { ··· 32890 32891 caffe = callPackage ../applications/science/math/caffe ({ 32892 cudaSupport = config.cudaSupport or false; 32893 + cudaPackages = cudaPackages_10_1; 32894 opencv3 = opencv3WithoutCuda; # Used only for image loading. 32895 blas = openblas; 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 95 disabledIf = x: drv: if x then disabled drv else drv; 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 in { 104 105 inherit pkgs stdenv; ··· 1958 1959 cufflinks = callPackage ../development/python-modules/cufflinks { }; 1960 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 - }; 1967 1968 curio = callPackage ../development/python-modules/curio { }; 1969 ··· 4230 4231 jaxlib-bin = callPackage ../development/python-modules/jaxlib/bin.nix { 4232 cudaSupport = pkgs.config.cudaSupport or false; 4233 - cudatoolkit_11 = tensorflow_compat_cudatoolkit; 4234 - cudnn = tensorflow_compat_cudnn; 4235 }; 4236 4237 jaxlib-build = callPackage ../development/python-modules/jaxlib { 4238 # Some platforms don't have `cudaSupport` defined, hence the need for 'or false'. 4239 cudaSupport = pkgs.config.cudaSupport or false; 4240 - cudatoolkit = tensorflow_compat_cudatoolkit; 4241 - cudnn = tensorflow_compat_cudnn; 4242 - nccl = tensorflow_compat_nccl; 4243 }; 4244 4245 jaxlib = self.jaxlib-build; 4246 4247 jaxlibWithCuda = self.jaxlib-build.override { 4248 cudaSupport = true; 4249 }; 4250 4251 jaxlibWithoutCuda = self.jaxlib-build.override { ··· 5680 5681 numba = callPackage ../development/python-modules/numba { 5682 cudaSupport = pkgs.config.cudaSupport or false; 5683 - cudatoolkit = tensorflow_compat_cudatoolkit; 5684 }; 5685 5686 numbaWithCuda = self.numba.override { ··· 6875 pyctr = callPackage ../development/python-modules/pyctr { }; 6876 6877 pycuda = callPackage ../development/python-modules/pycuda { 6878 - inherit (pkgs) cudatoolkit; 6879 inherit (pkgs.stdenv) mkDerivation; 6880 }; 6881 ··· 7595 }); 7596 7597 pyrealsense2WithCuda = toPythonModule (pkgs.librealsenseWithCuda.override { 7598 enablePython = true; 7599 pythonPackages = self; 7600 }); ··· 9893 9894 tensorboardx = callPackage ../development/python-modules/tensorboardx { }; 9895 9896 - tensorflow-bin = callPackage ../development/python-modules/tensorflow/bin.nix { 9897 cudaSupport = pkgs.config.cudaSupport or false; 9898 - cudatoolkit = tensorflow_compat_cudatoolkit; 9899 - cudnn = tensorflow_compat_cudnn; 9900 }; 9901 9902 tensorflow-build = callPackage ../development/python-modules/tensorflow { 9903 inherit (pkgs.darwin) cctools; 9904 cudaSupport = pkgs.config.cudaSupport or false; 9905 - cudatoolkit = tensorflow_compat_cudatoolkit; 9906 - cudnn = tensorflow_compat_cudnn; 9907 - nccl = tensorflow_compat_nccl; 9908 inherit (pkgs.darwin.apple_sdk.frameworks) Foundation Security; 9909 flatbuffers-core = pkgs.flatbuffers; 9910 flatbuffers-python = self.flatbuffers;
··· 94 95 disabledIf = x: drv: if x then disabled drv else drv; 96 97 in { 98 99 inherit pkgs stdenv; ··· 1952 1953 cufflinks = callPackage ../development/python-modules/cufflinks { }; 1954 1955 + cupy = callPackage ../development/python-modules/cupy { }; 1956 1957 curio = callPackage ../development/python-modules/curio { }; 1958 ··· 4219 4220 jaxlib-bin = callPackage ../development/python-modules/jaxlib/bin.nix { 4221 cudaSupport = pkgs.config.cudaSupport or false; 4222 + inherit (self.tensorflow) cudaPackages; 4223 }; 4224 4225 jaxlib-build = callPackage ../development/python-modules/jaxlib { 4226 # Some platforms don't have `cudaSupport` defined, hence the need for 'or false'. 4227 cudaSupport = pkgs.config.cudaSupport or false; 4228 + inherit (self.tensorflow) cudaPackages; 4229 }; 4230 4231 jaxlib = self.jaxlib-build; 4232 4233 jaxlibWithCuda = self.jaxlib-build.override { 4234 cudaSupport = true; 4235 + 4236 }; 4237 4238 jaxlibWithoutCuda = self.jaxlib-build.override { ··· 5667 5668 numba = callPackage ../development/python-modules/numba { 5669 cudaSupport = pkgs.config.cudaSupport or false; 5670 }; 5671 5672 numbaWithCuda = self.numba.override { ··· 6861 pyctr = callPackage ../development/python-modules/pyctr { }; 6862 6863 pycuda = callPackage ../development/python-modules/pycuda { 6864 inherit (pkgs.stdenv) mkDerivation; 6865 }; 6866 ··· 7580 }); 7581 7582 pyrealsense2WithCuda = toPythonModule (pkgs.librealsenseWithCuda.override { 7583 + cudaSupport = true; 7584 enablePython = true; 7585 pythonPackages = self; 7586 }); ··· 9879 9880 tensorboardx = callPackage ../development/python-modules/tensorboardx { }; 9881 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 { 9889 cudaSupport = pkgs.config.cudaSupport or false; 9890 + inherit cudaPackages; 9891 }; 9892 9893 tensorflow-build = callPackage ../development/python-modules/tensorflow { 9894 inherit (pkgs.darwin) cctools; 9895 cudaSupport = pkgs.config.cudaSupport or false; 9896 + inherit (self.tensorflow-bin) cudaPackages; 9897 inherit (pkgs.darwin.apple_sdk.frameworks) Foundation Security; 9898 flatbuffers-core = pkgs.flatbuffers; 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