Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
ca639e40 c220ae86

+2845 -1290
+2 -19
pkgs/applications/audio/ft2-clone/default.nix
··· 1 { lib, stdenv 2 , fetchFromGitHub 3 - , fetchpatch 4 , cmake 5 , nixosTests 6 , alsa-lib ··· 14 15 stdenv.mkDerivation rec { 16 pname = "ft2-clone"; 17 - version = "1.69"; 18 19 src = fetchFromGitHub { 20 owner = "8bitbubsy"; 21 repo = "ft2-clone"; 22 rev = "v${version}"; 23 - sha256 = "sha256-tm0yTh46UKnsjH9hv3cMW0YL2x3OTRL+14x4c7w124U="; 24 }; 25 26 - patches = [ 27 - # Adapt CMake script to be Darwin-compatible 28 - # https://github.com/8bitbubsy/ft2-clone/pull/30 29 - (fetchpatch { 30 - name = "0001-ft2-clone-Make-CMake-script-macOS-compatible.patch"; 31 - url = "https://github.com/8bitbubsy/ft2-clone/pull/30/commits/0033a567abf7ddbdb2bc59c7f730d22f986010aa.patch"; 32 - hash = "sha256-fhA+T6RI+Qmhr7mbG9lEA7esWskgK8+DkWzol0J2lUo="; 33 - }) 34 - (fetchpatch { 35 - name = "0002-ft2-clone-Fix-__MACOSX_CORE__-typo.patch"; 36 - url = "https://github.com/8bitbubsy/ft2-clone/pull/30/commits/fe50aff9233130150a6631875611c7db67a2d705.patch"; 37 - hash = "sha256-X4AVuJ0iRlpH1N/YzjdVk5+yv7eiDNoZkk0mhOizgOg="; 38 - }) 39 - ]; 40 - 41 nativeBuildInputs = [ cmake ]; 42 buildInputs = [ SDL2 ] 43 ++ lib.optional stdenv.isLinux alsa-lib ··· 63 platforms = platforms.littleEndian; 64 }; 65 } 66 -
··· 1 { lib, stdenv 2 , fetchFromGitHub 3 , cmake 4 , nixosTests 5 , alsa-lib ··· 13 14 stdenv.mkDerivation rec { 15 pname = "ft2-clone"; 16 + version = "1.71"; 17 18 src = fetchFromGitHub { 19 owner = "8bitbubsy"; 20 repo = "ft2-clone"; 21 rev = "v${version}"; 22 + hash = "sha256-c2gFq+TgTMI+Eld0z8hryLew3XkrQ7XAfq2s+zdEkBQ="; 23 }; 24 25 nativeBuildInputs = [ cmake ]; 26 buildInputs = [ SDL2 ] 27 ++ lib.optional stdenv.isLinux alsa-lib ··· 47 platforms = platforms.littleEndian; 48 }; 49 }
+3 -3
pkgs/applications/blockchains/ledger-live-desktop/default.nix
··· 2 3 let 4 pname = "ledger-live-desktop"; 5 - version = "2.66.0"; 6 7 src = fetchurl { 8 url = "https://download.live.ledger.com/${pname}-${version}-linux-x86_64.AppImage"; 9 - hash = "sha256-Du2bvtlNjxtkJ31RCKZmGtWxOEIjohbmEC5o3VvFGlY="; 10 }; 11 - 12 13 appimageContents = appimageTools.extractType2 { 14 inherit pname version src; ··· 23 install -m 444 -D ${appimageContents}/ledger-live-desktop.png $out/share/icons/hicolor/1024x1024/apps/ledger-live-desktop.png 24 ${imagemagick}/bin/convert ${appimageContents}/ledger-live-desktop.png -resize 512x512 ledger-live-desktop_512.png 25 install -m 444 -D ledger-live-desktop_512.png $out/share/icons/hicolor/512x512/apps/ledger-live-desktop.png 26 substituteInPlace $out/share/applications/ledger-live-desktop.desktop \ 27 --replace 'Exec=AppRun' 'Exec=${pname}' 28 '';
··· 2 3 let 4 pname = "ledger-live-desktop"; 5 + version = "2.69.0"; 6 7 src = fetchurl { 8 url = "https://download.live.ledger.com/${pname}-${version}-linux-x86_64.AppImage"; 9 + hash = "sha256-9eELWlOzUd3xwAoob5XCj16JihOt6SHZe0Ybxb9dtQI="; 10 }; 11 12 appimageContents = appimageTools.extractType2 { 13 inherit pname version src; ··· 22 install -m 444 -D ${appimageContents}/ledger-live-desktop.png $out/share/icons/hicolor/1024x1024/apps/ledger-live-desktop.png 23 ${imagemagick}/bin/convert ${appimageContents}/ledger-live-desktop.png -resize 512x512 ledger-live-desktop_512.png 24 install -m 444 -D ledger-live-desktop_512.png $out/share/icons/hicolor/512x512/apps/ledger-live-desktop.png 25 + 26 substituteInPlace $out/share/applications/ledger-live-desktop.desktop \ 27 --replace 'Exec=AppRun' 'Exec=${pname}' 28 '';
+2 -2
pkgs/applications/blockchains/stellar-core/default.nix
··· 15 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "stellar-core"; 18 - version = "19.13.0"; 19 20 src = fetchFromGitHub { 21 owner = "stellar"; 22 repo = "stellar-core"; 23 rev = "v${finalAttrs.version}"; 24 - hash = "sha256-C775tL+x1IX4kfCM/7gOg/V8xunq/rkhIfdkwkhLENk="; 25 fetchSubmodules = true; 26 }; 27
··· 15 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "stellar-core"; 18 + version = "19.14.0"; 19 20 src = fetchFromGitHub { 21 owner = "stellar"; 22 repo = "stellar-core"; 23 rev = "v${finalAttrs.version}"; 24 + hash = "sha256-lxBn/T01Tsa7tid3mRJUigUwv9d3BAPZhV9Mp1lywBU="; 25 fetchSubmodules = true; 26 }; 27
+2 -2
pkgs/applications/graphics/ImageMagick/default.nix
··· 48 49 stdenv.mkDerivation (finalAttrs: { 50 pname = "imagemagick"; 51 - version = "7.1.1-18"; 52 53 src = fetchFromGitHub { 54 owner = "ImageMagick"; 55 repo = "ImageMagick"; 56 rev = finalAttrs.version; 57 - hash = "sha256-DnmX4dxpOqDGHOFSnq7ms2fLGdB1nKdZbpd0Q9t+X6A="; 58 }; 59 60 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
··· 48 49 stdenv.mkDerivation (finalAttrs: { 50 pname = "imagemagick"; 51 + version = "7.1.1-19"; 52 53 src = fetchFromGitHub { 54 owner = "ImageMagick"; 55 repo = "ImageMagick"; 56 rev = finalAttrs.version; 57 + hash = "sha256-SxvaodAjSlOvmGPnD0AcXHrE5dTX2eX1sDM/441rP64="; 58 }; 59 60 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
+19 -4
pkgs/applications/misc/syncthingtray/default.nix
··· 17 , plasma-framework 18 , qttools 19 , iconv 20 , webviewSupport ? true 21 , jsSupport ? true 22 , kioPluginSupport ? stdenv.isLinux ··· 31 }: 32 33 stdenv.mkDerivation (finalAttrs: { 34 - version = "1.4.6"; 35 pname = "syncthingtray"; 36 37 src = fetchFromGitHub { 38 owner = "Martchus"; 39 repo = "syncthingtray"; 40 rev = "v${finalAttrs.version}"; 41 - sha256 = "sha256-/HAqO0eVFt4YLGeTbZSZcH2pOojvykukAGTBHZTfKLQ="; 42 }; 43 44 buildInputs = [ ··· 58 wrapQtAppsHook 59 cmake 60 qttools 61 ] 62 ++ lib.optionals plasmoidSupport [ extra-cmake-modules ] 63 ; 64 65 - # No tests are available by upstream, but we test --help anyway 66 - # Don't test on Darwin because output is .app 67 doInstallCheck = !stdenv.isDarwin; 68 installCheckPhase = '' 69 $out/bin/syncthingtray --help | grep ${finalAttrs.version} 70 ''; 71 72 cmakeFlags = [ 73 "-DAUTOSTART_EXEC_PATH=${autostartExecPath}" 74 # See https://github.com/Martchus/syncthingtray/issues/42 75 "-DQT_PLUGIN_DIR:STRING=${placeholder "out"}/${qtbase.qtPluginPrefix}"
··· 17 , plasma-framework 18 , qttools 19 , iconv 20 + , cppunit 21 + , syncthing 22 , webviewSupport ? true 23 , jsSupport ? true 24 , kioPluginSupport ? stdenv.isLinux ··· 33 }: 34 35 stdenv.mkDerivation (finalAttrs: { 36 + version = "1.4.7"; 37 pname = "syncthingtray"; 38 39 src = fetchFromGitHub { 40 owner = "Martchus"; 41 repo = "syncthingtray"; 42 rev = "v${finalAttrs.version}"; 43 + sha256 = "sha256-ddOyAyvFifsdNMbwcMZTyhA+5pvz6/Eu/VoBmdsHi54="; 44 }; 45 46 buildInputs = [ ··· 60 wrapQtAppsHook 61 cmake 62 qttools 63 + # Although these are test dependencies, we add them anyway so that we test 64 + # whether the test units compile. On Darwin we don't run the tests but we 65 + # still build them. 66 + cppunit 67 + syncthing 68 ] 69 ++ lib.optionals plasmoidSupport [ extra-cmake-modules ] 70 ; 71 72 + # syncthing server seems to hang on darwin, causing tests to fail. 73 + doCheck = !stdenv.isDarwin; 74 + preCheck = '' 75 + export QT_QPA_PLATFORM=offscreen 76 + export QT_PLUGIN_PATH="${qtbase.bin}/${qtbase.qtPluginPrefix}" 77 + ''; 78 + # don't test --help on Darwin because output is .app 79 doInstallCheck = !stdenv.isDarwin; 80 installCheckPhase = '' 81 $out/bin/syncthingtray --help | grep ${finalAttrs.version} 82 ''; 83 84 cmakeFlags = [ 85 + "-DBUILD_TESTING=ON" 86 + # See https://github.com/Martchus/syncthingtray/issues/208 87 + "-DEXCLUDE_TESTS_FROM_ALL=OFF" 88 "-DAUTOSTART_EXEC_PATH=${autostartExecPath}" 89 # See https://github.com/Martchus/syncthingtray/issues/42 90 "-DQT_PLUGIN_DIR:STRING=${placeholder "out"}/${qtbase.qtPluginPrefix}"
+2 -1
pkgs/applications/networking/browsers/firefox/wrapper.nix
··· 85 ++ lib.optional jackSupport libjack2 86 ++ lib.optional smartcardSupport opensc 87 ++ lib.optional (cfg.speechSynthesisSupport or false) speechd 88 - ++ pkcs11Modules; 89 gtk_modules = [ libcanberra-gtk3 ]; 90 91 launcherName = "${applicationName}${nameSuffix}";
··· 85 ++ lib.optional jackSupport libjack2 86 ++ lib.optional smartcardSupport opensc 87 ++ lib.optional (cfg.speechSynthesisSupport or false) speechd 88 + ++ pkcs11Modules 89 + ++ gtk_modules; 90 gtk_modules = [ libcanberra-gtk3 ]; 91 92 launcherName = "${applicationName}${nameSuffix}";
+28 -22
pkgs/applications/radio/gnuradio/3.8.nix
··· 40 # If one wishes to use a different src or name for a very custom build 41 , overrideSrc ? {} 42 , pname ? "gnuradio" 43 - , versionAttr ? { 44 - major = "3.8"; 45 - minor = "5"; 46 - patch = "0"; 47 - } 48 }: 49 50 let ··· 204 gr-zeromq = { 205 runtime = [ cppzmq ]; 206 cmakeEnableFlag = "GR_ZEROMQ"; 207 }; 208 }; 209 shared = (import ./shared.nix { ··· 214 removeReferencesTo 215 featuresInfo 216 features 217 - versionAttr 218 sourceSha256 219 overrideSrc 220 fetchFromGitHub ··· 222 qt = qt5; 223 gtk = gtk3; 224 }); 225 - inherit (shared) hasFeature; # function 226 in 227 228 - stdenv.mkDerivation { 229 - inherit pname; 230 - inherit (shared) 231 - version 232 - src 233 - nativeBuildInputs 234 - buildInputs 235 - disallowedReferences 236 - stripDebugList 237 - doCheck 238 - dontWrapPythonPrograms 239 - dontWrapQtApps 240 - meta 241 - ; 242 patches = [ 243 # Not accepted upstream, see https://github.com/gnuradio/gnuradio/pull/5227 244 ./modtool-newmod-permissions.3_8.patch ··· 291 ${removeReferencesTo}/bin/remove-references-to -t ${python} $out/lib/cmake/gnuradio/GnuradioConfig.cmake 292 '' 293 ; 294 - }
··· 40 # If one wishes to use a different src or name for a very custom build 41 , overrideSrc ? {} 42 , pname ? "gnuradio" 43 + , version ? "3.8.5.0" 44 }: 45 46 let ··· 200 gr-zeromq = { 201 runtime = [ cppzmq ]; 202 cmakeEnableFlag = "GR_ZEROMQ"; 203 + pythonRuntime = [ 204 + # Will compile without this, but it is required by tests, and by some 205 + # gr blocks. 206 + python.pkgs.pyzmq 207 + ]; 208 }; 209 }; 210 shared = (import ./shared.nix { ··· 215 removeReferencesTo 216 featuresInfo 217 features 218 + version 219 sourceSha256 220 overrideSrc 221 fetchFromGitHub ··· 223 qt = qt5; 224 gtk = gtk3; 225 }); 226 + inherit (shared.passthru) hasFeature; # function 227 in 228 229 + stdenv.mkDerivation (finalAttrs: (shared // { 230 + inherit pname version; 231 + # Will still evaluate correctly if not used here. It only helps nix-update 232 + # find the right file in which version is defined. 233 + inherit (shared) src; 234 + # Remove failing tests 235 + preConfigure = (shared.preConfigure or "") + '' 236 + # https://github.com/gnuradio/gnuradio/issues/3801 237 + rm gr-blocks/python/blocks/qa_cpp_py_binding.py 238 + rm gr-blocks/python/blocks/qa_cpp_py_binding_set.py 239 + rm gr-blocks/python/blocks/qa_ctrlport_probes.py 240 + # Tests that fail due to numpy deprecations upstream hasn't accomodated to yet. 241 + rm gr-fec/python/fec/qa_polar_decoder_sc.py 242 + rm gr-fec/python/fec/qa_polar_decoder_sc_list.py 243 + rm gr-fec/python/fec/qa_polar_decoder_sc_systematic.py 244 + rm gr-fec/python/fec/qa_polar_encoder.py 245 + rm gr-fec/python/fec/qa_polar_encoder_systematic.py 246 + rm gr-filter/python/filter/qa_freq_xlating_fft_filter.py 247 + ''; 248 patches = [ 249 # Not accepted upstream, see https://github.com/gnuradio/gnuradio/pull/5227 250 ./modtool-newmod-permissions.3_8.patch ··· 297 ${removeReferencesTo}/bin/remove-references-to -t ${python} $out/lib/cmake/gnuradio/GnuradioConfig.cmake 298 '' 299 ; 300 + }))
+21 -23
pkgs/applications/radio/gnuradio/3.9.nix
··· 42 # If one wishes to use a different src or name for a very custom build 43 , overrideSrc ? {} 44 , pname ? "gnuradio" 45 - , versionAttr ? { 46 - major = "3.9"; 47 - minor = "8"; 48 - patch = "0"; 49 - } 50 }: 51 52 let ··· 231 gr-zeromq = { 232 runtime = [ cppzmq ]; 233 cmakeEnableFlag = "GR_ZEROMQ"; 234 }; 235 gr-network = { 236 cmakeEnableFlag = "GR_NETWORK"; ··· 250 removeReferencesTo 251 featuresInfo 252 features 253 - versionAttr 254 sourceSha256 255 overrideSrc 256 fetchFromGitHub ··· 258 qt = qt5; 259 gtk = gtk3; 260 }); 261 - inherit (shared) hasFeature; # function 262 in 263 264 - stdenv.mkDerivation { 265 - inherit pname; 266 - inherit (shared) 267 - version 268 - src 269 - nativeBuildInputs 270 - buildInputs 271 - cmakeFlags 272 - disallowedReferences 273 - stripDebugList 274 - doCheck 275 - dontWrapPythonPrograms 276 - dontWrapQtApps 277 - meta 278 - ; 279 patches = [ 280 # Not accepted upstream, see https://github.com/gnuradio/gnuradio/pull/5227 281 ./modtool-newmod-permissions.patch ··· 303 ${removeReferencesTo}/bin/remove-references-to -t ${python.pkgs.pybind11} $out/lib/cmake/gnuradio/gnuradio-runtimeTargets.cmake 304 '' 305 ; 306 - }
··· 42 # If one wishes to use a different src or name for a very custom build 43 , overrideSrc ? {} 44 , pname ? "gnuradio" 45 + , version ? "3.9.8.0" 46 }: 47 48 let ··· 227 gr-zeromq = { 228 runtime = [ cppzmq ]; 229 cmakeEnableFlag = "GR_ZEROMQ"; 230 + pythonRuntime = [ 231 + # Will compile without this, but it is required by tests, and by some 232 + # gr blocks. 233 + python.pkgs.pyzmq 234 + ]; 235 }; 236 gr-network = { 237 cmakeEnableFlag = "GR_NETWORK"; ··· 251 removeReferencesTo 252 featuresInfo 253 features 254 + version 255 sourceSha256 256 overrideSrc 257 fetchFromGitHub ··· 259 qt = qt5; 260 gtk = gtk3; 261 }); 262 + inherit (shared.passthru) hasFeature; # function 263 in 264 265 + stdenv.mkDerivation (finalAttrs: (shared // { 266 + inherit pname version; 267 + # Will still evaluate correctly if not used here. It only helps nix-update 268 + # find the right file in which version is defined. 269 + inherit (shared) src; 270 + # Remove failing tests 271 + preConfigure = (shared.preConfigure or "") + '' 272 + # https://github.com/gnuradio/gnuradio/issues/3801 273 + rm gr-blocks/python/blocks/qa_cpp_py_binding.py 274 + rm gr-blocks/python/blocks/qa_cpp_py_binding_set.py 275 + rm gr-blocks/python/blocks/qa_ctrlport_probes.py 276 + ''; 277 patches = [ 278 # Not accepted upstream, see https://github.com/gnuradio/gnuradio/pull/5227 279 ./modtool-newmod-permissions.patch ··· 301 ${removeReferencesTo}/bin/remove-references-to -t ${python.pkgs.pybind11} $out/lib/cmake/gnuradio/gnuradio-runtimeTargets.cmake 302 '' 303 ; 304 + }))
+14 -23
pkgs/applications/radio/gnuradio/default.nix
··· 45 # If one wishes to use a different src or name for a very custom build 46 , overrideSrc ? {} 47 , pname ? "gnuradio" 48 - , versionAttr ? { 49 - major = "3.10"; 50 - minor = "7"; 51 - patch = "0"; 52 - } 53 }: 54 55 let ··· 252 gr-zeromq = { 253 runtime = [ cppzmq ]; 254 cmakeEnableFlag = "GR_ZEROMQ"; 255 }; 256 gr-network = { 257 cmakeEnableFlag = "GR_NETWORK"; ··· 271 removeReferencesTo 272 featuresInfo 273 features 274 - versionAttr 275 sourceSha256 276 overrideSrc 277 fetchFromGitHub ··· 279 qt = qt5; 280 gtk = gtk3; 281 }); 282 - inherit (shared) hasFeature; # function 283 in 284 285 - stdenv.mkDerivation { 286 - inherit pname; 287 - inherit (shared) 288 - version 289 - src 290 - nativeBuildInputs 291 - buildInputs 292 - cmakeFlags 293 - disallowedReferences 294 - stripDebugList 295 - doCheck 296 - dontWrapPythonPrograms 297 - dontWrapQtApps 298 - meta 299 - ; 300 patches = [ 301 # Not accepted upstream, see https://github.com/gnuradio/gnuradio/pull/5227 302 ./modtool-newmod-permissions.patch ··· 332 ${removeReferencesTo}/bin/remove-references-to -t ${python.pkgs.pybind11} $out/lib/cmake/gnuradio/gnuradio-runtimeTargets.cmake 333 '' 334 ; 335 - }
··· 45 # If one wishes to use a different src or name for a very custom build 46 , overrideSrc ? {} 47 , pname ? "gnuradio" 48 + , version ? "3.10.7.0" 49 }: 50 51 let ··· 248 gr-zeromq = { 249 runtime = [ cppzmq ]; 250 cmakeEnableFlag = "GR_ZEROMQ"; 251 + pythonRuntime = [ 252 + # Will compile without this, but it is required by tests, and by some 253 + # gr blocks. 254 + python.pkgs.pyzmq 255 + ]; 256 }; 257 gr-network = { 258 cmakeEnableFlag = "GR_NETWORK"; ··· 272 removeReferencesTo 273 featuresInfo 274 features 275 + version 276 sourceSha256 277 overrideSrc 278 fetchFromGitHub ··· 280 qt = qt5; 281 gtk = gtk3; 282 }); 283 + inherit (shared.passthru) hasFeature; # function 284 in 285 286 + stdenv.mkDerivation (finalAttrs: (shared // { 287 + inherit pname version; 288 + # Will still evaluate correctly if not used here. It only helps nix-update 289 + # find the right file in which version is defined. 290 + inherit (shared) src; 291 patches = [ 292 # Not accepted upstream, see https://github.com/gnuradio/gnuradio/pull/5227 293 ./modtool-newmod-permissions.patch ··· 323 ${removeReferencesTo}/bin/remove-references-to -t ${python.pkgs.pybind11} $out/lib/cmake/gnuradio/gnuradio-runtimeTargets.cmake 324 '' 325 ; 326 + }))
+23 -15
pkgs/applications/radio/gnuradio/shared.nix
··· 5 , removeReferencesTo 6 , featuresInfo 7 , features 8 - , versionAttr 9 , sourceSha256 10 # If overridden. No need to set default values, as they are given defaults in 11 # the main expressions ··· 13 , fetchFromGitHub 14 }: 15 16 - rec { 17 - version = builtins.concatStringsSep "." ( 18 - lib.attrVals [ "major" "minor" "patch" ] versionAttr 19 ); 20 src = if overrideSrc != {} then 21 overrideSrc 22 else ··· 27 sha256 = sourceSha256; 28 } 29 ; 30 - # Check if a feature is enabled, while defaulting to true if feat is not 31 - # specified. 32 - hasFeature = feat: ( 33 - if builtins.hasAttr feat features then 34 - features.${feat} 35 - else 36 - true 37 - ); 38 nativeBuildInputs = lib.flatten (lib.mapAttrsToList ( 39 feat: info: ( 40 lib.optionals (hasFeature feat) ( ··· 109 # Wrapping is done with an external wrapper 110 dontWrapPythonPrograms = true; 111 dontWrapQtApps = true; 112 - # Tests should succeed, but it's hard to get LD_LIBRARY_PATH right in order 113 - # for it to happen. 114 - doCheck = false; 115 116 meta = with lib; { 117 description = "Software Defined Radio (SDR) software";
··· 5 , removeReferencesTo 6 , featuresInfo 7 , features 8 + , version 9 , sourceSha256 10 # If overridden. No need to set default values, as they are given defaults in 11 # the main expressions ··· 13 , fetchFromGitHub 14 }: 15 16 + let 17 + # Check if a feature is enabled, while defaulting to true if feat is not 18 + # specified. 19 + hasFeature = feat: ( 20 + if builtins.hasAttr feat features then 21 + features.${feat} 22 + else 23 + true 24 ); 25 + versionAttr = { 26 + major = builtins.concatStringsSep "." (lib.take 2 (lib.splitVersion version)); 27 + minor = builtins.elemAt (lib.splitVersion version) 2; 28 + patch = builtins.elemAt (lib.splitVersion version) 3; 29 + }; 30 + in { 31 src = if overrideSrc != {} then 32 overrideSrc 33 else ··· 38 sha256 = sourceSha256; 39 } 40 ; 41 nativeBuildInputs = lib.flatten (lib.mapAttrsToList ( 42 feat: info: ( 43 lib.optionals (hasFeature feat) ( ··· 112 # Wrapping is done with an external wrapper 113 dontWrapPythonPrograms = true; 114 dontWrapQtApps = true; 115 + # On darwin, it requires playing with DYLD_FALLBACK_LIBRARY_PATH to make if 116 + # find libgnuradio-runtim.3.*.dylib . 117 + doCheck = !stdenv.isDarwin; 118 + preCheck = '' 119 + export HOME=$(mktemp -d) 120 + export QT_QPA_PLATFORM=offscreen 121 + export QT_PLUGIN_PATH="${qt.qtbase.bin}/${qt.qtbase.qtPluginPrefix}" 122 + ''; 123 124 meta = with lib; { 125 description = "Software Defined Radio (SDR) software";
+3 -3
pkgs/applications/version-management/jujutsu/default.nix
··· 20 21 rustPlatform.buildRustPackage rec { 22 pname = "jujutsu"; 23 - version = "0.9.0"; 24 25 src = fetchFromGitHub { 26 owner = "martinvonz"; 27 repo = "jj"; 28 rev = "v${version}"; 29 - sha256 = "sha256-5RN2xaH591/83iNXRcW9i/TyU5ndPZq3P/BesHM9I6w="; 30 }; 31 32 - cargoHash = "sha256-G4W3GeTWTuIZO1PupuZ0hACwhNoNBQhULyT9f6qVckg="; 33 34 buildNoDefaultFeatures = true; 35 buildFeatures = [
··· 20 21 rustPlatform.buildRustPackage rec { 22 pname = "jujutsu"; 23 + version = "0.10.0"; 24 25 src = fetchFromGitHub { 26 owner = "martinvonz"; 27 repo = "jj"; 28 rev = "v${version}"; 29 + hash = "sha256-LJW4Px3K5cz6RJ4sUbwUXsp2+rzEW5wowi+DALHajYA="; 30 }; 31 32 + cargoHash = "sha256-fs1cWhBFp2u3HiEx/mMnbwvgwKo97KmftA/sr4dGsiM="; 33 34 buildNoDefaultFeatures = true; 35 buildFeatures = [
+1
pkgs/build-support/fetchgit/nix-prefetch-git
··· 417 tmpHomePath="$(mktemp -d "${TMPDIR:-/tmp}/nix-prefetch-git-tmp-home-XXXXXXXXXX")" 418 exit_handlers+=(remove_tmpHomePath) 419 HOME="$tmpHomePath" 420 unset XDG_CONFIG_HOME 421 export GIT_CONFIG_NOSYSTEM=1 422
··· 417 tmpHomePath="$(mktemp -d "${TMPDIR:-/tmp}/nix-prefetch-git-tmp-home-XXXXXXXXXX")" 418 exit_handlers+=(remove_tmpHomePath) 419 HOME="$tmpHomePath" 420 + ln -s /build/.netrc "$HOME/" 421 unset XDG_CONFIG_HOME 422 export GIT_CONFIG_NOSYSTEM=1 423
+1
pkgs/development/compilers/elm/default.nix
··· 247 # see upstream issue https://github.com/dillonkearns/elm-pages/issues/305 for dealing with the read-only problem 248 preFixup = '' 249 patch $out/lib/node_modules/elm-pages/generator/src/codegen.js ${./packages/elm-pages-fix-read-only.patch} 250 ''; 251 252 postFixup = ''
··· 247 # see upstream issue https://github.com/dillonkearns/elm-pages/issues/305 for dealing with the read-only problem 248 preFixup = '' 249 patch $out/lib/node_modules/elm-pages/generator/src/codegen.js ${./packages/elm-pages-fix-read-only.patch} 250 + patch $out/lib/node_modules/elm-pages/generator/src/init.js ${./packages/elm-pages-fix-init-read-only.patch} 251 ''; 252 253 postFixup = ''
+39
pkgs/development/compilers/elm/packages/elm-pages-fix-init-read-only.patch
···
··· 1 + diff --git a/generator/src/init.js b/generator/src/init.js 2 + index 06386ff..7127dae 100644 3 + --- a/generator/src/init.js 4 + +++ b/generator/src/init.js 5 + @@ -6,6 +6,20 @@ import { fileURLToPath } from "url"; 6 + const __filename = fileURLToPath(import.meta.url); 7 + const __dirname = path.dirname(__filename); 8 + 9 + +let walknDo = function(somePath, doStuff) { 10 + + doStuff(somePath, true); 11 + + const dir = fs.readdirSync(somePath) 12 + + dir.forEach((i) => { 13 + + let p = path.join(somePath, i); 14 + + const s = fs.statSync(p) 15 + + if (s.isDirectory()) { 16 + + walknDo(p, doStuff) 17 + + } else { 18 + + doStuff(p); 19 + + } 20 + + }); 21 + +} 22 + + 23 + /** 24 + * @param {string} name 25 + */ 26 + @@ -18,6 +32,13 @@ export async function run(name) { 27 + if (!fs.existsSync(name)) { 28 + try { 29 + await fsExtra.copy(template, appRoot); 30 + + walknDo(appRoot, (file, isDir) => { 31 + + if (isDir) { 32 + + fs.chmodSync(file, 0o755); 33 + + } else { 34 + + fs.chmodSync(file, 0o644); 35 + + } 36 + + }); 37 + fs.renameSync( 38 + path.resolve(appRoot, "gitignore"), 39 + path.resolve(appRoot, ".gitignore")
+27 -47
pkgs/development/compilers/elm/packages/elm-pages-fix-read-only.patch
··· 1 diff --git a/generator/src/codegen.js b/generator/src/codegen.js 2 - index a0ef8806e..fe00ac904 100644 3 --- a/generator/src/codegen.js 4 +++ b/generator/src/codegen.js 5 - @@ -20,33 +20,33 @@ async function generate(basePath) { 6 7 - const uiFileContent = elmPagesUiFile(); 8 - await Promise.all([ 9 - - fs.promises.copyFile( 10 - - path.join(__dirname, `./Page.elm`), 11 - - `./.elm-pages/Page.elm` 12 - + fs.promises.writeFile( 13 - + `./.elm-pages/Page.elm`, 14 - + fs.readFileSync(path.join(__dirname, `./Page.elm`)) 15 - ), 16 - fs.promises.copyFile( 17 - path.join(__dirname, `./elm-application.json`), 18 - `./elm-stuff/elm-pages/elm-application.json` ··· 20 + `./elm-stuff/elm-pages/elm-application.json`, 21 + fs.readFileSync(path.join(__dirname, `./elm-application.json`)) 22 ), 23 - - fs.promises.copyFile( 24 - - path.join(__dirname, `./Page.elm`), 25 - - `./elm-stuff/elm-pages/.elm-pages/Page.elm` 26 - + fs.promises.writeFile( 27 - + `./elm-stuff/elm-pages/.elm-pages/Page.elm`, 28 - + fs.readFileSync(path.join(__dirname, `./Page.elm`)) 29 - ), 30 - - fs.promises.copyFile( 31 - - path.join(__dirname, `./SharedTemplate.elm`), 32 - - `./.elm-pages/SharedTemplate.elm` 33 - + fs.promises.writeFile( 34 - + `./.elm-pages/SharedTemplate.elm`, 35 - + fs.readFileSync(path.join(__dirname, `./SharedTemplate.elm`)) 36 - ), 37 - - fs.promises.copyFile( 38 - - path.join(__dirname, `./SharedTemplate.elm`), 39 - - `./elm-stuff/elm-pages/.elm-pages/SharedTemplate.elm` 40 - + fs.promises.writeFile( 41 - + `./elm-stuff/elm-pages/.elm-pages/SharedTemplate.elm`, 42 - + fs.readFileSync(path.join(__dirname, `./SharedTemplate.elm`)) 43 - ), 44 - - fs.promises.copyFile( 45 - - path.join(__dirname, `./SiteConfig.elm`), 46 - - `./.elm-pages/SiteConfig.elm` 47 - + fs.promises.writeFile( 48 - + `./.elm-pages/SiteConfig.elm`, 49 - + fs.readFileSync(path.join(__dirname, `./SiteConfig.elm`)) 50 - ), 51 - - fs.promises.copyFile( 52 - - path.join(__dirname, `./SiteConfig.elm`), 53 - - `./elm-stuff/elm-pages/.elm-pages/SiteConfig.elm` 54 - + fs.promises.writeFile( 55 - + `./elm-stuff/elm-pages/.elm-pages/SiteConfig.elm`, 56 - + fs.readFileSync(path.join(__dirname, `./SiteConfig.elm`)) 57 - ), 58 - fs.promises.writeFile("./.elm-pages/Pages.elm", uiFileContent), 59 // write `Pages.elm` with cli interface
··· 1 diff --git a/generator/src/codegen.js b/generator/src/codegen.js 2 + index baf5368..e5edf4d 100644 3 --- a/generator/src/codegen.js 4 +++ b/generator/src/codegen.js 5 + @@ -37,9 +37,9 @@ export async function generate(basePath) { 6 + copyToBoth("SiteConfig.elm"), 7 8 + fs.promises.writeFile("./.elm-pages/Pages.elm", uiFileContent), 9 - fs.promises.copyFile( 10 - path.join(__dirname, `./elm-application.json`), 11 - `./elm-stuff/elm-pages/elm-application.json` ··· 13 + `./elm-stuff/elm-pages/elm-application.json`, 14 + fs.readFileSync(path.join(__dirname, `./elm-application.json`)) 15 ), 16 // write `Pages.elm` with cli interface 17 + fs.promises.writeFile( 18 + @@ -82,9 +82,9 @@ function writeFetcherModules(basePath, fetcherData) { 19 + } 20 + 21 + async function newCopyBoth(modulePath) { 22 + - await fs.promises.copyFile( 23 + - path.join(__dirname, modulePath), 24 + - path.join(`./elm-stuff/elm-pages/client/.elm-pages/`, modulePath) 25 + + await fs.promises.writeFile( 26 + + path.join(`./elm-stuff/elm-pages/client/.elm-pages/`, modulePath), 27 + + fs.readFileSync(path.join(__dirname, modulePath)) 28 + ); 29 + } 30 + 31 + @@ -197,7 +197,7 @@ async function copyFileEnsureDir(from, to) { 32 + await fs.promises.mkdir(path.dirname(to), { 33 + recursive: true, 34 + }); 35 + - await fs.promises.copyFile(from, to); 36 + + await fs.promises.writeFile(to, fs.readFileSync(from)); 37 + } 38 + 39 + /**
+22 -22
pkgs/development/compilers/elm/packages/elm-srcs.nix
··· 5 version = "1.0.0"; 6 }; 7 8 - "elm/json" = { 9 - sha256 = "1a107nmm905dih4w4mjjkkpdcjbgaf5qjvr7fl30kkpkckfjjnrw"; 10 - version = "1.1.2"; 11 }; 12 13 "elm/html" = { ··· 15 version = "1.0.0"; 16 }; 17 18 - "elm/svg" = { 19 - sha256 = "1cwcj73p61q45wqwgqvrvz3aypjyy3fw732xyxdyj6s256hwkn0k"; 20 - version = "1.0.1"; 21 }; 22 23 "elm/project-metadata-utils" = { ··· 25 version = "1.0.0"; 26 }; 27 28 - "elm/browser" = { 29 - sha256 = "1zlmx672glg7fdgkvh5jm47y85pv7pdfr5mkhg6x7ar6k000vyka"; 30 version = "1.0.1"; 31 }; 32 33 - "elm/core" = { 34 - sha256 = "1l0qdbczw91kzz8sx5d5zwz9x662bspy7p21dsr3f2rigxiix2as"; 35 - version = "1.0.2"; 36 - }; 37 - 38 - "elm/http" = { 39 - sha256 = "008bs76mnp48b4dw8qwjj4fyvzbxvlrl4xpa2qh1gg2kfwyw56v1"; 40 - version = "2.0.0"; 41 - }; 42 - 43 "elm/bytes" = { 44 sha256 = "040d7irrawcbnq9jxhzx8p9qacdlw5bncy6lgndd6inm53rvvwbp"; 45 version = "1.0.7"; ··· 55 version = "1.1.0"; 56 }; 57 58 - "elm/url" = { 59 - sha256 = "0av8x5syid40sgpl5vd7pry2rq0q4pga28b4yykn9gd9v12rs3l4"; 60 version = "1.0.0"; 61 }; 62 63 - "elm/time" = { 64 - sha256 = "0vch7i86vn0x8b850w1p69vplll1bnbkp8s383z7pinyg94cm2z1"; 65 version = "1.0.0"; 66 }; 67
··· 5 version = "1.0.0"; 6 }; 7 8 + "elm/browser" = { 9 + sha256 = "1zlmx672glg7fdgkvh5jm47y85pv7pdfr5mkhg6x7ar6k000vyka"; 10 + version = "1.0.1"; 11 + }; 12 + 13 + "elm/core" = { 14 + sha256 = "1l0qdbczw91kzz8sx5d5zwz9x662bspy7p21dsr3f2rigxiix2as"; 15 + version = "1.0.2"; 16 }; 17 18 "elm/html" = { ··· 20 version = "1.0.0"; 21 }; 22 23 + "elm/http" = { 24 + sha256 = "008bs76mnp48b4dw8qwjj4fyvzbxvlrl4xpa2qh1gg2kfwyw56v1"; 25 + version = "2.0.0"; 26 + }; 27 + 28 + "elm/json" = { 29 + sha256 = "1a107nmm905dih4w4mjjkkpdcjbgaf5qjvr7fl30kkpkckfjjnrw"; 30 + version = "1.1.2"; 31 }; 32 33 "elm/project-metadata-utils" = { ··· 35 version = "1.0.0"; 36 }; 37 38 + "elm/svg" = { 39 + sha256 = "1cwcj73p61q45wqwgqvrvz3aypjyy3fw732xyxdyj6s256hwkn0k"; 40 version = "1.0.1"; 41 }; 42 43 "elm/bytes" = { 44 sha256 = "040d7irrawcbnq9jxhzx8p9qacdlw5bncy6lgndd6inm53rvvwbp"; 45 version = "1.0.7"; ··· 55 version = "1.1.0"; 56 }; 57 58 + "elm/time" = { 59 + sha256 = "0vch7i86vn0x8b850w1p69vplll1bnbkp8s383z7pinyg94cm2z1"; 60 version = "1.0.0"; 61 }; 62 63 + "elm/url" = { 64 + sha256 = "0av8x5syid40sgpl5vd7pry2rq0q4pga28b4yykn9gd9v12rs3l4"; 65 version = "1.0.0"; 66 }; 67
+3 -3
pkgs/development/compilers/elm/packages/elm.nix
··· 1 { mkDerivation, ansi-terminal, ansi-wl-pprint, base, binary 2 , bytestring, containers, directory, edit-distance, fetchgit 3 , file-embed, filelock, filepath, ghc-prim, haskeline, HTTP 4 - , http-client, http-client-tls, http-types, language-glsl, mtl 5 , network, parsec, process, raw-strings-qq, scientific, SHA 6 - , snap-core, snap-server, lib, template-haskell, time 7 , unordered-containers, utf8-string, vector, zip-archive 8 }: 9 - 10 mkDerivation { 11 pname = "elm"; 12 version = "0.19.1"; ··· 29 homepage = "https://elm-lang.org"; 30 description = "The `elm` command line interface"; 31 license = lib.licenses.bsd3; 32 }
··· 1 { mkDerivation, ansi-terminal, ansi-wl-pprint, base, binary 2 , bytestring, containers, directory, edit-distance, fetchgit 3 , file-embed, filelock, filepath, ghc-prim, haskeline, HTTP 4 + , http-client, http-client-tls, http-types, language-glsl, lib, mtl 5 , network, parsec, process, raw-strings-qq, scientific, SHA 6 + , snap-core, snap-server, template-haskell, time 7 , unordered-containers, utf8-string, vector, zip-archive 8 }: 9 mkDerivation { 10 pname = "elm"; 11 version = "0.19.1"; ··· 28 homepage = "https://elm-lang.org"; 29 description = "The `elm` command line interface"; 30 license = lib.licenses.bsd3; 31 + mainProgram = "elm"; 32 }
+2325 -868
pkgs/development/compilers/elm/packages/node-packages.nix
··· 4 5 let 6 sources = { 7 "@babel/cli-7.12.10" = { 8 name = "_at_babel_slash_cli"; 9 packageName = "@babel/cli"; ··· 22 sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=="; 23 }; 24 }; 25 - "@babel/code-frame-7.21.4" = { 26 name = "_at_babel_slash_code-frame"; 27 packageName = "@babel/code-frame"; 28 - version = "7.21.4"; 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz"; 31 - sha512 = "LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g=="; 32 }; 33 }; 34 - "@babel/compat-data-7.21.7" = { 35 name = "_at_babel_slash_compat-data"; 36 packageName = "@babel/compat-data"; 37 - version = "7.21.7"; 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz"; 40 - sha512 = "KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA=="; 41 }; 42 }; 43 "@babel/core-7.12.10" = { ··· 49 sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 50 }; 51 }; 52 - "@babel/generator-7.21.5" = { 53 name = "_at_babel_slash_generator"; 54 packageName = "@babel/generator"; 55 - version = "7.21.5"; 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz"; 58 - sha512 = "SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w=="; 59 }; 60 }; 61 - "@babel/helper-annotate-as-pure-7.18.6" = { 62 name = "_at_babel_slash_helper-annotate-as-pure"; 63 packageName = "@babel/helper-annotate-as-pure"; 64 - version = "7.18.6"; 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz"; 67 - sha512 = "duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA=="; 68 }; 69 }; 70 - "@babel/helper-builder-binary-assignment-operator-visitor-7.21.5" = { 71 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 72 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 73 - version = "7.21.5"; 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.21.5.tgz"; 76 - sha512 = "uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g=="; 77 }; 78 }; 79 - "@babel/helper-compilation-targets-7.21.5" = { 80 name = "_at_babel_slash_helper-compilation-targets"; 81 packageName = "@babel/helper-compilation-targets"; 82 - version = "7.21.5"; 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz"; 85 - sha512 = "1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w=="; 86 }; 87 }; 88 - "@babel/helper-create-class-features-plugin-7.21.8" = { 89 name = "_at_babel_slash_helper-create-class-features-plugin"; 90 packageName = "@babel/helper-create-class-features-plugin"; 91 - version = "7.21.8"; 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.8.tgz"; 94 - sha512 = "+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw=="; 95 }; 96 }; 97 - "@babel/helper-create-regexp-features-plugin-7.21.8" = { 98 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 99 packageName = "@babel/helper-create-regexp-features-plugin"; 100 - version = "7.21.8"; 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.8.tgz"; 103 - sha512 = "zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g=="; 104 }; 105 }; 106 - "@babel/helper-environment-visitor-7.21.5" = { 107 name = "_at_babel_slash_helper-environment-visitor"; 108 packageName = "@babel/helper-environment-visitor"; 109 - version = "7.21.5"; 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz"; 112 - sha512 = "IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ=="; 113 }; 114 }; 115 - "@babel/helper-function-name-7.21.0" = { 116 name = "_at_babel_slash_helper-function-name"; 117 packageName = "@babel/helper-function-name"; 118 - version = "7.21.0"; 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz"; 121 - sha512 = "HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg=="; 122 }; 123 }; 124 - "@babel/helper-hoist-variables-7.18.6" = { 125 name = "_at_babel_slash_helper-hoist-variables"; 126 packageName = "@babel/helper-hoist-variables"; 127 - version = "7.18.6"; 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz"; 130 - sha512 = "UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="; 131 }; 132 }; 133 - "@babel/helper-member-expression-to-functions-7.21.5" = { 134 name = "_at_babel_slash_helper-member-expression-to-functions"; 135 packageName = "@babel/helper-member-expression-to-functions"; 136 - version = "7.21.5"; 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.5.tgz"; 139 - sha512 = "nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg=="; 140 }; 141 }; 142 - "@babel/helper-module-imports-7.21.4" = { 143 name = "_at_babel_slash_helper-module-imports"; 144 packageName = "@babel/helper-module-imports"; 145 - version = "7.21.4"; 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz"; 148 - sha512 = "orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg=="; 149 }; 150 }; 151 - "@babel/helper-module-transforms-7.21.5" = { 152 name = "_at_babel_slash_helper-module-transforms"; 153 packageName = "@babel/helper-module-transforms"; 154 - version = "7.21.5"; 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz"; 157 - sha512 = "bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw=="; 158 }; 159 }; 160 - "@babel/helper-optimise-call-expression-7.18.6" = { 161 name = "_at_babel_slash_helper-optimise-call-expression"; 162 packageName = "@babel/helper-optimise-call-expression"; 163 - version = "7.18.6"; 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz"; 166 - sha512 = "HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA=="; 167 }; 168 }; 169 - "@babel/helper-plugin-utils-7.21.5" = { 170 name = "_at_babel_slash_helper-plugin-utils"; 171 packageName = "@babel/helper-plugin-utils"; 172 - version = "7.21.5"; 173 src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz"; 175 - sha512 = "0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg=="; 176 }; 177 }; 178 - "@babel/helper-remap-async-to-generator-7.18.9" = { 179 name = "_at_babel_slash_helper-remap-async-to-generator"; 180 packageName = "@babel/helper-remap-async-to-generator"; 181 - version = "7.18.9"; 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz"; 184 - sha512 = "dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA=="; 185 }; 186 }; 187 - "@babel/helper-replace-supers-7.21.5" = { 188 name = "_at_babel_slash_helper-replace-supers"; 189 packageName = "@babel/helper-replace-supers"; 190 - version = "7.21.5"; 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.21.5.tgz"; 193 - sha512 = "/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg=="; 194 }; 195 }; 196 - "@babel/helper-simple-access-7.21.5" = { 197 name = "_at_babel_slash_helper-simple-access"; 198 packageName = "@babel/helper-simple-access"; 199 - version = "7.21.5"; 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz"; 202 - sha512 = "ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg=="; 203 }; 204 }; 205 - "@babel/helper-skip-transparent-expression-wrappers-7.20.0" = { 206 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 207 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 208 - version = "7.20.0"; 209 src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz"; 211 - sha512 = "5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg=="; 212 }; 213 }; 214 - "@babel/helper-split-export-declaration-7.18.6" = { 215 name = "_at_babel_slash_helper-split-export-declaration"; 216 packageName = "@babel/helper-split-export-declaration"; 217 - version = "7.18.6"; 218 src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz"; 220 - sha512 = "bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="; 221 }; 222 }; 223 - "@babel/helper-string-parser-7.21.5" = { 224 name = "_at_babel_slash_helper-string-parser"; 225 packageName = "@babel/helper-string-parser"; 226 - version = "7.21.5"; 227 src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz"; 229 - sha512 = "5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w=="; 230 }; 231 }; 232 - "@babel/helper-validator-identifier-7.19.1" = { 233 name = "_at_babel_slash_helper-validator-identifier"; 234 packageName = "@babel/helper-validator-identifier"; 235 - version = "7.19.1"; 236 src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"; 238 - sha512 = "awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="; 239 }; 240 }; 241 - "@babel/helper-validator-option-7.21.0" = { 242 name = "_at_babel_slash_helper-validator-option"; 243 packageName = "@babel/helper-validator-option"; 244 - version = "7.21.0"; 245 src = fetchurl { 246 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz"; 247 - sha512 = "rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ=="; 248 }; 249 }; 250 - "@babel/helper-wrap-function-7.20.5" = { 251 name = "_at_babel_slash_helper-wrap-function"; 252 packageName = "@babel/helper-wrap-function"; 253 - version = "7.20.5"; 254 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz"; 256 - sha512 = "bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q=="; 257 }; 258 }; 259 - "@babel/helpers-7.21.5" = { 260 name = "_at_babel_slash_helpers"; 261 packageName = "@babel/helpers"; 262 - version = "7.21.5"; 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz"; 265 - sha512 = "BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA=="; 266 }; 267 }; 268 - "@babel/highlight-7.18.6" = { 269 name = "_at_babel_slash_highlight"; 270 packageName = "@babel/highlight"; 271 - version = "7.18.6"; 272 src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"; 274 - sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 275 }; 276 }; 277 - "@babel/parser-7.21.8" = { 278 name = "_at_babel_slash_parser"; 279 packageName = "@babel/parser"; 280 - version = "7.21.8"; 281 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz"; 283 - sha512 = "6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA=="; 284 }; 285 }; 286 "@babel/plugin-proposal-async-generator-functions-7.20.7" = { ··· 508 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 509 }; 510 }; 511 - "@babel/plugin-transform-arrow-functions-7.21.5" = { 512 name = "_at_babel_slash_plugin-transform-arrow-functions"; 513 packageName = "@babel/plugin-transform-arrow-functions"; 514 - version = "7.21.5"; 515 src = fetchurl { 516 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz"; 517 - sha512 = "wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA=="; 518 }; 519 }; 520 - "@babel/plugin-transform-async-to-generator-7.20.7" = { 521 name = "_at_babel_slash_plugin-transform-async-to-generator"; 522 packageName = "@babel/plugin-transform-async-to-generator"; 523 - version = "7.20.7"; 524 src = fetchurl { 525 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz"; 526 - sha512 = "Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q=="; 527 }; 528 }; 529 - "@babel/plugin-transform-block-scoped-functions-7.18.6" = { 530 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 531 packageName = "@babel/plugin-transform-block-scoped-functions"; 532 - version = "7.18.6"; 533 src = fetchurl { 534 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz"; 535 - sha512 = "ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="; 536 }; 537 }; 538 - "@babel/plugin-transform-block-scoping-7.21.0" = { 539 name = "_at_babel_slash_plugin-transform-block-scoping"; 540 packageName = "@babel/plugin-transform-block-scoping"; 541 - version = "7.21.0"; 542 src = fetchurl { 543 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz"; 544 - sha512 = "Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ=="; 545 }; 546 }; 547 - "@babel/plugin-transform-classes-7.21.0" = { 548 name = "_at_babel_slash_plugin-transform-classes"; 549 packageName = "@babel/plugin-transform-classes"; 550 - version = "7.21.0"; 551 src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz"; 553 - sha512 = "RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ=="; 554 }; 555 }; 556 - "@babel/plugin-transform-computed-properties-7.21.5" = { 557 name = "_at_babel_slash_plugin-transform-computed-properties"; 558 packageName = "@babel/plugin-transform-computed-properties"; 559 - version = "7.21.5"; 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz"; 562 - sha512 = "TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q=="; 563 }; 564 }; 565 - "@babel/plugin-transform-destructuring-7.21.3" = { 566 name = "_at_babel_slash_plugin-transform-destructuring"; 567 packageName = "@babel/plugin-transform-destructuring"; 568 - version = "7.21.3"; 569 src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz"; 571 - sha512 = "bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA=="; 572 }; 573 }; 574 - "@babel/plugin-transform-dotall-regex-7.18.6" = { 575 name = "_at_babel_slash_plugin-transform-dotall-regex"; 576 packageName = "@babel/plugin-transform-dotall-regex"; 577 - version = "7.18.6"; 578 src = fetchurl { 579 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz"; 580 - sha512 = "6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg=="; 581 }; 582 }; 583 - "@babel/plugin-transform-duplicate-keys-7.18.9" = { 584 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 585 packageName = "@babel/plugin-transform-duplicate-keys"; 586 - version = "7.18.9"; 587 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz"; 589 - sha512 = "d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw=="; 590 }; 591 }; 592 - "@babel/plugin-transform-exponentiation-operator-7.18.6" = { 593 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 594 packageName = "@babel/plugin-transform-exponentiation-operator"; 595 - version = "7.18.6"; 596 src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz"; 598 - sha512 = "wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw=="; 599 }; 600 }; 601 - "@babel/plugin-transform-for-of-7.21.5" = { 602 name = "_at_babel_slash_plugin-transform-for-of"; 603 packageName = "@babel/plugin-transform-for-of"; 604 - version = "7.21.5"; 605 src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz"; 607 - sha512 = "nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ=="; 608 }; 609 }; 610 - "@babel/plugin-transform-function-name-7.18.9" = { 611 name = "_at_babel_slash_plugin-transform-function-name"; 612 packageName = "@babel/plugin-transform-function-name"; 613 - version = "7.18.9"; 614 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz"; 616 - sha512 = "WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ=="; 617 }; 618 }; 619 - "@babel/plugin-transform-literals-7.18.9" = { 620 name = "_at_babel_slash_plugin-transform-literals"; 621 packageName = "@babel/plugin-transform-literals"; 622 - version = "7.18.9"; 623 src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz"; 625 - sha512 = "IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg=="; 626 }; 627 }; 628 - "@babel/plugin-transform-member-expression-literals-7.18.6" = { 629 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 630 packageName = "@babel/plugin-transform-member-expression-literals"; 631 - version = "7.18.6"; 632 src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz"; 634 - sha512 = "qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA=="; 635 }; 636 }; 637 - "@babel/plugin-transform-modules-amd-7.20.11" = { 638 name = "_at_babel_slash_plugin-transform-modules-amd"; 639 packageName = "@babel/plugin-transform-modules-amd"; 640 - version = "7.20.11"; 641 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz"; 643 - sha512 = "NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g=="; 644 }; 645 }; 646 - "@babel/plugin-transform-modules-commonjs-7.21.5" = { 647 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 648 packageName = "@babel/plugin-transform-modules-commonjs"; 649 - version = "7.21.5"; 650 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz"; 652 - sha512 = "OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ=="; 653 }; 654 }; 655 - "@babel/plugin-transform-modules-systemjs-7.20.11" = { 656 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 657 packageName = "@babel/plugin-transform-modules-systemjs"; 658 - version = "7.20.11"; 659 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz"; 661 - sha512 = "vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw=="; 662 }; 663 }; 664 - "@babel/plugin-transform-modules-umd-7.18.6" = { 665 name = "_at_babel_slash_plugin-transform-modules-umd"; 666 packageName = "@babel/plugin-transform-modules-umd"; 667 - version = "7.18.6"; 668 src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz"; 670 - sha512 = "dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ=="; 671 }; 672 }; 673 - "@babel/plugin-transform-named-capturing-groups-regex-7.20.5" = { 674 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 675 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 676 - version = "7.20.5"; 677 src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz"; 679 - sha512 = "mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA=="; 680 }; 681 }; 682 - "@babel/plugin-transform-new-target-7.18.6" = { 683 name = "_at_babel_slash_plugin-transform-new-target"; 684 packageName = "@babel/plugin-transform-new-target"; 685 - version = "7.18.6"; 686 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz"; 688 - sha512 = "DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw=="; 689 }; 690 }; 691 - "@babel/plugin-transform-object-super-7.18.6" = { 692 name = "_at_babel_slash_plugin-transform-object-super"; 693 packageName = "@babel/plugin-transform-object-super"; 694 - version = "7.18.6"; 695 src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz"; 697 - sha512 = "uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA=="; 698 }; 699 }; 700 - "@babel/plugin-transform-parameters-7.21.3" = { 701 name = "_at_babel_slash_plugin-transform-parameters"; 702 packageName = "@babel/plugin-transform-parameters"; 703 - version = "7.21.3"; 704 src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz"; 706 - sha512 = "Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ=="; 707 }; 708 }; 709 - "@babel/plugin-transform-property-literals-7.18.6" = { 710 name = "_at_babel_slash_plugin-transform-property-literals"; 711 packageName = "@babel/plugin-transform-property-literals"; 712 - version = "7.18.6"; 713 src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz"; 715 - sha512 = "cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg=="; 716 }; 717 }; 718 - "@babel/plugin-transform-regenerator-7.21.5" = { 719 name = "_at_babel_slash_plugin-transform-regenerator"; 720 packageName = "@babel/plugin-transform-regenerator"; 721 - version = "7.21.5"; 722 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz"; 724 - sha512 = "ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w=="; 725 }; 726 }; 727 - "@babel/plugin-transform-reserved-words-7.18.6" = { 728 name = "_at_babel_slash_plugin-transform-reserved-words"; 729 packageName = "@babel/plugin-transform-reserved-words"; 730 - version = "7.18.6"; 731 src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz"; 733 - sha512 = "oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA=="; 734 }; 735 }; 736 "@babel/plugin-transform-runtime-7.12.10" = { ··· 742 sha512 = "xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA=="; 743 }; 744 }; 745 - "@babel/plugin-transform-shorthand-properties-7.18.6" = { 746 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 747 packageName = "@babel/plugin-transform-shorthand-properties"; 748 - version = "7.18.6"; 749 src = fetchurl { 750 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz"; 751 - sha512 = "eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw=="; 752 }; 753 }; 754 - "@babel/plugin-transform-spread-7.20.7" = { 755 name = "_at_babel_slash_plugin-transform-spread"; 756 packageName = "@babel/plugin-transform-spread"; 757 - version = "7.20.7"; 758 src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz"; 760 - sha512 = "ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw=="; 761 }; 762 }; 763 - "@babel/plugin-transform-sticky-regex-7.18.6" = { 764 name = "_at_babel_slash_plugin-transform-sticky-regex"; 765 packageName = "@babel/plugin-transform-sticky-regex"; 766 - version = "7.18.6"; 767 src = fetchurl { 768 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz"; 769 - sha512 = "kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q=="; 770 }; 771 }; 772 - "@babel/plugin-transform-template-literals-7.18.9" = { 773 name = "_at_babel_slash_plugin-transform-template-literals"; 774 packageName = "@babel/plugin-transform-template-literals"; 775 - version = "7.18.9"; 776 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz"; 778 - sha512 = "S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA=="; 779 }; 780 }; 781 - "@babel/plugin-transform-typeof-symbol-7.18.9" = { 782 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 783 packageName = "@babel/plugin-transform-typeof-symbol"; 784 - version = "7.18.9"; 785 src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz"; 787 - sha512 = "SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw=="; 788 }; 789 }; 790 - "@babel/plugin-transform-unicode-escapes-7.21.5" = { 791 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 792 packageName = "@babel/plugin-transform-unicode-escapes"; 793 - version = "7.21.5"; 794 src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz"; 796 - sha512 = "LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg=="; 797 }; 798 }; 799 - "@babel/plugin-transform-unicode-regex-7.18.6" = { 800 name = "_at_babel_slash_plugin-transform-unicode-regex"; 801 packageName = "@babel/plugin-transform-unicode-regex"; 802 - version = "7.18.6"; 803 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz"; 805 - sha512 = "gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA=="; 806 }; 807 }; 808 "@babel/preset-env-7.12.10" = { ··· 814 sha512 = "Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA=="; 815 }; 816 }; 817 - "@babel/preset-modules-0.1.5" = { 818 name = "_at_babel_slash_preset-modules"; 819 packageName = "@babel/preset-modules"; 820 - version = "0.1.5"; 821 src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz"; 823 - sha512 = "A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA=="; 824 }; 825 }; 826 "@babel/regjsgen-0.8.0" = { ··· 841 sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 842 }; 843 }; 844 - "@babel/template-7.20.7" = { 845 name = "_at_babel_slash_template"; 846 packageName = "@babel/template"; 847 - version = "7.20.7"; 848 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz"; 850 - sha512 = "8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw=="; 851 }; 852 }; 853 - "@babel/traverse-7.21.5" = { 854 name = "_at_babel_slash_traverse"; 855 packageName = "@babel/traverse"; 856 - version = "7.21.5"; 857 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz"; 859 - sha512 = "AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw=="; 860 }; 861 }; 862 - "@babel/types-7.21.5" = { 863 name = "_at_babel_slash_types"; 864 packageName = "@babel/types"; 865 - version = "7.21.5"; 866 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz"; 868 - sha512 = "m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q=="; 869 }; 870 }; 871 "@hapi/address-2.1.4" = { ··· 913 sha512 = "tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ=="; 914 }; 915 }; 916 "@jridgewell/gen-mapping-0.3.3" = { 917 name = "_at_jridgewell_slash_gen-mapping"; 918 packageName = "@jridgewell/gen-mapping"; ··· 922 sha512 = "HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="; 923 }; 924 }; 925 - "@jridgewell/resolve-uri-3.1.0" = { 926 name = "_at_jridgewell_slash_resolve-uri"; 927 packageName = "@jridgewell/resolve-uri"; 928 - version = "3.1.0"; 929 src = fetchurl { 930 - url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"; 931 - sha512 = "F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="; 932 }; 933 }; 934 "@jridgewell/set-array-1.1.2" = { ··· 940 sha512 = "xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="; 941 }; 942 }; 943 - "@jridgewell/source-map-0.3.3" = { 944 name = "_at_jridgewell_slash_source-map"; 945 packageName = "@jridgewell/source-map"; 946 - version = "0.3.3"; 947 src = fetchurl { 948 - url = "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz"; 949 - sha512 = "b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg=="; 950 - }; 951 - }; 952 - "@jridgewell/sourcemap-codec-1.4.14" = { 953 - name = "_at_jridgewell_slash_sourcemap-codec"; 954 - packageName = "@jridgewell/sourcemap-codec"; 955 - version = "1.4.14"; 956 - src = fetchurl { 957 - url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"; 958 - sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; 959 }; 960 }; 961 "@jridgewell/sourcemap-codec-1.4.15" = { ··· 967 sha512 = "eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="; 968 }; 969 }; 970 - "@jridgewell/trace-mapping-0.3.18" = { 971 name = "_at_jridgewell_slash_trace-mapping"; 972 packageName = "@jridgewell/trace-mapping"; 973 - version = "0.3.18"; 974 src = fetchurl { 975 - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz"; 976 - sha512 = "w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA=="; 977 }; 978 }; 979 "@kwsites/file-exists-1.1.1" = { ··· 1039 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 1040 }; 1041 }; 1042 "@sindresorhus/is-0.14.0" = { 1043 name = "_at_sindresorhus_slash_is"; 1044 packageName = "@sindresorhus/is"; ··· 1084 sha512 = "4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w=="; 1085 }; 1086 }; 1087 "@types/cacheable-request-6.0.3" = { 1088 name = "_at_types_slash_cacheable-request"; 1089 packageName = "@types/cacheable-request"; ··· 1147 sha512 = "h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w=="; 1148 }; 1149 }; 1150 - "@types/http-cache-semantics-4.0.1" = { 1151 name = "_at_types_slash_http-cache-semantics"; 1152 packageName = "@types/http-cache-semantics"; 1153 - version = "4.0.1"; 1154 src = fetchurl { 1155 - url = "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz"; 1156 - sha512 = "SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ=="; 1157 }; 1158 }; 1159 - "@types/http-proxy-1.17.11" = { 1160 name = "_at_types_slash_http-proxy"; 1161 packageName = "@types/http-proxy"; 1162 - version = "1.17.11"; 1163 src = fetchurl { 1164 - url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz"; 1165 - sha512 = "HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA=="; 1166 }; 1167 }; 1168 "@types/jest-27.5.2" = { ··· 1174 sha512 = "mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA=="; 1175 }; 1176 }; 1177 - "@types/json-schema-7.0.11" = { 1178 name = "_at_types_slash_json-schema"; 1179 packageName = "@types/json-schema"; 1180 - version = "7.0.11"; 1181 src = fetchurl { 1182 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz"; 1183 - sha512 = "wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="; 1184 }; 1185 }; 1186 "@types/keyv-3.1.4" = { ··· 1192 sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="; 1193 }; 1194 }; 1195 - "@types/lodash-4.14.194" = { 1196 name = "_at_types_slash_lodash"; 1197 packageName = "@types/lodash"; 1198 - version = "4.14.194"; 1199 src = fetchurl { 1200 - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz"; 1201 - sha512 = "r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g=="; 1202 }; 1203 }; 1204 "@types/minimatch-5.1.2" = { ··· 1219 sha512 = "U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg=="; 1220 }; 1221 }; 1222 - "@types/node-18.16.3" = { 1223 name = "_at_types_slash_node"; 1224 packageName = "@types/node"; 1225 - version = "18.16.3"; 1226 src = fetchurl { 1227 - url = "https://registry.npmjs.org/@types/node/-/node-18.16.3.tgz"; 1228 - sha512 = "OPs5WnnT1xkCBiuQrZA4+YAV4HEJejmHneyraIaxsbev5yCEr6KMwINNFP9wQeFIw8FWcoTqF3vQsa5CDaI+8Q=="; 1229 }; 1230 }; 1231 "@types/node-8.10.66" = { ··· 1246 sha512 = "//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="; 1247 }; 1248 }; 1249 - "@types/q-1.5.5" = { 1250 name = "_at_types_slash_q"; 1251 packageName = "@types/q"; 1252 - version = "1.5.5"; 1253 src = fetchurl { 1254 - url = "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz"; 1255 - sha512 = "L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ=="; 1256 }; 1257 }; 1258 - "@types/responselike-1.0.0" = { 1259 name = "_at_types_slash_responselike"; 1260 packageName = "@types/responselike"; 1261 - version = "1.0.0"; 1262 src = fetchurl { 1263 - url = "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz"; 1264 - sha512 = "85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA=="; 1265 }; 1266 }; 1267 "@types/rimraf-2.0.5" = { ··· 1273 sha512 = "YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g=="; 1274 }; 1275 }; 1276 - "@types/source-list-map-0.1.2" = { 1277 name = "_at_types_slash_source-list-map"; 1278 packageName = "@types/source-list-map"; 1279 - version = "0.1.2"; 1280 src = fetchurl { 1281 - url = "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz"; 1282 - sha512 = "K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA=="; 1283 }; 1284 }; 1285 - "@types/tapable-1.0.8" = { 1286 name = "_at_types_slash_tapable"; 1287 packageName = "@types/tapable"; 1288 - version = "1.0.8"; 1289 src = fetchurl { 1290 - url = "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz"; 1291 - sha512 = "ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ=="; 1292 }; 1293 }; 1294 "@types/tmp-0.0.33" = { ··· 1300 sha512 = "gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ=="; 1301 }; 1302 }; 1303 - "@types/uglify-js-3.17.1" = { 1304 name = "_at_types_slash_uglify-js"; 1305 packageName = "@types/uglify-js"; 1306 - version = "3.17.1"; 1307 src = fetchurl { 1308 - url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.1.tgz"; 1309 - sha512 = "GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g=="; 1310 }; 1311 }; 1312 - "@types/webpack-4.41.33" = { 1313 name = "_at_types_slash_webpack"; 1314 packageName = "@types/webpack"; 1315 - version = "4.41.33"; 1316 src = fetchurl { 1317 - url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.33.tgz"; 1318 - sha512 = "PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g=="; 1319 }; 1320 }; 1321 - "@types/webpack-sources-3.2.0" = { 1322 name = "_at_types_slash_webpack-sources"; 1323 packageName = "@types/webpack-sources"; 1324 - version = "3.2.0"; 1325 src = fetchurl { 1326 - url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz"; 1327 - sha512 = "Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg=="; 1328 }; 1329 }; 1330 "@webassemblyjs/ast-1.9.0" = { ··· 1534 sha512 = "XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="; 1535 }; 1536 }; 1537 - "acorn-8.8.2" = { 1538 name = "acorn"; 1539 packageName = "acorn"; 1540 - version = "8.8.2"; 1541 src = fetchurl { 1542 - url = "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz"; 1543 - sha512 = "xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw=="; 1544 }; 1545 }; 1546 "address-1.0.3" = { ··· 1552 sha512 = "z55ocwKBRLryBs394Sm3ushTtBeg6VAeuku7utSoSnsJKvKcnXFIyC6vh27n3rXyxSgkJBBCAvyOn7gSUcTYjg=="; 1553 }; 1554 }; 1555 "ajv-6.12.6" = { 1556 name = "ajv"; 1557 packageName = "ajv"; ··· 1669 sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 1670 }; 1671 }; 1672 "ansi-styles-2.2.1" = { 1673 name = "ansi-styles"; 1674 packageName = "ansi-styles"; ··· 1705 sha512 = "Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="; 1706 }; 1707 }; 1708 "anymatch-2.0.0" = { 1709 name = "anymatch"; 1710 packageName = "anymatch"; ··· 1867 sha512 = "SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ=="; 1868 }; 1869 }; 1870 - "array.prototype.reduce-1.0.5" = { 1871 name = "array.prototype.reduce"; 1872 packageName = "array.prototype.reduce"; 1873 - version = "1.0.5"; 1874 src = fetchurl { 1875 - url = "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz"; 1876 - sha512 = "kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q=="; 1877 }; 1878 }; 1879 "asap-2.0.6" = { ··· 1903 sha512 = "+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA=="; 1904 }; 1905 }; 1906 - "assert-1.5.0" = { 1907 name = "assert"; 1908 packageName = "assert"; 1909 - version = "1.5.0"; 1910 src = fetchurl { 1911 - url = "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz"; 1912 - sha512 = "EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA=="; 1913 }; 1914 }; 1915 "assert-plus-1.0.0" = { ··· 2425 sha512 = "VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q=="; 2426 }; 2427 }; 2428 - "browserslist-4.21.5" = { 2429 name = "browserslist"; 2430 packageName = "browserslist"; 2431 - version = "4.21.5"; 2432 src = fetchurl { 2433 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz"; 2434 - sha512 = "tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w=="; 2435 }; 2436 }; 2437 "buffer-4.9.2" = { ··· 2506 sha512 = "HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ=="; 2507 }; 2508 }; 2509 "bytes-3.0.0" = { 2510 name = "bytes"; 2511 packageName = "bytes"; ··· 2551 sha512 = "a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ=="; 2552 }; 2553 }; 2554 "cache-base-1.0.1" = { 2555 name = "cache-base"; 2556 packageName = "cache-base"; ··· 2587 sha512 = "Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg=="; 2588 }; 2589 }; 2590 - "cacheable-request-7.0.2" = { 2591 name = "cacheable-request"; 2592 packageName = "cacheable-request"; 2593 - version = "7.0.2"; 2594 src = fetchurl { 2595 - url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz"; 2596 - sha512 = "pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew=="; 2597 }; 2598 }; 2599 "call-bind-1.0.2" = { ··· 2695 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2696 }; 2697 }; 2698 - "caniuse-lite-1.0.30001482" = { 2699 name = "caniuse-lite"; 2700 packageName = "caniuse-lite"; 2701 - version = "1.0.30001482"; 2702 src = fetchurl { 2703 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz"; 2704 - sha512 = "F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ=="; 2705 }; 2706 }; 2707 "case-sensitive-paths-webpack-plugin-2.3.0" = { ··· 2839 sha512 = "IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A=="; 2840 }; 2841 }; 2842 - "chokidar-3.5.2" = { 2843 - name = "chokidar"; 2844 - packageName = "chokidar"; 2845 - version = "3.5.2"; 2846 - src = fetchurl { 2847 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"; 2848 - sha512 = "ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="; 2849 - }; 2850 - }; 2851 "chokidar-3.5.3" = { 2852 name = "chokidar"; 2853 packageName = "chokidar"; ··· 2911 sha512 = "EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A=="; 2912 }; 2913 }; 2914 "cli-cursor-2.1.0" = { 2915 name = "cli-cursor"; 2916 packageName = "cli-cursor"; ··· 2929 sha512 = "I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw=="; 2930 }; 2931 }; 2932 - "cli-spinners-2.9.0" = { 2933 name = "cli-spinners"; 2934 packageName = "cli-spinners"; 2935 - version = "2.9.0"; 2936 src = fetchurl { 2937 - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz"; 2938 - sha512 = "4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g=="; 2939 }; 2940 }; 2941 "cli-table-0.3.4" = { ··· 3127 sha512 = "LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="; 3128 }; 3129 }; 3130 "commander-2.14.1" = { 3131 name = "commander"; 3132 packageName = "commander"; ··· 3179 src = fetchurl { 3180 url = "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz"; 3181 sha512 = "U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="; 3182 - }; 3183 - }; 3184 - "commander-8.3.0" = { 3185 - name = "commander"; 3186 - packageName = "commander"; 3187 - version = "8.3.0"; 3188 - src = fetchurl { 3189 - url = "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz"; 3190 - sha512 = "OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="; 3191 }; 3192 }; 3193 "commander-9.5.0" = { ··· 3388 sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="; 3389 }; 3390 }; 3391 "copy-concurrently-1.0.5" = { 3392 name = "copy-concurrently"; 3393 packageName = "copy-concurrently"; ··· 3424 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 3425 }; 3426 }; 3427 - "core-js-compat-3.30.1" = { 3428 name = "core-js-compat"; 3429 packageName = "core-js-compat"; 3430 - version = "3.30.1"; 3431 src = fetchurl { 3432 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz"; 3433 - sha512 = "d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw=="; 3434 }; 3435 }; 3436 "core-util-is-1.0.2" = { ··· 3739 sha512 = "TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA=="; 3740 }; 3741 }; 3742 - "cyclist-1.0.1" = { 3743 name = "cyclist"; 3744 packageName = "cyclist"; 3745 - version = "1.0.1"; 3746 src = fetchurl { 3747 - url = "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz"; 3748 - sha512 = "NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A=="; 3749 }; 3750 }; 3751 "d-1.0.1" = { ··· 3901 sha512 = "4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg=="; 3902 }; 3903 }; 3904 - "define-properties-1.2.0" = { 3905 name = "define-properties"; 3906 packageName = "define-properties"; 3907 - version = "1.2.0"; 3908 src = fetchurl { 3909 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz"; 3910 - sha512 = "xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA=="; 3911 }; 3912 }; 3913 "define-property-0.2.5" = { ··· 3982 sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; 3983 }; 3984 }; 3985 - "des.js-1.0.1" = { 3986 name = "des.js"; 3987 packageName = "des.js"; 3988 - version = "1.0.1"; 3989 src = fetchurl { 3990 - url = "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz"; 3991 - sha512 = "Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA=="; 3992 }; 3993 }; 3994 "destroy-1.0.4" = { ··· 4009 sha512 = "2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="; 4010 }; 4011 }; 4012 "detect-node-2.1.0" = { 4013 name = "detect-node"; 4014 packageName = "detect-node"; ··· 4234 sha512 = "07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g=="; 4235 }; 4236 }; 4237 "ecc-jsbn-0.1.2" = { 4238 name = "ecc-jsbn"; 4239 packageName = "ecc-jsbn"; ··· 4252 sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; 4253 }; 4254 }; 4255 - "electron-to-chromium-1.4.382" = { 4256 name = "electron-to-chromium"; 4257 packageName = "electron-to-chromium"; 4258 - version = "1.4.382"; 4259 src = fetchurl { 4260 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.382.tgz"; 4261 - sha512 = "czMavlW52VIPgutbVL9JnZIZuFijzsG1ww/1z2Otu1r1q+9Qe2bTsH3My3sZarlvwyqHM6+mnZfEnt2Vr4dsIg=="; 4262 }; 4263 }; 4264 "elliptic-6.5.4" = { ··· 4360 sha512 = "5GV3WkJ8R/faOP1hwElQdNuCt8tKx2+1lsMrdeIYWSFz01Kp9gJl/R6zGtp4QUyrUtO8KnHsxjHrQNUf2CHkrg=="; 4361 }; 4362 }; 4363 - "elm-tooling-1.14.0" = { 4364 name = "elm-tooling"; 4365 packageName = "elm-tooling"; 4366 - version = "1.14.0"; 4367 src = fetchurl { 4368 - url = "https://registry.npmjs.org/elm-tooling/-/elm-tooling-1.14.0.tgz"; 4369 - sha512 = "cIbK3gfYWK086HsqOIGM4reIYcV/FF2R/8jIJ6ZUy1/RSkYFUv2BgPTGYYZo1Io9oymmbwoCWWleNtw7LgGL2w=="; 4370 }; 4371 }; 4372 "elm-webpack-loader-6.0.1" = { ··· 4403 src = fetchurl { 4404 url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"; 4405 sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; 4406 }; 4407 }; 4408 "emojis-list-2.1.0" = { ··· 4466 src = fetchurl { 4467 url = "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz"; 4468 sha512 = "Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg=="; 4469 }; 4470 }; 4471 "errno-0.1.8" = { ··· 4486 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 4487 }; 4488 }; 4489 - "es-abstract-1.21.2" = { 4490 name = "es-abstract"; 4491 packageName = "es-abstract"; 4492 - version = "1.21.2"; 4493 src = fetchurl { 4494 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz"; 4495 - sha512 = "y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg=="; 4496 }; 4497 }; 4498 "es-array-method-boxes-properly-1.0.0" = { ··· 4556 src = fetchurl { 4557 url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz"; 4558 sha512 = "NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA=="; 4559 }; 4560 }; 4561 "escalade-3.1.1" = { ··· 4873 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 4874 }; 4875 }; 4876 - "fast-diff-1.2.0" = { 4877 name = "fast-diff"; 4878 packageName = "fast-diff"; 4879 - version = "1.2.0"; 4880 src = fetchurl { 4881 - url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz"; 4882 - sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; 4883 }; 4884 }; 4885 "fast-glob-2.2.7" = { ··· 4891 sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; 4892 }; 4893 }; 4894 - "fast-glob-3.2.12" = { 4895 name = "fast-glob"; 4896 packageName = "fast-glob"; 4897 - version = "3.2.12"; 4898 src = fetchurl { 4899 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz"; 4900 - sha512 = "DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w=="; 4901 }; 4902 }; 4903 "fast-json-stable-stringify-2.1.0" = { ··· 4909 sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 4910 }; 4911 }; 4912 - "fast-levenshtein-3.0.0" = { 4913 - name = "fast-levenshtein"; 4914 - packageName = "fast-levenshtein"; 4915 - version = "3.0.0"; 4916 - src = fetchurl { 4917 - url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz"; 4918 - sha512 = "hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ=="; 4919 - }; 4920 - }; 4921 "fastest-levenshtein-1.0.16" = { 4922 name = "fastest-levenshtein"; 4923 packageName = "fastest-levenshtein"; ··· 5197 sha512 = "SDgHBgV+RCjrYs8aUwCb9rTgbTVuSdzvFmLaChsLre1yf+D64khCW++VYciaByZ8Rm0uKF8R/XEpXuTRSGUM1A=="; 5198 }; 5199 }; 5200 - "follow-redirects-1.15.2" = { 5201 name = "follow-redirects"; 5202 packageName = "follow-redirects"; 5203 - version = "1.15.2"; 5204 src = fetchurl { 5205 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"; 5206 - sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="; 5207 }; 5208 }; 5209 "for-each-0.3.3" = { ··· 5224 sha512 = "7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ=="; 5225 }; 5226 }; 5227 "forever-agent-0.6.1" = { 5228 name = "forever-agent"; 5229 packageName = "forever-agent"; ··· 5251 sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="; 5252 }; 5253 }; 5254 - "fraction.js-4.2.0" = { 5255 name = "fraction.js"; 5256 packageName = "fraction.js"; 5257 - version = "4.2.0"; 5258 src = fetchurl { 5259 - url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz"; 5260 - sha512 = "MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA=="; 5261 }; 5262 }; 5263 "fragment-cache-0.2.1" = { ··· 5287 sha512 = "OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g=="; 5288 }; 5289 }; 5290 - "fs-extra-10.1.0" = { 5291 name = "fs-extra"; 5292 packageName = "fs-extra"; 5293 - version = "10.1.0"; 5294 src = fetchurl { 5295 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz"; 5296 - sha512 = "oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ=="; 5297 }; 5298 }; 5299 "fs-extra-2.0.0" = { ··· 5377 sha512 = "V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg=="; 5378 }; 5379 }; 5380 "fs-readdir-recursive-1.1.0" = { 5381 name = "fs-readdir-recursive"; 5382 packageName = "fs-readdir-recursive"; ··· 5422 sha512 = "Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ=="; 5423 }; 5424 }; 5425 - "fsevents-2.3.2" = { 5426 name = "fsevents"; 5427 packageName = "fsevents"; 5428 - version = "2.3.2"; 5429 src = fetchurl { 5430 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"; 5431 - sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; 5432 }; 5433 }; 5434 "function-bind-1.1.1" = { ··· 5440 sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 5441 }; 5442 }; 5443 - "function.prototype.name-1.1.5" = { 5444 name = "function.prototype.name"; 5445 packageName = "function.prototype.name"; 5446 - version = "1.1.5"; 5447 src = fetchurl { 5448 - url = "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz"; 5449 - sha512 = "uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA=="; 5450 }; 5451 }; 5452 "functions-have-names-1.2.3" = { ··· 5485 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 5486 }; 5487 }; 5488 - "get-intrinsic-1.2.0" = { 5489 name = "get-intrinsic"; 5490 packageName = "get-intrinsic"; 5491 - version = "1.2.0"; 5492 src = fetchurl { 5493 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz"; 5494 - sha512 = "L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q=="; 5495 }; 5496 }; 5497 "get-own-enumerable-property-symbols-3.0.2" = { ··· 5584 sha512 = "0pcXixfRCfLXdkwC/FJxiYEg5sYnbqYqtMmtXRzlKrStI9tLev7G/PDuFH2GmySJQ3ix5YUPRN/OJEuFD827EA=="; 5585 }; 5586 }; 5587 "glob-7.1.4" = { 5588 name = "glob"; 5589 packageName = "glob"; ··· 5674 sha512 = "sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA=="; 5675 }; 5676 }; 5677 - "globby-11.0.4" = { 5678 name = "globby"; 5679 packageName = "globby"; 5680 - version = "11.0.4"; 5681 src = fetchurl { 5682 - url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"; 5683 - sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 5684 }; 5685 }; 5686 - "globby-11.1.0" = { 5687 name = "globby"; 5688 packageName = "globby"; 5689 - version = "11.1.0"; 5690 src = fetchurl { 5691 - url = "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"; 5692 - sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 5693 }; 5694 }; 5695 "globby-6.1.0" = { ··· 5809 sha512 = "nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w=="; 5810 }; 5811 }; 5812 - "has-1.0.3" = { 5813 name = "has"; 5814 packageName = "has"; 5815 - version = "1.0.3"; 5816 src = fetchurl { 5817 - url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 5818 - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 5819 }; 5820 }; 5821 "has-ansi-2.0.0" = { ··· 6160 sha512 = "7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ=="; 6161 }; 6162 }; 6163 "http-proxy-middleware-0.19.1" = { 6164 name = "http-proxy-middleware"; 6165 packageName = "http-proxy-middleware"; ··· 6205 sha512 = "J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg=="; 6206 }; 6207 }; 6208 "human-signals-2.1.0" = { 6209 name = "human-signals"; 6210 packageName = "human-signals"; ··· 6214 sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="; 6215 }; 6216 }; 6217 "i-0.3.7" = { 6218 name = "i"; 6219 packageName = "i"; ··· 6239 src = fetchurl { 6240 url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; 6241 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 6242 }; 6243 }; 6244 "icss-utils-4.1.1" = { ··· 6286 sha512 = "MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ=="; 6287 }; 6288 }; 6289 "immer-1.7.2" = { 6290 name = "immer"; 6291 packageName = "immer"; ··· 6293 src = fetchurl { 6294 url = "https://registry.npmjs.org/immer/-/immer-1.7.2.tgz"; 6295 sha512 = "4Urocwu9+XLDJw4Tc6ZCg7APVjjLInCFvO4TwGsAYV5zT6YYSor14dsZR0+0tHlDIN92cFUOq+i7fC00G5vTxA=="; 6296 }; 6297 }; 6298 "import-fresh-2.0.0" = { ··· 6331 sha512 = "JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="; 6332 }; 6333 }; 6334 "indexes-of-1.0.1" = { 6335 name = "indexes-of"; 6336 packageName = "indexes-of"; ··· 6358 sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; 6359 }; 6360 }; 6361 - "inherits-2.0.1" = { 6362 - name = "inherits"; 6363 - packageName = "inherits"; 6364 - version = "2.0.1"; 6365 - src = fetchurl { 6366 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"; 6367 - sha512 = "8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA=="; 6368 - }; 6369 - }; 6370 "inherits-2.0.3" = { 6371 name = "inherits"; 6372 packageName = "inherits"; ··· 6439 sha512 = "PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg=="; 6440 }; 6441 }; 6442 "ip-regex-2.1.0" = { 6443 name = "ip-regex"; 6444 packageName = "ip-regex"; ··· 6592 sha512 = "H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA=="; 6593 }; 6594 }; 6595 - "is-core-module-2.12.0" = { 6596 name = "is-core-module"; 6597 packageName = "is-core-module"; 6598 - version = "2.12.0"; 6599 src = fetchurl { 6600 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz"; 6601 - sha512 = "RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ=="; 6602 }; 6603 }; 6604 "is-data-descriptor-0.1.4" = { ··· 6745 sha512 = "2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w=="; 6746 }; 6747 }; 6748 "is-negative-zero-2.0.2" = { 6749 name = "is-negative-zero"; 6750 packageName = "is-negative-zero"; ··· 6934 sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 6935 }; 6936 }; 6937 - "is-typed-array-1.1.10" = { 6938 name = "is-typed-array"; 6939 packageName = "is-typed-array"; 6940 - version = "1.1.10"; 6941 src = fetchurl { 6942 - url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz"; 6943 - sha512 = "PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A=="; 6944 }; 6945 }; 6946 "is-typedarray-1.0.0" = { ··· 6986 src = fetchurl { 6987 url = "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"; 6988 sha512 = "qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="; 6989 }; 6990 }; 6991 "is-windows-1.0.2" = { ··· 7078 sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; 7079 }; 7080 }; 7081 "jest-diff-27.5.1" = { 7082 name = "jest-diff"; 7083 packageName = "jest-diff"; ··· 7330 sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 7331 }; 7332 }; 7333 - "keyv-4.5.2" = { 7334 name = "keyv"; 7335 packageName = "keyv"; 7336 - version = "4.5.2"; 7337 src = fetchurl { 7338 - url = "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz"; 7339 - sha512 = "5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g=="; 7340 }; 7341 }; 7342 "killable-1.0.1" = { ··· 7447 sha512 = "YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw=="; 7448 }; 7449 }; 7450 "lines-and-columns-1.2.4" = { 7451 name = "lines-and-columns"; 7452 packageName = "lines-and-columns"; ··· 7643 src = fetchurl { 7644 url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz"; 7645 sha512 = "tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA=="; 7646 }; 7647 }; 7648 "lru-cache-4.1.5" = { ··· 7672 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 7673 }; 7674 }; 7675 "make-dir-1.3.0" = { 7676 name = "make-dir"; 7677 packageName = "make-dir"; ··· 7697 src = fetchurl { 7698 url = "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"; 7699 sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 7700 }; 7701 }; 7702 "map-cache-0.2.2" = { ··· 7760 src = fetchurl { 7761 url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; 7762 sha512 = "dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="; 7763 }; 7764 }; 7765 "memory-fs-0.4.1" = { ··· 8014 sha512 = "lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="; 8015 }; 8016 }; 8017 "minimist-1.2.0" = { 8018 name = "minimist"; 8019 packageName = "minimist"; ··· 8068 sha512 = "3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="; 8069 }; 8070 }; 8071 "minizlib-1.3.3" = { 8072 name = "minizlib"; 8073 packageName = "minizlib"; ··· 8248 sha512 = "nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="; 8249 }; 8250 }; 8251 - "nan-2.17.0" = { 8252 name = "nan"; 8253 packageName = "nan"; 8254 - version = "2.17.0"; 8255 src = fetchurl { 8256 - url = "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz"; 8257 - sha512 = "2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="; 8258 }; 8259 }; 8260 "nanoid-3.3.6" = { ··· 8284 sha512 = "akBX7I5X9KQDDWmYYgQlLbVbjkveTje2mioZjhLLrVt09akSZcoqXWE5LEn1E2fu8T7th1PZYGfewQsTkTLTmQ=="; 8285 }; 8286 }; 8287 "negotiator-0.6.3" = { 8288 name = "negotiator"; 8289 packageName = "negotiator"; ··· 8365 sha512 = "PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA=="; 8366 }; 8367 }; 8368 - "node-gyp-build-4.6.0" = { 8369 name = "node-gyp-build"; 8370 packageName = "node-gyp-build"; 8371 - version = "4.6.0"; 8372 src = fetchurl { 8373 - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz"; 8374 - sha512 = "NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ=="; 8375 }; 8376 }; 8377 "node-libs-browser-2.2.1" = { ··· 8392 sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="; 8393 }; 8394 }; 8395 - "node-releases-2.0.10" = { 8396 name = "node-releases"; 8397 packageName = "node-releases"; 8398 - version = "2.0.10"; 8399 src = fetchurl { 8400 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz"; 8401 - sha512 = "5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w=="; 8402 }; 8403 }; 8404 "node-watch-0.5.5" = { ··· 8572 sha512 = "79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ=="; 8573 }; 8574 }; 8575 - "object-hash-2.2.0" = { 8576 - name = "object-hash"; 8577 - packageName = "object-hash"; 8578 - version = "2.2.0"; 8579 - src = fetchurl { 8580 - url = "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz"; 8581 - sha512 = "gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw=="; 8582 - }; 8583 - }; 8584 "object-inspect-1.12.3" = { 8585 name = "object-inspect"; 8586 packageName = "object-inspect"; ··· 8626 sha512 = "1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ=="; 8627 }; 8628 }; 8629 - "object.entries-1.1.6" = { 8630 name = "object.entries"; 8631 packageName = "object.entries"; 8632 - version = "1.1.6"; 8633 src = fetchurl { 8634 - url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz"; 8635 - sha512 = "leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w=="; 8636 }; 8637 }; 8638 - "object.getownpropertydescriptors-2.1.6" = { 8639 name = "object.getownpropertydescriptors"; 8640 packageName = "object.getownpropertydescriptors"; 8641 - version = "2.1.6"; 8642 src = fetchurl { 8643 - url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz"; 8644 - sha512 = "lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ=="; 8645 }; 8646 }; 8647 "object.pick-1.3.0" = { ··· 8653 sha512 = "tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ=="; 8654 }; 8655 }; 8656 - "object.values-1.1.6" = { 8657 name = "object.values"; 8658 packageName = "object.values"; 8659 - version = "1.1.6"; 8660 src = fetchurl { 8661 - url = "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz"; 8662 - sha512 = "FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw=="; 8663 }; 8664 }; 8665 "obuf-1.1.2" = { ··· 8923 sha512 = "y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw=="; 8924 }; 8925 }; 8926 "p-retry-3.0.1" = { 8927 name = "p-retry"; 8928 packageName = "p-retry"; ··· 9040 sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="; 9041 }; 9042 }; 9043 "parse-passwd-1.0.0" = { 9044 name = "parse-passwd"; 9045 packageName = "parse-passwd"; ··· 9076 sha512 = "XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw=="; 9077 }; 9078 }; 9079 - "password-prompt-1.1.2" = { 9080 name = "password-prompt"; 9081 packageName = "password-prompt"; 9082 - version = "1.1.2"; 9083 src = fetchurl { 9084 - url = "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz"; 9085 - sha512 = "bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA=="; 9086 }; 9087 }; 9088 "path-browserify-0.0.1" = { ··· 9175 sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 9176 }; 9177 }; 9178 "path-to-regexp-0.1.7" = { 9179 name = "path-to-regexp"; 9180 packageName = "path-to-regexp"; ··· 9400 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 9401 }; 9402 }; 9403 - "postcss-8.4.23" = { 9404 name = "postcss"; 9405 packageName = "postcss"; 9406 - version = "8.4.23"; 9407 src = fetchurl { 9408 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz"; 9409 - sha512 = "bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA=="; 9410 }; 9411 }; 9412 "postcss-calc-7.0.5" = { ··· 9706 sha512 = "h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA=="; 9707 }; 9708 }; 9709 - "postcss-selector-parser-6.0.12" = { 9710 name = "postcss-selector-parser"; 9711 packageName = "postcss-selector-parser"; 9712 - version = "6.0.12"; 9713 src = fetchurl { 9714 - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz"; 9715 - sha512 = "NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg=="; 9716 }; 9717 }; 9718 "postcss-svgo-4.0.3" = { ··· 9841 sha512 = "6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g=="; 9842 }; 9843 }; 9844 "prompt-1.0.0" = { 9845 name = "prompt"; 9846 packageName = "prompt"; ··· 9938 src = fetchurl { 9939 url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz"; 9940 sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ=="; 9941 - }; 9942 - }; 9943 - "punycode-1.3.2" = { 9944 - name = "punycode"; 9945 - packageName = "punycode"; 9946 - version = "1.3.2"; 9947 - src = fetchurl { 9948 - url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"; 9949 - sha512 = "RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw=="; 9950 }; 9951 }; 9952 "punycode-1.4.1" = { ··· 9985 sha512 = "MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q=="; 9986 }; 9987 }; 9988 "qs-6.5.1" = { 9989 name = "qs"; 9990 packageName = "qs"; ··· 10019 src = fetchurl { 10020 url = "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz"; 10021 sha512 = "O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q=="; 10022 - }; 10023 - }; 10024 - "querystring-0.2.0" = { 10025 - name = "querystring"; 10026 - packageName = "querystring"; 10027 - version = "0.2.0"; 10028 - src = fetchurl { 10029 - url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"; 10030 - sha512 = "X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g=="; 10031 }; 10032 }; 10033 "querystring-es3-0.2.1" = { ··· 10282 sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; 10283 }; 10284 }; 10285 - "regenerate-unicode-properties-10.1.0" = { 10286 name = "regenerate-unicode-properties"; 10287 packageName = "regenerate-unicode-properties"; 10288 - version = "10.1.0"; 10289 src = fetchurl { 10290 - url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz"; 10291 - sha512 = "d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ=="; 10292 }; 10293 }; 10294 "regenerator-runtime-0.11.1" = { ··· 10318 sha512 = "D0Y/JJ4VhusyMOd/o25a3jdUqN/bC85EFsaoL9Oqmy/O4efCh+xhp7yj2EEOsj974qvMkcW8AwUzJ1jB/MbxCw=="; 10319 }; 10320 }; 10321 - "regenerator-transform-0.15.1" = { 10322 name = "regenerator-transform"; 10323 packageName = "regenerator-transform"; 10324 - version = "0.15.1"; 10325 src = fetchurl { 10326 - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz"; 10327 - sha512 = "knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg=="; 10328 }; 10329 }; 10330 "regex-not-1.0.2" = { ··· 10336 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; 10337 }; 10338 }; 10339 - "regexp.prototype.flags-1.5.0" = { 10340 name = "regexp.prototype.flags"; 10341 packageName = "regexp.prototype.flags"; 10342 - version = "1.5.0"; 10343 src = fetchurl { 10344 - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz"; 10345 - sha512 = "0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA=="; 10346 }; 10347 }; 10348 "regexpu-core-5.3.2" = { ··· 10444 sha512 = "MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw=="; 10445 }; 10446 }; 10447 "request-promise-4.2.6" = { 10448 name = "request-promise"; 10449 packageName = "request-promise"; ··· 10507 sha512 = "KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="; 10508 }; 10509 }; 10510 - "resolve-1.22.3" = { 10511 name = "resolve"; 10512 packageName = "resolve"; 10513 - version = "1.22.3"; 10514 src = fetchurl { 10515 - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz"; 10516 - sha512 = "P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw=="; 10517 }; 10518 }; 10519 "resolve-alpn-1.2.1" = { ··· 10678 sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="; 10679 }; 10680 }; 10681 "ripemd160-2.0.2" = { 10682 name = "ripemd160"; 10683 packageName = "ripemd160"; ··· 10687 sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="; 10688 }; 10689 }; 10690 "run-async-2.4.1" = { 10691 name = "run-async"; 10692 packageName = "run-async"; ··· 10723 sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ=="; 10724 }; 10725 }; 10726 - "safe-array-concat-1.0.0" = { 10727 name = "safe-array-concat"; 10728 packageName = "safe-array-concat"; 10729 - version = "1.0.0"; 10730 src = fetchurl { 10731 - url = "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz"; 10732 - sha512 = "9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ=="; 10733 }; 10734 }; 10735 "safe-buffer-5.1.1" = { ··· 10795 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 10796 }; 10797 }; 10798 "sax-1.2.4" = { 10799 name = "sax"; 10800 packageName = "sax"; ··· 10804 sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; 10805 }; 10806 }; 10807 "schema-utils-0.4.7" = { 10808 name = "schema-utils"; 10809 packageName = "schema-utils"; ··· 10831 sha512 = "SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg=="; 10832 }; 10833 }; 10834 - "schema-utils-3.1.2" = { 10835 name = "schema-utils"; 10836 packageName = "schema-utils"; 10837 - version = "3.1.2"; 10838 src = fetchurl { 10839 - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz"; 10840 - sha512 = "pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg=="; 10841 }; 10842 }; 10843 "section-matter-1.0.0" = { ··· 10867 sha512 = "lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA=="; 10868 }; 10869 }; 10870 - "semver-5.7.1" = { 10871 name = "semver"; 10872 packageName = "semver"; 10873 - version = "5.7.1"; 10874 src = fetchurl { 10875 - url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"; 10876 - sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 10877 }; 10878 }; 10879 - "semver-6.3.0" = { 10880 name = "semver"; 10881 packageName = "semver"; 10882 - version = "6.3.0"; 10883 src = fetchurl { 10884 - url = "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"; 10885 - sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 10886 }; 10887 }; 10888 - "semver-7.5.0" = { 10889 name = "semver"; 10890 packageName = "semver"; 10891 - version = "7.5.0"; 10892 src = fetchurl { 10893 - url = "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz"; 10894 - sha512 = "+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA=="; 10895 }; 10896 }; 10897 "semver-regex-3.1.4" = { ··· 11002 sha512 = "KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="; 11003 }; 11004 }; 11005 "set-value-2.0.1" = { 11006 name = "set-value"; 11007 packageName = "set-value"; ··· 11128 sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 11129 }; 11130 }; 11131 - "simple-git-3.18.0" = { 11132 name = "simple-git"; 11133 packageName = "simple-git"; 11134 - version = "3.18.0"; 11135 src = fetchurl { 11136 - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.18.0.tgz"; 11137 - sha512 = "Yt0GJ5aYrpPci3JyrYcsPz8Xc05Hi4JPSOb+Sgn/BmPX35fn/6Fp9Mef8eMBCrL2siY5w4j49TA5Q+bxPpri1Q=="; 11138 }; 11139 }; 11140 "simple-swizzle-0.2.2" = { ··· 11182 sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 11183 }; 11184 }; 11185 "slice-ansi-4.0.0" = { 11186 name = "slice-ansi"; 11187 packageName = "slice-ansi"; ··· 11191 sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 11192 }; 11193 }; 11194 "snapdragon-0.8.2" = { 11195 name = "snapdragon"; 11196 packageName = "snapdragon"; ··· 11243 src = fetchurl { 11244 url = "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz"; 11245 sha512 = "5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g=="; 11246 }; 11247 }; 11248 "sort-keys-1.1.2" = { ··· 11353 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 11354 }; 11355 }; 11356 - "spdx-license-ids-3.0.13" = { 11357 name = "spdx-license-ids"; 11358 packageName = "spdx-license-ids"; 11359 - version = "3.0.13"; 11360 src = fetchurl { 11361 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz"; 11362 - sha512 = "XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w=="; 11363 }; 11364 }; 11365 "spdy-4.0.2" = { ··· 11416 sha512 = "/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ=="; 11417 }; 11418 }; 11419 "ssri-5.3.0" = { 11420 name = "ssri"; 11421 packageName = "ssri"; ··· 11533 sha512 = "AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ=="; 11534 }; 11535 }; 11536 "strict-uri-encode-1.1.0" = { 11537 name = "strict-uri-encode"; 11538 packageName = "strict-uri-encode"; ··· 11587 sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 11588 }; 11589 }; 11590 - "string.prototype.trim-1.2.7" = { 11591 name = "string.prototype.trim"; 11592 packageName = "string.prototype.trim"; 11593 - version = "1.2.7"; 11594 src = fetchurl { 11595 - url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz"; 11596 - sha512 = "p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg=="; 11597 }; 11598 }; 11599 - "string.prototype.trimend-1.0.6" = { 11600 name = "string.prototype.trimend"; 11601 packageName = "string.prototype.trimend"; 11602 - version = "1.0.6"; 11603 src = fetchurl { 11604 - url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz"; 11605 - sha512 = "JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ=="; 11606 }; 11607 }; 11608 - "string.prototype.trimstart-1.0.6" = { 11609 name = "string.prototype.trimstart"; 11610 packageName = "string.prototype.trimstart"; 11611 - version = "1.0.6"; 11612 src = fetchurl { 11613 - url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz"; 11614 - sha512 = "omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA=="; 11615 }; 11616 }; 11617 "string_decoder-0.10.31" = { ··· 11695 sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 11696 }; 11697 }; 11698 "strip-bom-2.0.0" = { 11699 name = "strip-bom"; 11700 packageName = "strip-bom"; ··· 11767 sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g=="; 11768 }; 11769 }; 11770 "sudo-prompt-8.2.5" = { 11771 name = "sudo-prompt"; 11772 packageName = "sudo-prompt"; ··· 11776 sha512 = "rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw=="; 11777 }; 11778 }; 11779 "sums-0.2.4" = { 11780 name = "sums"; 11781 packageName = "sums"; ··· 11884 sha512 = "a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA=="; 11885 }; 11886 }; 11887 - "tar-6.1.14" = { 11888 name = "tar"; 11889 packageName = "tar"; 11890 - version = "6.1.14"; 11891 src = fetchurl { 11892 - url = "https://registry.npmjs.org/tar/-/tar-6.1.14.tgz"; 11893 - sha512 = "piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw=="; 11894 }; 11895 }; 11896 "temp-0.9.0" = { ··· 11929 sha512 = "4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw=="; 11930 }; 11931 }; 11932 - "terser-5.17.1" = { 11933 name = "terser"; 11934 packageName = "terser"; 11935 - version = "5.17.1"; 11936 src = fetchurl { 11937 - url = "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz"; 11938 - sha512 = "hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw=="; 11939 }; 11940 }; 11941 "terser-5.3.8" = { ··· 12208 sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 12209 }; 12210 }; 12211 - "tslib-2.5.0" = { 12212 name = "tslib"; 12213 packageName = "tslib"; 12214 - version = "2.5.0"; 12215 src = fetchurl { 12216 - url = "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz"; 12217 - sha512 = "336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="; 12218 }; 12219 }; 12220 - "tsyringe-4.7.0" = { 12221 name = "tsyringe"; 12222 packageName = "tsyringe"; 12223 - version = "4.7.0"; 12224 src = fetchurl { 12225 - url = "https://registry.npmjs.org/tsyringe/-/tsyringe-4.7.0.tgz"; 12226 - sha512 = "ncFDM1jTLsok4ejMvSW5jN1VGPQD48y2tfAR0pdptWRKYX4bkbqPt92k7KJ5RFJ1KV36JEs/+TMh7I6OUgj74g=="; 12227 }; 12228 }; 12229 "tty-browserify-0.0.0" = { ··· 12298 sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 12299 }; 12300 }; 12301 "typed-array-length-1.0.4" = { 12302 name = "typed-array-length"; 12303 packageName = "typed-array-length"; ··· 12388 sha512 = "61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="; 12389 }; 12390 }; 12391 - "undici-4.16.0" = { 12392 - name = "undici"; 12393 - packageName = "undici"; 12394 - version = "4.16.0"; 12395 - src = fetchurl { 12396 - url = "https://registry.npmjs.org/undici/-/undici-4.16.0.tgz"; 12397 - sha512 = "tkZSECUYi+/T1i4u+4+lwZmQgLXd4BLGlrc7KZPcLIW7Jpq99+Xpc30ONv7nS6F5UNOxp/HBZSSL9MafUrvJbw=="; 12398 - }; 12399 - }; 12400 "unicode-canonical-property-names-ecmascript-2.0.0" = { 12401 name = "unicode-canonical-property-names-ecmascript"; 12402 packageName = "unicode-canonical-property-names-ecmascript"; ··· 12469 sha512 = "Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ=="; 12470 }; 12471 }; 12472 "unique-slug-2.0.2" = { 12473 name = "unique-slug"; 12474 packageName = "unique-slug"; ··· 12476 src = fetchurl { 12477 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz"; 12478 sha512 = "zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w=="; 12479 }; 12480 }; 12481 "universalify-0.1.2" = { ··· 12550 sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; 12551 }; 12552 }; 12553 - "update-browserslist-db-1.0.11" = { 12554 name = "update-browserslist-db"; 12555 packageName = "update-browserslist-db"; 12556 - version = "1.0.11"; 12557 src = fetchurl { 12558 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz"; 12559 - sha512 = "dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA=="; 12560 }; 12561 }; 12562 "upgrade-1.1.0" = { ··· 12586 sha512 = "Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg=="; 12587 }; 12588 }; 12589 - "url-0.11.0" = { 12590 name = "url"; 12591 packageName = "url"; 12592 - version = "0.11.0"; 12593 src = fetchurl { 12594 - url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz"; 12595 - sha512 = "kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ=="; 12596 }; 12597 }; 12598 "url-loader-4.1.1" = { ··· 12649 sha512 = "Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ=="; 12650 }; 12651 }; 12652 - "util-0.10.3" = { 12653 name = "util"; 12654 packageName = "util"; 12655 - version = "0.10.3"; 12656 src = fetchurl { 12657 - url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz"; 12658 - sha512 = "5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ=="; 12659 }; 12660 }; 12661 "util-0.11.1" = { ··· 12757 sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="; 12758 }; 12759 }; 12760 "vm-browserify-1.1.2" = { 12761 name = "vm-browserify"; 12762 packageName = "vm-browserify"; ··· 12811 sha512 = "SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA=="; 12812 }; 12813 }; 12814 - "vscode-uri-3.0.7" = { 12815 name = "vscode-uri"; 12816 packageName = "vscode-uri"; 12817 - version = "3.0.7"; 12818 src = fetchurl { 12819 - url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.7.tgz"; 12820 - sha512 = "eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA=="; 12821 }; 12822 }; 12823 "watchpack-1.7.5" = { ··· 12991 sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; 12992 }; 12993 }; 12994 "which-boxed-primitive-1.0.2" = { 12995 name = "which-boxed-primitive"; 12996 packageName = "which-boxed-primitive"; ··· 13018 sha512 = "iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ=="; 13019 }; 13020 }; 13021 - "which-typed-array-1.1.9" = { 13022 name = "which-typed-array"; 13023 packageName = "which-typed-array"; 13024 - version = "1.1.9"; 13025 src = fetchurl { 13026 - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz"; 13027 - sha512 = "w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA=="; 13028 }; 13029 }; 13030 "winston-2.1.1" = { ··· 13214 src = fetchurl { 13215 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"; 13216 sha512 = "r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="; 13217 }; 13218 }; 13219 "wrappy-1.0.2" = { ··· 13807 sources."rimraf-2.6.3" 13808 sources."safe-buffer-5.2.1" 13809 sources."safer-buffer-2.1.2" 13810 - sources."semver-5.7.1" 13811 sources."set-blocking-2.0.0" 13812 sources."shebang-command-1.2.0" 13813 sources."shebang-regex-1.0.0" ··· 13834 sources."json-schema-traverse-1.0.0" 13835 ]; 13836 }) 13837 - sources."tar-6.1.14" 13838 sources."temp-0.9.0" 13839 sources."through-2.3.8" 13840 sources."tmp-0.0.33" ··· 13947 sources."forwarded-0.2.0" 13948 sources."fresh-0.5.2" 13949 sources."fs.realpath-1.0.0" 13950 - sources."fsevents-2.3.2" 13951 sources."function-bind-1.1.1" 13952 - sources."get-intrinsic-1.2.0" 13953 sources."get-stream-4.1.0" 13954 sources."glob-7.2.3" 13955 sources."glob-parent-5.1.2" 13956 sources."got-9.6.0" 13957 - sources."has-1.0.3" 13958 sources."has-flag-4.0.0" 13959 sources."has-symbols-1.0.3" 13960 sources."http-cache-semantics-4.1.1" 13961 sources."http-errors-2.0.0" ··· 13986 sources."minimist-1.2.8" 13987 sources."ms-2.0.0" 13988 sources."negotiator-0.6.3" 13989 - sources."node-gyp-build-4.6.0" 13990 sources."normalize-path-3.0.0" 13991 sources."normalize-url-4.5.1" 13992 sources."object-inspect-1.12.3" ··· 14014 sources."rimraf-2.7.1" 14015 sources."safe-buffer-5.2.1" 14016 sources."safer-buffer-2.1.2" 14017 - sources."semver-6.3.0" 14018 (sources."send-0.18.0" // { 14019 dependencies = [ 14020 sources."ms-2.1.3" ··· 14064 "@elm-tooling/elm-language-server" = nodeEnv.buildNodePackage { 14065 name = "_at_elm-tooling_slash_elm-language-server"; 14066 packageName = "@elm-tooling/elm-language-server"; 14067 - version = "2.7.0"; 14068 src = fetchurl { 14069 - url = "https://registry.npmjs.org/@elm-tooling/elm-language-server/-/elm-language-server-2.7.0.tgz"; 14070 - sha512 = "EIPf/plACx7GmY4GBxfri4JsYYIqq5whAIpVBtcz9yhE+z5L6RqnH6ZLJkTmA5Z+d74lO6oz5CZ5JZS8tzdb6w=="; 14071 }; 14072 dependencies = [ 14073 sources."@nodelib/fs.scandir-2.1.5" ··· 14082 sources."dir-glob-3.0.1" 14083 sources."escape-string-regexp-4.0.0" 14084 sources."execa-5.1.1" 14085 - sources."fast-diff-1.2.0" 14086 - sources."fast-glob-3.2.12" 14087 sources."fastq-1.15.0" 14088 sources."fill-range-7.0.1" 14089 - sources."fsevents-2.3.2" 14090 sources."get-stream-6.0.1" 14091 sources."glob-parent-5.1.2" 14092 sources."globby-11.1.0" ··· 14112 sources."queue-microtask-1.2.3" 14113 sources."readdirp-3.6.0" 14114 sources."reflect-metadata-0.1.13" 14115 sources."reusify-1.0.4" 14116 sources."run-parallel-1.2.0" 14117 sources."shebang-command-2.0.0" ··· 14122 sources."to-regex-range-5.0.1" 14123 sources."ts-debounce-4.0.0" 14124 sources."tslib-1.14.1" 14125 - sources."tsyringe-4.7.0" 14126 sources."vscode-jsonrpc-8.1.0" 14127 sources."vscode-languageserver-8.1.0" 14128 sources."vscode-languageserver-protocol-3.17.3" 14129 sources."vscode-languageserver-textdocument-1.0.8" 14130 sources."vscode-languageserver-types-3.17.3" 14131 - sources."vscode-uri-3.0.7" 14132 sources."web-tree-sitter-0.20.8" 14133 sources."which-2.0.2" 14134 ]; ··· 14184 }) 14185 sources."fill-range-7.0.1" 14186 sources."finalhandler-1.1.2" 14187 - sources."follow-redirects-1.15.2" 14188 sources."fresh-0.5.2" 14189 - sources."fsevents-2.3.2" 14190 sources."get-stream-4.1.0" 14191 sources."glob-parent-5.1.2" 14192 sources."has-ansi-2.0.0" ··· 14225 sources."range-parser-1.2.1" 14226 sources."readdirp-3.6.0" 14227 sources."requires-port-1.0.0" 14228 - sources."semver-5.7.1" 14229 (sources."send-0.17.1" // { 14230 dependencies = [ 14231 sources."mime-1.6.0" ··· 14313 sources."next-tick-1.1.0" 14314 sources."nice-try-1.0.5" 14315 sources."node-elm-compiler-5.0.5" 14316 - sources."node-gyp-build-4.6.0" 14317 sources."normalize-path-3.0.0" 14318 sources."once-1.4.0" 14319 sources."path-is-absolute-1.0.1" ··· 14321 sources."picomatch-2.3.1" 14322 sources."readdirp-3.4.0" 14323 sources."rimraf-2.6.3" 14324 - sources."semver-5.7.1" 14325 sources."shebang-command-1.2.0" 14326 sources."shebang-regex-1.0.0" 14327 sources."source-map-0.7.4" ··· 14375 sources."elm-solve-deps-wasm-1.0.2" 14376 sources."fill-range-7.0.1" 14377 sources."fs.realpath-1.0.0" 14378 - sources."fsevents-2.3.2" 14379 sources."glob-8.1.0" 14380 sources."glob-parent-5.1.2" 14381 sources."graceful-fs-4.2.11" ··· 14425 sources."@sindresorhus/is-2.1.1" 14426 sources."@szmarczak/http-timer-4.0.6" 14427 sources."@types/cacheable-request-6.0.3" 14428 - sources."@types/http-cache-semantics-4.0.1" 14429 sources."@types/keyv-3.1.4" 14430 - sources."@types/node-18.16.3" 14431 - sources."@types/responselike-1.0.0" 14432 sources."cacheable-lookup-2.0.1" 14433 - sources."cacheable-request-7.0.2" 14434 sources."caw-2.0.1" 14435 (sources."clone-response-1.0.3" // { 14436 dependencies = [ ··· 14456 sources."isurl-1.0.0" 14457 sources."json-buffer-3.0.1" 14458 sources."jsonfile-4.0.0" 14459 - sources."keyv-4.5.2" 14460 sources."lowercase-keys-2.0.0" 14461 sources."lru-cache-6.0.0" 14462 sources."mimic-response-2.1.0" ··· 14473 sources."responselike-2.0.1" 14474 sources."safe-buffer-5.2.1" 14475 sources."safename-1.0.2" 14476 - sources."semver-7.5.0" 14477 sources."to-readable-stream-2.1.0" 14478 sources."tunnel-agent-0.6.0" 14479 sources."type-fest-0.10.0" ··· 14642 sources."rimraf-2.7.1" 14643 sources."safe-buffer-5.2.1" 14644 sources."safer-buffer-2.1.2" 14645 - sources."semver-5.7.1" 14646 sources."set-blocking-2.0.0" 14647 sources."shebang-command-1.2.0" 14648 sources."shebang-regex-1.0.0" ··· 14710 sources."process-nextick-args-2.0.1" 14711 sources."readable-stream-2.3.8" 14712 sources."safe-buffer-5.1.2" 14713 - sources."semver-6.3.0" 14714 sources."semver-regex-3.1.4" 14715 (sources."semver-sort-1.0.0" // { 14716 dependencies = [ 14717 - sources."semver-5.7.1" 14718 ]; 14719 }) 14720 sources."string_decoder-1.1.1" ··· 14743 }; 14744 dependencies = [ 14745 sources."@babel/cli-7.12.10" 14746 - sources."@babel/code-frame-7.21.4" 14747 - sources."@babel/compat-data-7.21.7" 14748 sources."@babel/core-7.12.10" 14749 - sources."@babel/generator-7.21.5" 14750 - sources."@babel/helper-annotate-as-pure-7.18.6" 14751 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.21.5" 14752 - (sources."@babel/helper-compilation-targets-7.21.5" // { 14753 dependencies = [ 14754 - sources."semver-6.3.0" 14755 ]; 14756 }) 14757 - (sources."@babel/helper-create-class-features-plugin-7.21.8" // { 14758 dependencies = [ 14759 - sources."semver-6.3.0" 14760 ]; 14761 }) 14762 - (sources."@babel/helper-create-regexp-features-plugin-7.21.8" // { 14763 dependencies = [ 14764 - sources."semver-6.3.0" 14765 ]; 14766 }) 14767 - sources."@babel/helper-environment-visitor-7.21.5" 14768 - sources."@babel/helper-function-name-7.21.0" 14769 - sources."@babel/helper-hoist-variables-7.18.6" 14770 - sources."@babel/helper-member-expression-to-functions-7.21.5" 14771 - sources."@babel/helper-module-imports-7.21.4" 14772 - sources."@babel/helper-module-transforms-7.21.5" 14773 - sources."@babel/helper-optimise-call-expression-7.18.6" 14774 - sources."@babel/helper-plugin-utils-7.21.5" 14775 - sources."@babel/helper-remap-async-to-generator-7.18.9" 14776 - sources."@babel/helper-replace-supers-7.21.5" 14777 - sources."@babel/helper-simple-access-7.21.5" 14778 - sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0" 14779 - sources."@babel/helper-split-export-declaration-7.18.6" 14780 - sources."@babel/helper-string-parser-7.21.5" 14781 - sources."@babel/helper-validator-identifier-7.19.1" 14782 - sources."@babel/helper-validator-option-7.21.0" 14783 - sources."@babel/helper-wrap-function-7.20.5" 14784 - sources."@babel/helpers-7.21.5" 14785 - sources."@babel/highlight-7.18.6" 14786 - sources."@babel/parser-7.21.8" 14787 sources."@babel/plugin-proposal-async-generator-functions-7.20.7" 14788 sources."@babel/plugin-proposal-class-properties-7.18.6" 14789 sources."@babel/plugin-proposal-dynamic-import-7.18.6" ··· 14809 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 14810 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 14811 sources."@babel/plugin-syntax-top-level-await-7.14.5" 14812 - sources."@babel/plugin-transform-arrow-functions-7.21.5" 14813 - sources."@babel/plugin-transform-async-to-generator-7.20.7" 14814 - sources."@babel/plugin-transform-block-scoped-functions-7.18.6" 14815 - sources."@babel/plugin-transform-block-scoping-7.21.0" 14816 - sources."@babel/plugin-transform-classes-7.21.0" 14817 - sources."@babel/plugin-transform-computed-properties-7.21.5" 14818 - sources."@babel/plugin-transform-destructuring-7.21.3" 14819 - sources."@babel/plugin-transform-dotall-regex-7.18.6" 14820 - sources."@babel/plugin-transform-duplicate-keys-7.18.9" 14821 - sources."@babel/plugin-transform-exponentiation-operator-7.18.6" 14822 - sources."@babel/plugin-transform-for-of-7.21.5" 14823 - sources."@babel/plugin-transform-function-name-7.18.9" 14824 - sources."@babel/plugin-transform-literals-7.18.9" 14825 - sources."@babel/plugin-transform-member-expression-literals-7.18.6" 14826 - sources."@babel/plugin-transform-modules-amd-7.20.11" 14827 - sources."@babel/plugin-transform-modules-commonjs-7.21.5" 14828 - sources."@babel/plugin-transform-modules-systemjs-7.20.11" 14829 - sources."@babel/plugin-transform-modules-umd-7.18.6" 14830 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" 14831 - sources."@babel/plugin-transform-new-target-7.18.6" 14832 - sources."@babel/plugin-transform-object-super-7.18.6" 14833 - sources."@babel/plugin-transform-parameters-7.21.3" 14834 - sources."@babel/plugin-transform-property-literals-7.18.6" 14835 - sources."@babel/plugin-transform-regenerator-7.21.5" 14836 - sources."@babel/plugin-transform-reserved-words-7.18.6" 14837 sources."@babel/plugin-transform-runtime-7.12.10" 14838 - sources."@babel/plugin-transform-shorthand-properties-7.18.6" 14839 - sources."@babel/plugin-transform-spread-7.20.7" 14840 - sources."@babel/plugin-transform-sticky-regex-7.18.6" 14841 - sources."@babel/plugin-transform-template-literals-7.18.9" 14842 - sources."@babel/plugin-transform-typeof-symbol-7.18.9" 14843 - sources."@babel/plugin-transform-unicode-escapes-7.21.5" 14844 - sources."@babel/plugin-transform-unicode-regex-7.18.6" 14845 sources."@babel/preset-env-7.12.10" 14846 - sources."@babel/preset-modules-0.1.5" 14847 sources."@babel/regjsgen-0.8.0" 14848 sources."@babel/runtime-7.12.5" 14849 - sources."@babel/template-7.20.7" 14850 - sources."@babel/traverse-7.21.5" 14851 - sources."@babel/types-7.21.5" 14852 sources."@hapi/address-2.1.4" 14853 sources."@hapi/bourne-1.3.2" 14854 sources."@hapi/hoek-8.5.1" 14855 sources."@hapi/joi-15.1.1" 14856 sources."@hapi/topo-3.1.6" 14857 sources."@jridgewell/gen-mapping-0.3.3" 14858 - sources."@jridgewell/resolve-uri-3.1.0" 14859 sources."@jridgewell/set-array-1.1.2" 14860 sources."@jridgewell/sourcemap-codec-1.4.15" 14861 - (sources."@jridgewell/trace-mapping-0.3.18" // { 14862 - dependencies = [ 14863 - sources."@jridgewell/sourcemap-codec-1.4.14" 14864 - ]; 14865 - }) 14866 sources."@mrmlnc/readdir-enhanced-2.2.1" 14867 sources."@nodelib/fs.stat-1.1.3" 14868 sources."@types/glob-7.2.0" 14869 sources."@types/html-minifier-terser-5.1.2" 14870 - sources."@types/http-proxy-1.17.11" 14871 - sources."@types/json-schema-7.0.11" 14872 sources."@types/minimatch-5.1.2" 14873 - sources."@types/node-18.16.3" 14874 sources."@types/parse-json-4.0.0" 14875 - sources."@types/q-1.5.5" 14876 - sources."@types/source-list-map-0.1.2" 14877 - sources."@types/tapable-1.0.8" 14878 - (sources."@types/uglify-js-3.17.1" // { 14879 dependencies = [ 14880 sources."source-map-0.6.1" 14881 ]; 14882 }) 14883 - (sources."@types/webpack-4.41.33" // { 14884 dependencies = [ 14885 sources."source-map-0.6.1" 14886 ]; 14887 }) 14888 - (sources."@types/webpack-sources-3.2.0" // { 14889 dependencies = [ 14890 sources."source-map-0.7.4" 14891 ]; ··· 14936 sources."array-union-1.0.2" 14937 sources."array-uniq-1.0.3" 14938 sources."array-unique-0.3.2" 14939 - sources."array.prototype.reduce-1.0.5" 14940 sources."asap-2.0.6" 14941 sources."asn1-0.2.6" 14942 (sources."asn1.js-5.4.1" // { ··· 14944 sources."bn.js-4.12.0" 14945 ]; 14946 }) 14947 - (sources."assert-1.5.0" // { 14948 dependencies = [ 14949 - sources."inherits-2.0.1" 14950 - sources."util-0.10.3" 14951 ]; 14952 }) 14953 sources."assert-plus-1.0.0" ··· 14970 (sources."babel-loader-8.2.2" // { 14971 dependencies = [ 14972 sources."make-dir-3.1.0" 14973 - sources."semver-6.3.0" 14974 ]; 14975 }) 14976 sources."babel-plugin-syntax-object-rest-spread-6.13.0" ··· 15023 ]; 15024 }) 15025 sources."browserify-zlib-0.2.0" 15026 - sources."browserslist-4.21.5" 15027 sources."buffer-4.9.2" 15028 sources."buffer-from-1.1.2" 15029 sources."buffer-indexof-1.1.1" ··· 15040 sources."camel-case-4.1.2" 15041 sources."camelcase-5.3.1" 15042 sources."caniuse-api-3.0.0" 15043 - sources."caniuse-lite-1.0.30001482" 15044 sources."case-sensitive-paths-webpack-plugin-2.3.0" 15045 sources."caseless-0.12.0" 15046 (sources."chalk-2.4.2" // { ··· 15139 ]; 15140 }) 15141 sources."core-js-2.6.12" 15142 - sources."core-js-compat-3.30.1" 15143 sources."core-util-is-1.0.3" 15144 sources."cosmiconfig-5.2.1" 15145 (sources."create-ecdh-4.0.4" // { ··· 15166 sources."lru-cache-6.0.0" 15167 sources."picocolors-0.2.1" 15168 sources."postcss-7.0.39" 15169 - sources."semver-7.5.0" 15170 sources."source-map-0.6.1" 15171 sources."yallist-4.0.0" 15172 ]; ··· 15212 ]; 15213 }) 15214 sources."cycle-1.0.3" 15215 - sources."cyclist-1.0.1" 15216 sources."dashdash-1.14.1" 15217 sources."debug-4.3.4" 15218 sources."decamelize-1.2.0" 15219 sources."decode-uri-component-0.2.2" 15220 sources."deep-equal-0.2.2" 15221 sources."default-gateway-4.2.0" 15222 - sources."define-properties-1.2.0" 15223 sources."define-property-2.0.2" 15224 (sources."del-4.1.1" // { 15225 dependencies = [ ··· 15232 }) 15233 sources."delayed-stream-1.0.0" 15234 sources."depd-2.0.0" 15235 - sources."des.js-1.0.1" 15236 sources."destroy-1.2.0" 15237 sources."detect-node-2.1.0" 15238 (sources."detect-port-alt-1.1.6" // { ··· 15263 sources."duplexify-3.7.1" 15264 sources."ecc-jsbn-0.1.2" 15265 sources."ee-first-1.1.1" 15266 - sources."electron-to-chromium-1.4.382" 15267 (sources."elliptic-6.5.4" // { 15268 dependencies = [ 15269 sources."bn.js-4.12.0" ··· 15301 sources."entities-2.2.0" 15302 sources."errno-0.1.8" 15303 sources."error-ex-1.3.2" 15304 - sources."es-abstract-1.21.2" 15305 sources."es-array-method-boxes-properly-1.0.0" 15306 sources."es-set-tostringtag-2.0.1" 15307 sources."es-to-primitive-1.2.1" ··· 15409 (sources."file-loader-6.2.0" // { 15410 dependencies = [ 15411 sources."loader-utils-2.0.4" 15412 - sources."schema-utils-3.1.2" 15413 ]; 15414 }) 15415 sources."file-uri-to-path-1.0.0" ··· 15424 (sources."find-cache-dir-3.3.2" // { 15425 dependencies = [ 15426 sources."make-dir-3.1.0" 15427 - sources."semver-6.3.0" 15428 ]; 15429 }) 15430 sources."find-elm-dependencies-2.0.4" 15431 sources."find-up-4.1.0" 15432 sources."firstline-1.3.1" 15433 sources."flush-write-stream-1.1.1" 15434 - sources."follow-redirects-1.15.2" 15435 sources."for-each-0.3.3" 15436 sources."for-in-1.0.2" 15437 sources."forever-agent-0.6.1" 15438 sources."form-data-2.3.3" 15439 sources."forwarded-0.2.0" 15440 - sources."fraction.js-4.2.0" 15441 sources."fragment-cache-0.2.1" 15442 sources."fresh-0.5.2" 15443 sources."from2-2.3.0" ··· 15445 sources."fs-readdir-recursive-1.1.0" 15446 sources."fs-write-stream-atomic-1.0.10" 15447 sources."fs.realpath-1.0.0" 15448 - sources."fsevents-2.3.2" 15449 sources."function-bind-1.1.1" 15450 - sources."function.prototype.name-1.1.5" 15451 sources."functions-have-names-1.2.3" 15452 sources."gensync-1.0.0-beta.2" 15453 sources."get-caller-file-1.0.3" 15454 - sources."get-intrinsic-1.2.0" 15455 sources."get-own-enumerable-property-symbols-3.0.2" 15456 sources."get-stream-4.1.0" 15457 sources."get-symbol-description-1.0.0" ··· 15488 sources."handle-thing-2.0.1" 15489 sources."har-schema-2.0.0" 15490 sources."har-validator-5.1.5" 15491 - sources."has-1.0.3" 15492 sources."has-bigints-1.0.2" 15493 sources."has-flag-3.0.0" 15494 sources."has-property-descriptors-1.0.0" ··· 15587 sources."is-buffer-1.1.6" 15588 sources."is-callable-1.2.7" 15589 sources."is-color-stop-1.1.0" 15590 - sources."is-core-module-2.12.0" 15591 sources."is-data-descriptor-1.0.0" 15592 sources."is-date-object-1.0.5" 15593 sources."is-descriptor-1.0.2" ··· 15613 sources."is-stream-1.1.0" 15614 sources."is-string-1.0.7" 15615 sources."is-symbol-1.0.4" 15616 - sources."is-typed-array-1.1.10" 15617 sources."is-typedarray-1.0.0" 15618 sources."is-utf8-0.2.1" 15619 sources."is-weakref-1.0.2" ··· 15707 sources."multicast-dns-6.2.3" 15708 sources."multicast-dns-service-types-1.1.0" 15709 sources."mute-stream-0.0.8" 15710 - sources."nan-2.17.0" 15711 sources."nanoid-3.3.6" 15712 sources."nanomatch-1.2.13" 15713 sources."ncp-1.0.1" ··· 15730 sources."punycode-1.4.1" 15731 ]; 15732 }) 15733 - sources."node-releases-2.0.10" 15734 sources."normalize-package-data-2.5.0" 15735 sources."normalize-path-3.0.0" 15736 sources."normalize-range-0.1.2" ··· 15762 sources."object-keys-1.1.1" 15763 sources."object-visit-1.0.1" 15764 sources."object.assign-4.1.4" 15765 - sources."object.entries-1.1.6" 15766 - sources."object.getownpropertydescriptors-2.1.6" 15767 sources."object.pick-1.3.0" 15768 - sources."object.values-1.1.6" 15769 sources."obuf-1.1.2" 15770 sources."on-finished-2.4.1" 15771 sources."on-headers-1.0.2" ··· 15838 ]; 15839 }) 15840 sources."posix-character-classes-0.1.1" 15841 - sources."postcss-8.4.23" 15842 (sources."postcss-calc-7.0.5" // { 15843 dependencies = [ 15844 sources."picocolors-0.2.1" ··· 15906 sources."parse-json-5.2.0" 15907 sources."path-type-4.0.0" 15908 sources."resolve-from-4.0.0" 15909 - sources."schema-utils-3.1.2" 15910 - sources."semver-7.5.0" 15911 sources."yallist-4.0.0" 15912 ]; 15913 }) ··· 16083 ]; 16084 }) 16085 sources."postcss-safe-parser-5.0.2" 16086 - sources."postcss-selector-parser-6.0.12" 16087 (sources."postcss-svgo-4.0.3" // { 16088 dependencies = [ 16089 sources."picocolors-0.2.1" ··· 16127 sources."q-1.5.1" 16128 sources."qs-6.5.3" 16129 sources."query-string-4.3.4" 16130 - sources."querystring-0.2.0" 16131 sources."querystring-es3-0.2.1" 16132 sources."querystringify-2.2.0" 16133 sources."randombytes-2.1.0" ··· 16191 ]; 16192 }) 16193 sources."regenerate-1.4.2" 16194 - sources."regenerate-unicode-properties-10.1.0" 16195 sources."regenerator-runtime-0.13.11" 16196 - sources."regenerator-transform-0.15.1" 16197 sources."regex-not-1.0.2" 16198 - sources."regexp.prototype.flags-1.5.0" 16199 sources."regexpu-core-5.3.2" 16200 (sources."regjsparser-0.9.1" // { 16201 dependencies = [ ··· 16216 sources."require-directory-2.1.1" 16217 sources."require-main-filename-1.0.1" 16218 sources."requires-port-1.0.0" 16219 - sources."resolve-1.22.3" 16220 sources."resolve-cwd-2.0.0" 16221 sources."resolve-dir-1.0.1" 16222 sources."resolve-from-3.0.0" ··· 16236 sources."tslib-1.14.1" 16237 ]; 16238 }) 16239 - (sources."safe-array-concat-1.0.0" // { 16240 dependencies = [ 16241 sources."isarray-2.0.5" 16242 ]; ··· 16249 sources."schema-utils-2.7.1" 16250 sources."select-hose-2.0.0" 16251 sources."selfsigned-1.10.14" 16252 - sources."semver-5.7.1" 16253 (sources."send-0.18.0" // { 16254 dependencies = [ 16255 (sources."debug-2.6.9" // { ··· 16274 }) 16275 sources."serve-static-1.15.0" 16276 sources."set-blocking-2.0.0" 16277 (sources."set-value-2.0.1" // { 16278 dependencies = [ 16279 sources."extend-shallow-2.0.1" ··· 16349 sources."spdx-correct-3.2.0" 16350 sources."spdx-exceptions-2.3.0" 16351 sources."spdx-expression-parse-3.0.1" 16352 - sources."spdx-license-ids-3.0.13" 16353 sources."spdy-4.0.2" 16354 (sources."spdy-transport-3.0.0" // { 16355 dependencies = [ ··· 16392 sources."strip-ansi-6.0.1" 16393 ]; 16394 }) 16395 - sources."string.prototype.trim-1.2.7" 16396 - sources."string.prototype.trimend-1.0.6" 16397 - sources."string.prototype.trimstart-1.0.6" 16398 sources."string_decoder-1.1.1" 16399 (sources."stringify-object-3.3.0" // { 16400 dependencies = [ ··· 16476 sources."to-regex-range-5.0.1" 16477 sources."toidentifier-1.0.1" 16478 sources."tough-cookie-2.5.0" 16479 - sources."tslib-2.5.0" 16480 sources."tty-browserify-0.0.0" 16481 sources."tunnel-agent-0.6.0" 16482 sources."tweetnacl-0.14.5" 16483 sources."type-is-1.6.18" 16484 sources."typed-array-length-1.0.4" 16485 sources."typedarray-0.0.6" 16486 (sources."uglify-es-3.3.10" // { ··· 16536 ]; 16537 }) 16538 sources."upath-1.2.0" 16539 - sources."update-browserslist-db-1.0.11" 16540 sources."uri-js-4.4.1" 16541 sources."urix-0.1.0" 16542 - (sources."url-0.11.0" // { 16543 dependencies = [ 16544 - sources."punycode-1.3.2" 16545 ]; 16546 }) 16547 (sources."url-loader-4.1.1" // { 16548 dependencies = [ 16549 sources."loader-utils-2.0.4" 16550 - sources."schema-utils-3.1.2" 16551 ]; 16552 }) 16553 sources."url-parse-1.5.10" ··· 16643 sources."readdirp-2.2.1" 16644 sources."require-main-filename-2.0.0" 16645 sources."schema-utils-1.0.0" 16646 - sources."semver-6.3.0" 16647 (sources."string-width-3.1.0" // { 16648 dependencies = [ 16649 sources."ansi-regex-4.1.1" ··· 16681 sources."which-2.0.2" 16682 sources."which-boxed-primitive-1.0.2" 16683 sources."which-module-1.0.0" 16684 - sources."which-typed-array-1.1.9" 16685 (sources."winston-2.1.1" // { 16686 dependencies = [ 16687 sources."async-1.0.0" ··· 16799 sources."pretty-format-27.5.1" 16800 sources."react-is-17.0.2" 16801 sources."rimraf-2.6.3" 16802 - sources."semver-5.7.1" 16803 sources."shebang-command-1.2.0" 16804 sources."shebang-regex-1.0.0" 16805 sources."supports-color-7.2.0" ··· 16822 elm-pages = nodeEnv.buildNodePackage { 16823 name = "elm-pages"; 16824 packageName = "elm-pages"; 16825 - version = "2.1.12"; 16826 src = fetchurl { 16827 - url = "https://registry.npmjs.org/elm-pages/-/elm-pages-2.1.12.tgz"; 16828 - sha512 = "uC6XZAmakIcRYJlqywgHsnVNlwzQZxVqPo8fsFCJWBYwwjWhD/uYSFGdFwB29wyxaI6BgRi8Rm745VU1oCortg=="; 16829 }; 16830 dependencies = [ 16831 sources."@jridgewell/gen-mapping-0.3.3" 16832 - sources."@jridgewell/resolve-uri-3.1.0" 16833 sources."@jridgewell/set-array-1.1.2" 16834 - sources."@jridgewell/source-map-0.3.3" 16835 sources."@jridgewell/sourcemap-codec-1.4.15" 16836 - (sources."@jridgewell/trace-mapping-0.3.18" // { 16837 dependencies = [ 16838 - sources."@jridgewell/sourcemap-codec-1.4.14" 16839 ]; 16840 }) 16841 - sources."@nodelib/fs.scandir-2.1.5" 16842 - sources."@nodelib/fs.stat-2.0.5" 16843 - sources."@nodelib/fs.walk-1.2.8" 16844 sources."@sindresorhus/is-0.14.0" 16845 sources."@szmarczak/http-timer-1.1.2" 16846 sources."@types/configstore-2.1.1" 16847 sources."@types/debug-0.0.30" 16848 sources."@types/get-port-3.2.0" 16849 sources."@types/glob-5.0.38" 16850 - sources."@types/lodash-4.14.194" 16851 sources."@types/minimatch-5.1.2" 16852 sources."@types/mkdirp-0.5.2" 16853 sources."@types/node-8.10.66" 16854 sources."@types/rimraf-2.0.5" 16855 sources."@types/tmp-0.0.33" 16856 sources."accepts-1.3.8" 16857 - sources."acorn-8.8.2" 16858 - sources."ansi-escapes-3.2.0" 16859 sources."ansi-styles-4.3.0" 16860 sources."anymatch-3.1.3" 16861 sources."application-config-path-0.1.1" 16862 sources."argparse-1.0.10" 16863 sources."array-flatten-1.1.1" 16864 - sources."array-union-2.1.0" 16865 sources."async-limiter-1.0.1" 16866 sources."balanced-match-1.0.2" 16867 sources."batch-0.6.1" ··· 16875 sources."braces-3.0.2" 16876 sources."buffer-from-1.1.2" 16877 sources."bufferutil-4.0.7" 16878 sources."bytes-3.1.2" 16879 (sources."cacheable-request-6.1.0" // { 16880 dependencies = [ 16881 sources."get-stream-5.2.0" ··· 16884 }) 16885 sources."call-bind-1.0.2" 16886 sources."chalk-3.0.0" 16887 - sources."chokidar-3.5.2" 16888 sources."clone-response-1.0.3" 16889 sources."color-convert-2.0.1" 16890 sources."color-name-1.1.4" 16891 sources."command-exists-1.2.9" 16892 - sources."commander-8.3.0" 16893 sources."concat-map-0.0.1" 16894 sources."connect-3.7.0" 16895 sources."content-disposition-0.5.4" 16896 sources."content-type-1.0.5" 16897 sources."cookie-0.5.0" 16898 - sources."cookie-signature-1.0.6" 16899 - sources."cross-spawn-7.0.3" 16900 sources."debug-2.6.9" 16901 sources."decompress-response-3.3.0" 16902 sources."deep-extend-0.6.0" 16903 sources."defer-to-connect-1.1.3" 16904 sources."depd-2.0.0" 16905 sources."destroy-1.2.0" 16906 (sources."devcert-1.2.2" // { 16907 dependencies = [ 16908 sources."debug-3.2.7" ··· 16911 }) 16912 sources."dir-glob-3.0.1" 16913 sources."duplexer3-0.1.5" 16914 sources."ee-first-1.1.1" 16915 (sources."elm-doc-preview-5.0.5" // { 16916 dependencies = [ ··· 16919 ]; 16920 }) 16921 sources."elm-hot-1.1.6" 16922 sources."encodeurl-1.0.2" 16923 sources."end-of-stream-1.4.4" 16924 sources."eol-0.9.1" 16925 sources."escape-html-1.0.3" 16926 sources."esprima-4.0.1" 16927 sources."etag-1.8.1" 16928 (sources."express-4.18.2" // { 16929 dependencies = [ 16930 sources."finalhandler-1.2.0" 16931 sources."on-finished-2.4.1" 16932 sources."statuses-2.0.1" ··· 16938 ]; 16939 }) 16940 sources."extend-shallow-2.0.1" 16941 - sources."fast-glob-3.2.12" 16942 sources."fastq-1.15.0" 16943 sources."fill-range-7.0.1" 16944 sources."finalhandler-1.1.2" 16945 sources."forwarded-0.2.0" 16946 sources."fresh-0.5.2" 16947 - sources."fs-extra-10.1.0" 16948 sources."fs.realpath-1.0.0" 16949 - sources."fsevents-2.3.2" 16950 sources."function-bind-1.1.1" 16951 - sources."get-intrinsic-1.2.0" 16952 sources."get-port-3.2.0" 16953 sources."get-stream-4.1.0" 16954 sources."glob-7.2.3" 16955 sources."glob-parent-5.1.2" 16956 - sources."globby-11.0.4" 16957 sources."got-9.6.0" 16958 sources."graceful-fs-4.2.11" 16959 sources."gray-matter-4.0.3" 16960 - sources."has-1.0.3" 16961 sources."has-flag-4.0.0" 16962 sources."has-symbols-1.0.3" 16963 sources."http-cache-semantics-4.1.1" 16964 (sources."http-errors-2.0.0" // { ··· 16966 sources."statuses-2.0.1" 16967 ]; 16968 }) 16969 sources."iconv-lite-0.4.24" 16970 sources."ignore-5.2.4" 16971 sources."inflight-1.0.6" 16972 sources."inherits-2.0.4" 16973 sources."ini-1.3.8" 16974 sources."ipaddr.js-1.9.1" 16975 sources."is-binary-path-2.1.0" 16976 sources."is-docker-2.2.1" 16977 sources."is-extendable-0.1.1" 16978 sources."is-extglob-2.1.1" 16979 sources."is-glob-4.0.3" 16980 sources."is-number-7.0.0" 16981 sources."is-valid-domain-0.1.6" 16982 sources."is-wsl-2.2.0" 16983 sources."isexe-2.0.0" 16984 sources."js-yaml-3.14.1" 16985 sources."jsesc-3.0.2" 16986 sources."json-buffer-3.0.0" ··· 16989 sources."kind-of-6.0.3" 16990 sources."kleur-4.1.5" 16991 sources."latest-version-5.1.0" 16992 sources."lodash-4.17.21" 16993 sources."lowercase-keys-1.0.1" 16994 sources."media-typer-0.3.0" 16995 sources."merge-descriptors-1.0.1" 16996 sources."merge2-1.4.1" 16997 sources."methods-1.1.2" ··· 17002 sources."mimic-response-1.0.1" 17003 sources."minimatch-3.1.2" 17004 sources."minimist-1.2.8" 17005 sources."mkdirp-0.5.6" 17006 sources."ms-2.0.0" 17007 sources."negotiator-0.6.3" 17008 - sources."nice-try-1.0.5" 17009 - sources."node-gyp-build-4.6.0" 17010 sources."normalize-path-3.0.0" 17011 sources."normalize-url-4.5.1" 17012 - sources."object-hash-2.2.0" 17013 sources."object-inspect-1.12.3" 17014 sources."on-finished-2.3.0" 17015 sources."once-1.4.0" 17016 sources."open-7.4.2" 17017 sources."os-tmpdir-1.0.2" 17018 sources."p-cancelable-1.1.0" 17019 - (sources."package-json-6.5.0" // { 17020 - dependencies = [ 17021 - sources."semver-6.3.0" 17022 - ]; 17023 - }) 17024 sources."parseurl-1.3.3" 17025 - (sources."password-prompt-1.1.2" // { 17026 dependencies = [ 17027 - sources."cross-spawn-6.0.5" 17028 - sources."path-key-2.0.1" 17029 - sources."shebang-command-1.2.0" 17030 - sources."shebang-regex-1.0.0" 17031 - sources."which-1.3.1" 17032 ]; 17033 }) 17034 - sources."path-is-absolute-1.0.1" 17035 - sources."path-key-3.1.1" 17036 sources."path-to-regexp-0.1.7" 17037 sources."path-type-4.0.0" 17038 sources."picomatch-2.3.1" 17039 sources."prepend-http-2.0.0" 17040 sources."proxy-addr-2.0.7" 17041 sources."pump-3.0.0" 17042 sources."punycode-2.3.0" 17043 sources."qs-6.11.0" ··· 17049 sources."registry-auth-token-4.2.2" 17050 sources."registry-url-5.1.0" 17051 sources."responselike-1.0.2" 17052 sources."reusify-1.0.4" 17053 sources."rimraf-2.7.1" 17054 sources."run-parallel-1.2.0" 17055 sources."safe-buffer-5.2.1" 17056 sources."safer-buffer-2.1.2" 17057 sources."section-matter-1.0.0" 17058 - sources."semver-5.7.1" 17059 (sources."send-0.18.0" // { 17060 dependencies = [ 17061 sources."ms-2.1.3" ··· 17076 sources."shebang-command-2.0.0" 17077 sources."shebang-regex-3.0.0" 17078 sources."side-channel-1.0.4" 17079 - sources."slash-3.0.0" 17080 sources."source-map-0.6.1" 17081 sources."source-map-support-0.5.21" 17082 sources."sprintf-js-1.0.3" 17083 sources."statuses-1.5.0" 17084 sources."strip-bom-string-1.0.0" 17085 sources."strip-json-comments-2.0.1" 17086 sources."sudo-prompt-8.2.5" 17087 sources."supports-color-7.2.0" 17088 - (sources."terser-5.17.1" // { 17089 dependencies = [ 17090 sources."commander-2.20.3" 17091 ]; ··· 17095 sources."to-regex-range-5.0.1" 17096 sources."toidentifier-1.0.1" 17097 sources."tslib-1.14.1" 17098 sources."type-is-1.6.18" 17099 - sources."undici-4.16.0" 17100 sources."universalify-2.0.0" 17101 sources."unpipe-1.0.0" 17102 sources."url-parse-lax-3.0.0" 17103 sources."utf-8-validate-5.0.10" 17104 sources."utils-merge-1.0.1" 17105 sources."vary-1.1.2" 17106 - sources."which-2.0.2" 17107 sources."wrappy-1.0.2" 17108 sources."ws-7.5.9" 17109 ]; 17110 buildInputs = globalBuildInputs; 17111 meta = { ··· 17120 elm-review = nodeEnv.buildNodePackage { 17121 name = "elm-review"; 17122 packageName = "elm-review"; 17123 - version = "2.10.1"; 17124 src = fetchurl { 17125 - url = "https://registry.npmjs.org/elm-review/-/elm-review-2.10.1.tgz"; 17126 - sha512 = "uEc4McppMqmWEaRo+jo5RowbDyfcBr0MTFN0kZt9gWrmmK6hPilTJJGtRmoH+K/aJtq4ZPDDF97oAFdkylD1gg=="; 17127 }; 17128 dependencies = [ 17129 sources."@sindresorhus/is-4.6.0" 17130 sources."@szmarczak/http-timer-4.0.6" 17131 sources."@types/cacheable-request-6.0.3" 17132 - sources."@types/http-cache-semantics-4.0.1" 17133 sources."@types/keyv-3.1.4" 17134 - sources."@types/node-18.16.3" 17135 - sources."@types/responselike-1.0.0" 17136 sources."ansi-escapes-4.3.2" 17137 - sources."ansi-regex-5.0.1" 17138 sources."ansi-styles-4.3.0" 17139 sources."anymatch-3.1.3" 17140 sources."at-least-node-1.0.0" ··· 17146 sources."braces-3.0.2" 17147 sources."buffer-5.7.1" 17148 sources."cacheable-lookup-5.0.4" 17149 - sources."cacheable-request-7.0.2" 17150 sources."chalk-4.1.2" 17151 sources."chokidar-3.5.3" 17152 sources."cli-cursor-3.1.0" 17153 - sources."cli-spinners-2.9.0" 17154 sources."clone-1.0.4" 17155 sources."clone-response-1.0.3" 17156 sources."color-convert-2.0.1" ··· 17165 }) 17166 sources."defaults-1.0.4" 17167 sources."defer-to-connect-2.0.1" 17168 - sources."elm-tooling-1.14.0" 17169 - sources."emoji-regex-8.0.0" 17170 sources."end-of-stream-1.4.4" 17171 - sources."fast-levenshtein-3.0.0" 17172 sources."fastest-levenshtein-1.0.16" 17173 sources."fill-range-7.0.1" 17174 sources."find-up-4.1.0" 17175 sources."folder-hash-3.3.3" 17176 sources."fs-extra-9.1.0" 17177 sources."fs.realpath-1.0.0" 17178 - sources."fsevents-2.3.2" 17179 sources."get-stream-5.2.0" 17180 (sources."glob-7.2.3" // { 17181 dependencies = [ ··· 17199 sources."is-number-7.0.0" 17200 sources."is-unicode-supported-0.1.0" 17201 sources."isexe-2.0.0" 17202 sources."json-buffer-3.0.1" 17203 sources."jsonfile-6.1.0" 17204 - sources."keyv-4.5.2" 17205 sources."kleur-3.0.3" 17206 sources."locate-path-5.0.0" 17207 sources."log-symbols-4.1.0" 17208 sources."lowercase-keys-2.0.0" 17209 sources."mimic-fn-2.1.0" 17210 sources."mimic-response-1.0.1" 17211 sources."minimatch-3.0.8" 17212 sources."minimist-1.2.8" 17213 - sources."mkdirp-0.5.6" 17214 sources."ms-2.1.2" 17215 sources."normalize-path-3.0.0" 17216 sources."normalize-url-6.1.0" ··· 17224 sources."path-exists-4.0.0" 17225 sources."path-is-absolute-1.0.1" 17226 sources."path-key-3.1.1" 17227 sources."picomatch-2.3.1" 17228 sources."prompts-2.4.2" 17229 sources."pump-3.0.0" ··· 17233 sources."resolve-alpn-1.2.1" 17234 sources."responselike-2.0.1" 17235 sources."restore-cursor-3.1.0" 17236 - sources."rimraf-2.6.3" 17237 sources."safe-buffer-5.2.1" 17238 sources."shebang-command-2.0.0" 17239 sources."shebang-regex-3.0.0" 17240 sources."signal-exit-3.0.7" 17241 sources."sisteransi-1.0.5" 17242 - sources."string-width-4.2.3" 17243 sources."string_decoder-1.3.0" 17244 - sources."strip-ansi-6.0.1" 17245 sources."supports-color-7.2.0" 17246 sources."supports-hyperlinks-2.3.0" 17247 - sources."temp-0.9.4" 17248 sources."terminal-link-2.1.1" 17249 sources."to-regex-range-5.0.1" 17250 sources."type-fest-0.21.3" ··· 17252 sources."util-deprecate-1.0.2" 17253 sources."wcwidth-1.0.1" 17254 sources."which-2.0.2" 17255 - sources."wrap-ansi-6.2.0" 17256 sources."wrappy-1.0.2" 17257 ]; 17258 buildInputs = globalBuildInputs; ··· 17280 sources."git-clone-able-0.1.2" 17281 sources."lru-cache-6.0.0" 17282 sources."ms-2.1.2" 17283 - sources."semver-7.5.0" 17284 - sources."simple-git-3.18.0" 17285 sources."upath-2.0.1" 17286 sources."yallist-4.0.0" 17287 ];
··· 4 5 let 6 sources = { 7 + "@adobe/css-tools-4.2.0" = { 8 + name = "_at_adobe_slash_css-tools"; 9 + packageName = "@adobe/css-tools"; 10 + version = "4.2.0"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz"; 13 + sha512 = "E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA=="; 14 + }; 15 + }; 16 "@babel/cli-7.12.10" = { 17 name = "_at_babel_slash_cli"; 18 packageName = "@babel/cli"; ··· 31 sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=="; 32 }; 33 }; 34 + "@babel/code-frame-7.22.13" = { 35 name = "_at_babel_slash_code-frame"; 36 packageName = "@babel/code-frame"; 37 + version = "7.22.13"; 38 src = fetchurl { 39 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz"; 40 + sha512 = "XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w=="; 41 }; 42 }; 43 + "@babel/compat-data-7.22.20" = { 44 name = "_at_babel_slash_compat-data"; 45 packageName = "@babel/compat-data"; 46 + version = "7.22.20"; 47 src = fetchurl { 48 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz"; 49 + sha512 = "BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw=="; 50 }; 51 }; 52 "@babel/core-7.12.10" = { ··· 58 sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 59 }; 60 }; 61 + "@babel/generator-7.23.0" = { 62 name = "_at_babel_slash_generator"; 63 packageName = "@babel/generator"; 64 + version = "7.23.0"; 65 src = fetchurl { 66 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz"; 67 + sha512 = "lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g=="; 68 }; 69 }; 70 + "@babel/helper-annotate-as-pure-7.22.5" = { 71 name = "_at_babel_slash_helper-annotate-as-pure"; 72 packageName = "@babel/helper-annotate-as-pure"; 73 + version = "7.22.5"; 74 src = fetchurl { 75 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz"; 76 + sha512 = "LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="; 77 }; 78 }; 79 + "@babel/helper-builder-binary-assignment-operator-visitor-7.22.15" = { 80 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 81 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 82 + version = "7.22.15"; 83 src = fetchurl { 84 + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz"; 85 + sha512 = "QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw=="; 86 }; 87 }; 88 + "@babel/helper-compilation-targets-7.22.15" = { 89 name = "_at_babel_slash_helper-compilation-targets"; 90 packageName = "@babel/helper-compilation-targets"; 91 + version = "7.22.15"; 92 src = fetchurl { 93 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz"; 94 + sha512 = "y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw=="; 95 }; 96 }; 97 + "@babel/helper-create-class-features-plugin-7.22.15" = { 98 name = "_at_babel_slash_helper-create-class-features-plugin"; 99 packageName = "@babel/helper-create-class-features-plugin"; 100 + version = "7.22.15"; 101 src = fetchurl { 102 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz"; 103 + sha512 = "jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg=="; 104 }; 105 }; 106 + "@babel/helper-create-regexp-features-plugin-7.22.15" = { 107 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 108 packageName = "@babel/helper-create-regexp-features-plugin"; 109 + version = "7.22.15"; 110 src = fetchurl { 111 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz"; 112 + sha512 = "29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w=="; 113 }; 114 }; 115 + "@babel/helper-environment-visitor-7.22.20" = { 116 name = "_at_babel_slash_helper-environment-visitor"; 117 packageName = "@babel/helper-environment-visitor"; 118 + version = "7.22.20"; 119 src = fetchurl { 120 + url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz"; 121 + sha512 = "zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA=="; 122 }; 123 }; 124 + "@babel/helper-function-name-7.23.0" = { 125 name = "_at_babel_slash_helper-function-name"; 126 packageName = "@babel/helper-function-name"; 127 + version = "7.23.0"; 128 src = fetchurl { 129 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz"; 130 + sha512 = "OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw=="; 131 }; 132 }; 133 + "@babel/helper-hoist-variables-7.22.5" = { 134 name = "_at_babel_slash_helper-hoist-variables"; 135 packageName = "@babel/helper-hoist-variables"; 136 + version = "7.22.5"; 137 src = fetchurl { 138 + url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz"; 139 + sha512 = "wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="; 140 }; 141 }; 142 + "@babel/helper-member-expression-to-functions-7.23.0" = { 143 name = "_at_babel_slash_helper-member-expression-to-functions"; 144 packageName = "@babel/helper-member-expression-to-functions"; 145 + version = "7.23.0"; 146 src = fetchurl { 147 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz"; 148 + sha512 = "6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA=="; 149 }; 150 }; 151 + "@babel/helper-module-imports-7.22.15" = { 152 name = "_at_babel_slash_helper-module-imports"; 153 packageName = "@babel/helper-module-imports"; 154 + version = "7.22.15"; 155 src = fetchurl { 156 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz"; 157 + sha512 = "0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w=="; 158 }; 159 }; 160 + "@babel/helper-module-transforms-7.23.0" = { 161 name = "_at_babel_slash_helper-module-transforms"; 162 packageName = "@babel/helper-module-transforms"; 163 + version = "7.23.0"; 164 src = fetchurl { 165 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz"; 166 + sha512 = "WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw=="; 167 }; 168 }; 169 + "@babel/helper-optimise-call-expression-7.22.5" = { 170 name = "_at_babel_slash_helper-optimise-call-expression"; 171 packageName = "@babel/helper-optimise-call-expression"; 172 + version = "7.22.5"; 173 src = fetchurl { 174 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz"; 175 + sha512 = "HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="; 176 }; 177 }; 178 + "@babel/helper-plugin-utils-7.22.5" = { 179 name = "_at_babel_slash_helper-plugin-utils"; 180 packageName = "@babel/helper-plugin-utils"; 181 + version = "7.22.5"; 182 src = fetchurl { 183 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz"; 184 + sha512 = "uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="; 185 }; 186 }; 187 + "@babel/helper-remap-async-to-generator-7.22.20" = { 188 name = "_at_babel_slash_helper-remap-async-to-generator"; 189 packageName = "@babel/helper-remap-async-to-generator"; 190 + version = "7.22.20"; 191 src = fetchurl { 192 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz"; 193 + sha512 = "pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw=="; 194 }; 195 }; 196 + "@babel/helper-replace-supers-7.22.20" = { 197 name = "_at_babel_slash_helper-replace-supers"; 198 packageName = "@babel/helper-replace-supers"; 199 + version = "7.22.20"; 200 src = fetchurl { 201 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz"; 202 + sha512 = "qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw=="; 203 }; 204 }; 205 + "@babel/helper-simple-access-7.22.5" = { 206 name = "_at_babel_slash_helper-simple-access"; 207 packageName = "@babel/helper-simple-access"; 208 + version = "7.22.5"; 209 src = fetchurl { 210 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz"; 211 + sha512 = "n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="; 212 }; 213 }; 214 + "@babel/helper-skip-transparent-expression-wrappers-7.22.5" = { 215 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 216 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 217 + version = "7.22.5"; 218 src = fetchurl { 219 + url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz"; 220 + sha512 = "tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="; 221 }; 222 }; 223 + "@babel/helper-split-export-declaration-7.22.6" = { 224 name = "_at_babel_slash_helper-split-export-declaration"; 225 packageName = "@babel/helper-split-export-declaration"; 226 + version = "7.22.6"; 227 src = fetchurl { 228 + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz"; 229 + sha512 = "AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="; 230 }; 231 }; 232 + "@babel/helper-string-parser-7.22.5" = { 233 name = "_at_babel_slash_helper-string-parser"; 234 packageName = "@babel/helper-string-parser"; 235 + version = "7.22.5"; 236 src = fetchurl { 237 + url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz"; 238 + sha512 = "mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="; 239 }; 240 }; 241 + "@babel/helper-validator-identifier-7.22.20" = { 242 name = "_at_babel_slash_helper-validator-identifier"; 243 packageName = "@babel/helper-validator-identifier"; 244 + version = "7.22.20"; 245 src = fetchurl { 246 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz"; 247 + sha512 = "Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="; 248 }; 249 }; 250 + "@babel/helper-validator-option-7.22.15" = { 251 name = "_at_babel_slash_helper-validator-option"; 252 packageName = "@babel/helper-validator-option"; 253 + version = "7.22.15"; 254 src = fetchurl { 255 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz"; 256 + sha512 = "bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA=="; 257 }; 258 }; 259 + "@babel/helper-wrap-function-7.22.20" = { 260 name = "_at_babel_slash_helper-wrap-function"; 261 packageName = "@babel/helper-wrap-function"; 262 + version = "7.22.20"; 263 src = fetchurl { 264 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz"; 265 + sha512 = "pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw=="; 266 }; 267 }; 268 + "@babel/helpers-7.23.1" = { 269 name = "_at_babel_slash_helpers"; 270 packageName = "@babel/helpers"; 271 + version = "7.23.1"; 272 src = fetchurl { 273 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.1.tgz"; 274 + sha512 = "chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA=="; 275 }; 276 }; 277 + "@babel/highlight-7.22.20" = { 278 name = "_at_babel_slash_highlight"; 279 packageName = "@babel/highlight"; 280 + version = "7.22.20"; 281 src = fetchurl { 282 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz"; 283 + sha512 = "dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg=="; 284 }; 285 }; 286 + "@babel/parser-7.23.0" = { 287 name = "_at_babel_slash_parser"; 288 packageName = "@babel/parser"; 289 + version = "7.23.0"; 290 src = fetchurl { 291 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz"; 292 + sha512 = "vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw=="; 293 }; 294 }; 295 "@babel/plugin-proposal-async-generator-functions-7.20.7" = { ··· 517 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 518 }; 519 }; 520 + "@babel/plugin-transform-arrow-functions-7.22.5" = { 521 name = "_at_babel_slash_plugin-transform-arrow-functions"; 522 packageName = "@babel/plugin-transform-arrow-functions"; 523 + version = "7.22.5"; 524 src = fetchurl { 525 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz"; 526 + sha512 = "26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw=="; 527 }; 528 }; 529 + "@babel/plugin-transform-async-to-generator-7.22.5" = { 530 name = "_at_babel_slash_plugin-transform-async-to-generator"; 531 packageName = "@babel/plugin-transform-async-to-generator"; 532 + version = "7.22.5"; 533 src = fetchurl { 534 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz"; 535 + sha512 = "b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ=="; 536 }; 537 }; 538 + "@babel/plugin-transform-block-scoped-functions-7.22.5" = { 539 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 540 packageName = "@babel/plugin-transform-block-scoped-functions"; 541 + version = "7.22.5"; 542 src = fetchurl { 543 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz"; 544 + sha512 = "tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA=="; 545 }; 546 }; 547 + "@babel/plugin-transform-block-scoping-7.23.0" = { 548 name = "_at_babel_slash_plugin-transform-block-scoping"; 549 packageName = "@babel/plugin-transform-block-scoping"; 550 + version = "7.23.0"; 551 src = fetchurl { 552 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz"; 553 + sha512 = "cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g=="; 554 }; 555 }; 556 + "@babel/plugin-transform-classes-7.22.15" = { 557 name = "_at_babel_slash_plugin-transform-classes"; 558 packageName = "@babel/plugin-transform-classes"; 559 + version = "7.22.15"; 560 src = fetchurl { 561 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz"; 562 + sha512 = "VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw=="; 563 }; 564 }; 565 + "@babel/plugin-transform-computed-properties-7.22.5" = { 566 name = "_at_babel_slash_plugin-transform-computed-properties"; 567 packageName = "@babel/plugin-transform-computed-properties"; 568 + version = "7.22.5"; 569 src = fetchurl { 570 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz"; 571 + sha512 = "4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg=="; 572 }; 573 }; 574 + "@babel/plugin-transform-destructuring-7.23.0" = { 575 name = "_at_babel_slash_plugin-transform-destructuring"; 576 packageName = "@babel/plugin-transform-destructuring"; 577 + version = "7.23.0"; 578 src = fetchurl { 579 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz"; 580 + sha512 = "vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg=="; 581 }; 582 }; 583 + "@babel/plugin-transform-dotall-regex-7.22.5" = { 584 name = "_at_babel_slash_plugin-transform-dotall-regex"; 585 packageName = "@babel/plugin-transform-dotall-regex"; 586 + version = "7.22.5"; 587 src = fetchurl { 588 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz"; 589 + sha512 = "5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw=="; 590 }; 591 }; 592 + "@babel/plugin-transform-duplicate-keys-7.22.5" = { 593 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 594 packageName = "@babel/plugin-transform-duplicate-keys"; 595 + version = "7.22.5"; 596 src = fetchurl { 597 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz"; 598 + sha512 = "dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw=="; 599 }; 600 }; 601 + "@babel/plugin-transform-exponentiation-operator-7.22.5" = { 602 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 603 packageName = "@babel/plugin-transform-exponentiation-operator"; 604 + version = "7.22.5"; 605 src = fetchurl { 606 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz"; 607 + sha512 = "vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g=="; 608 }; 609 }; 610 + "@babel/plugin-transform-for-of-7.22.15" = { 611 name = "_at_babel_slash_plugin-transform-for-of"; 612 packageName = "@babel/plugin-transform-for-of"; 613 + version = "7.22.15"; 614 src = fetchurl { 615 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz"; 616 + sha512 = "me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA=="; 617 }; 618 }; 619 + "@babel/plugin-transform-function-name-7.22.5" = { 620 name = "_at_babel_slash_plugin-transform-function-name"; 621 packageName = "@babel/plugin-transform-function-name"; 622 + version = "7.22.5"; 623 src = fetchurl { 624 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz"; 625 + sha512 = "UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg=="; 626 }; 627 }; 628 + "@babel/plugin-transform-literals-7.22.5" = { 629 name = "_at_babel_slash_plugin-transform-literals"; 630 packageName = "@babel/plugin-transform-literals"; 631 + version = "7.22.5"; 632 src = fetchurl { 633 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz"; 634 + sha512 = "fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g=="; 635 }; 636 }; 637 + "@babel/plugin-transform-member-expression-literals-7.22.5" = { 638 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 639 packageName = "@babel/plugin-transform-member-expression-literals"; 640 + version = "7.22.5"; 641 src = fetchurl { 642 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz"; 643 + sha512 = "RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew=="; 644 }; 645 }; 646 + "@babel/plugin-transform-modules-amd-7.23.0" = { 647 name = "_at_babel_slash_plugin-transform-modules-amd"; 648 packageName = "@babel/plugin-transform-modules-amd"; 649 + version = "7.23.0"; 650 src = fetchurl { 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz"; 652 + sha512 = "xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw=="; 653 }; 654 }; 655 + "@babel/plugin-transform-modules-commonjs-7.23.0" = { 656 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 657 packageName = "@babel/plugin-transform-modules-commonjs"; 658 + version = "7.23.0"; 659 src = fetchurl { 660 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz"; 661 + sha512 = "32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ=="; 662 }; 663 }; 664 + "@babel/plugin-transform-modules-systemjs-7.23.0" = { 665 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 666 packageName = "@babel/plugin-transform-modules-systemjs"; 667 + version = "7.23.0"; 668 src = fetchurl { 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz"; 670 + sha512 = "qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg=="; 671 }; 672 }; 673 + "@babel/plugin-transform-modules-umd-7.22.5" = { 674 name = "_at_babel_slash_plugin-transform-modules-umd"; 675 packageName = "@babel/plugin-transform-modules-umd"; 676 + version = "7.22.5"; 677 src = fetchurl { 678 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz"; 679 + sha512 = "+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ=="; 680 }; 681 }; 682 + "@babel/plugin-transform-named-capturing-groups-regex-7.22.5" = { 683 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 684 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 685 + version = "7.22.5"; 686 src = fetchurl { 687 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz"; 688 + sha512 = "YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ=="; 689 }; 690 }; 691 + "@babel/plugin-transform-new-target-7.22.5" = { 692 name = "_at_babel_slash_plugin-transform-new-target"; 693 packageName = "@babel/plugin-transform-new-target"; 694 + version = "7.22.5"; 695 src = fetchurl { 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz"; 697 + sha512 = "AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw=="; 698 }; 699 }; 700 + "@babel/plugin-transform-object-super-7.22.5" = { 701 name = "_at_babel_slash_plugin-transform-object-super"; 702 packageName = "@babel/plugin-transform-object-super"; 703 + version = "7.22.5"; 704 src = fetchurl { 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz"; 706 + sha512 = "klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw=="; 707 }; 708 }; 709 + "@babel/plugin-transform-parameters-7.22.15" = { 710 name = "_at_babel_slash_plugin-transform-parameters"; 711 packageName = "@babel/plugin-transform-parameters"; 712 + version = "7.22.15"; 713 src = fetchurl { 714 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz"; 715 + sha512 = "hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ=="; 716 }; 717 }; 718 + "@babel/plugin-transform-property-literals-7.22.5" = { 719 name = "_at_babel_slash_plugin-transform-property-literals"; 720 packageName = "@babel/plugin-transform-property-literals"; 721 + version = "7.22.5"; 722 src = fetchurl { 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz"; 724 + sha512 = "TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ=="; 725 }; 726 }; 727 + "@babel/plugin-transform-regenerator-7.22.10" = { 728 name = "_at_babel_slash_plugin-transform-regenerator"; 729 packageName = "@babel/plugin-transform-regenerator"; 730 + version = "7.22.10"; 731 src = fetchurl { 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz"; 733 + sha512 = "F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw=="; 734 }; 735 }; 736 + "@babel/plugin-transform-reserved-words-7.22.5" = { 737 name = "_at_babel_slash_plugin-transform-reserved-words"; 738 packageName = "@babel/plugin-transform-reserved-words"; 739 + version = "7.22.5"; 740 src = fetchurl { 741 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz"; 742 + sha512 = "DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA=="; 743 }; 744 }; 745 "@babel/plugin-transform-runtime-7.12.10" = { ··· 751 sha512 = "xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA=="; 752 }; 753 }; 754 + "@babel/plugin-transform-shorthand-properties-7.22.5" = { 755 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 756 packageName = "@babel/plugin-transform-shorthand-properties"; 757 + version = "7.22.5"; 758 src = fetchurl { 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz"; 760 + sha512 = "vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA=="; 761 }; 762 }; 763 + "@babel/plugin-transform-spread-7.22.5" = { 764 name = "_at_babel_slash_plugin-transform-spread"; 765 packageName = "@babel/plugin-transform-spread"; 766 + version = "7.22.5"; 767 src = fetchurl { 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz"; 769 + sha512 = "5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg=="; 770 }; 771 }; 772 + "@babel/plugin-transform-sticky-regex-7.22.5" = { 773 name = "_at_babel_slash_plugin-transform-sticky-regex"; 774 packageName = "@babel/plugin-transform-sticky-regex"; 775 + version = "7.22.5"; 776 src = fetchurl { 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz"; 778 + sha512 = "zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw=="; 779 }; 780 }; 781 + "@babel/plugin-transform-template-literals-7.22.5" = { 782 name = "_at_babel_slash_plugin-transform-template-literals"; 783 packageName = "@babel/plugin-transform-template-literals"; 784 + version = "7.22.5"; 785 src = fetchurl { 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz"; 787 + sha512 = "5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA=="; 788 }; 789 }; 790 + "@babel/plugin-transform-typeof-symbol-7.22.5" = { 791 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 792 packageName = "@babel/plugin-transform-typeof-symbol"; 793 + version = "7.22.5"; 794 src = fetchurl { 795 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz"; 796 + sha512 = "bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA=="; 797 }; 798 }; 799 + "@babel/plugin-transform-unicode-escapes-7.22.10" = { 800 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 801 packageName = "@babel/plugin-transform-unicode-escapes"; 802 + version = "7.22.10"; 803 src = fetchurl { 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz"; 805 + sha512 = "lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg=="; 806 }; 807 }; 808 + "@babel/plugin-transform-unicode-regex-7.22.5" = { 809 name = "_at_babel_slash_plugin-transform-unicode-regex"; 810 packageName = "@babel/plugin-transform-unicode-regex"; 811 + version = "7.22.5"; 812 src = fetchurl { 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz"; 814 + sha512 = "028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg=="; 815 }; 816 }; 817 "@babel/preset-env-7.12.10" = { ··· 823 sha512 = "Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA=="; 824 }; 825 }; 826 + "@babel/preset-modules-0.1.6" = { 827 name = "_at_babel_slash_preset-modules"; 828 packageName = "@babel/preset-modules"; 829 + version = "0.1.6"; 830 src = fetchurl { 831 + url = "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz"; 832 + sha512 = "ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg=="; 833 }; 834 }; 835 "@babel/regjsgen-0.8.0" = { ··· 850 sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 851 }; 852 }; 853 + "@babel/template-7.22.15" = { 854 name = "_at_babel_slash_template"; 855 packageName = "@babel/template"; 856 + version = "7.22.15"; 857 src = fetchurl { 858 + url = "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz"; 859 + sha512 = "QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w=="; 860 }; 861 }; 862 + "@babel/traverse-7.23.0" = { 863 name = "_at_babel_slash_traverse"; 864 packageName = "@babel/traverse"; 865 + version = "7.23.0"; 866 src = fetchurl { 867 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.0.tgz"; 868 + sha512 = "t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw=="; 869 }; 870 }; 871 + "@babel/types-7.23.0" = { 872 name = "_at_babel_slash_types"; 873 packageName = "@babel/types"; 874 + version = "7.23.0"; 875 + src = fetchurl { 876 + url = "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz"; 877 + sha512 = "0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg=="; 878 + }; 879 + }; 880 + "@esbuild/android-arm-0.17.19" = { 881 + name = "_at_esbuild_slash_android-arm"; 882 + packageName = "@esbuild/android-arm"; 883 + version = "0.17.19"; 884 + src = fetchurl { 885 + url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz"; 886 + sha512 = "rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A=="; 887 + }; 888 + }; 889 + "@esbuild/android-arm-0.18.20" = { 890 + name = "_at_esbuild_slash_android-arm"; 891 + packageName = "@esbuild/android-arm"; 892 + version = "0.18.20"; 893 + src = fetchurl { 894 + url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz"; 895 + sha512 = "fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw=="; 896 + }; 897 + }; 898 + "@esbuild/android-arm64-0.17.19" = { 899 + name = "_at_esbuild_slash_android-arm64"; 900 + packageName = "@esbuild/android-arm64"; 901 + version = "0.17.19"; 902 + src = fetchurl { 903 + url = "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz"; 904 + sha512 = "KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA=="; 905 + }; 906 + }; 907 + "@esbuild/android-arm64-0.18.20" = { 908 + name = "_at_esbuild_slash_android-arm64"; 909 + packageName = "@esbuild/android-arm64"; 910 + version = "0.18.20"; 911 + src = fetchurl { 912 + url = "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz"; 913 + sha512 = "Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ=="; 914 + }; 915 + }; 916 + "@esbuild/android-x64-0.17.19" = { 917 + name = "_at_esbuild_slash_android-x64"; 918 + packageName = "@esbuild/android-x64"; 919 + version = "0.17.19"; 920 + src = fetchurl { 921 + url = "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz"; 922 + sha512 = "uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww=="; 923 + }; 924 + }; 925 + "@esbuild/android-x64-0.18.20" = { 926 + name = "_at_esbuild_slash_android-x64"; 927 + packageName = "@esbuild/android-x64"; 928 + version = "0.18.20"; 929 + src = fetchurl { 930 + url = "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz"; 931 + sha512 = "8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg=="; 932 + }; 933 + }; 934 + "@esbuild/darwin-arm64-0.17.19" = { 935 + name = "_at_esbuild_slash_darwin-arm64"; 936 + packageName = "@esbuild/darwin-arm64"; 937 + version = "0.17.19"; 938 + src = fetchurl { 939 + url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz"; 940 + sha512 = "80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg=="; 941 + }; 942 + }; 943 + "@esbuild/darwin-arm64-0.18.20" = { 944 + name = "_at_esbuild_slash_darwin-arm64"; 945 + packageName = "@esbuild/darwin-arm64"; 946 + version = "0.18.20"; 947 + src = fetchurl { 948 + url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz"; 949 + sha512 = "bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA=="; 950 + }; 951 + }; 952 + "@esbuild/darwin-x64-0.17.19" = { 953 + name = "_at_esbuild_slash_darwin-x64"; 954 + packageName = "@esbuild/darwin-x64"; 955 + version = "0.17.19"; 956 + src = fetchurl { 957 + url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz"; 958 + sha512 = "IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw=="; 959 + }; 960 + }; 961 + "@esbuild/darwin-x64-0.18.20" = { 962 + name = "_at_esbuild_slash_darwin-x64"; 963 + packageName = "@esbuild/darwin-x64"; 964 + version = "0.18.20"; 965 + src = fetchurl { 966 + url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz"; 967 + sha512 = "pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ=="; 968 + }; 969 + }; 970 + "@esbuild/freebsd-arm64-0.17.19" = { 971 + name = "_at_esbuild_slash_freebsd-arm64"; 972 + packageName = "@esbuild/freebsd-arm64"; 973 + version = "0.17.19"; 974 + src = fetchurl { 975 + url = "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz"; 976 + sha512 = "pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ=="; 977 + }; 978 + }; 979 + "@esbuild/freebsd-arm64-0.18.20" = { 980 + name = "_at_esbuild_slash_freebsd-arm64"; 981 + packageName = "@esbuild/freebsd-arm64"; 982 + version = "0.18.20"; 983 + src = fetchurl { 984 + url = "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz"; 985 + sha512 = "yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw=="; 986 + }; 987 + }; 988 + "@esbuild/freebsd-x64-0.17.19" = { 989 + name = "_at_esbuild_slash_freebsd-x64"; 990 + packageName = "@esbuild/freebsd-x64"; 991 + version = "0.17.19"; 992 + src = fetchurl { 993 + url = "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz"; 994 + sha512 = "4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ=="; 995 + }; 996 + }; 997 + "@esbuild/freebsd-x64-0.18.20" = { 998 + name = "_at_esbuild_slash_freebsd-x64"; 999 + packageName = "@esbuild/freebsd-x64"; 1000 + version = "0.18.20"; 1001 + src = fetchurl { 1002 + url = "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz"; 1003 + sha512 = "tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ=="; 1004 + }; 1005 + }; 1006 + "@esbuild/linux-arm-0.17.19" = { 1007 + name = "_at_esbuild_slash_linux-arm"; 1008 + packageName = "@esbuild/linux-arm"; 1009 + version = "0.17.19"; 1010 + src = fetchurl { 1011 + url = "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz"; 1012 + sha512 = "cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA=="; 1013 + }; 1014 + }; 1015 + "@esbuild/linux-arm-0.18.20" = { 1016 + name = "_at_esbuild_slash_linux-arm"; 1017 + packageName = "@esbuild/linux-arm"; 1018 + version = "0.18.20"; 1019 + src = fetchurl { 1020 + url = "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz"; 1021 + sha512 = "/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg=="; 1022 + }; 1023 + }; 1024 + "@esbuild/linux-arm64-0.17.19" = { 1025 + name = "_at_esbuild_slash_linux-arm64"; 1026 + packageName = "@esbuild/linux-arm64"; 1027 + version = "0.17.19"; 1028 + src = fetchurl { 1029 + url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz"; 1030 + sha512 = "ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg=="; 1031 + }; 1032 + }; 1033 + "@esbuild/linux-arm64-0.18.20" = { 1034 + name = "_at_esbuild_slash_linux-arm64"; 1035 + packageName = "@esbuild/linux-arm64"; 1036 + version = "0.18.20"; 1037 + src = fetchurl { 1038 + url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz"; 1039 + sha512 = "2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA=="; 1040 + }; 1041 + }; 1042 + "@esbuild/linux-ia32-0.17.19" = { 1043 + name = "_at_esbuild_slash_linux-ia32"; 1044 + packageName = "@esbuild/linux-ia32"; 1045 + version = "0.17.19"; 1046 + src = fetchurl { 1047 + url = "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz"; 1048 + sha512 = "w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ=="; 1049 + }; 1050 + }; 1051 + "@esbuild/linux-ia32-0.18.20" = { 1052 + name = "_at_esbuild_slash_linux-ia32"; 1053 + packageName = "@esbuild/linux-ia32"; 1054 + version = "0.18.20"; 1055 + src = fetchurl { 1056 + url = "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz"; 1057 + sha512 = "P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA=="; 1058 + }; 1059 + }; 1060 + "@esbuild/linux-loong64-0.17.19" = { 1061 + name = "_at_esbuild_slash_linux-loong64"; 1062 + packageName = "@esbuild/linux-loong64"; 1063 + version = "0.17.19"; 1064 + src = fetchurl { 1065 + url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz"; 1066 + sha512 = "2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ=="; 1067 + }; 1068 + }; 1069 + "@esbuild/linux-loong64-0.18.20" = { 1070 + name = "_at_esbuild_slash_linux-loong64"; 1071 + packageName = "@esbuild/linux-loong64"; 1072 + version = "0.18.20"; 1073 + src = fetchurl { 1074 + url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz"; 1075 + sha512 = "nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg=="; 1076 + }; 1077 + }; 1078 + "@esbuild/linux-mips64el-0.17.19" = { 1079 + name = "_at_esbuild_slash_linux-mips64el"; 1080 + packageName = "@esbuild/linux-mips64el"; 1081 + version = "0.17.19"; 1082 + src = fetchurl { 1083 + url = "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz"; 1084 + sha512 = "LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A=="; 1085 + }; 1086 + }; 1087 + "@esbuild/linux-mips64el-0.18.20" = { 1088 + name = "_at_esbuild_slash_linux-mips64el"; 1089 + packageName = "@esbuild/linux-mips64el"; 1090 + version = "0.18.20"; 1091 + src = fetchurl { 1092 + url = "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz"; 1093 + sha512 = "d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ=="; 1094 + }; 1095 + }; 1096 + "@esbuild/linux-ppc64-0.17.19" = { 1097 + name = "_at_esbuild_slash_linux-ppc64"; 1098 + packageName = "@esbuild/linux-ppc64"; 1099 + version = "0.17.19"; 1100 + src = fetchurl { 1101 + url = "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz"; 1102 + sha512 = "/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg=="; 1103 + }; 1104 + }; 1105 + "@esbuild/linux-ppc64-0.18.20" = { 1106 + name = "_at_esbuild_slash_linux-ppc64"; 1107 + packageName = "@esbuild/linux-ppc64"; 1108 + version = "0.18.20"; 1109 + src = fetchurl { 1110 + url = "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz"; 1111 + sha512 = "WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA=="; 1112 + }; 1113 + }; 1114 + "@esbuild/linux-riscv64-0.17.19" = { 1115 + name = "_at_esbuild_slash_linux-riscv64"; 1116 + packageName = "@esbuild/linux-riscv64"; 1117 + version = "0.17.19"; 1118 + src = fetchurl { 1119 + url = "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz"; 1120 + sha512 = "FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA=="; 1121 + }; 1122 + }; 1123 + "@esbuild/linux-riscv64-0.18.20" = { 1124 + name = "_at_esbuild_slash_linux-riscv64"; 1125 + packageName = "@esbuild/linux-riscv64"; 1126 + version = "0.18.20"; 1127 + src = fetchurl { 1128 + url = "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz"; 1129 + sha512 = "WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A=="; 1130 + }; 1131 + }; 1132 + "@esbuild/linux-s390x-0.17.19" = { 1133 + name = "_at_esbuild_slash_linux-s390x"; 1134 + packageName = "@esbuild/linux-s390x"; 1135 + version = "0.17.19"; 1136 + src = fetchurl { 1137 + url = "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz"; 1138 + sha512 = "IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q=="; 1139 + }; 1140 + }; 1141 + "@esbuild/linux-s390x-0.18.20" = { 1142 + name = "_at_esbuild_slash_linux-s390x"; 1143 + packageName = "@esbuild/linux-s390x"; 1144 + version = "0.18.20"; 1145 + src = fetchurl { 1146 + url = "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz"; 1147 + sha512 = "+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ=="; 1148 + }; 1149 + }; 1150 + "@esbuild/linux-x64-0.17.19" = { 1151 + name = "_at_esbuild_slash_linux-x64"; 1152 + packageName = "@esbuild/linux-x64"; 1153 + version = "0.17.19"; 1154 + src = fetchurl { 1155 + url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz"; 1156 + sha512 = "68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw=="; 1157 + }; 1158 + }; 1159 + "@esbuild/linux-x64-0.18.20" = { 1160 + name = "_at_esbuild_slash_linux-x64"; 1161 + packageName = "@esbuild/linux-x64"; 1162 + version = "0.18.20"; 1163 + src = fetchurl { 1164 + url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz"; 1165 + sha512 = "UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w=="; 1166 + }; 1167 + }; 1168 + "@esbuild/netbsd-x64-0.17.19" = { 1169 + name = "_at_esbuild_slash_netbsd-x64"; 1170 + packageName = "@esbuild/netbsd-x64"; 1171 + version = "0.17.19"; 1172 src = fetchurl { 1173 + url = "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz"; 1174 + sha512 = "CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q=="; 1175 + }; 1176 + }; 1177 + "@esbuild/netbsd-x64-0.18.20" = { 1178 + name = "_at_esbuild_slash_netbsd-x64"; 1179 + packageName = "@esbuild/netbsd-x64"; 1180 + version = "0.18.20"; 1181 + src = fetchurl { 1182 + url = "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz"; 1183 + sha512 = "iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A=="; 1184 + }; 1185 + }; 1186 + "@esbuild/openbsd-x64-0.17.19" = { 1187 + name = "_at_esbuild_slash_openbsd-x64"; 1188 + packageName = "@esbuild/openbsd-x64"; 1189 + version = "0.17.19"; 1190 + src = fetchurl { 1191 + url = "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz"; 1192 + sha512 = "cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g=="; 1193 + }; 1194 + }; 1195 + "@esbuild/openbsd-x64-0.18.20" = { 1196 + name = "_at_esbuild_slash_openbsd-x64"; 1197 + packageName = "@esbuild/openbsd-x64"; 1198 + version = "0.18.20"; 1199 + src = fetchurl { 1200 + url = "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz"; 1201 + sha512 = "e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg=="; 1202 + }; 1203 + }; 1204 + "@esbuild/sunos-x64-0.17.19" = { 1205 + name = "_at_esbuild_slash_sunos-x64"; 1206 + packageName = "@esbuild/sunos-x64"; 1207 + version = "0.17.19"; 1208 + src = fetchurl { 1209 + url = "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz"; 1210 + sha512 = "vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg=="; 1211 + }; 1212 + }; 1213 + "@esbuild/sunos-x64-0.18.20" = { 1214 + name = "_at_esbuild_slash_sunos-x64"; 1215 + packageName = "@esbuild/sunos-x64"; 1216 + version = "0.18.20"; 1217 + src = fetchurl { 1218 + url = "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz"; 1219 + sha512 = "kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ=="; 1220 + }; 1221 + }; 1222 + "@esbuild/win32-arm64-0.17.19" = { 1223 + name = "_at_esbuild_slash_win32-arm64"; 1224 + packageName = "@esbuild/win32-arm64"; 1225 + version = "0.17.19"; 1226 + src = fetchurl { 1227 + url = "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz"; 1228 + sha512 = "yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag=="; 1229 + }; 1230 + }; 1231 + "@esbuild/win32-arm64-0.18.20" = { 1232 + name = "_at_esbuild_slash_win32-arm64"; 1233 + packageName = "@esbuild/win32-arm64"; 1234 + version = "0.18.20"; 1235 + src = fetchurl { 1236 + url = "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz"; 1237 + sha512 = "ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg=="; 1238 + }; 1239 + }; 1240 + "@esbuild/win32-ia32-0.17.19" = { 1241 + name = "_at_esbuild_slash_win32-ia32"; 1242 + packageName = "@esbuild/win32-ia32"; 1243 + version = "0.17.19"; 1244 + src = fetchurl { 1245 + url = "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz"; 1246 + sha512 = "eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw=="; 1247 + }; 1248 + }; 1249 + "@esbuild/win32-ia32-0.18.20" = { 1250 + name = "_at_esbuild_slash_win32-ia32"; 1251 + packageName = "@esbuild/win32-ia32"; 1252 + version = "0.18.20"; 1253 + src = fetchurl { 1254 + url = "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz"; 1255 + sha512 = "Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g=="; 1256 + }; 1257 + }; 1258 + "@esbuild/win32-x64-0.17.19" = { 1259 + name = "_at_esbuild_slash_win32-x64"; 1260 + packageName = "@esbuild/win32-x64"; 1261 + version = "0.17.19"; 1262 + src = fetchurl { 1263 + url = "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz"; 1264 + sha512 = "lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA=="; 1265 + }; 1266 + }; 1267 + "@esbuild/win32-x64-0.18.20" = { 1268 + name = "_at_esbuild_slash_win32-x64"; 1269 + packageName = "@esbuild/win32-x64"; 1270 + version = "0.18.20"; 1271 + src = fetchurl { 1272 + url = "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz"; 1273 + sha512 = "kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ=="; 1274 }; 1275 }; 1276 "@hapi/address-2.1.4" = { ··· 1318 sha512 = "tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ=="; 1319 }; 1320 }; 1321 + "@isaacs/cliui-8.0.2" = { 1322 + name = "_at_isaacs_slash_cliui"; 1323 + packageName = "@isaacs/cliui"; 1324 + version = "8.0.2"; 1325 + src = fetchurl { 1326 + url = "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz"; 1327 + sha512 = "O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="; 1328 + }; 1329 + }; 1330 "@jridgewell/gen-mapping-0.3.3" = { 1331 name = "_at_jridgewell_slash_gen-mapping"; 1332 packageName = "@jridgewell/gen-mapping"; ··· 1336 sha512 = "HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="; 1337 }; 1338 }; 1339 + "@jridgewell/resolve-uri-3.1.1" = { 1340 name = "_at_jridgewell_slash_resolve-uri"; 1341 packageName = "@jridgewell/resolve-uri"; 1342 + version = "3.1.1"; 1343 src = fetchurl { 1344 + url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz"; 1345 + sha512 = "dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA=="; 1346 }; 1347 }; 1348 "@jridgewell/set-array-1.1.2" = { ··· 1354 sha512 = "xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="; 1355 }; 1356 }; 1357 + "@jridgewell/source-map-0.3.5" = { 1358 name = "_at_jridgewell_slash_source-map"; 1359 packageName = "@jridgewell/source-map"; 1360 + version = "0.3.5"; 1361 src = fetchurl { 1362 + url = "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz"; 1363 + sha512 = "UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ=="; 1364 }; 1365 }; 1366 "@jridgewell/sourcemap-codec-1.4.15" = { ··· 1372 sha512 = "eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="; 1373 }; 1374 }; 1375 + "@jridgewell/trace-mapping-0.3.19" = { 1376 name = "_at_jridgewell_slash_trace-mapping"; 1377 packageName = "@jridgewell/trace-mapping"; 1378 + version = "0.3.19"; 1379 src = fetchurl { 1380 + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz"; 1381 + sha512 = "kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw=="; 1382 }; 1383 }; 1384 "@kwsites/file-exists-1.1.1" = { ··· 1444 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 1445 }; 1446 }; 1447 + "@npmcli/fs-3.1.0" = { 1448 + name = "_at_npmcli_slash_fs"; 1449 + packageName = "@npmcli/fs"; 1450 + version = "3.1.0"; 1451 + src = fetchurl { 1452 + url = "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz"; 1453 + sha512 = "7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w=="; 1454 + }; 1455 + }; 1456 "@sindresorhus/is-0.14.0" = { 1457 name = "_at_sindresorhus_slash_is"; 1458 packageName = "@sindresorhus/is"; ··· 1498 sha512 = "4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w=="; 1499 }; 1500 }; 1501 + "@tootallnate/once-2.0.0" = { 1502 + name = "_at_tootallnate_slash_once"; 1503 + packageName = "@tootallnate/once"; 1504 + version = "2.0.0"; 1505 + src = fetchurl { 1506 + url = "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz"; 1507 + sha512 = "XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="; 1508 + }; 1509 + }; 1510 "@types/cacheable-request-6.0.3" = { 1511 name = "_at_types_slash_cacheable-request"; 1512 packageName = "@types/cacheable-request"; ··· 1570 sha512 = "h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w=="; 1571 }; 1572 }; 1573 + "@types/http-cache-semantics-4.0.2" = { 1574 name = "_at_types_slash_http-cache-semantics"; 1575 packageName = "@types/http-cache-semantics"; 1576 + version = "4.0.2"; 1577 src = fetchurl { 1578 + url = "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.2.tgz"; 1579 + sha512 = "FD+nQWA2zJjh4L9+pFXqWOi0Hs1ryBCfI+985NjluQ1p8EYtoLvjLOKidXBtZ4/IcxDX4o8/E8qDS3540tNliw=="; 1580 }; 1581 }; 1582 + "@types/http-proxy-1.17.12" = { 1583 name = "_at_types_slash_http-proxy"; 1584 packageName = "@types/http-proxy"; 1585 + version = "1.17.12"; 1586 src = fetchurl { 1587 + url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.12.tgz"; 1588 + sha512 = "kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw=="; 1589 }; 1590 }; 1591 "@types/jest-27.5.2" = { ··· 1597 sha512 = "mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA=="; 1598 }; 1599 }; 1600 + "@types/json-schema-7.0.13" = { 1601 name = "_at_types_slash_json-schema"; 1602 packageName = "@types/json-schema"; 1603 + version = "7.0.13"; 1604 src = fetchurl { 1605 + url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.13.tgz"; 1606 + sha512 = "RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ=="; 1607 }; 1608 }; 1609 "@types/keyv-3.1.4" = { ··· 1615 sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="; 1616 }; 1617 }; 1618 + "@types/lodash-4.14.199" = { 1619 name = "_at_types_slash_lodash"; 1620 packageName = "@types/lodash"; 1621 + version = "4.14.199"; 1622 src = fetchurl { 1623 + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.199.tgz"; 1624 + sha512 = "Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg=="; 1625 }; 1626 }; 1627 "@types/minimatch-5.1.2" = { ··· 1642 sha512 = "U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg=="; 1643 }; 1644 }; 1645 + "@types/node-20.8.2" = { 1646 name = "_at_types_slash_node"; 1647 packageName = "@types/node"; 1648 + version = "20.8.2"; 1649 src = fetchurl { 1650 + url = "https://registry.npmjs.org/@types/node/-/node-20.8.2.tgz"; 1651 + sha512 = "Vvycsc9FQdwhxE3y3DzeIxuEJbWGDsnrxvMADzTDF/lcdR9/K+AQIeAghTQsHtotg/q0j3WEOYS/jQgSdWue3w=="; 1652 }; 1653 }; 1654 "@types/node-8.10.66" = { ··· 1669 sha512 = "//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="; 1670 }; 1671 }; 1672 + "@types/q-1.5.6" = { 1673 name = "_at_types_slash_q"; 1674 packageName = "@types/q"; 1675 + version = "1.5.6"; 1676 src = fetchurl { 1677 + url = "https://registry.npmjs.org/@types/q/-/q-1.5.6.tgz"; 1678 + sha512 = "IKjZ8RjTSwD4/YG+2gtj7BPFRB/lNbWKTiSj3M7U/TD2B7HfYCxvp2Zz6xA2WIY7pAuL1QOUPw8gQRbUrrq4fQ=="; 1679 }; 1680 }; 1681 + "@types/responselike-1.0.1" = { 1682 name = "_at_types_slash_responselike"; 1683 packageName = "@types/responselike"; 1684 + version = "1.0.1"; 1685 src = fetchurl { 1686 + url = "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.1.tgz"; 1687 + sha512 = "TiGnitEDxj2X0j+98Eqk5lv/Cij8oHd32bU4D/Yw6AOq7vvTk0gSD2GPj0G/HkvhMoVsdlhYF4yqqlyPBTM6Sg=="; 1688 }; 1689 }; 1690 "@types/rimraf-2.0.5" = { ··· 1696 sha512 = "YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g=="; 1697 }; 1698 }; 1699 + "@types/source-list-map-0.1.3" = { 1700 name = "_at_types_slash_source-list-map"; 1701 packageName = "@types/source-list-map"; 1702 + version = "0.1.3"; 1703 src = fetchurl { 1704 + url = "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.3.tgz"; 1705 + sha512 = "I9R/7fUjzUOyDy6AFkehCK711wWoAXEaBi80AfjZt1lIkbe6AcXKd3ckQc3liMvQExWvfOeh/8CtKzrfUFN5gA=="; 1706 }; 1707 }; 1708 + "@types/tapable-1.0.9" = { 1709 name = "_at_types_slash_tapable"; 1710 packageName = "@types/tapable"; 1711 + version = "1.0.9"; 1712 src = fetchurl { 1713 + url = "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.9.tgz"; 1714 + sha512 = "fOHIwZua0sRltqWzODGUM6b4ffZrf/vzGUmNXdR+4DzuJP42PMbM5dLKcdzlYvv8bMJ3GALOzkk1q7cDm2zPyA=="; 1715 }; 1716 }; 1717 "@types/tmp-0.0.33" = { ··· 1723 sha512 = "gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ=="; 1724 }; 1725 }; 1726 + "@types/uglify-js-3.17.2" = { 1727 name = "_at_types_slash_uglify-js"; 1728 packageName = "@types/uglify-js"; 1729 + version = "3.17.2"; 1730 src = fetchurl { 1731 + url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.2.tgz"; 1732 + sha512 = "9SjrHO54LINgC/6Ehr81NjAxAYvwEZqjUHLjJYvC4Nmr9jbLQCIZbWSvl4vXQkkmR1UAuaKDycau3O1kWGFyXQ=="; 1733 }; 1734 }; 1735 + "@types/webpack-4.41.34" = { 1736 name = "_at_types_slash_webpack"; 1737 packageName = "@types/webpack"; 1738 + version = "4.41.34"; 1739 src = fetchurl { 1740 + url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.34.tgz"; 1741 + sha512 = "CN2aOGrR3zbMc2v+cKqzaClYP1ldkpPOgtdNvgX+RmlWCSWxHxpzz6WSCVQZRkF8D60ROlkRzAoEpgjWQ+bd2g=="; 1742 }; 1743 }; 1744 + "@types/webpack-sources-3.2.1" = { 1745 name = "_at_types_slash_webpack-sources"; 1746 packageName = "@types/webpack-sources"; 1747 + version = "3.2.1"; 1748 src = fetchurl { 1749 + url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.1.tgz"; 1750 + sha512 = "iLC3Fsx62ejm3ST3PQ8vBMC54Rb3EoCprZjeJGI5q+9QjfDLGt9jeg/k245qz1G9AQnORGk0vqPicJFPT1QODQ=="; 1751 }; 1752 }; 1753 "@webassemblyjs/ast-1.9.0" = { ··· 1957 sha512 = "XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="; 1958 }; 1959 }; 1960 + "acorn-8.10.0" = { 1961 name = "acorn"; 1962 packageName = "acorn"; 1963 + version = "8.10.0"; 1964 src = fetchurl { 1965 + url = "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz"; 1966 + sha512 = "F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw=="; 1967 }; 1968 }; 1969 "address-1.0.3" = { ··· 1975 sha512 = "z55ocwKBRLryBs394Sm3ushTtBeg6VAeuku7utSoSnsJKvKcnXFIyC6vh27n3rXyxSgkJBBCAvyOn7gSUcTYjg=="; 1976 }; 1977 }; 1978 + "agent-base-6.0.2" = { 1979 + name = "agent-base"; 1980 + packageName = "agent-base"; 1981 + version = "6.0.2"; 1982 + src = fetchurl { 1983 + url = "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz"; 1984 + sha512 = "RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="; 1985 + }; 1986 + }; 1987 + "agentkeepalive-4.5.0" = { 1988 + name = "agentkeepalive"; 1989 + packageName = "agentkeepalive"; 1990 + version = "4.5.0"; 1991 + src = fetchurl { 1992 + url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz"; 1993 + sha512 = "5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew=="; 1994 + }; 1995 + }; 1996 + "aggregate-error-3.1.0" = { 1997 + name = "aggregate-error"; 1998 + packageName = "aggregate-error"; 1999 + version = "3.1.0"; 2000 + src = fetchurl { 2001 + url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"; 2002 + sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="; 2003 + }; 2004 + }; 2005 "ajv-6.12.6" = { 2006 name = "ajv"; 2007 packageName = "ajv"; ··· 2119 sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 2120 }; 2121 }; 2122 + "ansi-regex-6.0.1" = { 2123 + name = "ansi-regex"; 2124 + packageName = "ansi-regex"; 2125 + version = "6.0.1"; 2126 + src = fetchurl { 2127 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz"; 2128 + sha512 = "n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="; 2129 + }; 2130 + }; 2131 "ansi-styles-2.2.1" = { 2132 name = "ansi-styles"; 2133 packageName = "ansi-styles"; ··· 2164 sha512 = "Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="; 2165 }; 2166 }; 2167 + "ansi-styles-6.2.1" = { 2168 + name = "ansi-styles"; 2169 + packageName = "ansi-styles"; 2170 + version = "6.2.1"; 2171 + src = fetchurl { 2172 + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz"; 2173 + sha512 = "bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="; 2174 + }; 2175 + }; 2176 "anymatch-2.0.0" = { 2177 name = "anymatch"; 2178 packageName = "anymatch"; ··· 2335 sha512 = "SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ=="; 2336 }; 2337 }; 2338 + "array.prototype.reduce-1.0.6" = { 2339 name = "array.prototype.reduce"; 2340 packageName = "array.prototype.reduce"; 2341 + version = "1.0.6"; 2342 + src = fetchurl { 2343 + url = "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz"; 2344 + sha512 = "UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg=="; 2345 + }; 2346 + }; 2347 + "arraybuffer.prototype.slice-1.0.2" = { 2348 + name = "arraybuffer.prototype.slice"; 2349 + packageName = "arraybuffer.prototype.slice"; 2350 + version = "1.0.2"; 2351 src = fetchurl { 2352 + url = "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz"; 2353 + sha512 = "yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw=="; 2354 }; 2355 }; 2356 "asap-2.0.6" = { ··· 2380 sha512 = "+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA=="; 2381 }; 2382 }; 2383 + "assert-1.5.1" = { 2384 name = "assert"; 2385 packageName = "assert"; 2386 + version = "1.5.1"; 2387 src = fetchurl { 2388 + url = "https://registry.npmjs.org/assert/-/assert-1.5.1.tgz"; 2389 + sha512 = "zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A=="; 2390 }; 2391 }; 2392 "assert-plus-1.0.0" = { ··· 2902 sha512 = "VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q=="; 2903 }; 2904 }; 2905 + "browserslist-4.22.1" = { 2906 name = "browserslist"; 2907 packageName = "browserslist"; 2908 + version = "4.22.1"; 2909 src = fetchurl { 2910 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz"; 2911 + sha512 = "FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ=="; 2912 }; 2913 }; 2914 "buffer-4.9.2" = { ··· 2983 sha512 = "HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ=="; 2984 }; 2985 }; 2986 + "busboy-1.6.0" = { 2987 + name = "busboy"; 2988 + packageName = "busboy"; 2989 + version = "1.6.0"; 2990 + src = fetchurl { 2991 + url = "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz"; 2992 + sha512 = "8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA=="; 2993 + }; 2994 + }; 2995 "bytes-3.0.0" = { 2996 name = "bytes"; 2997 packageName = "bytes"; ··· 3037 sha512 = "a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ=="; 3038 }; 3039 }; 3040 + "cacache-17.1.4" = { 3041 + name = "cacache"; 3042 + packageName = "cacache"; 3043 + version = "17.1.4"; 3044 + src = fetchurl { 3045 + url = "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz"; 3046 + sha512 = "/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A=="; 3047 + }; 3048 + }; 3049 "cache-base-1.0.1" = { 3050 name = "cache-base"; 3051 packageName = "cache-base"; ··· 3082 sha512 = "Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg=="; 3083 }; 3084 }; 3085 + "cacheable-request-7.0.4" = { 3086 name = "cacheable-request"; 3087 packageName = "cacheable-request"; 3088 + version = "7.0.4"; 3089 src = fetchurl { 3090 + url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz"; 3091 + sha512 = "v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg=="; 3092 }; 3093 }; 3094 "call-bind-1.0.2" = { ··· 3190 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 3191 }; 3192 }; 3193 + "caniuse-lite-1.0.30001546" = { 3194 name = "caniuse-lite"; 3195 packageName = "caniuse-lite"; 3196 + version = "1.0.30001546"; 3197 src = fetchurl { 3198 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001546.tgz"; 3199 + sha512 = "zvtSJwuQFpewSyRrI3AsftF6rM0X80mZkChIt1spBGEvRglCrjTniXvinc8JKRoqTwXAgvqTImaN9igfSMtUBw=="; 3200 }; 3201 }; 3202 "case-sensitive-paths-webpack-plugin-2.3.0" = { ··· 3334 sha512 = "IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A=="; 3335 }; 3336 }; 3337 "chokidar-3.5.3" = { 3338 name = "chokidar"; 3339 packageName = "chokidar"; ··· 3397 sha512 = "EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A=="; 3398 }; 3399 }; 3400 + "clean-stack-2.2.0" = { 3401 + name = "clean-stack"; 3402 + packageName = "clean-stack"; 3403 + version = "2.2.0"; 3404 + src = fetchurl { 3405 + url = "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"; 3406 + sha512 = "4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="; 3407 + }; 3408 + }; 3409 "cli-cursor-2.1.0" = { 3410 name = "cli-cursor"; 3411 packageName = "cli-cursor"; ··· 3424 sha512 = "I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw=="; 3425 }; 3426 }; 3427 + "cli-spinners-2.9.1" = { 3428 name = "cli-spinners"; 3429 packageName = "cli-spinners"; 3430 + version = "2.9.1"; 3431 src = fetchurl { 3432 + url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.1.tgz"; 3433 + sha512 = "jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ=="; 3434 }; 3435 }; 3436 "cli-table-0.3.4" = { ··· 3622 sha512 = "LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="; 3623 }; 3624 }; 3625 + "commander-10.0.1" = { 3626 + name = "commander"; 3627 + packageName = "commander"; 3628 + version = "10.0.1"; 3629 + src = fetchurl { 3630 + url = "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz"; 3631 + sha512 = "y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug=="; 3632 + }; 3633 + }; 3634 "commander-2.14.1" = { 3635 name = "commander"; 3636 packageName = "commander"; ··· 3683 src = fetchurl { 3684 url = "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz"; 3685 sha512 = "U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="; 3686 }; 3687 }; 3688 "commander-9.5.0" = { ··· 3883 sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="; 3884 }; 3885 }; 3886 + "cookie-signature-1.2.1" = { 3887 + name = "cookie-signature"; 3888 + packageName = "cookie-signature"; 3889 + version = "1.2.1"; 3890 + src = fetchurl { 3891 + url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz"; 3892 + sha512 = "78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw=="; 3893 + }; 3894 + }; 3895 + "copy-anything-2.0.6" = { 3896 + name = "copy-anything"; 3897 + packageName = "copy-anything"; 3898 + version = "2.0.6"; 3899 + src = fetchurl { 3900 + url = "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz"; 3901 + sha512 = "1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw=="; 3902 + }; 3903 + }; 3904 "copy-concurrently-1.0.5" = { 3905 name = "copy-concurrently"; 3906 packageName = "copy-concurrently"; ··· 3937 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 3938 }; 3939 }; 3940 + "core-js-compat-3.33.0" = { 3941 name = "core-js-compat"; 3942 packageName = "core-js-compat"; 3943 + version = "3.33.0"; 3944 src = fetchurl { 3945 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.0.tgz"; 3946 + sha512 = "0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw=="; 3947 }; 3948 }; 3949 "core-util-is-1.0.2" = { ··· 4252 sha512 = "TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA=="; 4253 }; 4254 }; 4255 + "cyclist-1.0.2" = { 4256 name = "cyclist"; 4257 packageName = "cyclist"; 4258 + version = "1.0.2"; 4259 src = fetchurl { 4260 + url = "https://registry.npmjs.org/cyclist/-/cyclist-1.0.2.tgz"; 4261 + sha512 = "0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA=="; 4262 }; 4263 }; 4264 "d-1.0.1" = { ··· 4414 sha512 = "4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg=="; 4415 }; 4416 }; 4417 + "define-data-property-1.1.0" = { 4418 + name = "define-data-property"; 4419 + packageName = "define-data-property"; 4420 + version = "1.1.0"; 4421 + src = fetchurl { 4422 + url = "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.0.tgz"; 4423 + sha512 = "UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g=="; 4424 + }; 4425 + }; 4426 + "define-properties-1.2.1" = { 4427 name = "define-properties"; 4428 packageName = "define-properties"; 4429 + version = "1.2.1"; 4430 src = fetchurl { 4431 + url = "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz"; 4432 + sha512 = "8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg=="; 4433 }; 4434 }; 4435 "define-property-0.2.5" = { ··· 4504 sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; 4505 }; 4506 }; 4507 + "des.js-1.1.0" = { 4508 name = "des.js"; 4509 packageName = "des.js"; 4510 + version = "1.1.0"; 4511 src = fetchurl { 4512 + url = "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz"; 4513 + sha512 = "r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg=="; 4514 }; 4515 }; 4516 "destroy-1.0.4" = { ··· 4531 sha512 = "2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="; 4532 }; 4533 }; 4534 + "detect-libc-1.0.3" = { 4535 + name = "detect-libc"; 4536 + packageName = "detect-libc"; 4537 + version = "1.0.3"; 4538 + src = fetchurl { 4539 + url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"; 4540 + sha512 = "pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg=="; 4541 + }; 4542 + }; 4543 "detect-node-2.1.0" = { 4544 name = "detect-node"; 4545 packageName = "detect-node"; ··· 4765 sha512 = "07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g=="; 4766 }; 4767 }; 4768 + "eastasianwidth-0.2.0" = { 4769 + name = "eastasianwidth"; 4770 + packageName = "eastasianwidth"; 4771 + version = "0.2.0"; 4772 + src = fetchurl { 4773 + url = "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz"; 4774 + sha512 = "I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="; 4775 + }; 4776 + }; 4777 "ecc-jsbn-0.1.2" = { 4778 name = "ecc-jsbn"; 4779 packageName = "ecc-jsbn"; ··· 4792 sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; 4793 }; 4794 }; 4795 + "electron-to-chromium-1.4.542" = { 4796 name = "electron-to-chromium"; 4797 packageName = "electron-to-chromium"; 4798 + version = "1.4.542"; 4799 src = fetchurl { 4800 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.542.tgz"; 4801 + sha512 = "6+cpa00G09N3sfh2joln4VUXHquWrOFx3FLZqiVQvl45+zS9DskDBTPvob+BhvFRmTBkyDSk0vvLMMRo/qc6mQ=="; 4802 }; 4803 }; 4804 "elliptic-6.5.4" = { ··· 4900 sha512 = "5GV3WkJ8R/faOP1hwElQdNuCt8tKx2+1lsMrdeIYWSFz01Kp9gJl/R6zGtp4QUyrUtO8KnHsxjHrQNUf2CHkrg=="; 4901 }; 4902 }; 4903 + "elm-tooling-1.15.0" = { 4904 name = "elm-tooling"; 4905 packageName = "elm-tooling"; 4906 + version = "1.15.0"; 4907 src = fetchurl { 4908 + url = "https://registry.npmjs.org/elm-tooling/-/elm-tooling-1.15.0.tgz"; 4909 + sha512 = "quRE5LGJyrkPBoJ3MvFQ5RGgf80J0L0d3NkduStvXh4TmZuMXNC3Z/l2ZRoq2UTUaNWeYfO1Zx5wns1AvsTrnw=="; 4910 }; 4911 }; 4912 "elm-webpack-loader-6.0.1" = { ··· 4943 src = fetchurl { 4944 url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"; 4945 sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; 4946 + }; 4947 + }; 4948 + "emoji-regex-9.2.2" = { 4949 + name = "emoji-regex"; 4950 + packageName = "emoji-regex"; 4951 + version = "9.2.2"; 4952 + src = fetchurl { 4953 + url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz"; 4954 + sha512 = "L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="; 4955 }; 4956 }; 4957 "emojis-list-2.1.0" = { ··· 5015 src = fetchurl { 5016 url = "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz"; 5017 sha512 = "Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg=="; 5018 + }; 5019 + }; 5020 + "err-code-2.0.3" = { 5021 + name = "err-code"; 5022 + packageName = "err-code"; 5023 + version = "2.0.3"; 5024 + src = fetchurl { 5025 + url = "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz"; 5026 + sha512 = "2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA=="; 5027 }; 5028 }; 5029 "errno-0.1.8" = { ··· 5044 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 5045 }; 5046 }; 5047 + "es-abstract-1.22.2" = { 5048 name = "es-abstract"; 5049 packageName = "es-abstract"; 5050 + version = "1.22.2"; 5051 src = fetchurl { 5052 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.2.tgz"; 5053 + sha512 = "YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA=="; 5054 }; 5055 }; 5056 "es-array-method-boxes-properly-1.0.0" = { ··· 5114 src = fetchurl { 5115 url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz"; 5116 sha512 = "NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA=="; 5117 + }; 5118 + }; 5119 + "esbuild-0.17.19" = { 5120 + name = "esbuild"; 5121 + packageName = "esbuild"; 5122 + version = "0.17.19"; 5123 + src = fetchurl { 5124 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz"; 5125 + sha512 = "XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw=="; 5126 + }; 5127 + }; 5128 + "esbuild-0.18.20" = { 5129 + name = "esbuild"; 5130 + packageName = "esbuild"; 5131 + version = "0.18.20"; 5132 + src = fetchurl { 5133 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz"; 5134 + sha512 = "ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA=="; 5135 }; 5136 }; 5137 "escalade-3.1.1" = { ··· 5449 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 5450 }; 5451 }; 5452 + "fast-diff-1.3.0" = { 5453 name = "fast-diff"; 5454 packageName = "fast-diff"; 5455 + version = "1.3.0"; 5456 src = fetchurl { 5457 + url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz"; 5458 + sha512 = "VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw=="; 5459 }; 5460 }; 5461 "fast-glob-2.2.7" = { ··· 5467 sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; 5468 }; 5469 }; 5470 + "fast-glob-3.3.1" = { 5471 name = "fast-glob"; 5472 packageName = "fast-glob"; 5473 + version = "3.3.1"; 5474 src = fetchurl { 5475 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz"; 5476 + sha512 = "kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg=="; 5477 }; 5478 }; 5479 "fast-json-stable-stringify-2.1.0" = { ··· 5485 sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 5486 }; 5487 }; 5488 "fastest-levenshtein-1.0.16" = { 5489 name = "fastest-levenshtein"; 5490 packageName = "fastest-levenshtein"; ··· 5764 sha512 = "SDgHBgV+RCjrYs8aUwCb9rTgbTVuSdzvFmLaChsLre1yf+D64khCW++VYciaByZ8Rm0uKF8R/XEpXuTRSGUM1A=="; 5765 }; 5766 }; 5767 + "follow-redirects-1.15.3" = { 5768 name = "follow-redirects"; 5769 packageName = "follow-redirects"; 5770 + version = "1.15.3"; 5771 src = fetchurl { 5772 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz"; 5773 + sha512 = "1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q=="; 5774 }; 5775 }; 5776 "for-each-0.3.3" = { ··· 5791 sha512 = "7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ=="; 5792 }; 5793 }; 5794 + "foreground-child-3.1.1" = { 5795 + name = "foreground-child"; 5796 + packageName = "foreground-child"; 5797 + version = "3.1.1"; 5798 + src = fetchurl { 5799 + url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz"; 5800 + sha512 = "TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg=="; 5801 + }; 5802 + }; 5803 "forever-agent-0.6.1" = { 5804 name = "forever-agent"; 5805 packageName = "forever-agent"; ··· 5827 sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="; 5828 }; 5829 }; 5830 + "fraction.js-4.3.6" = { 5831 name = "fraction.js"; 5832 packageName = "fraction.js"; 5833 + version = "4.3.6"; 5834 src = fetchurl { 5835 + url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.6.tgz"; 5836 + sha512 = "n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg=="; 5837 }; 5838 }; 5839 "fragment-cache-0.2.1" = { ··· 5863 sha512 = "OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g=="; 5864 }; 5865 }; 5866 + "fs-extra-11.1.1" = { 5867 name = "fs-extra"; 5868 packageName = "fs-extra"; 5869 + version = "11.1.1"; 5870 src = fetchurl { 5871 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz"; 5872 + sha512 = "MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="; 5873 }; 5874 }; 5875 "fs-extra-2.0.0" = { ··· 5953 sha512 = "V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg=="; 5954 }; 5955 }; 5956 + "fs-minipass-3.0.3" = { 5957 + name = "fs-minipass"; 5958 + packageName = "fs-minipass"; 5959 + version = "3.0.3"; 5960 + src = fetchurl { 5961 + url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz"; 5962 + sha512 = "XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw=="; 5963 + }; 5964 + }; 5965 + "fs-monkey-1.0.5" = { 5966 + name = "fs-monkey"; 5967 + packageName = "fs-monkey"; 5968 + version = "1.0.5"; 5969 + src = fetchurl { 5970 + url = "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz"; 5971 + sha512 = "8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew=="; 5972 + }; 5973 + }; 5974 "fs-readdir-recursive-1.1.0" = { 5975 name = "fs-readdir-recursive"; 5976 packageName = "fs-readdir-recursive"; ··· 6016 sha512 = "Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ=="; 6017 }; 6018 }; 6019 + "fsevents-2.3.3" = { 6020 name = "fsevents"; 6021 packageName = "fsevents"; 6022 + version = "2.3.3"; 6023 src = fetchurl { 6024 + url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz"; 6025 + sha512 = "5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="; 6026 }; 6027 }; 6028 "function-bind-1.1.1" = { ··· 6034 sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 6035 }; 6036 }; 6037 + "function.prototype.name-1.1.6" = { 6038 name = "function.prototype.name"; 6039 packageName = "function.prototype.name"; 6040 + version = "1.1.6"; 6041 src = fetchurl { 6042 + url = "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz"; 6043 + sha512 = "Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg=="; 6044 }; 6045 }; 6046 "functions-have-names-1.2.3" = { ··· 6079 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 6080 }; 6081 }; 6082 + "get-intrinsic-1.2.1" = { 6083 name = "get-intrinsic"; 6084 packageName = "get-intrinsic"; 6085 + version = "1.2.1"; 6086 src = fetchurl { 6087 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz"; 6088 + sha512 = "2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw=="; 6089 }; 6090 }; 6091 "get-own-enumerable-property-symbols-3.0.2" = { ··· 6178 sha512 = "0pcXixfRCfLXdkwC/FJxiYEg5sYnbqYqtMmtXRzlKrStI9tLev7G/PDuFH2GmySJQ3ix5YUPRN/OJEuFD827EA=="; 6179 }; 6180 }; 6181 + "glob-10.3.10" = { 6182 + name = "glob"; 6183 + packageName = "glob"; 6184 + version = "10.3.10"; 6185 + src = fetchurl { 6186 + url = "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz"; 6187 + sha512 = "fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g=="; 6188 + }; 6189 + }; 6190 "glob-7.1.4" = { 6191 name = "glob"; 6192 packageName = "glob"; ··· 6277 sha512 = "sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA=="; 6278 }; 6279 }; 6280 + "globby-11.1.0" = { 6281 name = "globby"; 6282 packageName = "globby"; 6283 + version = "11.1.0"; 6284 src = fetchurl { 6285 + url = "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"; 6286 + sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 6287 }; 6288 }; 6289 + "globby-13.1.4" = { 6290 name = "globby"; 6291 packageName = "globby"; 6292 + version = "13.1.4"; 6293 src = fetchurl { 6294 + url = "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz"; 6295 + sha512 = "iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g=="; 6296 }; 6297 }; 6298 "globby-6.1.0" = { ··· 6412 sha512 = "nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w=="; 6413 }; 6414 }; 6415 + "has-1.0.4" = { 6416 name = "has"; 6417 packageName = "has"; 6418 + version = "1.0.4"; 6419 src = fetchurl { 6420 + url = "https://registry.npmjs.org/has/-/has-1.0.4.tgz"; 6421 + sha512 = "qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ=="; 6422 }; 6423 }; 6424 "has-ansi-2.0.0" = { ··· 6763 sha512 = "7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ=="; 6764 }; 6765 }; 6766 + "http-proxy-agent-5.0.0" = { 6767 + name = "http-proxy-agent"; 6768 + packageName = "http-proxy-agent"; 6769 + version = "5.0.0"; 6770 + src = fetchurl { 6771 + url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz"; 6772 + sha512 = "n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w=="; 6773 + }; 6774 + }; 6775 "http-proxy-middleware-0.19.1" = { 6776 name = "http-proxy-middleware"; 6777 packageName = "http-proxy-middleware"; ··· 6817 sha512 = "J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg=="; 6818 }; 6819 }; 6820 + "https-proxy-agent-5.0.1" = { 6821 + name = "https-proxy-agent"; 6822 + packageName = "https-proxy-agent"; 6823 + version = "5.0.1"; 6824 + src = fetchurl { 6825 + url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz"; 6826 + sha512 = "dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="; 6827 + }; 6828 + }; 6829 "human-signals-2.1.0" = { 6830 name = "human-signals"; 6831 packageName = "human-signals"; ··· 6835 sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="; 6836 }; 6837 }; 6838 + "humanize-ms-1.2.1" = { 6839 + name = "humanize-ms"; 6840 + packageName = "humanize-ms"; 6841 + version = "1.2.1"; 6842 + src = fetchurl { 6843 + url = "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz"; 6844 + sha512 = "Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ=="; 6845 + }; 6846 + }; 6847 "i-0.3.7" = { 6848 name = "i"; 6849 packageName = "i"; ··· 6869 src = fetchurl { 6870 url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; 6871 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 6872 + }; 6873 + }; 6874 + "iconv-lite-0.6.3" = { 6875 + name = "iconv-lite"; 6876 + packageName = "iconv-lite"; 6877 + version = "0.6.3"; 6878 + src = fetchurl { 6879 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"; 6880 + sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; 6881 }; 6882 }; 6883 "icss-utils-4.1.1" = { ··· 6925 sha512 = "MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ=="; 6926 }; 6927 }; 6928 + "image-size-0.5.5" = { 6929 + name = "image-size"; 6930 + packageName = "image-size"; 6931 + version = "0.5.5"; 6932 + src = fetchurl { 6933 + url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz"; 6934 + sha512 = "6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ=="; 6935 + }; 6936 + }; 6937 "immer-1.7.2" = { 6938 name = "immer"; 6939 packageName = "immer"; ··· 6941 src = fetchurl { 6942 url = "https://registry.npmjs.org/immer/-/immer-1.7.2.tgz"; 6943 sha512 = "4Urocwu9+XLDJw4Tc6ZCg7APVjjLInCFvO4TwGsAYV5zT6YYSor14dsZR0+0tHlDIN92cFUOq+i7fC00G5vTxA=="; 6944 + }; 6945 + }; 6946 + "immutable-4.3.4" = { 6947 + name = "immutable"; 6948 + packageName = "immutable"; 6949 + version = "4.3.4"; 6950 + src = fetchurl { 6951 + url = "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz"; 6952 + sha512 = "fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA=="; 6953 }; 6954 }; 6955 "import-fresh-2.0.0" = { ··· 6988 sha512 = "JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="; 6989 }; 6990 }; 6991 + "indent-string-4.0.0" = { 6992 + name = "indent-string"; 6993 + packageName = "indent-string"; 6994 + version = "4.0.0"; 6995 + src = fetchurl { 6996 + url = "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"; 6997 + sha512 = "EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="; 6998 + }; 6999 + }; 7000 "indexes-of-1.0.1" = { 7001 name = "indexes-of"; 7002 packageName = "indexes-of"; ··· 7024 sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; 7025 }; 7026 }; 7027 "inherits-2.0.3" = { 7028 name = "inherits"; 7029 packageName = "inherits"; ··· 7096 sha512 = "PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg=="; 7097 }; 7098 }; 7099 + "ip-2.0.0" = { 7100 + name = "ip"; 7101 + packageName = "ip"; 7102 + version = "2.0.0"; 7103 + src = fetchurl { 7104 + url = "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz"; 7105 + sha512 = "WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ=="; 7106 + }; 7107 + }; 7108 "ip-regex-2.1.0" = { 7109 name = "ip-regex"; 7110 packageName = "ip-regex"; ··· 7258 sha512 = "H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA=="; 7259 }; 7260 }; 7261 + "is-core-module-2.13.0" = { 7262 name = "is-core-module"; 7263 packageName = "is-core-module"; 7264 + version = "2.13.0"; 7265 src = fetchurl { 7266 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz"; 7267 + sha512 = "Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ=="; 7268 }; 7269 }; 7270 "is-data-descriptor-0.1.4" = { ··· 7411 sha512 = "2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w=="; 7412 }; 7413 }; 7414 + "is-lambda-1.0.1" = { 7415 + name = "is-lambda"; 7416 + packageName = "is-lambda"; 7417 + version = "1.0.1"; 7418 + src = fetchurl { 7419 + url = "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz"; 7420 + sha512 = "z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ=="; 7421 + }; 7422 + }; 7423 "is-negative-zero-2.0.2" = { 7424 name = "is-negative-zero"; 7425 packageName = "is-negative-zero"; ··· 7609 sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 7610 }; 7611 }; 7612 + "is-typed-array-1.1.12" = { 7613 name = "is-typed-array"; 7614 packageName = "is-typed-array"; 7615 + version = "1.1.12"; 7616 src = fetchurl { 7617 + url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz"; 7618 + sha512 = "Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg=="; 7619 }; 7620 }; 7621 "is-typedarray-1.0.0" = { ··· 7661 src = fetchurl { 7662 url = "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"; 7663 sha512 = "qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="; 7664 + }; 7665 + }; 7666 + "is-what-3.14.1" = { 7667 + name = "is-what"; 7668 + packageName = "is-what"; 7669 + version = "3.14.1"; 7670 + src = fetchurl { 7671 + url = "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz"; 7672 + sha512 = "sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA=="; 7673 }; 7674 }; 7675 "is-windows-1.0.2" = { ··· 7762 sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; 7763 }; 7764 }; 7765 + "jackspeak-2.3.6" = { 7766 + name = "jackspeak"; 7767 + packageName = "jackspeak"; 7768 + version = "2.3.6"; 7769 + src = fetchurl { 7770 + url = "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz"; 7771 + sha512 = "N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ=="; 7772 + }; 7773 + }; 7774 "jest-diff-27.5.1" = { 7775 name = "jest-diff"; 7776 packageName = "jest-diff"; ··· 8023 sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 8024 }; 8025 }; 8026 + "keyv-4.5.3" = { 8027 name = "keyv"; 8028 packageName = "keyv"; 8029 + version = "4.5.3"; 8030 src = fetchurl { 8031 + url = "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz"; 8032 + sha512 = "QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug=="; 8033 }; 8034 }; 8035 "killable-1.0.1" = { ··· 8140 sha512 = "YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw=="; 8141 }; 8142 }; 8143 + "less-4.2.0" = { 8144 + name = "less"; 8145 + packageName = "less"; 8146 + version = "4.2.0"; 8147 + src = fetchurl { 8148 + url = "https://registry.npmjs.org/less/-/less-4.2.0.tgz"; 8149 + sha512 = "P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA=="; 8150 + }; 8151 + }; 8152 + "lightningcss-1.22.0" = { 8153 + name = "lightningcss"; 8154 + packageName = "lightningcss"; 8155 + version = "1.22.0"; 8156 + src = fetchurl { 8157 + url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.22.0.tgz"; 8158 + sha512 = "+z0qvwRVzs4XGRXelnWRNwqsXUx8k3bSkbP8vD42kYKSk3z9OM2P3e/gagT7ei/gwh8DTS80LZOFZV6lm8Z8Fg=="; 8159 + }; 8160 + }; 8161 + "lightningcss-darwin-arm64-1.22.0" = { 8162 + name = "lightningcss-darwin-arm64"; 8163 + packageName = "lightningcss-darwin-arm64"; 8164 + version = "1.22.0"; 8165 + src = fetchurl { 8166 + url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.22.0.tgz"; 8167 + sha512 = "aH2be3nNny+It5YEVm8tBSSdRlBVWQV8m2oJ7dESiYRzyY/E/bQUe2xlw5caaMuhlM9aoTMtOH25yzMhir0qPg=="; 8168 + }; 8169 + }; 8170 + "lightningcss-darwin-x64-1.22.0" = { 8171 + name = "lightningcss-darwin-x64"; 8172 + packageName = "lightningcss-darwin-x64"; 8173 + version = "1.22.0"; 8174 + src = fetchurl { 8175 + url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.22.0.tgz"; 8176 + sha512 = "9KHRFA0Y6mNxRHeoQMp0YaI0R0O2kOgUlYPRjuasU4d+pI8NRhVn9bt0yX9VPs5ibWX1RbDViSPtGJvYYrfVAQ=="; 8177 + }; 8178 + }; 8179 + "lightningcss-freebsd-x64-1.22.0" = { 8180 + name = "lightningcss-freebsd-x64"; 8181 + packageName = "lightningcss-freebsd-x64"; 8182 + version = "1.22.0"; 8183 + src = fetchurl { 8184 + url = "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.22.0.tgz"; 8185 + sha512 = "xaYL3xperGwD85rQioDb52ozF3NAJb+9wrge3jD9lxGffplu0Mn35rXMptB8Uc2N9Mw1i3Bvl7+z1evlqVl7ww=="; 8186 + }; 8187 + }; 8188 + "lightningcss-linux-arm-gnueabihf-1.22.0" = { 8189 + name = "lightningcss-linux-arm-gnueabihf"; 8190 + packageName = "lightningcss-linux-arm-gnueabihf"; 8191 + version = "1.22.0"; 8192 + src = fetchurl { 8193 + url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.22.0.tgz"; 8194 + sha512 = "epQGvXIjOuxrZpMpMnRjK54ZqzhiHhCPLtHvw2fb6NeK2kK9YtF0wqmeTBiQ1AkbWfnnXGTstYaFNiadNK+StQ=="; 8195 + }; 8196 + }; 8197 + "lightningcss-linux-arm64-gnu-1.22.0" = { 8198 + name = "lightningcss-linux-arm64-gnu"; 8199 + packageName = "lightningcss-linux-arm64-gnu"; 8200 + version = "1.22.0"; 8201 + src = fetchurl { 8202 + url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.22.0.tgz"; 8203 + sha512 = "AArGtKSY4DGTA8xP8SDyNyKtpsUl1Rzq6FW4JomeyUQ4nBrR71uPChksTpj3gmWuGhZeRKLeCUI1DBid/zhChg=="; 8204 + }; 8205 + }; 8206 + "lightningcss-linux-arm64-musl-1.22.0" = { 8207 + name = "lightningcss-linux-arm64-musl"; 8208 + packageName = "lightningcss-linux-arm64-musl"; 8209 + version = "1.22.0"; 8210 + src = fetchurl { 8211 + url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.22.0.tgz"; 8212 + sha512 = "RRraNgP8hnBPhInTTUdlFm+z16C/ghbxBG51Sw00hd7HUyKmEUKRozyc5od+/N6pOrX/bIh5vIbtMXIxsos0lg=="; 8213 + }; 8214 + }; 8215 + "lightningcss-linux-x64-gnu-1.22.0" = { 8216 + name = "lightningcss-linux-x64-gnu"; 8217 + packageName = "lightningcss-linux-x64-gnu"; 8218 + version = "1.22.0"; 8219 + src = fetchurl { 8220 + url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.22.0.tgz"; 8221 + sha512 = "grdrhYGRi2KrR+bsXJVI0myRADqyA7ekprGxiuK5QRNkv7kj3Yq1fERDNyzZvjisHwKUi29sYMClscbtl+/Zpw=="; 8222 + }; 8223 + }; 8224 + "lightningcss-linux-x64-musl-1.22.0" = { 8225 + name = "lightningcss-linux-x64-musl"; 8226 + packageName = "lightningcss-linux-x64-musl"; 8227 + version = "1.22.0"; 8228 + src = fetchurl { 8229 + url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.22.0.tgz"; 8230 + sha512 = "t5f90X+iQUtIyR56oXIHMBUyQFX/zwmPt72E6Dane3P8KNGlkijTg2I75XVQS860gNoEFzV7Mm5ArRRA7u5CAQ=="; 8231 + }; 8232 + }; 8233 + "lightningcss-win32-x64-msvc-1.22.0" = { 8234 + name = "lightningcss-win32-x64-msvc"; 8235 + packageName = "lightningcss-win32-x64-msvc"; 8236 + version = "1.22.0"; 8237 + src = fetchurl { 8238 + url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.22.0.tgz"; 8239 + sha512 = "64HTDtOOZE9PUCZJiZZQpyqXBbdby1lnztBccnqh+NtbKxjnGzP92R2ngcgeuqMPecMNqNWxgoWgTGpC+yN5Sw=="; 8240 + }; 8241 + }; 8242 "lines-and-columns-1.2.4" = { 8243 name = "lines-and-columns"; 8244 packageName = "lines-and-columns"; ··· 8435 src = fetchurl { 8436 url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz"; 8437 sha512 = "tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA=="; 8438 + }; 8439 + }; 8440 + "lru-cache-10.0.1" = { 8441 + name = "lru-cache"; 8442 + packageName = "lru-cache"; 8443 + version = "10.0.1"; 8444 + src = fetchurl { 8445 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz"; 8446 + sha512 = "IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g=="; 8447 }; 8448 }; 8449 "lru-cache-4.1.5" = { ··· 8473 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 8474 }; 8475 }; 8476 + "lru-cache-7.18.3" = { 8477 + name = "lru-cache"; 8478 + packageName = "lru-cache"; 8479 + version = "7.18.3"; 8480 + src = fetchurl { 8481 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz"; 8482 + sha512 = "jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="; 8483 + }; 8484 + }; 8485 "make-dir-1.3.0" = { 8486 name = "make-dir"; 8487 packageName = "make-dir"; ··· 8507 src = fetchurl { 8508 url = "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"; 8509 sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 8510 + }; 8511 + }; 8512 + "make-fetch-happen-11.1.1" = { 8513 + name = "make-fetch-happen"; 8514 + packageName = "make-fetch-happen"; 8515 + version = "11.1.1"; 8516 + src = fetchurl { 8517 + url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz"; 8518 + sha512 = "rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w=="; 8519 }; 8520 }; 8521 "map-cache-0.2.2" = { ··· 8579 src = fetchurl { 8580 url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; 8581 sha512 = "dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="; 8582 + }; 8583 + }; 8584 + "memfs-3.6.0" = { 8585 + name = "memfs"; 8586 + packageName = "memfs"; 8587 + version = "3.6.0"; 8588 + src = fetchurl { 8589 + url = "https://registry.npmjs.org/memfs/-/memfs-3.6.0.tgz"; 8590 + sha512 = "EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ=="; 8591 }; 8592 }; 8593 "memory-fs-0.4.1" = { ··· 8842 sha512 = "lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="; 8843 }; 8844 }; 8845 + "minimatch-9.0.3" = { 8846 + name = "minimatch"; 8847 + packageName = "minimatch"; 8848 + version = "9.0.3"; 8849 + src = fetchurl { 8850 + url = "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz"; 8851 + sha512 = "RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="; 8852 + }; 8853 + }; 8854 "minimist-1.2.0" = { 8855 name = "minimist"; 8856 packageName = "minimist"; ··· 8905 sha512 = "3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="; 8906 }; 8907 }; 8908 + "minipass-7.0.4" = { 8909 + name = "minipass"; 8910 + packageName = "minipass"; 8911 + version = "7.0.4"; 8912 + src = fetchurl { 8913 + url = "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz"; 8914 + sha512 = "jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ=="; 8915 + }; 8916 + }; 8917 + "minipass-collect-1.0.2" = { 8918 + name = "minipass-collect"; 8919 + packageName = "minipass-collect"; 8920 + version = "1.0.2"; 8921 + src = fetchurl { 8922 + url = "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz"; 8923 + sha512 = "6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA=="; 8924 + }; 8925 + }; 8926 + "minipass-fetch-3.0.4" = { 8927 + name = "minipass-fetch"; 8928 + packageName = "minipass-fetch"; 8929 + version = "3.0.4"; 8930 + src = fetchurl { 8931 + url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz"; 8932 + sha512 = "jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg=="; 8933 + }; 8934 + }; 8935 + "minipass-flush-1.0.5" = { 8936 + name = "minipass-flush"; 8937 + packageName = "minipass-flush"; 8938 + version = "1.0.5"; 8939 + src = fetchurl { 8940 + url = "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz"; 8941 + sha512 = "JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw=="; 8942 + }; 8943 + }; 8944 + "minipass-pipeline-1.2.4" = { 8945 + name = "minipass-pipeline"; 8946 + packageName = "minipass-pipeline"; 8947 + version = "1.2.4"; 8948 + src = fetchurl { 8949 + url = "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz"; 8950 + sha512 = "xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A=="; 8951 + }; 8952 + }; 8953 + "minipass-sized-1.0.3" = { 8954 + name = "minipass-sized"; 8955 + packageName = "minipass-sized"; 8956 + version = "1.0.3"; 8957 + src = fetchurl { 8958 + url = "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz"; 8959 + sha512 = "MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g=="; 8960 + }; 8961 + }; 8962 "minizlib-1.3.3" = { 8963 name = "minizlib"; 8964 packageName = "minizlib"; ··· 9139 sha512 = "nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="; 9140 }; 9141 }; 9142 + "nan-2.18.0" = { 9143 name = "nan"; 9144 packageName = "nan"; 9145 + version = "2.18.0"; 9146 src = fetchurl { 9147 + url = "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz"; 9148 + sha512 = "W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w=="; 9149 }; 9150 }; 9151 "nanoid-3.3.6" = { ··· 9175 sha512 = "akBX7I5X9KQDDWmYYgQlLbVbjkveTje2mioZjhLLrVt09akSZcoqXWE5LEn1E2fu8T7th1PZYGfewQsTkTLTmQ=="; 9176 }; 9177 }; 9178 + "needle-3.2.0" = { 9179 + name = "needle"; 9180 + packageName = "needle"; 9181 + version = "3.2.0"; 9182 + src = fetchurl { 9183 + url = "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz"; 9184 + sha512 = "oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ=="; 9185 + }; 9186 + }; 9187 "negotiator-0.6.3" = { 9188 name = "negotiator"; 9189 packageName = "negotiator"; ··· 9265 sha512 = "PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA=="; 9266 }; 9267 }; 9268 + "node-gyp-build-4.6.1" = { 9269 name = "node-gyp-build"; 9270 packageName = "node-gyp-build"; 9271 + version = "4.6.1"; 9272 src = fetchurl { 9273 + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.1.tgz"; 9274 + sha512 = "24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ=="; 9275 }; 9276 }; 9277 "node-libs-browser-2.2.1" = { ··· 9292 sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="; 9293 }; 9294 }; 9295 + "node-releases-2.0.13" = { 9296 name = "node-releases"; 9297 packageName = "node-releases"; 9298 + version = "2.0.13"; 9299 src = fetchurl { 9300 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz"; 9301 + sha512 = "uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="; 9302 }; 9303 }; 9304 "node-watch-0.5.5" = { ··· 9472 sha512 = "79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ=="; 9473 }; 9474 }; 9475 "object-inspect-1.12.3" = { 9476 name = "object-inspect"; 9477 packageName = "object-inspect"; ··· 9517 sha512 = "1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ=="; 9518 }; 9519 }; 9520 + "object.entries-1.1.7" = { 9521 name = "object.entries"; 9522 packageName = "object.entries"; 9523 + version = "1.1.7"; 9524 src = fetchurl { 9525 + url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz"; 9526 + sha512 = "jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA=="; 9527 }; 9528 }; 9529 + "object.getownpropertydescriptors-2.1.7" = { 9530 name = "object.getownpropertydescriptors"; 9531 packageName = "object.getownpropertydescriptors"; 9532 + version = "2.1.7"; 9533 src = fetchurl { 9534 + url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz"; 9535 + sha512 = "PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g=="; 9536 }; 9537 }; 9538 "object.pick-1.3.0" = { ··· 9544 sha512 = "tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ=="; 9545 }; 9546 }; 9547 + "object.values-1.1.7" = { 9548 name = "object.values"; 9549 packageName = "object.values"; 9550 + version = "1.1.7"; 9551 src = fetchurl { 9552 + url = "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz"; 9553 + sha512 = "aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng=="; 9554 }; 9555 }; 9556 "obuf-1.1.2" = { ··· 9814 sha512 = "y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw=="; 9815 }; 9816 }; 9817 + "p-map-4.0.0" = { 9818 + name = "p-map"; 9819 + packageName = "p-map"; 9820 + version = "4.0.0"; 9821 + src = fetchurl { 9822 + url = "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz"; 9823 + sha512 = "/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ=="; 9824 + }; 9825 + }; 9826 "p-retry-3.0.1" = { 9827 name = "p-retry"; 9828 packageName = "p-retry"; ··· 9940 sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="; 9941 }; 9942 }; 9943 + "parse-node-version-1.0.1" = { 9944 + name = "parse-node-version"; 9945 + packageName = "parse-node-version"; 9946 + version = "1.0.1"; 9947 + src = fetchurl { 9948 + url = "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz"; 9949 + sha512 = "3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA=="; 9950 + }; 9951 + }; 9952 "parse-passwd-1.0.0" = { 9953 name = "parse-passwd"; 9954 packageName = "parse-passwd"; ··· 9985 sha512 = "XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw=="; 9986 }; 9987 }; 9988 + "password-prompt-1.1.3" = { 9989 name = "password-prompt"; 9990 packageName = "password-prompt"; 9991 + version = "1.1.3"; 9992 src = fetchurl { 9993 + url = "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz"; 9994 + sha512 = "HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw=="; 9995 }; 9996 }; 9997 "path-browserify-0.0.1" = { ··· 10084 sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 10085 }; 10086 }; 10087 + "path-scurry-1.10.1" = { 10088 + name = "path-scurry"; 10089 + packageName = "path-scurry"; 10090 + version = "1.10.1"; 10091 + src = fetchurl { 10092 + url = "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz"; 10093 + sha512 = "MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ=="; 10094 + }; 10095 + }; 10096 "path-to-regexp-0.1.7" = { 10097 name = "path-to-regexp"; 10098 packageName = "path-to-regexp"; ··· 10318 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 10319 }; 10320 }; 10321 + "postcss-8.4.31" = { 10322 name = "postcss"; 10323 packageName = "postcss"; 10324 + version = "8.4.31"; 10325 src = fetchurl { 10326 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz"; 10327 + sha512 = "PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ=="; 10328 }; 10329 }; 10330 "postcss-calc-7.0.5" = { ··· 10624 sha512 = "h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA=="; 10625 }; 10626 }; 10627 + "postcss-selector-parser-6.0.13" = { 10628 name = "postcss-selector-parser"; 10629 packageName = "postcss-selector-parser"; 10630 + version = "6.0.13"; 10631 src = fetchurl { 10632 + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz"; 10633 + sha512 = "EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ=="; 10634 }; 10635 }; 10636 "postcss-svgo-4.0.3" = { ··· 10759 sha512 = "6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g=="; 10760 }; 10761 }; 10762 + "promise-retry-2.0.1" = { 10763 + name = "promise-retry"; 10764 + packageName = "promise-retry"; 10765 + version = "2.0.1"; 10766 + src = fetchurl { 10767 + url = "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz"; 10768 + sha512 = "y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g=="; 10769 + }; 10770 + }; 10771 "prompt-1.0.0" = { 10772 name = "prompt"; 10773 packageName = "prompt"; ··· 10865 src = fetchurl { 10866 url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz"; 10867 sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ=="; 10868 }; 10869 }; 10870 "punycode-1.4.1" = { ··· 10903 sha512 = "MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q=="; 10904 }; 10905 }; 10906 + "qs-6.11.2" = { 10907 + name = "qs"; 10908 + packageName = "qs"; 10909 + version = "6.11.2"; 10910 + src = fetchurl { 10911 + url = "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz"; 10912 + sha512 = "tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA=="; 10913 + }; 10914 + }; 10915 "qs-6.5.1" = { 10916 name = "qs"; 10917 packageName = "qs"; ··· 10946 src = fetchurl { 10947 url = "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz"; 10948 sha512 = "O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q=="; 10949 }; 10950 }; 10951 "querystring-es3-0.2.1" = { ··· 11200 sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; 11201 }; 11202 }; 11203 + "regenerate-unicode-properties-10.1.1" = { 11204 name = "regenerate-unicode-properties"; 11205 packageName = "regenerate-unicode-properties"; 11206 + version = "10.1.1"; 11207 src = fetchurl { 11208 + url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz"; 11209 + sha512 = "X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q=="; 11210 }; 11211 }; 11212 "regenerator-runtime-0.11.1" = { ··· 11236 sha512 = "D0Y/JJ4VhusyMOd/o25a3jdUqN/bC85EFsaoL9Oqmy/O4efCh+xhp7yj2EEOsj974qvMkcW8AwUzJ1jB/MbxCw=="; 11237 }; 11238 }; 11239 + "regenerator-transform-0.15.2" = { 11240 name = "regenerator-transform"; 11241 packageName = "regenerator-transform"; 11242 + version = "0.15.2"; 11243 src = fetchurl { 11244 + url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz"; 11245 + sha512 = "hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg=="; 11246 }; 11247 }; 11248 "regex-not-1.0.2" = { ··· 11254 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; 11255 }; 11256 }; 11257 + "regexp.prototype.flags-1.5.1" = { 11258 name = "regexp.prototype.flags"; 11259 packageName = "regexp.prototype.flags"; 11260 + version = "1.5.1"; 11261 src = fetchurl { 11262 + url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz"; 11263 + sha512 = "sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg=="; 11264 }; 11265 }; 11266 "regexpu-core-5.3.2" = { ··· 11362 sha512 = "MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw=="; 11363 }; 11364 }; 11365 + "request-light-0.7.0" = { 11366 + name = "request-light"; 11367 + packageName = "request-light"; 11368 + version = "0.7.0"; 11369 + src = fetchurl { 11370 + url = "https://registry.npmjs.org/request-light/-/request-light-0.7.0.tgz"; 11371 + sha512 = "lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q=="; 11372 + }; 11373 + }; 11374 "request-promise-4.2.6" = { 11375 name = "request-promise"; 11376 packageName = "request-promise"; ··· 11434 sha512 = "KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="; 11435 }; 11436 }; 11437 + "resolve-1.22.6" = { 11438 name = "resolve"; 11439 packageName = "resolve"; 11440 + version = "1.22.6"; 11441 src = fetchurl { 11442 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz"; 11443 + sha512 = "njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw=="; 11444 }; 11445 }; 11446 "resolve-alpn-1.2.1" = { ··· 11605 sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="; 11606 }; 11607 }; 11608 + "rimraf-5.0.5" = { 11609 + name = "rimraf"; 11610 + packageName = "rimraf"; 11611 + version = "5.0.5"; 11612 + src = fetchurl { 11613 + url = "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz"; 11614 + sha512 = "CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A=="; 11615 + }; 11616 + }; 11617 "ripemd160-2.0.2" = { 11618 name = "ripemd160"; 11619 packageName = "ripemd160"; ··· 11623 sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="; 11624 }; 11625 }; 11626 + "rollup-3.29.4" = { 11627 + name = "rollup"; 11628 + packageName = "rollup"; 11629 + version = "3.29.4"; 11630 + src = fetchurl { 11631 + url = "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz"; 11632 + sha512 = "oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw=="; 11633 + }; 11634 + }; 11635 "run-async-2.4.1" = { 11636 name = "run-async"; 11637 packageName = "run-async"; ··· 11668 sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ=="; 11669 }; 11670 }; 11671 + "safe-array-concat-1.0.1" = { 11672 name = "safe-array-concat"; 11673 packageName = "safe-array-concat"; 11674 + version = "1.0.1"; 11675 src = fetchurl { 11676 + url = "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz"; 11677 + sha512 = "6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q=="; 11678 }; 11679 }; 11680 "safe-buffer-5.1.1" = { ··· 11740 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 11741 }; 11742 }; 11743 + "sass-1.68.0" = { 11744 + name = "sass"; 11745 + packageName = "sass"; 11746 + version = "1.68.0"; 11747 + src = fetchurl { 11748 + url = "https://registry.npmjs.org/sass/-/sass-1.68.0.tgz"; 11749 + sha512 = "Lmj9lM/fef0nQswm1J2HJcEsBUba4wgNx2fea6yJHODREoMFnwRpZydBnX/RjyXw2REIwdkbqE4hrTo4qfDBUA=="; 11750 + }; 11751 + }; 11752 "sax-1.2.4" = { 11753 name = "sax"; 11754 packageName = "sax"; ··· 11758 sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; 11759 }; 11760 }; 11761 + "sax-1.3.0" = { 11762 + name = "sax"; 11763 + packageName = "sax"; 11764 + version = "1.3.0"; 11765 + src = fetchurl { 11766 + url = "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz"; 11767 + sha512 = "0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA=="; 11768 + }; 11769 + }; 11770 "schema-utils-0.4.7" = { 11771 name = "schema-utils"; 11772 packageName = "schema-utils"; ··· 11794 sha512 = "SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg=="; 11795 }; 11796 }; 11797 + "schema-utils-3.3.0" = { 11798 name = "schema-utils"; 11799 packageName = "schema-utils"; 11800 + version = "3.3.0"; 11801 src = fetchurl { 11802 + url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz"; 11803 + sha512 = "pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg=="; 11804 }; 11805 }; 11806 "section-matter-1.0.0" = { ··· 11830 sha512 = "lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA=="; 11831 }; 11832 }; 11833 + "semver-5.7.2" = { 11834 name = "semver"; 11835 packageName = "semver"; 11836 + version = "5.7.2"; 11837 src = fetchurl { 11838 + url = "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz"; 11839 + sha512 = "cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="; 11840 }; 11841 }; 11842 + "semver-6.3.1" = { 11843 name = "semver"; 11844 packageName = "semver"; 11845 + version = "6.3.1"; 11846 src = fetchurl { 11847 + url = "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz"; 11848 + sha512 = "BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="; 11849 }; 11850 }; 11851 + "semver-7.5.4" = { 11852 name = "semver"; 11853 packageName = "semver"; 11854 + version = "7.5.4"; 11855 src = fetchurl { 11856 + url = "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz"; 11857 + sha512 = "1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="; 11858 }; 11859 }; 11860 "semver-regex-3.1.4" = { ··· 11965 sha512 = "KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="; 11966 }; 11967 }; 11968 + "set-function-name-2.0.1" = { 11969 + name = "set-function-name"; 11970 + packageName = "set-function-name"; 11971 + version = "2.0.1"; 11972 + src = fetchurl { 11973 + url = "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz"; 11974 + sha512 = "tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA=="; 11975 + }; 11976 + }; 11977 "set-value-2.0.1" = { 11978 name = "set-value"; 11979 packageName = "set-value"; ··· 12100 sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 12101 }; 12102 }; 12103 + "signal-exit-4.1.0" = { 12104 + name = "signal-exit"; 12105 + packageName = "signal-exit"; 12106 + version = "4.1.0"; 12107 + src = fetchurl { 12108 + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz"; 12109 + sha512 = "bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="; 12110 + }; 12111 + }; 12112 + "simple-git-3.20.0" = { 12113 name = "simple-git"; 12114 packageName = "simple-git"; 12115 + version = "3.20.0"; 12116 src = fetchurl { 12117 + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.20.0.tgz"; 12118 + sha512 = "ozK8tl2hvLts8ijTs18iFruE+RoqmC/mqZhjs/+V7gS5W68JpJ3+FCTmLVqmR59MaUQ52MfGQuWsIqfsTbbJ0Q=="; 12119 }; 12120 }; 12121 "simple-swizzle-0.2.2" = { ··· 12163 sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 12164 }; 12165 }; 12166 + "slash-4.0.0" = { 12167 + name = "slash"; 12168 + packageName = "slash"; 12169 + version = "4.0.0"; 12170 + src = fetchurl { 12171 + url = "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz"; 12172 + sha512 = "3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew=="; 12173 + }; 12174 + }; 12175 "slice-ansi-4.0.0" = { 12176 name = "slice-ansi"; 12177 packageName = "slice-ansi"; ··· 12181 sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 12182 }; 12183 }; 12184 + "smart-buffer-4.2.0" = { 12185 + name = "smart-buffer"; 12186 + packageName = "smart-buffer"; 12187 + version = "4.2.0"; 12188 + src = fetchurl { 12189 + url = "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz"; 12190 + sha512 = "94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg=="; 12191 + }; 12192 + }; 12193 "snapdragon-0.8.2" = { 12194 name = "snapdragon"; 12195 packageName = "snapdragon"; ··· 12242 src = fetchurl { 12243 url = "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz"; 12244 sha512 = "5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g=="; 12245 + }; 12246 + }; 12247 + "socks-2.7.1" = { 12248 + name = "socks"; 12249 + packageName = "socks"; 12250 + version = "2.7.1"; 12251 + src = fetchurl { 12252 + url = "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz"; 12253 + sha512 = "7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ=="; 12254 + }; 12255 + }; 12256 + "socks-proxy-agent-7.0.0" = { 12257 + name = "socks-proxy-agent"; 12258 + packageName = "socks-proxy-agent"; 12259 + version = "7.0.0"; 12260 + src = fetchurl { 12261 + url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz"; 12262 + sha512 = "Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww=="; 12263 }; 12264 }; 12265 "sort-keys-1.1.2" = { ··· 12370 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 12371 }; 12372 }; 12373 + "spdx-license-ids-3.0.15" = { 12374 name = "spdx-license-ids"; 12375 packageName = "spdx-license-ids"; 12376 + version = "3.0.15"; 12377 src = fetchurl { 12378 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz"; 12379 + sha512 = "lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ=="; 12380 }; 12381 }; 12382 "spdy-4.0.2" = { ··· 12433 sha512 = "/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ=="; 12434 }; 12435 }; 12436 + "ssri-10.0.5" = { 12437 + name = "ssri"; 12438 + packageName = "ssri"; 12439 + version = "10.0.5"; 12440 + src = fetchurl { 12441 + url = "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz"; 12442 + sha512 = "bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A=="; 12443 + }; 12444 + }; 12445 "ssri-5.3.0" = { 12446 name = "ssri"; 12447 packageName = "ssri"; ··· 12559 sha512 = "AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ=="; 12560 }; 12561 }; 12562 + "streamsearch-1.1.0" = { 12563 + name = "streamsearch"; 12564 + packageName = "streamsearch"; 12565 + version = "1.1.0"; 12566 + src = fetchurl { 12567 + url = "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz"; 12568 + sha512 = "Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg=="; 12569 + }; 12570 + }; 12571 "strict-uri-encode-1.1.0" = { 12572 name = "strict-uri-encode"; 12573 packageName = "strict-uri-encode"; ··· 12622 sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 12623 }; 12624 }; 12625 + "string-width-5.1.2" = { 12626 + name = "string-width"; 12627 + packageName = "string-width"; 12628 + version = "5.1.2"; 12629 + src = fetchurl { 12630 + url = "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz"; 12631 + sha512 = "HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="; 12632 + }; 12633 + }; 12634 + "string-width-cjs-4.2.3" = { 12635 + name = "string-width-cjs"; 12636 + packageName = "string-width-cjs"; 12637 + version = "4.2.3"; 12638 + src = fetchurl { 12639 + url = "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"; 12640 + sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 12641 + }; 12642 + }; 12643 + "string.prototype.trim-1.2.8" = { 12644 name = "string.prototype.trim"; 12645 packageName = "string.prototype.trim"; 12646 + version = "1.2.8"; 12647 src = fetchurl { 12648 + url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz"; 12649 + sha512 = "lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ=="; 12650 }; 12651 }; 12652 + "string.prototype.trimend-1.0.7" = { 12653 name = "string.prototype.trimend"; 12654 packageName = "string.prototype.trimend"; 12655 + version = "1.0.7"; 12656 src = fetchurl { 12657 + url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz"; 12658 + sha512 = "Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA=="; 12659 }; 12660 }; 12661 + "string.prototype.trimstart-1.0.7" = { 12662 name = "string.prototype.trimstart"; 12663 packageName = "string.prototype.trimstart"; 12664 + version = "1.0.7"; 12665 src = fetchurl { 12666 + url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz"; 12667 + sha512 = "NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg=="; 12668 }; 12669 }; 12670 "string_decoder-0.10.31" = { ··· 12748 sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 12749 }; 12750 }; 12751 + "strip-ansi-7.1.0" = { 12752 + name = "strip-ansi"; 12753 + packageName = "strip-ansi"; 12754 + version = "7.1.0"; 12755 + src = fetchurl { 12756 + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz"; 12757 + sha512 = "iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="; 12758 + }; 12759 + }; 12760 + "strip-ansi-cjs-6.0.1" = { 12761 + name = "strip-ansi-cjs"; 12762 + packageName = "strip-ansi-cjs"; 12763 + version = "6.0.1"; 12764 + src = fetchurl { 12765 + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"; 12766 + sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 12767 + }; 12768 + }; 12769 "strip-bom-2.0.0" = { 12770 name = "strip-bom"; 12771 packageName = "strip-bom"; ··· 12838 sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g=="; 12839 }; 12840 }; 12841 + "stylus-0.60.0" = { 12842 + name = "stylus"; 12843 + packageName = "stylus"; 12844 + version = "0.60.0"; 12845 + src = fetchurl { 12846 + url = "https://registry.npmjs.org/stylus/-/stylus-0.60.0.tgz"; 12847 + sha512 = "j2pBgEwzCu05yCuY4cmyp0FtPQQFBBAGB7TY7QaNl7eztiHwkxzwvIp5vjZJND/a1JNOka+ZW9ewVPFZpI3pcA=="; 12848 + }; 12849 + }; 12850 "sudo-prompt-8.2.5" = { 12851 name = "sudo-prompt"; 12852 packageName = "sudo-prompt"; ··· 12856 sha512 = "rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw=="; 12857 }; 12858 }; 12859 + "sugarss-4.0.1" = { 12860 + name = "sugarss"; 12861 + packageName = "sugarss"; 12862 + version = "4.0.1"; 12863 + src = fetchurl { 12864 + url = "https://registry.npmjs.org/sugarss/-/sugarss-4.0.1.tgz"; 12865 + sha512 = "WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw=="; 12866 + }; 12867 + }; 12868 "sums-0.2.4" = { 12869 name = "sums"; 12870 packageName = "sums"; ··· 12973 sha512 = "a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA=="; 12974 }; 12975 }; 12976 + "tar-6.2.0" = { 12977 name = "tar"; 12978 packageName = "tar"; 12979 + version = "6.2.0"; 12980 src = fetchurl { 12981 + url = "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz"; 12982 + sha512 = "/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ=="; 12983 }; 12984 }; 12985 "temp-0.9.0" = { ··· 13018 sha512 = "4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw=="; 13019 }; 13020 }; 13021 + "terser-5.21.0" = { 13022 name = "terser"; 13023 packageName = "terser"; 13024 + version = "5.21.0"; 13025 src = fetchurl { 13026 + url = "https://registry.npmjs.org/terser/-/terser-5.21.0.tgz"; 13027 + sha512 = "WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw=="; 13028 }; 13029 }; 13030 "terser-5.3.8" = { ··· 13297 sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 13298 }; 13299 }; 13300 + "tslib-2.6.2" = { 13301 name = "tslib"; 13302 packageName = "tslib"; 13303 + version = "2.6.2"; 13304 src = fetchurl { 13305 + url = "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz"; 13306 + sha512 = "AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="; 13307 }; 13308 }; 13309 + "tsyringe-4.8.0" = { 13310 name = "tsyringe"; 13311 packageName = "tsyringe"; 13312 + version = "4.8.0"; 13313 src = fetchurl { 13314 + url = "https://registry.npmjs.org/tsyringe/-/tsyringe-4.8.0.tgz"; 13315 + sha512 = "YB1FG+axdxADa3ncEtRnQCFq/M0lALGLxSZeVNbTU8NqhOVc51nnv2CISTcvc1kyv6EGPtXVr0v6lWeDxiijOA=="; 13316 }; 13317 }; 13318 "tty-browserify-0.0.0" = { ··· 13387 sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 13388 }; 13389 }; 13390 + "typed-array-buffer-1.0.0" = { 13391 + name = "typed-array-buffer"; 13392 + packageName = "typed-array-buffer"; 13393 + version = "1.0.0"; 13394 + src = fetchurl { 13395 + url = "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz"; 13396 + sha512 = "Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw=="; 13397 + }; 13398 + }; 13399 + "typed-array-byte-length-1.0.0" = { 13400 + name = "typed-array-byte-length"; 13401 + packageName = "typed-array-byte-length"; 13402 + version = "1.0.0"; 13403 + src = fetchurl { 13404 + url = "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz"; 13405 + sha512 = "Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA=="; 13406 + }; 13407 + }; 13408 + "typed-array-byte-offset-1.0.0" = { 13409 + name = "typed-array-byte-offset"; 13410 + packageName = "typed-array-byte-offset"; 13411 + version = "1.0.0"; 13412 + src = fetchurl { 13413 + url = "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz"; 13414 + sha512 = "RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg=="; 13415 + }; 13416 + }; 13417 "typed-array-length-1.0.4" = { 13418 name = "typed-array-length"; 13419 packageName = "typed-array-length"; ··· 13504 sha512 = "61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="; 13505 }; 13506 }; 13507 "unicode-canonical-property-names-ecmascript-2.0.0" = { 13508 name = "unicode-canonical-property-names-ecmascript"; 13509 packageName = "unicode-canonical-property-names-ecmascript"; ··· 13576 sha512 = "Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ=="; 13577 }; 13578 }; 13579 + "unique-filename-3.0.0" = { 13580 + name = "unique-filename"; 13581 + packageName = "unique-filename"; 13582 + version = "3.0.0"; 13583 + src = fetchurl { 13584 + url = "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz"; 13585 + sha512 = "afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g=="; 13586 + }; 13587 + }; 13588 "unique-slug-2.0.2" = { 13589 name = "unique-slug"; 13590 packageName = "unique-slug"; ··· 13592 src = fetchurl { 13593 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz"; 13594 sha512 = "zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w=="; 13595 + }; 13596 + }; 13597 + "unique-slug-4.0.0" = { 13598 + name = "unique-slug"; 13599 + packageName = "unique-slug"; 13600 + version = "4.0.0"; 13601 + src = fetchurl { 13602 + url = "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz"; 13603 + sha512 = "WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ=="; 13604 }; 13605 }; 13606 "universalify-0.1.2" = { ··· 13675 sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; 13676 }; 13677 }; 13678 + "update-browserslist-db-1.0.13" = { 13679 name = "update-browserslist-db"; 13680 packageName = "update-browserslist-db"; 13681 + version = "1.0.13"; 13682 src = fetchurl { 13683 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz"; 13684 + sha512 = "xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg=="; 13685 }; 13686 }; 13687 "upgrade-1.1.0" = { ··· 13711 sha512 = "Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg=="; 13712 }; 13713 }; 13714 + "url-0.11.3" = { 13715 name = "url"; 13716 packageName = "url"; 13717 + version = "0.11.3"; 13718 src = fetchurl { 13719 + url = "https://registry.npmjs.org/url/-/url-0.11.3.tgz"; 13720 + sha512 = "6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw=="; 13721 }; 13722 }; 13723 "url-loader-4.1.1" = { ··· 13774 sha512 = "Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ=="; 13775 }; 13776 }; 13777 + "util-0.10.4" = { 13778 name = "util"; 13779 packageName = "util"; 13780 + version = "0.10.4"; 13781 src = fetchurl { 13782 + url = "https://registry.npmjs.org/util/-/util-0.10.4.tgz"; 13783 + sha512 = "0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A=="; 13784 }; 13785 }; 13786 "util-0.11.1" = { ··· 13882 sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="; 13883 }; 13884 }; 13885 + "vite-4.4.11" = { 13886 + name = "vite"; 13887 + packageName = "vite"; 13888 + version = "4.4.11"; 13889 + src = fetchurl { 13890 + url = "https://registry.npmjs.org/vite/-/vite-4.4.11.tgz"; 13891 + sha512 = "ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A=="; 13892 + }; 13893 + }; 13894 "vm-browserify-1.1.2" = { 13895 name = "vm-browserify"; 13896 packageName = "vm-browserify"; ··· 13945 sha512 = "SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA=="; 13946 }; 13947 }; 13948 + "vscode-uri-3.0.8" = { 13949 name = "vscode-uri"; 13950 packageName = "vscode-uri"; 13951 + version = "3.0.8"; 13952 src = fetchurl { 13953 + url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz"; 13954 + sha512 = "AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw=="; 13955 }; 13956 }; 13957 "watchpack-1.7.5" = { ··· 14125 sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; 14126 }; 14127 }; 14128 + "which-3.0.1" = { 14129 + name = "which"; 14130 + packageName = "which"; 14131 + version = "3.0.1"; 14132 + src = fetchurl { 14133 + url = "https://registry.npmjs.org/which/-/which-3.0.1.tgz"; 14134 + sha512 = "XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg=="; 14135 + }; 14136 + }; 14137 "which-boxed-primitive-1.0.2" = { 14138 name = "which-boxed-primitive"; 14139 packageName = "which-boxed-primitive"; ··· 14161 sha512 = "iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ=="; 14162 }; 14163 }; 14164 + "which-typed-array-1.1.11" = { 14165 name = "which-typed-array"; 14166 packageName = "which-typed-array"; 14167 + version = "1.1.11"; 14168 src = fetchurl { 14169 + url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz"; 14170 + sha512 = "qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew=="; 14171 }; 14172 }; 14173 "winston-2.1.1" = { ··· 14357 src = fetchurl { 14358 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"; 14359 sha512 = "r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="; 14360 + }; 14361 + }; 14362 + "wrap-ansi-8.1.0" = { 14363 + name = "wrap-ansi"; 14364 + packageName = "wrap-ansi"; 14365 + version = "8.1.0"; 14366 + src = fetchurl { 14367 + url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz"; 14368 + sha512 = "si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="; 14369 + }; 14370 + }; 14371 + "wrap-ansi-cjs-7.0.0" = { 14372 + name = "wrap-ansi-cjs"; 14373 + packageName = "wrap-ansi-cjs"; 14374 + version = "7.0.0"; 14375 + src = fetchurl { 14376 + url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; 14377 + sha512 = "YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="; 14378 }; 14379 }; 14380 "wrappy-1.0.2" = { ··· 14968 sources."rimraf-2.6.3" 14969 sources."safe-buffer-5.2.1" 14970 sources."safer-buffer-2.1.2" 14971 + sources."semver-5.7.2" 14972 sources."set-blocking-2.0.0" 14973 sources."shebang-command-1.2.0" 14974 sources."shebang-regex-1.0.0" ··· 14995 sources."json-schema-traverse-1.0.0" 14996 ]; 14997 }) 14998 + sources."tar-6.2.0" 14999 sources."temp-0.9.0" 15000 sources."through-2.3.8" 15001 sources."tmp-0.0.33" ··· 15108 sources."forwarded-0.2.0" 15109 sources."fresh-0.5.2" 15110 sources."fs.realpath-1.0.0" 15111 + sources."fsevents-2.3.3" 15112 sources."function-bind-1.1.1" 15113 + sources."get-intrinsic-1.2.1" 15114 sources."get-stream-4.1.0" 15115 sources."glob-7.2.3" 15116 sources."glob-parent-5.1.2" 15117 sources."got-9.6.0" 15118 + sources."has-1.0.4" 15119 sources."has-flag-4.0.0" 15120 + sources."has-proto-1.0.1" 15121 sources."has-symbols-1.0.3" 15122 sources."http-cache-semantics-4.1.1" 15123 sources."http-errors-2.0.0" ··· 15148 sources."minimist-1.2.8" 15149 sources."ms-2.0.0" 15150 sources."negotiator-0.6.3" 15151 + sources."node-gyp-build-4.6.1" 15152 sources."normalize-path-3.0.0" 15153 sources."normalize-url-4.5.1" 15154 sources."object-inspect-1.12.3" ··· 15176 sources."rimraf-2.7.1" 15177 sources."safe-buffer-5.2.1" 15178 sources."safer-buffer-2.1.2" 15179 + sources."semver-6.3.1" 15180 (sources."send-0.18.0" // { 15181 dependencies = [ 15182 sources."ms-2.1.3" ··· 15226 "@elm-tooling/elm-language-server" = nodeEnv.buildNodePackage { 15227 name = "_at_elm-tooling_slash_elm-language-server"; 15228 packageName = "@elm-tooling/elm-language-server"; 15229 + version = "2.7.3"; 15230 src = fetchurl { 15231 + url = "https://registry.npmjs.org/@elm-tooling/elm-language-server/-/elm-language-server-2.7.3.tgz"; 15232 + sha512 = "V6X0cqgyc+ZCA2eRA8eU33nNrWmM78uvKhhNUl8OMrdGecA9nOsk1lmoWAhOmyD1ZSbgvvNQiBGnbmziemM6CA=="; 15233 }; 15234 dependencies = [ 15235 sources."@nodelib/fs.scandir-2.1.5" ··· 15244 sources."dir-glob-3.0.1" 15245 sources."escape-string-regexp-4.0.0" 15246 sources."execa-5.1.1" 15247 + sources."fast-diff-1.3.0" 15248 + sources."fast-glob-3.3.1" 15249 sources."fastq-1.15.0" 15250 sources."fill-range-7.0.1" 15251 + sources."fsevents-2.3.3" 15252 sources."get-stream-6.0.1" 15253 sources."glob-parent-5.1.2" 15254 sources."globby-11.1.0" ··· 15274 sources."queue-microtask-1.2.3" 15275 sources."readdirp-3.6.0" 15276 sources."reflect-metadata-0.1.13" 15277 + sources."request-light-0.7.0" 15278 sources."reusify-1.0.4" 15279 sources."run-parallel-1.2.0" 15280 sources."shebang-command-2.0.0" ··· 15285 sources."to-regex-range-5.0.1" 15286 sources."ts-debounce-4.0.0" 15287 sources."tslib-1.14.1" 15288 + sources."tsyringe-4.8.0" 15289 sources."vscode-jsonrpc-8.1.0" 15290 sources."vscode-languageserver-8.1.0" 15291 sources."vscode-languageserver-protocol-3.17.3" 15292 sources."vscode-languageserver-textdocument-1.0.8" 15293 sources."vscode-languageserver-types-3.17.3" 15294 + sources."vscode-uri-3.0.8" 15295 sources."web-tree-sitter-0.20.8" 15296 sources."which-2.0.2" 15297 ]; ··· 15347 }) 15348 sources."fill-range-7.0.1" 15349 sources."finalhandler-1.1.2" 15350 + sources."follow-redirects-1.15.3" 15351 sources."fresh-0.5.2" 15352 + sources."fsevents-2.3.3" 15353 sources."get-stream-4.1.0" 15354 sources."glob-parent-5.1.2" 15355 sources."has-ansi-2.0.0" ··· 15388 sources."range-parser-1.2.1" 15389 sources."readdirp-3.6.0" 15390 sources."requires-port-1.0.0" 15391 + sources."semver-5.7.2" 15392 (sources."send-0.17.1" // { 15393 dependencies = [ 15394 sources."mime-1.6.0" ··· 15476 sources."next-tick-1.1.0" 15477 sources."nice-try-1.0.5" 15478 sources."node-elm-compiler-5.0.5" 15479 + sources."node-gyp-build-4.6.1" 15480 sources."normalize-path-3.0.0" 15481 sources."once-1.4.0" 15482 sources."path-is-absolute-1.0.1" ··· 15484 sources."picomatch-2.3.1" 15485 sources."readdirp-3.4.0" 15486 sources."rimraf-2.6.3" 15487 + sources."semver-5.7.2" 15488 sources."shebang-command-1.2.0" 15489 sources."shebang-regex-1.0.0" 15490 sources."source-map-0.7.4" ··· 15538 sources."elm-solve-deps-wasm-1.0.2" 15539 sources."fill-range-7.0.1" 15540 sources."fs.realpath-1.0.0" 15541 + sources."fsevents-2.3.3" 15542 sources."glob-8.1.0" 15543 sources."glob-parent-5.1.2" 15544 sources."graceful-fs-4.2.11" ··· 15588 sources."@sindresorhus/is-2.1.1" 15589 sources."@szmarczak/http-timer-4.0.6" 15590 sources."@types/cacheable-request-6.0.3" 15591 + sources."@types/http-cache-semantics-4.0.2" 15592 sources."@types/keyv-3.1.4" 15593 + sources."@types/node-20.8.2" 15594 + sources."@types/responselike-1.0.1" 15595 sources."cacheable-lookup-2.0.1" 15596 + sources."cacheable-request-7.0.4" 15597 sources."caw-2.0.1" 15598 (sources."clone-response-1.0.3" // { 15599 dependencies = [ ··· 15619 sources."isurl-1.0.0" 15620 sources."json-buffer-3.0.1" 15621 sources."jsonfile-4.0.0" 15622 + sources."keyv-4.5.3" 15623 sources."lowercase-keys-2.0.0" 15624 sources."lru-cache-6.0.0" 15625 sources."mimic-response-2.1.0" ··· 15636 sources."responselike-2.0.1" 15637 sources."safe-buffer-5.2.1" 15638 sources."safename-1.0.2" 15639 + sources."semver-7.5.4" 15640 sources."to-readable-stream-2.1.0" 15641 sources."tunnel-agent-0.6.0" 15642 sources."type-fest-0.10.0" ··· 15805 sources."rimraf-2.7.1" 15806 sources."safe-buffer-5.2.1" 15807 sources."safer-buffer-2.1.2" 15808 + sources."semver-5.7.2" 15809 sources."set-blocking-2.0.0" 15810 sources."shebang-command-1.2.0" 15811 sources."shebang-regex-1.0.0" ··· 15873 sources."process-nextick-args-2.0.1" 15874 sources."readable-stream-2.3.8" 15875 sources."safe-buffer-5.1.2" 15876 + sources."semver-6.3.1" 15877 sources."semver-regex-3.1.4" 15878 (sources."semver-sort-1.0.0" // { 15879 dependencies = [ 15880 + sources."semver-5.7.2" 15881 ]; 15882 }) 15883 sources."string_decoder-1.1.1" ··· 15906 }; 15907 dependencies = [ 15908 sources."@babel/cli-7.12.10" 15909 + sources."@babel/code-frame-7.22.13" 15910 + sources."@babel/compat-data-7.22.20" 15911 sources."@babel/core-7.12.10" 15912 + sources."@babel/generator-7.23.0" 15913 + sources."@babel/helper-annotate-as-pure-7.22.5" 15914 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.15" 15915 + (sources."@babel/helper-compilation-targets-7.22.15" // { 15916 dependencies = [ 15917 + sources."semver-6.3.1" 15918 ]; 15919 }) 15920 + (sources."@babel/helper-create-class-features-plugin-7.22.15" // { 15921 dependencies = [ 15922 + sources."semver-6.3.1" 15923 ]; 15924 }) 15925 + (sources."@babel/helper-create-regexp-features-plugin-7.22.15" // { 15926 dependencies = [ 15927 + sources."semver-6.3.1" 15928 ]; 15929 }) 15930 + sources."@babel/helper-environment-visitor-7.22.20" 15931 + sources."@babel/helper-function-name-7.23.0" 15932 + sources."@babel/helper-hoist-variables-7.22.5" 15933 + sources."@babel/helper-member-expression-to-functions-7.23.0" 15934 + sources."@babel/helper-module-imports-7.22.15" 15935 + sources."@babel/helper-module-transforms-7.23.0" 15936 + sources."@babel/helper-optimise-call-expression-7.22.5" 15937 + sources."@babel/helper-plugin-utils-7.22.5" 15938 + sources."@babel/helper-remap-async-to-generator-7.22.20" 15939 + sources."@babel/helper-replace-supers-7.22.20" 15940 + sources."@babel/helper-simple-access-7.22.5" 15941 + sources."@babel/helper-skip-transparent-expression-wrappers-7.22.5" 15942 + sources."@babel/helper-split-export-declaration-7.22.6" 15943 + sources."@babel/helper-string-parser-7.22.5" 15944 + sources."@babel/helper-validator-identifier-7.22.20" 15945 + sources."@babel/helper-validator-option-7.22.15" 15946 + sources."@babel/helper-wrap-function-7.22.20" 15947 + sources."@babel/helpers-7.23.1" 15948 + sources."@babel/highlight-7.22.20" 15949 + sources."@babel/parser-7.23.0" 15950 sources."@babel/plugin-proposal-async-generator-functions-7.20.7" 15951 sources."@babel/plugin-proposal-class-properties-7.18.6" 15952 sources."@babel/plugin-proposal-dynamic-import-7.18.6" ··· 15972 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 15973 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 15974 sources."@babel/plugin-syntax-top-level-await-7.14.5" 15975 + sources."@babel/plugin-transform-arrow-functions-7.22.5" 15976 + sources."@babel/plugin-transform-async-to-generator-7.22.5" 15977 + sources."@babel/plugin-transform-block-scoped-functions-7.22.5" 15978 + sources."@babel/plugin-transform-block-scoping-7.23.0" 15979 + sources."@babel/plugin-transform-classes-7.22.15" 15980 + sources."@babel/plugin-transform-computed-properties-7.22.5" 15981 + sources."@babel/plugin-transform-destructuring-7.23.0" 15982 + sources."@babel/plugin-transform-dotall-regex-7.22.5" 15983 + sources."@babel/plugin-transform-duplicate-keys-7.22.5" 15984 + sources."@babel/plugin-transform-exponentiation-operator-7.22.5" 15985 + sources."@babel/plugin-transform-for-of-7.22.15" 15986 + sources."@babel/plugin-transform-function-name-7.22.5" 15987 + sources."@babel/plugin-transform-literals-7.22.5" 15988 + sources."@babel/plugin-transform-member-expression-literals-7.22.5" 15989 + sources."@babel/plugin-transform-modules-amd-7.23.0" 15990 + sources."@babel/plugin-transform-modules-commonjs-7.23.0" 15991 + sources."@babel/plugin-transform-modules-systemjs-7.23.0" 15992 + sources."@babel/plugin-transform-modules-umd-7.22.5" 15993 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.22.5" 15994 + sources."@babel/plugin-transform-new-target-7.22.5" 15995 + sources."@babel/plugin-transform-object-super-7.22.5" 15996 + sources."@babel/plugin-transform-parameters-7.22.15" 15997 + sources."@babel/plugin-transform-property-literals-7.22.5" 15998 + sources."@babel/plugin-transform-regenerator-7.22.10" 15999 + sources."@babel/plugin-transform-reserved-words-7.22.5" 16000 sources."@babel/plugin-transform-runtime-7.12.10" 16001 + sources."@babel/plugin-transform-shorthand-properties-7.22.5" 16002 + sources."@babel/plugin-transform-spread-7.22.5" 16003 + sources."@babel/plugin-transform-sticky-regex-7.22.5" 16004 + sources."@babel/plugin-transform-template-literals-7.22.5" 16005 + sources."@babel/plugin-transform-typeof-symbol-7.22.5" 16006 + sources."@babel/plugin-transform-unicode-escapes-7.22.10" 16007 + sources."@babel/plugin-transform-unicode-regex-7.22.5" 16008 sources."@babel/preset-env-7.12.10" 16009 + sources."@babel/preset-modules-0.1.6" 16010 sources."@babel/regjsgen-0.8.0" 16011 sources."@babel/runtime-7.12.5" 16012 + sources."@babel/template-7.22.15" 16013 + sources."@babel/traverse-7.23.0" 16014 + sources."@babel/types-7.23.0" 16015 sources."@hapi/address-2.1.4" 16016 sources."@hapi/bourne-1.3.2" 16017 sources."@hapi/hoek-8.5.1" 16018 sources."@hapi/joi-15.1.1" 16019 sources."@hapi/topo-3.1.6" 16020 sources."@jridgewell/gen-mapping-0.3.3" 16021 + sources."@jridgewell/resolve-uri-3.1.1" 16022 sources."@jridgewell/set-array-1.1.2" 16023 sources."@jridgewell/sourcemap-codec-1.4.15" 16024 + sources."@jridgewell/trace-mapping-0.3.19" 16025 sources."@mrmlnc/readdir-enhanced-2.2.1" 16026 sources."@nodelib/fs.stat-1.1.3" 16027 sources."@types/glob-7.2.0" 16028 sources."@types/html-minifier-terser-5.1.2" 16029 + sources."@types/http-proxy-1.17.12" 16030 + sources."@types/json-schema-7.0.13" 16031 sources."@types/minimatch-5.1.2" 16032 + sources."@types/node-20.8.2" 16033 sources."@types/parse-json-4.0.0" 16034 + sources."@types/q-1.5.6" 16035 + sources."@types/source-list-map-0.1.3" 16036 + sources."@types/tapable-1.0.9" 16037 + (sources."@types/uglify-js-3.17.2" // { 16038 dependencies = [ 16039 sources."source-map-0.6.1" 16040 ]; 16041 }) 16042 + (sources."@types/webpack-4.41.34" // { 16043 dependencies = [ 16044 sources."source-map-0.6.1" 16045 ]; 16046 }) 16047 + (sources."@types/webpack-sources-3.2.1" // { 16048 dependencies = [ 16049 sources."source-map-0.7.4" 16050 ]; ··· 16095 sources."array-union-1.0.2" 16096 sources."array-uniq-1.0.3" 16097 sources."array-unique-0.3.2" 16098 + sources."array.prototype.reduce-1.0.6" 16099 + sources."arraybuffer.prototype.slice-1.0.2" 16100 sources."asap-2.0.6" 16101 sources."asn1-0.2.6" 16102 (sources."asn1.js-5.4.1" // { ··· 16104 sources."bn.js-4.12.0" 16105 ]; 16106 }) 16107 + (sources."assert-1.5.1" // { 16108 dependencies = [ 16109 + sources."inherits-2.0.3" 16110 + sources."util-0.10.4" 16111 ]; 16112 }) 16113 sources."assert-plus-1.0.0" ··· 16130 (sources."babel-loader-8.2.2" // { 16131 dependencies = [ 16132 sources."make-dir-3.1.0" 16133 + sources."semver-6.3.1" 16134 ]; 16135 }) 16136 sources."babel-plugin-syntax-object-rest-spread-6.13.0" ··· 16183 ]; 16184 }) 16185 sources."browserify-zlib-0.2.0" 16186 + sources."browserslist-4.22.1" 16187 sources."buffer-4.9.2" 16188 sources."buffer-from-1.1.2" 16189 sources."buffer-indexof-1.1.1" ··· 16200 sources."camel-case-4.1.2" 16201 sources."camelcase-5.3.1" 16202 sources."caniuse-api-3.0.0" 16203 + sources."caniuse-lite-1.0.30001546" 16204 sources."case-sensitive-paths-webpack-plugin-2.3.0" 16205 sources."caseless-0.12.0" 16206 (sources."chalk-2.4.2" // { ··· 16299 ]; 16300 }) 16301 sources."core-js-2.6.12" 16302 + sources."core-js-compat-3.33.0" 16303 sources."core-util-is-1.0.3" 16304 sources."cosmiconfig-5.2.1" 16305 (sources."create-ecdh-4.0.4" // { ··· 16326 sources."lru-cache-6.0.0" 16327 sources."picocolors-0.2.1" 16328 sources."postcss-7.0.39" 16329 + sources."semver-7.5.4" 16330 sources."source-map-0.6.1" 16331 sources."yallist-4.0.0" 16332 ]; ··· 16372 ]; 16373 }) 16374 sources."cycle-1.0.3" 16375 + sources."cyclist-1.0.2" 16376 sources."dashdash-1.14.1" 16377 sources."debug-4.3.4" 16378 sources."decamelize-1.2.0" 16379 sources."decode-uri-component-0.2.2" 16380 sources."deep-equal-0.2.2" 16381 sources."default-gateway-4.2.0" 16382 + sources."define-data-property-1.1.0" 16383 + sources."define-properties-1.2.1" 16384 sources."define-property-2.0.2" 16385 (sources."del-4.1.1" // { 16386 dependencies = [ ··· 16393 }) 16394 sources."delayed-stream-1.0.0" 16395 sources."depd-2.0.0" 16396 + sources."des.js-1.1.0" 16397 sources."destroy-1.2.0" 16398 sources."detect-node-2.1.0" 16399 (sources."detect-port-alt-1.1.6" // { ··· 16424 sources."duplexify-3.7.1" 16425 sources."ecc-jsbn-0.1.2" 16426 sources."ee-first-1.1.1" 16427 + sources."electron-to-chromium-1.4.542" 16428 (sources."elliptic-6.5.4" // { 16429 dependencies = [ 16430 sources."bn.js-4.12.0" ··· 16462 sources."entities-2.2.0" 16463 sources."errno-0.1.8" 16464 sources."error-ex-1.3.2" 16465 + sources."es-abstract-1.22.2" 16466 sources."es-array-method-boxes-properly-1.0.0" 16467 sources."es-set-tostringtag-2.0.1" 16468 sources."es-to-primitive-1.2.1" ··· 16570 (sources."file-loader-6.2.0" // { 16571 dependencies = [ 16572 sources."loader-utils-2.0.4" 16573 + sources."schema-utils-3.3.0" 16574 ]; 16575 }) 16576 sources."file-uri-to-path-1.0.0" ··· 16585 (sources."find-cache-dir-3.3.2" // { 16586 dependencies = [ 16587 sources."make-dir-3.1.0" 16588 + sources."semver-6.3.1" 16589 ]; 16590 }) 16591 sources."find-elm-dependencies-2.0.4" 16592 sources."find-up-4.1.0" 16593 sources."firstline-1.3.1" 16594 sources."flush-write-stream-1.1.1" 16595 + sources."follow-redirects-1.15.3" 16596 sources."for-each-0.3.3" 16597 sources."for-in-1.0.2" 16598 sources."forever-agent-0.6.1" 16599 sources."form-data-2.3.3" 16600 sources."forwarded-0.2.0" 16601 + sources."fraction.js-4.3.6" 16602 sources."fragment-cache-0.2.1" 16603 sources."fresh-0.5.2" 16604 sources."from2-2.3.0" ··· 16606 sources."fs-readdir-recursive-1.1.0" 16607 sources."fs-write-stream-atomic-1.0.10" 16608 sources."fs.realpath-1.0.0" 16609 + sources."fsevents-2.3.3" 16610 sources."function-bind-1.1.1" 16611 + sources."function.prototype.name-1.1.6" 16612 sources."functions-have-names-1.2.3" 16613 sources."gensync-1.0.0-beta.2" 16614 sources."get-caller-file-1.0.3" 16615 + sources."get-intrinsic-1.2.1" 16616 sources."get-own-enumerable-property-symbols-3.0.2" 16617 sources."get-stream-4.1.0" 16618 sources."get-symbol-description-1.0.0" ··· 16649 sources."handle-thing-2.0.1" 16650 sources."har-schema-2.0.0" 16651 sources."har-validator-5.1.5" 16652 + sources."has-1.0.4" 16653 sources."has-bigints-1.0.2" 16654 sources."has-flag-3.0.0" 16655 sources."has-property-descriptors-1.0.0" ··· 16748 sources."is-buffer-1.1.6" 16749 sources."is-callable-1.2.7" 16750 sources."is-color-stop-1.1.0" 16751 + sources."is-core-module-2.13.0" 16752 sources."is-data-descriptor-1.0.0" 16753 sources."is-date-object-1.0.5" 16754 sources."is-descriptor-1.0.2" ··· 16774 sources."is-stream-1.1.0" 16775 sources."is-string-1.0.7" 16776 sources."is-symbol-1.0.4" 16777 + sources."is-typed-array-1.1.12" 16778 sources."is-typedarray-1.0.0" 16779 sources."is-utf8-0.2.1" 16780 sources."is-weakref-1.0.2" ··· 16868 sources."multicast-dns-6.2.3" 16869 sources."multicast-dns-service-types-1.1.0" 16870 sources."mute-stream-0.0.8" 16871 + sources."nan-2.18.0" 16872 sources."nanoid-3.3.6" 16873 sources."nanomatch-1.2.13" 16874 sources."ncp-1.0.1" ··· 16891 sources."punycode-1.4.1" 16892 ]; 16893 }) 16894 + sources."node-releases-2.0.13" 16895 sources."normalize-package-data-2.5.0" 16896 sources."normalize-path-3.0.0" 16897 sources."normalize-range-0.1.2" ··· 16923 sources."object-keys-1.1.1" 16924 sources."object-visit-1.0.1" 16925 sources."object.assign-4.1.4" 16926 + sources."object.entries-1.1.7" 16927 + sources."object.getownpropertydescriptors-2.1.7" 16928 sources."object.pick-1.3.0" 16929 + sources."object.values-1.1.7" 16930 sources."obuf-1.1.2" 16931 sources."on-finished-2.4.1" 16932 sources."on-headers-1.0.2" ··· 16999 ]; 17000 }) 17001 sources."posix-character-classes-0.1.1" 17002 + sources."postcss-8.4.31" 17003 (sources."postcss-calc-7.0.5" // { 17004 dependencies = [ 17005 sources."picocolors-0.2.1" ··· 17067 sources."parse-json-5.2.0" 17068 sources."path-type-4.0.0" 17069 sources."resolve-from-4.0.0" 17070 + sources."schema-utils-3.3.0" 17071 + sources."semver-7.5.4" 17072 sources."yallist-4.0.0" 17073 ]; 17074 }) ··· 17244 ]; 17245 }) 17246 sources."postcss-safe-parser-5.0.2" 17247 + sources."postcss-selector-parser-6.0.13" 17248 (sources."postcss-svgo-4.0.3" // { 17249 dependencies = [ 17250 sources."picocolors-0.2.1" ··· 17288 sources."q-1.5.1" 17289 sources."qs-6.5.3" 17290 sources."query-string-4.3.4" 17291 sources."querystring-es3-0.2.1" 17292 sources."querystringify-2.2.0" 17293 sources."randombytes-2.1.0" ··· 17351 ]; 17352 }) 17353 sources."regenerate-1.4.2" 17354 + sources."regenerate-unicode-properties-10.1.1" 17355 sources."regenerator-runtime-0.13.11" 17356 + sources."regenerator-transform-0.15.2" 17357 sources."regex-not-1.0.2" 17358 + sources."regexp.prototype.flags-1.5.1" 17359 sources."regexpu-core-5.3.2" 17360 (sources."regjsparser-0.9.1" // { 17361 dependencies = [ ··· 17376 sources."require-directory-2.1.1" 17377 sources."require-main-filename-1.0.1" 17378 sources."requires-port-1.0.0" 17379 + sources."resolve-1.22.6" 17380 sources."resolve-cwd-2.0.0" 17381 sources."resolve-dir-1.0.1" 17382 sources."resolve-from-3.0.0" ··· 17396 sources."tslib-1.14.1" 17397 ]; 17398 }) 17399 + (sources."safe-array-concat-1.0.1" // { 17400 dependencies = [ 17401 sources."isarray-2.0.5" 17402 ]; ··· 17409 sources."schema-utils-2.7.1" 17410 sources."select-hose-2.0.0" 17411 sources."selfsigned-1.10.14" 17412 + sources."semver-5.7.2" 17413 (sources."send-0.18.0" // { 17414 dependencies = [ 17415 (sources."debug-2.6.9" // { ··· 17434 }) 17435 sources."serve-static-1.15.0" 17436 sources."set-blocking-2.0.0" 17437 + sources."set-function-name-2.0.1" 17438 (sources."set-value-2.0.1" // { 17439 dependencies = [ 17440 sources."extend-shallow-2.0.1" ··· 17510 sources."spdx-correct-3.2.0" 17511 sources."spdx-exceptions-2.3.0" 17512 sources."spdx-expression-parse-3.0.1" 17513 + sources."spdx-license-ids-3.0.15" 17514 sources."spdy-4.0.2" 17515 (sources."spdy-transport-3.0.0" // { 17516 dependencies = [ ··· 17553 sources."strip-ansi-6.0.1" 17554 ]; 17555 }) 17556 + sources."string.prototype.trim-1.2.8" 17557 + sources."string.prototype.trimend-1.0.7" 17558 + sources."string.prototype.trimstart-1.0.7" 17559 sources."string_decoder-1.1.1" 17560 (sources."stringify-object-3.3.0" // { 17561 dependencies = [ ··· 17637 sources."to-regex-range-5.0.1" 17638 sources."toidentifier-1.0.1" 17639 sources."tough-cookie-2.5.0" 17640 + sources."tslib-2.6.2" 17641 sources."tty-browserify-0.0.0" 17642 sources."tunnel-agent-0.6.0" 17643 sources."tweetnacl-0.14.5" 17644 sources."type-is-1.6.18" 17645 + sources."typed-array-buffer-1.0.0" 17646 + sources."typed-array-byte-length-1.0.0" 17647 + sources."typed-array-byte-offset-1.0.0" 17648 sources."typed-array-length-1.0.4" 17649 sources."typedarray-0.0.6" 17650 (sources."uglify-es-3.3.10" // { ··· 17700 ]; 17701 }) 17702 sources."upath-1.2.0" 17703 + sources."update-browserslist-db-1.0.13" 17704 sources."uri-js-4.4.1" 17705 sources."urix-0.1.0" 17706 + (sources."url-0.11.3" // { 17707 dependencies = [ 17708 + sources."punycode-1.4.1" 17709 + sources."qs-6.11.2" 17710 ]; 17711 }) 17712 (sources."url-loader-4.1.1" // { 17713 dependencies = [ 17714 sources."loader-utils-2.0.4" 17715 + sources."schema-utils-3.3.0" 17716 ]; 17717 }) 17718 sources."url-parse-1.5.10" ··· 17808 sources."readdirp-2.2.1" 17809 sources."require-main-filename-2.0.0" 17810 sources."schema-utils-1.0.0" 17811 + sources."semver-6.3.1" 17812 (sources."string-width-3.1.0" // { 17813 dependencies = [ 17814 sources."ansi-regex-4.1.1" ··· 17846 sources."which-2.0.2" 17847 sources."which-boxed-primitive-1.0.2" 17848 sources."which-module-1.0.0" 17849 + sources."which-typed-array-1.1.11" 17850 (sources."winston-2.1.1" // { 17851 dependencies = [ 17852 sources."async-1.0.0" ··· 17964 sources."pretty-format-27.5.1" 17965 sources."react-is-17.0.2" 17966 sources."rimraf-2.6.3" 17967 + sources."semver-5.7.2" 17968 sources."shebang-command-1.2.0" 17969 sources."shebang-regex-1.0.0" 17970 sources."supports-color-7.2.0" ··· 17987 elm-pages = nodeEnv.buildNodePackage { 17988 name = "elm-pages"; 17989 packageName = "elm-pages"; 17990 + version = "3.0.8"; 17991 src = fetchurl { 17992 + url = "https://registry.npmjs.org/elm-pages/-/elm-pages-3.0.8.tgz"; 17993 + sha512 = "ls6ZI5CMlFji/P2yg1A+Krv6A1zjm4Q1+gpkMjZsAcmg2gABjN6R4ZATbD6/+hosSaAvsnZ1rRUTCPRsncYg+w=="; 17994 }; 17995 dependencies = [ 17996 + sources."@adobe/css-tools-4.2.0" 17997 + sources."@esbuild/android-arm-0.17.19" 17998 + sources."@esbuild/android-arm64-0.17.19" 17999 + sources."@esbuild/android-x64-0.17.19" 18000 + sources."@esbuild/darwin-arm64-0.17.19" 18001 + sources."@esbuild/darwin-x64-0.17.19" 18002 + sources."@esbuild/freebsd-arm64-0.17.19" 18003 + sources."@esbuild/freebsd-x64-0.17.19" 18004 + sources."@esbuild/linux-arm-0.17.19" 18005 + sources."@esbuild/linux-arm64-0.17.19" 18006 + sources."@esbuild/linux-ia32-0.17.19" 18007 + sources."@esbuild/linux-loong64-0.17.19" 18008 + sources."@esbuild/linux-mips64el-0.17.19" 18009 + sources."@esbuild/linux-ppc64-0.17.19" 18010 + sources."@esbuild/linux-riscv64-0.17.19" 18011 + sources."@esbuild/linux-s390x-0.17.19" 18012 + sources."@esbuild/linux-x64-0.17.19" 18013 + sources."@esbuild/netbsd-x64-0.17.19" 18014 + sources."@esbuild/openbsd-x64-0.17.19" 18015 + sources."@esbuild/sunos-x64-0.17.19" 18016 + sources."@esbuild/win32-arm64-0.17.19" 18017 + sources."@esbuild/win32-ia32-0.17.19" 18018 + sources."@esbuild/win32-x64-0.17.19" 18019 + sources."@isaacs/cliui-8.0.2" 18020 sources."@jridgewell/gen-mapping-0.3.3" 18021 + sources."@jridgewell/resolve-uri-3.1.1" 18022 sources."@jridgewell/set-array-1.1.2" 18023 + sources."@jridgewell/source-map-0.3.5" 18024 sources."@jridgewell/sourcemap-codec-1.4.15" 18025 + sources."@jridgewell/trace-mapping-0.3.19" 18026 + sources."@nodelib/fs.scandir-2.1.5" 18027 + sources."@nodelib/fs.stat-2.0.5" 18028 + sources."@nodelib/fs.walk-1.2.8" 18029 + (sources."@npmcli/fs-3.1.0" // { 18030 dependencies = [ 18031 + sources."lru-cache-6.0.0" 18032 + sources."semver-7.5.4" 18033 ]; 18034 }) 18035 sources."@sindresorhus/is-0.14.0" 18036 sources."@szmarczak/http-timer-1.1.2" 18037 + sources."@tootallnate/once-2.0.0" 18038 sources."@types/configstore-2.1.1" 18039 sources."@types/debug-0.0.30" 18040 sources."@types/get-port-3.2.0" 18041 sources."@types/glob-5.0.38" 18042 + sources."@types/lodash-4.14.199" 18043 sources."@types/minimatch-5.1.2" 18044 sources."@types/mkdirp-0.5.2" 18045 sources."@types/node-8.10.66" 18046 sources."@types/rimraf-2.0.5" 18047 sources."@types/tmp-0.0.33" 18048 sources."accepts-1.3.8" 18049 + sources."acorn-8.10.0" 18050 + (sources."agent-base-6.0.2" // { 18051 + dependencies = [ 18052 + sources."debug-4.3.4" 18053 + sources."ms-2.1.2" 18054 + ]; 18055 + }) 18056 + sources."agentkeepalive-4.5.0" 18057 + sources."aggregate-error-3.1.0" 18058 + sources."ansi-escapes-4.3.2" 18059 + sources."ansi-regex-5.0.1" 18060 sources."ansi-styles-4.3.0" 18061 sources."anymatch-3.1.3" 18062 sources."application-config-path-0.1.1" 18063 sources."argparse-1.0.10" 18064 sources."array-flatten-1.1.1" 18065 sources."async-limiter-1.0.1" 18066 sources."balanced-match-1.0.2" 18067 sources."batch-0.6.1" ··· 18075 sources."braces-3.0.2" 18076 sources."buffer-from-1.1.2" 18077 sources."bufferutil-4.0.7" 18078 + sources."busboy-1.6.0" 18079 sources."bytes-3.1.2" 18080 + (sources."cacache-17.1.4" // { 18081 + dependencies = [ 18082 + sources."brace-expansion-2.0.1" 18083 + sources."glob-10.3.10" 18084 + sources."minimatch-9.0.3" 18085 + sources."minipass-7.0.4" 18086 + ]; 18087 + }) 18088 (sources."cacheable-request-6.1.0" // { 18089 dependencies = [ 18090 sources."get-stream-5.2.0" ··· 18093 }) 18094 sources."call-bind-1.0.2" 18095 sources."chalk-3.0.0" 18096 + sources."chokidar-3.5.3" 18097 + sources."chownr-2.0.0" 18098 + sources."clean-stack-2.2.0" 18099 sources."clone-response-1.0.3" 18100 sources."color-convert-2.0.1" 18101 sources."color-name-1.1.4" 18102 sources."command-exists-1.2.9" 18103 + sources."commander-10.0.1" 18104 sources."concat-map-0.0.1" 18105 sources."connect-3.7.0" 18106 sources."content-disposition-0.5.4" 18107 sources."content-type-1.0.5" 18108 sources."cookie-0.5.0" 18109 + sources."cookie-signature-1.2.1" 18110 + sources."copy-anything-2.0.6" 18111 + (sources."cross-spawn-7.0.3" // { 18112 + dependencies = [ 18113 + sources."which-2.0.2" 18114 + ]; 18115 + }) 18116 sources."debug-2.6.9" 18117 sources."decompress-response-3.3.0" 18118 sources."deep-extend-0.6.0" 18119 sources."defer-to-connect-1.1.3" 18120 sources."depd-2.0.0" 18121 sources."destroy-1.2.0" 18122 + sources."detect-libc-1.0.3" 18123 (sources."devcert-1.2.2" // { 18124 dependencies = [ 18125 sources."debug-3.2.7" ··· 18128 }) 18129 sources."dir-glob-3.0.1" 18130 sources."duplexer3-0.1.5" 18131 + sources."eastasianwidth-0.2.0" 18132 sources."ee-first-1.1.1" 18133 (sources."elm-doc-preview-5.0.5" // { 18134 dependencies = [ ··· 18137 ]; 18138 }) 18139 sources."elm-hot-1.1.6" 18140 + sources."emoji-regex-9.2.2" 18141 sources."encodeurl-1.0.2" 18142 sources."end-of-stream-1.4.4" 18143 sources."eol-0.9.1" 18144 + sources."err-code-2.0.3" 18145 + sources."errno-0.1.8" 18146 + sources."esbuild-0.17.19" 18147 sources."escape-html-1.0.3" 18148 sources."esprima-4.0.1" 18149 sources."etag-1.8.1" 18150 (sources."express-4.18.2" // { 18151 dependencies = [ 18152 + sources."cookie-signature-1.0.6" 18153 sources."finalhandler-1.2.0" 18154 sources."on-finished-2.4.1" 18155 sources."statuses-2.0.1" ··· 18161 ]; 18162 }) 18163 sources."extend-shallow-2.0.1" 18164 + sources."fast-glob-3.3.1" 18165 sources."fastq-1.15.0" 18166 sources."fill-range-7.0.1" 18167 sources."finalhandler-1.1.2" 18168 + sources."foreground-child-3.1.1" 18169 sources."forwarded-0.2.0" 18170 sources."fresh-0.5.2" 18171 + sources."fs-extra-11.1.1" 18172 + (sources."fs-minipass-3.0.3" // { 18173 + dependencies = [ 18174 + sources."minipass-7.0.4" 18175 + ]; 18176 + }) 18177 + sources."fs-monkey-1.0.5" 18178 sources."fs.realpath-1.0.0" 18179 + sources."fsevents-2.3.3" 18180 sources."function-bind-1.1.1" 18181 + sources."get-intrinsic-1.2.1" 18182 sources."get-port-3.2.0" 18183 sources."get-stream-4.1.0" 18184 sources."glob-7.2.3" 18185 sources."glob-parent-5.1.2" 18186 + sources."globby-13.1.4" 18187 sources."got-9.6.0" 18188 sources."graceful-fs-4.2.11" 18189 sources."gray-matter-4.0.3" 18190 + sources."has-1.0.4" 18191 sources."has-flag-4.0.0" 18192 + sources."has-proto-1.0.1" 18193 sources."has-symbols-1.0.3" 18194 sources."http-cache-semantics-4.1.1" 18195 (sources."http-errors-2.0.0" // { ··· 18197 sources."statuses-2.0.1" 18198 ]; 18199 }) 18200 + (sources."http-proxy-agent-5.0.0" // { 18201 + dependencies = [ 18202 + sources."debug-4.3.4" 18203 + sources."ms-2.1.2" 18204 + ]; 18205 + }) 18206 + (sources."https-proxy-agent-5.0.1" // { 18207 + dependencies = [ 18208 + sources."debug-4.3.4" 18209 + sources."ms-2.1.2" 18210 + ]; 18211 + }) 18212 + sources."humanize-ms-1.2.1" 18213 sources."iconv-lite-0.4.24" 18214 sources."ignore-5.2.4" 18215 + sources."image-size-0.5.5" 18216 + sources."immutable-4.3.4" 18217 + sources."imurmurhash-0.1.4" 18218 + sources."indent-string-4.0.0" 18219 sources."inflight-1.0.6" 18220 sources."inherits-2.0.4" 18221 sources."ini-1.3.8" 18222 + sources."ip-2.0.0" 18223 sources."ipaddr.js-1.9.1" 18224 sources."is-binary-path-2.1.0" 18225 sources."is-docker-2.2.1" 18226 sources."is-extendable-0.1.1" 18227 sources."is-extglob-2.1.1" 18228 + sources."is-fullwidth-code-point-3.0.0" 18229 sources."is-glob-4.0.3" 18230 + sources."is-lambda-1.0.1" 18231 sources."is-number-7.0.0" 18232 sources."is-valid-domain-0.1.6" 18233 + sources."is-what-3.14.1" 18234 sources."is-wsl-2.2.0" 18235 sources."isexe-2.0.0" 18236 + sources."jackspeak-2.3.6" 18237 sources."js-yaml-3.14.1" 18238 sources."jsesc-3.0.2" 18239 sources."json-buffer-3.0.0" ··· 18242 sources."kind-of-6.0.3" 18243 sources."kleur-4.1.5" 18244 sources."latest-version-5.1.0" 18245 + (sources."less-4.2.0" // { 18246 + dependencies = [ 18247 + sources."tslib-2.6.2" 18248 + ]; 18249 + }) 18250 + sources."lightningcss-1.22.0" 18251 + sources."lightningcss-darwin-arm64-1.22.0" 18252 + sources."lightningcss-darwin-x64-1.22.0" 18253 + sources."lightningcss-freebsd-x64-1.22.0" 18254 + sources."lightningcss-linux-arm-gnueabihf-1.22.0" 18255 + sources."lightningcss-linux-arm64-gnu-1.22.0" 18256 + sources."lightningcss-linux-arm64-musl-1.22.0" 18257 + sources."lightningcss-linux-x64-gnu-1.22.0" 18258 + sources."lightningcss-linux-x64-musl-1.22.0" 18259 + sources."lightningcss-win32-x64-msvc-1.22.0" 18260 sources."lodash-4.17.21" 18261 sources."lowercase-keys-1.0.1" 18262 + sources."lru-cache-7.18.3" 18263 + (sources."make-dir-2.1.0" // { 18264 + dependencies = [ 18265 + sources."semver-5.7.2" 18266 + ]; 18267 + }) 18268 + sources."make-fetch-happen-11.1.1" 18269 sources."media-typer-0.3.0" 18270 + sources."memfs-3.6.0" 18271 sources."merge-descriptors-1.0.1" 18272 sources."merge2-1.4.1" 18273 sources."methods-1.1.2" ··· 18278 sources."mimic-response-1.0.1" 18279 sources."minimatch-3.1.2" 18280 sources."minimist-1.2.8" 18281 + sources."minipass-5.0.0" 18282 + (sources."minipass-collect-1.0.2" // { 18283 + dependencies = [ 18284 + sources."minipass-3.3.6" 18285 + ]; 18286 + }) 18287 + (sources."minipass-fetch-3.0.4" // { 18288 + dependencies = [ 18289 + sources."minipass-7.0.4" 18290 + ]; 18291 + }) 18292 + (sources."minipass-flush-1.0.5" // { 18293 + dependencies = [ 18294 + sources."minipass-3.3.6" 18295 + ]; 18296 + }) 18297 + (sources."minipass-pipeline-1.2.4" // { 18298 + dependencies = [ 18299 + sources."minipass-3.3.6" 18300 + ]; 18301 + }) 18302 + (sources."minipass-sized-1.0.3" // { 18303 + dependencies = [ 18304 + sources."minipass-3.3.6" 18305 + ]; 18306 + }) 18307 + (sources."minizlib-2.1.2" // { 18308 + dependencies = [ 18309 + sources."minipass-3.3.6" 18310 + ]; 18311 + }) 18312 sources."mkdirp-0.5.6" 18313 sources."ms-2.0.0" 18314 + sources."nanoid-3.3.6" 18315 + (sources."needle-3.2.0" // { 18316 + dependencies = [ 18317 + sources."debug-3.2.7" 18318 + sources."iconv-lite-0.6.3" 18319 + sources."ms-2.1.3" 18320 + ]; 18321 + }) 18322 sources."negotiator-0.6.3" 18323 + sources."node-gyp-build-4.6.1" 18324 sources."normalize-path-3.0.0" 18325 sources."normalize-url-4.5.1" 18326 sources."object-inspect-1.12.3" 18327 sources."on-finished-2.3.0" 18328 sources."once-1.4.0" 18329 sources."open-7.4.2" 18330 sources."os-tmpdir-1.0.2" 18331 sources."p-cancelable-1.1.0" 18332 + sources."p-map-4.0.0" 18333 + sources."package-json-6.5.0" 18334 + sources."parse-node-version-1.0.1" 18335 sources."parseurl-1.3.3" 18336 + sources."password-prompt-1.1.3" 18337 + sources."path-is-absolute-1.0.1" 18338 + sources."path-key-3.1.1" 18339 + (sources."path-scurry-1.10.1" // { 18340 dependencies = [ 18341 + sources."lru-cache-10.0.1" 18342 ]; 18343 }) 18344 sources."path-to-regexp-0.1.7" 18345 sources."path-type-4.0.0" 18346 + sources."picocolors-1.0.0" 18347 sources."picomatch-2.3.1" 18348 + sources."pify-4.0.1" 18349 + sources."postcss-8.4.31" 18350 sources."prepend-http-2.0.0" 18351 + sources."promise-retry-2.0.1" 18352 sources."proxy-addr-2.0.7" 18353 + sources."prr-1.0.1" 18354 sources."pump-3.0.0" 18355 sources."punycode-2.3.0" 18356 sources."qs-6.11.0" ··· 18362 sources."registry-auth-token-4.2.2" 18363 sources."registry-url-5.1.0" 18364 sources."responselike-1.0.2" 18365 + sources."retry-0.12.0" 18366 sources."reusify-1.0.4" 18367 sources."rimraf-2.7.1" 18368 + sources."rollup-3.29.4" 18369 sources."run-parallel-1.2.0" 18370 sources."safe-buffer-5.2.1" 18371 sources."safer-buffer-2.1.2" 18372 + sources."sass-1.68.0" 18373 + sources."sax-1.3.0" 18374 sources."section-matter-1.0.0" 18375 + sources."semver-6.3.1" 18376 (sources."send-0.18.0" // { 18377 dependencies = [ 18378 sources."ms-2.1.3" ··· 18393 sources."shebang-command-2.0.0" 18394 sources."shebang-regex-3.0.0" 18395 sources."side-channel-1.0.4" 18396 + sources."signal-exit-4.1.0" 18397 + sources."slash-4.0.0" 18398 + sources."smart-buffer-4.2.0" 18399 + sources."socks-2.7.1" 18400 + (sources."socks-proxy-agent-7.0.0" // { 18401 + dependencies = [ 18402 + sources."debug-4.3.4" 18403 + sources."ms-2.1.2" 18404 + ]; 18405 + }) 18406 sources."source-map-0.6.1" 18407 + sources."source-map-js-1.0.2" 18408 sources."source-map-support-0.5.21" 18409 sources."sprintf-js-1.0.3" 18410 + (sources."ssri-10.0.5" // { 18411 + dependencies = [ 18412 + sources."minipass-7.0.4" 18413 + ]; 18414 + }) 18415 sources."statuses-1.5.0" 18416 + sources."streamsearch-1.1.0" 18417 + sources."string-width-5.1.2" 18418 + (sources."string-width-cjs-4.2.3" // { 18419 + dependencies = [ 18420 + sources."emoji-regex-8.0.0" 18421 + sources."strip-ansi-6.0.1" 18422 + ]; 18423 + }) 18424 + (sources."strip-ansi-7.1.0" // { 18425 + dependencies = [ 18426 + sources."ansi-regex-6.0.1" 18427 + ]; 18428 + }) 18429 + sources."strip-ansi-cjs-6.0.1" 18430 sources."strip-bom-string-1.0.0" 18431 sources."strip-json-comments-2.0.1" 18432 + (sources."stylus-0.60.0" // { 18433 + dependencies = [ 18434 + sources."debug-4.3.4" 18435 + sources."ms-2.1.2" 18436 + sources."sax-1.2.4" 18437 + sources."source-map-0.7.4" 18438 + ]; 18439 + }) 18440 sources."sudo-prompt-8.2.5" 18441 + sources."sugarss-4.0.1" 18442 sources."supports-color-7.2.0" 18443 + (sources."tar-6.2.0" // { 18444 + dependencies = [ 18445 + (sources."fs-minipass-2.1.0" // { 18446 + dependencies = [ 18447 + sources."minipass-3.3.6" 18448 + ]; 18449 + }) 18450 + sources."mkdirp-1.0.4" 18451 + ]; 18452 + }) 18453 + (sources."terser-5.21.0" // { 18454 dependencies = [ 18455 sources."commander-2.20.3" 18456 ]; ··· 18460 sources."to-regex-range-5.0.1" 18461 sources."toidentifier-1.0.1" 18462 sources."tslib-1.14.1" 18463 + sources."type-fest-0.21.3" 18464 sources."type-is-1.6.18" 18465 + sources."unique-filename-3.0.0" 18466 + sources."unique-slug-4.0.0" 18467 sources."universalify-2.0.0" 18468 sources."unpipe-1.0.0" 18469 sources."url-parse-lax-3.0.0" 18470 sources."utf-8-validate-5.0.10" 18471 sources."utils-merge-1.0.1" 18472 sources."vary-1.1.2" 18473 + (sources."vite-4.4.11" // { 18474 + dependencies = [ 18475 + sources."@esbuild/android-arm-0.18.20" 18476 + sources."@esbuild/android-arm64-0.18.20" 18477 + sources."@esbuild/android-x64-0.18.20" 18478 + sources."@esbuild/darwin-arm64-0.18.20" 18479 + sources."@esbuild/darwin-x64-0.18.20" 18480 + sources."@esbuild/freebsd-arm64-0.18.20" 18481 + sources."@esbuild/freebsd-x64-0.18.20" 18482 + sources."@esbuild/linux-arm-0.18.20" 18483 + sources."@esbuild/linux-arm64-0.18.20" 18484 + sources."@esbuild/linux-ia32-0.18.20" 18485 + sources."@esbuild/linux-loong64-0.18.20" 18486 + sources."@esbuild/linux-mips64el-0.18.20" 18487 + sources."@esbuild/linux-ppc64-0.18.20" 18488 + sources."@esbuild/linux-riscv64-0.18.20" 18489 + sources."@esbuild/linux-s390x-0.18.20" 18490 + sources."@esbuild/linux-x64-0.18.20" 18491 + sources."@esbuild/netbsd-x64-0.18.20" 18492 + sources."@esbuild/openbsd-x64-0.18.20" 18493 + sources."@esbuild/sunos-x64-0.18.20" 18494 + sources."@esbuild/win32-arm64-0.18.20" 18495 + sources."@esbuild/win32-ia32-0.18.20" 18496 + sources."@esbuild/win32-x64-0.18.20" 18497 + sources."@types/node-20.8.2" 18498 + sources."esbuild-0.18.20" 18499 + ]; 18500 + }) 18501 + sources."which-3.0.1" 18502 + (sources."wrap-ansi-8.1.0" // { 18503 + dependencies = [ 18504 + sources."ansi-styles-6.2.1" 18505 + ]; 18506 + }) 18507 + (sources."wrap-ansi-cjs-7.0.0" // { 18508 + dependencies = [ 18509 + sources."emoji-regex-8.0.0" 18510 + sources."string-width-4.2.3" 18511 + sources."strip-ansi-6.0.1" 18512 + ]; 18513 + }) 18514 sources."wrappy-1.0.2" 18515 sources."ws-7.5.9" 18516 + sources."yallist-4.0.0" 18517 ]; 18518 buildInputs = globalBuildInputs; 18519 meta = { ··· 18528 elm-review = nodeEnv.buildNodePackage { 18529 name = "elm-review"; 18530 packageName = "elm-review"; 18531 + version = "2.10.3"; 18532 src = fetchurl { 18533 + url = "https://registry.npmjs.org/elm-review/-/elm-review-2.10.3.tgz"; 18534 + sha512 = "9gBqLc5Xm3v9Ncpf8y2haEaBZZyMX25vmwQkrNqSIaNYQ2vdGOIx1eyqRtt1xwX5O8pZdqU8IWC/ENyTrOTKbw=="; 18535 }; 18536 dependencies = [ 18537 + (sources."@isaacs/cliui-8.0.2" // { 18538 + dependencies = [ 18539 + sources."ansi-styles-6.2.1" 18540 + sources."strip-ansi-7.1.0" 18541 + sources."wrap-ansi-8.1.0" 18542 + ]; 18543 + }) 18544 sources."@sindresorhus/is-4.6.0" 18545 sources."@szmarczak/http-timer-4.0.6" 18546 sources."@types/cacheable-request-6.0.3" 18547 + sources."@types/http-cache-semantics-4.0.2" 18548 sources."@types/keyv-3.1.4" 18549 + sources."@types/node-20.8.2" 18550 + sources."@types/responselike-1.0.1" 18551 sources."ansi-escapes-4.3.2" 18552 + sources."ansi-regex-6.0.1" 18553 sources."ansi-styles-4.3.0" 18554 sources."anymatch-3.1.3" 18555 sources."at-least-node-1.0.0" ··· 18561 sources."braces-3.0.2" 18562 sources."buffer-5.7.1" 18563 sources."cacheable-lookup-5.0.4" 18564 + sources."cacheable-request-7.0.4" 18565 sources."chalk-4.1.2" 18566 sources."chokidar-3.5.3" 18567 sources."cli-cursor-3.1.0" 18568 + sources."cli-spinners-2.9.1" 18569 sources."clone-1.0.4" 18570 sources."clone-response-1.0.3" 18571 sources."color-convert-2.0.1" ··· 18580 }) 18581 sources."defaults-1.0.4" 18582 sources."defer-to-connect-2.0.1" 18583 + sources."eastasianwidth-0.2.0" 18584 + sources."elm-tooling-1.15.0" 18585 + sources."emoji-regex-9.2.2" 18586 sources."end-of-stream-1.4.4" 18587 sources."fastest-levenshtein-1.0.16" 18588 sources."fill-range-7.0.1" 18589 sources."find-up-4.1.0" 18590 sources."folder-hash-3.3.3" 18591 + (sources."foreground-child-3.1.1" // { 18592 + dependencies = [ 18593 + sources."signal-exit-4.1.0" 18594 + ]; 18595 + }) 18596 sources."fs-extra-9.1.0" 18597 sources."fs.realpath-1.0.0" 18598 + sources."fsevents-2.3.3" 18599 sources."get-stream-5.2.0" 18600 (sources."glob-7.2.3" // { 18601 dependencies = [ ··· 18619 sources."is-number-7.0.0" 18620 sources."is-unicode-supported-0.1.0" 18621 sources."isexe-2.0.0" 18622 + sources."jackspeak-2.3.6" 18623 sources."json-buffer-3.0.1" 18624 sources."jsonfile-6.1.0" 18625 + sources."keyv-4.5.3" 18626 sources."kleur-3.0.3" 18627 sources."locate-path-5.0.0" 18628 sources."log-symbols-4.1.0" 18629 sources."lowercase-keys-2.0.0" 18630 + sources."lru-cache-10.0.1" 18631 sources."mimic-fn-2.1.0" 18632 sources."mimic-response-1.0.1" 18633 sources."minimatch-3.0.8" 18634 sources."minimist-1.2.8" 18635 + sources."minipass-7.0.4" 18636 sources."ms-2.1.2" 18637 sources."normalize-path-3.0.0" 18638 sources."normalize-url-6.1.0" ··· 18646 sources."path-exists-4.0.0" 18647 sources."path-is-absolute-1.0.1" 18648 sources."path-key-3.1.1" 18649 + sources."path-scurry-1.10.1" 18650 sources."picomatch-2.3.1" 18651 sources."prompts-2.4.2" 18652 sources."pump-3.0.0" ··· 18656 sources."resolve-alpn-1.2.1" 18657 sources."responselike-2.0.1" 18658 sources."restore-cursor-3.1.0" 18659 + (sources."rimraf-5.0.5" // { 18660 + dependencies = [ 18661 + sources."brace-expansion-2.0.1" 18662 + sources."glob-10.3.10" 18663 + sources."minimatch-9.0.3" 18664 + ]; 18665 + }) 18666 sources."safe-buffer-5.2.1" 18667 sources."shebang-command-2.0.0" 18668 sources."shebang-regex-3.0.0" 18669 sources."signal-exit-3.0.7" 18670 sources."sisteransi-1.0.5" 18671 + (sources."string-width-5.1.2" // { 18672 + dependencies = [ 18673 + sources."strip-ansi-7.1.0" 18674 + ]; 18675 + }) 18676 + (sources."string-width-cjs-4.2.3" // { 18677 + dependencies = [ 18678 + sources."emoji-regex-8.0.0" 18679 + ]; 18680 + }) 18681 sources."string_decoder-1.3.0" 18682 + (sources."strip-ansi-6.0.1" // { 18683 + dependencies = [ 18684 + sources."ansi-regex-5.0.1" 18685 + ]; 18686 + }) 18687 + (sources."strip-ansi-cjs-6.0.1" // { 18688 + dependencies = [ 18689 + sources."ansi-regex-5.0.1" 18690 + ]; 18691 + }) 18692 sources."supports-color-7.2.0" 18693 sources."supports-hyperlinks-2.3.0" 18694 sources."terminal-link-2.1.1" 18695 sources."to-regex-range-5.0.1" 18696 sources."type-fest-0.21.3" ··· 18698 sources."util-deprecate-1.0.2" 18699 sources."wcwidth-1.0.1" 18700 sources."which-2.0.2" 18701 + (sources."wrap-ansi-6.2.0" // { 18702 + dependencies = [ 18703 + sources."emoji-regex-8.0.0" 18704 + sources."string-width-4.2.3" 18705 + ]; 18706 + }) 18707 + (sources."wrap-ansi-cjs-7.0.0" // { 18708 + dependencies = [ 18709 + sources."emoji-regex-8.0.0" 18710 + sources."string-width-4.2.3" 18711 + ]; 18712 + }) 18713 sources."wrappy-1.0.2" 18714 ]; 18715 buildInputs = globalBuildInputs; ··· 18737 sources."git-clone-able-0.1.2" 18738 sources."lru-cache-6.0.0" 18739 sources."ms-2.1.2" 18740 + sources."semver-7.5.4" 18741 + sources."simple-git-3.20.0" 18742 sources."upath-2.0.1" 18743 sources."yallist-4.0.0" 18744 ];
pkgs/development/compilers/elm/registry.dat

This is a binary file and will not be displayed.

+2 -2
pkgs/development/compilers/lobster/default.nix
··· 18 19 stdenv.mkDerivation rec { 20 pname = "lobster"; 21 - version = "2023.11"; 22 23 src = fetchFromGitHub { 24 owner = "aardappel"; 25 repo = "lobster"; 26 rev = "v${version}"; 27 - sha256 = "sha256-c0EElDvoFzIZvYZpjWd9az+KUxDXTETOp89I/tRCrQ0="; 28 }; 29 30 nativeBuildInputs = [ cmake ];
··· 18 19 stdenv.mkDerivation rec { 20 pname = "lobster"; 21 + version = "2023.12"; 22 23 src = fetchFromGitHub { 24 owner = "aardappel"; 25 repo = "lobster"; 26 rev = "v${version}"; 27 + sha256 = "sha256-0hEcbLq8thlgMtCcWt8SR5XsNgQfNH4+qdE0cHfRveo="; 28 }; 29 30 nativeBuildInputs = [ cmake ];
+8 -1
pkgs/development/libraries/unixODBCDrivers/default.nix
··· 55 fetchSubmodules = true; 56 }; 57 58 nativeBuildInputs = [ cmake ]; 59 - buildInputs = [ unixODBC openssl libiconv ]; 60 61 preConfigure = '' 62 # we don't want to build a .pkg ··· 66 ''; 67 68 cmakeFlags = [ 69 "-DODBC_LIB_DIR=${lib.getLib unixODBC}/lib" 70 "-DODBC_INCLUDE_DIR=${lib.getDev unixODBC}/include" 71 "-DWITH_OPENSSL=ON"
··· 55 fetchSubmodules = true; 56 }; 57 58 + patches = [ 59 + # Fix `call to undeclared function 'sleep'` with clang 16 60 + ./mariadb-connector-odbc-unistd.patch 61 + ]; 62 + 63 nativeBuildInputs = [ cmake ]; 64 + buildInputs = [ unixODBC openssl libiconv zlib ] 65 + ++ lib.optionals stdenv.isDarwin [ libkrb5 ]; 66 67 preConfigure = '' 68 # we don't want to build a .pkg ··· 72 ''; 73 74 cmakeFlags = [ 75 + "-DWITH_EXTERNAL_ZLIB=ON" 76 "-DODBC_LIB_DIR=${lib.getLib unixODBC}/lib" 77 "-DODBC_INCLUDE_DIR=${lib.getDev unixODBC}/include" 78 "-DWITH_OPENSSL=ON"
+12
pkgs/development/libraries/unixODBCDrivers/mariadb-connector-odbc-unistd.patch
···
··· 1 + diff -ur a/test/use_result.c b/test/use_result.c 2 + --- a/test/use_result.c 1969-12-31 19:00:01.000000000 -0500 3 + +++ b/test/use_result.c 2023-09-05 00:08:12.979889343 -0400 4 + @@ -23,6 +23,8 @@ 5 + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 6 + */ 7 + 8 + +#include <unistd.h> 9 + + 10 + #include "tap.h" 11 + 12 + SQLINTEGER my_max_rows= 100;
+7 -3
pkgs/development/ocaml-modules/algaeff/default.nix
··· 1 { lib 2 , buildDunePackage 3 , fetchFromGitHub 4 }: 5 6 buildDunePackage rec { 7 pname = "algaeff"; 8 - version = "0.2.1"; 9 10 minimalOCamlVersion = "5.0"; 11 - duneVersion = "3"; 12 13 src = fetchFromGitHub { 14 owner = "RedPRL"; 15 repo = pname; 16 rev = version; 17 - hash = "sha256-jpnJhF+LN2ef6QPLcCHxcMg3Fr3GSLOnJkZ9ZUIOrlY="; 18 }; 19 20 meta = { 21 description = "Reusable Effects-Based Components";
··· 1 { lib 2 , buildDunePackage 3 , fetchFromGitHub 4 + , alcotest 5 + , qcheck-core 6 }: 7 8 buildDunePackage rec { 9 pname = "algaeff"; 10 + version = "1.1.0"; 11 12 minimalOCamlVersion = "5.0"; 13 14 src = fetchFromGitHub { 15 owner = "RedPRL"; 16 repo = pname; 17 rev = version; 18 + hash = "sha256-7kwQmoT8rpQWPHc+BZQi9fcZhgHxS99158ebXAXlpQ8="; 19 }; 20 + 21 + doCheck = true; 22 + checkInputs = [ alcotest qcheck-core ]; 23 24 meta = { 25 description = "Reusable Effects-Based Components";
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "botocore-stubs"; 12 - version = "1.31.57"; 13 format = "pyproject"; 14 15 disabled = pythonOlder "3.7"; ··· 17 src = fetchPypi { 18 pname = "botocore_stubs"; 19 inherit version; 20 - hash = "sha256-4o88p6YnnwHc7EZjmAvoCqk9xOsu/MI5aFnOtkdiO4M="; 21 }; 22 23 nativeBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "botocore-stubs"; 12 + version = "1.31.60"; 13 format = "pyproject"; 14 15 disabled = pythonOlder "3.7"; ··· 17 src = fetchPypi { 18 pname = "botocore_stubs"; 19 inherit version; 20 + hash = "sha256-mBNODmy8MhpZPYwRpuJTK3TYy4Rkvz880BhLzFnxs54="; 21 }; 22 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/env-canada/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "env-canada"; 18 - version = "0.5.36"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "michaeldavie"; 25 repo = "env_canada"; 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-5eA9fqL748VigNgy1G7bZtMstV7EI9LLPhv6xZnCEFA="; 28 }; 29 30 propagatedBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "env-canada"; 18 + version = "0.5.37"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "michaeldavie"; 25 repo = "env_canada"; 26 rev = "refs/tags/v${version}"; 27 + hash = "sha256-HKtUSINJNREvu5t2jMEirkwMG6O9tBnWhACMv4L01TE="; 28 }; 29 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/gitignore-parser/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "gitignore-parser"; 10 - version = "0.1.7"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; ··· 16 owner = "mherrmann"; 17 repo = "gitignore_parser"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-Zw7BuhdUzd0pjlRHf3KbkOUhLuBVvlKhWIzZocKOU30="; 20 }; 21 22 nativeCheckInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "gitignore-parser"; 10 + version = "0.1.8"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; ··· 16 owner = "mherrmann"; 17 repo = "gitignore_parser"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-FgP1moyfxgPmPOWpSp6+UXZOzL5HDofg3ECh53x4iaE="; 20 }; 21 22 nativeCheckInputs = [
+2 -2
pkgs/development/python-modules/prayer-times-calculator/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "prayer-times-calculator"; 10 - version = "0.0.8"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.6"; ··· 16 owner = "uchagani"; 17 repo = pname; 18 rev = "refs/tags/${version}"; 19 - hash = "sha256-Zk7lzZUfojJrsrLRS9cf9AhEfGGsxZJo2MnIIOv6Ezk="; 20 }; 21 22 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "prayer-times-calculator"; 10 + version = "0.0.9"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.6"; ··· 16 owner = "uchagani"; 17 repo = pname; 18 rev = "refs/tags/${version}"; 19 + hash = "sha256-QIUMxs6NOqnljTi1UNp7bCQ9TgBy/u+BWEqgr2C854g="; 20 }; 21 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pypoint/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "pypoint"; 10 - version = "2.3.1"; 11 format = "setuptools"; 12 13 src = fetchFromGitHub { 14 owner = "fredrike"; 15 repo = "pypoint"; 16 rev = "v${version}"; 17 - hash = "sha256-fO0un6YIK3jutzUxbu9mSqPZHfLa3pMtfxOy1iV3Qio="; 18 }; 19 20 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "pypoint"; 10 + version = "2.3.2"; 11 format = "setuptools"; 12 13 src = fetchFromGitHub { 14 owner = "fredrike"; 15 repo = "pypoint"; 16 rev = "v${version}"; 17 + hash = "sha256-tQ5rQs6ECn9O9dVXKWhmy9BBpOzgqSmwpmbIRbJn2CQ="; 18 }; 19 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/tagoio-sdk/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "tagoio-sdk"; 17 - version = "4.1.1"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.9"; ··· 23 owner = "tago-io"; 24 repo = "sdk-python"; 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-GHjkw7B/T+XZ3F3XCI0INpx9NWjORr0lbuGse/W25wY="; 27 }; 28 29 pythonRelaxDeps = [
··· 14 15 buildPythonPackage rec { 16 pname = "tagoio-sdk"; 17 + version = "4.2.0"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.9"; ··· 23 owner = "tago-io"; 24 repo = "sdk-python"; 25 rev = "refs/tags/v${version}"; 26 + hash = "sha256-ebNiEvQ1U0RLrH3OOt/oRRPElg+9jibj7fsEEd1hdmU="; 27 }; 28 29 pythonRelaxDeps = [
+2 -2
pkgs/servers/keycloak/default.nix
··· 18 ''; 19 in stdenv.mkDerivation rec { 20 pname = "keycloak"; 21 - version = "22.0.3"; 22 23 src = fetchzip { 24 url = "https://github.com/keycloak/keycloak/releases/download/${version}/keycloak-${version}.zip"; 25 - hash = "sha256-QDa5YPPi7JR8fd3jni8fjkwWH/PF023avVBENEwnbVA="; 26 }; 27 28 nativeBuildInputs = [ makeWrapper jre ];
··· 18 ''; 19 in stdenv.mkDerivation rec { 20 pname = "keycloak"; 21 + version = "22.0.4"; 22 23 src = fetchzip { 24 url = "https://github.com/keycloak/keycloak/releases/download/${version}/keycloak-${version}.zip"; 25 + hash = "sha256-wl6kZmm6o9UspKdVHDqUvoDCRALp1ut7Sun/RDuEMLI="; 26 }; 27 28 nativeBuildInputs = [ makeWrapper jre ];
+13
pkgs/servers/web-apps/discourse/assets_esbuild_from_path.patch
···
··· 1 + diff --git a/lib/discourse_js_processor.rb b/lib/discourse_js_processor.rb 2 + index 3fee4259af9..53cc3107f46 100644 3 + --- a/lib/discourse_js_processor.rb 4 + +++ b/lib/discourse_js_processor.rb 5 + @@ -111,8 +111,6 @@ class DiscourseJsProcessor 6 + 7 + def self.generate_js_processor 8 + Discourse::Utils.execute_command( 9 + - "yarn", 10 + - "--silent", 11 + "esbuild", 12 + "--log-level=warning", 13 + "--bundle",
+18 -3
pkgs/servers/web-apps/discourse/default.nix
··· 13 , gzip 14 , gnutar 15 , git 16 , cacert 17 , util-linux 18 , gawk ··· 46 }@args: 47 48 let 49 - version = "3.1.0"; 50 51 src = fetchFromGitHub { 52 owner = "discourse"; 53 repo = "discourse"; 54 rev = "v${version}"; 55 - sha256 = "sha256-Iv7VSnK8nZDpmIwIRPedSWlftABKuMOQ4MXDGpjuWrY="; 56 }; 57 58 ruby = ruby_3_2; ··· 65 gnutar 66 git 67 brotli 68 69 # Misc required system utils 70 which ··· 202 203 yarnOfflineCache = fetchYarnDeps { 204 yarnLock = src + "/app/assets/javascripts/yarn.lock"; 205 - sha256 = "0sclrv3303dgg3r08dwhd1yvi3pvlnvnikn300vjsh6c71fnzhnj"; 206 }; 207 208 nativeBuildInputs = runtimeDeps ++ [ ··· 215 nodejs_18 216 jq 217 moreutils 218 ]; 219 220 outputs = [ "out" "javascripts" ]; ··· 238 # hasn't been `patchShebangs`-ed yet. So instead we just use 239 # `patch-package` from `nativeBuildInputs`. 240 ./asserts_patch-package_from_path.patch 241 ]; 242 243 # We have to set up an environment that is close enough to ··· 351 352 # Make sure the notification email setting applies 353 ./notification_email.patch 354 ]; 355 356 postPatch = ''
··· 13 , gzip 14 , gnutar 15 , git 16 + , esbuild 17 , cacert 18 , util-linux 19 , gawk ··· 47 }@args: 48 49 let 50 + version = "3.2.0.beta1"; 51 52 src = fetchFromGitHub { 53 owner = "discourse"; 54 repo = "discourse"; 55 rev = "v${version}"; 56 + sha256 = "sha256-HVjt5rsLSuyOaQxkbiTrsYsSXj3oSWjke98QVp+tEqk="; 57 }; 58 59 ruby = ruby_3_2; ··· 66 gnutar 67 git 68 brotli 69 + esbuild 70 71 # Misc required system utils 72 which ··· 204 205 yarnOfflineCache = fetchYarnDeps { 206 yarnLock = src + "/app/assets/javascripts/yarn.lock"; 207 + sha256 = "070h66zp8kmsigbrkh5d3jzbzvllzhbx0fa2yzx5lbpgnjhih3p2"; 208 }; 209 210 nativeBuildInputs = runtimeDeps ++ [ ··· 217 nodejs_18 218 jq 219 moreutils 220 + esbuild 221 ]; 222 223 outputs = [ "out" "javascripts" ]; ··· 241 # hasn't been `patchShebangs`-ed yet. So instead we just use 242 # `patch-package` from `nativeBuildInputs`. 243 ./asserts_patch-package_from_path.patch 244 + 245 + # `lib/discourse_js_processor.rb` 246 + # tries to call `../node_modules/.bin/esbuild`, which 247 + # hasn't been `patchShebangs`-ed yet. So instead we just use 248 + # `esbuild` from `nativeBuildInputs`. 249 + ./assets_esbuild_from_path.patch 250 ]; 251 252 # We have to set up an environment that is close enough to ··· 360 361 # Make sure the notification email setting applies 362 ./notification_email.patch 363 + 364 + # `lib/discourse_js_processor.rb` 365 + # tries to call `../node_modules/.bin/esbuild`, which 366 + # hasn't been `patchShebangs`-ed yet. So instead we just use 367 + # `esbuild` from `nativeBuildInputs`. 368 + ./assets_esbuild_from_path.patch 369 ]; 370 371 postPatch = ''
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-assign"; 8 - rev = "0cbf10b8055370445bd36536e51986bf48bdc57e"; 9 - sha256 = "sha256-7rJ2zQo1nCHwtVuLJUmdj66Ky2bi4Cpo+22H3DbO1uo="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-docs";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-assign"; 8 + rev = "e9c7cb5c3f90109bc47223b0aa4054d681e9cc04"; 9 + sha256 = "sha256-w1h1dCSyOml+AT7lPKENYfawm6BU2De5CyBHrDnDcrM="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-docs";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-bbcode-color/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-bbcode-color"; 8 - rev = "35aab2e9b92f8b01633d374ea999e7fd59d020d7"; 9 - sha256 = "sha256-DHckx921EeQysm1UPloCrt43BJetTnZKnTbJGk15NMs="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-bbcode-color";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-bbcode-color"; 8 + rev = "79ed22b3a3352adbd20f7e2222b9dbdb9fbaf7fe"; 9 + sha256 = "sha256-AHgny9BW/ssmv0U2lwzVWgYKPsvWHD6kgU3mBMFX4Aw="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-bbcode-color";
+1 -1
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/Gemfile.lock
··· 22 rrule (= 0.4.4) 23 24 BUNDLED WITH 25 - 2.4.13
··· 22 rrule (= 0.4.4) 23 24 BUNDLED WITH 25 + 2.4.17
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-calendar"; 9 - rev = "afc2ee684de41601d6cecc46713d139760f176a6"; 10 - sha256 = "sha256-rTQWO+E/Jg4zjZDYDvBrDQsox5q4dHkdQjwnJxgv3dI="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-calendar";
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-calendar"; 9 + rev = "4d4fe40d09f7232b1348e1ff910b37b2cec0835d"; 10 + sha256 = "sha256-w1sqE3KxwrE8SWqZUtPVhjITOPFXwlj4iPyPZeSfvtI="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-calendar";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-chat-integration"; 8 - rev = "70fea6b66b68868aa4c00b45a169436deaa142a8"; 9 - sha256 = "sha256-K9MmP1F0B6Na2dTqgnsjMbTQFkF+nNKkI8aF3zPAodc="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-chat-integration";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-chat-integration"; 8 + rev = "4f9ccb58cae8600dcb6db84f38f235283911e6e8"; 9 + sha256 = "sha256-Em9aAwAfUoqsOHLrqNhxUQXsO4Owydf9nhCHbBaqqpg="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-chat-integration";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-data-explorer"; 8 - rev = "e4f8d3924a18b303c2bb7da9472cf0c060060e4e"; 9 - sha256 = "sha256-K+GPszO3je6NmnhIRSqSEhylUK5oEByaS0bLfAGjvB4="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-data-explorer";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-data-explorer"; 8 + rev = "06193f27ef15828479eea61ae4a80bf59806a535"; 9 + sha256 = "sha256-afjqgi2gzRpbZt5K9yXPy4BJ5qRv7A4ZkXHX85+Cv7s="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-data-explorer";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-docs"; 8 - rev = "a4b203274b88c5277d0b5b936de0bc0e0016726c"; 9 - sha256 = "sha256-R+VP/gsb2Oa6lPVMhRoGZzOBx5C7kRSxqwYpWE10GHw="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-docs";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-docs"; 8 + rev = "89c7274b1a730edefd1b56c13b8c04305d4ef331"; 9 + sha256 = "sha256-j3zrGmoAvbSHFnbiUfetyfiQJebrtW3Iw5GvsRRq1kk="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-docs";
+4 -2
pkgs/servers/web-apps/discourse/plugins/discourse-github/Gemfile.lock
··· 3 specs: 4 addressable (2.8.5) 5 public_suffix (>= 2.0.2, < 6.0) 6 - faraday (2.7.10) 7 faraday-net_http (>= 2.0, < 3.1) 8 ruby2_keywords (>= 0.0.4) 9 faraday-net_http (3.0.2) ··· 24 sawyer (= 0.9.2) 25 26 BUNDLED WITH 27 - 2.4.13
··· 3 specs: 4 addressable (2.8.5) 5 public_suffix (>= 2.0.2, < 6.0) 6 + base64 (0.1.1) 7 + faraday (2.7.11) 8 + base64 9 faraday-net_http (>= 2.0, < 3.1) 10 ruby2_keywords (>= 0.0.4) 11 faraday-net_http (3.0.2) ··· 26 sawyer (= 0.9.2) 27 28 BUNDLED WITH 29 + 2.4.17
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-github"; 9 - rev = "8aa068d56ef010cecaabd50657e7753f4bbecc1f"; 10 - sha256 = "sha256-WzljuGvv6pki3ROkvhXZWQaq5D9JkCbWjdlkdRI8lHE="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-github";
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-github"; 9 + rev = "21fa5c97ca23b4c39aef5ab9c4f8ebb22f19a19b"; 10 + sha256 = "sha256-0Teu6nMJWAT9TCjZ0RWZKtfsUKAS1cga5DvALIvrUyY="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-github";
+13 -3
pkgs/servers/web-apps/discourse/plugins/discourse-github/gemset.nix
··· 10 }; 11 version = "2.8.5"; 12 }; 13 faraday = { 14 - dependencies = ["faraday-net_http" "ruby2_keywords"]; 15 groups = ["default"]; 16 platforms = []; 17 source = { 18 remotes = ["https://rubygems.org"]; 19 - sha256 = "187clqhp9mv5mnqmjlfdp57svhsg1bggz84ak8v333j9skrnrgh9"; 20 type = "gem"; 21 }; 22 - version = "2.7.10"; 23 }; 24 faraday-net_http = { 25 groups = ["default"];
··· 10 }; 11 version = "2.8.5"; 12 }; 13 + base64 = { 14 + groups = ["default"]; 15 + platforms = []; 16 + source = { 17 + remotes = ["https://rubygems.org"]; 18 + sha256 = "0cydk9p2cv25qysm0sn2pb97fcpz1isa7n3c8xm1gd99li8x6x8c"; 19 + type = "gem"; 20 + }; 21 + version = "0.1.1"; 22 + }; 23 faraday = { 24 + dependencies = ["base64" "faraday-net_http" "ruby2_keywords"]; 25 groups = ["default"]; 26 platforms = []; 27 source = { 28 remotes = ["https://rubygems.org"]; 29 + sha256 = "0vn7jwss2v6jhnxvjsiwbs3irjwhbx9zxn4l6fhd4rkcfyxzdnw5"; 30 type = "gem"; 31 }; 32 + version = "2.7.11"; 33 }; 34 faraday-net_http = { 35 groups = ["default"];
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-math/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-math"; 8 - rev = "529ad1fe6da924da378a60bec48c35657bb01a68"; 9 - sha256 = "sha256-zhtAy0tTVMzQfPilTwfyyzxgCJD4xazOITBuliFR5Gg="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-math";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-math"; 8 + rev = "66d522cd8e4cf98547f083c4decdc64c688767de"; 9 + sha256 = "sha256-Zil6LWl6ACyP/ZkxNli1u9/3dlHFRETtmIov1BmQ3u4="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-math";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-openid-connect"; 9 - rev = "b1df541ad29f6f6098a1008b83393b2d400986ed"; 10 - sha256 = "sha256-afRd/9M0nQGkS14Q8BJhcJwMCkOku3Fr0uHxcRl44vQ="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-openid-connect";
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-openid-connect"; 9 + rev = "322bf50700840b327d9a52091fedbacc0bb1edfe"; 10 + sha256 = "sha256-8WMhlKHYVm2wHbkP7b8dhOosvwDNjHqTrEziQT1Bu/4="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-openid-connect";
+1 -1
pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/Gemfile.lock
··· 13 webrick (= 1.7.0) 14 15 BUNDLED WITH 16 - 2.4.13
··· 13 webrick (= 1.7.0) 14 15 BUNDLED WITH 16 + 2.4.17
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-prometheus"; 9 - rev = "8a7a46a80cc65aa0839bc5e3c3b6f8ef6544089f"; 10 - sha256 = "sha256-TL+pbP26LvRMKdy8CAuBEK+LZfAs8HfggMeUDaBu9hc="; 11 }; 12 13 patches = [
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-prometheus"; 9 + rev = "305610c90079556cdfa2aa09b567a6ca10d11de5"; 10 + sha256 = "sha256-dz+/2pbbhs8sxYMxe/wAjvdxoU4ihjN95A4ngP0KzQg="; 11 }; 12 13 patches = [
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-reactions/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-reactions"; 8 - rev = "643f807a3a2195f08211064301f0350d9f51604f"; 9 - sha256 = "sha256-4FdiYUNysSuOJ664G3YvlUHx/J7MLUS3kVBdXT47oEw="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-reactions";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-reactions"; 8 + rev = "f04f077e9f0392ca2373ca001044069d650ae6e5"; 9 + sha256 = "sha256-HuFXgfd5HO7qfVlf1RHxenlNL10YRF5OYya4Yt6eS14="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-reactions";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-saved-searches"; 8 - rev = "7c9bdcd68951e7cef16cafe3c4bfb583bb994d2a"; 9 - sha256 = "sha256-6RIN12ACDCeRcxmsC3FgeIPdvovI4arn7w/Dqil1yCI="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-saved-searches";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-saved-searches"; 8 + rev = "1b90d26cc35bd049d0ab7ea3922f7db6ac7ec017"; 9 + sha256 = "sha256-d+zbm8UAZ/ow8o1Y5mWAyjg5JCvQ761jcGcO72tHEIs="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-saved-searches";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-solved"; 8 - rev = "b5d487d6a5bfe2571d936eec5911d02a5f3fcc32"; 9 - sha256 = "sha256-Tt7B9PcsV8E7B+m8GnJw+MBz9rGYtojKt6NjBFMQvOM="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-solved";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-solved"; 8 + rev = "3b9ecc69c6a25b7671c42842b8a6f3872873f537"; 9 + sha256 = "sha256-gtG+v25jJ0DiYlU2vatreGj13yrb5WWRTvxlcDdAibw="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-solved";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-spoiler-alert"; 8 - rev = "65989714af08eda44196cca3a0afe85c9e9443f9"; 9 - sha256 = "sha256-R/vqNEDst50+Y7anckIvhy4viBOqBemIZMh4sPt7kRM="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-spoiler-alert";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-spoiler-alert"; 8 + rev = "b57e79343acc15cb2c0a032a2deb29ad4b9d53cc"; 9 + sha256 = "sha256-Ypt6PYCZzArCv9KkCtw5rfT6++dDoUx5q9m/eMvP0Sc="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-spoiler-alert";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-voting"; 8 - rev = "6449fc15658d972e20086a3f1fae3dbac9cd9eeb"; 9 - sha256 = "sha256-f04LpVeodCVEB/t5Ic2dketp542Nrc0rZWbQ6hrC22g="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-voting";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-voting"; 8 + rev = "83ab47f3186694039c6850ac3e230443e05d37c5"; 9 + sha256 = "sha256-2sSBLSSPddxXqvEukDn8tzLVOOWoPBA+C8N5jVccCjA="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-voting";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-yearly-review"; 8 - rev = "3246c6b378f9e69e664c575efc63c2ad83bcac2f"; 9 - sha256 = "sha256-usHHyfYP4YAQ94f7gvNSH7VBRRkdZMmsSi9QQM8tPfY="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-yearly-review";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-yearly-review"; 8 + rev = "47014a8ecb96da8d45d0fe141a069010161b3087"; 9 + sha256 = "sha256-9OIgxRdQoYH19vb7GcTt8MxVM5N4JPzmMIsg7FQOjJs="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-yearly-review";
+8 -3
pkgs/servers/web-apps/discourse/rubyEnv/Gemfile
··· 18 # this allows us to include the bits of rails we use without pieces we do not. 19 # 20 # To issue a rails update bump the version number here 21 - rails_version = "7.0.5.1" 22 gem "actionmailer", rails_version 23 gem "actionpack", rails_version 24 gem "actionview", rails_version ··· 141 gem "fakeweb", require: false 142 gem "minitest", require: false 143 gem "simplecov", require: false 144 - gem "selenium-webdriver", require: false 145 gem "test-prof" 146 - gem "webdrivers", require: false 147 gem "rails-dom-testing", require: false 148 end 149 150 group :test, :development do ··· 257 gem "csv" 258 259 gem "parallel", require: false 260 end 261 262 gem "web-push"
··· 18 # this allows us to include the bits of rails we use without pieces we do not. 19 # 20 # To issue a rails update bump the version number here 21 + rails_version = "7.0.7" 22 gem "actionmailer", rails_version 23 gem "actionpack", rails_version 24 gem "actionview", rails_version ··· 141 gem "fakeweb", require: false 142 gem "minitest", require: false 143 gem "simplecov", require: false 144 + gem "selenium-webdriver", "~> 4.11", require: false 145 gem "test-prof" 146 gem "rails-dom-testing", require: false 147 + gem "minio_runner", require: false 148 end 149 150 group :test, :development do ··· 257 gem "csv" 258 259 gem "parallel", require: false 260 + end 261 + 262 + if ENV["GENERIC_IMPORT"] == "1" 263 + gem "sqlite3" 264 + gem "redcarpet" 265 end 266 267 gem "web-push"
+66 -67
pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock
··· 9 10 GIT 11 remote: https://github.com/thoughtbot/shoulda-matchers.git 12 - revision: 783a90554053002017510285bc736099b2749c22 13 specs: 14 shoulda-matchers (5.3.0) 15 activesupport (>= 5.2.0) ··· 17 GEM 18 remote: https://rubygems.org/ 19 specs: 20 - actionmailer (7.0.5.1) 21 - actionpack (= 7.0.5.1) 22 - actionview (= 7.0.5.1) 23 - activejob (= 7.0.5.1) 24 - activesupport (= 7.0.5.1) 25 mail (~> 2.5, >= 2.5.4) 26 net-imap 27 net-pop 28 net-smtp 29 rails-dom-testing (~> 2.0) 30 - actionpack (7.0.5.1) 31 - actionview (= 7.0.5.1) 32 - activesupport (= 7.0.5.1) 33 rack (~> 2.0, >= 2.2.4) 34 rack-test (>= 0.6.3) 35 rails-dom-testing (~> 2.0) 36 rails-html-sanitizer (~> 1.0, >= 1.2.0) 37 - actionview (7.0.5.1) 38 - activesupport (= 7.0.5.1) 39 builder (~> 3.1) 40 erubi (~> 1.4) 41 rails-dom-testing (~> 2.0) 42 rails-html-sanitizer (~> 1.1, >= 1.2.0) 43 - actionview_precompiler (0.2.3) 44 actionview (>= 6.0.a) 45 active_model_serializers (0.8.4) 46 activemodel (>= 3.0) 47 - activejob (7.0.5.1) 48 - activesupport (= 7.0.5.1) 49 globalid (>= 0.3.6) 50 - activemodel (7.0.5.1) 51 - activesupport (= 7.0.5.1) 52 - activerecord (7.0.5.1) 53 - activemodel (= 7.0.5.1) 54 - activesupport (= 7.0.5.1) 55 - activesupport (7.0.5.1) 56 concurrent-ruby (~> 1.0, >= 1.0.2) 57 i18n (>= 1.6, < 2) 58 minitest (>= 5.1) 59 tzinfo (~> 2.0) 60 - addressable (2.8.4) 61 public_suffix (>= 2.0.2, < 6.0) 62 annotate (3.2.0) 63 activerecord (>= 3.2, < 8.0) ··· 82 aws-sigv4 (~> 1.1) 83 aws-sigv4 (1.5.0) 84 aws-eventstream (~> 1, >= 1.0.2) 85 better_errors (2.10.1) 86 erubi (>= 1.0.0) 87 rack (>= 0.9.0) ··· 109 cgi (0.3.6) 110 chunky_png (1.4.0) 111 coderay (1.1.3) 112 - colored2 (3.1.2) 113 concurrent-ruby (1.2.2) 114 connection_pool (2.4.1) 115 cose (1.3.0) ··· 119 crack (0.4.5) 120 rexml 121 crass (1.0.6) 122 - css_parser (1.14.0) 123 addressable 124 dartsass-ruby (3.0.1) 125 sass-embedded (~> 1.54) ··· 144 docile (1.4.0) 145 email_reply_trimmer (0.1.13) 146 erubi (1.12.0) 147 - excon (0.100.0) 148 - execjs (2.8.1) 149 exifr (1.4.0) 150 fabrication (2.30.0) 151 faker (2.23.0) ··· 163 ffi (1.15.5) 164 fspath (3.1.2) 165 gc_tracer (1.5.1) 166 - globalid (1.1.0) 167 - activesupport (>= 5.0) 168 - google-protobuf (3.23.4) 169 guess_html_encoding (0.0.11) 170 hana (1.3.7) 171 hashdiff (1.0.1) ··· 188 json (2.6.3) 189 json-schema (3.0.0) 190 addressable (>= 2.8) 191 - json_schemer (1.0.3) 192 hana (~> 1.3) 193 regexp_parser (~> 2.0) 194 simpleidn (~> 0.2) ··· 222 matrix (0.4.2) 223 maxminddb (0.1.22) 224 memory_profiler (1.0.1) 225 - message_bus (4.3.7) 226 rack (>= 1.1.3) 227 method_source (1.0.0) 228 - mini_mime (1.1.2) 229 mini_portile2 (2.8.4) 230 mini_racer (0.8.0) 231 libv8-node (~> 18.16.0.0) 232 mini_scheduler (0.16.0) 233 sidekiq (>= 4.2.3, < 7.0) 234 - mini_sql (1.4.0) 235 mini_suffix (0.3.3) 236 ffi (~> 1.9) 237 - minitest (5.19.0) 238 mocha (2.1.0) 239 ruby2_keywords (>= 0.0.5) 240 msgpack (1.7.2) ··· 253 net-smtp (0.3.3) 254 net-protocol 255 nio4r (2.5.9) 256 - nokogiri (1.15.3) 257 mini_portile2 (~> 2.8.2) 258 racc (~> 1.4) 259 oauth (1.1.0) ··· 268 multi_json (~> 1.3) 269 multi_xml (~> 0.5) 270 rack (>= 1.2, < 4) 271 - oj (3.15.1) 272 omniauth (1.9.2) 273 hashie (>= 3.4.6) 274 rack (>= 1.6.2, < 3) ··· 296 openssl (> 2.0) 297 optimist (3.1.0) 298 parallel (1.23.0) 299 - parallel_tests (4.2.1) 300 parallel 301 parser (3.2.2.3) 302 ast (~> 2.4.1) ··· 313 pry-rails (0.3.9) 314 pry (>= 0.10.4) 315 public_suffix (5.0.3) 316 - puma (6.3.0) 317 nio4r (~> 2.0) 318 racc (1.7.1) 319 rack (2.2.8) 320 - rack-mini-profiler (3.1.0) 321 rack (>= 1.2.0) 322 - rack-protection (3.0.6) 323 - rack 324 rack-test (2.1.0) 325 rack (>= 1.3) 326 - rails-dom-testing (2.1.1) 327 activesupport (>= 5.0.0) 328 minitest 329 nokogiri (>= 1.6) ··· 337 rails_multisite (5.0.0) 338 activerecord (>= 6.0) 339 railties (>= 6.0) 340 - railties (7.0.5.1) 341 - actionpack (= 7.0.5.1) 342 - activesupport (= 7.0.5.1) 343 method_source 344 rake (>= 12.2) 345 thor (~> 1.0) ··· 363 rack (>= 1.4) 364 rexml (3.2.6) 365 rinku (2.0.6) 366 - rotp (6.2.2) 367 rouge (4.1.3) 368 rqrcode (2.2.0) 369 chunky_png (~> 1.0) ··· 393 rspec-mocks (~> 3.12) 394 rspec-support (~> 3.12) 395 rspec-support (3.12.1) 396 - rss (0.2.9) 397 rexml 398 rswag-specs (2.10.1) 399 activesupport (>= 3.1, < 7.1) ··· 402 rspec-core (>= 2.14) 403 rtlcss (0.2.1) 404 mini_racer (>= 0.6.3) 405 - rubocop (1.55.1) 406 json (~> 2.3) 407 language_server-protocol (>= 3.17.0) 408 parallel (~> 1.10) ··· 422 rubocop-rspec (>= 2.0.0) 423 rubocop-factory_bot (2.23.1) 424 rubocop (~> 1.33) 425 - rubocop-rspec (2.23.0) 426 rubocop (~> 1.33) 427 rubocop-capybara (~> 2.17) 428 rubocop-factory_bot (~> 2.22) ··· 436 sanitize (6.0.2) 437 crass (~> 1.0.2) 438 nokogiri (>= 1.12.0) 439 - sass-embedded (1.64.1) 440 google-protobuf (~> 3.23) 441 rake (>= 13.0.0) 442 - selenium-webdriver (4.10.0) 443 rexml (~> 3.2, >= 3.2.5) 444 rubyzip (>= 1.2.2, < 3.0) 445 websocket (~> 1.0) ··· 462 actionpack (>= 5.2) 463 activesupport (>= 5.2) 464 sprockets (>= 3.0.0) 465 - sshkey (2.0.0) 466 stackprof (0.2.25) 467 syntax_tree (6.1.1) 468 prettier_print (>= 1.2.0) ··· 491 hkdf (~> 1.0) 492 jwt (~> 2.0) 493 openssl (~> 3.0) 494 - webdrivers (5.3.1) 495 - nokogiri (~> 1.6) 496 - rubyzip (>= 1.3.0) 497 - selenium-webdriver (~> 4.0, < 4.11) 498 - webmock (3.18.1) 499 addressable (>= 2.8.0) 500 crack (>= 0.3.2) 501 hashdiff (>= 0.4.0, < 2.0.0) ··· 504 nokogiri (~> 1.8) 505 yaml-lint (0.1.2) 506 yard (0.9.34) 507 - zeitwerk (2.6.10) 508 509 PLATFORMS 510 ruby 511 512 DEPENDENCIES 513 - actionmailer (= 7.0.5.1) 514 - actionpack (= 7.0.5.1) 515 - actionview (= 7.0.5.1) 516 actionview_precompiler 517 active_model_serializers (~> 0.8.3) 518 - activemodel (= 7.0.5.1) 519 - activerecord (= 7.0.5.1) 520 - activesupport (= 7.0.5.1) 521 addressable 522 annotate 523 aws-sdk-s3 ··· 577 mini_scheduler 578 mini_sql 579 mini_suffix 580 minitest 581 mocha 582 multi_json ··· 604 rails-dom-testing 605 rails_failover 606 rails_multisite 607 - railties (= 7.0.5.1) 608 rake 609 rb-fsevent 610 rbtrace ··· 625 ruby-readability 626 rubyzip 627 sanitize 628 - selenium-webdriver 629 shoulda-matchers! 630 sidekiq 631 simplecov ··· 642 unf 643 unicorn 644 web-push 645 - webdrivers 646 webmock 647 yaml-lint 648 yard 649 650 BUNDLED WITH 651 - 2.4.13
··· 9 10 GIT 11 remote: https://github.com/thoughtbot/shoulda-matchers.git 12 + revision: 68f76ce13e9892339f90c4928339dfd769cfa613 13 specs: 14 shoulda-matchers (5.3.0) 15 activesupport (>= 5.2.0) ··· 17 GEM 18 remote: https://rubygems.org/ 19 specs: 20 + actionmailer (7.0.7) 21 + actionpack (= 7.0.7) 22 + actionview (= 7.0.7) 23 + activejob (= 7.0.7) 24 + activesupport (= 7.0.7) 25 mail (~> 2.5, >= 2.5.4) 26 net-imap 27 net-pop 28 net-smtp 29 rails-dom-testing (~> 2.0) 30 + actionpack (7.0.7) 31 + actionview (= 7.0.7) 32 + activesupport (= 7.0.7) 33 rack (~> 2.0, >= 2.2.4) 34 rack-test (>= 0.6.3) 35 rails-dom-testing (~> 2.0) 36 rails-html-sanitizer (~> 1.0, >= 1.2.0) 37 + actionview (7.0.7) 38 + activesupport (= 7.0.7) 39 builder (~> 3.1) 40 erubi (~> 1.4) 41 rails-dom-testing (~> 2.0) 42 rails-html-sanitizer (~> 1.1, >= 1.2.0) 43 + actionview_precompiler (0.3.0) 44 actionview (>= 6.0.a) 45 active_model_serializers (0.8.4) 46 activemodel (>= 3.0) 47 + activejob (7.0.7) 48 + activesupport (= 7.0.7) 49 globalid (>= 0.3.6) 50 + activemodel (7.0.7) 51 + activesupport (= 7.0.7) 52 + activerecord (7.0.7) 53 + activemodel (= 7.0.7) 54 + activesupport (= 7.0.7) 55 + activesupport (7.0.7) 56 concurrent-ruby (~> 1.0, >= 1.0.2) 57 i18n (>= 1.6, < 2) 58 minitest (>= 5.1) 59 tzinfo (~> 2.0) 60 + addressable (2.8.5) 61 public_suffix (>= 2.0.2, < 6.0) 62 annotate (3.2.0) 63 activerecord (>= 3.2, < 8.0) ··· 82 aws-sigv4 (~> 1.1) 83 aws-sigv4 (1.5.0) 84 aws-eventstream (~> 1, >= 1.0.2) 85 + base64 (0.1.1) 86 better_errors (2.10.1) 87 erubi (>= 1.0.0) 88 rack (>= 0.9.0) ··· 110 cgi (0.3.6) 111 chunky_png (1.4.0) 112 coderay (1.1.3) 113 + colored2 (4.0.0) 114 concurrent-ruby (1.2.2) 115 connection_pool (2.4.1) 116 cose (1.3.0) ··· 120 crack (0.4.5) 121 rexml 122 crass (1.0.6) 123 + css_parser (1.16.0) 124 addressable 125 dartsass-ruby (3.0.1) 126 sass-embedded (~> 1.54) ··· 145 docile (1.4.0) 146 email_reply_trimmer (0.1.13) 147 erubi (1.12.0) 148 + excon (0.102.0) 149 + execjs (2.9.0) 150 exifr (1.4.0) 151 fabrication (2.30.0) 152 faker (2.23.0) ··· 164 ffi (1.15.5) 165 fspath (3.1.2) 166 gc_tracer (1.5.1) 167 + globalid (1.2.1) 168 + activesupport (>= 6.1) 169 + google-protobuf (3.24.3) 170 guess_html_encoding (0.0.11) 171 hana (1.3.7) 172 hashdiff (1.0.1) ··· 189 json (2.6.3) 190 json-schema (3.0.0) 191 addressable (>= 2.8) 192 + json_schemer (2.0.0) 193 hana (~> 1.3) 194 regexp_parser (~> 2.0) 195 simpleidn (~> 0.2) ··· 223 matrix (0.4.2) 224 maxminddb (0.1.22) 225 memory_profiler (1.0.1) 226 + message_bus (4.3.8) 227 rack (>= 1.1.3) 228 method_source (1.0.0) 229 + mini_mime (1.1.5) 230 mini_portile2 (2.8.4) 231 mini_racer (0.8.0) 232 libv8-node (~> 18.16.0.0) 233 mini_scheduler (0.16.0) 234 sidekiq (>= 4.2.3, < 7.0) 235 + mini_sql (1.5.0) 236 mini_suffix (0.3.3) 237 ffi (~> 1.9) 238 + minio_runner (0.1.1) 239 + minitest (5.20.0) 240 mocha (2.1.0) 241 ruby2_keywords (>= 0.0.5) 242 msgpack (1.7.2) ··· 255 net-smtp (0.3.3) 256 net-protocol 257 nio4r (2.5.9) 258 + nokogiri (1.15.4) 259 mini_portile2 (~> 2.8.2) 260 racc (~> 1.4) 261 oauth (1.1.0) ··· 270 multi_json (~> 1.3) 271 multi_xml (~> 0.5) 272 rack (>= 1.2, < 4) 273 + oj (3.16.1) 274 omniauth (1.9.2) 275 hashie (>= 3.4.6) 276 rack (>= 1.6.2, < 3) ··· 298 openssl (> 2.0) 299 optimist (3.1.0) 300 parallel (1.23.0) 301 + parallel_tests (4.2.2) 302 parallel 303 parser (3.2.2.3) 304 ast (~> 2.4.1) ··· 315 pry-rails (0.3.9) 316 pry (>= 0.10.4) 317 public_suffix (5.0.3) 318 + puma (6.3.1) 319 nio4r (~> 2.0) 320 racc (1.7.1) 321 rack (2.2.8) 322 + rack-mini-profiler (3.1.1) 323 rack (>= 1.2.0) 324 + rack-protection (3.1.0) 325 + rack (~> 2.2, >= 2.2.4) 326 rack-test (2.1.0) 327 rack (>= 1.3) 328 + rails-dom-testing (2.2.0) 329 activesupport (>= 5.0.0) 330 minitest 331 nokogiri (>= 1.6) ··· 339 rails_multisite (5.0.0) 340 activerecord (>= 6.0) 341 railties (>= 6.0) 342 + railties (7.0.7) 343 + actionpack (= 7.0.7) 344 + activesupport (= 7.0.7) 345 method_source 346 rake (>= 12.2) 347 thor (~> 1.0) ··· 365 rack (>= 1.4) 366 rexml (3.2.6) 367 rinku (2.0.6) 368 + rotp (6.3.0) 369 rouge (4.1.3) 370 rqrcode (2.2.0) 371 chunky_png (~> 1.0) ··· 395 rspec-mocks (~> 3.12) 396 rspec-support (~> 3.12) 397 rspec-support (3.12.1) 398 + rss (0.3.0) 399 rexml 400 rswag-specs (2.10.1) 401 activesupport (>= 3.1, < 7.1) ··· 404 rspec-core (>= 2.14) 405 rtlcss (0.2.1) 406 mini_racer (>= 0.6.3) 407 + rubocop (1.56.3) 408 + base64 (~> 0.1.1) 409 json (~> 2.3) 410 language_server-protocol (>= 3.17.0) 411 parallel (~> 1.10) ··· 425 rubocop-rspec (>= 2.0.0) 426 rubocop-factory_bot (2.23.1) 427 rubocop (~> 1.33) 428 + rubocop-rspec (2.23.2) 429 rubocop (~> 1.33) 430 rubocop-capybara (~> 2.17) 431 rubocop-factory_bot (~> 2.22) ··· 439 sanitize (6.0.2) 440 crass (~> 1.0.2) 441 nokogiri (>= 1.12.0) 442 + sass-embedded (1.66.1) 443 google-protobuf (~> 3.23) 444 rake (>= 13.0.0) 445 + selenium-webdriver (4.12.0) 446 rexml (~> 3.2, >= 3.2.5) 447 rubyzip (>= 1.2.2, < 3.0) 448 websocket (~> 1.0) ··· 465 actionpack (>= 5.2) 466 activesupport (>= 5.2) 467 sprockets (>= 3.0.0) 468 + sshkey (3.0.0) 469 stackprof (0.2.25) 470 syntax_tree (6.1.1) 471 prettier_print (>= 1.2.0) ··· 494 hkdf (~> 1.0) 495 jwt (~> 2.0) 496 openssl (~> 3.0) 497 + webmock (3.19.1) 498 addressable (>= 2.8.0) 499 crack (>= 0.3.2) 500 hashdiff (>= 0.4.0, < 2.0.0) ··· 503 nokogiri (~> 1.8) 504 yaml-lint (0.1.2) 505 yard (0.9.34) 506 + zeitwerk (2.6.11) 507 508 PLATFORMS 509 ruby 510 511 DEPENDENCIES 512 + actionmailer (= 7.0.7) 513 + actionpack (= 7.0.7) 514 + actionview (= 7.0.7) 515 actionview_precompiler 516 active_model_serializers (~> 0.8.3) 517 + activemodel (= 7.0.7) 518 + activerecord (= 7.0.7) 519 + activesupport (= 7.0.7) 520 addressable 521 annotate 522 aws-sdk-s3 ··· 576 mini_scheduler 577 mini_sql 578 mini_suffix 579 + minio_runner 580 minitest 581 mocha 582 multi_json ··· 604 rails-dom-testing 605 rails_failover 606 rails_multisite 607 + railties (= 7.0.7) 608 rake 609 rb-fsevent 610 rbtrace ··· 625 ruby-readability 626 rubyzip 627 sanitize 628 + selenium-webdriver (~> 4.11) 629 shoulda-matchers! 630 sidekiq 631 simplecov ··· 642 unf 643 unicorn 644 web-push 645 webmock 646 yaml-lint 647 yard 648 649 BUNDLED WITH 650 + 2.4.17
+98 -89
pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix
··· 5 platforms = []; 6 source = { 7 remotes = ["https://rubygems.org"]; 8 - sha256 = "1pz26qpdx1xncpy5h8k4afw0npnh6wn580yvwv2cf857zrzvr1pm"; 9 type = "gem"; 10 }; 11 - version = "7.0.5.1"; 12 }; 13 actionpack = { 14 dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; ··· 16 platforms = []; 17 source = { 18 remotes = ["https://rubygems.org"]; 19 - sha256 = "003y7cdxwzdqx8hgw02kf1b5mp8qr8syx07f35sk3ghhqxp39ksy"; 20 type = "gem"; 21 }; 22 - version = "7.0.5.1"; 23 }; 24 actionview = { 25 dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; ··· 27 platforms = []; 28 source = { 29 remotes = ["https://rubygems.org"]; 30 - sha256 = "11ihpqcvz3f38ka85zdjkdcvgdbcan81dbr0y9bi784jn1v5ggwa"; 31 type = "gem"; 32 }; 33 - version = "7.0.5.1"; 34 }; 35 actionview_precompiler = { 36 dependencies = ["actionview"]; ··· 38 platforms = []; 39 source = { 40 remotes = ["https://rubygems.org"]; 41 - sha256 = "07dx8vkwig8han4zccs0chahcf9ibd4abzx9n56qah8zak5cyrhd"; 42 type = "gem"; 43 }; 44 - version = "0.2.3"; 45 }; 46 active_model_serializers = { 47 dependencies = ["activemodel"]; ··· 60 platforms = []; 61 source = { 62 remotes = ["https://rubygems.org"]; 63 - sha256 = "11wkxf16zdb9gsnc94x4hyj89wjks06gnk4fbl7gp5vkbl744n83"; 64 type = "gem"; 65 }; 66 - version = "7.0.5.1"; 67 }; 68 activemodel = { 69 dependencies = ["activesupport"]; ··· 71 platforms = []; 72 source = { 73 remotes = ["https://rubygems.org"]; 74 - sha256 = "12f89hxs4s26ggsg4bnz9qxlcsclcgx9gdsl8dni5jc0gk47h14y"; 75 type = "gem"; 76 }; 77 - version = "7.0.5.1"; 78 }; 79 activerecord = { 80 dependencies = ["activemodel" "activesupport"]; ··· 82 platforms = []; 83 source = { 84 remotes = ["https://rubygems.org"]; 85 - sha256 = "1sfdq2slmsc0ygncl36dq1lmjww1y3b42izrnn62cyisiag28796"; 86 type = "gem"; 87 }; 88 - version = "7.0.5.1"; 89 }; 90 activesupport = { 91 dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; ··· 93 platforms = []; 94 source = { 95 remotes = ["https://rubygems.org"]; 96 - sha256 = "0m1sa6djlm9cz6mz3lcbqqahvm6qj75dmq3phpn2ysyxnlz2hr0c"; 97 type = "gem"; 98 }; 99 - version = "7.0.5.1"; 100 }; 101 addressable = { 102 dependencies = ["public_suffix"]; ··· 104 platforms = []; 105 source = { 106 remotes = ["https://rubygems.org"]; 107 - sha256 = "15s8van7r2ad3dq6i03l3z4hqnvxcq75a3h72kxvf9an53sqma20"; 108 type = "gem"; 109 }; 110 - version = "2.8.4"; 111 }; 112 annotate = { 113 dependencies = ["activerecord" "rake"]; ··· 204 type = "gem"; 205 }; 206 version = "1.5.0"; 207 }; 208 better_errors = { 209 dependencies = ["erubi" "rack" "rouge"]; ··· 351 platforms = []; 352 source = { 353 remotes = ["https://rubygems.org"]; 354 - sha256 = "0jlbqa9q4mvrm73aw9mxh23ygzbjiqwisl32d8szfb5fxvbjng5i"; 355 type = "gem"; 356 }; 357 - version = "3.1.2"; 358 }; 359 concurrent-ruby = { 360 groups = ["default" "development" "test"]; ··· 424 platforms = []; 425 source = { 426 remotes = ["https://rubygems.org"]; 427 - sha256 = "04q1vin8slr3k8mp76qz0wqgap6f9kdsbryvgfq9fljhrm463kpj"; 428 type = "gem"; 429 }; 430 - version = "1.14.0"; 431 }; 432 dartsass-ruby = { 433 dependencies = ["sass-embedded"]; ··· 572 platforms = []; 573 source = { 574 remotes = ["https://rubygems.org"]; 575 - sha256 = "08r6qgbpkxxsihjmlspk3l1sr69q5hx35p1l4wp7rmkbzys89867"; 576 type = "gem"; 577 }; 578 - version = "0.100.0"; 579 }; 580 execjs = { 581 groups = ["assets" "default"]; 582 platforms = []; 583 source = { 584 remotes = ["https://rubygems.org"]; 585 - sha256 = "121h6af4i6wr3wxvv84y53jcyw2sk71j5wsncm6wq6yqrwcrk4vd"; 586 type = "gem"; 587 }; 588 - version = "2.8.1"; 589 }; 590 exifr = { 591 groups = ["default"]; ··· 746 platforms = []; 747 source = { 748 remotes = ["https://rubygems.org"]; 749 - sha256 = "0kqm5ndzaybpnpxqiqkc41k4ksyxl41ln8qqr6kb130cdxsf2dxk"; 750 type = "gem"; 751 }; 752 - version = "1.1.0"; 753 }; 754 google-protobuf = { 755 groups = ["default"]; 756 platforms = []; 757 source = { 758 remotes = ["https://rubygems.org"]; 759 - sha256 = "1dq5lgkxhagqr8zjrwr10zi8rldbg2vhis2m5q86v5q9415ylfgj"; 760 type = "gem"; 761 }; 762 - version = "3.23.4"; 763 }; 764 guess_html_encoding = { 765 groups = ["default"]; ··· 920 platforms = []; 921 source = { 922 remotes = ["https://rubygems.org"]; 923 - sha256 = "1mbf7v8bzmxyk413y16drnww68bgyzknlqmaqvj785iakja7in7x"; 924 type = "gem"; 925 }; 926 - version = "1.0.3"; 927 }; 928 jwt = { 929 groups = ["default"]; ··· 1122 platforms = []; 1123 source = { 1124 remotes = ["https://rubygems.org"]; 1125 - sha256 = "1ppqgch8xxccpmccdx37lb00112ayqjb80zz5m3w3298vdzb1kn4"; 1126 type = "gem"; 1127 }; 1128 - version = "4.3.7"; 1129 }; 1130 method_source = { 1131 groups = ["default" "development" "test"]; ··· 1138 version = "1.0.0"; 1139 }; 1140 mini_mime = { 1141 - groups = ["default"]; 1142 platforms = []; 1143 source = { 1144 remotes = ["https://rubygems.org"]; 1145 - sha256 = "0lbim375gw2dk6383qirz13hgdmxlan0vc5da2l072j3qw6fqjm5"; 1146 type = "gem"; 1147 }; 1148 - version = "1.1.2"; 1149 }; 1150 mini_portile2 = { 1151 groups = ["default" "development" "test"]; ··· 1184 platforms = []; 1185 source = { 1186 remotes = ["https://rubygems.org"]; 1187 - sha256 = "1dgwyyya821sfj4f92sljsxmmnak2yrzsbckvy82001zgq1n3b41"; 1188 type = "gem"; 1189 }; 1190 - version = "1.4.0"; 1191 }; 1192 mini_suffix = { 1193 dependencies = ["ffi"]; ··· 1200 }; 1201 version = "0.3.3"; 1202 }; 1203 minitest = { 1204 groups = ["default" "development" "test"]; 1205 platforms = []; 1206 source = { 1207 remotes = ["https://rubygems.org"]; 1208 - sha256 = "0jnpsbb2dbcs95p4is4431l2pw1l5pn7dfg3vkgb4ga464j0c5l6"; 1209 type = "gem"; 1210 }; 1211 - version = "5.19.0"; 1212 }; 1213 mocha = { 1214 dependencies = ["ruby2_keywords"]; ··· 1336 platforms = []; 1337 source = { 1338 remotes = ["https://rubygems.org"]; 1339 - sha256 = "1jw8a20a9k05fpz3q24im19b97idss3179z76yn5scc5b8lk2rl7"; 1340 type = "gem"; 1341 }; 1342 - version = "1.15.3"; 1343 }; 1344 oauth = { 1345 dependencies = ["oauth-tty" "snaky_hash" "version_gem"]; ··· 1379 platforms = []; 1380 source = { 1381 remotes = ["https://rubygems.org"]; 1382 - sha256 = "1vzcrsv6w5k90l75gy83dlfkv2z9pvnr82mz1nhnijmcg3rgqaz8"; 1383 type = "gem"; 1384 }; 1385 - version = "3.15.1"; 1386 }; 1387 omniauth = { 1388 dependencies = ["hashie" "rack"]; ··· 1512 platforms = []; 1513 source = { 1514 remotes = ["https://rubygems.org"]; 1515 - sha256 = "04y02j0kyhfww41dnnjawn2gpp24smq0x21dvaa5z6pnq0fvmahv"; 1516 type = "gem"; 1517 }; 1518 - version = "4.2.1"; 1519 }; 1520 parser = { 1521 dependencies = ["ast" "racc"]; ··· 1607 platforms = []; 1608 source = { 1609 remotes = ["https://rubygems.org"]; 1610 - sha256 = "1v7fmv0n4bhdcwh60dgza44iqai5pg34f5pzm4vh4i5fwx7mpqxh"; 1611 type = "gem"; 1612 }; 1613 - version = "6.3.0"; 1614 }; 1615 racc = { 1616 groups = ["default" "development" "test"]; ··· 1642 platforms = []; 1643 source = { 1644 remotes = ["https://rubygems.org"]; 1645 - sha256 = "13dhpp1iljhqp9c8akmp6gjhx47qf83w12ns4bif26ldkignpam1"; 1646 type = "gem"; 1647 }; 1648 - version = "3.1.0"; 1649 }; 1650 rack-protection = { 1651 dependencies = ["rack"]; ··· 1653 platforms = []; 1654 source = { 1655 remotes = ["https://rubygems.org"]; 1656 - sha256 = "1kpm67az1wxlg76h620in2r7agfyhv177ps268j5ggsanzddzih8"; 1657 type = "gem"; 1658 }; 1659 - version = "3.0.6"; 1660 }; 1661 rack-test = { 1662 dependencies = ["rack"]; ··· 1675 platforms = []; 1676 source = { 1677 remotes = ["https://rubygems.org"]; 1678 - sha256 = "17g05y7q7934z0ib4aph8h71c2qwjmlakkm7nb2ab45q0aqkfgjd"; 1679 type = "gem"; 1680 }; 1681 - version = "2.1.1"; 1682 }; 1683 rails-html-sanitizer = { 1684 dependencies = ["loofah" "nokogiri"]; ··· 1719 platforms = []; 1720 source = { 1721 remotes = ["https://rubygems.org"]; 1722 - sha256 = "1z4lqqbd4i5izsg97mx5yf3gj7y5d07wgvad0jzjghjg12pf142i"; 1723 type = "gem"; 1724 }; 1725 - version = "7.0.5.1"; 1726 }; 1727 rainbow = { 1728 groups = ["default" "development" "test"]; ··· 1873 platforms = []; 1874 source = { 1875 remotes = ["https://rubygems.org"]; 1876 - sha256 = "10mmzc85y7andsich586ndykw678qn1ns2wpjxrg0sc0gr4w3pig"; 1877 type = "gem"; 1878 }; 1879 - version = "6.2.2"; 1880 }; 1881 rouge = { 1882 groups = ["default" "development"]; ··· 1995 platforms = []; 1996 source = { 1997 remotes = ["https://rubygems.org"]; 1998 - sha256 = "1b1zx07kr64kkpm4lssd4r1a1qyr829ppmfl85i4adcvx9mqfid0"; 1999 type = "gem"; 2000 }; 2001 - version = "0.2.9"; 2002 }; 2003 rswag-specs = { 2004 dependencies = ["activesupport" "json-schema" "railties" "rspec-core"]; ··· 2023 version = "0.2.1"; 2024 }; 2025 rubocop = { 2026 - dependencies = ["json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"]; 2027 groups = ["default" "development" "test"]; 2028 platforms = []; 2029 source = { 2030 remotes = ["https://rubygems.org"]; 2031 - sha256 = "0s9p5qaqq68h5s3ys8xlk9swccma7arjif1w58987n6gicrsprrm"; 2032 type = "gem"; 2033 }; 2034 - version = "1.55.1"; 2035 }; 2036 rubocop-ast = { 2037 dependencies = ["parser"]; ··· 2083 platforms = []; 2084 source = { 2085 remotes = ["https://rubygems.org"]; 2086 - sha256 = "0l364y00bw1zcs3grdxcxpn48vfrjds2khsiaxjqq3r9grvbprfy"; 2087 type = "gem"; 2088 }; 2089 - version = "2.23.0"; 2090 }; 2091 ruby-prof = { 2092 groups = ["development"]; ··· 2160 platforms = []; 2161 source = { 2162 remotes = ["https://rubygems.org"]; 2163 - sha256 = "15k44qn8vk8ap8khkmpsiw40pywm9pkx4a5yhm8vfi2rgqci9k90"; 2164 type = "gem"; 2165 }; 2166 - version = "1.64.1"; 2167 }; 2168 selenium-webdriver = { 2169 dependencies = ["rexml" "rubyzip" "websocket"]; ··· 2171 platforms = []; 2172 source = { 2173 remotes = ["https://rubygems.org"]; 2174 - sha256 = "0hwxxvx6j95ln82pjmrgyzg6qmf511dkcp5q79n6m5m8z4way8m3"; 2175 type = "gem"; 2176 }; 2177 - version = "4.10.0"; 2178 }; 2179 shoulda-matchers = { 2180 dependencies = ["activesupport"]; ··· 2182 platforms = []; 2183 source = { 2184 fetchSubmodules = false; 2185 - rev = "783a90554053002017510285bc736099b2749c22"; 2186 - sha256 = "10rw7ksi462fxamap6kimdy7hpdgx8477r6zs1kgrbakx24dm3wx"; 2187 type = "git"; 2188 url = "https://github.com/thoughtbot/shoulda-matchers.git"; 2189 }; ··· 2282 platforms = []; 2283 source = { 2284 remotes = ["https://rubygems.org"]; 2285 - sha256 = "03bkn55qsng484iqwz2lmm6rkimj01vsvhwk661s3lnmpkl65lbp"; 2286 type = "gem"; 2287 }; 2288 - version = "2.0.0"; 2289 }; 2290 stackprof = { 2291 groups = ["default"]; ··· 2484 }; 2485 version = "3.0.0"; 2486 }; 2487 - webdrivers = { 2488 - dependencies = ["nokogiri" "rubyzip" "selenium-webdriver"]; 2489 - groups = ["test"]; 2490 - platforms = []; 2491 - source = { 2492 - remotes = ["https://rubygems.org"]; 2493 - sha256 = "19aaxhawzv7315rh285gd1fg6m6wbrn3w3kilyibci1wphgm7mfp"; 2494 - type = "gem"; 2495 - }; 2496 - version = "5.3.1"; 2497 - }; 2498 webmock = { 2499 dependencies = ["addressable" "crack" "hashdiff"]; 2500 groups = ["test"]; 2501 platforms = []; 2502 source = { 2503 remotes = ["https://rubygems.org"]; 2504 - sha256 = "1myj44wvbbqvv18ragv3ihl0h61acgnfwrnj3lccdgp49bgmbjal"; 2505 type = "gem"; 2506 }; 2507 - version = "3.18.1"; 2508 }; 2509 websocket = { 2510 groups = ["default" "test"]; ··· 2552 platforms = []; 2553 source = { 2554 remotes = ["https://rubygems.org"]; 2555 - sha256 = "06vf6y5ai20ry3b1h9cl7vsdj6i5valq172zdxpnfhj5zvlp104j"; 2556 type = "gem"; 2557 }; 2558 - version = "2.6.10"; 2559 }; 2560 }
··· 5 platforms = []; 6 source = { 7 remotes = ["https://rubygems.org"]; 8 + sha256 = "15ni57icsw1ilz5srlasff4h31h2ckgmxbdd8jnbniscvz4x2sd0"; 9 type = "gem"; 10 }; 11 + version = "7.0.7"; 12 }; 13 actionpack = { 14 dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; ··· 16 platforms = []; 17 source = { 18 remotes = ["https://rubygems.org"]; 19 + sha256 = "150sjsk12vzj9aswjy3cz124l8n8sn52bhd0wwly73rwc1a750sg"; 20 type = "gem"; 21 }; 22 + version = "7.0.7"; 23 }; 24 actionview = { 25 dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; ··· 27 platforms = []; 28 source = { 29 remotes = ["https://rubygems.org"]; 30 + sha256 = "1nn21k5psxdv2fkwxs679lr0b8n1nzli2ks343cx4azn6snp8b8a"; 31 type = "gem"; 32 }; 33 + version = "7.0.7"; 34 }; 35 actionview_precompiler = { 36 dependencies = ["actionview"]; ··· 38 platforms = []; 39 source = { 40 remotes = ["https://rubygems.org"]; 41 + sha256 = "07jyr2h87ha6k2y965rs4ywq142ddkfkhbmp0r44xg4wnffr8jbl"; 42 type = "gem"; 43 }; 44 + version = "0.3.0"; 45 }; 46 active_model_serializers = { 47 dependencies = ["activemodel"]; ··· 60 platforms = []; 61 source = { 62 remotes = ["https://rubygems.org"]; 63 + sha256 = "0s5r5z9jm57jjabh8w2823rpjd1agn8z2rlqgyyn4s9pbbhgalzy"; 64 type = "gem"; 65 }; 66 + version = "7.0.7"; 67 }; 68 activemodel = { 69 dependencies = ["activesupport"]; ··· 71 platforms = []; 72 source = { 73 remotes = ["https://rubygems.org"]; 74 + sha256 = "1rspbw4yxx9fh2wyl2wvgwadwapfyx7j9zlirpd4pmk31wkhl4hf"; 75 type = "gem"; 76 }; 77 + version = "7.0.7"; 78 }; 79 activerecord = { 80 dependencies = ["activemodel" "activesupport"]; ··· 82 platforms = []; 83 source = { 84 remotes = ["https://rubygems.org"]; 85 + sha256 = "1ygg145wxlgm12b1x5r0rsk2aa6i2wjz7bgb21j8vmyqyfl272cy"; 86 type = "gem"; 87 }; 88 + version = "7.0.7"; 89 }; 90 activesupport = { 91 dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; ··· 93 platforms = []; 94 source = { 95 remotes = ["https://rubygems.org"]; 96 + sha256 = "1wzbnv3hns0yiwbgh1m3q5j0d7b0k52nlpwirhxyv3l0ycmljfr9"; 97 type = "gem"; 98 }; 99 + version = "7.0.7"; 100 }; 101 addressable = { 102 dependencies = ["public_suffix"]; ··· 104 platforms = []; 105 source = { 106 remotes = ["https://rubygems.org"]; 107 + sha256 = "05r1fwy487klqkya7vzia8hnklcxy4vr92m9dmni3prfwk6zpw33"; 108 type = "gem"; 109 }; 110 + version = "2.8.5"; 111 }; 112 annotate = { 113 dependencies = ["activerecord" "rake"]; ··· 204 type = "gem"; 205 }; 206 version = "1.5.0"; 207 + }; 208 + base64 = { 209 + groups = ["default" "development" "test"]; 210 + platforms = []; 211 + source = { 212 + remotes = ["https://rubygems.org"]; 213 + sha256 = "0cydk9p2cv25qysm0sn2pb97fcpz1isa7n3c8xm1gd99li8x6x8c"; 214 + type = "gem"; 215 + }; 216 + version = "0.1.1"; 217 }; 218 better_errors = { 219 dependencies = ["erubi" "rack" "rouge"]; ··· 361 platforms = []; 362 source = { 363 remotes = ["https://rubygems.org"]; 364 + sha256 = "1zj06gjqwykgzxmbkp2hmg3wv5kv8zz5d77acxipzcgicdjgvfan"; 365 type = "gem"; 366 }; 367 + version = "4.0.0"; 368 }; 369 concurrent-ruby = { 370 groups = ["default" "development" "test"]; ··· 434 platforms = []; 435 source = { 436 remotes = ["https://rubygems.org"]; 437 + sha256 = "18mii41bbl106rn940ah8v3xclj4yrxxa0bwlwp546244n9b83zp"; 438 type = "gem"; 439 }; 440 + version = "1.16.0"; 441 }; 442 dartsass-ruby = { 443 dependencies = ["sass-embedded"]; ··· 582 platforms = []; 583 source = { 584 remotes = ["https://rubygems.org"]; 585 + sha256 = "0mbkyyadz9vw7mzixi9dks6i6iw033yn2hzwfvnfdvgqq6ywqs4g"; 586 type = "gem"; 587 }; 588 + version = "0.102.0"; 589 }; 590 execjs = { 591 groups = ["assets" "default"]; 592 platforms = []; 593 source = { 594 remotes = ["https://rubygems.org"]; 595 + sha256 = "1a4dhqclx0n4dc5riiff1nkwfinaf5an1dxjywmlwa9wm57r9q9p"; 596 type = "gem"; 597 }; 598 + version = "2.9.0"; 599 }; 600 exifr = { 601 groups = ["default"]; ··· 756 platforms = []; 757 source = { 758 remotes = ["https://rubygems.org"]; 759 + sha256 = "1sbw6b66r7cwdx3jhs46s4lr991969hvigkjpbdl7y3i31qpdgvh"; 760 type = "gem"; 761 }; 762 + version = "1.2.1"; 763 }; 764 google-protobuf = { 765 groups = ["default"]; 766 platforms = []; 767 source = { 768 remotes = ["https://rubygems.org"]; 769 + sha256 = "0pcl4x4cw3snl5xzs99lm82m9xkfs8vm1a8dfrc34pwb77mwrwv3"; 770 type = "gem"; 771 }; 772 + version = "3.24.3"; 773 }; 774 guess_html_encoding = { 775 groups = ["default"]; ··· 930 platforms = []; 931 source = { 932 remotes = ["https://rubygems.org"]; 933 + sha256 = "0spgxaxvsl3qvyj9qb95gd5hvy2pnp98hbgp8nfw6s69yyw0xmgj"; 934 type = "gem"; 935 }; 936 + version = "2.0.0"; 937 }; 938 jwt = { 939 groups = ["default"]; ··· 1132 platforms = []; 1133 source = { 1134 remotes = ["https://rubygems.org"]; 1135 + sha256 = "15xqp7pnicjh2868fsc6fmxw8cw32bpiaqpc5bz8cwdib09ns3qk"; 1136 type = "gem"; 1137 }; 1138 + version = "4.3.8"; 1139 }; 1140 method_source = { 1141 groups = ["default" "development" "test"]; ··· 1148 version = "1.0.0"; 1149 }; 1150 mini_mime = { 1151 + groups = ["default" "test"]; 1152 platforms = []; 1153 source = { 1154 remotes = ["https://rubygems.org"]; 1155 + sha256 = "1vycif7pjzkr29mfk4dlqv3disc5dn0va04lkwajlpr1wkibg0c6"; 1156 type = "gem"; 1157 }; 1158 + version = "1.1.5"; 1159 }; 1160 mini_portile2 = { 1161 groups = ["default" "development" "test"]; ··· 1194 platforms = []; 1195 source = { 1196 remotes = ["https://rubygems.org"]; 1197 + sha256 = "0yrxjmwhfnvcwbj9vscyq0z67sq09zl8qhmzgakq2ywy4yvcpwgg"; 1198 type = "gem"; 1199 }; 1200 + version = "1.5.0"; 1201 }; 1202 mini_suffix = { 1203 dependencies = ["ffi"]; ··· 1210 }; 1211 version = "0.3.3"; 1212 }; 1213 + minio_runner = { 1214 + groups = ["test"]; 1215 + platforms = []; 1216 + source = { 1217 + remotes = ["https://rubygems.org"]; 1218 + sha256 = "11rwvbqichq5jipgbr5x6s609485ga7vxc32r3h9vx342gs6nrzy"; 1219 + type = "gem"; 1220 + }; 1221 + version = "0.1.1"; 1222 + }; 1223 minitest = { 1224 groups = ["default" "development" "test"]; 1225 platforms = []; 1226 source = { 1227 remotes = ["https://rubygems.org"]; 1228 + sha256 = "0bkmfi9mb49m0fkdhl2g38i3xxa02d411gg0m8x0gvbwfmmg5ym3"; 1229 type = "gem"; 1230 }; 1231 + version = "5.20.0"; 1232 }; 1233 mocha = { 1234 dependencies = ["ruby2_keywords"]; ··· 1356 platforms = []; 1357 source = { 1358 remotes = ["https://rubygems.org"]; 1359 + sha256 = "0k9w2z0953mnjrsji74cshqqp08q7m1r6zhadw1w0g34xzjh3a74"; 1360 type = "gem"; 1361 }; 1362 + version = "1.15.4"; 1363 }; 1364 oauth = { 1365 dependencies = ["oauth-tty" "snaky_hash" "version_gem"]; ··· 1399 platforms = []; 1400 source = { 1401 remotes = ["https://rubygems.org"]; 1402 + sha256 = "0m4vsd6i093kmyz9gckvzpnws997laldaiaf86hg5lza1ir82x7n"; 1403 type = "gem"; 1404 }; 1405 + version = "3.16.1"; 1406 }; 1407 omniauth = { 1408 dependencies = ["hashie" "rack"]; ··· 1532 platforms = []; 1533 source = { 1534 remotes = ["https://rubygems.org"]; 1535 + sha256 = "1pa50my9sgh4wh9jah1qxjd33wsp1ahv29vj2q1biz434p67vh5p"; 1536 type = "gem"; 1537 }; 1538 + version = "4.2.2"; 1539 }; 1540 parser = { 1541 dependencies = ["ast" "racc"]; ··· 1627 platforms = []; 1628 source = { 1629 remotes = ["https://rubygems.org"]; 1630 + sha256 = "1x4dwx2shx0p7lsms97r85r7ji7zv57bjy3i1kmcpxc8bxvrr67c"; 1631 type = "gem"; 1632 }; 1633 + version = "6.3.1"; 1634 }; 1635 racc = { 1636 groups = ["default" "development" "test"]; ··· 1662 platforms = []; 1663 source = { 1664 remotes = ["https://rubygems.org"]; 1665 + sha256 = "18vj7q740f7ffj677i258abryj97w0a6g3d5859y0lgypm5big1v"; 1666 type = "gem"; 1667 }; 1668 + version = "3.1.1"; 1669 }; 1670 rack-protection = { 1671 dependencies = ["rack"]; ··· 1673 platforms = []; 1674 source = { 1675 remotes = ["https://rubygems.org"]; 1676 + sha256 = "0xsz78hccgza144n37bfisdkzpr2c8m0xl6rnlzgxdbsm1zrkg7r"; 1677 type = "gem"; 1678 }; 1679 + version = "3.1.0"; 1680 }; 1681 rack-test = { 1682 dependencies = ["rack"]; ··· 1695 platforms = []; 1696 source = { 1697 remotes = ["https://rubygems.org"]; 1698 + sha256 = "0fx9dx1ag0s1lr6lfr34lbx5i1bvn3bhyf3w3mx6h7yz90p725g5"; 1699 type = "gem"; 1700 }; 1701 + version = "2.2.0"; 1702 }; 1703 rails-html-sanitizer = { 1704 dependencies = ["loofah" "nokogiri"]; ··· 1739 platforms = []; 1740 source = { 1741 remotes = ["https://rubygems.org"]; 1742 + sha256 = "0in2b84qqmfnigx0li9bgi6l4knmgbj3a29fzm1zzb5jnv4r1gbr"; 1743 type = "gem"; 1744 }; 1745 + version = "7.0.7"; 1746 }; 1747 rainbow = { 1748 groups = ["default" "development" "test"]; ··· 1893 platforms = []; 1894 source = { 1895 remotes = ["https://rubygems.org"]; 1896 + sha256 = "0m48hv6wpmmm6cjr6q92q78h1i610riml19k5h1dil2yws3h1m3m"; 1897 type = "gem"; 1898 }; 1899 + version = "6.3.0"; 1900 }; 1901 rouge = { 1902 groups = ["default" "development"]; ··· 2015 platforms = []; 2016 source = { 2017 remotes = ["https://rubygems.org"]; 2018 + sha256 = "1wv27axi39hhr0nmaffdl5bdjqiafcvp9xhfgnsgfczsblja50sn"; 2019 type = "gem"; 2020 }; 2021 + version = "0.3.0"; 2022 }; 2023 rswag-specs = { 2024 dependencies = ["activesupport" "json-schema" "railties" "rspec-core"]; ··· 2043 version = "0.2.1"; 2044 }; 2045 rubocop = { 2046 + dependencies = ["base64" "json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"]; 2047 groups = ["default" "development" "test"]; 2048 platforms = []; 2049 source = { 2050 remotes = ["https://rubygems.org"]; 2051 + sha256 = "1i3571gchdj3c28znr5kisj0fkppy57208g9j1kv23rhk3p5q5p2"; 2052 type = "gem"; 2053 }; 2054 + version = "1.56.3"; 2055 }; 2056 rubocop-ast = { 2057 dependencies = ["parser"]; ··· 2103 platforms = []; 2104 source = { 2105 remotes = ["https://rubygems.org"]; 2106 + sha256 = "0ylwy4afnxhbrvlaf8an9nrizj78axnzggiyfcp8v531cv8six5f"; 2107 type = "gem"; 2108 }; 2109 + version = "2.23.2"; 2110 }; 2111 ruby-prof = { 2112 groups = ["development"]; ··· 2180 platforms = []; 2181 source = { 2182 remotes = ["https://rubygems.org"]; 2183 + sha256 = "038fzkbq5sw9lf947akhpsvdm14q6jfzl2yn87s8958h42sn0xjy"; 2184 type = "gem"; 2185 }; 2186 + version = "1.66.1"; 2187 }; 2188 selenium-webdriver = { 2189 dependencies = ["rexml" "rubyzip" "websocket"]; ··· 2191 platforms = []; 2192 source = { 2193 remotes = ["https://rubygems.org"]; 2194 + sha256 = "0jwll13m7bqph4lgl75m7vwd175k657znwa7qn9qkf5dcxdjkcjs"; 2195 type = "gem"; 2196 }; 2197 + version = "4.12.0"; 2198 }; 2199 shoulda-matchers = { 2200 dependencies = ["activesupport"]; ··· 2202 platforms = []; 2203 source = { 2204 fetchSubmodules = false; 2205 + rev = "68f76ce13e9892339f90c4928339dfd769cfa613"; 2206 + sha256 = "08kbcdfplmbdhgq0x6lk2lpwrlgijrfq6vhl5hkmxg9v9gpgbbrj"; 2207 type = "git"; 2208 url = "https://github.com/thoughtbot/shoulda-matchers.git"; 2209 }; ··· 2302 platforms = []; 2303 source = { 2304 remotes = ["https://rubygems.org"]; 2305 + sha256 = "1k8i5pzjhcnyf0bhcyn5iixpfp4pz0556rcxwpglh6p0sr8s6nv5"; 2306 type = "gem"; 2307 }; 2308 + version = "3.0.0"; 2309 }; 2310 stackprof = { 2311 groups = ["default"]; ··· 2504 }; 2505 version = "3.0.0"; 2506 }; 2507 webmock = { 2508 dependencies = ["addressable" "crack" "hashdiff"]; 2509 groups = ["test"]; 2510 platforms = []; 2511 source = { 2512 remotes = ["https://rubygems.org"]; 2513 + sha256 = "0vfispr7wd2p1fs9ckn1qnby1yyp4i1dl7qz8n482iw977iyxrza"; 2514 type = "gem"; 2515 }; 2516 + version = "3.19.1"; 2517 }; 2518 websocket = { 2519 groups = ["default" "test"]; ··· 2561 platforms = []; 2562 source = { 2563 remotes = ["https://rubygems.org"]; 2564 + sha256 = "1mwdd445w63khz13hpv17m2br5xngyjl3jdj08xizjbm78i2zrxd"; 2565 type = "gem"; 2566 }; 2567 + version = "2.6.11"; 2568 }; 2569 }
+2 -2
pkgs/servers/web-apps/snipe-it/default.nix
··· 36 37 in package.override rec { 38 pname = "snipe-it"; 39 - version = "6.2.0"; 40 41 src = fetchFromGitHub { 42 owner = "snipe"; 43 repo = pname; 44 rev = "v${version}"; 45 - sha256 = "0s8w98jd81cg3rr2h6i63qm72idxdbhgliz2bdka91cqq0zh6d88"; 46 }; 47 48 passthru.tests = nixosTests.snipe-it;
··· 36 37 in package.override rec { 38 pname = "snipe-it"; 39 + version = "6.2.1"; 40 41 src = fetchFromGitHub { 42 owner = "snipe"; 43 repo = pname; 44 rev = "v${version}"; 45 + sha256 = "0kx5j9a2fbj9zy0i9r01z3lsbqlf488kn5b42fjs47nfzk1yznvx"; 46 }; 47 48 passthru.tests = nixosTests.snipe-it;
+3 -3
pkgs/servers/zigbee2mqtt/default.nix
··· 8 9 buildNpmPackage rec { 10 pname = "zigbee2mqtt"; 11 - version = "1.33.0"; 12 13 src = fetchFromGitHub { 14 owner = "Koenkk"; 15 repo = "zigbee2mqtt"; 16 rev = version; 17 - hash = "sha256-DdRcDSvgFf+NSDpWT4MnAOLNJ5sfqvJqKBhfPwTHd/g="; 18 }; 19 20 - npmDepsHash = "sha256-ov1ftDqJtxLCu3xgtGcg+Q2OMkOsHrwk1SNNfdlUieY="; 21 22 nativeBuildInputs = [ 23 python3
··· 8 9 buildNpmPackage rec { 10 pname = "zigbee2mqtt"; 11 + version = "1.33.1"; 12 13 src = fetchFromGitHub { 14 owner = "Koenkk"; 15 repo = "zigbee2mqtt"; 16 rev = version; 17 + hash = "sha256-Rd8PJWKPUriVf3BmHFvhmb+SQskVeqOFdJB8Gsopgnw="; 18 }; 19 20 + npmDepsHash = "sha256-rEqbwdeIQg6YS7uLeoP2uMbJWsnovIHBVp9CPlTc2NY="; 21 22 nativeBuildInputs = [ 23 python3
+2 -2
pkgs/tools/misc/tgpt/default.nix
··· 5 6 buildGoModule rec { 7 pname = "tgpt"; 8 - version = "1.9.0"; 9 10 src = fetchFromGitHub { 11 owner = "aandrew-me"; 12 repo = "tgpt"; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-kmQvKqrELCL6UdyV8yrwrnjlSYLYIx/SBTKVsqcLng4="; 15 }; 16 17 vendorHash = "sha256-2I5JJWxM6aZx0eZu7taUTL11Y/5HIrXYC5aezrTbbsM=";
··· 5 6 buildGoModule rec { 7 pname = "tgpt"; 8 + version = "1.10.0"; 9 10 src = fetchFromGitHub { 11 owner = "aandrew-me"; 12 repo = "tgpt"; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-AnGll0BjvR7xUWGn25M4nz4PIJAscl6Sh0pTn1102h8="; 15 }; 16 17 vendorHash = "sha256-2I5JJWxM6aZx0eZu7taUTL11Y/5HIrXYC5aezrTbbsM=";
+2 -2
pkgs/tools/system/nvitop/default.nix
··· 5 6 python3Packages.buildPythonApplication rec { 7 pname = "nvitop"; 8 - version = "1.3.0"; 9 10 src = fetchFromGitHub { 11 owner = "XuehaiPan"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-nHJ2m5Q0IWl0nx13iGBkHsHj2YdPS+33kLUBsjbpyuM="; 15 }; 16 17 pythonRelaxDeps = [ "nvidia-ml-py" ];
··· 5 6 python3Packages.buildPythonApplication rec { 7 pname = "nvitop"; 8 + version = "1.3.1"; 9 10 src = fetchFromGitHub { 11 owner = "XuehaiPan"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-DPdKdIqFUozTt5Go3+c7oSv9tZSio486QeSlSfIrBZ4="; 15 }; 16 17 pythonRelaxDeps = [ "nvidia-ml-py" ];
+2 -3
pkgs/top-level/gnuradio-packages.nix
··· 20 boost 21 volk 22 logLib 23 ; 24 inherit mkDerivationWith mkDerivation; 25 } // lib.optionalAttrs (gnuradio.hasFeature "gr-uhd") { 26 inherit (gnuradio) uhd; 27 }); ··· 30 inherit callPackage mkDerivation mkDerivationWith; 31 32 ### Packages 33 - 34 - inherit gnuradio; 35 - inherit (gnuradio) python; 36 37 osmosdr = callPackage ../development/gnuradio-modules/osmosdr/default.nix { }; 38
··· 20 boost 21 volk 22 logLib 23 + python 24 ; 25 inherit mkDerivationWith mkDerivation; 26 + inherit gnuradio; 27 } // lib.optionalAttrs (gnuradio.hasFeature "gr-uhd") { 28 inherit (gnuradio) uhd; 29 }); ··· 32 inherit callPackage mkDerivation mkDerivationWith; 33 34 ### Packages 35 36 osmosdr = callPackage ../development/gnuradio-modules/osmosdr/default.nix { }; 37