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 1 { lib, stdenv 2 2 , fetchFromGitHub 3 - , fetchpatch 4 3 , cmake 5 4 , nixosTests 6 5 , alsa-lib ··· 14 13 15 14 stdenv.mkDerivation rec { 16 15 pname = "ft2-clone"; 17 - version = "1.69"; 16 + version = "1.71"; 18 17 19 18 src = fetchFromGitHub { 20 19 owner = "8bitbubsy"; 21 20 repo = "ft2-clone"; 22 21 rev = "v${version}"; 23 - sha256 = "sha256-tm0yTh46UKnsjH9hv3cMW0YL2x3OTRL+14x4c7w124U="; 22 + hash = "sha256-c2gFq+TgTMI+Eld0z8hryLew3XkrQ7XAfq2s+zdEkBQ="; 24 23 }; 25 24 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 25 nativeBuildInputs = [ cmake ]; 42 26 buildInputs = [ SDL2 ] 43 27 ++ lib.optional stdenv.isLinux alsa-lib ··· 63 47 platforms = platforms.littleEndian; 64 48 }; 65 49 } 66 -
+3 -3
pkgs/applications/blockchains/ledger-live-desktop/default.nix
··· 2 2 3 3 let 4 4 pname = "ledger-live-desktop"; 5 - version = "2.66.0"; 5 + version = "2.69.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://download.live.ledger.com/${pname}-${version}-linux-x86_64.AppImage"; 9 - hash = "sha256-Du2bvtlNjxtkJ31RCKZmGtWxOEIjohbmEC5o3VvFGlY="; 9 + hash = "sha256-9eELWlOzUd3xwAoob5XCj16JihOt6SHZe0Ybxb9dtQI="; 10 10 }; 11 - 12 11 13 12 appimageContents = appimageTools.extractType2 { 14 13 inherit pname version src; ··· 23 22 install -m 444 -D ${appimageContents}/ledger-live-desktop.png $out/share/icons/hicolor/1024x1024/apps/ledger-live-desktop.png 24 23 ${imagemagick}/bin/convert ${appimageContents}/ledger-live-desktop.png -resize 512x512 ledger-live-desktop_512.png 25 24 install -m 444 -D ledger-live-desktop_512.png $out/share/icons/hicolor/512x512/apps/ledger-live-desktop.png 25 + 26 26 substituteInPlace $out/share/applications/ledger-live-desktop.desktop \ 27 27 --replace 'Exec=AppRun' 'Exec=${pname}' 28 28 '';
+2 -2
pkgs/applications/blockchains/stellar-core/default.nix
··· 15 15 16 16 stdenv.mkDerivation (finalAttrs: { 17 17 pname = "stellar-core"; 18 - version = "19.13.0"; 18 + version = "19.14.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "stellar"; 22 22 repo = "stellar-core"; 23 23 rev = "v${finalAttrs.version}"; 24 - hash = "sha256-C775tL+x1IX4kfCM/7gOg/V8xunq/rkhIfdkwkhLENk="; 24 + hash = "sha256-lxBn/T01Tsa7tid3mRJUigUwv9d3BAPZhV9Mp1lywBU="; 25 25 fetchSubmodules = true; 26 26 }; 27 27
+2 -2
pkgs/applications/graphics/ImageMagick/default.nix
··· 48 48 49 49 stdenv.mkDerivation (finalAttrs: { 50 50 pname = "imagemagick"; 51 - version = "7.1.1-18"; 51 + version = "7.1.1-19"; 52 52 53 53 src = fetchFromGitHub { 54 54 owner = "ImageMagick"; 55 55 repo = "ImageMagick"; 56 56 rev = finalAttrs.version; 57 - hash = "sha256-DnmX4dxpOqDGHOFSnq7ms2fLGdB1nKdZbpd0Q9t+X6A="; 57 + hash = "sha256-SxvaodAjSlOvmGPnD0AcXHrE5dTX2eX1sDM/441rP64="; 58 58 }; 59 59 60 60 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
+19 -4
pkgs/applications/misc/syncthingtray/default.nix
··· 17 17 , plasma-framework 18 18 , qttools 19 19 , iconv 20 + , cppunit 21 + , syncthing 20 22 , webviewSupport ? true 21 23 , jsSupport ? true 22 24 , kioPluginSupport ? stdenv.isLinux ··· 31 33 }: 32 34 33 35 stdenv.mkDerivation (finalAttrs: { 34 - version = "1.4.6"; 36 + version = "1.4.7"; 35 37 pname = "syncthingtray"; 36 38 37 39 src = fetchFromGitHub { 38 40 owner = "Martchus"; 39 41 repo = "syncthingtray"; 40 42 rev = "v${finalAttrs.version}"; 41 - sha256 = "sha256-/HAqO0eVFt4YLGeTbZSZcH2pOojvykukAGTBHZTfKLQ="; 43 + sha256 = "sha256-ddOyAyvFifsdNMbwcMZTyhA+5pvz6/Eu/VoBmdsHi54="; 42 44 }; 43 45 44 46 buildInputs = [ ··· 58 60 wrapQtAppsHook 59 61 cmake 60 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 61 68 ] 62 69 ++ lib.optionals plasmoidSupport [ extra-cmake-modules ] 63 70 ; 64 71 65 - # No tests are available by upstream, but we test --help anyway 66 - # Don't test on Darwin because output is .app 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 67 79 doInstallCheck = !stdenv.isDarwin; 68 80 installCheckPhase = '' 69 81 $out/bin/syncthingtray --help | grep ${finalAttrs.version} 70 82 ''; 71 83 72 84 cmakeFlags = [ 85 + "-DBUILD_TESTING=ON" 86 + # See https://github.com/Martchus/syncthingtray/issues/208 87 + "-DEXCLUDE_TESTS_FROM_ALL=OFF" 73 88 "-DAUTOSTART_EXEC_PATH=${autostartExecPath}" 74 89 # See https://github.com/Martchus/syncthingtray/issues/42 75 90 "-DQT_PLUGIN_DIR:STRING=${placeholder "out"}/${qtbase.qtPluginPrefix}"
+2 -1
pkgs/applications/networking/browsers/firefox/wrapper.nix
··· 85 85 ++ lib.optional jackSupport libjack2 86 86 ++ lib.optional smartcardSupport opensc 87 87 ++ lib.optional (cfg.speechSynthesisSupport or false) speechd 88 - ++ pkcs11Modules; 88 + ++ pkcs11Modules 89 + ++ gtk_modules; 89 90 gtk_modules = [ libcanberra-gtk3 ]; 90 91 91 92 launcherName = "${applicationName}${nameSuffix}";
+28 -22
pkgs/applications/radio/gnuradio/3.8.nix
··· 40 40 # If one wishes to use a different src or name for a very custom build 41 41 , overrideSrc ? {} 42 42 , pname ? "gnuradio" 43 - , versionAttr ? { 44 - major = "3.8"; 45 - minor = "5"; 46 - patch = "0"; 47 - } 43 + , version ? "3.8.5.0" 48 44 }: 49 45 50 46 let ··· 204 200 gr-zeromq = { 205 201 runtime = [ cppzmq ]; 206 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 + ]; 207 208 }; 208 209 }; 209 210 shared = (import ./shared.nix { ··· 214 215 removeReferencesTo 215 216 featuresInfo 216 217 features 217 - versionAttr 218 + version 218 219 sourceSha256 219 220 overrideSrc 220 221 fetchFromGitHub ··· 222 223 qt = qt5; 223 224 gtk = gtk3; 224 225 }); 225 - inherit (shared) hasFeature; # function 226 + inherit (shared.passthru) hasFeature; # function 226 227 in 227 228 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 - ; 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 + ''; 242 248 patches = [ 243 249 # Not accepted upstream, see https://github.com/gnuradio/gnuradio/pull/5227 244 250 ./modtool-newmod-permissions.3_8.patch ··· 291 297 ${removeReferencesTo}/bin/remove-references-to -t ${python} $out/lib/cmake/gnuradio/GnuradioConfig.cmake 292 298 '' 293 299 ; 294 - } 300 + }))
+21 -23
pkgs/applications/radio/gnuradio/3.9.nix
··· 42 42 # If one wishes to use a different src or name for a very custom build 43 43 , overrideSrc ? {} 44 44 , pname ? "gnuradio" 45 - , versionAttr ? { 46 - major = "3.9"; 47 - minor = "8"; 48 - patch = "0"; 49 - } 45 + , version ? "3.9.8.0" 50 46 }: 51 47 52 48 let ··· 231 227 gr-zeromq = { 232 228 runtime = [ cppzmq ]; 233 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 + ]; 234 235 }; 235 236 gr-network = { 236 237 cmakeEnableFlag = "GR_NETWORK"; ··· 250 251 removeReferencesTo 251 252 featuresInfo 252 253 features 253 - versionAttr 254 + version 254 255 sourceSha256 255 256 overrideSrc 256 257 fetchFromGitHub ··· 258 259 qt = qt5; 259 260 gtk = gtk3; 260 261 }); 261 - inherit (shared) hasFeature; # function 262 + inherit (shared.passthru) hasFeature; # function 262 263 in 263 264 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 - ; 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 + ''; 279 277 patches = [ 280 278 # Not accepted upstream, see https://github.com/gnuradio/gnuradio/pull/5227 281 279 ./modtool-newmod-permissions.patch ··· 303 301 ${removeReferencesTo}/bin/remove-references-to -t ${python.pkgs.pybind11} $out/lib/cmake/gnuradio/gnuradio-runtimeTargets.cmake 304 302 '' 305 303 ; 306 - } 304 + }))
+14 -23
pkgs/applications/radio/gnuradio/default.nix
··· 45 45 # If one wishes to use a different src or name for a very custom build 46 46 , overrideSrc ? {} 47 47 , pname ? "gnuradio" 48 - , versionAttr ? { 49 - major = "3.10"; 50 - minor = "7"; 51 - patch = "0"; 52 - } 48 + , version ? "3.10.7.0" 53 49 }: 54 50 55 51 let ··· 252 248 gr-zeromq = { 253 249 runtime = [ cppzmq ]; 254 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 + ]; 255 256 }; 256 257 gr-network = { 257 258 cmakeEnableFlag = "GR_NETWORK"; ··· 271 272 removeReferencesTo 272 273 featuresInfo 273 274 features 274 - versionAttr 275 + version 275 276 sourceSha256 276 277 overrideSrc 277 278 fetchFromGitHub ··· 279 280 qt = qt5; 280 281 gtk = gtk3; 281 282 }); 282 - inherit (shared) hasFeature; # function 283 + inherit (shared.passthru) hasFeature; # function 283 284 in 284 285 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 - ; 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; 300 291 patches = [ 301 292 # Not accepted upstream, see https://github.com/gnuradio/gnuradio/pull/5227 302 293 ./modtool-newmod-permissions.patch ··· 332 323 ${removeReferencesTo}/bin/remove-references-to -t ${python.pkgs.pybind11} $out/lib/cmake/gnuradio/gnuradio-runtimeTargets.cmake 333 324 '' 334 325 ; 335 - } 326 + }))
+23 -15
pkgs/applications/radio/gnuradio/shared.nix
··· 5 5 , removeReferencesTo 6 6 , featuresInfo 7 7 , features 8 - , versionAttr 8 + , version 9 9 , sourceSha256 10 10 # If overridden. No need to set default values, as they are given defaults in 11 11 # the main expressions ··· 13 13 , fetchFromGitHub 14 14 }: 15 15 16 - rec { 17 - version = builtins.concatStringsSep "." ( 18 - lib.attrVals [ "major" "minor" "patch" ] versionAttr 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 19 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 { 20 31 src = if overrideSrc != {} then 21 32 overrideSrc 22 33 else ··· 27 38 sha256 = sourceSha256; 28 39 } 29 40 ; 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 41 nativeBuildInputs = lib.flatten (lib.mapAttrsToList ( 39 42 feat: info: ( 40 43 lib.optionals (hasFeature feat) ( ··· 109 112 # Wrapping is done with an external wrapper 110 113 dontWrapPythonPrograms = true; 111 114 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 + # 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 + ''; 115 123 116 124 meta = with lib; { 117 125 description = "Software Defined Radio (SDR) software";
+3 -3
pkgs/applications/version-management/jujutsu/default.nix
··· 20 20 21 21 rustPlatform.buildRustPackage rec { 22 22 pname = "jujutsu"; 23 - version = "0.9.0"; 23 + version = "0.10.0"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "martinvonz"; 27 27 repo = "jj"; 28 28 rev = "v${version}"; 29 - sha256 = "sha256-5RN2xaH591/83iNXRcW9i/TyU5ndPZq3P/BesHM9I6w="; 29 + hash = "sha256-LJW4Px3K5cz6RJ4sUbwUXsp2+rzEW5wowi+DALHajYA="; 30 30 }; 31 31 32 - cargoHash = "sha256-G4W3GeTWTuIZO1PupuZ0hACwhNoNBQhULyT9f6qVckg="; 32 + cargoHash = "sha256-fs1cWhBFp2u3HiEx/mMnbwvgwKo97KmftA/sr4dGsiM="; 33 33 34 34 buildNoDefaultFeatures = true; 35 35 buildFeatures = [
+1
pkgs/build-support/fetchgit/nix-prefetch-git
··· 417 417 tmpHomePath="$(mktemp -d "${TMPDIR:-/tmp}/nix-prefetch-git-tmp-home-XXXXXXXXXX")" 418 418 exit_handlers+=(remove_tmpHomePath) 419 419 HOME="$tmpHomePath" 420 + ln -s /build/.netrc "$HOME/" 420 421 unset XDG_CONFIG_HOME 421 422 export GIT_CONFIG_NOSYSTEM=1 422 423
+1
pkgs/development/compilers/elm/default.nix
··· 247 247 # see upstream issue https://github.com/dillonkearns/elm-pages/issues/305 for dealing with the read-only problem 248 248 preFixup = '' 249 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} 250 251 ''; 251 252 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 1 diff --git a/generator/src/codegen.js b/generator/src/codegen.js 2 - index a0ef8806e..fe00ac904 100644 2 + index baf5368..e5edf4d 100644 3 3 --- a/generator/src/codegen.js 4 4 +++ b/generator/src/codegen.js 5 - @@ -20,33 +20,33 @@ async function generate(basePath) { 5 + @@ -37,9 +37,9 @@ export async function generate(basePath) { 6 + copyToBoth("SiteConfig.elm"), 6 7 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 - ), 8 + fs.promises.writeFile("./.elm-pages/Pages.elm", uiFileContent), 16 9 - fs.promises.copyFile( 17 10 - path.join(__dirname, `./elm-application.json`), 18 11 - `./elm-stuff/elm-pages/elm-application.json` ··· 20 13 + `./elm-stuff/elm-pages/elm-application.json`, 21 14 + fs.readFileSync(path.join(__dirname, `./elm-application.json`)) 22 15 ), 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 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 5 version = "1.0.0"; 6 6 }; 7 7 8 - "elm/json" = { 9 - sha256 = "1a107nmm905dih4w4mjjkkpdcjbgaf5qjvr7fl30kkpkckfjjnrw"; 10 - version = "1.1.2"; 8 + "elm/browser" = { 9 + sha256 = "1zlmx672glg7fdgkvh5jm47y85pv7pdfr5mkhg6x7ar6k000vyka"; 10 + version = "1.0.1"; 11 + }; 12 + 13 + "elm/core" = { 14 + sha256 = "1l0qdbczw91kzz8sx5d5zwz9x662bspy7p21dsr3f2rigxiix2as"; 15 + version = "1.0.2"; 11 16 }; 12 17 13 18 "elm/html" = { ··· 15 20 version = "1.0.0"; 16 21 }; 17 22 18 - "elm/svg" = { 19 - sha256 = "1cwcj73p61q45wqwgqvrvz3aypjyy3fw732xyxdyj6s256hwkn0k"; 20 - version = "1.0.1"; 23 + "elm/http" = { 24 + sha256 = "008bs76mnp48b4dw8qwjj4fyvzbxvlrl4xpa2qh1gg2kfwyw56v1"; 25 + version = "2.0.0"; 26 + }; 27 + 28 + "elm/json" = { 29 + sha256 = "1a107nmm905dih4w4mjjkkpdcjbgaf5qjvr7fl30kkpkckfjjnrw"; 30 + version = "1.1.2"; 21 31 }; 22 32 23 33 "elm/project-metadata-utils" = { ··· 25 35 version = "1.0.0"; 26 36 }; 27 37 28 - "elm/browser" = { 29 - sha256 = "1zlmx672glg7fdgkvh5jm47y85pv7pdfr5mkhg6x7ar6k000vyka"; 38 + "elm/svg" = { 39 + sha256 = "1cwcj73p61q45wqwgqvrvz3aypjyy3fw732xyxdyj6s256hwkn0k"; 30 40 version = "1.0.1"; 31 41 }; 32 42 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 43 "elm/bytes" = { 44 44 sha256 = "040d7irrawcbnq9jxhzx8p9qacdlw5bncy6lgndd6inm53rvvwbp"; 45 45 version = "1.0.7"; ··· 55 55 version = "1.1.0"; 56 56 }; 57 57 58 - "elm/url" = { 59 - sha256 = "0av8x5syid40sgpl5vd7pry2rq0q4pga28b4yykn9gd9v12rs3l4"; 58 + "elm/time" = { 59 + sha256 = "0vch7i86vn0x8b850w1p69vplll1bnbkp8s383z7pinyg94cm2z1"; 60 60 version = "1.0.0"; 61 61 }; 62 62 63 - "elm/time" = { 64 - sha256 = "0vch7i86vn0x8b850w1p69vplll1bnbkp8s383z7pinyg94cm2z1"; 63 + "elm/url" = { 64 + sha256 = "0av8x5syid40sgpl5vd7pry2rq0q4pga28b4yykn9gd9v12rs3l4"; 65 65 version = "1.0.0"; 66 66 }; 67 67
+3 -3
pkgs/development/compilers/elm/packages/elm.nix
··· 1 1 { mkDerivation, ansi-terminal, ansi-wl-pprint, base, binary 2 2 , bytestring, containers, directory, edit-distance, fetchgit 3 3 , file-embed, filelock, filepath, ghc-prim, haskeline, HTTP 4 - , http-client, http-client-tls, http-types, language-glsl, mtl 4 + , http-client, http-client-tls, http-types, language-glsl, lib, mtl 5 5 , network, parsec, process, raw-strings-qq, scientific, SHA 6 - , snap-core, snap-server, lib, template-haskell, time 6 + , snap-core, snap-server, template-haskell, time 7 7 , unordered-containers, utf8-string, vector, zip-archive 8 8 }: 9 - 10 9 mkDerivation { 11 10 pname = "elm"; 12 11 version = "0.19.1"; ··· 29 28 homepage = "https://elm-lang.org"; 30 29 description = "The `elm` command line interface"; 31 30 license = lib.licenses.bsd3; 31 + mainProgram = "elm"; 32 32 }
+2325 -868
pkgs/development/compilers/elm/packages/node-packages.nix
··· 4 4 5 5 let 6 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 + }; 7 16 "@babel/cli-7.12.10" = { 8 17 name = "_at_babel_slash_cli"; 9 18 packageName = "@babel/cli"; ··· 22 31 sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=="; 23 32 }; 24 33 }; 25 - "@babel/code-frame-7.21.4" = { 34 + "@babel/code-frame-7.22.13" = { 26 35 name = "_at_babel_slash_code-frame"; 27 36 packageName = "@babel/code-frame"; 28 - version = "7.21.4"; 37 + version = "7.22.13"; 29 38 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz"; 31 - sha512 = "LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g=="; 39 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz"; 40 + sha512 = "XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w=="; 32 41 }; 33 42 }; 34 - "@babel/compat-data-7.21.7" = { 43 + "@babel/compat-data-7.22.20" = { 35 44 name = "_at_babel_slash_compat-data"; 36 45 packageName = "@babel/compat-data"; 37 - version = "7.21.7"; 46 + version = "7.22.20"; 38 47 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz"; 40 - sha512 = "KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA=="; 48 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz"; 49 + sha512 = "BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw=="; 41 50 }; 42 51 }; 43 52 "@babel/core-7.12.10" = { ··· 49 58 sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 50 59 }; 51 60 }; 52 - "@babel/generator-7.21.5" = { 61 + "@babel/generator-7.23.0" = { 53 62 name = "_at_babel_slash_generator"; 54 63 packageName = "@babel/generator"; 55 - version = "7.21.5"; 64 + version = "7.23.0"; 56 65 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz"; 58 - sha512 = "SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w=="; 66 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz"; 67 + sha512 = "lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g=="; 59 68 }; 60 69 }; 61 - "@babel/helper-annotate-as-pure-7.18.6" = { 70 + "@babel/helper-annotate-as-pure-7.22.5" = { 62 71 name = "_at_babel_slash_helper-annotate-as-pure"; 63 72 packageName = "@babel/helper-annotate-as-pure"; 64 - version = "7.18.6"; 73 + version = "7.22.5"; 65 74 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz"; 67 - sha512 = "duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA=="; 75 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz"; 76 + sha512 = "LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="; 68 77 }; 69 78 }; 70 - "@babel/helper-builder-binary-assignment-operator-visitor-7.21.5" = { 79 + "@babel/helper-builder-binary-assignment-operator-visitor-7.22.15" = { 71 80 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 72 81 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 73 - version = "7.21.5"; 82 + version = "7.22.15"; 74 83 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=="; 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=="; 77 86 }; 78 87 }; 79 - "@babel/helper-compilation-targets-7.21.5" = { 88 + "@babel/helper-compilation-targets-7.22.15" = { 80 89 name = "_at_babel_slash_helper-compilation-targets"; 81 90 packageName = "@babel/helper-compilation-targets"; 82 - version = "7.21.5"; 91 + version = "7.22.15"; 83 92 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz"; 85 - sha512 = "1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w=="; 93 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz"; 94 + sha512 = "y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw=="; 86 95 }; 87 96 }; 88 - "@babel/helper-create-class-features-plugin-7.21.8" = { 97 + "@babel/helper-create-class-features-plugin-7.22.15" = { 89 98 name = "_at_babel_slash_helper-create-class-features-plugin"; 90 99 packageName = "@babel/helper-create-class-features-plugin"; 91 - version = "7.21.8"; 100 + version = "7.22.15"; 92 101 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=="; 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=="; 95 104 }; 96 105 }; 97 - "@babel/helper-create-regexp-features-plugin-7.21.8" = { 106 + "@babel/helper-create-regexp-features-plugin-7.22.15" = { 98 107 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 99 108 packageName = "@babel/helper-create-regexp-features-plugin"; 100 - version = "7.21.8"; 109 + version = "7.22.15"; 101 110 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=="; 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=="; 104 113 }; 105 114 }; 106 - "@babel/helper-environment-visitor-7.21.5" = { 115 + "@babel/helper-environment-visitor-7.22.20" = { 107 116 name = "_at_babel_slash_helper-environment-visitor"; 108 117 packageName = "@babel/helper-environment-visitor"; 109 - version = "7.21.5"; 118 + version = "7.22.20"; 110 119 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz"; 112 - sha512 = "IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ=="; 120 + url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz"; 121 + sha512 = "zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA=="; 113 122 }; 114 123 }; 115 - "@babel/helper-function-name-7.21.0" = { 124 + "@babel/helper-function-name-7.23.0" = { 116 125 name = "_at_babel_slash_helper-function-name"; 117 126 packageName = "@babel/helper-function-name"; 118 - version = "7.21.0"; 127 + version = "7.23.0"; 119 128 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz"; 121 - sha512 = "HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg=="; 129 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz"; 130 + sha512 = "OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw=="; 122 131 }; 123 132 }; 124 - "@babel/helper-hoist-variables-7.18.6" = { 133 + "@babel/helper-hoist-variables-7.22.5" = { 125 134 name = "_at_babel_slash_helper-hoist-variables"; 126 135 packageName = "@babel/helper-hoist-variables"; 127 - version = "7.18.6"; 136 + version = "7.22.5"; 128 137 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=="; 138 + url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz"; 139 + sha512 = "wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="; 131 140 }; 132 141 }; 133 - "@babel/helper-member-expression-to-functions-7.21.5" = { 142 + "@babel/helper-member-expression-to-functions-7.23.0" = { 134 143 name = "_at_babel_slash_helper-member-expression-to-functions"; 135 144 packageName = "@babel/helper-member-expression-to-functions"; 136 - version = "7.21.5"; 145 + version = "7.23.0"; 137 146 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=="; 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=="; 140 149 }; 141 150 }; 142 - "@babel/helper-module-imports-7.21.4" = { 151 + "@babel/helper-module-imports-7.22.15" = { 143 152 name = "_at_babel_slash_helper-module-imports"; 144 153 packageName = "@babel/helper-module-imports"; 145 - version = "7.21.4"; 154 + version = "7.22.15"; 146 155 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=="; 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=="; 149 158 }; 150 159 }; 151 - "@babel/helper-module-transforms-7.21.5" = { 160 + "@babel/helper-module-transforms-7.23.0" = { 152 161 name = "_at_babel_slash_helper-module-transforms"; 153 162 packageName = "@babel/helper-module-transforms"; 154 - version = "7.21.5"; 163 + version = "7.23.0"; 155 164 src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz"; 157 - sha512 = "bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw=="; 165 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz"; 166 + sha512 = "WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw=="; 158 167 }; 159 168 }; 160 - "@babel/helper-optimise-call-expression-7.18.6" = { 169 + "@babel/helper-optimise-call-expression-7.22.5" = { 161 170 name = "_at_babel_slash_helper-optimise-call-expression"; 162 171 packageName = "@babel/helper-optimise-call-expression"; 163 - version = "7.18.6"; 172 + version = "7.22.5"; 164 173 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=="; 174 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz"; 175 + sha512 = "HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="; 167 176 }; 168 177 }; 169 - "@babel/helper-plugin-utils-7.21.5" = { 178 + "@babel/helper-plugin-utils-7.22.5" = { 170 179 name = "_at_babel_slash_helper-plugin-utils"; 171 180 packageName = "@babel/helper-plugin-utils"; 172 - version = "7.21.5"; 181 + version = "7.22.5"; 173 182 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=="; 183 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz"; 184 + sha512 = "uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="; 176 185 }; 177 186 }; 178 - "@babel/helper-remap-async-to-generator-7.18.9" = { 187 + "@babel/helper-remap-async-to-generator-7.22.20" = { 179 188 name = "_at_babel_slash_helper-remap-async-to-generator"; 180 189 packageName = "@babel/helper-remap-async-to-generator"; 181 - version = "7.18.9"; 190 + version = "7.22.20"; 182 191 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=="; 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=="; 185 194 }; 186 195 }; 187 - "@babel/helper-replace-supers-7.21.5" = { 196 + "@babel/helper-replace-supers-7.22.20" = { 188 197 name = "_at_babel_slash_helper-replace-supers"; 189 198 packageName = "@babel/helper-replace-supers"; 190 - version = "7.21.5"; 199 + version = "7.22.20"; 191 200 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.21.5.tgz"; 193 - sha512 = "/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg=="; 201 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz"; 202 + sha512 = "qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw=="; 194 203 }; 195 204 }; 196 - "@babel/helper-simple-access-7.21.5" = { 205 + "@babel/helper-simple-access-7.22.5" = { 197 206 name = "_at_babel_slash_helper-simple-access"; 198 207 packageName = "@babel/helper-simple-access"; 199 - version = "7.21.5"; 208 + version = "7.22.5"; 200 209 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz"; 202 - sha512 = "ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg=="; 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=="; 203 212 }; 204 213 }; 205 - "@babel/helper-skip-transparent-expression-wrappers-7.20.0" = { 214 + "@babel/helper-skip-transparent-expression-wrappers-7.22.5" = { 206 215 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 207 216 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 208 - version = "7.20.0"; 217 + version = "7.22.5"; 209 218 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=="; 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=="; 212 221 }; 213 222 }; 214 - "@babel/helper-split-export-declaration-7.18.6" = { 223 + "@babel/helper-split-export-declaration-7.22.6" = { 215 224 name = "_at_babel_slash_helper-split-export-declaration"; 216 225 packageName = "@babel/helper-split-export-declaration"; 217 - version = "7.18.6"; 226 + version = "7.22.6"; 218 227 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=="; 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=="; 221 230 }; 222 231 }; 223 - "@babel/helper-string-parser-7.21.5" = { 232 + "@babel/helper-string-parser-7.22.5" = { 224 233 name = "_at_babel_slash_helper-string-parser"; 225 234 packageName = "@babel/helper-string-parser"; 226 - version = "7.21.5"; 235 + version = "7.22.5"; 227 236 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=="; 237 + url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz"; 238 + sha512 = "mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="; 230 239 }; 231 240 }; 232 - "@babel/helper-validator-identifier-7.19.1" = { 241 + "@babel/helper-validator-identifier-7.22.20" = { 233 242 name = "_at_babel_slash_helper-validator-identifier"; 234 243 packageName = "@babel/helper-validator-identifier"; 235 - version = "7.19.1"; 244 + version = "7.22.20"; 236 245 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=="; 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=="; 239 248 }; 240 249 }; 241 - "@babel/helper-validator-option-7.21.0" = { 250 + "@babel/helper-validator-option-7.22.15" = { 242 251 name = "_at_babel_slash_helper-validator-option"; 243 252 packageName = "@babel/helper-validator-option"; 244 - version = "7.21.0"; 253 + version = "7.22.15"; 245 254 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=="; 255 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz"; 256 + sha512 = "bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA=="; 248 257 }; 249 258 }; 250 - "@babel/helper-wrap-function-7.20.5" = { 259 + "@babel/helper-wrap-function-7.22.20" = { 251 260 name = "_at_babel_slash_helper-wrap-function"; 252 261 packageName = "@babel/helper-wrap-function"; 253 - version = "7.20.5"; 262 + version = "7.22.20"; 254 263 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz"; 256 - sha512 = "bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q=="; 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=="; 257 266 }; 258 267 }; 259 - "@babel/helpers-7.21.5" = { 268 + "@babel/helpers-7.23.1" = { 260 269 name = "_at_babel_slash_helpers"; 261 270 packageName = "@babel/helpers"; 262 - version = "7.21.5"; 271 + version = "7.23.1"; 263 272 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz"; 265 - sha512 = "BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA=="; 273 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.1.tgz"; 274 + sha512 = "chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA=="; 266 275 }; 267 276 }; 268 - "@babel/highlight-7.18.6" = { 277 + "@babel/highlight-7.22.20" = { 269 278 name = "_at_babel_slash_highlight"; 270 279 packageName = "@babel/highlight"; 271 - version = "7.18.6"; 280 + version = "7.22.20"; 272 281 src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"; 274 - sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 282 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz"; 283 + sha512 = "dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg=="; 275 284 }; 276 285 }; 277 - "@babel/parser-7.21.8" = { 286 + "@babel/parser-7.23.0" = { 278 287 name = "_at_babel_slash_parser"; 279 288 packageName = "@babel/parser"; 280 - version = "7.21.8"; 289 + version = "7.23.0"; 281 290 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz"; 283 - sha512 = "6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA=="; 291 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz"; 292 + sha512 = "vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw=="; 284 293 }; 285 294 }; 286 295 "@babel/plugin-proposal-async-generator-functions-7.20.7" = { ··· 508 517 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 509 518 }; 510 519 }; 511 - "@babel/plugin-transform-arrow-functions-7.21.5" = { 520 + "@babel/plugin-transform-arrow-functions-7.22.5" = { 512 521 name = "_at_babel_slash_plugin-transform-arrow-functions"; 513 522 packageName = "@babel/plugin-transform-arrow-functions"; 514 - version = "7.21.5"; 523 + version = "7.22.5"; 515 524 src = fetchurl { 516 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz"; 517 - sha512 = "wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA=="; 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=="; 518 527 }; 519 528 }; 520 - "@babel/plugin-transform-async-to-generator-7.20.7" = { 529 + "@babel/plugin-transform-async-to-generator-7.22.5" = { 521 530 name = "_at_babel_slash_plugin-transform-async-to-generator"; 522 531 packageName = "@babel/plugin-transform-async-to-generator"; 523 - version = "7.20.7"; 532 + version = "7.22.5"; 524 533 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=="; 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=="; 527 536 }; 528 537 }; 529 - "@babel/plugin-transform-block-scoped-functions-7.18.6" = { 538 + "@babel/plugin-transform-block-scoped-functions-7.22.5" = { 530 539 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 531 540 packageName = "@babel/plugin-transform-block-scoped-functions"; 532 - version = "7.18.6"; 541 + version = "7.22.5"; 533 542 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=="; 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=="; 536 545 }; 537 546 }; 538 - "@babel/plugin-transform-block-scoping-7.21.0" = { 547 + "@babel/plugin-transform-block-scoping-7.23.0" = { 539 548 name = "_at_babel_slash_plugin-transform-block-scoping"; 540 549 packageName = "@babel/plugin-transform-block-scoping"; 541 - version = "7.21.0"; 550 + version = "7.23.0"; 542 551 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=="; 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=="; 545 554 }; 546 555 }; 547 - "@babel/plugin-transform-classes-7.21.0" = { 556 + "@babel/plugin-transform-classes-7.22.15" = { 548 557 name = "_at_babel_slash_plugin-transform-classes"; 549 558 packageName = "@babel/plugin-transform-classes"; 550 - version = "7.21.0"; 559 + version = "7.22.15"; 551 560 src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz"; 553 - sha512 = "RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ=="; 561 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz"; 562 + sha512 = "VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw=="; 554 563 }; 555 564 }; 556 - "@babel/plugin-transform-computed-properties-7.21.5" = { 565 + "@babel/plugin-transform-computed-properties-7.22.5" = { 557 566 name = "_at_babel_slash_plugin-transform-computed-properties"; 558 567 packageName = "@babel/plugin-transform-computed-properties"; 559 - version = "7.21.5"; 568 + version = "7.22.5"; 560 569 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz"; 562 - sha512 = "TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q=="; 570 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz"; 571 + sha512 = "4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg=="; 563 572 }; 564 573 }; 565 - "@babel/plugin-transform-destructuring-7.21.3" = { 574 + "@babel/plugin-transform-destructuring-7.23.0" = { 566 575 name = "_at_babel_slash_plugin-transform-destructuring"; 567 576 packageName = "@babel/plugin-transform-destructuring"; 568 - version = "7.21.3"; 577 + version = "7.23.0"; 569 578 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=="; 579 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz"; 580 + sha512 = "vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg=="; 572 581 }; 573 582 }; 574 - "@babel/plugin-transform-dotall-regex-7.18.6" = { 583 + "@babel/plugin-transform-dotall-regex-7.22.5" = { 575 584 name = "_at_babel_slash_plugin-transform-dotall-regex"; 576 585 packageName = "@babel/plugin-transform-dotall-regex"; 577 - version = "7.18.6"; 586 + version = "7.22.5"; 578 587 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=="; 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=="; 581 590 }; 582 591 }; 583 - "@babel/plugin-transform-duplicate-keys-7.18.9" = { 592 + "@babel/plugin-transform-duplicate-keys-7.22.5" = { 584 593 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 585 594 packageName = "@babel/plugin-transform-duplicate-keys"; 586 - version = "7.18.9"; 595 + version = "7.22.5"; 587 596 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=="; 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=="; 590 599 }; 591 600 }; 592 - "@babel/plugin-transform-exponentiation-operator-7.18.6" = { 601 + "@babel/plugin-transform-exponentiation-operator-7.22.5" = { 593 602 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 594 603 packageName = "@babel/plugin-transform-exponentiation-operator"; 595 - version = "7.18.6"; 604 + version = "7.22.5"; 596 605 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=="; 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=="; 599 608 }; 600 609 }; 601 - "@babel/plugin-transform-for-of-7.21.5" = { 610 + "@babel/plugin-transform-for-of-7.22.15" = { 602 611 name = "_at_babel_slash_plugin-transform-for-of"; 603 612 packageName = "@babel/plugin-transform-for-of"; 604 - version = "7.21.5"; 613 + version = "7.22.15"; 605 614 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=="; 615 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz"; 616 + sha512 = "me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA=="; 608 617 }; 609 618 }; 610 - "@babel/plugin-transform-function-name-7.18.9" = { 619 + "@babel/plugin-transform-function-name-7.22.5" = { 611 620 name = "_at_babel_slash_plugin-transform-function-name"; 612 621 packageName = "@babel/plugin-transform-function-name"; 613 - version = "7.18.9"; 622 + version = "7.22.5"; 614 623 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=="; 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=="; 617 626 }; 618 627 }; 619 - "@babel/plugin-transform-literals-7.18.9" = { 628 + "@babel/plugin-transform-literals-7.22.5" = { 620 629 name = "_at_babel_slash_plugin-transform-literals"; 621 630 packageName = "@babel/plugin-transform-literals"; 622 - version = "7.18.9"; 631 + version = "7.22.5"; 623 632 src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz"; 625 - sha512 = "IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg=="; 633 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz"; 634 + sha512 = "fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g=="; 626 635 }; 627 636 }; 628 - "@babel/plugin-transform-member-expression-literals-7.18.6" = { 637 + "@babel/plugin-transform-member-expression-literals-7.22.5" = { 629 638 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 630 639 packageName = "@babel/plugin-transform-member-expression-literals"; 631 - version = "7.18.6"; 640 + version = "7.22.5"; 632 641 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=="; 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=="; 635 644 }; 636 645 }; 637 - "@babel/plugin-transform-modules-amd-7.20.11" = { 646 + "@babel/plugin-transform-modules-amd-7.23.0" = { 638 647 name = "_at_babel_slash_plugin-transform-modules-amd"; 639 648 packageName = "@babel/plugin-transform-modules-amd"; 640 - version = "7.20.11"; 649 + version = "7.23.0"; 641 650 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=="; 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz"; 652 + sha512 = "xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw=="; 644 653 }; 645 654 }; 646 - "@babel/plugin-transform-modules-commonjs-7.21.5" = { 655 + "@babel/plugin-transform-modules-commonjs-7.23.0" = { 647 656 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 648 657 packageName = "@babel/plugin-transform-modules-commonjs"; 649 - version = "7.21.5"; 658 + version = "7.23.0"; 650 659 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=="; 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=="; 653 662 }; 654 663 }; 655 - "@babel/plugin-transform-modules-systemjs-7.20.11" = { 664 + "@babel/plugin-transform-modules-systemjs-7.23.0" = { 656 665 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 657 666 packageName = "@babel/plugin-transform-modules-systemjs"; 658 - version = "7.20.11"; 667 + version = "7.23.0"; 659 668 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=="; 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=="; 662 671 }; 663 672 }; 664 - "@babel/plugin-transform-modules-umd-7.18.6" = { 673 + "@babel/plugin-transform-modules-umd-7.22.5" = { 665 674 name = "_at_babel_slash_plugin-transform-modules-umd"; 666 675 packageName = "@babel/plugin-transform-modules-umd"; 667 - version = "7.18.6"; 676 + version = "7.22.5"; 668 677 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=="; 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=="; 671 680 }; 672 681 }; 673 - "@babel/plugin-transform-named-capturing-groups-regex-7.20.5" = { 682 + "@babel/plugin-transform-named-capturing-groups-regex-7.22.5" = { 674 683 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 675 684 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 676 - version = "7.20.5"; 685 + version = "7.22.5"; 677 686 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=="; 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=="; 680 689 }; 681 690 }; 682 - "@babel/plugin-transform-new-target-7.18.6" = { 691 + "@babel/plugin-transform-new-target-7.22.5" = { 683 692 name = "_at_babel_slash_plugin-transform-new-target"; 684 693 packageName = "@babel/plugin-transform-new-target"; 685 - version = "7.18.6"; 694 + version = "7.22.5"; 686 695 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=="; 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=="; 689 698 }; 690 699 }; 691 - "@babel/plugin-transform-object-super-7.18.6" = { 700 + "@babel/plugin-transform-object-super-7.22.5" = { 692 701 name = "_at_babel_slash_plugin-transform-object-super"; 693 702 packageName = "@babel/plugin-transform-object-super"; 694 - version = "7.18.6"; 703 + version = "7.22.5"; 695 704 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=="; 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=="; 698 707 }; 699 708 }; 700 - "@babel/plugin-transform-parameters-7.21.3" = { 709 + "@babel/plugin-transform-parameters-7.22.15" = { 701 710 name = "_at_babel_slash_plugin-transform-parameters"; 702 711 packageName = "@babel/plugin-transform-parameters"; 703 - version = "7.21.3"; 712 + version = "7.22.15"; 704 713 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=="; 714 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz"; 715 + sha512 = "hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ=="; 707 716 }; 708 717 }; 709 - "@babel/plugin-transform-property-literals-7.18.6" = { 718 + "@babel/plugin-transform-property-literals-7.22.5" = { 710 719 name = "_at_babel_slash_plugin-transform-property-literals"; 711 720 packageName = "@babel/plugin-transform-property-literals"; 712 - version = "7.18.6"; 721 + version = "7.22.5"; 713 722 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=="; 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=="; 716 725 }; 717 726 }; 718 - "@babel/plugin-transform-regenerator-7.21.5" = { 727 + "@babel/plugin-transform-regenerator-7.22.10" = { 719 728 name = "_at_babel_slash_plugin-transform-regenerator"; 720 729 packageName = "@babel/plugin-transform-regenerator"; 721 - version = "7.21.5"; 730 + version = "7.22.10"; 722 731 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=="; 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz"; 733 + sha512 = "F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw=="; 725 734 }; 726 735 }; 727 - "@babel/plugin-transform-reserved-words-7.18.6" = { 736 + "@babel/plugin-transform-reserved-words-7.22.5" = { 728 737 name = "_at_babel_slash_plugin-transform-reserved-words"; 729 738 packageName = "@babel/plugin-transform-reserved-words"; 730 - version = "7.18.6"; 739 + version = "7.22.5"; 731 740 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=="; 741 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz"; 742 + sha512 = "DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA=="; 734 743 }; 735 744 }; 736 745 "@babel/plugin-transform-runtime-7.12.10" = { ··· 742 751 sha512 = "xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA=="; 743 752 }; 744 753 }; 745 - "@babel/plugin-transform-shorthand-properties-7.18.6" = { 754 + "@babel/plugin-transform-shorthand-properties-7.22.5" = { 746 755 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 747 756 packageName = "@babel/plugin-transform-shorthand-properties"; 748 - version = "7.18.6"; 757 + version = "7.22.5"; 749 758 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=="; 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz"; 760 + sha512 = "vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA=="; 752 761 }; 753 762 }; 754 - "@babel/plugin-transform-spread-7.20.7" = { 763 + "@babel/plugin-transform-spread-7.22.5" = { 755 764 name = "_at_babel_slash_plugin-transform-spread"; 756 765 packageName = "@babel/plugin-transform-spread"; 757 - version = "7.20.7"; 766 + version = "7.22.5"; 758 767 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=="; 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz"; 769 + sha512 = "5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg=="; 761 770 }; 762 771 }; 763 - "@babel/plugin-transform-sticky-regex-7.18.6" = { 772 + "@babel/plugin-transform-sticky-regex-7.22.5" = { 764 773 name = "_at_babel_slash_plugin-transform-sticky-regex"; 765 774 packageName = "@babel/plugin-transform-sticky-regex"; 766 - version = "7.18.6"; 775 + version = "7.22.5"; 767 776 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=="; 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz"; 778 + sha512 = "zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw=="; 770 779 }; 771 780 }; 772 - "@babel/plugin-transform-template-literals-7.18.9" = { 781 + "@babel/plugin-transform-template-literals-7.22.5" = { 773 782 name = "_at_babel_slash_plugin-transform-template-literals"; 774 783 packageName = "@babel/plugin-transform-template-literals"; 775 - version = "7.18.9"; 784 + version = "7.22.5"; 776 785 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz"; 778 - sha512 = "S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA=="; 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz"; 787 + sha512 = "5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA=="; 779 788 }; 780 789 }; 781 - "@babel/plugin-transform-typeof-symbol-7.18.9" = { 790 + "@babel/plugin-transform-typeof-symbol-7.22.5" = { 782 791 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 783 792 packageName = "@babel/plugin-transform-typeof-symbol"; 784 - version = "7.18.9"; 793 + version = "7.22.5"; 785 794 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=="; 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=="; 788 797 }; 789 798 }; 790 - "@babel/plugin-transform-unicode-escapes-7.21.5" = { 799 + "@babel/plugin-transform-unicode-escapes-7.22.10" = { 791 800 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 792 801 packageName = "@babel/plugin-transform-unicode-escapes"; 793 - version = "7.21.5"; 802 + version = "7.22.10"; 794 803 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=="; 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz"; 805 + sha512 = "lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg=="; 797 806 }; 798 807 }; 799 - "@babel/plugin-transform-unicode-regex-7.18.6" = { 808 + "@babel/plugin-transform-unicode-regex-7.22.5" = { 800 809 name = "_at_babel_slash_plugin-transform-unicode-regex"; 801 810 packageName = "@babel/plugin-transform-unicode-regex"; 802 - version = "7.18.6"; 811 + version = "7.22.5"; 803 812 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=="; 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz"; 814 + sha512 = "028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg=="; 806 815 }; 807 816 }; 808 817 "@babel/preset-env-7.12.10" = { ··· 814 823 sha512 = "Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA=="; 815 824 }; 816 825 }; 817 - "@babel/preset-modules-0.1.5" = { 826 + "@babel/preset-modules-0.1.6" = { 818 827 name = "_at_babel_slash_preset-modules"; 819 828 packageName = "@babel/preset-modules"; 820 - version = "0.1.5"; 829 + version = "0.1.6"; 821 830 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=="; 831 + url = "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz"; 832 + sha512 = "ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg=="; 824 833 }; 825 834 }; 826 835 "@babel/regjsgen-0.8.0" = { ··· 841 850 sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 842 851 }; 843 852 }; 844 - "@babel/template-7.20.7" = { 853 + "@babel/template-7.22.15" = { 845 854 name = "_at_babel_slash_template"; 846 855 packageName = "@babel/template"; 847 - version = "7.20.7"; 856 + version = "7.22.15"; 848 857 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz"; 850 - sha512 = "8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw=="; 858 + url = "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz"; 859 + sha512 = "QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w=="; 851 860 }; 852 861 }; 853 - "@babel/traverse-7.21.5" = { 862 + "@babel/traverse-7.23.0" = { 854 863 name = "_at_babel_slash_traverse"; 855 864 packageName = "@babel/traverse"; 856 - version = "7.21.5"; 865 + version = "7.23.0"; 857 866 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz"; 859 - sha512 = "AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw=="; 867 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.0.tgz"; 868 + sha512 = "t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw=="; 860 869 }; 861 870 }; 862 - "@babel/types-7.21.5" = { 871 + "@babel/types-7.23.0" = { 863 872 name = "_at_babel_slash_types"; 864 873 packageName = "@babel/types"; 865 - version = "7.21.5"; 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"; 866 1172 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz"; 868 - sha512 = "m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q=="; 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=="; 869 1274 }; 870 1275 }; 871 1276 "@hapi/address-2.1.4" = { ··· 913 1318 sha512 = "tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ=="; 914 1319 }; 915 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 + }; 916 1330 "@jridgewell/gen-mapping-0.3.3" = { 917 1331 name = "_at_jridgewell_slash_gen-mapping"; 918 1332 packageName = "@jridgewell/gen-mapping"; ··· 922 1336 sha512 = "HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="; 923 1337 }; 924 1338 }; 925 - "@jridgewell/resolve-uri-3.1.0" = { 1339 + "@jridgewell/resolve-uri-3.1.1" = { 926 1340 name = "_at_jridgewell_slash_resolve-uri"; 927 1341 packageName = "@jridgewell/resolve-uri"; 928 - version = "3.1.0"; 1342 + version = "3.1.1"; 929 1343 src = fetchurl { 930 - url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"; 931 - sha512 = "F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="; 1344 + url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz"; 1345 + sha512 = "dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA=="; 932 1346 }; 933 1347 }; 934 1348 "@jridgewell/set-array-1.1.2" = { ··· 940 1354 sha512 = "xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="; 941 1355 }; 942 1356 }; 943 - "@jridgewell/source-map-0.3.3" = { 1357 + "@jridgewell/source-map-0.3.5" = { 944 1358 name = "_at_jridgewell_slash_source-map"; 945 1359 packageName = "@jridgewell/source-map"; 946 - version = "0.3.3"; 1360 + version = "0.3.5"; 947 1361 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=="; 1362 + url = "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz"; 1363 + sha512 = "UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ=="; 959 1364 }; 960 1365 }; 961 1366 "@jridgewell/sourcemap-codec-1.4.15" = { ··· 967 1372 sha512 = "eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="; 968 1373 }; 969 1374 }; 970 - "@jridgewell/trace-mapping-0.3.18" = { 1375 + "@jridgewell/trace-mapping-0.3.19" = { 971 1376 name = "_at_jridgewell_slash_trace-mapping"; 972 1377 packageName = "@jridgewell/trace-mapping"; 973 - version = "0.3.18"; 1378 + version = "0.3.19"; 974 1379 src = fetchurl { 975 - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz"; 976 - sha512 = "w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA=="; 1380 + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz"; 1381 + sha512 = "kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw=="; 977 1382 }; 978 1383 }; 979 1384 "@kwsites/file-exists-1.1.1" = { ··· 1039 1444 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 1040 1445 }; 1041 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 + }; 1042 1456 "@sindresorhus/is-0.14.0" = { 1043 1457 name = "_at_sindresorhus_slash_is"; 1044 1458 packageName = "@sindresorhus/is"; ··· 1084 1498 sha512 = "4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w=="; 1085 1499 }; 1086 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 + }; 1087 1510 "@types/cacheable-request-6.0.3" = { 1088 1511 name = "_at_types_slash_cacheable-request"; 1089 1512 packageName = "@types/cacheable-request"; ··· 1147 1570 sha512 = "h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w=="; 1148 1571 }; 1149 1572 }; 1150 - "@types/http-cache-semantics-4.0.1" = { 1573 + "@types/http-cache-semantics-4.0.2" = { 1151 1574 name = "_at_types_slash_http-cache-semantics"; 1152 1575 packageName = "@types/http-cache-semantics"; 1153 - version = "4.0.1"; 1576 + version = "4.0.2"; 1154 1577 src = fetchurl { 1155 - url = "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz"; 1156 - sha512 = "SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ=="; 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=="; 1157 1580 }; 1158 1581 }; 1159 - "@types/http-proxy-1.17.11" = { 1582 + "@types/http-proxy-1.17.12" = { 1160 1583 name = "_at_types_slash_http-proxy"; 1161 1584 packageName = "@types/http-proxy"; 1162 - version = "1.17.11"; 1585 + version = "1.17.12"; 1163 1586 src = fetchurl { 1164 - url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz"; 1165 - sha512 = "HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA=="; 1587 + url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.12.tgz"; 1588 + sha512 = "kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw=="; 1166 1589 }; 1167 1590 }; 1168 1591 "@types/jest-27.5.2" = { ··· 1174 1597 sha512 = "mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA=="; 1175 1598 }; 1176 1599 }; 1177 - "@types/json-schema-7.0.11" = { 1600 + "@types/json-schema-7.0.13" = { 1178 1601 name = "_at_types_slash_json-schema"; 1179 1602 packageName = "@types/json-schema"; 1180 - version = "7.0.11"; 1603 + version = "7.0.13"; 1181 1604 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=="; 1605 + url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.13.tgz"; 1606 + sha512 = "RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ=="; 1184 1607 }; 1185 1608 }; 1186 1609 "@types/keyv-3.1.4" = { ··· 1192 1615 sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="; 1193 1616 }; 1194 1617 }; 1195 - "@types/lodash-4.14.194" = { 1618 + "@types/lodash-4.14.199" = { 1196 1619 name = "_at_types_slash_lodash"; 1197 1620 packageName = "@types/lodash"; 1198 - version = "4.14.194"; 1621 + version = "4.14.199"; 1199 1622 src = fetchurl { 1200 - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz"; 1201 - sha512 = "r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g=="; 1623 + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.199.tgz"; 1624 + sha512 = "Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg=="; 1202 1625 }; 1203 1626 }; 1204 1627 "@types/minimatch-5.1.2" = { ··· 1219 1642 sha512 = "U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg=="; 1220 1643 }; 1221 1644 }; 1222 - "@types/node-18.16.3" = { 1645 + "@types/node-20.8.2" = { 1223 1646 name = "_at_types_slash_node"; 1224 1647 packageName = "@types/node"; 1225 - version = "18.16.3"; 1648 + version = "20.8.2"; 1226 1649 src = fetchurl { 1227 - url = "https://registry.npmjs.org/@types/node/-/node-18.16.3.tgz"; 1228 - sha512 = "OPs5WnnT1xkCBiuQrZA4+YAV4HEJejmHneyraIaxsbev5yCEr6KMwINNFP9wQeFIw8FWcoTqF3vQsa5CDaI+8Q=="; 1650 + url = "https://registry.npmjs.org/@types/node/-/node-20.8.2.tgz"; 1651 + sha512 = "Vvycsc9FQdwhxE3y3DzeIxuEJbWGDsnrxvMADzTDF/lcdR9/K+AQIeAghTQsHtotg/q0j3WEOYS/jQgSdWue3w=="; 1229 1652 }; 1230 1653 }; 1231 1654 "@types/node-8.10.66" = { ··· 1246 1669 sha512 = "//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="; 1247 1670 }; 1248 1671 }; 1249 - "@types/q-1.5.5" = { 1672 + "@types/q-1.5.6" = { 1250 1673 name = "_at_types_slash_q"; 1251 1674 packageName = "@types/q"; 1252 - version = "1.5.5"; 1675 + version = "1.5.6"; 1253 1676 src = fetchurl { 1254 - url = "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz"; 1255 - sha512 = "L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ=="; 1677 + url = "https://registry.npmjs.org/@types/q/-/q-1.5.6.tgz"; 1678 + sha512 = "IKjZ8RjTSwD4/YG+2gtj7BPFRB/lNbWKTiSj3M7U/TD2B7HfYCxvp2Zz6xA2WIY7pAuL1QOUPw8gQRbUrrq4fQ=="; 1256 1679 }; 1257 1680 }; 1258 - "@types/responselike-1.0.0" = { 1681 + "@types/responselike-1.0.1" = { 1259 1682 name = "_at_types_slash_responselike"; 1260 1683 packageName = "@types/responselike"; 1261 - version = "1.0.0"; 1684 + version = "1.0.1"; 1262 1685 src = fetchurl { 1263 - url = "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz"; 1264 - sha512 = "85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA=="; 1686 + url = "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.1.tgz"; 1687 + sha512 = "TiGnitEDxj2X0j+98Eqk5lv/Cij8oHd32bU4D/Yw6AOq7vvTk0gSD2GPj0G/HkvhMoVsdlhYF4yqqlyPBTM6Sg=="; 1265 1688 }; 1266 1689 }; 1267 1690 "@types/rimraf-2.0.5" = { ··· 1273 1696 sha512 = "YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g=="; 1274 1697 }; 1275 1698 }; 1276 - "@types/source-list-map-0.1.2" = { 1699 + "@types/source-list-map-0.1.3" = { 1277 1700 name = "_at_types_slash_source-list-map"; 1278 1701 packageName = "@types/source-list-map"; 1279 - version = "0.1.2"; 1702 + version = "0.1.3"; 1280 1703 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=="; 1704 + url = "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.3.tgz"; 1705 + sha512 = "I9R/7fUjzUOyDy6AFkehCK711wWoAXEaBi80AfjZt1lIkbe6AcXKd3ckQc3liMvQExWvfOeh/8CtKzrfUFN5gA=="; 1283 1706 }; 1284 1707 }; 1285 - "@types/tapable-1.0.8" = { 1708 + "@types/tapable-1.0.9" = { 1286 1709 name = "_at_types_slash_tapable"; 1287 1710 packageName = "@types/tapable"; 1288 - version = "1.0.8"; 1711 + version = "1.0.9"; 1289 1712 src = fetchurl { 1290 - url = "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz"; 1291 - sha512 = "ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ=="; 1713 + url = "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.9.tgz"; 1714 + sha512 = "fOHIwZua0sRltqWzODGUM6b4ffZrf/vzGUmNXdR+4DzuJP42PMbM5dLKcdzlYvv8bMJ3GALOzkk1q7cDm2zPyA=="; 1292 1715 }; 1293 1716 }; 1294 1717 "@types/tmp-0.0.33" = { ··· 1300 1723 sha512 = "gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ=="; 1301 1724 }; 1302 1725 }; 1303 - "@types/uglify-js-3.17.1" = { 1726 + "@types/uglify-js-3.17.2" = { 1304 1727 name = "_at_types_slash_uglify-js"; 1305 1728 packageName = "@types/uglify-js"; 1306 - version = "3.17.1"; 1729 + version = "3.17.2"; 1307 1730 src = fetchurl { 1308 - url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.1.tgz"; 1309 - sha512 = "GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g=="; 1731 + url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.2.tgz"; 1732 + sha512 = "9SjrHO54LINgC/6Ehr81NjAxAYvwEZqjUHLjJYvC4Nmr9jbLQCIZbWSvl4vXQkkmR1UAuaKDycau3O1kWGFyXQ=="; 1310 1733 }; 1311 1734 }; 1312 - "@types/webpack-4.41.33" = { 1735 + "@types/webpack-4.41.34" = { 1313 1736 name = "_at_types_slash_webpack"; 1314 1737 packageName = "@types/webpack"; 1315 - version = "4.41.33"; 1738 + version = "4.41.34"; 1316 1739 src = fetchurl { 1317 - url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.33.tgz"; 1318 - sha512 = "PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g=="; 1740 + url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.34.tgz"; 1741 + sha512 = "CN2aOGrR3zbMc2v+cKqzaClYP1ldkpPOgtdNvgX+RmlWCSWxHxpzz6WSCVQZRkF8D60ROlkRzAoEpgjWQ+bd2g=="; 1319 1742 }; 1320 1743 }; 1321 - "@types/webpack-sources-3.2.0" = { 1744 + "@types/webpack-sources-3.2.1" = { 1322 1745 name = "_at_types_slash_webpack-sources"; 1323 1746 packageName = "@types/webpack-sources"; 1324 - version = "3.2.0"; 1747 + version = "3.2.1"; 1325 1748 src = fetchurl { 1326 - url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz"; 1327 - sha512 = "Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg=="; 1749 + url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.1.tgz"; 1750 + sha512 = "iLC3Fsx62ejm3ST3PQ8vBMC54Rb3EoCprZjeJGI5q+9QjfDLGt9jeg/k245qz1G9AQnORGk0vqPicJFPT1QODQ=="; 1328 1751 }; 1329 1752 }; 1330 1753 "@webassemblyjs/ast-1.9.0" = { ··· 1534 1957 sha512 = "XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="; 1535 1958 }; 1536 1959 }; 1537 - "acorn-8.8.2" = { 1960 + "acorn-8.10.0" = { 1538 1961 name = "acorn"; 1539 1962 packageName = "acorn"; 1540 - version = "8.8.2"; 1963 + version = "8.10.0"; 1541 1964 src = fetchurl { 1542 - url = "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz"; 1543 - sha512 = "xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw=="; 1965 + url = "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz"; 1966 + sha512 = "F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw=="; 1544 1967 }; 1545 1968 }; 1546 1969 "address-1.0.3" = { ··· 1552 1975 sha512 = "z55ocwKBRLryBs394Sm3ushTtBeg6VAeuku7utSoSnsJKvKcnXFIyC6vh27n3rXyxSgkJBBCAvyOn7gSUcTYjg=="; 1553 1976 }; 1554 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 + }; 1555 2005 "ajv-6.12.6" = { 1556 2006 name = "ajv"; 1557 2007 packageName = "ajv"; ··· 1669 2119 sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 1670 2120 }; 1671 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 + }; 1672 2131 "ansi-styles-2.2.1" = { 1673 2132 name = "ansi-styles"; 1674 2133 packageName = "ansi-styles"; ··· 1705 2164 sha512 = "Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="; 1706 2165 }; 1707 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 + }; 1708 2176 "anymatch-2.0.0" = { 1709 2177 name = "anymatch"; 1710 2178 packageName = "anymatch"; ··· 1867 2335 sha512 = "SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ=="; 1868 2336 }; 1869 2337 }; 1870 - "array.prototype.reduce-1.0.5" = { 2338 + "array.prototype.reduce-1.0.6" = { 1871 2339 name = "array.prototype.reduce"; 1872 2340 packageName = "array.prototype.reduce"; 1873 - version = "1.0.5"; 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"; 1874 2351 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=="; 2352 + url = "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz"; 2353 + sha512 = "yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw=="; 1877 2354 }; 1878 2355 }; 1879 2356 "asap-2.0.6" = { ··· 1903 2380 sha512 = "+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA=="; 1904 2381 }; 1905 2382 }; 1906 - "assert-1.5.0" = { 2383 + "assert-1.5.1" = { 1907 2384 name = "assert"; 1908 2385 packageName = "assert"; 1909 - version = "1.5.0"; 2386 + version = "1.5.1"; 1910 2387 src = fetchurl { 1911 - url = "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz"; 1912 - sha512 = "EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA=="; 2388 + url = "https://registry.npmjs.org/assert/-/assert-1.5.1.tgz"; 2389 + sha512 = "zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A=="; 1913 2390 }; 1914 2391 }; 1915 2392 "assert-plus-1.0.0" = { ··· 2425 2902 sha512 = "VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q=="; 2426 2903 }; 2427 2904 }; 2428 - "browserslist-4.21.5" = { 2905 + "browserslist-4.22.1" = { 2429 2906 name = "browserslist"; 2430 2907 packageName = "browserslist"; 2431 - version = "4.21.5"; 2908 + version = "4.22.1"; 2432 2909 src = fetchurl { 2433 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz"; 2434 - sha512 = "tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w=="; 2910 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz"; 2911 + sha512 = "FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ=="; 2435 2912 }; 2436 2913 }; 2437 2914 "buffer-4.9.2" = { ··· 2506 2983 sha512 = "HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ=="; 2507 2984 }; 2508 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 + }; 2509 2995 "bytes-3.0.0" = { 2510 2996 name = "bytes"; 2511 2997 packageName = "bytes"; ··· 2551 3037 sha512 = "a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ=="; 2552 3038 }; 2553 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 + }; 2554 3049 "cache-base-1.0.1" = { 2555 3050 name = "cache-base"; 2556 3051 packageName = "cache-base"; ··· 2587 3082 sha512 = "Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg=="; 2588 3083 }; 2589 3084 }; 2590 - "cacheable-request-7.0.2" = { 3085 + "cacheable-request-7.0.4" = { 2591 3086 name = "cacheable-request"; 2592 3087 packageName = "cacheable-request"; 2593 - version = "7.0.2"; 3088 + version = "7.0.4"; 2594 3089 src = fetchurl { 2595 - url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz"; 2596 - sha512 = "pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew=="; 3090 + url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz"; 3091 + sha512 = "v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg=="; 2597 3092 }; 2598 3093 }; 2599 3094 "call-bind-1.0.2" = { ··· 2695 3190 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2696 3191 }; 2697 3192 }; 2698 - "caniuse-lite-1.0.30001482" = { 3193 + "caniuse-lite-1.0.30001546" = { 2699 3194 name = "caniuse-lite"; 2700 3195 packageName = "caniuse-lite"; 2701 - version = "1.0.30001482"; 3196 + version = "1.0.30001546"; 2702 3197 src = fetchurl { 2703 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz"; 2704 - sha512 = "F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ=="; 3198 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001546.tgz"; 3199 + sha512 = "zvtSJwuQFpewSyRrI3AsftF6rM0X80mZkChIt1spBGEvRglCrjTniXvinc8JKRoqTwXAgvqTImaN9igfSMtUBw=="; 2705 3200 }; 2706 3201 }; 2707 3202 "case-sensitive-paths-webpack-plugin-2.3.0" = { ··· 2839 3334 sha512 = "IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A=="; 2840 3335 }; 2841 3336 }; 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 3337 "chokidar-3.5.3" = { 2852 3338 name = "chokidar"; 2853 3339 packageName = "chokidar"; ··· 2911 3397 sha512 = "EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A=="; 2912 3398 }; 2913 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 + }; 2914 3409 "cli-cursor-2.1.0" = { 2915 3410 name = "cli-cursor"; 2916 3411 packageName = "cli-cursor"; ··· 2929 3424 sha512 = "I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw=="; 2930 3425 }; 2931 3426 }; 2932 - "cli-spinners-2.9.0" = { 3427 + "cli-spinners-2.9.1" = { 2933 3428 name = "cli-spinners"; 2934 3429 packageName = "cli-spinners"; 2935 - version = "2.9.0"; 3430 + version = "2.9.1"; 2936 3431 src = fetchurl { 2937 - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz"; 2938 - sha512 = "4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g=="; 3432 + url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.1.tgz"; 3433 + sha512 = "jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ=="; 2939 3434 }; 2940 3435 }; 2941 3436 "cli-table-0.3.4" = { ··· 3127 3622 sha512 = "LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="; 3128 3623 }; 3129 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 + }; 3130 3634 "commander-2.14.1" = { 3131 3635 name = "commander"; 3132 3636 packageName = "commander"; ··· 3179 3683 src = fetchurl { 3180 3684 url = "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz"; 3181 3685 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 3686 }; 3192 3687 }; 3193 3688 "commander-9.5.0" = { ··· 3388 3883 sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="; 3389 3884 }; 3390 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 + }; 3391 3904 "copy-concurrently-1.0.5" = { 3392 3905 name = "copy-concurrently"; 3393 3906 packageName = "copy-concurrently"; ··· 3424 3937 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 3425 3938 }; 3426 3939 }; 3427 - "core-js-compat-3.30.1" = { 3940 + "core-js-compat-3.33.0" = { 3428 3941 name = "core-js-compat"; 3429 3942 packageName = "core-js-compat"; 3430 - version = "3.30.1"; 3943 + version = "3.33.0"; 3431 3944 src = fetchurl { 3432 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz"; 3433 - sha512 = "d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw=="; 3945 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.0.tgz"; 3946 + sha512 = "0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw=="; 3434 3947 }; 3435 3948 }; 3436 3949 "core-util-is-1.0.2" = { ··· 3739 4252 sha512 = "TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA=="; 3740 4253 }; 3741 4254 }; 3742 - "cyclist-1.0.1" = { 4255 + "cyclist-1.0.2" = { 3743 4256 name = "cyclist"; 3744 4257 packageName = "cyclist"; 3745 - version = "1.0.1"; 4258 + version = "1.0.2"; 3746 4259 src = fetchurl { 3747 - url = "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz"; 3748 - sha512 = "NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A=="; 4260 + url = "https://registry.npmjs.org/cyclist/-/cyclist-1.0.2.tgz"; 4261 + sha512 = "0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA=="; 3749 4262 }; 3750 4263 }; 3751 4264 "d-1.0.1" = { ··· 3901 4414 sha512 = "4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg=="; 3902 4415 }; 3903 4416 }; 3904 - "define-properties-1.2.0" = { 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" = { 3905 4427 name = "define-properties"; 3906 4428 packageName = "define-properties"; 3907 - version = "1.2.0"; 4429 + version = "1.2.1"; 3908 4430 src = fetchurl { 3909 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz"; 3910 - sha512 = "xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA=="; 4431 + url = "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz"; 4432 + sha512 = "8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg=="; 3911 4433 }; 3912 4434 }; 3913 4435 "define-property-0.2.5" = { ··· 3982 4504 sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; 3983 4505 }; 3984 4506 }; 3985 - "des.js-1.0.1" = { 4507 + "des.js-1.1.0" = { 3986 4508 name = "des.js"; 3987 4509 packageName = "des.js"; 3988 - version = "1.0.1"; 4510 + version = "1.1.0"; 3989 4511 src = fetchurl { 3990 - url = "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz"; 3991 - sha512 = "Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA=="; 4512 + url = "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz"; 4513 + sha512 = "r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg=="; 3992 4514 }; 3993 4515 }; 3994 4516 "destroy-1.0.4" = { ··· 4009 4531 sha512 = "2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="; 4010 4532 }; 4011 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 + }; 4012 4543 "detect-node-2.1.0" = { 4013 4544 name = "detect-node"; 4014 4545 packageName = "detect-node"; ··· 4234 4765 sha512 = "07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g=="; 4235 4766 }; 4236 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 + }; 4237 4777 "ecc-jsbn-0.1.2" = { 4238 4778 name = "ecc-jsbn"; 4239 4779 packageName = "ecc-jsbn"; ··· 4252 4792 sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; 4253 4793 }; 4254 4794 }; 4255 - "electron-to-chromium-1.4.382" = { 4795 + "electron-to-chromium-1.4.542" = { 4256 4796 name = "electron-to-chromium"; 4257 4797 packageName = "electron-to-chromium"; 4258 - version = "1.4.382"; 4798 + version = "1.4.542"; 4259 4799 src = fetchurl { 4260 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.382.tgz"; 4261 - sha512 = "czMavlW52VIPgutbVL9JnZIZuFijzsG1ww/1z2Otu1r1q+9Qe2bTsH3My3sZarlvwyqHM6+mnZfEnt2Vr4dsIg=="; 4800 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.542.tgz"; 4801 + sha512 = "6+cpa00G09N3sfh2joln4VUXHquWrOFx3FLZqiVQvl45+zS9DskDBTPvob+BhvFRmTBkyDSk0vvLMMRo/qc6mQ=="; 4262 4802 }; 4263 4803 }; 4264 4804 "elliptic-6.5.4" = { ··· 4360 4900 sha512 = "5GV3WkJ8R/faOP1hwElQdNuCt8tKx2+1lsMrdeIYWSFz01Kp9gJl/R6zGtp4QUyrUtO8KnHsxjHrQNUf2CHkrg=="; 4361 4901 }; 4362 4902 }; 4363 - "elm-tooling-1.14.0" = { 4903 + "elm-tooling-1.15.0" = { 4364 4904 name = "elm-tooling"; 4365 4905 packageName = "elm-tooling"; 4366 - version = "1.14.0"; 4906 + version = "1.15.0"; 4367 4907 src = fetchurl { 4368 - url = "https://registry.npmjs.org/elm-tooling/-/elm-tooling-1.14.0.tgz"; 4369 - sha512 = "cIbK3gfYWK086HsqOIGM4reIYcV/FF2R/8jIJ6ZUy1/RSkYFUv2BgPTGYYZo1Io9oymmbwoCWWleNtw7LgGL2w=="; 4908 + url = "https://registry.npmjs.org/elm-tooling/-/elm-tooling-1.15.0.tgz"; 4909 + sha512 = "quRE5LGJyrkPBoJ3MvFQ5RGgf80J0L0d3NkduStvXh4TmZuMXNC3Z/l2ZRoq2UTUaNWeYfO1Zx5wns1AvsTrnw=="; 4370 4910 }; 4371 4911 }; 4372 4912 "elm-webpack-loader-6.0.1" = { ··· 4403 4943 src = fetchurl { 4404 4944 url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"; 4405 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=="; 4406 4955 }; 4407 4956 }; 4408 4957 "emojis-list-2.1.0" = { ··· 4466 5015 src = fetchurl { 4467 5016 url = "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz"; 4468 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=="; 4469 5027 }; 4470 5028 }; 4471 5029 "errno-0.1.8" = { ··· 4486 5044 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 4487 5045 }; 4488 5046 }; 4489 - "es-abstract-1.21.2" = { 5047 + "es-abstract-1.22.2" = { 4490 5048 name = "es-abstract"; 4491 5049 packageName = "es-abstract"; 4492 - version = "1.21.2"; 5050 + version = "1.22.2"; 4493 5051 src = fetchurl { 4494 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz"; 4495 - sha512 = "y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg=="; 5052 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.2.tgz"; 5053 + sha512 = "YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA=="; 4496 5054 }; 4497 5055 }; 4498 5056 "es-array-method-boxes-properly-1.0.0" = { ··· 4556 5114 src = fetchurl { 4557 5115 url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz"; 4558 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=="; 4559 5135 }; 4560 5136 }; 4561 5137 "escalade-3.1.1" = { ··· 4873 5449 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 4874 5450 }; 4875 5451 }; 4876 - "fast-diff-1.2.0" = { 5452 + "fast-diff-1.3.0" = { 4877 5453 name = "fast-diff"; 4878 5454 packageName = "fast-diff"; 4879 - version = "1.2.0"; 5455 + version = "1.3.0"; 4880 5456 src = fetchurl { 4881 - url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz"; 4882 - sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; 5457 + url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz"; 5458 + sha512 = "VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw=="; 4883 5459 }; 4884 5460 }; 4885 5461 "fast-glob-2.2.7" = { ··· 4891 5467 sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; 4892 5468 }; 4893 5469 }; 4894 - "fast-glob-3.2.12" = { 5470 + "fast-glob-3.3.1" = { 4895 5471 name = "fast-glob"; 4896 5472 packageName = "fast-glob"; 4897 - version = "3.2.12"; 5473 + version = "3.3.1"; 4898 5474 src = fetchurl { 4899 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz"; 4900 - sha512 = "DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w=="; 5475 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz"; 5476 + sha512 = "kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg=="; 4901 5477 }; 4902 5478 }; 4903 5479 "fast-json-stable-stringify-2.1.0" = { ··· 4909 5485 sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 4910 5486 }; 4911 5487 }; 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 5488 "fastest-levenshtein-1.0.16" = { 4922 5489 name = "fastest-levenshtein"; 4923 5490 packageName = "fastest-levenshtein"; ··· 5197 5764 sha512 = "SDgHBgV+RCjrYs8aUwCb9rTgbTVuSdzvFmLaChsLre1yf+D64khCW++VYciaByZ8Rm0uKF8R/XEpXuTRSGUM1A=="; 5198 5765 }; 5199 5766 }; 5200 - "follow-redirects-1.15.2" = { 5767 + "follow-redirects-1.15.3" = { 5201 5768 name = "follow-redirects"; 5202 5769 packageName = "follow-redirects"; 5203 - version = "1.15.2"; 5770 + version = "1.15.3"; 5204 5771 src = fetchurl { 5205 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"; 5206 - sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="; 5772 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz"; 5773 + sha512 = "1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q=="; 5207 5774 }; 5208 5775 }; 5209 5776 "for-each-0.3.3" = { ··· 5224 5791 sha512 = "7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ=="; 5225 5792 }; 5226 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 + }; 5227 5803 "forever-agent-0.6.1" = { 5228 5804 name = "forever-agent"; 5229 5805 packageName = "forever-agent"; ··· 5251 5827 sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="; 5252 5828 }; 5253 5829 }; 5254 - "fraction.js-4.2.0" = { 5830 + "fraction.js-4.3.6" = { 5255 5831 name = "fraction.js"; 5256 5832 packageName = "fraction.js"; 5257 - version = "4.2.0"; 5833 + version = "4.3.6"; 5258 5834 src = fetchurl { 5259 - url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz"; 5260 - sha512 = "MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA=="; 5835 + url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.6.tgz"; 5836 + sha512 = "n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg=="; 5261 5837 }; 5262 5838 }; 5263 5839 "fragment-cache-0.2.1" = { ··· 5287 5863 sha512 = "OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g=="; 5288 5864 }; 5289 5865 }; 5290 - "fs-extra-10.1.0" = { 5866 + "fs-extra-11.1.1" = { 5291 5867 name = "fs-extra"; 5292 5868 packageName = "fs-extra"; 5293 - version = "10.1.0"; 5869 + version = "11.1.1"; 5294 5870 src = fetchurl { 5295 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz"; 5296 - sha512 = "oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ=="; 5871 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz"; 5872 + sha512 = "MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="; 5297 5873 }; 5298 5874 }; 5299 5875 "fs-extra-2.0.0" = { ··· 5377 5953 sha512 = "V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg=="; 5378 5954 }; 5379 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 + }; 5380 5974 "fs-readdir-recursive-1.1.0" = { 5381 5975 name = "fs-readdir-recursive"; 5382 5976 packageName = "fs-readdir-recursive"; ··· 5422 6016 sha512 = "Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ=="; 5423 6017 }; 5424 6018 }; 5425 - "fsevents-2.3.2" = { 6019 + "fsevents-2.3.3" = { 5426 6020 name = "fsevents"; 5427 6021 packageName = "fsevents"; 5428 - version = "2.3.2"; 6022 + version = "2.3.3"; 5429 6023 src = fetchurl { 5430 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"; 5431 - sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; 6024 + url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz"; 6025 + sha512 = "5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="; 5432 6026 }; 5433 6027 }; 5434 6028 "function-bind-1.1.1" = { ··· 5440 6034 sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 5441 6035 }; 5442 6036 }; 5443 - "function.prototype.name-1.1.5" = { 6037 + "function.prototype.name-1.1.6" = { 5444 6038 name = "function.prototype.name"; 5445 6039 packageName = "function.prototype.name"; 5446 - version = "1.1.5"; 6040 + version = "1.1.6"; 5447 6041 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=="; 6042 + url = "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz"; 6043 + sha512 = "Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg=="; 5450 6044 }; 5451 6045 }; 5452 6046 "functions-have-names-1.2.3" = { ··· 5485 6079 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 5486 6080 }; 5487 6081 }; 5488 - "get-intrinsic-1.2.0" = { 6082 + "get-intrinsic-1.2.1" = { 5489 6083 name = "get-intrinsic"; 5490 6084 packageName = "get-intrinsic"; 5491 - version = "1.2.0"; 6085 + version = "1.2.1"; 5492 6086 src = fetchurl { 5493 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz"; 5494 - sha512 = "L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q=="; 6087 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz"; 6088 + sha512 = "2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw=="; 5495 6089 }; 5496 6090 }; 5497 6091 "get-own-enumerable-property-symbols-3.0.2" = { ··· 5584 6178 sha512 = "0pcXixfRCfLXdkwC/FJxiYEg5sYnbqYqtMmtXRzlKrStI9tLev7G/PDuFH2GmySJQ3ix5YUPRN/OJEuFD827EA=="; 5585 6179 }; 5586 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 + }; 5587 6190 "glob-7.1.4" = { 5588 6191 name = "glob"; 5589 6192 packageName = "glob"; ··· 5674 6277 sha512 = "sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA=="; 5675 6278 }; 5676 6279 }; 5677 - "globby-11.0.4" = { 6280 + "globby-11.1.0" = { 5678 6281 name = "globby"; 5679 6282 packageName = "globby"; 5680 - version = "11.0.4"; 6283 + version = "11.1.0"; 5681 6284 src = fetchurl { 5682 - url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"; 5683 - sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 6285 + url = "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"; 6286 + sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 5684 6287 }; 5685 6288 }; 5686 - "globby-11.1.0" = { 6289 + "globby-13.1.4" = { 5687 6290 name = "globby"; 5688 6291 packageName = "globby"; 5689 - version = "11.1.0"; 6292 + version = "13.1.4"; 5690 6293 src = fetchurl { 5691 - url = "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"; 5692 - sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 6294 + url = "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz"; 6295 + sha512 = "iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g=="; 5693 6296 }; 5694 6297 }; 5695 6298 "globby-6.1.0" = { ··· 5809 6412 sha512 = "nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w=="; 5810 6413 }; 5811 6414 }; 5812 - "has-1.0.3" = { 6415 + "has-1.0.4" = { 5813 6416 name = "has"; 5814 6417 packageName = "has"; 5815 - version = "1.0.3"; 6418 + version = "1.0.4"; 5816 6419 src = fetchurl { 5817 - url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 5818 - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 6420 + url = "https://registry.npmjs.org/has/-/has-1.0.4.tgz"; 6421 + sha512 = "qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ=="; 5819 6422 }; 5820 6423 }; 5821 6424 "has-ansi-2.0.0" = { ··· 6160 6763 sha512 = "7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ=="; 6161 6764 }; 6162 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 + }; 6163 6775 "http-proxy-middleware-0.19.1" = { 6164 6776 name = "http-proxy-middleware"; 6165 6777 packageName = "http-proxy-middleware"; ··· 6205 6817 sha512 = "J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg=="; 6206 6818 }; 6207 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 + }; 6208 6829 "human-signals-2.1.0" = { 6209 6830 name = "human-signals"; 6210 6831 packageName = "human-signals"; ··· 6214 6835 sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="; 6215 6836 }; 6216 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 + }; 6217 6847 "i-0.3.7" = { 6218 6848 name = "i"; 6219 6849 packageName = "i"; ··· 6239 6869 src = fetchurl { 6240 6870 url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; 6241 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=="; 6242 6881 }; 6243 6882 }; 6244 6883 "icss-utils-4.1.1" = { ··· 6286 6925 sha512 = "MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ=="; 6287 6926 }; 6288 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 + }; 6289 6937 "immer-1.7.2" = { 6290 6938 name = "immer"; 6291 6939 packageName = "immer"; ··· 6293 6941 src = fetchurl { 6294 6942 url = "https://registry.npmjs.org/immer/-/immer-1.7.2.tgz"; 6295 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=="; 6296 6953 }; 6297 6954 }; 6298 6955 "import-fresh-2.0.0" = { ··· 6331 6988 sha512 = "JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="; 6332 6989 }; 6333 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 + }; 6334 7000 "indexes-of-1.0.1" = { 6335 7001 name = "indexes-of"; 6336 7002 packageName = "indexes-of"; ··· 6358 7024 sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; 6359 7025 }; 6360 7026 }; 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 7027 "inherits-2.0.3" = { 6371 7028 name = "inherits"; 6372 7029 packageName = "inherits"; ··· 6439 7096 sha512 = "PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg=="; 6440 7097 }; 6441 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 + }; 6442 7108 "ip-regex-2.1.0" = { 6443 7109 name = "ip-regex"; 6444 7110 packageName = "ip-regex"; ··· 6592 7258 sha512 = "H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA=="; 6593 7259 }; 6594 7260 }; 6595 - "is-core-module-2.12.0" = { 7261 + "is-core-module-2.13.0" = { 6596 7262 name = "is-core-module"; 6597 7263 packageName = "is-core-module"; 6598 - version = "2.12.0"; 7264 + version = "2.13.0"; 6599 7265 src = fetchurl { 6600 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz"; 6601 - sha512 = "RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ=="; 7266 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz"; 7267 + sha512 = "Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ=="; 6602 7268 }; 6603 7269 }; 6604 7270 "is-data-descriptor-0.1.4" = { ··· 6745 7411 sha512 = "2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w=="; 6746 7412 }; 6747 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 + }; 6748 7423 "is-negative-zero-2.0.2" = { 6749 7424 name = "is-negative-zero"; 6750 7425 packageName = "is-negative-zero"; ··· 6934 7609 sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 6935 7610 }; 6936 7611 }; 6937 - "is-typed-array-1.1.10" = { 7612 + "is-typed-array-1.1.12" = { 6938 7613 name = "is-typed-array"; 6939 7614 packageName = "is-typed-array"; 6940 - version = "1.1.10"; 7615 + version = "1.1.12"; 6941 7616 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=="; 7617 + url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz"; 7618 + sha512 = "Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg=="; 6944 7619 }; 6945 7620 }; 6946 7621 "is-typedarray-1.0.0" = { ··· 6986 7661 src = fetchurl { 6987 7662 url = "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"; 6988 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=="; 6989 7673 }; 6990 7674 }; 6991 7675 "is-windows-1.0.2" = { ··· 7078 7762 sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; 7079 7763 }; 7080 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 + }; 7081 7774 "jest-diff-27.5.1" = { 7082 7775 name = "jest-diff"; 7083 7776 packageName = "jest-diff"; ··· 7330 8023 sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 7331 8024 }; 7332 8025 }; 7333 - "keyv-4.5.2" = { 8026 + "keyv-4.5.3" = { 7334 8027 name = "keyv"; 7335 8028 packageName = "keyv"; 7336 - version = "4.5.2"; 8029 + version = "4.5.3"; 7337 8030 src = fetchurl { 7338 - url = "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz"; 7339 - sha512 = "5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g=="; 8031 + url = "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz"; 8032 + sha512 = "QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug=="; 7340 8033 }; 7341 8034 }; 7342 8035 "killable-1.0.1" = { ··· 7447 8140 sha512 = "YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw=="; 7448 8141 }; 7449 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 + }; 7450 8242 "lines-and-columns-1.2.4" = { 7451 8243 name = "lines-and-columns"; 7452 8244 packageName = "lines-and-columns"; ··· 7643 8435 src = fetchurl { 7644 8436 url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz"; 7645 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=="; 7646 8447 }; 7647 8448 }; 7648 8449 "lru-cache-4.1.5" = { ··· 7672 8473 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 7673 8474 }; 7674 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 + }; 7675 8485 "make-dir-1.3.0" = { 7676 8486 name = "make-dir"; 7677 8487 packageName = "make-dir"; ··· 7697 8507 src = fetchurl { 7698 8508 url = "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"; 7699 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=="; 7700 8519 }; 7701 8520 }; 7702 8521 "map-cache-0.2.2" = { ··· 7760 8579 src = fetchurl { 7761 8580 url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; 7762 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=="; 7763 8591 }; 7764 8592 }; 7765 8593 "memory-fs-0.4.1" = { ··· 8014 8842 sha512 = "lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="; 8015 8843 }; 8016 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 + }; 8017 8854 "minimist-1.2.0" = { 8018 8855 name = "minimist"; 8019 8856 packageName = "minimist"; ··· 8068 8905 sha512 = "3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="; 8069 8906 }; 8070 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 + }; 8071 8962 "minizlib-1.3.3" = { 8072 8963 name = "minizlib"; 8073 8964 packageName = "minizlib"; ··· 8248 9139 sha512 = "nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="; 8249 9140 }; 8250 9141 }; 8251 - "nan-2.17.0" = { 9142 + "nan-2.18.0" = { 8252 9143 name = "nan"; 8253 9144 packageName = "nan"; 8254 - version = "2.17.0"; 9145 + version = "2.18.0"; 8255 9146 src = fetchurl { 8256 - url = "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz"; 8257 - sha512 = "2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="; 9147 + url = "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz"; 9148 + sha512 = "W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w=="; 8258 9149 }; 8259 9150 }; 8260 9151 "nanoid-3.3.6" = { ··· 8284 9175 sha512 = "akBX7I5X9KQDDWmYYgQlLbVbjkveTje2mioZjhLLrVt09akSZcoqXWE5LEn1E2fu8T7th1PZYGfewQsTkTLTmQ=="; 8285 9176 }; 8286 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 + }; 8287 9187 "negotiator-0.6.3" = { 8288 9188 name = "negotiator"; 8289 9189 packageName = "negotiator"; ··· 8365 9265 sha512 = "PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA=="; 8366 9266 }; 8367 9267 }; 8368 - "node-gyp-build-4.6.0" = { 9268 + "node-gyp-build-4.6.1" = { 8369 9269 name = "node-gyp-build"; 8370 9270 packageName = "node-gyp-build"; 8371 - version = "4.6.0"; 9271 + version = "4.6.1"; 8372 9272 src = fetchurl { 8373 - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz"; 8374 - sha512 = "NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ=="; 9273 + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.1.tgz"; 9274 + sha512 = "24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ=="; 8375 9275 }; 8376 9276 }; 8377 9277 "node-libs-browser-2.2.1" = { ··· 8392 9292 sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="; 8393 9293 }; 8394 9294 }; 8395 - "node-releases-2.0.10" = { 9295 + "node-releases-2.0.13" = { 8396 9296 name = "node-releases"; 8397 9297 packageName = "node-releases"; 8398 - version = "2.0.10"; 9298 + version = "2.0.13"; 8399 9299 src = fetchurl { 8400 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz"; 8401 - sha512 = "5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w=="; 9300 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz"; 9301 + sha512 = "uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="; 8402 9302 }; 8403 9303 }; 8404 9304 "node-watch-0.5.5" = { ··· 8572 9472 sha512 = "79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ=="; 8573 9473 }; 8574 9474 }; 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 9475 "object-inspect-1.12.3" = { 8585 9476 name = "object-inspect"; 8586 9477 packageName = "object-inspect"; ··· 8626 9517 sha512 = "1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ=="; 8627 9518 }; 8628 9519 }; 8629 - "object.entries-1.1.6" = { 9520 + "object.entries-1.1.7" = { 8630 9521 name = "object.entries"; 8631 9522 packageName = "object.entries"; 8632 - version = "1.1.6"; 9523 + version = "1.1.7"; 8633 9524 src = fetchurl { 8634 - url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz"; 8635 - sha512 = "leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w=="; 9525 + url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz"; 9526 + sha512 = "jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA=="; 8636 9527 }; 8637 9528 }; 8638 - "object.getownpropertydescriptors-2.1.6" = { 9529 + "object.getownpropertydescriptors-2.1.7" = { 8639 9530 name = "object.getownpropertydescriptors"; 8640 9531 packageName = "object.getownpropertydescriptors"; 8641 - version = "2.1.6"; 9532 + version = "2.1.7"; 8642 9533 src = fetchurl { 8643 - url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz"; 8644 - sha512 = "lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ=="; 9534 + url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz"; 9535 + sha512 = "PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g=="; 8645 9536 }; 8646 9537 }; 8647 9538 "object.pick-1.3.0" = { ··· 8653 9544 sha512 = "tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ=="; 8654 9545 }; 8655 9546 }; 8656 - "object.values-1.1.6" = { 9547 + "object.values-1.1.7" = { 8657 9548 name = "object.values"; 8658 9549 packageName = "object.values"; 8659 - version = "1.1.6"; 9550 + version = "1.1.7"; 8660 9551 src = fetchurl { 8661 - url = "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz"; 8662 - sha512 = "FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw=="; 9552 + url = "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz"; 9553 + sha512 = "aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng=="; 8663 9554 }; 8664 9555 }; 8665 9556 "obuf-1.1.2" = { ··· 8923 9814 sha512 = "y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw=="; 8924 9815 }; 8925 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 + }; 8926 9826 "p-retry-3.0.1" = { 8927 9827 name = "p-retry"; 8928 9828 packageName = "p-retry"; ··· 9040 9940 sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="; 9041 9941 }; 9042 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 + }; 9043 9952 "parse-passwd-1.0.0" = { 9044 9953 name = "parse-passwd"; 9045 9954 packageName = "parse-passwd"; ··· 9076 9985 sha512 = "XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw=="; 9077 9986 }; 9078 9987 }; 9079 - "password-prompt-1.1.2" = { 9988 + "password-prompt-1.1.3" = { 9080 9989 name = "password-prompt"; 9081 9990 packageName = "password-prompt"; 9082 - version = "1.1.2"; 9991 + version = "1.1.3"; 9083 9992 src = fetchurl { 9084 - url = "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz"; 9085 - sha512 = "bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA=="; 9993 + url = "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz"; 9994 + sha512 = "HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw=="; 9086 9995 }; 9087 9996 }; 9088 9997 "path-browserify-0.0.1" = { ··· 9175 10084 sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 9176 10085 }; 9177 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 + }; 9178 10096 "path-to-regexp-0.1.7" = { 9179 10097 name = "path-to-regexp"; 9180 10098 packageName = "path-to-regexp"; ··· 9400 10318 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 9401 10319 }; 9402 10320 }; 9403 - "postcss-8.4.23" = { 10321 + "postcss-8.4.31" = { 9404 10322 name = "postcss"; 9405 10323 packageName = "postcss"; 9406 - version = "8.4.23"; 10324 + version = "8.4.31"; 9407 10325 src = fetchurl { 9408 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz"; 9409 - sha512 = "bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA=="; 10326 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz"; 10327 + sha512 = "PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ=="; 9410 10328 }; 9411 10329 }; 9412 10330 "postcss-calc-7.0.5" = { ··· 9706 10624 sha512 = "h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA=="; 9707 10625 }; 9708 10626 }; 9709 - "postcss-selector-parser-6.0.12" = { 10627 + "postcss-selector-parser-6.0.13" = { 9710 10628 name = "postcss-selector-parser"; 9711 10629 packageName = "postcss-selector-parser"; 9712 - version = "6.0.12"; 10630 + version = "6.0.13"; 9713 10631 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=="; 10632 + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz"; 10633 + sha512 = "EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ=="; 9716 10634 }; 9717 10635 }; 9718 10636 "postcss-svgo-4.0.3" = { ··· 9841 10759 sha512 = "6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g=="; 9842 10760 }; 9843 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 + }; 9844 10771 "prompt-1.0.0" = { 9845 10772 name = "prompt"; 9846 10773 packageName = "prompt"; ··· 9938 10865 src = fetchurl { 9939 10866 url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz"; 9940 10867 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 10868 }; 9951 10869 }; 9952 10870 "punycode-1.4.1" = { ··· 9985 10903 sha512 = "MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q=="; 9986 10904 }; 9987 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 + }; 9988 10915 "qs-6.5.1" = { 9989 10916 name = "qs"; 9990 10917 packageName = "qs"; ··· 10019 10946 src = fetchurl { 10020 10947 url = "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz"; 10021 10948 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 10949 }; 10032 10950 }; 10033 10951 "querystring-es3-0.2.1" = { ··· 10282 11200 sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; 10283 11201 }; 10284 11202 }; 10285 - "regenerate-unicode-properties-10.1.0" = { 11203 + "regenerate-unicode-properties-10.1.1" = { 10286 11204 name = "regenerate-unicode-properties"; 10287 11205 packageName = "regenerate-unicode-properties"; 10288 - version = "10.1.0"; 11206 + version = "10.1.1"; 10289 11207 src = fetchurl { 10290 - url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz"; 10291 - sha512 = "d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ=="; 11208 + url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz"; 11209 + sha512 = "X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q=="; 10292 11210 }; 10293 11211 }; 10294 11212 "regenerator-runtime-0.11.1" = { ··· 10318 11236 sha512 = "D0Y/JJ4VhusyMOd/o25a3jdUqN/bC85EFsaoL9Oqmy/O4efCh+xhp7yj2EEOsj974qvMkcW8AwUzJ1jB/MbxCw=="; 10319 11237 }; 10320 11238 }; 10321 - "regenerator-transform-0.15.1" = { 11239 + "regenerator-transform-0.15.2" = { 10322 11240 name = "regenerator-transform"; 10323 11241 packageName = "regenerator-transform"; 10324 - version = "0.15.1"; 11242 + version = "0.15.2"; 10325 11243 src = fetchurl { 10326 - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz"; 10327 - sha512 = "knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg=="; 11244 + url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz"; 11245 + sha512 = "hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg=="; 10328 11246 }; 10329 11247 }; 10330 11248 "regex-not-1.0.2" = { ··· 10336 11254 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; 10337 11255 }; 10338 11256 }; 10339 - "regexp.prototype.flags-1.5.0" = { 11257 + "regexp.prototype.flags-1.5.1" = { 10340 11258 name = "regexp.prototype.flags"; 10341 11259 packageName = "regexp.prototype.flags"; 10342 - version = "1.5.0"; 11260 + version = "1.5.1"; 10343 11261 src = fetchurl { 10344 - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz"; 10345 - sha512 = "0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA=="; 11262 + url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz"; 11263 + sha512 = "sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg=="; 10346 11264 }; 10347 11265 }; 10348 11266 "regexpu-core-5.3.2" = { ··· 10444 11362 sha512 = "MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw=="; 10445 11363 }; 10446 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 + }; 10447 11374 "request-promise-4.2.6" = { 10448 11375 name = "request-promise"; 10449 11376 packageName = "request-promise"; ··· 10507 11434 sha512 = "KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="; 10508 11435 }; 10509 11436 }; 10510 - "resolve-1.22.3" = { 11437 + "resolve-1.22.6" = { 10511 11438 name = "resolve"; 10512 11439 packageName = "resolve"; 10513 - version = "1.22.3"; 11440 + version = "1.22.6"; 10514 11441 src = fetchurl { 10515 - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz"; 10516 - sha512 = "P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw=="; 11442 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz"; 11443 + sha512 = "njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw=="; 10517 11444 }; 10518 11445 }; 10519 11446 "resolve-alpn-1.2.1" = { ··· 10678 11605 sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="; 10679 11606 }; 10680 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 + }; 10681 11617 "ripemd160-2.0.2" = { 10682 11618 name = "ripemd160"; 10683 11619 packageName = "ripemd160"; ··· 10687 11623 sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="; 10688 11624 }; 10689 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 + }; 10690 11635 "run-async-2.4.1" = { 10691 11636 name = "run-async"; 10692 11637 packageName = "run-async"; ··· 10723 11668 sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ=="; 10724 11669 }; 10725 11670 }; 10726 - "safe-array-concat-1.0.0" = { 11671 + "safe-array-concat-1.0.1" = { 10727 11672 name = "safe-array-concat"; 10728 11673 packageName = "safe-array-concat"; 10729 - version = "1.0.0"; 11674 + version = "1.0.1"; 10730 11675 src = fetchurl { 10731 - url = "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz"; 10732 - sha512 = "9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ=="; 11676 + url = "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz"; 11677 + sha512 = "6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q=="; 10733 11678 }; 10734 11679 }; 10735 11680 "safe-buffer-5.1.1" = { ··· 10795 11740 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 10796 11741 }; 10797 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 + }; 10798 11752 "sax-1.2.4" = { 10799 11753 name = "sax"; 10800 11754 packageName = "sax"; ··· 10804 11758 sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; 10805 11759 }; 10806 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 + }; 10807 11770 "schema-utils-0.4.7" = { 10808 11771 name = "schema-utils"; 10809 11772 packageName = "schema-utils"; ··· 10831 11794 sha512 = "SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg=="; 10832 11795 }; 10833 11796 }; 10834 - "schema-utils-3.1.2" = { 11797 + "schema-utils-3.3.0" = { 10835 11798 name = "schema-utils"; 10836 11799 packageName = "schema-utils"; 10837 - version = "3.1.2"; 11800 + version = "3.3.0"; 10838 11801 src = fetchurl { 10839 - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz"; 10840 - sha512 = "pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg=="; 11802 + url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz"; 11803 + sha512 = "pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg=="; 10841 11804 }; 10842 11805 }; 10843 11806 "section-matter-1.0.0" = { ··· 10867 11830 sha512 = "lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA=="; 10868 11831 }; 10869 11832 }; 10870 - "semver-5.7.1" = { 11833 + "semver-5.7.2" = { 10871 11834 name = "semver"; 10872 11835 packageName = "semver"; 10873 - version = "5.7.1"; 11836 + version = "5.7.2"; 10874 11837 src = fetchurl { 10875 - url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"; 10876 - sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 11838 + url = "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz"; 11839 + sha512 = "cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="; 10877 11840 }; 10878 11841 }; 10879 - "semver-6.3.0" = { 11842 + "semver-6.3.1" = { 10880 11843 name = "semver"; 10881 11844 packageName = "semver"; 10882 - version = "6.3.0"; 11845 + version = "6.3.1"; 10883 11846 src = fetchurl { 10884 - url = "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"; 10885 - sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 11847 + url = "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz"; 11848 + sha512 = "BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="; 10886 11849 }; 10887 11850 }; 10888 - "semver-7.5.0" = { 11851 + "semver-7.5.4" = { 10889 11852 name = "semver"; 10890 11853 packageName = "semver"; 10891 - version = "7.5.0"; 11854 + version = "7.5.4"; 10892 11855 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=="; 11856 + url = "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz"; 11857 + sha512 = "1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="; 10895 11858 }; 10896 11859 }; 10897 11860 "semver-regex-3.1.4" = { ··· 11002 11965 sha512 = "KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="; 11003 11966 }; 11004 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 + }; 11005 11977 "set-value-2.0.1" = { 11006 11978 name = "set-value"; 11007 11979 packageName = "set-value"; ··· 11128 12100 sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 11129 12101 }; 11130 12102 }; 11131 - "simple-git-3.18.0" = { 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" = { 11132 12113 name = "simple-git"; 11133 12114 packageName = "simple-git"; 11134 - version = "3.18.0"; 12115 + version = "3.20.0"; 11135 12116 src = fetchurl { 11136 - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.18.0.tgz"; 11137 - sha512 = "Yt0GJ5aYrpPci3JyrYcsPz8Xc05Hi4JPSOb+Sgn/BmPX35fn/6Fp9Mef8eMBCrL2siY5w4j49TA5Q+bxPpri1Q=="; 12117 + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.20.0.tgz"; 12118 + sha512 = "ozK8tl2hvLts8ijTs18iFruE+RoqmC/mqZhjs/+V7gS5W68JpJ3+FCTmLVqmR59MaUQ52MfGQuWsIqfsTbbJ0Q=="; 11138 12119 }; 11139 12120 }; 11140 12121 "simple-swizzle-0.2.2" = { ··· 11182 12163 sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 11183 12164 }; 11184 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 + }; 11185 12175 "slice-ansi-4.0.0" = { 11186 12176 name = "slice-ansi"; 11187 12177 packageName = "slice-ansi"; ··· 11191 12181 sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 11192 12182 }; 11193 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 + }; 11194 12193 "snapdragon-0.8.2" = { 11195 12194 name = "snapdragon"; 11196 12195 packageName = "snapdragon"; ··· 11243 12242 src = fetchurl { 11244 12243 url = "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz"; 11245 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=="; 11246 12263 }; 11247 12264 }; 11248 12265 "sort-keys-1.1.2" = { ··· 11353 12370 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 11354 12371 }; 11355 12372 }; 11356 - "spdx-license-ids-3.0.13" = { 12373 + "spdx-license-ids-3.0.15" = { 11357 12374 name = "spdx-license-ids"; 11358 12375 packageName = "spdx-license-ids"; 11359 - version = "3.0.13"; 12376 + version = "3.0.15"; 11360 12377 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=="; 12378 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz"; 12379 + sha512 = "lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ=="; 11363 12380 }; 11364 12381 }; 11365 12382 "spdy-4.0.2" = { ··· 11416 12433 sha512 = "/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ=="; 11417 12434 }; 11418 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 + }; 11419 12445 "ssri-5.3.0" = { 11420 12446 name = "ssri"; 11421 12447 packageName = "ssri"; ··· 11533 12559 sha512 = "AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ=="; 11534 12560 }; 11535 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 + }; 11536 12571 "strict-uri-encode-1.1.0" = { 11537 12572 name = "strict-uri-encode"; 11538 12573 packageName = "strict-uri-encode"; ··· 11587 12622 sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 11588 12623 }; 11589 12624 }; 11590 - "string.prototype.trim-1.2.7" = { 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" = { 11591 12644 name = "string.prototype.trim"; 11592 12645 packageName = "string.prototype.trim"; 11593 - version = "1.2.7"; 12646 + version = "1.2.8"; 11594 12647 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=="; 12648 + url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz"; 12649 + sha512 = "lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ=="; 11597 12650 }; 11598 12651 }; 11599 - "string.prototype.trimend-1.0.6" = { 12652 + "string.prototype.trimend-1.0.7" = { 11600 12653 name = "string.prototype.trimend"; 11601 12654 packageName = "string.prototype.trimend"; 11602 - version = "1.0.6"; 12655 + version = "1.0.7"; 11603 12656 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=="; 12657 + url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz"; 12658 + sha512 = "Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA=="; 11606 12659 }; 11607 12660 }; 11608 - "string.prototype.trimstart-1.0.6" = { 12661 + "string.prototype.trimstart-1.0.7" = { 11609 12662 name = "string.prototype.trimstart"; 11610 12663 packageName = "string.prototype.trimstart"; 11611 - version = "1.0.6"; 12664 + version = "1.0.7"; 11612 12665 src = fetchurl { 11613 - url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz"; 11614 - sha512 = "omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA=="; 12666 + url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz"; 12667 + sha512 = "NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg=="; 11615 12668 }; 11616 12669 }; 11617 12670 "string_decoder-0.10.31" = { ··· 11695 12748 sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 11696 12749 }; 11697 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 + }; 11698 12769 "strip-bom-2.0.0" = { 11699 12770 name = "strip-bom"; 11700 12771 packageName = "strip-bom"; ··· 11767 12838 sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g=="; 11768 12839 }; 11769 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 + }; 11770 12850 "sudo-prompt-8.2.5" = { 11771 12851 name = "sudo-prompt"; 11772 12852 packageName = "sudo-prompt"; ··· 11776 12856 sha512 = "rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw=="; 11777 12857 }; 11778 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 + }; 11779 12868 "sums-0.2.4" = { 11780 12869 name = "sums"; 11781 12870 packageName = "sums"; ··· 11884 12973 sha512 = "a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA=="; 11885 12974 }; 11886 12975 }; 11887 - "tar-6.1.14" = { 12976 + "tar-6.2.0" = { 11888 12977 name = "tar"; 11889 12978 packageName = "tar"; 11890 - version = "6.1.14"; 12979 + version = "6.2.0"; 11891 12980 src = fetchurl { 11892 - url = "https://registry.npmjs.org/tar/-/tar-6.1.14.tgz"; 11893 - sha512 = "piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw=="; 12981 + url = "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz"; 12982 + sha512 = "/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ=="; 11894 12983 }; 11895 12984 }; 11896 12985 "temp-0.9.0" = { ··· 11929 13018 sha512 = "4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw=="; 11930 13019 }; 11931 13020 }; 11932 - "terser-5.17.1" = { 13021 + "terser-5.21.0" = { 11933 13022 name = "terser"; 11934 13023 packageName = "terser"; 11935 - version = "5.17.1"; 13024 + version = "5.21.0"; 11936 13025 src = fetchurl { 11937 - url = "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz"; 11938 - sha512 = "hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw=="; 13026 + url = "https://registry.npmjs.org/terser/-/terser-5.21.0.tgz"; 13027 + sha512 = "WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw=="; 11939 13028 }; 11940 13029 }; 11941 13030 "terser-5.3.8" = { ··· 12208 13297 sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 12209 13298 }; 12210 13299 }; 12211 - "tslib-2.5.0" = { 13300 + "tslib-2.6.2" = { 12212 13301 name = "tslib"; 12213 13302 packageName = "tslib"; 12214 - version = "2.5.0"; 13303 + version = "2.6.2"; 12215 13304 src = fetchurl { 12216 - url = "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz"; 12217 - sha512 = "336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="; 13305 + url = "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz"; 13306 + sha512 = "AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="; 12218 13307 }; 12219 13308 }; 12220 - "tsyringe-4.7.0" = { 13309 + "tsyringe-4.8.0" = { 12221 13310 name = "tsyringe"; 12222 13311 packageName = "tsyringe"; 12223 - version = "4.7.0"; 13312 + version = "4.8.0"; 12224 13313 src = fetchurl { 12225 - url = "https://registry.npmjs.org/tsyringe/-/tsyringe-4.7.0.tgz"; 12226 - sha512 = "ncFDM1jTLsok4ejMvSW5jN1VGPQD48y2tfAR0pdptWRKYX4bkbqPt92k7KJ5RFJ1KV36JEs/+TMh7I6OUgj74g=="; 13314 + url = "https://registry.npmjs.org/tsyringe/-/tsyringe-4.8.0.tgz"; 13315 + sha512 = "YB1FG+axdxADa3ncEtRnQCFq/M0lALGLxSZeVNbTU8NqhOVc51nnv2CISTcvc1kyv6EGPtXVr0v6lWeDxiijOA=="; 12227 13316 }; 12228 13317 }; 12229 13318 "tty-browserify-0.0.0" = { ··· 12298 13387 sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 12299 13388 }; 12300 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 + }; 12301 13417 "typed-array-length-1.0.4" = { 12302 13418 name = "typed-array-length"; 12303 13419 packageName = "typed-array-length"; ··· 12388 13504 sha512 = "61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="; 12389 13505 }; 12390 13506 }; 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 13507 "unicode-canonical-property-names-ecmascript-2.0.0" = { 12401 13508 name = "unicode-canonical-property-names-ecmascript"; 12402 13509 packageName = "unicode-canonical-property-names-ecmascript"; ··· 12469 13576 sha512 = "Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ=="; 12470 13577 }; 12471 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 + }; 12472 13588 "unique-slug-2.0.2" = { 12473 13589 name = "unique-slug"; 12474 13590 packageName = "unique-slug"; ··· 12476 13592 src = fetchurl { 12477 13593 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz"; 12478 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=="; 12479 13604 }; 12480 13605 }; 12481 13606 "universalify-0.1.2" = { ··· 12550 13675 sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; 12551 13676 }; 12552 13677 }; 12553 - "update-browserslist-db-1.0.11" = { 13678 + "update-browserslist-db-1.0.13" = { 12554 13679 name = "update-browserslist-db"; 12555 13680 packageName = "update-browserslist-db"; 12556 - version = "1.0.11"; 13681 + version = "1.0.13"; 12557 13682 src = fetchurl { 12558 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz"; 12559 - sha512 = "dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA=="; 13683 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz"; 13684 + sha512 = "xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg=="; 12560 13685 }; 12561 13686 }; 12562 13687 "upgrade-1.1.0" = { ··· 12586 13711 sha512 = "Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg=="; 12587 13712 }; 12588 13713 }; 12589 - "url-0.11.0" = { 13714 + "url-0.11.3" = { 12590 13715 name = "url"; 12591 13716 packageName = "url"; 12592 - version = "0.11.0"; 13717 + version = "0.11.3"; 12593 13718 src = fetchurl { 12594 - url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz"; 12595 - sha512 = "kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ=="; 13719 + url = "https://registry.npmjs.org/url/-/url-0.11.3.tgz"; 13720 + sha512 = "6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw=="; 12596 13721 }; 12597 13722 }; 12598 13723 "url-loader-4.1.1" = { ··· 12649 13774 sha512 = "Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ=="; 12650 13775 }; 12651 13776 }; 12652 - "util-0.10.3" = { 13777 + "util-0.10.4" = { 12653 13778 name = "util"; 12654 13779 packageName = "util"; 12655 - version = "0.10.3"; 13780 + version = "0.10.4"; 12656 13781 src = fetchurl { 12657 - url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz"; 12658 - sha512 = "5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ=="; 13782 + url = "https://registry.npmjs.org/util/-/util-0.10.4.tgz"; 13783 + sha512 = "0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A=="; 12659 13784 }; 12660 13785 }; 12661 13786 "util-0.11.1" = { ··· 12757 13882 sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="; 12758 13883 }; 12759 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 + }; 12760 13894 "vm-browserify-1.1.2" = { 12761 13895 name = "vm-browserify"; 12762 13896 packageName = "vm-browserify"; ··· 12811 13945 sha512 = "SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA=="; 12812 13946 }; 12813 13947 }; 12814 - "vscode-uri-3.0.7" = { 13948 + "vscode-uri-3.0.8" = { 12815 13949 name = "vscode-uri"; 12816 13950 packageName = "vscode-uri"; 12817 - version = "3.0.7"; 13951 + version = "3.0.8"; 12818 13952 src = fetchurl { 12819 - url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.7.tgz"; 12820 - sha512 = "eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA=="; 13953 + url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz"; 13954 + sha512 = "AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw=="; 12821 13955 }; 12822 13956 }; 12823 13957 "watchpack-1.7.5" = { ··· 12991 14125 sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; 12992 14126 }; 12993 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 + }; 12994 14137 "which-boxed-primitive-1.0.2" = { 12995 14138 name = "which-boxed-primitive"; 12996 14139 packageName = "which-boxed-primitive"; ··· 13018 14161 sha512 = "iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ=="; 13019 14162 }; 13020 14163 }; 13021 - "which-typed-array-1.1.9" = { 14164 + "which-typed-array-1.1.11" = { 13022 14165 name = "which-typed-array"; 13023 14166 packageName = "which-typed-array"; 13024 - version = "1.1.9"; 14167 + version = "1.1.11"; 13025 14168 src = fetchurl { 13026 - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz"; 13027 - sha512 = "w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA=="; 14169 + url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz"; 14170 + sha512 = "qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew=="; 13028 14171 }; 13029 14172 }; 13030 14173 "winston-2.1.1" = { ··· 13214 14357 src = fetchurl { 13215 14358 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"; 13216 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=="; 13217 14378 }; 13218 14379 }; 13219 14380 "wrappy-1.0.2" = { ··· 13807 14968 sources."rimraf-2.6.3" 13808 14969 sources."safe-buffer-5.2.1" 13809 14970 sources."safer-buffer-2.1.2" 13810 - sources."semver-5.7.1" 14971 + sources."semver-5.7.2" 13811 14972 sources."set-blocking-2.0.0" 13812 14973 sources."shebang-command-1.2.0" 13813 14974 sources."shebang-regex-1.0.0" ··· 13834 14995 sources."json-schema-traverse-1.0.0" 13835 14996 ]; 13836 14997 }) 13837 - sources."tar-6.1.14" 14998 + sources."tar-6.2.0" 13838 14999 sources."temp-0.9.0" 13839 15000 sources."through-2.3.8" 13840 15001 sources."tmp-0.0.33" ··· 13947 15108 sources."forwarded-0.2.0" 13948 15109 sources."fresh-0.5.2" 13949 15110 sources."fs.realpath-1.0.0" 13950 - sources."fsevents-2.3.2" 15111 + sources."fsevents-2.3.3" 13951 15112 sources."function-bind-1.1.1" 13952 - sources."get-intrinsic-1.2.0" 15113 + sources."get-intrinsic-1.2.1" 13953 15114 sources."get-stream-4.1.0" 13954 15115 sources."glob-7.2.3" 13955 15116 sources."glob-parent-5.1.2" 13956 15117 sources."got-9.6.0" 13957 - sources."has-1.0.3" 15118 + sources."has-1.0.4" 13958 15119 sources."has-flag-4.0.0" 15120 + sources."has-proto-1.0.1" 13959 15121 sources."has-symbols-1.0.3" 13960 15122 sources."http-cache-semantics-4.1.1" 13961 15123 sources."http-errors-2.0.0" ··· 13986 15148 sources."minimist-1.2.8" 13987 15149 sources."ms-2.0.0" 13988 15150 sources."negotiator-0.6.3" 13989 - sources."node-gyp-build-4.6.0" 15151 + sources."node-gyp-build-4.6.1" 13990 15152 sources."normalize-path-3.0.0" 13991 15153 sources."normalize-url-4.5.1" 13992 15154 sources."object-inspect-1.12.3" ··· 14014 15176 sources."rimraf-2.7.1" 14015 15177 sources."safe-buffer-5.2.1" 14016 15178 sources."safer-buffer-2.1.2" 14017 - sources."semver-6.3.0" 15179 + sources."semver-6.3.1" 14018 15180 (sources."send-0.18.0" // { 14019 15181 dependencies = [ 14020 15182 sources."ms-2.1.3" ··· 14064 15226 "@elm-tooling/elm-language-server" = nodeEnv.buildNodePackage { 14065 15227 name = "_at_elm-tooling_slash_elm-language-server"; 14066 15228 packageName = "@elm-tooling/elm-language-server"; 14067 - version = "2.7.0"; 15229 + version = "2.7.3"; 14068 15230 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=="; 15231 + url = "https://registry.npmjs.org/@elm-tooling/elm-language-server/-/elm-language-server-2.7.3.tgz"; 15232 + sha512 = "V6X0cqgyc+ZCA2eRA8eU33nNrWmM78uvKhhNUl8OMrdGecA9nOsk1lmoWAhOmyD1ZSbgvvNQiBGnbmziemM6CA=="; 14071 15233 }; 14072 15234 dependencies = [ 14073 15235 sources."@nodelib/fs.scandir-2.1.5" ··· 14082 15244 sources."dir-glob-3.0.1" 14083 15245 sources."escape-string-regexp-4.0.0" 14084 15246 sources."execa-5.1.1" 14085 - sources."fast-diff-1.2.0" 14086 - sources."fast-glob-3.2.12" 15247 + sources."fast-diff-1.3.0" 15248 + sources."fast-glob-3.3.1" 14087 15249 sources."fastq-1.15.0" 14088 15250 sources."fill-range-7.0.1" 14089 - sources."fsevents-2.3.2" 15251 + sources."fsevents-2.3.3" 14090 15252 sources."get-stream-6.0.1" 14091 15253 sources."glob-parent-5.1.2" 14092 15254 sources."globby-11.1.0" ··· 14112 15274 sources."queue-microtask-1.2.3" 14113 15275 sources."readdirp-3.6.0" 14114 15276 sources."reflect-metadata-0.1.13" 15277 + sources."request-light-0.7.0" 14115 15278 sources."reusify-1.0.4" 14116 15279 sources."run-parallel-1.2.0" 14117 15280 sources."shebang-command-2.0.0" ··· 14122 15285 sources."to-regex-range-5.0.1" 14123 15286 sources."ts-debounce-4.0.0" 14124 15287 sources."tslib-1.14.1" 14125 - sources."tsyringe-4.7.0" 15288 + sources."tsyringe-4.8.0" 14126 15289 sources."vscode-jsonrpc-8.1.0" 14127 15290 sources."vscode-languageserver-8.1.0" 14128 15291 sources."vscode-languageserver-protocol-3.17.3" 14129 15292 sources."vscode-languageserver-textdocument-1.0.8" 14130 15293 sources."vscode-languageserver-types-3.17.3" 14131 - sources."vscode-uri-3.0.7" 15294 + sources."vscode-uri-3.0.8" 14132 15295 sources."web-tree-sitter-0.20.8" 14133 15296 sources."which-2.0.2" 14134 15297 ]; ··· 14184 15347 }) 14185 15348 sources."fill-range-7.0.1" 14186 15349 sources."finalhandler-1.1.2" 14187 - sources."follow-redirects-1.15.2" 15350 + sources."follow-redirects-1.15.3" 14188 15351 sources."fresh-0.5.2" 14189 - sources."fsevents-2.3.2" 15352 + sources."fsevents-2.3.3" 14190 15353 sources."get-stream-4.1.0" 14191 15354 sources."glob-parent-5.1.2" 14192 15355 sources."has-ansi-2.0.0" ··· 14225 15388 sources."range-parser-1.2.1" 14226 15389 sources."readdirp-3.6.0" 14227 15390 sources."requires-port-1.0.0" 14228 - sources."semver-5.7.1" 15391 + sources."semver-5.7.2" 14229 15392 (sources."send-0.17.1" // { 14230 15393 dependencies = [ 14231 15394 sources."mime-1.6.0" ··· 14313 15476 sources."next-tick-1.1.0" 14314 15477 sources."nice-try-1.0.5" 14315 15478 sources."node-elm-compiler-5.0.5" 14316 - sources."node-gyp-build-4.6.0" 15479 + sources."node-gyp-build-4.6.1" 14317 15480 sources."normalize-path-3.0.0" 14318 15481 sources."once-1.4.0" 14319 15482 sources."path-is-absolute-1.0.1" ··· 14321 15484 sources."picomatch-2.3.1" 14322 15485 sources."readdirp-3.4.0" 14323 15486 sources."rimraf-2.6.3" 14324 - sources."semver-5.7.1" 15487 + sources."semver-5.7.2" 14325 15488 sources."shebang-command-1.2.0" 14326 15489 sources."shebang-regex-1.0.0" 14327 15490 sources."source-map-0.7.4" ··· 14375 15538 sources."elm-solve-deps-wasm-1.0.2" 14376 15539 sources."fill-range-7.0.1" 14377 15540 sources."fs.realpath-1.0.0" 14378 - sources."fsevents-2.3.2" 15541 + sources."fsevents-2.3.3" 14379 15542 sources."glob-8.1.0" 14380 15543 sources."glob-parent-5.1.2" 14381 15544 sources."graceful-fs-4.2.11" ··· 14425 15588 sources."@sindresorhus/is-2.1.1" 14426 15589 sources."@szmarczak/http-timer-4.0.6" 14427 15590 sources."@types/cacheable-request-6.0.3" 14428 - sources."@types/http-cache-semantics-4.0.1" 15591 + sources."@types/http-cache-semantics-4.0.2" 14429 15592 sources."@types/keyv-3.1.4" 14430 - sources."@types/node-18.16.3" 14431 - sources."@types/responselike-1.0.0" 15593 + sources."@types/node-20.8.2" 15594 + sources."@types/responselike-1.0.1" 14432 15595 sources."cacheable-lookup-2.0.1" 14433 - sources."cacheable-request-7.0.2" 15596 + sources."cacheable-request-7.0.4" 14434 15597 sources."caw-2.0.1" 14435 15598 (sources."clone-response-1.0.3" // { 14436 15599 dependencies = [ ··· 14456 15619 sources."isurl-1.0.0" 14457 15620 sources."json-buffer-3.0.1" 14458 15621 sources."jsonfile-4.0.0" 14459 - sources."keyv-4.5.2" 15622 + sources."keyv-4.5.3" 14460 15623 sources."lowercase-keys-2.0.0" 14461 15624 sources."lru-cache-6.0.0" 14462 15625 sources."mimic-response-2.1.0" ··· 14473 15636 sources."responselike-2.0.1" 14474 15637 sources."safe-buffer-5.2.1" 14475 15638 sources."safename-1.0.2" 14476 - sources."semver-7.5.0" 15639 + sources."semver-7.5.4" 14477 15640 sources."to-readable-stream-2.1.0" 14478 15641 sources."tunnel-agent-0.6.0" 14479 15642 sources."type-fest-0.10.0" ··· 14642 15805 sources."rimraf-2.7.1" 14643 15806 sources."safe-buffer-5.2.1" 14644 15807 sources."safer-buffer-2.1.2" 14645 - sources."semver-5.7.1" 15808 + sources."semver-5.7.2" 14646 15809 sources."set-blocking-2.0.0" 14647 15810 sources."shebang-command-1.2.0" 14648 15811 sources."shebang-regex-1.0.0" ··· 14710 15873 sources."process-nextick-args-2.0.1" 14711 15874 sources."readable-stream-2.3.8" 14712 15875 sources."safe-buffer-5.1.2" 14713 - sources."semver-6.3.0" 15876 + sources."semver-6.3.1" 14714 15877 sources."semver-regex-3.1.4" 14715 15878 (sources."semver-sort-1.0.0" // { 14716 15879 dependencies = [ 14717 - sources."semver-5.7.1" 15880 + sources."semver-5.7.2" 14718 15881 ]; 14719 15882 }) 14720 15883 sources."string_decoder-1.1.1" ··· 14743 15906 }; 14744 15907 dependencies = [ 14745 15908 sources."@babel/cli-7.12.10" 14746 - sources."@babel/code-frame-7.21.4" 14747 - sources."@babel/compat-data-7.21.7" 15909 + sources."@babel/code-frame-7.22.13" 15910 + sources."@babel/compat-data-7.22.20" 14748 15911 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" // { 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" // { 14753 15916 dependencies = [ 14754 - sources."semver-6.3.0" 15917 + sources."semver-6.3.1" 14755 15918 ]; 14756 15919 }) 14757 - (sources."@babel/helper-create-class-features-plugin-7.21.8" // { 15920 + (sources."@babel/helper-create-class-features-plugin-7.22.15" // { 14758 15921 dependencies = [ 14759 - sources."semver-6.3.0" 15922 + sources."semver-6.3.1" 14760 15923 ]; 14761 15924 }) 14762 - (sources."@babel/helper-create-regexp-features-plugin-7.21.8" // { 15925 + (sources."@babel/helper-create-regexp-features-plugin-7.22.15" // { 14763 15926 dependencies = [ 14764 - sources."semver-6.3.0" 15927 + sources."semver-6.3.1" 14765 15928 ]; 14766 15929 }) 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" 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" 14787 15950 sources."@babel/plugin-proposal-async-generator-functions-7.20.7" 14788 15951 sources."@babel/plugin-proposal-class-properties-7.18.6" 14789 15952 sources."@babel/plugin-proposal-dynamic-import-7.18.6" ··· 14809 15972 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 14810 15973 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 14811 15974 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" 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" 14837 16000 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" 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" 14845 16008 sources."@babel/preset-env-7.12.10" 14846 - sources."@babel/preset-modules-0.1.5" 16009 + sources."@babel/preset-modules-0.1.6" 14847 16010 sources."@babel/regjsgen-0.8.0" 14848 16011 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" 16012 + sources."@babel/template-7.22.15" 16013 + sources."@babel/traverse-7.23.0" 16014 + sources."@babel/types-7.23.0" 14852 16015 sources."@hapi/address-2.1.4" 14853 16016 sources."@hapi/bourne-1.3.2" 14854 16017 sources."@hapi/hoek-8.5.1" 14855 16018 sources."@hapi/joi-15.1.1" 14856 16019 sources."@hapi/topo-3.1.6" 14857 16020 sources."@jridgewell/gen-mapping-0.3.3" 14858 - sources."@jridgewell/resolve-uri-3.1.0" 16021 + sources."@jridgewell/resolve-uri-3.1.1" 14859 16022 sources."@jridgewell/set-array-1.1.2" 14860 16023 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 - }) 16024 + sources."@jridgewell/trace-mapping-0.3.19" 14866 16025 sources."@mrmlnc/readdir-enhanced-2.2.1" 14867 16026 sources."@nodelib/fs.stat-1.1.3" 14868 16027 sources."@types/glob-7.2.0" 14869 16028 sources."@types/html-minifier-terser-5.1.2" 14870 - sources."@types/http-proxy-1.17.11" 14871 - sources."@types/json-schema-7.0.11" 16029 + sources."@types/http-proxy-1.17.12" 16030 + sources."@types/json-schema-7.0.13" 14872 16031 sources."@types/minimatch-5.1.2" 14873 - sources."@types/node-18.16.3" 16032 + sources."@types/node-20.8.2" 14874 16033 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" // { 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" // { 14879 16038 dependencies = [ 14880 16039 sources."source-map-0.6.1" 14881 16040 ]; 14882 16041 }) 14883 - (sources."@types/webpack-4.41.33" // { 16042 + (sources."@types/webpack-4.41.34" // { 14884 16043 dependencies = [ 14885 16044 sources."source-map-0.6.1" 14886 16045 ]; 14887 16046 }) 14888 - (sources."@types/webpack-sources-3.2.0" // { 16047 + (sources."@types/webpack-sources-3.2.1" // { 14889 16048 dependencies = [ 14890 16049 sources."source-map-0.7.4" 14891 16050 ]; ··· 14936 16095 sources."array-union-1.0.2" 14937 16096 sources."array-uniq-1.0.3" 14938 16097 sources."array-unique-0.3.2" 14939 - sources."array.prototype.reduce-1.0.5" 16098 + sources."array.prototype.reduce-1.0.6" 16099 + sources."arraybuffer.prototype.slice-1.0.2" 14940 16100 sources."asap-2.0.6" 14941 16101 sources."asn1-0.2.6" 14942 16102 (sources."asn1.js-5.4.1" // { ··· 14944 16104 sources."bn.js-4.12.0" 14945 16105 ]; 14946 16106 }) 14947 - (sources."assert-1.5.0" // { 16107 + (sources."assert-1.5.1" // { 14948 16108 dependencies = [ 14949 - sources."inherits-2.0.1" 14950 - sources."util-0.10.3" 16109 + sources."inherits-2.0.3" 16110 + sources."util-0.10.4" 14951 16111 ]; 14952 16112 }) 14953 16113 sources."assert-plus-1.0.0" ··· 14970 16130 (sources."babel-loader-8.2.2" // { 14971 16131 dependencies = [ 14972 16132 sources."make-dir-3.1.0" 14973 - sources."semver-6.3.0" 16133 + sources."semver-6.3.1" 14974 16134 ]; 14975 16135 }) 14976 16136 sources."babel-plugin-syntax-object-rest-spread-6.13.0" ··· 15023 16183 ]; 15024 16184 }) 15025 16185 sources."browserify-zlib-0.2.0" 15026 - sources."browserslist-4.21.5" 16186 + sources."browserslist-4.22.1" 15027 16187 sources."buffer-4.9.2" 15028 16188 sources."buffer-from-1.1.2" 15029 16189 sources."buffer-indexof-1.1.1" ··· 15040 16200 sources."camel-case-4.1.2" 15041 16201 sources."camelcase-5.3.1" 15042 16202 sources."caniuse-api-3.0.0" 15043 - sources."caniuse-lite-1.0.30001482" 16203 + sources."caniuse-lite-1.0.30001546" 15044 16204 sources."case-sensitive-paths-webpack-plugin-2.3.0" 15045 16205 sources."caseless-0.12.0" 15046 16206 (sources."chalk-2.4.2" // { ··· 15139 16299 ]; 15140 16300 }) 15141 16301 sources."core-js-2.6.12" 15142 - sources."core-js-compat-3.30.1" 16302 + sources."core-js-compat-3.33.0" 15143 16303 sources."core-util-is-1.0.3" 15144 16304 sources."cosmiconfig-5.2.1" 15145 16305 (sources."create-ecdh-4.0.4" // { ··· 15166 16326 sources."lru-cache-6.0.0" 15167 16327 sources."picocolors-0.2.1" 15168 16328 sources."postcss-7.0.39" 15169 - sources."semver-7.5.0" 16329 + sources."semver-7.5.4" 15170 16330 sources."source-map-0.6.1" 15171 16331 sources."yallist-4.0.0" 15172 16332 ]; ··· 15212 16372 ]; 15213 16373 }) 15214 16374 sources."cycle-1.0.3" 15215 - sources."cyclist-1.0.1" 16375 + sources."cyclist-1.0.2" 15216 16376 sources."dashdash-1.14.1" 15217 16377 sources."debug-4.3.4" 15218 16378 sources."decamelize-1.2.0" 15219 16379 sources."decode-uri-component-0.2.2" 15220 16380 sources."deep-equal-0.2.2" 15221 16381 sources."default-gateway-4.2.0" 15222 - sources."define-properties-1.2.0" 16382 + sources."define-data-property-1.1.0" 16383 + sources."define-properties-1.2.1" 15223 16384 sources."define-property-2.0.2" 15224 16385 (sources."del-4.1.1" // { 15225 16386 dependencies = [ ··· 15232 16393 }) 15233 16394 sources."delayed-stream-1.0.0" 15234 16395 sources."depd-2.0.0" 15235 - sources."des.js-1.0.1" 16396 + sources."des.js-1.1.0" 15236 16397 sources."destroy-1.2.0" 15237 16398 sources."detect-node-2.1.0" 15238 16399 (sources."detect-port-alt-1.1.6" // { ··· 15263 16424 sources."duplexify-3.7.1" 15264 16425 sources."ecc-jsbn-0.1.2" 15265 16426 sources."ee-first-1.1.1" 15266 - sources."electron-to-chromium-1.4.382" 16427 + sources."electron-to-chromium-1.4.542" 15267 16428 (sources."elliptic-6.5.4" // { 15268 16429 dependencies = [ 15269 16430 sources."bn.js-4.12.0" ··· 15301 16462 sources."entities-2.2.0" 15302 16463 sources."errno-0.1.8" 15303 16464 sources."error-ex-1.3.2" 15304 - sources."es-abstract-1.21.2" 16465 + sources."es-abstract-1.22.2" 15305 16466 sources."es-array-method-boxes-properly-1.0.0" 15306 16467 sources."es-set-tostringtag-2.0.1" 15307 16468 sources."es-to-primitive-1.2.1" ··· 15409 16570 (sources."file-loader-6.2.0" // { 15410 16571 dependencies = [ 15411 16572 sources."loader-utils-2.0.4" 15412 - sources."schema-utils-3.1.2" 16573 + sources."schema-utils-3.3.0" 15413 16574 ]; 15414 16575 }) 15415 16576 sources."file-uri-to-path-1.0.0" ··· 15424 16585 (sources."find-cache-dir-3.3.2" // { 15425 16586 dependencies = [ 15426 16587 sources."make-dir-3.1.0" 15427 - sources."semver-6.3.0" 16588 + sources."semver-6.3.1" 15428 16589 ]; 15429 16590 }) 15430 16591 sources."find-elm-dependencies-2.0.4" 15431 16592 sources."find-up-4.1.0" 15432 16593 sources."firstline-1.3.1" 15433 16594 sources."flush-write-stream-1.1.1" 15434 - sources."follow-redirects-1.15.2" 16595 + sources."follow-redirects-1.15.3" 15435 16596 sources."for-each-0.3.3" 15436 16597 sources."for-in-1.0.2" 15437 16598 sources."forever-agent-0.6.1" 15438 16599 sources."form-data-2.3.3" 15439 16600 sources."forwarded-0.2.0" 15440 - sources."fraction.js-4.2.0" 16601 + sources."fraction.js-4.3.6" 15441 16602 sources."fragment-cache-0.2.1" 15442 16603 sources."fresh-0.5.2" 15443 16604 sources."from2-2.3.0" ··· 15445 16606 sources."fs-readdir-recursive-1.1.0" 15446 16607 sources."fs-write-stream-atomic-1.0.10" 15447 16608 sources."fs.realpath-1.0.0" 15448 - sources."fsevents-2.3.2" 16609 + sources."fsevents-2.3.3" 15449 16610 sources."function-bind-1.1.1" 15450 - sources."function.prototype.name-1.1.5" 16611 + sources."function.prototype.name-1.1.6" 15451 16612 sources."functions-have-names-1.2.3" 15452 16613 sources."gensync-1.0.0-beta.2" 15453 16614 sources."get-caller-file-1.0.3" 15454 - sources."get-intrinsic-1.2.0" 16615 + sources."get-intrinsic-1.2.1" 15455 16616 sources."get-own-enumerable-property-symbols-3.0.2" 15456 16617 sources."get-stream-4.1.0" 15457 16618 sources."get-symbol-description-1.0.0" ··· 15488 16649 sources."handle-thing-2.0.1" 15489 16650 sources."har-schema-2.0.0" 15490 16651 sources."har-validator-5.1.5" 15491 - sources."has-1.0.3" 16652 + sources."has-1.0.4" 15492 16653 sources."has-bigints-1.0.2" 15493 16654 sources."has-flag-3.0.0" 15494 16655 sources."has-property-descriptors-1.0.0" ··· 15587 16748 sources."is-buffer-1.1.6" 15588 16749 sources."is-callable-1.2.7" 15589 16750 sources."is-color-stop-1.1.0" 15590 - sources."is-core-module-2.12.0" 16751 + sources."is-core-module-2.13.0" 15591 16752 sources."is-data-descriptor-1.0.0" 15592 16753 sources."is-date-object-1.0.5" 15593 16754 sources."is-descriptor-1.0.2" ··· 15613 16774 sources."is-stream-1.1.0" 15614 16775 sources."is-string-1.0.7" 15615 16776 sources."is-symbol-1.0.4" 15616 - sources."is-typed-array-1.1.10" 16777 + sources."is-typed-array-1.1.12" 15617 16778 sources."is-typedarray-1.0.0" 15618 16779 sources."is-utf8-0.2.1" 15619 16780 sources."is-weakref-1.0.2" ··· 15707 16868 sources."multicast-dns-6.2.3" 15708 16869 sources."multicast-dns-service-types-1.1.0" 15709 16870 sources."mute-stream-0.0.8" 15710 - sources."nan-2.17.0" 16871 + sources."nan-2.18.0" 15711 16872 sources."nanoid-3.3.6" 15712 16873 sources."nanomatch-1.2.13" 15713 16874 sources."ncp-1.0.1" ··· 15730 16891 sources."punycode-1.4.1" 15731 16892 ]; 15732 16893 }) 15733 - sources."node-releases-2.0.10" 16894 + sources."node-releases-2.0.13" 15734 16895 sources."normalize-package-data-2.5.0" 15735 16896 sources."normalize-path-3.0.0" 15736 16897 sources."normalize-range-0.1.2" ··· 15762 16923 sources."object-keys-1.1.1" 15763 16924 sources."object-visit-1.0.1" 15764 16925 sources."object.assign-4.1.4" 15765 - sources."object.entries-1.1.6" 15766 - sources."object.getownpropertydescriptors-2.1.6" 16926 + sources."object.entries-1.1.7" 16927 + sources."object.getownpropertydescriptors-2.1.7" 15767 16928 sources."object.pick-1.3.0" 15768 - sources."object.values-1.1.6" 16929 + sources."object.values-1.1.7" 15769 16930 sources."obuf-1.1.2" 15770 16931 sources."on-finished-2.4.1" 15771 16932 sources."on-headers-1.0.2" ··· 15838 16999 ]; 15839 17000 }) 15840 17001 sources."posix-character-classes-0.1.1" 15841 - sources."postcss-8.4.23" 17002 + sources."postcss-8.4.31" 15842 17003 (sources."postcss-calc-7.0.5" // { 15843 17004 dependencies = [ 15844 17005 sources."picocolors-0.2.1" ··· 15906 17067 sources."parse-json-5.2.0" 15907 17068 sources."path-type-4.0.0" 15908 17069 sources."resolve-from-4.0.0" 15909 - sources."schema-utils-3.1.2" 15910 - sources."semver-7.5.0" 17070 + sources."schema-utils-3.3.0" 17071 + sources."semver-7.5.4" 15911 17072 sources."yallist-4.0.0" 15912 17073 ]; 15913 17074 }) ··· 16083 17244 ]; 16084 17245 }) 16085 17246 sources."postcss-safe-parser-5.0.2" 16086 - sources."postcss-selector-parser-6.0.12" 17247 + sources."postcss-selector-parser-6.0.13" 16087 17248 (sources."postcss-svgo-4.0.3" // { 16088 17249 dependencies = [ 16089 17250 sources."picocolors-0.2.1" ··· 16127 17288 sources."q-1.5.1" 16128 17289 sources."qs-6.5.3" 16129 17290 sources."query-string-4.3.4" 16130 - sources."querystring-0.2.0" 16131 17291 sources."querystring-es3-0.2.1" 16132 17292 sources."querystringify-2.2.0" 16133 17293 sources."randombytes-2.1.0" ··· 16191 17351 ]; 16192 17352 }) 16193 17353 sources."regenerate-1.4.2" 16194 - sources."regenerate-unicode-properties-10.1.0" 17354 + sources."regenerate-unicode-properties-10.1.1" 16195 17355 sources."regenerator-runtime-0.13.11" 16196 - sources."regenerator-transform-0.15.1" 17356 + sources."regenerator-transform-0.15.2" 16197 17357 sources."regex-not-1.0.2" 16198 - sources."regexp.prototype.flags-1.5.0" 17358 + sources."regexp.prototype.flags-1.5.1" 16199 17359 sources."regexpu-core-5.3.2" 16200 17360 (sources."regjsparser-0.9.1" // { 16201 17361 dependencies = [ ··· 16216 17376 sources."require-directory-2.1.1" 16217 17377 sources."require-main-filename-1.0.1" 16218 17378 sources."requires-port-1.0.0" 16219 - sources."resolve-1.22.3" 17379 + sources."resolve-1.22.6" 16220 17380 sources."resolve-cwd-2.0.0" 16221 17381 sources."resolve-dir-1.0.1" 16222 17382 sources."resolve-from-3.0.0" ··· 16236 17396 sources."tslib-1.14.1" 16237 17397 ]; 16238 17398 }) 16239 - (sources."safe-array-concat-1.0.0" // { 17399 + (sources."safe-array-concat-1.0.1" // { 16240 17400 dependencies = [ 16241 17401 sources."isarray-2.0.5" 16242 17402 ]; ··· 16249 17409 sources."schema-utils-2.7.1" 16250 17410 sources."select-hose-2.0.0" 16251 17411 sources."selfsigned-1.10.14" 16252 - sources."semver-5.7.1" 17412 + sources."semver-5.7.2" 16253 17413 (sources."send-0.18.0" // { 16254 17414 dependencies = [ 16255 17415 (sources."debug-2.6.9" // { ··· 16274 17434 }) 16275 17435 sources."serve-static-1.15.0" 16276 17436 sources."set-blocking-2.0.0" 17437 + sources."set-function-name-2.0.1" 16277 17438 (sources."set-value-2.0.1" // { 16278 17439 dependencies = [ 16279 17440 sources."extend-shallow-2.0.1" ··· 16349 17510 sources."spdx-correct-3.2.0" 16350 17511 sources."spdx-exceptions-2.3.0" 16351 17512 sources."spdx-expression-parse-3.0.1" 16352 - sources."spdx-license-ids-3.0.13" 17513 + sources."spdx-license-ids-3.0.15" 16353 17514 sources."spdy-4.0.2" 16354 17515 (sources."spdy-transport-3.0.0" // { 16355 17516 dependencies = [ ··· 16392 17553 sources."strip-ansi-6.0.1" 16393 17554 ]; 16394 17555 }) 16395 - sources."string.prototype.trim-1.2.7" 16396 - sources."string.prototype.trimend-1.0.6" 16397 - sources."string.prototype.trimstart-1.0.6" 17556 + sources."string.prototype.trim-1.2.8" 17557 + sources."string.prototype.trimend-1.0.7" 17558 + sources."string.prototype.trimstart-1.0.7" 16398 17559 sources."string_decoder-1.1.1" 16399 17560 (sources."stringify-object-3.3.0" // { 16400 17561 dependencies = [ ··· 16476 17637 sources."to-regex-range-5.0.1" 16477 17638 sources."toidentifier-1.0.1" 16478 17639 sources."tough-cookie-2.5.0" 16479 - sources."tslib-2.5.0" 17640 + sources."tslib-2.6.2" 16480 17641 sources."tty-browserify-0.0.0" 16481 17642 sources."tunnel-agent-0.6.0" 16482 17643 sources."tweetnacl-0.14.5" 16483 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" 16484 17648 sources."typed-array-length-1.0.4" 16485 17649 sources."typedarray-0.0.6" 16486 17650 (sources."uglify-es-3.3.10" // { ··· 16536 17700 ]; 16537 17701 }) 16538 17702 sources."upath-1.2.0" 16539 - sources."update-browserslist-db-1.0.11" 17703 + sources."update-browserslist-db-1.0.13" 16540 17704 sources."uri-js-4.4.1" 16541 17705 sources."urix-0.1.0" 16542 - (sources."url-0.11.0" // { 17706 + (sources."url-0.11.3" // { 16543 17707 dependencies = [ 16544 - sources."punycode-1.3.2" 17708 + sources."punycode-1.4.1" 17709 + sources."qs-6.11.2" 16545 17710 ]; 16546 17711 }) 16547 17712 (sources."url-loader-4.1.1" // { 16548 17713 dependencies = [ 16549 17714 sources."loader-utils-2.0.4" 16550 - sources."schema-utils-3.1.2" 17715 + sources."schema-utils-3.3.0" 16551 17716 ]; 16552 17717 }) 16553 17718 sources."url-parse-1.5.10" ··· 16643 17808 sources."readdirp-2.2.1" 16644 17809 sources."require-main-filename-2.0.0" 16645 17810 sources."schema-utils-1.0.0" 16646 - sources."semver-6.3.0" 17811 + sources."semver-6.3.1" 16647 17812 (sources."string-width-3.1.0" // { 16648 17813 dependencies = [ 16649 17814 sources."ansi-regex-4.1.1" ··· 16681 17846 sources."which-2.0.2" 16682 17847 sources."which-boxed-primitive-1.0.2" 16683 17848 sources."which-module-1.0.0" 16684 - sources."which-typed-array-1.1.9" 17849 + sources."which-typed-array-1.1.11" 16685 17850 (sources."winston-2.1.1" // { 16686 17851 dependencies = [ 16687 17852 sources."async-1.0.0" ··· 16799 17964 sources."pretty-format-27.5.1" 16800 17965 sources."react-is-17.0.2" 16801 17966 sources."rimraf-2.6.3" 16802 - sources."semver-5.7.1" 17967 + sources."semver-5.7.2" 16803 17968 sources."shebang-command-1.2.0" 16804 17969 sources."shebang-regex-1.0.0" 16805 17970 sources."supports-color-7.2.0" ··· 16822 17987 elm-pages = nodeEnv.buildNodePackage { 16823 17988 name = "elm-pages"; 16824 17989 packageName = "elm-pages"; 16825 - version = "2.1.12"; 17990 + version = "3.0.8"; 16826 17991 src = fetchurl { 16827 - url = "https://registry.npmjs.org/elm-pages/-/elm-pages-2.1.12.tgz"; 16828 - sha512 = "uC6XZAmakIcRYJlqywgHsnVNlwzQZxVqPo8fsFCJWBYwwjWhD/uYSFGdFwB29wyxaI6BgRi8Rm745VU1oCortg=="; 17992 + url = "https://registry.npmjs.org/elm-pages/-/elm-pages-3.0.8.tgz"; 17993 + sha512 = "ls6ZI5CMlFji/P2yg1A+Krv6A1zjm4Q1+gpkMjZsAcmg2gABjN6R4ZATbD6/+hosSaAvsnZ1rRUTCPRsncYg+w=="; 16829 17994 }; 16830 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" 16831 18020 sources."@jridgewell/gen-mapping-0.3.3" 16832 - sources."@jridgewell/resolve-uri-3.1.0" 18021 + sources."@jridgewell/resolve-uri-3.1.1" 16833 18022 sources."@jridgewell/set-array-1.1.2" 16834 - sources."@jridgewell/source-map-0.3.3" 18023 + sources."@jridgewell/source-map-0.3.5" 16835 18024 sources."@jridgewell/sourcemap-codec-1.4.15" 16836 - (sources."@jridgewell/trace-mapping-0.3.18" // { 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" // { 16837 18030 dependencies = [ 16838 - sources."@jridgewell/sourcemap-codec-1.4.14" 18031 + sources."lru-cache-6.0.0" 18032 + sources."semver-7.5.4" 16839 18033 ]; 16840 18034 }) 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 18035 sources."@sindresorhus/is-0.14.0" 16845 18036 sources."@szmarczak/http-timer-1.1.2" 18037 + sources."@tootallnate/once-2.0.0" 16846 18038 sources."@types/configstore-2.1.1" 16847 18039 sources."@types/debug-0.0.30" 16848 18040 sources."@types/get-port-3.2.0" 16849 18041 sources."@types/glob-5.0.38" 16850 - sources."@types/lodash-4.14.194" 18042 + sources."@types/lodash-4.14.199" 16851 18043 sources."@types/minimatch-5.1.2" 16852 18044 sources."@types/mkdirp-0.5.2" 16853 18045 sources."@types/node-8.10.66" 16854 18046 sources."@types/rimraf-2.0.5" 16855 18047 sources."@types/tmp-0.0.33" 16856 18048 sources."accepts-1.3.8" 16857 - sources."acorn-8.8.2" 16858 - sources."ansi-escapes-3.2.0" 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" 16859 18060 sources."ansi-styles-4.3.0" 16860 18061 sources."anymatch-3.1.3" 16861 18062 sources."application-config-path-0.1.1" 16862 18063 sources."argparse-1.0.10" 16863 18064 sources."array-flatten-1.1.1" 16864 - sources."array-union-2.1.0" 16865 18065 sources."async-limiter-1.0.1" 16866 18066 sources."balanced-match-1.0.2" 16867 18067 sources."batch-0.6.1" ··· 16875 18075 sources."braces-3.0.2" 16876 18076 sources."buffer-from-1.1.2" 16877 18077 sources."bufferutil-4.0.7" 18078 + sources."busboy-1.6.0" 16878 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 + }) 16879 18088 (sources."cacheable-request-6.1.0" // { 16880 18089 dependencies = [ 16881 18090 sources."get-stream-5.2.0" ··· 16884 18093 }) 16885 18094 sources."call-bind-1.0.2" 16886 18095 sources."chalk-3.0.0" 16887 - sources."chokidar-3.5.2" 18096 + sources."chokidar-3.5.3" 18097 + sources."chownr-2.0.0" 18098 + sources."clean-stack-2.2.0" 16888 18099 sources."clone-response-1.0.3" 16889 18100 sources."color-convert-2.0.1" 16890 18101 sources."color-name-1.1.4" 16891 18102 sources."command-exists-1.2.9" 16892 - sources."commander-8.3.0" 18103 + sources."commander-10.0.1" 16893 18104 sources."concat-map-0.0.1" 16894 18105 sources."connect-3.7.0" 16895 18106 sources."content-disposition-0.5.4" 16896 18107 sources."content-type-1.0.5" 16897 18108 sources."cookie-0.5.0" 16898 - sources."cookie-signature-1.0.6" 16899 - sources."cross-spawn-7.0.3" 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 + }) 16900 18116 sources."debug-2.6.9" 16901 18117 sources."decompress-response-3.3.0" 16902 18118 sources."deep-extend-0.6.0" 16903 18119 sources."defer-to-connect-1.1.3" 16904 18120 sources."depd-2.0.0" 16905 18121 sources."destroy-1.2.0" 18122 + sources."detect-libc-1.0.3" 16906 18123 (sources."devcert-1.2.2" // { 16907 18124 dependencies = [ 16908 18125 sources."debug-3.2.7" ··· 16911 18128 }) 16912 18129 sources."dir-glob-3.0.1" 16913 18130 sources."duplexer3-0.1.5" 18131 + sources."eastasianwidth-0.2.0" 16914 18132 sources."ee-first-1.1.1" 16915 18133 (sources."elm-doc-preview-5.0.5" // { 16916 18134 dependencies = [ ··· 16919 18137 ]; 16920 18138 }) 16921 18139 sources."elm-hot-1.1.6" 18140 + sources."emoji-regex-9.2.2" 16922 18141 sources."encodeurl-1.0.2" 16923 18142 sources."end-of-stream-1.4.4" 16924 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" 16925 18147 sources."escape-html-1.0.3" 16926 18148 sources."esprima-4.0.1" 16927 18149 sources."etag-1.8.1" 16928 18150 (sources."express-4.18.2" // { 16929 18151 dependencies = [ 18152 + sources."cookie-signature-1.0.6" 16930 18153 sources."finalhandler-1.2.0" 16931 18154 sources."on-finished-2.4.1" 16932 18155 sources."statuses-2.0.1" ··· 16938 18161 ]; 16939 18162 }) 16940 18163 sources."extend-shallow-2.0.1" 16941 - sources."fast-glob-3.2.12" 18164 + sources."fast-glob-3.3.1" 16942 18165 sources."fastq-1.15.0" 16943 18166 sources."fill-range-7.0.1" 16944 18167 sources."finalhandler-1.1.2" 18168 + sources."foreground-child-3.1.1" 16945 18169 sources."forwarded-0.2.0" 16946 18170 sources."fresh-0.5.2" 16947 - sources."fs-extra-10.1.0" 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" 16948 18178 sources."fs.realpath-1.0.0" 16949 - sources."fsevents-2.3.2" 18179 + sources."fsevents-2.3.3" 16950 18180 sources."function-bind-1.1.1" 16951 - sources."get-intrinsic-1.2.0" 18181 + sources."get-intrinsic-1.2.1" 16952 18182 sources."get-port-3.2.0" 16953 18183 sources."get-stream-4.1.0" 16954 18184 sources."glob-7.2.3" 16955 18185 sources."glob-parent-5.1.2" 16956 - sources."globby-11.0.4" 18186 + sources."globby-13.1.4" 16957 18187 sources."got-9.6.0" 16958 18188 sources."graceful-fs-4.2.11" 16959 18189 sources."gray-matter-4.0.3" 16960 - sources."has-1.0.3" 18190 + sources."has-1.0.4" 16961 18191 sources."has-flag-4.0.0" 18192 + sources."has-proto-1.0.1" 16962 18193 sources."has-symbols-1.0.3" 16963 18194 sources."http-cache-semantics-4.1.1" 16964 18195 (sources."http-errors-2.0.0" // { ··· 16966 18197 sources."statuses-2.0.1" 16967 18198 ]; 16968 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" 16969 18213 sources."iconv-lite-0.4.24" 16970 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" 16971 18219 sources."inflight-1.0.6" 16972 18220 sources."inherits-2.0.4" 16973 18221 sources."ini-1.3.8" 18222 + sources."ip-2.0.0" 16974 18223 sources."ipaddr.js-1.9.1" 16975 18224 sources."is-binary-path-2.1.0" 16976 18225 sources."is-docker-2.2.1" 16977 18226 sources."is-extendable-0.1.1" 16978 18227 sources."is-extglob-2.1.1" 18228 + sources."is-fullwidth-code-point-3.0.0" 16979 18229 sources."is-glob-4.0.3" 18230 + sources."is-lambda-1.0.1" 16980 18231 sources."is-number-7.0.0" 16981 18232 sources."is-valid-domain-0.1.6" 18233 + sources."is-what-3.14.1" 16982 18234 sources."is-wsl-2.2.0" 16983 18235 sources."isexe-2.0.0" 18236 + sources."jackspeak-2.3.6" 16984 18237 sources."js-yaml-3.14.1" 16985 18238 sources."jsesc-3.0.2" 16986 18239 sources."json-buffer-3.0.0" ··· 16989 18242 sources."kind-of-6.0.3" 16990 18243 sources."kleur-4.1.5" 16991 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" 16992 18260 sources."lodash-4.17.21" 16993 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" 16994 18269 sources."media-typer-0.3.0" 18270 + sources."memfs-3.6.0" 16995 18271 sources."merge-descriptors-1.0.1" 16996 18272 sources."merge2-1.4.1" 16997 18273 sources."methods-1.1.2" ··· 17002 18278 sources."mimic-response-1.0.1" 17003 18279 sources."minimatch-3.1.2" 17004 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 + }) 17005 18312 sources."mkdirp-0.5.6" 17006 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 + }) 17007 18322 sources."negotiator-0.6.3" 17008 - sources."nice-try-1.0.5" 17009 - sources."node-gyp-build-4.6.0" 18323 + sources."node-gyp-build-4.6.1" 17010 18324 sources."normalize-path-3.0.0" 17011 18325 sources."normalize-url-4.5.1" 17012 - sources."object-hash-2.2.0" 17013 18326 sources."object-inspect-1.12.3" 17014 18327 sources."on-finished-2.3.0" 17015 18328 sources."once-1.4.0" 17016 18329 sources."open-7.4.2" 17017 18330 sources."os-tmpdir-1.0.2" 17018 18331 sources."p-cancelable-1.1.0" 17019 - (sources."package-json-6.5.0" // { 17020 - dependencies = [ 17021 - sources."semver-6.3.0" 17022 - ]; 17023 - }) 18332 + sources."p-map-4.0.0" 18333 + sources."package-json-6.5.0" 18334 + sources."parse-node-version-1.0.1" 17024 18335 sources."parseurl-1.3.3" 17025 - (sources."password-prompt-1.1.2" // { 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" // { 17026 18340 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" 18341 + sources."lru-cache-10.0.1" 17032 18342 ]; 17033 18343 }) 17034 - sources."path-is-absolute-1.0.1" 17035 - sources."path-key-3.1.1" 17036 18344 sources."path-to-regexp-0.1.7" 17037 18345 sources."path-type-4.0.0" 18346 + sources."picocolors-1.0.0" 17038 18347 sources."picomatch-2.3.1" 18348 + sources."pify-4.0.1" 18349 + sources."postcss-8.4.31" 17039 18350 sources."prepend-http-2.0.0" 18351 + sources."promise-retry-2.0.1" 17040 18352 sources."proxy-addr-2.0.7" 18353 + sources."prr-1.0.1" 17041 18354 sources."pump-3.0.0" 17042 18355 sources."punycode-2.3.0" 17043 18356 sources."qs-6.11.0" ··· 17049 18362 sources."registry-auth-token-4.2.2" 17050 18363 sources."registry-url-5.1.0" 17051 18364 sources."responselike-1.0.2" 18365 + sources."retry-0.12.0" 17052 18366 sources."reusify-1.0.4" 17053 18367 sources."rimraf-2.7.1" 18368 + sources."rollup-3.29.4" 17054 18369 sources."run-parallel-1.2.0" 17055 18370 sources."safe-buffer-5.2.1" 17056 18371 sources."safer-buffer-2.1.2" 18372 + sources."sass-1.68.0" 18373 + sources."sax-1.3.0" 17057 18374 sources."section-matter-1.0.0" 17058 - sources."semver-5.7.1" 18375 + sources."semver-6.3.1" 17059 18376 (sources."send-0.18.0" // { 17060 18377 dependencies = [ 17061 18378 sources."ms-2.1.3" ··· 17076 18393 sources."shebang-command-2.0.0" 17077 18394 sources."shebang-regex-3.0.0" 17078 18395 sources."side-channel-1.0.4" 17079 - sources."slash-3.0.0" 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 + }) 17080 18406 sources."source-map-0.6.1" 18407 + sources."source-map-js-1.0.2" 17081 18408 sources."source-map-support-0.5.21" 17082 18409 sources."sprintf-js-1.0.3" 18410 + (sources."ssri-10.0.5" // { 18411 + dependencies = [ 18412 + sources."minipass-7.0.4" 18413 + ]; 18414 + }) 17083 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" 17084 18430 sources."strip-bom-string-1.0.0" 17085 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 + }) 17086 18440 sources."sudo-prompt-8.2.5" 18441 + sources."sugarss-4.0.1" 17087 18442 sources."supports-color-7.2.0" 17088 - (sources."terser-5.17.1" // { 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" // { 17089 18454 dependencies = [ 17090 18455 sources."commander-2.20.3" 17091 18456 ]; ··· 17095 18460 sources."to-regex-range-5.0.1" 17096 18461 sources."toidentifier-1.0.1" 17097 18462 sources."tslib-1.14.1" 18463 + sources."type-fest-0.21.3" 17098 18464 sources."type-is-1.6.18" 17099 - sources."undici-4.16.0" 18465 + sources."unique-filename-3.0.0" 18466 + sources."unique-slug-4.0.0" 17100 18467 sources."universalify-2.0.0" 17101 18468 sources."unpipe-1.0.0" 17102 18469 sources."url-parse-lax-3.0.0" 17103 18470 sources."utf-8-validate-5.0.10" 17104 18471 sources."utils-merge-1.0.1" 17105 18472 sources."vary-1.1.2" 17106 - sources."which-2.0.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 + }) 17107 18514 sources."wrappy-1.0.2" 17108 18515 sources."ws-7.5.9" 18516 + sources."yallist-4.0.0" 17109 18517 ]; 17110 18518 buildInputs = globalBuildInputs; 17111 18519 meta = { ··· 17120 18528 elm-review = nodeEnv.buildNodePackage { 17121 18529 name = "elm-review"; 17122 18530 packageName = "elm-review"; 17123 - version = "2.10.1"; 18531 + version = "2.10.3"; 17124 18532 src = fetchurl { 17125 - url = "https://registry.npmjs.org/elm-review/-/elm-review-2.10.1.tgz"; 17126 - sha512 = "uEc4McppMqmWEaRo+jo5RowbDyfcBr0MTFN0kZt9gWrmmK6hPilTJJGtRmoH+K/aJtq4ZPDDF97oAFdkylD1gg=="; 18533 + url = "https://registry.npmjs.org/elm-review/-/elm-review-2.10.3.tgz"; 18534 + sha512 = "9gBqLc5Xm3v9Ncpf8y2haEaBZZyMX25vmwQkrNqSIaNYQ2vdGOIx1eyqRtt1xwX5O8pZdqU8IWC/ENyTrOTKbw=="; 17127 18535 }; 17128 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 + }) 17129 18544 sources."@sindresorhus/is-4.6.0" 17130 18545 sources."@szmarczak/http-timer-4.0.6" 17131 18546 sources."@types/cacheable-request-6.0.3" 17132 - sources."@types/http-cache-semantics-4.0.1" 18547 + sources."@types/http-cache-semantics-4.0.2" 17133 18548 sources."@types/keyv-3.1.4" 17134 - sources."@types/node-18.16.3" 17135 - sources."@types/responselike-1.0.0" 18549 + sources."@types/node-20.8.2" 18550 + sources."@types/responselike-1.0.1" 17136 18551 sources."ansi-escapes-4.3.2" 17137 - sources."ansi-regex-5.0.1" 18552 + sources."ansi-regex-6.0.1" 17138 18553 sources."ansi-styles-4.3.0" 17139 18554 sources."anymatch-3.1.3" 17140 18555 sources."at-least-node-1.0.0" ··· 17146 18561 sources."braces-3.0.2" 17147 18562 sources."buffer-5.7.1" 17148 18563 sources."cacheable-lookup-5.0.4" 17149 - sources."cacheable-request-7.0.2" 18564 + sources."cacheable-request-7.0.4" 17150 18565 sources."chalk-4.1.2" 17151 18566 sources."chokidar-3.5.3" 17152 18567 sources."cli-cursor-3.1.0" 17153 - sources."cli-spinners-2.9.0" 18568 + sources."cli-spinners-2.9.1" 17154 18569 sources."clone-1.0.4" 17155 18570 sources."clone-response-1.0.3" 17156 18571 sources."color-convert-2.0.1" ··· 17165 18580 }) 17166 18581 sources."defaults-1.0.4" 17167 18582 sources."defer-to-connect-2.0.1" 17168 - sources."elm-tooling-1.14.0" 17169 - sources."emoji-regex-8.0.0" 18583 + sources."eastasianwidth-0.2.0" 18584 + sources."elm-tooling-1.15.0" 18585 + sources."emoji-regex-9.2.2" 17170 18586 sources."end-of-stream-1.4.4" 17171 - sources."fast-levenshtein-3.0.0" 17172 18587 sources."fastest-levenshtein-1.0.16" 17173 18588 sources."fill-range-7.0.1" 17174 18589 sources."find-up-4.1.0" 17175 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 + }) 17176 18596 sources."fs-extra-9.1.0" 17177 18597 sources."fs.realpath-1.0.0" 17178 - sources."fsevents-2.3.2" 18598 + sources."fsevents-2.3.3" 17179 18599 sources."get-stream-5.2.0" 17180 18600 (sources."glob-7.2.3" // { 17181 18601 dependencies = [ ··· 17199 18619 sources."is-number-7.0.0" 17200 18620 sources."is-unicode-supported-0.1.0" 17201 18621 sources."isexe-2.0.0" 18622 + sources."jackspeak-2.3.6" 17202 18623 sources."json-buffer-3.0.1" 17203 18624 sources."jsonfile-6.1.0" 17204 - sources."keyv-4.5.2" 18625 + sources."keyv-4.5.3" 17205 18626 sources."kleur-3.0.3" 17206 18627 sources."locate-path-5.0.0" 17207 18628 sources."log-symbols-4.1.0" 17208 18629 sources."lowercase-keys-2.0.0" 18630 + sources."lru-cache-10.0.1" 17209 18631 sources."mimic-fn-2.1.0" 17210 18632 sources."mimic-response-1.0.1" 17211 18633 sources."minimatch-3.0.8" 17212 18634 sources."minimist-1.2.8" 17213 - sources."mkdirp-0.5.6" 18635 + sources."minipass-7.0.4" 17214 18636 sources."ms-2.1.2" 17215 18637 sources."normalize-path-3.0.0" 17216 18638 sources."normalize-url-6.1.0" ··· 17224 18646 sources."path-exists-4.0.0" 17225 18647 sources."path-is-absolute-1.0.1" 17226 18648 sources."path-key-3.1.1" 18649 + sources."path-scurry-1.10.1" 17227 18650 sources."picomatch-2.3.1" 17228 18651 sources."prompts-2.4.2" 17229 18652 sources."pump-3.0.0" ··· 17233 18656 sources."resolve-alpn-1.2.1" 17234 18657 sources."responselike-2.0.1" 17235 18658 sources."restore-cursor-3.1.0" 17236 - sources."rimraf-2.6.3" 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 + }) 17237 18666 sources."safe-buffer-5.2.1" 17238 18667 sources."shebang-command-2.0.0" 17239 18668 sources."shebang-regex-3.0.0" 17240 18669 sources."signal-exit-3.0.7" 17241 18670 sources."sisteransi-1.0.5" 17242 - sources."string-width-4.2.3" 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 + }) 17243 18681 sources."string_decoder-1.3.0" 17244 - sources."strip-ansi-6.0.1" 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 + }) 17245 18692 sources."supports-color-7.2.0" 17246 18693 sources."supports-hyperlinks-2.3.0" 17247 - sources."temp-0.9.4" 17248 18694 sources."terminal-link-2.1.1" 17249 18695 sources."to-regex-range-5.0.1" 17250 18696 sources."type-fest-0.21.3" ··· 17252 18698 sources."util-deprecate-1.0.2" 17253 18699 sources."wcwidth-1.0.1" 17254 18700 sources."which-2.0.2" 17255 - sources."wrap-ansi-6.2.0" 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 + }) 17256 18713 sources."wrappy-1.0.2" 17257 18714 ]; 17258 18715 buildInputs = globalBuildInputs; ··· 17280 18737 sources."git-clone-able-0.1.2" 17281 18738 sources."lru-cache-6.0.0" 17282 18739 sources."ms-2.1.2" 17283 - sources."semver-7.5.0" 17284 - sources."simple-git-3.18.0" 18740 + sources."semver-7.5.4" 18741 + sources."simple-git-3.20.0" 17285 18742 sources."upath-2.0.1" 17286 18743 sources."yallist-4.0.0" 17287 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 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "lobster"; 21 - version = "2023.11"; 21 + version = "2023.12"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "aardappel"; 25 25 repo = "lobster"; 26 26 rev = "v${version}"; 27 - sha256 = "sha256-c0EElDvoFzIZvYZpjWd9az+KUxDXTETOp89I/tRCrQ0="; 27 + sha256 = "sha256-0hEcbLq8thlgMtCcWt8SR5XsNgQfNH4+qdE0cHfRveo="; 28 28 }; 29 29 30 30 nativeBuildInputs = [ cmake ];
+8 -1
pkgs/development/libraries/unixODBCDrivers/default.nix
··· 55 55 fetchSubmodules = true; 56 56 }; 57 57 58 + patches = [ 59 + # Fix `call to undeclared function 'sleep'` with clang 16 60 + ./mariadb-connector-odbc-unistd.patch 61 + ]; 62 + 58 63 nativeBuildInputs = [ cmake ]; 59 - buildInputs = [ unixODBC openssl libiconv ]; 64 + buildInputs = [ unixODBC openssl libiconv zlib ] 65 + ++ lib.optionals stdenv.isDarwin [ libkrb5 ]; 60 66 61 67 preConfigure = '' 62 68 # we don't want to build a .pkg ··· 66 72 ''; 67 73 68 74 cmakeFlags = [ 75 + "-DWITH_EXTERNAL_ZLIB=ON" 69 76 "-DODBC_LIB_DIR=${lib.getLib unixODBC}/lib" 70 77 "-DODBC_INCLUDE_DIR=${lib.getDev unixODBC}/include" 71 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 1 { lib 2 2 , buildDunePackage 3 3 , fetchFromGitHub 4 + , alcotest 5 + , qcheck-core 4 6 }: 5 7 6 8 buildDunePackage rec { 7 9 pname = "algaeff"; 8 - version = "0.2.1"; 10 + version = "1.1.0"; 9 11 10 12 minimalOCamlVersion = "5.0"; 11 - duneVersion = "3"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "RedPRL"; 15 16 repo = pname; 16 17 rev = version; 17 - hash = "sha256-jpnJhF+LN2ef6QPLcCHxcMg3Fr3GSLOnJkZ9ZUIOrlY="; 18 + hash = "sha256-7kwQmoT8rpQWPHc+BZQi9fcZhgHxS99158ebXAXlpQ8="; 18 19 }; 20 + 21 + doCheck = true; 22 + checkInputs = [ alcotest qcheck-core ]; 19 23 20 24 meta = { 21 25 description = "Reusable Effects-Based Components";
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "botocore-stubs"; 12 - version = "1.31.57"; 12 + version = "1.31.60"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 17 17 src = fetchPypi { 18 18 pname = "botocore_stubs"; 19 19 inherit version; 20 - hash = "sha256-4o88p6YnnwHc7EZjmAvoCqk9xOsu/MI5aFnOtkdiO4M="; 20 + hash = "sha256-mBNODmy8MhpZPYwRpuJTK3TYy4Rkvz880BhLzFnxs54="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/env-canada/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "env-canada"; 18 - version = "0.5.36"; 18 + version = "0.5.37"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.8"; ··· 24 24 owner = "michaeldavie"; 25 25 repo = "env_canada"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-5eA9fqL748VigNgy1G7bZtMstV7EI9LLPhv6xZnCEFA="; 27 + hash = "sha256-HKtUSINJNREvu5t2jMEirkwMG6O9tBnWhACMv4L01TE="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/gitignore-parser/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "gitignore-parser"; 10 - version = "0.1.7"; 10 + version = "0.1.8"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 16 16 owner = "mherrmann"; 17 17 repo = "gitignore_parser"; 18 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-Zw7BuhdUzd0pjlRHf3KbkOUhLuBVvlKhWIzZocKOU30="; 19 + hash = "sha256-FgP1moyfxgPmPOWpSp6+UXZOzL5HDofg3ECh53x4iaE="; 20 20 }; 21 21 22 22 nativeCheckInputs = [
+2 -2
pkgs/development/python-modules/prayer-times-calculator/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "prayer-times-calculator"; 10 - version = "0.0.8"; 10 + version = "0.0.9"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.6"; ··· 16 16 owner = "uchagani"; 17 17 repo = pname; 18 18 rev = "refs/tags/${version}"; 19 - hash = "sha256-Zk7lzZUfojJrsrLRS9cf9AhEfGGsxZJo2MnIIOv6Ezk="; 19 + hash = "sha256-QIUMxs6NOqnljTi1UNp7bCQ9TgBy/u+BWEqgr2C854g="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pypoint/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pypoint"; 10 - version = "2.3.1"; 10 + version = "2.3.2"; 11 11 format = "setuptools"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "fredrike"; 15 15 repo = "pypoint"; 16 16 rev = "v${version}"; 17 - hash = "sha256-fO0un6YIK3jutzUxbu9mSqPZHfLa3pMtfxOy1iV3Qio="; 17 + hash = "sha256-tQ5rQs6ECn9O9dVXKWhmy9BBpOzgqSmwpmbIRbJn2CQ="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/tagoio-sdk/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "tagoio-sdk"; 17 - version = "4.1.1"; 17 + version = "4.2.0"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.9"; ··· 23 23 owner = "tago-io"; 24 24 repo = "sdk-python"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-GHjkw7B/T+XZ3F3XCI0INpx9NWjORr0lbuGse/W25wY="; 26 + hash = "sha256-ebNiEvQ1U0RLrH3OOt/oRRPElg+9jibj7fsEEd1hdmU="; 27 27 }; 28 28 29 29 pythonRelaxDeps = [
+2 -2
pkgs/servers/keycloak/default.nix
··· 18 18 ''; 19 19 in stdenv.mkDerivation rec { 20 20 pname = "keycloak"; 21 - version = "22.0.3"; 21 + version = "22.0.4"; 22 22 23 23 src = fetchzip { 24 24 url = "https://github.com/keycloak/keycloak/releases/download/${version}/keycloak-${version}.zip"; 25 - hash = "sha256-QDa5YPPi7JR8fd3jni8fjkwWH/PF023avVBENEwnbVA="; 25 + hash = "sha256-wl6kZmm6o9UspKdVHDqUvoDCRALp1ut7Sun/RDuEMLI="; 26 26 }; 27 27 28 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 13 , gzip 14 14 , gnutar 15 15 , git 16 + , esbuild 16 17 , cacert 17 18 , util-linux 18 19 , gawk ··· 46 47 }@args: 47 48 48 49 let 49 - version = "3.1.0"; 50 + version = "3.2.0.beta1"; 50 51 51 52 src = fetchFromGitHub { 52 53 owner = "discourse"; 53 54 repo = "discourse"; 54 55 rev = "v${version}"; 55 - sha256 = "sha256-Iv7VSnK8nZDpmIwIRPedSWlftABKuMOQ4MXDGpjuWrY="; 56 + sha256 = "sha256-HVjt5rsLSuyOaQxkbiTrsYsSXj3oSWjke98QVp+tEqk="; 56 57 }; 57 58 58 59 ruby = ruby_3_2; ··· 65 66 gnutar 66 67 git 67 68 brotli 69 + esbuild 68 70 69 71 # Misc required system utils 70 72 which ··· 202 204 203 205 yarnOfflineCache = fetchYarnDeps { 204 206 yarnLock = src + "/app/assets/javascripts/yarn.lock"; 205 - sha256 = "0sclrv3303dgg3r08dwhd1yvi3pvlnvnikn300vjsh6c71fnzhnj"; 207 + sha256 = "070h66zp8kmsigbrkh5d3jzbzvllzhbx0fa2yzx5lbpgnjhih3p2"; 206 208 }; 207 209 208 210 nativeBuildInputs = runtimeDeps ++ [ ··· 215 217 nodejs_18 216 218 jq 217 219 moreutils 220 + esbuild 218 221 ]; 219 222 220 223 outputs = [ "out" "javascripts" ]; ··· 238 241 # hasn't been `patchShebangs`-ed yet. So instead we just use 239 242 # `patch-package` from `nativeBuildInputs`. 240 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 241 250 ]; 242 251 243 252 # We have to set up an environment that is close enough to ··· 351 360 352 361 # Make sure the notification email setting applies 353 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 354 369 ]; 355 370 356 371 postPatch = ''
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-assign"; 8 - rev = "0cbf10b8055370445bd36536e51986bf48bdc57e"; 9 - sha256 = "sha256-7rJ2zQo1nCHwtVuLJUmdj66Ky2bi4Cpo+22H3DbO1uo="; 8 + rev = "e9c7cb5c3f90109bc47223b0aa4054d681e9cc04"; 9 + sha256 = "sha256-w1h1dCSyOml+AT7lPKENYfawm6BU2De5CyBHrDnDcrM="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-docs";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-bbcode-color/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-bbcode-color"; 8 - rev = "35aab2e9b92f8b01633d374ea999e7fd59d020d7"; 9 - sha256 = "sha256-DHckx921EeQysm1UPloCrt43BJetTnZKnTbJGk15NMs="; 8 + rev = "79ed22b3a3352adbd20f7e2222b9dbdb9fbaf7fe"; 9 + sha256 = "sha256-AHgny9BW/ssmv0U2lwzVWgYKPsvWHD6kgU3mBMFX4Aw="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-bbcode-color";
+1 -1
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/Gemfile.lock
··· 22 22 rrule (= 0.4.4) 23 23 24 24 BUNDLED WITH 25 - 2.4.13 25 + 2.4.17
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix
··· 6 6 src = fetchFromGitHub { 7 7 owner = "discourse"; 8 8 repo = "discourse-calendar"; 9 - rev = "afc2ee684de41601d6cecc46713d139760f176a6"; 10 - sha256 = "sha256-rTQWO+E/Jg4zjZDYDvBrDQsox5q4dHkdQjwnJxgv3dI="; 9 + rev = "4d4fe40d09f7232b1348e1ff910b37b2cec0835d"; 10 + sha256 = "sha256-w1sqE3KxwrE8SWqZUtPVhjITOPFXwlj4iPyPZeSfvtI="; 11 11 }; 12 12 meta = with lib; { 13 13 homepage = "https://github.com/discourse/discourse-calendar";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-chat-integration"; 8 - rev = "70fea6b66b68868aa4c00b45a169436deaa142a8"; 9 - sha256 = "sha256-K9MmP1F0B6Na2dTqgnsjMbTQFkF+nNKkI8aF3zPAodc="; 8 + rev = "4f9ccb58cae8600dcb6db84f38f235283911e6e8"; 9 + sha256 = "sha256-Em9aAwAfUoqsOHLrqNhxUQXsO4Owydf9nhCHbBaqqpg="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-chat-integration";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-data-explorer"; 8 - rev = "e4f8d3924a18b303c2bb7da9472cf0c060060e4e"; 9 - sha256 = "sha256-K+GPszO3je6NmnhIRSqSEhylUK5oEByaS0bLfAGjvB4="; 8 + rev = "06193f27ef15828479eea61ae4a80bf59806a535"; 9 + sha256 = "sha256-afjqgi2gzRpbZt5K9yXPy4BJ5qRv7A4ZkXHX85+Cv7s="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-data-explorer";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-docs"; 8 - rev = "a4b203274b88c5277d0b5b936de0bc0e0016726c"; 9 - sha256 = "sha256-R+VP/gsb2Oa6lPVMhRoGZzOBx5C7kRSxqwYpWE10GHw="; 8 + rev = "89c7274b1a730edefd1b56c13b8c04305d4ef331"; 9 + sha256 = "sha256-j3zrGmoAvbSHFnbiUfetyfiQJebrtW3Iw5GvsRRq1kk="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-docs";
+4 -2
pkgs/servers/web-apps/discourse/plugins/discourse-github/Gemfile.lock
··· 3 3 specs: 4 4 addressable (2.8.5) 5 5 public_suffix (>= 2.0.2, < 6.0) 6 - faraday (2.7.10) 6 + base64 (0.1.1) 7 + faraday (2.7.11) 8 + base64 7 9 faraday-net_http (>= 2.0, < 3.1) 8 10 ruby2_keywords (>= 0.0.4) 9 11 faraday-net_http (3.0.2) ··· 24 26 sawyer (= 0.9.2) 25 27 26 28 BUNDLED WITH 27 - 2.4.13 29 + 2.4.17
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix
··· 6 6 src = fetchFromGitHub { 7 7 owner = "discourse"; 8 8 repo = "discourse-github"; 9 - rev = "8aa068d56ef010cecaabd50657e7753f4bbecc1f"; 10 - sha256 = "sha256-WzljuGvv6pki3ROkvhXZWQaq5D9JkCbWjdlkdRI8lHE="; 9 + rev = "21fa5c97ca23b4c39aef5ab9c4f8ebb22f19a19b"; 10 + sha256 = "sha256-0Teu6nMJWAT9TCjZ0RWZKtfsUKAS1cga5DvALIvrUyY="; 11 11 }; 12 12 meta = with lib; { 13 13 homepage = "https://github.com/discourse/discourse-github";
+13 -3
pkgs/servers/web-apps/discourse/plugins/discourse-github/gemset.nix
··· 10 10 }; 11 11 version = "2.8.5"; 12 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 + }; 13 23 faraday = { 14 - dependencies = ["faraday-net_http" "ruby2_keywords"]; 24 + dependencies = ["base64" "faraday-net_http" "ruby2_keywords"]; 15 25 groups = ["default"]; 16 26 platforms = []; 17 27 source = { 18 28 remotes = ["https://rubygems.org"]; 19 - sha256 = "187clqhp9mv5mnqmjlfdp57svhsg1bggz84ak8v333j9skrnrgh9"; 29 + sha256 = "0vn7jwss2v6jhnxvjsiwbs3irjwhbx9zxn4l6fhd4rkcfyxzdnw5"; 20 30 type = "gem"; 21 31 }; 22 - version = "2.7.10"; 32 + version = "2.7.11"; 23 33 }; 24 34 faraday-net_http = { 25 35 groups = ["default"];
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-math/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-math"; 8 - rev = "529ad1fe6da924da378a60bec48c35657bb01a68"; 9 - sha256 = "sha256-zhtAy0tTVMzQfPilTwfyyzxgCJD4xazOITBuliFR5Gg="; 8 + rev = "66d522cd8e4cf98547f083c4decdc64c688767de"; 9 + sha256 = "sha256-Zil6LWl6ACyP/ZkxNli1u9/3dlHFRETtmIov1BmQ3u4="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-math";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix
··· 6 6 src = fetchFromGitHub { 7 7 owner = "discourse"; 8 8 repo = "discourse-openid-connect"; 9 - rev = "b1df541ad29f6f6098a1008b83393b2d400986ed"; 10 - sha256 = "sha256-afRd/9M0nQGkS14Q8BJhcJwMCkOku3Fr0uHxcRl44vQ="; 9 + rev = "322bf50700840b327d9a52091fedbacc0bb1edfe"; 10 + sha256 = "sha256-8WMhlKHYVm2wHbkP7b8dhOosvwDNjHqTrEziQT1Bu/4="; 11 11 }; 12 12 meta = with lib; { 13 13 homepage = "https://github.com/discourse/discourse-openid-connect";
+1 -1
pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/Gemfile.lock
··· 13 13 webrick (= 1.7.0) 14 14 15 15 BUNDLED WITH 16 - 2.4.13 16 + 2.4.17
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix
··· 6 6 src = fetchFromGitHub { 7 7 owner = "discourse"; 8 8 repo = "discourse-prometheus"; 9 - rev = "8a7a46a80cc65aa0839bc5e3c3b6f8ef6544089f"; 10 - sha256 = "sha256-TL+pbP26LvRMKdy8CAuBEK+LZfAs8HfggMeUDaBu9hc="; 9 + rev = "305610c90079556cdfa2aa09b567a6ca10d11de5"; 10 + sha256 = "sha256-dz+/2pbbhs8sxYMxe/wAjvdxoU4ihjN95A4ngP0KzQg="; 11 11 }; 12 12 13 13 patches = [
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-reactions/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-reactions"; 8 - rev = "643f807a3a2195f08211064301f0350d9f51604f"; 9 - sha256 = "sha256-4FdiYUNysSuOJ664G3YvlUHx/J7MLUS3kVBdXT47oEw="; 8 + rev = "f04f077e9f0392ca2373ca001044069d650ae6e5"; 9 + sha256 = "sha256-HuFXgfd5HO7qfVlf1RHxenlNL10YRF5OYya4Yt6eS14="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-reactions";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-saved-searches"; 8 - rev = "7c9bdcd68951e7cef16cafe3c4bfb583bb994d2a"; 9 - sha256 = "sha256-6RIN12ACDCeRcxmsC3FgeIPdvovI4arn7w/Dqil1yCI="; 8 + rev = "1b90d26cc35bd049d0ab7ea3922f7db6ac7ec017"; 9 + sha256 = "sha256-d+zbm8UAZ/ow8o1Y5mWAyjg5JCvQ761jcGcO72tHEIs="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-saved-searches";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-solved"; 8 - rev = "b5d487d6a5bfe2571d936eec5911d02a5f3fcc32"; 9 - sha256 = "sha256-Tt7B9PcsV8E7B+m8GnJw+MBz9rGYtojKt6NjBFMQvOM="; 8 + rev = "3b9ecc69c6a25b7671c42842b8a6f3872873f537"; 9 + sha256 = "sha256-gtG+v25jJ0DiYlU2vatreGj13yrb5WWRTvxlcDdAibw="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-solved";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-spoiler-alert"; 8 - rev = "65989714af08eda44196cca3a0afe85c9e9443f9"; 9 - sha256 = "sha256-R/vqNEDst50+Y7anckIvhy4viBOqBemIZMh4sPt7kRM="; 8 + rev = "b57e79343acc15cb2c0a032a2deb29ad4b9d53cc"; 9 + sha256 = "sha256-Ypt6PYCZzArCv9KkCtw5rfT6++dDoUx5q9m/eMvP0Sc="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-spoiler-alert";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-voting"; 8 - rev = "6449fc15658d972e20086a3f1fae3dbac9cd9eeb"; 9 - sha256 = "sha256-f04LpVeodCVEB/t5Ic2dketp542Nrc0rZWbQ6hrC22g="; 8 + rev = "83ab47f3186694039c6850ac3e230443e05d37c5"; 9 + sha256 = "sha256-2sSBLSSPddxXqvEukDn8tzLVOOWoPBA+C8N5jVccCjA="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-voting";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-yearly-review"; 8 - rev = "3246c6b378f9e69e664c575efc63c2ad83bcac2f"; 9 - sha256 = "sha256-usHHyfYP4YAQ94f7gvNSH7VBRRkdZMmsSi9QQM8tPfY="; 8 + rev = "47014a8ecb96da8d45d0fe141a069010161b3087"; 9 + sha256 = "sha256-9OIgxRdQoYH19vb7GcTt8MxVM5N4JPzmMIsg7FQOjJs="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-yearly-review";
+8 -3
pkgs/servers/web-apps/discourse/rubyEnv/Gemfile
··· 18 18 # this allows us to include the bits of rails we use without pieces we do not. 19 19 # 20 20 # To issue a rails update bump the version number here 21 - rails_version = "7.0.5.1" 21 + rails_version = "7.0.7" 22 22 gem "actionmailer", rails_version 23 23 gem "actionpack", rails_version 24 24 gem "actionview", rails_version ··· 141 141 gem "fakeweb", require: false 142 142 gem "minitest", require: false 143 143 gem "simplecov", require: false 144 - gem "selenium-webdriver", require: false 144 + gem "selenium-webdriver", "~> 4.11", require: false 145 145 gem "test-prof" 146 - gem "webdrivers", require: false 147 146 gem "rails-dom-testing", require: false 147 + gem "minio_runner", require: false 148 148 end 149 149 150 150 group :test, :development do ··· 257 257 gem "csv" 258 258 259 259 gem "parallel", require: false 260 + end 261 + 262 + if ENV["GENERIC_IMPORT"] == "1" 263 + gem "sqlite3" 264 + gem "redcarpet" 260 265 end 261 266 262 267 gem "web-push"
+66 -67
pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock
··· 9 9 10 10 GIT 11 11 remote: https://github.com/thoughtbot/shoulda-matchers.git 12 - revision: 783a90554053002017510285bc736099b2749c22 12 + revision: 68f76ce13e9892339f90c4928339dfd769cfa613 13 13 specs: 14 14 shoulda-matchers (5.3.0) 15 15 activesupport (>= 5.2.0) ··· 17 17 GEM 18 18 remote: https://rubygems.org/ 19 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) 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 25 mail (~> 2.5, >= 2.5.4) 26 26 net-imap 27 27 net-pop 28 28 net-smtp 29 29 rails-dom-testing (~> 2.0) 30 - actionpack (7.0.5.1) 31 - actionview (= 7.0.5.1) 32 - activesupport (= 7.0.5.1) 30 + actionpack (7.0.7) 31 + actionview (= 7.0.7) 32 + activesupport (= 7.0.7) 33 33 rack (~> 2.0, >= 2.2.4) 34 34 rack-test (>= 0.6.3) 35 35 rails-dom-testing (~> 2.0) 36 36 rails-html-sanitizer (~> 1.0, >= 1.2.0) 37 - actionview (7.0.5.1) 38 - activesupport (= 7.0.5.1) 37 + actionview (7.0.7) 38 + activesupport (= 7.0.7) 39 39 builder (~> 3.1) 40 40 erubi (~> 1.4) 41 41 rails-dom-testing (~> 2.0) 42 42 rails-html-sanitizer (~> 1.1, >= 1.2.0) 43 - actionview_precompiler (0.2.3) 43 + actionview_precompiler (0.3.0) 44 44 actionview (>= 6.0.a) 45 45 active_model_serializers (0.8.4) 46 46 activemodel (>= 3.0) 47 - activejob (7.0.5.1) 48 - activesupport (= 7.0.5.1) 47 + activejob (7.0.7) 48 + activesupport (= 7.0.7) 49 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) 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 56 concurrent-ruby (~> 1.0, >= 1.0.2) 57 57 i18n (>= 1.6, < 2) 58 58 minitest (>= 5.1) 59 59 tzinfo (~> 2.0) 60 - addressable (2.8.4) 60 + addressable (2.8.5) 61 61 public_suffix (>= 2.0.2, < 6.0) 62 62 annotate (3.2.0) 63 63 activerecord (>= 3.2, < 8.0) ··· 82 82 aws-sigv4 (~> 1.1) 83 83 aws-sigv4 (1.5.0) 84 84 aws-eventstream (~> 1, >= 1.0.2) 85 + base64 (0.1.1) 85 86 better_errors (2.10.1) 86 87 erubi (>= 1.0.0) 87 88 rack (>= 0.9.0) ··· 109 110 cgi (0.3.6) 110 111 chunky_png (1.4.0) 111 112 coderay (1.1.3) 112 - colored2 (3.1.2) 113 + colored2 (4.0.0) 113 114 concurrent-ruby (1.2.2) 114 115 connection_pool (2.4.1) 115 116 cose (1.3.0) ··· 119 120 crack (0.4.5) 120 121 rexml 121 122 crass (1.0.6) 122 - css_parser (1.14.0) 123 + css_parser (1.16.0) 123 124 addressable 124 125 dartsass-ruby (3.0.1) 125 126 sass-embedded (~> 1.54) ··· 144 145 docile (1.4.0) 145 146 email_reply_trimmer (0.1.13) 146 147 erubi (1.12.0) 147 - excon (0.100.0) 148 - execjs (2.8.1) 148 + excon (0.102.0) 149 + execjs (2.9.0) 149 150 exifr (1.4.0) 150 151 fabrication (2.30.0) 151 152 faker (2.23.0) ··· 163 164 ffi (1.15.5) 164 165 fspath (3.1.2) 165 166 gc_tracer (1.5.1) 166 - globalid (1.1.0) 167 - activesupport (>= 5.0) 168 - google-protobuf (3.23.4) 167 + globalid (1.2.1) 168 + activesupport (>= 6.1) 169 + google-protobuf (3.24.3) 169 170 guess_html_encoding (0.0.11) 170 171 hana (1.3.7) 171 172 hashdiff (1.0.1) ··· 188 189 json (2.6.3) 189 190 json-schema (3.0.0) 190 191 addressable (>= 2.8) 191 - json_schemer (1.0.3) 192 + json_schemer (2.0.0) 192 193 hana (~> 1.3) 193 194 regexp_parser (~> 2.0) 194 195 simpleidn (~> 0.2) ··· 222 223 matrix (0.4.2) 223 224 maxminddb (0.1.22) 224 225 memory_profiler (1.0.1) 225 - message_bus (4.3.7) 226 + message_bus (4.3.8) 226 227 rack (>= 1.1.3) 227 228 method_source (1.0.0) 228 - mini_mime (1.1.2) 229 + mini_mime (1.1.5) 229 230 mini_portile2 (2.8.4) 230 231 mini_racer (0.8.0) 231 232 libv8-node (~> 18.16.0.0) 232 233 mini_scheduler (0.16.0) 233 234 sidekiq (>= 4.2.3, < 7.0) 234 - mini_sql (1.4.0) 235 + mini_sql (1.5.0) 235 236 mini_suffix (0.3.3) 236 237 ffi (~> 1.9) 237 - minitest (5.19.0) 238 + minio_runner (0.1.1) 239 + minitest (5.20.0) 238 240 mocha (2.1.0) 239 241 ruby2_keywords (>= 0.0.5) 240 242 msgpack (1.7.2) ··· 253 255 net-smtp (0.3.3) 254 256 net-protocol 255 257 nio4r (2.5.9) 256 - nokogiri (1.15.3) 258 + nokogiri (1.15.4) 257 259 mini_portile2 (~> 2.8.2) 258 260 racc (~> 1.4) 259 261 oauth (1.1.0) ··· 268 270 multi_json (~> 1.3) 269 271 multi_xml (~> 0.5) 270 272 rack (>= 1.2, < 4) 271 - oj (3.15.1) 273 + oj (3.16.1) 272 274 omniauth (1.9.2) 273 275 hashie (>= 3.4.6) 274 276 rack (>= 1.6.2, < 3) ··· 296 298 openssl (> 2.0) 297 299 optimist (3.1.0) 298 300 parallel (1.23.0) 299 - parallel_tests (4.2.1) 301 + parallel_tests (4.2.2) 300 302 parallel 301 303 parser (3.2.2.3) 302 304 ast (~> 2.4.1) ··· 313 315 pry-rails (0.3.9) 314 316 pry (>= 0.10.4) 315 317 public_suffix (5.0.3) 316 - puma (6.3.0) 318 + puma (6.3.1) 317 319 nio4r (~> 2.0) 318 320 racc (1.7.1) 319 321 rack (2.2.8) 320 - rack-mini-profiler (3.1.0) 322 + rack-mini-profiler (3.1.1) 321 323 rack (>= 1.2.0) 322 - rack-protection (3.0.6) 323 - rack 324 + rack-protection (3.1.0) 325 + rack (~> 2.2, >= 2.2.4) 324 326 rack-test (2.1.0) 325 327 rack (>= 1.3) 326 - rails-dom-testing (2.1.1) 328 + rails-dom-testing (2.2.0) 327 329 activesupport (>= 5.0.0) 328 330 minitest 329 331 nokogiri (>= 1.6) ··· 337 339 rails_multisite (5.0.0) 338 340 activerecord (>= 6.0) 339 341 railties (>= 6.0) 340 - railties (7.0.5.1) 341 - actionpack (= 7.0.5.1) 342 - activesupport (= 7.0.5.1) 342 + railties (7.0.7) 343 + actionpack (= 7.0.7) 344 + activesupport (= 7.0.7) 343 345 method_source 344 346 rake (>= 12.2) 345 347 thor (~> 1.0) ··· 363 365 rack (>= 1.4) 364 366 rexml (3.2.6) 365 367 rinku (2.0.6) 366 - rotp (6.2.2) 368 + rotp (6.3.0) 367 369 rouge (4.1.3) 368 370 rqrcode (2.2.0) 369 371 chunky_png (~> 1.0) ··· 393 395 rspec-mocks (~> 3.12) 394 396 rspec-support (~> 3.12) 395 397 rspec-support (3.12.1) 396 - rss (0.2.9) 398 + rss (0.3.0) 397 399 rexml 398 400 rswag-specs (2.10.1) 399 401 activesupport (>= 3.1, < 7.1) ··· 402 404 rspec-core (>= 2.14) 403 405 rtlcss (0.2.1) 404 406 mini_racer (>= 0.6.3) 405 - rubocop (1.55.1) 407 + rubocop (1.56.3) 408 + base64 (~> 0.1.1) 406 409 json (~> 2.3) 407 410 language_server-protocol (>= 3.17.0) 408 411 parallel (~> 1.10) ··· 422 425 rubocop-rspec (>= 2.0.0) 423 426 rubocop-factory_bot (2.23.1) 424 427 rubocop (~> 1.33) 425 - rubocop-rspec (2.23.0) 428 + rubocop-rspec (2.23.2) 426 429 rubocop (~> 1.33) 427 430 rubocop-capybara (~> 2.17) 428 431 rubocop-factory_bot (~> 2.22) ··· 436 439 sanitize (6.0.2) 437 440 crass (~> 1.0.2) 438 441 nokogiri (>= 1.12.0) 439 - sass-embedded (1.64.1) 442 + sass-embedded (1.66.1) 440 443 google-protobuf (~> 3.23) 441 444 rake (>= 13.0.0) 442 - selenium-webdriver (4.10.0) 445 + selenium-webdriver (4.12.0) 443 446 rexml (~> 3.2, >= 3.2.5) 444 447 rubyzip (>= 1.2.2, < 3.0) 445 448 websocket (~> 1.0) ··· 462 465 actionpack (>= 5.2) 463 466 activesupport (>= 5.2) 464 467 sprockets (>= 3.0.0) 465 - sshkey (2.0.0) 468 + sshkey (3.0.0) 466 469 stackprof (0.2.25) 467 470 syntax_tree (6.1.1) 468 471 prettier_print (>= 1.2.0) ··· 491 494 hkdf (~> 1.0) 492 495 jwt (~> 2.0) 493 496 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) 497 + webmock (3.19.1) 499 498 addressable (>= 2.8.0) 500 499 crack (>= 0.3.2) 501 500 hashdiff (>= 0.4.0, < 2.0.0) ··· 504 503 nokogiri (~> 1.8) 505 504 yaml-lint (0.1.2) 506 505 yard (0.9.34) 507 - zeitwerk (2.6.10) 506 + zeitwerk (2.6.11) 508 507 509 508 PLATFORMS 510 509 ruby 511 510 512 511 DEPENDENCIES 513 - actionmailer (= 7.0.5.1) 514 - actionpack (= 7.0.5.1) 515 - actionview (= 7.0.5.1) 512 + actionmailer (= 7.0.7) 513 + actionpack (= 7.0.7) 514 + actionview (= 7.0.7) 516 515 actionview_precompiler 517 516 active_model_serializers (~> 0.8.3) 518 - activemodel (= 7.0.5.1) 519 - activerecord (= 7.0.5.1) 520 - activesupport (= 7.0.5.1) 517 + activemodel (= 7.0.7) 518 + activerecord (= 7.0.7) 519 + activesupport (= 7.0.7) 521 520 addressable 522 521 annotate 523 522 aws-sdk-s3 ··· 577 576 mini_scheduler 578 577 mini_sql 579 578 mini_suffix 579 + minio_runner 580 580 minitest 581 581 mocha 582 582 multi_json ··· 604 604 rails-dom-testing 605 605 rails_failover 606 606 rails_multisite 607 - railties (= 7.0.5.1) 607 + railties (= 7.0.7) 608 608 rake 609 609 rb-fsevent 610 610 rbtrace ··· 625 625 ruby-readability 626 626 rubyzip 627 627 sanitize 628 - selenium-webdriver 628 + selenium-webdriver (~> 4.11) 629 629 shoulda-matchers! 630 630 sidekiq 631 631 simplecov ··· 642 642 unf 643 643 unicorn 644 644 web-push 645 - webdrivers 646 645 webmock 647 646 yaml-lint 648 647 yard 649 648 650 649 BUNDLED WITH 651 - 2.4.13 650 + 2.4.17
+98 -89
pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix
··· 5 5 platforms = []; 6 6 source = { 7 7 remotes = ["https://rubygems.org"]; 8 - sha256 = "1pz26qpdx1xncpy5h8k4afw0npnh6wn580yvwv2cf857zrzvr1pm"; 8 + sha256 = "15ni57icsw1ilz5srlasff4h31h2ckgmxbdd8jnbniscvz4x2sd0"; 9 9 type = "gem"; 10 10 }; 11 - version = "7.0.5.1"; 11 + version = "7.0.7"; 12 12 }; 13 13 actionpack = { 14 14 dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; ··· 16 16 platforms = []; 17 17 source = { 18 18 remotes = ["https://rubygems.org"]; 19 - sha256 = "003y7cdxwzdqx8hgw02kf1b5mp8qr8syx07f35sk3ghhqxp39ksy"; 19 + sha256 = "150sjsk12vzj9aswjy3cz124l8n8sn52bhd0wwly73rwc1a750sg"; 20 20 type = "gem"; 21 21 }; 22 - version = "7.0.5.1"; 22 + version = "7.0.7"; 23 23 }; 24 24 actionview = { 25 25 dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; ··· 27 27 platforms = []; 28 28 source = { 29 29 remotes = ["https://rubygems.org"]; 30 - sha256 = "11ihpqcvz3f38ka85zdjkdcvgdbcan81dbr0y9bi784jn1v5ggwa"; 30 + sha256 = "1nn21k5psxdv2fkwxs679lr0b8n1nzli2ks343cx4azn6snp8b8a"; 31 31 type = "gem"; 32 32 }; 33 - version = "7.0.5.1"; 33 + version = "7.0.7"; 34 34 }; 35 35 actionview_precompiler = { 36 36 dependencies = ["actionview"]; ··· 38 38 platforms = []; 39 39 source = { 40 40 remotes = ["https://rubygems.org"]; 41 - sha256 = "07dx8vkwig8han4zccs0chahcf9ibd4abzx9n56qah8zak5cyrhd"; 41 + sha256 = "07jyr2h87ha6k2y965rs4ywq142ddkfkhbmp0r44xg4wnffr8jbl"; 42 42 type = "gem"; 43 43 }; 44 - version = "0.2.3"; 44 + version = "0.3.0"; 45 45 }; 46 46 active_model_serializers = { 47 47 dependencies = ["activemodel"]; ··· 60 60 platforms = []; 61 61 source = { 62 62 remotes = ["https://rubygems.org"]; 63 - sha256 = "11wkxf16zdb9gsnc94x4hyj89wjks06gnk4fbl7gp5vkbl744n83"; 63 + sha256 = "0s5r5z9jm57jjabh8w2823rpjd1agn8z2rlqgyyn4s9pbbhgalzy"; 64 64 type = "gem"; 65 65 }; 66 - version = "7.0.5.1"; 66 + version = "7.0.7"; 67 67 }; 68 68 activemodel = { 69 69 dependencies = ["activesupport"]; ··· 71 71 platforms = []; 72 72 source = { 73 73 remotes = ["https://rubygems.org"]; 74 - sha256 = "12f89hxs4s26ggsg4bnz9qxlcsclcgx9gdsl8dni5jc0gk47h14y"; 74 + sha256 = "1rspbw4yxx9fh2wyl2wvgwadwapfyx7j9zlirpd4pmk31wkhl4hf"; 75 75 type = "gem"; 76 76 }; 77 - version = "7.0.5.1"; 77 + version = "7.0.7"; 78 78 }; 79 79 activerecord = { 80 80 dependencies = ["activemodel" "activesupport"]; ··· 82 82 platforms = []; 83 83 source = { 84 84 remotes = ["https://rubygems.org"]; 85 - sha256 = "1sfdq2slmsc0ygncl36dq1lmjww1y3b42izrnn62cyisiag28796"; 85 + sha256 = "1ygg145wxlgm12b1x5r0rsk2aa6i2wjz7bgb21j8vmyqyfl272cy"; 86 86 type = "gem"; 87 87 }; 88 - version = "7.0.5.1"; 88 + version = "7.0.7"; 89 89 }; 90 90 activesupport = { 91 91 dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; ··· 93 93 platforms = []; 94 94 source = { 95 95 remotes = ["https://rubygems.org"]; 96 - sha256 = "0m1sa6djlm9cz6mz3lcbqqahvm6qj75dmq3phpn2ysyxnlz2hr0c"; 96 + sha256 = "1wzbnv3hns0yiwbgh1m3q5j0d7b0k52nlpwirhxyv3l0ycmljfr9"; 97 97 type = "gem"; 98 98 }; 99 - version = "7.0.5.1"; 99 + version = "7.0.7"; 100 100 }; 101 101 addressable = { 102 102 dependencies = ["public_suffix"]; ··· 104 104 platforms = []; 105 105 source = { 106 106 remotes = ["https://rubygems.org"]; 107 - sha256 = "15s8van7r2ad3dq6i03l3z4hqnvxcq75a3h72kxvf9an53sqma20"; 107 + sha256 = "05r1fwy487klqkya7vzia8hnklcxy4vr92m9dmni3prfwk6zpw33"; 108 108 type = "gem"; 109 109 }; 110 - version = "2.8.4"; 110 + version = "2.8.5"; 111 111 }; 112 112 annotate = { 113 113 dependencies = ["activerecord" "rake"]; ··· 204 204 type = "gem"; 205 205 }; 206 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"; 207 217 }; 208 218 better_errors = { 209 219 dependencies = ["erubi" "rack" "rouge"]; ··· 351 361 platforms = []; 352 362 source = { 353 363 remotes = ["https://rubygems.org"]; 354 - sha256 = "0jlbqa9q4mvrm73aw9mxh23ygzbjiqwisl32d8szfb5fxvbjng5i"; 364 + sha256 = "1zj06gjqwykgzxmbkp2hmg3wv5kv8zz5d77acxipzcgicdjgvfan"; 355 365 type = "gem"; 356 366 }; 357 - version = "3.1.2"; 367 + version = "4.0.0"; 358 368 }; 359 369 concurrent-ruby = { 360 370 groups = ["default" "development" "test"]; ··· 424 434 platforms = []; 425 435 source = { 426 436 remotes = ["https://rubygems.org"]; 427 - sha256 = "04q1vin8slr3k8mp76qz0wqgap6f9kdsbryvgfq9fljhrm463kpj"; 437 + sha256 = "18mii41bbl106rn940ah8v3xclj4yrxxa0bwlwp546244n9b83zp"; 428 438 type = "gem"; 429 439 }; 430 - version = "1.14.0"; 440 + version = "1.16.0"; 431 441 }; 432 442 dartsass-ruby = { 433 443 dependencies = ["sass-embedded"]; ··· 572 582 platforms = []; 573 583 source = { 574 584 remotes = ["https://rubygems.org"]; 575 - sha256 = "08r6qgbpkxxsihjmlspk3l1sr69q5hx35p1l4wp7rmkbzys89867"; 585 + sha256 = "0mbkyyadz9vw7mzixi9dks6i6iw033yn2hzwfvnfdvgqq6ywqs4g"; 576 586 type = "gem"; 577 587 }; 578 - version = "0.100.0"; 588 + version = "0.102.0"; 579 589 }; 580 590 execjs = { 581 591 groups = ["assets" "default"]; 582 592 platforms = []; 583 593 source = { 584 594 remotes = ["https://rubygems.org"]; 585 - sha256 = "121h6af4i6wr3wxvv84y53jcyw2sk71j5wsncm6wq6yqrwcrk4vd"; 595 + sha256 = "1a4dhqclx0n4dc5riiff1nkwfinaf5an1dxjywmlwa9wm57r9q9p"; 586 596 type = "gem"; 587 597 }; 588 - version = "2.8.1"; 598 + version = "2.9.0"; 589 599 }; 590 600 exifr = { 591 601 groups = ["default"]; ··· 746 756 platforms = []; 747 757 source = { 748 758 remotes = ["https://rubygems.org"]; 749 - sha256 = "0kqm5ndzaybpnpxqiqkc41k4ksyxl41ln8qqr6kb130cdxsf2dxk"; 759 + sha256 = "1sbw6b66r7cwdx3jhs46s4lr991969hvigkjpbdl7y3i31qpdgvh"; 750 760 type = "gem"; 751 761 }; 752 - version = "1.1.0"; 762 + version = "1.2.1"; 753 763 }; 754 764 google-protobuf = { 755 765 groups = ["default"]; 756 766 platforms = []; 757 767 source = { 758 768 remotes = ["https://rubygems.org"]; 759 - sha256 = "1dq5lgkxhagqr8zjrwr10zi8rldbg2vhis2m5q86v5q9415ylfgj"; 769 + sha256 = "0pcl4x4cw3snl5xzs99lm82m9xkfs8vm1a8dfrc34pwb77mwrwv3"; 760 770 type = "gem"; 761 771 }; 762 - version = "3.23.4"; 772 + version = "3.24.3"; 763 773 }; 764 774 guess_html_encoding = { 765 775 groups = ["default"]; ··· 920 930 platforms = []; 921 931 source = { 922 932 remotes = ["https://rubygems.org"]; 923 - sha256 = "1mbf7v8bzmxyk413y16drnww68bgyzknlqmaqvj785iakja7in7x"; 933 + sha256 = "0spgxaxvsl3qvyj9qb95gd5hvy2pnp98hbgp8nfw6s69yyw0xmgj"; 924 934 type = "gem"; 925 935 }; 926 - version = "1.0.3"; 936 + version = "2.0.0"; 927 937 }; 928 938 jwt = { 929 939 groups = ["default"]; ··· 1122 1132 platforms = []; 1123 1133 source = { 1124 1134 remotes = ["https://rubygems.org"]; 1125 - sha256 = "1ppqgch8xxccpmccdx37lb00112ayqjb80zz5m3w3298vdzb1kn4"; 1135 + sha256 = "15xqp7pnicjh2868fsc6fmxw8cw32bpiaqpc5bz8cwdib09ns3qk"; 1126 1136 type = "gem"; 1127 1137 }; 1128 - version = "4.3.7"; 1138 + version = "4.3.8"; 1129 1139 }; 1130 1140 method_source = { 1131 1141 groups = ["default" "development" "test"]; ··· 1138 1148 version = "1.0.0"; 1139 1149 }; 1140 1150 mini_mime = { 1141 - groups = ["default"]; 1151 + groups = ["default" "test"]; 1142 1152 platforms = []; 1143 1153 source = { 1144 1154 remotes = ["https://rubygems.org"]; 1145 - sha256 = "0lbim375gw2dk6383qirz13hgdmxlan0vc5da2l072j3qw6fqjm5"; 1155 + sha256 = "1vycif7pjzkr29mfk4dlqv3disc5dn0va04lkwajlpr1wkibg0c6"; 1146 1156 type = "gem"; 1147 1157 }; 1148 - version = "1.1.2"; 1158 + version = "1.1.5"; 1149 1159 }; 1150 1160 mini_portile2 = { 1151 1161 groups = ["default" "development" "test"]; ··· 1184 1194 platforms = []; 1185 1195 source = { 1186 1196 remotes = ["https://rubygems.org"]; 1187 - sha256 = "1dgwyyya821sfj4f92sljsxmmnak2yrzsbckvy82001zgq1n3b41"; 1197 + sha256 = "0yrxjmwhfnvcwbj9vscyq0z67sq09zl8qhmzgakq2ywy4yvcpwgg"; 1188 1198 type = "gem"; 1189 1199 }; 1190 - version = "1.4.0"; 1200 + version = "1.5.0"; 1191 1201 }; 1192 1202 mini_suffix = { 1193 1203 dependencies = ["ffi"]; ··· 1200 1210 }; 1201 1211 version = "0.3.3"; 1202 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 + }; 1203 1223 minitest = { 1204 1224 groups = ["default" "development" "test"]; 1205 1225 platforms = []; 1206 1226 source = { 1207 1227 remotes = ["https://rubygems.org"]; 1208 - sha256 = "0jnpsbb2dbcs95p4is4431l2pw1l5pn7dfg3vkgb4ga464j0c5l6"; 1228 + sha256 = "0bkmfi9mb49m0fkdhl2g38i3xxa02d411gg0m8x0gvbwfmmg5ym3"; 1209 1229 type = "gem"; 1210 1230 }; 1211 - version = "5.19.0"; 1231 + version = "5.20.0"; 1212 1232 }; 1213 1233 mocha = { 1214 1234 dependencies = ["ruby2_keywords"]; ··· 1336 1356 platforms = []; 1337 1357 source = { 1338 1358 remotes = ["https://rubygems.org"]; 1339 - sha256 = "1jw8a20a9k05fpz3q24im19b97idss3179z76yn5scc5b8lk2rl7"; 1359 + sha256 = "0k9w2z0953mnjrsji74cshqqp08q7m1r6zhadw1w0g34xzjh3a74"; 1340 1360 type = "gem"; 1341 1361 }; 1342 - version = "1.15.3"; 1362 + version = "1.15.4"; 1343 1363 }; 1344 1364 oauth = { 1345 1365 dependencies = ["oauth-tty" "snaky_hash" "version_gem"]; ··· 1379 1399 platforms = []; 1380 1400 source = { 1381 1401 remotes = ["https://rubygems.org"]; 1382 - sha256 = "1vzcrsv6w5k90l75gy83dlfkv2z9pvnr82mz1nhnijmcg3rgqaz8"; 1402 + sha256 = "0m4vsd6i093kmyz9gckvzpnws997laldaiaf86hg5lza1ir82x7n"; 1383 1403 type = "gem"; 1384 1404 }; 1385 - version = "3.15.1"; 1405 + version = "3.16.1"; 1386 1406 }; 1387 1407 omniauth = { 1388 1408 dependencies = ["hashie" "rack"]; ··· 1512 1532 platforms = []; 1513 1533 source = { 1514 1534 remotes = ["https://rubygems.org"]; 1515 - sha256 = "04y02j0kyhfww41dnnjawn2gpp24smq0x21dvaa5z6pnq0fvmahv"; 1535 + sha256 = "1pa50my9sgh4wh9jah1qxjd33wsp1ahv29vj2q1biz434p67vh5p"; 1516 1536 type = "gem"; 1517 1537 }; 1518 - version = "4.2.1"; 1538 + version = "4.2.2"; 1519 1539 }; 1520 1540 parser = { 1521 1541 dependencies = ["ast" "racc"]; ··· 1607 1627 platforms = []; 1608 1628 source = { 1609 1629 remotes = ["https://rubygems.org"]; 1610 - sha256 = "1v7fmv0n4bhdcwh60dgza44iqai5pg34f5pzm4vh4i5fwx7mpqxh"; 1630 + sha256 = "1x4dwx2shx0p7lsms97r85r7ji7zv57bjy3i1kmcpxc8bxvrr67c"; 1611 1631 type = "gem"; 1612 1632 }; 1613 - version = "6.3.0"; 1633 + version = "6.3.1"; 1614 1634 }; 1615 1635 racc = { 1616 1636 groups = ["default" "development" "test"]; ··· 1642 1662 platforms = []; 1643 1663 source = { 1644 1664 remotes = ["https://rubygems.org"]; 1645 - sha256 = "13dhpp1iljhqp9c8akmp6gjhx47qf83w12ns4bif26ldkignpam1"; 1665 + sha256 = "18vj7q740f7ffj677i258abryj97w0a6g3d5859y0lgypm5big1v"; 1646 1666 type = "gem"; 1647 1667 }; 1648 - version = "3.1.0"; 1668 + version = "3.1.1"; 1649 1669 }; 1650 1670 rack-protection = { 1651 1671 dependencies = ["rack"]; ··· 1653 1673 platforms = []; 1654 1674 source = { 1655 1675 remotes = ["https://rubygems.org"]; 1656 - sha256 = "1kpm67az1wxlg76h620in2r7agfyhv177ps268j5ggsanzddzih8"; 1676 + sha256 = "0xsz78hccgza144n37bfisdkzpr2c8m0xl6rnlzgxdbsm1zrkg7r"; 1657 1677 type = "gem"; 1658 1678 }; 1659 - version = "3.0.6"; 1679 + version = "3.1.0"; 1660 1680 }; 1661 1681 rack-test = { 1662 1682 dependencies = ["rack"]; ··· 1675 1695 platforms = []; 1676 1696 source = { 1677 1697 remotes = ["https://rubygems.org"]; 1678 - sha256 = "17g05y7q7934z0ib4aph8h71c2qwjmlakkm7nb2ab45q0aqkfgjd"; 1698 + sha256 = "0fx9dx1ag0s1lr6lfr34lbx5i1bvn3bhyf3w3mx6h7yz90p725g5"; 1679 1699 type = "gem"; 1680 1700 }; 1681 - version = "2.1.1"; 1701 + version = "2.2.0"; 1682 1702 }; 1683 1703 rails-html-sanitizer = { 1684 1704 dependencies = ["loofah" "nokogiri"]; ··· 1719 1739 platforms = []; 1720 1740 source = { 1721 1741 remotes = ["https://rubygems.org"]; 1722 - sha256 = "1z4lqqbd4i5izsg97mx5yf3gj7y5d07wgvad0jzjghjg12pf142i"; 1742 + sha256 = "0in2b84qqmfnigx0li9bgi6l4knmgbj3a29fzm1zzb5jnv4r1gbr"; 1723 1743 type = "gem"; 1724 1744 }; 1725 - version = "7.0.5.1"; 1745 + version = "7.0.7"; 1726 1746 }; 1727 1747 rainbow = { 1728 1748 groups = ["default" "development" "test"]; ··· 1873 1893 platforms = []; 1874 1894 source = { 1875 1895 remotes = ["https://rubygems.org"]; 1876 - sha256 = "10mmzc85y7andsich586ndykw678qn1ns2wpjxrg0sc0gr4w3pig"; 1896 + sha256 = "0m48hv6wpmmm6cjr6q92q78h1i610riml19k5h1dil2yws3h1m3m"; 1877 1897 type = "gem"; 1878 1898 }; 1879 - version = "6.2.2"; 1899 + version = "6.3.0"; 1880 1900 }; 1881 1901 rouge = { 1882 1902 groups = ["default" "development"]; ··· 1995 2015 platforms = []; 1996 2016 source = { 1997 2017 remotes = ["https://rubygems.org"]; 1998 - sha256 = "1b1zx07kr64kkpm4lssd4r1a1qyr829ppmfl85i4adcvx9mqfid0"; 2018 + sha256 = "1wv27axi39hhr0nmaffdl5bdjqiafcvp9xhfgnsgfczsblja50sn"; 1999 2019 type = "gem"; 2000 2020 }; 2001 - version = "0.2.9"; 2021 + version = "0.3.0"; 2002 2022 }; 2003 2023 rswag-specs = { 2004 2024 dependencies = ["activesupport" "json-schema" "railties" "rspec-core"]; ··· 2023 2043 version = "0.2.1"; 2024 2044 }; 2025 2045 rubocop = { 2026 - dependencies = ["json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"]; 2046 + dependencies = ["base64" "json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"]; 2027 2047 groups = ["default" "development" "test"]; 2028 2048 platforms = []; 2029 2049 source = { 2030 2050 remotes = ["https://rubygems.org"]; 2031 - sha256 = "0s9p5qaqq68h5s3ys8xlk9swccma7arjif1w58987n6gicrsprrm"; 2051 + sha256 = "1i3571gchdj3c28znr5kisj0fkppy57208g9j1kv23rhk3p5q5p2"; 2032 2052 type = "gem"; 2033 2053 }; 2034 - version = "1.55.1"; 2054 + version = "1.56.3"; 2035 2055 }; 2036 2056 rubocop-ast = { 2037 2057 dependencies = ["parser"]; ··· 2083 2103 platforms = []; 2084 2104 source = { 2085 2105 remotes = ["https://rubygems.org"]; 2086 - sha256 = "0l364y00bw1zcs3grdxcxpn48vfrjds2khsiaxjqq3r9grvbprfy"; 2106 + sha256 = "0ylwy4afnxhbrvlaf8an9nrizj78axnzggiyfcp8v531cv8six5f"; 2087 2107 type = "gem"; 2088 2108 }; 2089 - version = "2.23.0"; 2109 + version = "2.23.2"; 2090 2110 }; 2091 2111 ruby-prof = { 2092 2112 groups = ["development"]; ··· 2160 2180 platforms = []; 2161 2181 source = { 2162 2182 remotes = ["https://rubygems.org"]; 2163 - sha256 = "15k44qn8vk8ap8khkmpsiw40pywm9pkx4a5yhm8vfi2rgqci9k90"; 2183 + sha256 = "038fzkbq5sw9lf947akhpsvdm14q6jfzl2yn87s8958h42sn0xjy"; 2164 2184 type = "gem"; 2165 2185 }; 2166 - version = "1.64.1"; 2186 + version = "1.66.1"; 2167 2187 }; 2168 2188 selenium-webdriver = { 2169 2189 dependencies = ["rexml" "rubyzip" "websocket"]; ··· 2171 2191 platforms = []; 2172 2192 source = { 2173 2193 remotes = ["https://rubygems.org"]; 2174 - sha256 = "0hwxxvx6j95ln82pjmrgyzg6qmf511dkcp5q79n6m5m8z4way8m3"; 2194 + sha256 = "0jwll13m7bqph4lgl75m7vwd175k657znwa7qn9qkf5dcxdjkcjs"; 2175 2195 type = "gem"; 2176 2196 }; 2177 - version = "4.10.0"; 2197 + version = "4.12.0"; 2178 2198 }; 2179 2199 shoulda-matchers = { 2180 2200 dependencies = ["activesupport"]; ··· 2182 2202 platforms = []; 2183 2203 source = { 2184 2204 fetchSubmodules = false; 2185 - rev = "783a90554053002017510285bc736099b2749c22"; 2186 - sha256 = "10rw7ksi462fxamap6kimdy7hpdgx8477r6zs1kgrbakx24dm3wx"; 2205 + rev = "68f76ce13e9892339f90c4928339dfd769cfa613"; 2206 + sha256 = "08kbcdfplmbdhgq0x6lk2lpwrlgijrfq6vhl5hkmxg9v9gpgbbrj"; 2187 2207 type = "git"; 2188 2208 url = "https://github.com/thoughtbot/shoulda-matchers.git"; 2189 2209 }; ··· 2282 2302 platforms = []; 2283 2303 source = { 2284 2304 remotes = ["https://rubygems.org"]; 2285 - sha256 = "03bkn55qsng484iqwz2lmm6rkimj01vsvhwk661s3lnmpkl65lbp"; 2305 + sha256 = "1k8i5pzjhcnyf0bhcyn5iixpfp4pz0556rcxwpglh6p0sr8s6nv5"; 2286 2306 type = "gem"; 2287 2307 }; 2288 - version = "2.0.0"; 2308 + version = "3.0.0"; 2289 2309 }; 2290 2310 stackprof = { 2291 2311 groups = ["default"]; ··· 2484 2504 }; 2485 2505 version = "3.0.0"; 2486 2506 }; 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 2507 webmock = { 2499 2508 dependencies = ["addressable" "crack" "hashdiff"]; 2500 2509 groups = ["test"]; 2501 2510 platforms = []; 2502 2511 source = { 2503 2512 remotes = ["https://rubygems.org"]; 2504 - sha256 = "1myj44wvbbqvv18ragv3ihl0h61acgnfwrnj3lccdgp49bgmbjal"; 2513 + sha256 = "0vfispr7wd2p1fs9ckn1qnby1yyp4i1dl7qz8n482iw977iyxrza"; 2505 2514 type = "gem"; 2506 2515 }; 2507 - version = "3.18.1"; 2516 + version = "3.19.1"; 2508 2517 }; 2509 2518 websocket = { 2510 2519 groups = ["default" "test"]; ··· 2552 2561 platforms = []; 2553 2562 source = { 2554 2563 remotes = ["https://rubygems.org"]; 2555 - sha256 = "06vf6y5ai20ry3b1h9cl7vsdj6i5valq172zdxpnfhj5zvlp104j"; 2564 + sha256 = "1mwdd445w63khz13hpv17m2br5xngyjl3jdj08xizjbm78i2zrxd"; 2556 2565 type = "gem"; 2557 2566 }; 2558 - version = "2.6.10"; 2567 + version = "2.6.11"; 2559 2568 }; 2560 2569 }
+2 -2
pkgs/servers/web-apps/snipe-it/default.nix
··· 36 36 37 37 in package.override rec { 38 38 pname = "snipe-it"; 39 - version = "6.2.0"; 39 + version = "6.2.1"; 40 40 41 41 src = fetchFromGitHub { 42 42 owner = "snipe"; 43 43 repo = pname; 44 44 rev = "v${version}"; 45 - sha256 = "0s8w98jd81cg3rr2h6i63qm72idxdbhgliz2bdka91cqq0zh6d88"; 45 + sha256 = "0kx5j9a2fbj9zy0i9r01z3lsbqlf488kn5b42fjs47nfzk1yznvx"; 46 46 }; 47 47 48 48 passthru.tests = nixosTests.snipe-it;
+3 -3
pkgs/servers/zigbee2mqtt/default.nix
··· 8 8 9 9 buildNpmPackage rec { 10 10 pname = "zigbee2mqtt"; 11 - version = "1.33.0"; 11 + version = "1.33.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Koenkk"; 15 15 repo = "zigbee2mqtt"; 16 16 rev = version; 17 - hash = "sha256-DdRcDSvgFf+NSDpWT4MnAOLNJ5sfqvJqKBhfPwTHd/g="; 17 + hash = "sha256-Rd8PJWKPUriVf3BmHFvhmb+SQskVeqOFdJB8Gsopgnw="; 18 18 }; 19 19 20 - npmDepsHash = "sha256-ov1ftDqJtxLCu3xgtGcg+Q2OMkOsHrwk1SNNfdlUieY="; 20 + npmDepsHash = "sha256-rEqbwdeIQg6YS7uLeoP2uMbJWsnovIHBVp9CPlTc2NY="; 21 21 22 22 nativeBuildInputs = [ 23 23 python3
+2 -2
pkgs/tools/misc/tgpt/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "tgpt"; 8 - version = "1.9.0"; 8 + version = "1.10.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aandrew-me"; 12 12 repo = "tgpt"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-kmQvKqrELCL6UdyV8yrwrnjlSYLYIx/SBTKVsqcLng4="; 14 + hash = "sha256-AnGll0BjvR7xUWGn25M4nz4PIJAscl6Sh0pTn1102h8="; 15 15 }; 16 16 17 17 vendorHash = "sha256-2I5JJWxM6aZx0eZu7taUTL11Y/5HIrXYC5aezrTbbsM=";
+2 -2
pkgs/tools/system/nvitop/default.nix
··· 5 5 6 6 python3Packages.buildPythonApplication rec { 7 7 pname = "nvitop"; 8 - version = "1.3.0"; 8 + version = "1.3.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "XuehaiPan"; 12 12 repo = pname; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-nHJ2m5Q0IWl0nx13iGBkHsHj2YdPS+33kLUBsjbpyuM="; 14 + hash = "sha256-DPdKdIqFUozTt5Go3+c7oSv9tZSio486QeSlSfIrBZ4="; 15 15 }; 16 16 17 17 pythonRelaxDeps = [ "nvidia-ml-py" ];
+2 -3
pkgs/top-level/gnuradio-packages.nix
··· 20 20 boost 21 21 volk 22 22 logLib 23 + python 23 24 ; 24 25 inherit mkDerivationWith mkDerivation; 26 + inherit gnuradio; 25 27 } // lib.optionalAttrs (gnuradio.hasFeature "gr-uhd") { 26 28 inherit (gnuradio) uhd; 27 29 }); ··· 30 32 inherit callPackage mkDerivation mkDerivationWith; 31 33 32 34 ### Packages 33 - 34 - inherit gnuradio; 35 - inherit (gnuradio) python; 36 35 37 36 osmosdr = callPackage ../development/gnuradio-modules/osmosdr/default.nix { }; 38 37