Merge master into staging-next

authored by github-actions[bot] and committed by GitHub e879e7d5 aecf7c7b

+2971 -607
+3 -3
lib/generators.nix
··· 240 240 * to implicit typing rules, so it should work with older 241 241 * parsers as well. 242 242 */ 243 - toYAML = {}@args: toJSON args; 243 + toYAML = toJSON; 244 244 245 245 withRecursion = 246 - args@{ 246 + { 247 247 /* If this option is not null, the given value will stop evaluating at a certain depth */ 248 248 depthLimit 249 249 /* If this option is true, an error will be thrown, if a certain given depth is exceeded */ ··· 287 287 allowPrettyValues ? false, 288 288 /* If this option is true, the output is indented with newlines for attribute sets and lists */ 289 289 multiline ? true 290 - }@args: 290 + }: 291 291 let 292 292 go = indent: v: with builtins; 293 293 let isPath = v: typeOf v == "path";
+1 -9
lib/modules.nix
··· 12 12 concatStringsSep 13 13 elem 14 14 filter 15 - findFirst 16 15 foldl' 17 16 getAttrFromPath 18 17 head ··· 34 33 recursiveUpdate 35 34 reverseList sort 36 35 setAttrByPath 37 - toList 38 36 types 39 37 warnIf 40 38 zipAttrsWith ··· 46 44 showFiles 47 45 showOption 48 46 unknownModule 49 - literalExpression 50 47 ; 51 48 52 49 showDeclPrefix = loc: decl: prefix: ··· 604 601 } 605 602 else 606 603 let 607 - firstNonOption = findFirst (m: !isOption m.options) "" decls; 608 604 nonOptions = filter (m: !isOption m.options) decls; 609 605 in 610 606 throw "The option `${showOption loc}' in module `${(lib.head optionDecls)._file}' would be a parent of the following options, but its type `${(lib.head optionDecls).options.type.description or "<no description>"}' does not support nested options.\n${ ··· 652 648 'opts' is a list of modules. Each module has an options attribute which 653 649 correspond to the definition of 'loc' in 'opt.file'. */ 654 650 mergeOptionDecls = 655 - let 656 - coerceOption = file: opt: 657 - if isFunction opt then setDefaultModuleLocation file opt 658 - else setDefaultModuleLocation file { options = opt; }; 659 - in loc: opts: 651 + loc: opts: 660 652 foldl' (res: opt: 661 653 let t = res.type; 662 654 t' = opt.options.type;
-1
lib/options.nix
··· 8 8 concatLists 9 9 concatMap 10 10 concatMapStringsSep 11 - elemAt 12 11 filter 13 12 foldl' 14 13 head
-1
lib/sources.nix
··· 4 4 # Tested in lib/tests/sources.sh 5 5 let 6 6 inherit (builtins) 7 - hasContext 8 7 match 9 8 readDir 10 9 split
-1
lib/tests/maintainers.nix
··· 6 6 }: 7 7 8 8 let 9 - inherit (lib) types; 10 9 checkMaintainer = handle: uncheckedAttrs: 11 10 let 12 11 prefix = [ "lib" "maintainers" handle ];
-2
lib/types.nix
··· 6 6 inherit (lib) 7 7 elem 8 8 flip 9 - functionArgs 10 9 isAttrs 11 10 isBool 12 11 isDerivation ··· 16 15 isList 17 16 isString 18 17 isStorePath 19 - setFunctionArgs 20 18 toDerivation 21 19 toList 22 20 ;
-7
nixos/lib/make-multi-disk-zfs-image.nix
··· 143 143 properties 144 144 ); 145 145 146 - featuresToProperties = features: 147 - lib.listToAttrs 148 - (builtins.map (feature: { 149 - name = "feature@${feature}"; 150 - value = "enabled"; 151 - }) features); 152 - 153 146 createDatasets = 154 147 let 155 148 datasetlist = lib.mapAttrsToList lib.nameValuePair datasets;
-9
nixos/lib/make-single-disk-zfs-image.nix
··· 131 131 properties 132 132 ); 133 133 134 - featuresToProperties = features: 135 - lib.listToAttrs 136 - (builtins.map 137 - (feature: { 138 - name = "feature@${feature}"; 139 - value = "enabled"; 140 - }) 141 - features); 142 - 143 134 createDatasets = 144 135 let 145 136 datasetlist = lib.mapAttrsToList lib.nameValuePair datasets;
+1 -1
nixos/modules/installer/tools/nixos-build-vms/build-vms.nix
··· 15 15 inherit system pkgs; 16 16 }; 17 17 18 - interactiveDriver = (testing.makeTest { inherit nodes; name = "network"; testScript = "start_all(); join_all();"; }).driverInteractive; 18 + interactiveDriver = (testing.makeTest { inherit nodes; name = "network"; testScript = "start_all(); join_all();"; }).test.driverInteractive; 19 19 in 20 20 21 21
+3 -1
nixos/tests/make-test-python.nix
··· 6 6 7 7 with import ../lib/testing-python.nix { inherit system pkgs; }; 8 8 9 - makeTest (if pkgs.lib.isFunction f then f (args // { inherit pkgs; inherit (pkgs) lib; }) else f) 9 + let testConfig = makeTest (if pkgs.lib.isFunction f then f (args // { inherit pkgs; inherit (pkgs) lib; }) else f); 10 + in testConfig.test # For nix-build 11 + // testConfig # For all-tests.nix
+1 -3
nixos/tests/pgadmin4.nix
··· 107 107 ) 108 108 109 109 # Don't bother to test LDAP or kerberos authentification 110 - # For now deactivate change_password API test. Current bug report at https://redmine.postgresql.org/issues/7648 111 - # Password change works from the UI, if email SMTP is configured. 112 110 with subtest("run browser test"): 113 111 machine.succeed( 114 112 'cd ${pgadmin4SrcDir}/pgadmin4-${pkgs.pgadmin4.version}/web \ 115 113 && python regression/runtests.py \ 116 114 --pkg browser \ 117 - --exclude browser.tests.test_ldap_login.LDAPLoginTestCase,browser.tests.test_ldap_login,browser.tests.test_kerberos_with_mocking,browser.tests.test_change_password' 115 + --exclude browser.tests.test_ldap_login.LDAPLoginTestCase,browser.tests.test_ldap_login,browser.tests.test_kerberos_with_mocking' 118 116 ) 119 117 120 118 # fontconfig is necessary for chromium to run
+11 -2
pkgs/applications/audio/tidal-hifi/default.nix
··· 18 18 , gdk-pixbuf 19 19 , glib 20 20 , gtk3 21 + , imagemagick 21 22 , libappindicator-gtk3 22 23 , libdbusmenu 23 24 , libdrm ··· 60 61 gdk-pixbuf 61 62 glib 62 63 gtk3 64 + imagemagick 63 65 pango 64 66 systemd 65 67 mesa # for libgbm ··· 106 108 makeWrapper $out/opt/tidal-hifi/tidal-hifi $out/bin/tidal-hifi \ 107 109 --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}" \ 108 110 "''${gappsWrapperArgs[@]}" 109 - substituteInPlace $out/share/applications/tidal-hifi.desktop --replace \ 110 - "/opt/tidal-hifi/tidal-hifi" "tidal-hifi" 111 + substituteInPlace $out/share/applications/tidal-hifi.desktop \ 112 + --replace \ "/opt/tidal-hifi/tidal-hifi" "tidal-hifi" \ 113 + --replace "/usr/share/icons/hicolor/0x0/apps/tidal-hifi.png" "tidal-hifi.png" 114 + 115 + for size in 48 64 128 256 512; do 116 + mkdir -p $out/share/icons/hicolor/''${size}x''${size}/apps/ 117 + convert $out/share/icons/hicolor/0x0/apps/tidal-hifi.png \ 118 + -resize ''${size}x''${size} $out/share/icons/hicolor/''${size}x''${size}/apps/tidal-hifi.png 119 + done 111 120 ''; 112 121 113 122 meta = with lib; {
+2 -2
pkgs/applications/audio/yoshimi/default.nix
··· 22 22 23 23 stdenv.mkDerivation rec { 24 24 pname = "yoshimi"; 25 - version = "2.2.1"; 25 + version = "2.2.2.1"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "Yoshimi"; 29 29 repo = pname; 30 30 rev = version; 31 - hash = "sha256-Uo403vxzmDntmdoQZQqncuLpDXVJ2FdGi4pQ9jE9b/k="; 31 + hash = "sha256-fkN5VNiXRVKCCAyrG6Z2s5qLEtHQNB2874VprhHBhAg="; 32 32 }; 33 33 34 34 sourceRoot = "source/src";
+1 -1
pkgs/applications/editors/vscode/generic.nix
··· 109 109 gappsWrapperArgs+=( 110 110 # Add gio to PATH so that moving files to the trash works when not using a desktop environment 111 111 --prefix PATH : ${glib.bin}/bin 112 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" 112 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 113 113 --add-flags ${lib.escapeShellArg commandLineArgs} 114 114 ) 115 115 '';
+52 -18
pkgs/applications/misc/khal/default.nix
··· 1 - { lib, stdenv, pkgs, python3, fetchpatch, glibcLocales, installShellFiles }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , glibcLocales 6 + , installShellFiles 7 + , python3 8 + }: 2 9 3 - with python3.pkgs; buildPythonApplication rec { 10 + python3.pkgs.buildPythonApplication rec { 4 11 pname = "khal"; 5 12 version = "0.10.5"; 6 13 7 - src = fetchPypi { 8 - inherit pname version; 9 - sha256 = "sha256-Tu+3rDAqJthgbbOSgXWHpO2UwnoVvy6iEWFKRk/PDHY="; 14 + src = fetchFromGitHub { 15 + owner = "pimutils"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + hash = "sha256-FneJmoAOb7WjSgluCwlspf27IU3MsQZFKryL9OSSsUw="; 10 19 }; 11 20 12 - propagatedBuildInputs = [ 21 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 22 + 23 + nativeBuildInputs = [ 24 + glibcLocales 25 + installShellFiles 26 + ] ++ (with python3.pkgs; [ 27 + setuptools-scm 28 + sphinx 29 + sphinxcontrib_newsfeed 30 + ]); 31 + 32 + propagatedBuildInputs = with python3.pkgs;[ 13 33 atomicwrites 14 34 click 15 35 click-log 16 36 configobj 17 - python-dateutil 37 + freezegun 18 38 icalendar 19 39 lxml 40 + pkginfo 20 41 pkgs.vdirsyncer 42 + python-dateutil 21 43 pytz 22 44 pyxdg 23 45 requests-toolbelt 24 46 tzlocal 25 47 urwid 26 - pkginfo 48 + ]; 49 + 50 + checkInputs = with python3.pkgs;[ 27 51 freezegun 52 + hypothesis 53 + packaging 54 + pytestCheckHook 55 + vdirsyncer 28 56 ]; 29 - nativeBuildInputs = [ setuptools-scm sphinx sphinxcontrib_newsfeed installShellFiles ]; 57 + 58 + patches = [ 59 + # Tests working with latest pytz version, https://github.com/pimutils/khal/pull/1183 60 + (fetchpatch { 61 + name = "support-later-pytz.patch"; 62 + url = "https://github.com/pimutils/khal/commit/53eb8a7426d5c09478c78d809c4df4391438e246.patch"; 63 + sha256 = "sha256-drGtvJlQ3qFUdeukRWCFycPSZGWG/FSRqnbwJzFKITc="; 64 + excludes = [ 65 + "CHANGELOG.rst" 66 + ]; 67 + }) 68 + ]; 30 69 31 70 postInstall = '' 32 71 # shell completions ··· 38 77 # man page 39 78 PATH="${python3.withPackages (ps: with ps; [ sphinx sphinxcontrib_newsfeed ])}/bin:$PATH" \ 40 79 make -C doc man 41 - install -Dm755 doc/build/man/khal.1 -t $out/share/man/man1 80 + installManPage doc/build/man/khal.1 42 81 43 - # desktop 82 + # .desktop file 44 83 install -Dm755 misc/khal.desktop -t $out/share/applications 45 84 ''; 46 85 47 86 doCheck = !stdenv.isAarch64; 48 87 49 - checkInputs = [ 50 - glibcLocales 51 - pytestCheckHook 52 - ]; 53 - 54 88 LC_ALL = "en_US.UTF-8"; 55 89 56 90 disabledTests = [ ··· 59 93 ]; 60 94 61 95 meta = with lib; { 62 - broken = stdenv.isDarwin; 63 - homepage = "http://lostpackets.de/khal/"; 64 96 description = "CLI calendar application"; 97 + homepage = "http://lostpackets.de/khal/"; 65 98 license = licenses.mit; 66 99 maintainers = with maintainers; [ gebner ]; 100 + broken = stdenv.isDarwin; 67 101 }; 68 102 }
+13 -13
pkgs/applications/misc/pdfstudio/common.nix
··· 1 1 { pname 2 + , program 2 3 , src 3 4 , year 4 5 , version 5 6 , desktopName 6 7 , longDescription 7 8 , buildFHSUserEnv 8 - , extraBuildInputs ? [] 9 + , extraBuildInputs ? [ ] 10 + , jdk 9 11 , stdenv 10 12 , lib 11 13 , dpkg ··· 14 16 , autoPatchelfHook 15 17 , sane-backends 16 18 , cups 17 - , jdk11 18 19 }: 19 20 let 20 21 thisPackage = stdenv.mkDerivation rec { ··· 23 24 24 25 buildInputs = [ 25 26 sane-backends #for libsane.so.1 26 - jdk11 27 27 ] ++ extraBuildInputs; 28 28 29 29 nativeBuildInputs = [ ··· 34 34 35 35 desktopItems = [ 36 36 (makeDesktopItem { 37 - name = "${pname}${year}"; 37 + name = "${pname}"; 38 38 desktopName = desktopName; 39 39 genericName = "View and edit PDF files"; 40 40 exec = "${pname} %f"; 41 - icon = "${pname}${year}"; 41 + icon = "${pname}"; 42 42 comment = "Views and edits PDF files"; 43 43 mimeTypes = [ "application/pdf" ]; 44 44 categories = [ "Office" ]; 45 45 }) 46 46 ]; 47 47 48 - unpackCmd = "dpkg-deb -x $src ./${pname}-${version}"; 48 + unpackCmd = "dpkg-deb -x $src ./${program}-${version}"; 49 49 dontBuild = true; 50 50 51 51 postPatch = '' 52 - substituteInPlace opt/${pname}${year}/${pname}${year} --replace "# INSTALL4J_JAVA_HOME_OVERRIDE=" "INSTALL4J_JAVA_HOME_OVERRIDE=${jdk11.out}" 53 - substituteInPlace opt/${pname}${year}/updater --replace "# INSTALL4J_JAVA_HOME_OVERRIDE=" "INSTALL4J_JAVA_HOME_OVERRIDE=${jdk11.out}" 52 + substituteInPlace opt/${program}${year}/${program}${year} --replace "# INSTALL4J_JAVA_HOME_OVERRIDE=" "INSTALL4J_JAVA_HOME_OVERRIDE=${jdk.out}" 53 + substituteInPlace opt/${program}${year}/updater --replace "# INSTALL4J_JAVA_HOME_OVERRIDE=" "INSTALL4J_JAVA_HOME_OVERRIDE=${jdk.out}" 54 54 ''; 55 55 56 56 installPhase = '' 57 57 runHook preInstall 58 58 59 59 mkdir -p $out/{bin,share/pixmaps} 60 - rm -rf opt/${pname}${year}/jre 61 - cp -r opt/${pname}${year} $out/share/ 62 - ln -s $out/share/${pname}${year}/.install4j/${pname}${year}.png $out/share/pixmaps/ 63 - ln -s $out/share/${pname}${year}/${pname}${year} $out/bin/${pname} 60 + rm -rf opt/${program}${year}/jre 61 + cp -r opt/${program}${year} $out/share/ 62 + ln -s $out/share/${program}${year}/.install4j/${program}${year}.png $out/share/pixmaps/${pname}.png 63 + ln -s $out/share/${program}${year}/${program}${year} $out/bin/ 64 64 65 65 runHook postInstall 66 66 ''; ··· 74 74 cups 75 75 thisPackage 76 76 ]; 77 - runScript = pname; 77 + runScript = "${program}${year}"; 78 78 79 79 # link desktop item and icon into FHS user environment 80 80 extraInstallCommands = ''
+53 -26
pkgs/applications/misc/pdfstudio/default.nix
··· 1 - { program ? "pdfstudioviewer" 1 + # For upstream versions, download links, and change logs see https://www.qoppa.com/pdfstudio/versions 2 + # 3 + # PDF Studio license is for a specific year, so we need different packages for different years. 4 + # All versions of PDF Studio Viewer are free, so we package only the latest year. 5 + # Thus, packages are pdfstudioviewer, pdfstudio2021, pdfstudio2022, etc. 6 + # Variables: 7 + # - program is either "pdfstudio" or "pdfstudioviewer", defaults to "pdfstudio". 8 + # - year identifies the year portion of the version, defaults to most recent year. 9 + # - pname is either "pdfstudio${year}" or "pdfstudioviewer". 10 + 11 + { program ? "pdfstudio" 12 + , year ? "2022" 2 13 , fetchurl 3 14 , libgccjit 4 15 , callPackage 16 + , jdk11 17 + , jdk17 5 18 }: 6 - 7 - let makeurl = { pname, year, version }: "https://download.qoppa.com/${pname}/v${year}/${ 8 - builtins.replaceStrings [ "pdfstudio" "viewer" "." ] [ "PDFStudio" "Viewer" "_" ] "${pname}_v${version}" 9 - }_linux64.deb"; 19 + let 20 + longDescription = '' 21 + PDF Studio is an easy to use, full-featured PDF editing software. This is the standard/pro edition, which requires a license. For the free PDF Studio Viewer see the package pdfstudioviewer. 22 + ''; 23 + pname = if (program == "pdfstudio") then "${program}${year}" else program; 24 + desktopName = 25 + if (program == "pdfstudio") 26 + then "PDF Studio ${year}" 27 + else "PDF Studio Viewer"; 28 + dot2dash = str: builtins.replaceStrings [ "." ] [ "_" ] str; 10 29 in 11 30 { 12 - pdfstudio = callPackage ./common.nix rec { 13 - pname = program; 14 - year = "2021"; 15 - version = "${year}.2.0"; 16 - desktopName = "PDF Studio"; 31 + pdfstudioviewer = callPackage ./common.nix rec { 32 + inherit desktopName pname program year; 33 + version = "${year}.0.2"; 17 34 longDescription = '' 18 - PDF Studio is an easy to use, full-featured PDF editing software. This is the standard/pro edition, which requires a license. For the free PDF Studio Viewer see the package pdfstudioviewer. 35 + PDF Studio Viewer is an easy to use, full-featured PDF editing software. This is the free edition. For the standard/pro edition, see the package pdfstudio. 19 36 ''; 20 - extraBuildInputs = [ 21 - libgccjit #for libstdc++.so.6 and libgomp.so.1 22 - ]; 37 + src = fetchurl { 38 + url = "https://web.archive.org/web/20220909093140/https://download.qoppa.com/pdfstudioviewer/PDFStudioViewer_linux64.deb"; 39 + sha256 = "sha256-za+a5vGkINLFvFoZdnB++4VGE9rfdfZf5HFNw/Af1AA="; 40 + }; 41 + jdk = jdk11; 42 + }; 43 + 44 + pdfstudio2021 = callPackage ./common.nix rec { 45 + inherit desktopName longDescription pname program year; 46 + version = "${year}.2.0"; 23 47 src = fetchurl { 24 - url = makeurl { inherit pname year version; }; 48 + url = "https://download.qoppa.com/pdfstudio/v${year}/PDFStudio_v${dot2dash version}_linux64.deb"; 25 49 sha256 = "sha256-wQgVWz2kS+XkrqvCAUishizfDrCwGyVDAAU4Yzj4uYU="; 26 50 }; 51 + extraBuildInputs = [ 52 + libgccjit #for libstdc++.so.6 and libgomp.so.1 53 + ]; 54 + jdk = jdk11; 27 55 }; 28 56 29 - pdfstudioviewer = callPackage ./common.nix rec { 30 - pname = program; 31 - year = "2021"; 32 - version = "${year}.2.0"; 33 - desktopName = "PDF Studio Viewer"; 34 - longDescription = '' 35 - PDF Studio Viewer is an easy to use, full-featured PDF editing software. This is the free edition. For the standard/pro edition, see the package pdfstudio. 36 - ''; 57 + pdfstudio2022 = callPackage ./common.nix rec { 58 + inherit desktopName longDescription pname program year; 59 + version = "${year}.0.2"; 37 60 src = fetchurl { 38 - url = makeurl { inherit pname year version; }; 39 - sha256 = "sha256-RjVfl3wRK4bqNwSZr2R0CNx4urHTL0QLmKdogEnySWU="; 61 + url = "https://download.qoppa.com/pdfstudio/v${year}/PDFStudio_v${dot2dash version}_linux64_adoptium17.deb"; 62 + sha256 = "sha256-fWZXCyizP++pkmC+UpgCzGvb0QrNs4RI6iC4ZBL8hLE="; 40 63 }; 64 + extraBuildInputs = [ 65 + libgccjit #for libstdc++.so.6 and libgomp.so.1 66 + ]; 67 + jdk = jdk17; 41 68 }; 42 - }.${program} 69 + }.${pname}
+1 -1
pkgs/applications/misc/whalebird/default.nix
··· 74 74 75 75 makeWrapper ${electron}/bin/electron $out/bin/whalebird \ 76 76 --add-flags $out/opt/Whalebird/resources/app.asar \ 77 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" 77 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 78 78 79 79 runHook postInstall 80 80 '';
+1 -1
pkgs/applications/networking/browsers/brave/default.nix
··· 177 177 ${optionalString (disableFeatures != []) '' 178 178 --add-flags "--disable-features=${strings.concatStringsSep "," disableFeatures}" 179 179 ''} 180 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland}}" 180 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 181 181 ${optionalString vulkanSupport '' 182 182 --prefix XDG_DATA_DIRS : "${addOpenGLRunpath.driverLink}/share" 183 183 --add-flags ${escapeShellArg commandLineArgs}
+1 -1
pkgs/applications/networking/browsers/chromium/default.nix
··· 184 184 mkdir -p "$out/bin" 185 185 186 186 makeWrapper "${browserBinary}" "$out/bin/chromium" \ 187 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" \ 187 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" \ 188 188 --add-flags ${escapeShellArg commandLineArgs} 189 189 190 190 ed -v -s "$out/bin/chromium" << EOF
+1 -1
pkgs/applications/networking/browsers/google-chrome/default.nix
··· 148 148 --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" \ 149 149 --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:${addOpenGLRunpath.driverLink}/share" \ 150 150 --set CHROME_WRAPPER "google-chrome-$dist" \ 151 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" \ 151 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" \ 152 152 --add-flags ${escapeShellArg commandLineArgs} 153 153 154 154 for elf in $out/share/google/$appname/{chrome,chrome-sandbox,${crashpadHandlerBinary},nacl_helper}; do
+92 -92
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 29 29 "version": "0.1.1" 30 30 }, 31 31 "aiven": { 32 - "hash": "sha256-FjCcUC06iDeKaHSlQPNuKdqEhA8ft4MQ+sY3YPlNY6E=", 32 + "hash": "sha256-ceicNERNIM6KDjSXF/D3NG1aTC2Mhlhbq56QbsJUuF4=", 33 33 "owner": "aiven", 34 34 "provider-source-address": "registry.terraform.io/aiven/aiven", 35 35 "repo": "terraform-provider-aiven", 36 - "rev": "v3.6.0", 37 - "vendorHash": "sha256-X9AJM4OsJ2/zl2Mm6gaz5wA6hk9AfOlUFYYN9Ojirrc=", 38 - "version": "3.6.0" 36 + "rev": "v3.7.0", 37 + "vendorHash": "sha256-4fbbbJnWzJ4DF3YjkeH/mqS45LVc5yg7zSC9V8jGbXo=", 38 + "version": "3.7.0" 39 39 }, 40 40 "akamai": { 41 - "hash": "sha256-rUVSXaxC71nb32o2zShm9/SoUN+UoD2CQadifZWXWR8=", 41 + "hash": "sha256-XlL8UcfZI1oxGti2Hr4mgmu34qbyPG5yJJ+h8ndgo/k=", 42 42 "owner": "akamai", 43 43 "provider-source-address": "registry.terraform.io/akamai/akamai", 44 44 "repo": "terraform-provider-akamai", 45 - "rev": "v2.3.0", 46 - "vendorHash": "sha256-lqoPXrnihdewqyByfl2y6mH3AHlELz2ZIdIE7v/ljrE=", 47 - "version": "2.3.0" 45 + "rev": "v2.4.1", 46 + "vendorHash": "sha256-BRPDsb0h9YINJ4dwGM5FEuUto3UFVImRUn/i6gHAkAc=", 47 + "version": "2.4.1" 48 48 }, 49 49 "alicloud": { 50 50 "deleteVendor": true, 51 - "hash": "sha256-ubALJacK0vHndZGarGWus+S2EmRRL0XaX1/ORgBPejs=", 51 + "hash": "sha256-lJsCXLSIbb/jLjNsvU0GFljlrKBR2TDDOGXDhBTaIKI=", 52 52 "owner": "aliyun", 53 53 "provider-source-address": "registry.terraform.io/aliyun/alicloud", 54 54 "repo": "terraform-provider-alicloud", 55 - "rev": "v1.186.0", 56 - "vendorHash": "sha256-TUcwNiS+WpvoLQWzAqdPDHqnNVrnAI2h6UkC6YsfG/s=", 57 - "version": "1.186.0" 55 + "rev": "v1.187.0", 56 + "vendorHash": "sha256-aiybvpps/TyrMRP8vbfhBAUO+9kR7WWrgo1kOWKTj24=", 57 + "version": "1.187.0" 58 58 }, 59 59 "ansible": { 60 60 "hash": "sha256-3nha5V4rNgVzgqliebmbC5e12Lj/zlCsyyiIVFlmUrY=", ··· 93 93 "version": "22.1.1" 94 94 }, 95 95 "aviatrix": { 96 - "hash": "sha256-vLB6bMyjiZiebQWmnzSBW7geFW0ghCBba3YTteVzbII=", 96 + "hash": "sha256-1zHaSdDcGynLhgLMDRbRgRzt0IvQI25TDZrYzZwwQ34=", 97 97 "owner": "AviatrixSystems", 98 98 "provider-source-address": "registry.terraform.io/AviatrixSystems/aviatrix", 99 99 "repo": "terraform-provider-aviatrix", 100 - "rev": "v2.24.0", 100 + "rev": "v2.24.1", 101 101 "vendorHash": null, 102 - "version": "2.24.0" 102 + "version": "2.24.1" 103 103 }, 104 104 "aws": { 105 - "hash": "sha256-nIFfPAuRZv+deLHDhOhl27TcIkVFIrI704RmlK9fH38=", 105 + "hash": "sha256-btpN208sQQLCq5yj4w23AHbEG+ylX3o7GB5DHmGIrw0=", 106 106 "owner": "hashicorp", 107 107 "provider-source-address": "registry.terraform.io/hashicorp/aws", 108 108 "repo": "terraform-provider-aws", 109 - "rev": "v4.32.0", 110 - "vendorHash": "sha256-qnh28bbG5k6jMUepcxtgDWk1DptQiXjkg702QtYIM28=", 111 - "version": "4.32.0" 109 + "rev": "v4.33.0", 110 + "vendorHash": "sha256-bQrf5s/6GPOfW5iYO7gBdSoxSnKRDUEoSVIn+NPQH20=", 111 + "version": "4.33.0" 112 112 }, 113 113 "azuread": { 114 - "hash": "sha256-r7trdPrlvZ5rW75L7AEkG1baQaLMXnZ48Axi552nPIM=", 114 + "hash": "sha256-rj/ODxmuK0Ro1KVHh4onR/evtUdKzay9BpQDgrx+eNA=", 115 115 "owner": "hashicorp", 116 116 "provider-source-address": "registry.terraform.io/hashicorp/azuread", 117 117 "repo": "terraform-provider-azuread", 118 - "rev": "v2.28.1", 118 + "rev": "v2.29.0", 119 119 "vendorHash": null, 120 - "version": "2.28.1" 120 + "version": "2.29.0" 121 121 }, 122 122 "azurerm": { 123 - "hash": "sha256-5HMy28/AnUH+18i5eBm1OjQZElvrXsWd6jwQteFCpR4=", 123 + "hash": "sha256-dBrmoxkQ4KlAM3gW5JRMy96nI7BJ5UH647yZkAViosk=", 124 124 "owner": "hashicorp", 125 125 "provider-source-address": "registry.terraform.io/hashicorp/azurerm", 126 126 "repo": "terraform-provider-azurerm", 127 - "rev": "v3.24.0", 127 + "rev": "v3.25.0", 128 128 "vendorHash": null, 129 - "version": "3.24.0" 129 + "version": "3.25.0" 130 130 }, 131 131 "azurestack": { 132 132 "hash": "sha256-aSwVa7y1AJ6sExx+bO/93oLBNgSBDJjuPYPY8i3C9T0=", ··· 139 139 }, 140 140 "baiducloud": { 141 141 "deleteVendor": true, 142 - "hash": "sha256-0tu+WwL5aZVhmQs30KwY7ctlPqhcYb179QVLI3wGedw=", 142 + "hash": "sha256-LaehOof8T2LGgn6Q/oo+SPcld9QRVk+MjaEJnYvNNnQ=", 143 143 "owner": "baidubce", 144 144 "provider-source-address": "registry.terraform.io/baidubce/baiducloud", 145 145 "repo": "terraform-provider-baiducloud", 146 - "rev": "v1.15.9", 146 + "rev": "v1.15.10", 147 147 "vendorHash": "sha256-v07NMx8caXvY97FefNnRV7gMQbUq4k2ZmE5huqqe354=", 148 - "version": "1.15.9" 148 + "version": "1.15.10" 149 149 }, 150 150 "bigip": { 151 - "hash": "sha256-fh1RRl+NLKTLLFUGK5gkWqWMCzUwHBFk69Tc0JIuFgs=", 151 + "hash": "sha256-uSe+J4AlW8Dt96BVF1ZI/yrgWUbZsl64b/D+k5ysHC0=", 152 152 "owner": "F5Networks", 153 153 "provider-source-address": "registry.terraform.io/F5Networks/bigip", 154 154 "repo": "terraform-provider-bigip", 155 - "rev": "v1.15.1", 155 + "rev": "v1.15.2", 156 156 "vendorHash": null, 157 - "version": "1.15.1" 157 + "version": "1.15.2" 158 158 }, 159 159 "bitbucket": { 160 160 "hash": "sha256-arNkR67rsqxVV2omEV9MWQmDO95PLuoVicifLjEfBTM=", ··· 166 166 "version": "2.21.2" 167 167 }, 168 168 "brightbox": { 169 - "hash": "sha256-UUDL1w/3IEa+Na77FoYReevJLT3AJq5giHYS6Bq4DQs=", 169 + "hash": "sha256-l4gN7gxLMTuUMjf50Hc2Els5pJ4BId1QlRAhykseK7c=", 170 170 "owner": "brightbox", 171 171 "provider-source-address": "registry.terraform.io/brightbox/brightbox", 172 172 "repo": "terraform-provider-brightbox", 173 - "rev": "v3.0.4", 174 - "vendorHash": "sha256-M/S7gRRcAs53Ctx1oecHrlTxYxI1Kpr3ygTZLHG/9pY=", 175 - "version": "3.0.4" 173 + "rev": "v3.0.5", 174 + "vendorHash": "sha256-ZT+SOHn/8aoZLXUau9toc3NtQNaXfttM0agIw8T28tk=", 175 + "version": "3.0.5" 176 176 }, 177 177 "buildkite": { 178 178 "hash": "sha256-BpQpMAecpknI8b1q6XuZPty8I/AUTAwQWm5Y28XJ+G4=", ··· 287 287 "version": "0.11.0" 288 288 }, 289 289 "datadog": { 290 - "hash": "sha256-lHZURLE8woJzFVuuDFxSciyrt7rTAgvR7rF4INEGoVI=", 290 + "hash": "sha256-viQDfs3xOsGOsRmTB6LkdN1JPc95UYpQ6et2ud+Or94=", 291 291 "owner": "DataDog", 292 292 "provider-source-address": "registry.terraform.io/DataDog/datadog", 293 293 "repo": "terraform-provider-datadog", 294 - "rev": "v3.15.1", 295 - "vendorHash": "sha256-X8X3nX+xHAqSb+j0P0PJ366MAFGRvUmcu/qYQqMI+0U=", 296 - "version": "3.15.1" 294 + "rev": "v3.16.0", 295 + "vendorHash": "sha256-U533VGe37ItG5EK+fJo8Nj8t1MhDAHdT03ghQLL3WzI=", 296 + "version": "3.16.0" 297 297 }, 298 298 "dhall": { 299 299 "hash": "sha256-K0j90YAzYqdyJD4aofyxAJF9QBYNMbhSVm/s1GvWuJ4=", ··· 332 332 "version": "3.2.3" 333 333 }, 334 334 "dnsimple": { 335 - "hash": "sha256-O64xOyGXLcCFy8rBR9QDzcYDi2fm2AHIObDyOJ33ZmA=", 335 + "hash": "sha256-dge7slNS1EkWwjt3+WS8tlKjFHw6LV/q1Bxrl1RflBw=", 336 336 "owner": "dnsimple", 337 337 "provider-source-address": "registry.terraform.io/dnsimple/dnsimple", 338 338 "repo": "terraform-provider-dnsimple", 339 - "rev": "v0.14.0", 339 + "rev": "v0.14.1", 340 340 "vendorHash": "sha256-z0vos/tZDUClK/s2yrXZG2RU8QgA8IM6bJj6jSdCnBk=", 341 - "version": "0.14.0" 341 + "version": "0.14.1" 342 342 }, 343 343 "docker": { 344 344 "hash": "sha256-hUKe9VjaNbiPhbxyFKly5PlKWngU2pl6ygwRJSokxr8=", ··· 359 359 "version": "2.0.4" 360 360 }, 361 361 "equinix": { 362 - "hash": "sha256-rawuS0k6f727/4zODo2+tWwEvtJ7mU7Fatm1vFVRVkc=", 362 + "hash": "sha256-gvI9awkKiWWnw6O/KvskFTHZfvajGfgYu8DGsT34Siw=", 363 363 "owner": "equinix", 364 364 "provider-source-address": "registry.terraform.io/equinix/equinix", 365 365 "repo": "terraform-provider-equinix", 366 - "rev": "v1.9.0", 367 - "vendorHash": "sha256-mrX0PWvND/DiQ4QruWpG6hx+AimV5I1zfpsyigzWl/8=", 368 - "version": "1.9.0" 366 + "rev": "v1.10.0", 367 + "vendorHash": "sha256-ZGPSNz/6qwEU5EY72fIJ1x9bnsN9OZQ6MQ+XNotMGgA=", 368 + "version": "1.10.0" 369 369 }, 370 370 "exoscale": { 371 371 "hash": "sha256-d+CMg3wYHsOYow8LG7P+qcszUBiCbNwEp1zCJN7yZKo=", ··· 395 395 "version": "2.3.2" 396 396 }, 397 397 "flexibleengine": { 398 - "hash": "sha256-zO5bt17cwMnv6kk1McRPOrs4UJ15MBpTRT2WoDovXG4=", 398 + "hash": "sha256-2eXNumT1Hkc33bW635qYr5jxlByX+yZ8zSKRpgKWQJo=", 399 399 "owner": "FlexibleEngineCloud", 400 400 "provider-source-address": "registry.terraform.io/FlexibleEngineCloud/flexibleengine", 401 401 "repo": "terraform-provider-flexibleengine", 402 - "rev": "v1.32.0", 403 - "vendorHash": "sha256-jX98VUNTOa0C9WiAiFUiFQ9W7vhRdXCgmmxz84CmEpw=", 404 - "version": "1.32.0" 402 + "rev": "v1.33.0", 403 + "vendorHash": "sha256-smk44z0q2Ku9iO+74vhb/gk5DvdaJe/wDFg7EtQEh/E=", 404 + "version": "1.33.0" 405 405 }, 406 406 "fortios": { 407 407 "deleteVendor": true, ··· 415 415 "version": "1.15.0" 416 416 }, 417 417 "gandi": { 418 - "hash": "sha256-TAigFxgn8OufZTXCBhjURLcUaVvOWvNXonn/QV+Bt6I=", 418 + "hash": "sha256-uXZcYiNsBf5XsMjOjjQeNtGwLhTgYES1E9t63fBEI6Q=", 419 419 "owner": "go-gandi", 420 420 "provider-source-address": "registry.terraform.io/go-gandi/gandi", 421 421 "repo": "terraform-provider-gandi", 422 - "rev": "v2.1.0", 423 - "vendorHash": "sha256-qDsBI+EruukMnLlLojC2An7lTafQoCkUQU+guhgctSk=", 424 - "version": "2.1.0" 422 + "rev": "v2.2.0", 423 + "vendorHash": "sha256-cStVmI58V46I3MYYYrbCY3llnOx2pyuM2Ku+rhe5DVQ=", 424 + "version": "2.2.0" 425 425 }, 426 426 "github": { 427 427 "hash": "sha256-NJ5HvW3LOvshzea7t0/sAsp3SqiXErXd32Ej0Qp4zsk=", ··· 442 442 "version": "3.18.0" 443 443 }, 444 444 "google": { 445 - "hash": "sha256-BNLgY5mvtBu2Zfa5Caw5EMzMyZXsmjl6V5LOqrXgz78=", 445 + "hash": "sha256-RveRVr5IdZrBX9uF0q0wyx/sh+cNBDp9CAv3zXOdATQ=", 446 446 "owner": "hashicorp", 447 447 "provider-source-address": "registry.terraform.io/hashicorp/google", 448 448 "proxyVendor": true, 449 449 "repo": "terraform-provider-google", 450 - "rev": "v4.37.0", 450 + "rev": "v4.38.0", 451 451 "vendorHash": "sha256-U5J9X51PAq3Cq/XH5ggThzsPaEy+AveHqD4D6NbK/AU=", 452 - "version": "4.37.0" 452 + "version": "4.38.0" 453 453 }, 454 454 "google-beta": { 455 - "hash": "sha256-hqcpJELpYz9rkjndzhMRveGZKWH/1Pjea9lw7NfTC6c=", 455 + "hash": "sha256-zQ8GgmWM3frLTstcrO0GKBWk1pMQTNMqxDGH9EmlzcQ=", 456 456 "owner": "hashicorp", 457 457 "provider-source-address": "registry.terraform.io/hashicorp/google-beta", 458 458 "proxyVendor": true, 459 459 "repo": "terraform-provider-google-beta", 460 - "rev": "v4.37.0", 460 + "rev": "v4.38.0", 461 461 "vendorHash": "sha256-U5J9X51PAq3Cq/XH5ggThzsPaEy+AveHqD4D6NbK/AU=", 462 - "version": "4.37.0" 462 + "version": "4.38.0" 463 463 }, 464 464 "googleworkspace": { 465 465 "hash": "sha256-dedYnsKHizxJZibuvJOMbJoux0W6zgKaK5fxIofKqCY=", ··· 498 498 "version": "1.35.2" 499 499 }, 500 500 "helm": { 501 - "hash": "sha256-OzxTPxk3lfmA13KfDGBvDd1AqCsKRw+bv7QiEo9fPQc=", 501 + "hash": "sha256-oX6pchJcgv9w5xLGe09GBzngz9+a/OZn6FTBWURgiLk=", 502 502 "owner": "hashicorp", 503 503 "provider-source-address": "registry.terraform.io/hashicorp/helm", 504 504 "repo": "terraform-provider-helm", 505 - "rev": "v2.6.0", 505 + "rev": "v2.7.0", 506 506 "vendorHash": null, 507 - "version": "2.6.0" 507 + "version": "2.7.0" 508 508 }, 509 509 "heroku": { 510 510 "hash": "sha256-n6M7i7zompAGRoP9WxrcWdBHsK2RssfTgCKsvAE5XZM=", ··· 544 544 "version": "3.1.0" 545 545 }, 546 546 "huaweicloud": { 547 - "hash": "sha256-idfHSXXicEeQqjoJGkRDr78Bq00bHz2OtqLlVqehZz8=", 547 + "hash": "sha256-Hr60bx3fGpfSxQAwGckhmZ80Iw/bPKLNDXeVXV1GTdo=", 548 548 "owner": "huaweicloud", 549 549 "provider-source-address": "registry.terraform.io/huaweicloud/huaweicloud", 550 550 "repo": "terraform-provider-huaweicloud", 551 - "rev": "v1.40.2", 551 + "rev": "v1.41.0", 552 552 "vendorHash": null, 553 - "version": "1.40.2" 553 + "version": "1.41.0" 554 554 }, 555 555 "huaweicloudstack": { 556 556 "hash": "sha256-WSJDp+LFjVPquQVMgib/YZV35kktLH2vMCIZJWqakXs=", ··· 571 571 "version": "0.1.2" 572 572 }, 573 573 "ibm": { 574 - "hash": "sha256-wKs9WWajz08u3EXNmevVLnXxBIY4FBazLuDYyPBPH3I=", 574 + "hash": "sha256-zcc7xUSTntTC0vLFBEW1PvvkSEtzD5VkKy/Jq8x5zKk=", 575 575 "owner": "IBM-Cloud", 576 576 "provider-source-address": "registry.terraform.io/IBM-Cloud/ibm", 577 577 "repo": "terraform-provider-ibm", 578 - "rev": "v1.45.0", 578 + "rev": "v1.45.1", 579 579 "vendorHash": "sha256-FAoRQxnc/vD5KYp0hb6iWGbZiWEtLzEr6R+vdruitKc=", 580 - "version": "1.45.0" 580 + "version": "1.45.1" 581 581 }, 582 582 "icinga2": { 583 583 "hash": "sha256-Y/Oq0aTzP+oSKPhHiHY9Leal4HJJm7TNDpcdqkUsCmk=", ··· 625 625 "version": "3.10.0" 626 626 }, 627 627 "ksyun": { 628 - "hash": "sha256-3iK17ZiYrQOnfZwFIL/4FF+My5vieszlm2V8reTDEWM=", 628 + "hash": "sha256-y7F6eCyiYVtiBaHCaZyUUPAE9GkKo/m/OY98EeBd8DU=", 629 629 "owner": "kingsoftcloud", 630 630 "provider-source-address": "registry.terraform.io/kingsoftcloud/ksyun", 631 631 "repo": "terraform-provider-ksyun", 632 - "rev": "v1.3.52", 633 - "vendorHash": "sha256-nbAEaRFtFtB4ftLgnCv3MmkjFFbcNkCuxZc+G8/ObPE=", 634 - "version": "1.3.52" 632 + "rev": "v1.3.54", 633 + "vendorHash": "sha256-miHKAz+ONXtuC1DNukcyZbbaYReY69dz9Zk6cJdORdQ=", 634 + "version": "1.3.54" 635 635 }, 636 636 "kubectl": { 637 637 "hash": "sha256-UkUwWi7Z9cSMyZakD6JxMl+qdczAYfZQgwroCUjFIUM=", ··· 697 697 "version": "2.2.3" 698 698 }, 699 699 "logicmonitor": { 700 - "hash": "sha256-F22tBNnH8dvSjrd0Wx+bAfiiQ9emJjHGXn3x4mQKH5E=", 700 + "hash": "sha256-GQPTFf+JxJB3iO1Us0zOAAG2NonuJ/b5la6f1j2Nd4k=", 701 701 "owner": "logicmonitor", 702 702 "provider-source-address": "registry.terraform.io/logicmonitor/logicmonitor", 703 703 "repo": "terraform-provider-logicmonitor", 704 - "rev": "v2.0.2", 704 + "rev": "v2.0.3", 705 705 "vendorHash": null, 706 - "version": "2.0.2" 706 + "version": "2.0.3" 707 707 }, 708 708 "lxd": { 709 709 "hash": "sha256-rNqlPyKpBNaIRtiNHB8U8jowWhqdQtDIMxreZ5Dfm3E=", ··· 834 834 "version": "1.7.1" 835 835 }, 836 836 "oci": { 837 - "hash": "sha256-qB/sRPvX+srpySJPDWxoZviVFtbVTK9hwAR6D4pyjmc=", 837 + "hash": "sha256-x1yrAYq8UXs69QkXMUq7mZ6in8o2+GPaS0EsAjn/pXg=", 838 838 "owner": "oracle", 839 839 "provider-source-address": "registry.terraform.io/oracle/oci", 840 840 "repo": "terraform-provider-oci", 841 - "rev": "v4.94.0", 841 + "rev": "v4.95.0", 842 842 "vendorHash": null, 843 - "version": "4.94.0" 843 + "version": "4.95.0" 844 844 }, 845 845 "okta": { 846 846 "hash": "sha256-rgDBZsbXBzBcDgVoaFkPD27Ezef9J23oqtBJAHqJrrE=", ··· 1050 1050 "version": "6.17.0" 1051 1051 }, 1052 1052 "skytap": { 1053 - "hash": "sha256-8hVHtuLBJDBH3z90VoKbbnvCBTrJxCd228veFCO449A=", 1053 + "hash": "sha256-EAimiuQJOt12baZSjDKI+c9UjJd8e26ouOAZIZezw/I=", 1054 1054 "owner": "skytap", 1055 1055 "provider-source-address": "registry.terraform.io/skytap/skytap", 1056 1056 "repo": "terraform-provider-skytap", 1057 - "rev": "v0.14.5", 1057 + "rev": "v0.15.0", 1058 1058 "vendorHash": null, 1059 - "version": "0.14.5" 1059 + "version": "0.15.0" 1060 1060 }, 1061 1061 "snowflake": { 1062 - "hash": "sha256-1aHhiZhswlLzEBkvjFQI7jLPAX2/KLxE0oKLspnRtQI=", 1062 + "hash": "sha256-i96scuSP7I8rcyncUkpBoxxM0D4zp9rNHqWwb9WLbhA=", 1063 1063 "owner": "Snowflake-Labs", 1064 1064 "provider-source-address": "registry.terraform.io/Snowflake-Labs/snowflake", 1065 1065 "repo": "terraform-provider-snowflake", 1066 - "rev": "v0.45.0", 1066 + "rev": "v0.46.0", 1067 1067 "vendorHash": "sha256-43q1SrV7tEt0x7iRUAgBFg1oh8+B9i1i59nlR8kbLIY=", 1068 - "version": "0.45.0" 1068 + "version": "0.46.0" 1069 1069 }, 1070 1070 "sops": { 1071 1071 "hash": "sha256-6FuThi6iuuUGcMhswAk3Z6Lxth/2nuI57A02Xu2s+/U=", ··· 1113 1113 "version": "2.19.0" 1114 1114 }, 1115 1115 "tencentcloud": { 1116 - "hash": "sha256-aC/KtMOl5Ldrlme9Bd4E4UQSLVsKFsJbsL9KMGDmJbo=", 1116 + "hash": "sha256-SoCXh0pRqEkto2K+ZfN7ncVGDVC32zDElS+rBdOfa0g=", 1117 1117 "owner": "tencentcloudstack", 1118 1118 "provider-source-address": "registry.terraform.io/tencentcloudstack/tencentcloud", 1119 1119 "repo": "terraform-provider-tencentcloud", 1120 - "rev": "v1.78.0", 1120 + "rev": "v1.78.3", 1121 1121 "vendorHash": null, 1122 - "version": "1.78.0" 1122 + "version": "1.78.3" 1123 1123 }, 1124 1124 "tfe": { 1125 - "hash": "sha256-DRbJ1ZmYMkEncZHE12uLcNHhbSnxvyG3IYqlUsxs+pI=", 1125 + "hash": "sha256-jh5bRe/3OsdgvSpraYEc1NgvBmYb1tFuVSPQ2ZAesSY=", 1126 1126 "owner": "hashicorp", 1127 1127 "provider-source-address": "registry.terraform.io/hashicorp/tfe", 1128 1128 "repo": "terraform-provider-tfe", 1129 - "rev": "v0.36.1", 1130 - "vendorHash": "sha256-KLae79G6owcJiSxSBKRJX3U0cw9vnihnCs0SjRoIn7Y=", 1131 - "version": "0.36.1" 1129 + "rev": "v0.37.0", 1130 + "vendorHash": "sha256-Su5WpKF9zXeGKdaV8TxsTc6OGUYToNnXAbxWaNxS52U=", 1131 + "version": "0.37.0" 1132 1132 }, 1133 1133 "thunder": { 1134 1134 "hash": "sha256-fXvwBOIW3/76V3O9t25wff0oGViqSaSB2VgMdItXyn4=",
+1 -1
pkgs/applications/networking/instant-messengers/discord/linux.nix
··· 83 83 84 84 wrapProgramShell $out/opt/${binaryName}/${binaryName} \ 85 85 "''${gappsWrapperArgs[@]}" \ 86 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" \ 86 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" \ 87 87 --prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}/" \ 88 88 --prefix LD_LIBRARY_PATH : ${libPath}:$out/opt/${binaryName} 89 89
+1 -1
pkgs/applications/networking/instant-messengers/element/element-desktop.nix
··· 99 99 makeWrapper '${electron}/bin/electron' "$out/bin/${executableName}" \ 100 100 --set LD_PRELOAD ${sqlcipher}/lib/libsqlcipher.so \ 101 101 --add-flags "$out/share/element/electron" \ 102 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" 102 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 103 103 104 104 runHook postInstall 105 105 '';
+1 -1
pkgs/applications/networking/instant-messengers/feishu/default.nix
··· 160 160 wrapProgram $executable \ 161 161 --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ 162 162 --prefix LD_LIBRARY_PATH : ${rpath}:$out/opt/bytedance/feishu:${addOpenGLRunpath.driverLink}/share \ 163 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" \ 163 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" \ 164 164 ${lib.optionalString (commandLineArgs!="") "--add-flags ${lib.escapeShellArg commandLineArgs}"} 165 165 done 166 166
+1 -1
pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix
··· 47 47 makeWrapper ${electron}/bin/electron $out/bin/${pname} \ 48 48 --add-flags $out/share/${pname}/resources/app.asar \ 49 49 --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc xorg.libXtst pipewire ]}" \ 50 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" 50 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 51 51 ''; 52 52 53 53 meta = with lib; {
+1 -1
pkgs/applications/networking/instant-messengers/schildichat/schildichat-desktop.nix
··· 89 89 # executable wrapper 90 90 makeWrapper '${electron}/bin/electron' "$out/bin/${executableName}" \ 91 91 --add-flags "$out/share/element/electron" \ 92 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" 92 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 93 93 94 94 runHook postInstall 95 95 '';
+1 -1
pkgs/applications/networking/instant-messengers/session-desktop/default.nix
··· 50 50 cp -r bin $out/bin 51 51 52 52 wrapProgram $out/bin/session-desktop \ 53 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" 53 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 54 54 55 55 runHook postInstall 56 56 '';
+1 -1
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 108 108 preFixup = '' 109 109 gappsWrapperArgs+=( 110 110 --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc ] }" 111 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" 111 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 112 112 --suffix PATH : ${lib.makeBinPath [ xdg-utils ]} 113 113 ) 114 114
+1 -1
pkgs/applications/networking/instant-messengers/slack/default.nix
··· 170 170 makeWrapper $out/lib/slack/slack $out/bin/slack \ 171 171 --prefix XDG_DATA_DIRS : $GSETTINGS_SCHEMAS_PATH \ 172 172 --suffix PATH : ${lib.makeBinPath [xdg-utils]} \ 173 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" 173 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 174 174 175 175 # Fix the desktop link 176 176 substituteInPlace $out/share/applications/slack.desktop \
+1 -1
pkgs/applications/office/micropad/default.nix
··· 62 62 # executable wrapper 63 63 makeWrapper '${electron}/bin/electron' "$out/bin/${executableName}" \ 64 64 --add-flags "$out/share/micropad" \ 65 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland}}" 65 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 66 66 67 67 runHook postInstall 68 68 '';
+2 -2
pkgs/applications/office/qownnotes/default.nix
··· 5 5 6 6 mkDerivation rec { 7 7 pname = "qownnotes"; 8 - version = "22.9.1"; 8 + version = "22.9.2"; 9 9 10 10 src = fetchurl { 11 11 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 12 12 # Fetch the checksum of current version with curl: 13 13 # curl https://download.tuxfamily.org/qownnotes/src/qownnotes-<version>.tar.xz.sha256 14 - sha256 = "sha256-uVcu14Pg9Na3qG05O03IGWp71N994S2zRyTkcSjwhrk="; 14 + sha256 = "sha256-9cHCFXVgg7fahbQsVUAxgznyMfx4O42D1qWverucpZ8="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ qmake qttools ];
-4
pkgs/build-support/rust/build-rust-package/default.nix
··· 72 72 sha256 = args.cargoSha256; 73 73 } // depsExtraArgs); 74 74 75 - # If we have a cargoSha256 fixed-output derivation, validate it at build time 76 - # against the src fixed-output derivation to check consistency. 77 - validateCargoDeps = args ? cargoHash || args ? cargoSha256; 78 - 79 75 target = rust.toRustTargetSpec stdenv.hostPlatform; 80 76 targetIsJSON = lib.hasSuffix ".json" target; 81 77 useSysroot = targetIsJSON && !__internal_dontAddSysroot;
+1 -1
pkgs/build-support/src-only/default.nix
··· 1 - { stdenv }@orig: 1 + { stdenv }: 2 2 # srcOnly is a utility builder that only fetches and unpacks the given `src`, 3 3 # maybe pathings it in the process with the optional `patches` and 4 4 # `buildInputs` attributes.
+9 -2
pkgs/development/interpreters/hashlink/default.nix
··· 12 12 , pcre 13 13 , SDL2 14 14 , sqlite 15 + , getconf 15 16 }: 16 17 17 18 stdenv.mkDerivation rec { ··· 43 44 sqlite 44 45 ]; 45 46 47 + nativeBuildInputs = [ getconf ]; 48 + 49 + postFixup = lib.optionalString stdenv.isDarwin '' 50 + install_name_tool -change libhl.dylib $out/lib/libhl.dylib $out/bin/hl 51 + ''; 52 + 46 53 meta = with lib; { 47 54 description = "A virtual machine for Haxe"; 48 55 homepage = "https://hashlink.haxe.org/"; 49 56 license = licenses.mit; 50 - platforms = [ "x86_64-linux" ]; 51 - maintainers = with maintainers; [ iblech locallycompact ]; 57 + platforms = [ "x86_64-linux" "x86_64-darwin" ]; 58 + maintainers = with maintainers; [ iblech locallycompact logo ]; 52 59 }; 53 60 }
+32 -8
pkgs/development/interpreters/hashlink/hashlink.patch
··· 1 - *** a/Makefile 1970-01-01 01:00:01.000000000 +0100 2 - --- b/Makefile 2022-06-21 23:36:10.023460654 +0200 3 - *************** endif 4 - *** 109,110 **** 5 - --- 109,111 ---- 6 - LIBOPENAL = -lopenal 7 - + LIBOPENGL = -lGL 8 - RELEASE_NAME = linux 1 + --- a/Makefile 2 + +++ b/Makefile 3 + @@ -107,6 +107,7 @@ LIBFLAGS += -L/opt/libjpeg-turbo/lib64 4 + endif 5 + 6 + LIBOPENAL = -lopenal 7 + +LIBOPENGL = -lGL 8 + RELEASE_NAME = linux 9 + 10 + endif 11 + --- a/libs/sdl/gl.c 12 + +++ b/libs/sdl/gl.c 13 + @@ -7,7 +7,7 @@ 14 + # include <OpenGLES/ES3/gl.h> 15 + # define HL_GLES 16 + #elif defined(HL_MAC) 17 + -# include <SDL.h> 18 + +# include <SDL2/SDL.h> 19 + # include <OpenGL/gl3.h> 20 + # define glBindImageTexture(...) hl_error("Not supported on OSX") 21 + # define glDispatchCompute(...) hl_error("Not supported on OSX") 22 + --- a/libs/sdl/sdl.c 23 + +++ b/libs/sdl/sdl.c 24 + @@ -7,7 +7,7 @@ 25 + # include <SDL.h> 26 + # include <SDL_syswm.h> 27 + #elif defined(HL_MAC) 28 + -# include <SDL.h> 29 + +# include <SDL2/SDL.h> 30 + #else 31 + # include <SDL2/SDL.h> 32 + #endif
+11 -1
pkgs/development/libraries/libxcrypt/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config, perl }: 1 + { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config, perl, fetchpatch }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libxcrypt"; ··· 10 10 rev = "v${version}"; 11 11 sha256 = "sha256-Ohf+RCOXnoCxAFnXXV9e2TCqpfZziQl+FGJTGDSQTF0="; 12 12 }; 13 + 14 + patches = [ 15 + # Fix for tests on musl is being upstreamed: 16 + # https://github.com/besser82/libxcrypt/pull/157 17 + # Applied in all environments to prevent patchrot 18 + (fetchpatch { 19 + url = "https://github.com/besser82/libxcrypt/commit/a4228faa0b96986abc076125cf97d352a063d92f.patch"; 20 + sha256 = "sha256-iGNz8eer6OkA0yR74WisE6GbFTYyXKw7koXl/R7DhVE="; 21 + }) 22 + ]; 13 23 14 24 preConfigure = '' 15 25 patchShebangs autogen.sh
+2 -2
pkgs/development/libraries/thrift/default.nix
··· 67 67 sha256 = "wnG2MjY0DtAhVcEdcxu77tDa4T9Xm2pMYZU2wXLx2OA="; 68 68 }) 69 69 (fetchpatch { 70 - name = "setuptools-gte-62.1.0.patch"; 71 - url = "https://github.com/apache/thrift/pull/2635/commits/c41ad9d5119e9bdae1746167e77e224f390f2c42.patch"; 70 + name = "setuptools-gte-62.1.0.patch"; # https://github.com/apache/thrift/pull/2635 71 + url = "https://github.com/apache/thrift/commit/c41ad9d5119e9bdae1746167e77e224f390f2c42.diff"; 72 72 hash = "sha256-FkErrg/6vXTomS4AsCsld7t+Iccc55ZiDaNjJ3W1km0="; 73 73 }) 74 74 ];
+158
pkgs/development/libraries/wxwidgets/wxGTK32.nix
··· 1 + { lib 2 + , stdenv 3 + , expat 4 + , fetchFromGitHub 5 + , fetchurl 6 + , gnome2 7 + , gst_all_1 8 + , gtk3 9 + , libGL 10 + , libGLU 11 + , libSM 12 + , libXinerama 13 + , libXtst 14 + , libXxf86vm 15 + , libpng 16 + , libtiff 17 + , libjpeg_turbo 18 + , zlib 19 + , pcre2 20 + , pkg-config 21 + , xorgproto 22 + , compat28 ? false 23 + , compat30 ? true 24 + , unicode ? true 25 + , withMesa ? lib.elem stdenv.hostPlatform.system lib.platforms.mesaPlatforms 26 + , withWebKit ? stdenv.isDarwin 27 + , webkitgtk 28 + , setfile 29 + , AGL 30 + , Carbon 31 + , Cocoa 32 + , Kernel 33 + , QTKit 34 + , AVFoundation 35 + , AVKit 36 + , WebKit 37 + }: 38 + let 39 + catch = fetchFromGitHub { 40 + owner = "wxWidgets"; 41 + repo = "Catch"; 42 + rev = "5f5e4cecd1cafc85e109471356dec29e778d2160"; 43 + hash = "sha256-fB/E17tiAicAkq88Je/YFYohJ6EHJOO54oQaqiR/OzY="; 44 + }; 45 + 46 + nanosvg = fetchFromGitHub { 47 + owner = "wxWidgets"; 48 + repo = "nanosvg"; 49 + rev = "ccdb1995134d340a93fb20e3a3d323ccb3838dd0"; 50 + hash = "sha256-ymziU0NgGqxPOKHwGm0QyEdK/8jL/QYk5UdIQ3Tn8jw="; 51 + }; 52 + in 53 + stdenv.mkDerivation rec { 54 + pname = "wxwidgets"; 55 + version = "3.2.1"; 56 + 57 + src = fetchFromGitHub { 58 + owner = "wxWidgets"; 59 + repo = "wxWidgets"; 60 + rev = "v${version}"; 61 + hash = "sha256-k6td/8pF7ad7+gVm7L0jX79fHKwR7/qrOBpSFggyaI0="; 62 + }; 63 + 64 + nativeBuildInputs = [ pkg-config ]; 65 + 66 + buildInputs = [ 67 + gst_all_1.gst-plugins-base 68 + gst_all_1.gstreamer 69 + libpng 70 + libtiff 71 + libjpeg_turbo 72 + zlib 73 + pcre2 74 + ] ++ lib.optionals stdenv.isLinux [ 75 + gtk3 76 + libSM 77 + libXinerama 78 + libXtst 79 + libXxf86vm 80 + xorgproto 81 + ] 82 + ++ lib.optional withMesa libGLU 83 + ++ lib.optional (withWebKit && stdenv.isLinux) webkitgtk 84 + ++ lib.optional (withWebKit && stdenv.isDarwin) WebKit 85 + ++ lib.optionals stdenv.isDarwin [ 86 + expat 87 + setfile 88 + Carbon 89 + Cocoa 90 + Kernel 91 + QTKit 92 + AVFoundation 93 + AVKit 94 + WebKit 95 + ]; 96 + 97 + propagatedBuildInputs = lib.optional stdenv.isDarwin AGL; 98 + 99 + configureFlags = [ 100 + "--disable-precomp-headers" 101 + # This is the default option, but be explicit 102 + "--disable-monolithic" 103 + "--enable-mediactrl" 104 + "--with-nanosvg" 105 + (if compat28 then "--enable-compat28" else "--disable-compat28") 106 + (if compat30 then "--enable-compat30" else "--disable-compat30") 107 + ] ++ lib.optional unicode "--enable-unicode" 108 + ++ lib.optional withMesa "--with-opengl" 109 + ++ lib.optionals stdenv.isDarwin [ 110 + "--with-osx_cocoa" 111 + "--with-libiconv" 112 + ] ++ lib.optionals withWebKit [ 113 + "--enable-webview" 114 + "--enable-webviewwebkit" 115 + ]; 116 + 117 + SEARCH_LIB = "${libGLU.out}/lib ${libGL.out}/lib"; 118 + 119 + preConfigure = '' 120 + cp -r ${catch}/* 3rdparty/catch/ 121 + cp -r ${nanosvg}/* 3rdparty/nanosvg/ 122 + '' + lib.optionalString stdenv.isDarwin '' 123 + substituteInPlace configure \ 124 + --replace 'ac_cv_prog_SETFILE="/Developer/Tools/SetFile"' 'ac_cv_prog_SETFILE="${setfile}/bin/SetFile"' 125 + substituteInPlace configure \ 126 + --replace "-framework System" "-lSystem" 127 + ''; 128 + 129 + postInstall = " 130 + pushd $out/include 131 + ln -s wx-*/* . 132 + popd 133 + "; 134 + 135 + enableParallelBuilding = true; 136 + 137 + passthru = { 138 + inherit compat28 compat30 unicode; 139 + }; 140 + 141 + meta = with lib; { 142 + homepage = "https://www.wxwidgets.org/"; 143 + description = "A Cross-Platform C++ GUI Library"; 144 + longDescription = '' 145 + wxWidgets gives you a single, easy-to-use API for writing GUI applications 146 + on multiple platforms that still utilize the native platform's controls 147 + and utilities. Link with the appropriate library for your platform and 148 + compiler, and your application will adopt the look and feel appropriate to 149 + that platform. On top of great GUI functionality, wxWidgets gives you: 150 + online help, network programming, streams, clipboard and drag and drop, 151 + multithreading, image loading and saving in a variety of popular formats, 152 + database support, HTML viewing and printing, and much more. 153 + ''; 154 + license = licenses.wxWindows; 155 + maintainers = with maintainers; [ tfmoraes ]; 156 + platforms = platforms.unix; 157 + }; 158 + }
+2 -2
pkgs/development/python-modules/aiohomekit/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "aiohomekit"; 20 - version = "1.5.12"; 20 + version = "2.0.1"; 21 21 format = "pyproject"; 22 22 23 23 disabled = pythonOlder "3.9"; ··· 26 26 owner = "Jc2k"; 27 27 repo = pname; 28 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-v29esQUrrpF8PGafu9LF/rN/W8xRSIe+H9V+R4toPxk="; 29 + hash = "sha256-yuZKgDbdxQ7pGGLVB1/B3cD3Ep08uE9jjCqVzc+DF3c="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+5 -3
pkgs/development/python-modules/aioswitcher/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "aioswitcher"; 16 - version = "3.0.0"; 16 + version = "3.0.3"; 17 17 format = "pyproject"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "TomerFi"; 21 21 repo = pname; 22 22 rev = "refs/tags/${version}"; 23 - sha256 = "sha256-zJS09YQRMv3B0daW0cgBRPoLQkPyGuBgMohf6E2yqaM="; 23 + hash = "sha256-CHyJuIqJpO7wUmOyeDXa4oBvxMthC96OCECtg13gqe0="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ ··· 54 54 "test_hexadecimale_timestamp_to_localtime_with_the_current_timestamp_should_return_a_time_string" 55 55 ]; 56 56 57 - pythonImportsCheck = [ "aioswitcher" ]; 57 + pythonImportsCheck = [ 58 + "aioswitcher" 59 + ]; 58 60 59 61 meta = with lib; { 60 62 description = "Python module to interact with Switcher water heater";
+3 -3
pkgs/development/python-modules/aiowebostv/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aiowebostv"; 10 - version = "0.2.0"; 10 + version = "0.2.1"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.8"; ··· 15 15 src = fetchFromGitHub { 16 16 owner = "home-assistant-libs"; 17 17 repo = pname; 18 - rev = "v${version}"; 19 - hash = "sha256-A7GiAQIuEXmCfo2pDJESCdAEaLumi1ACXnBMdGKwSvE="; 18 + rev = "refs/tags/v${version}"; 19 + hash = "sha256-r/XdxF7/g6uDQIATi/OC6lNTUtBZg1jdgZHZilPPFNc="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/awesomeversion/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "awesomeversion"; 11 - version = "22.8.0"; 11 + version = "22.9.0"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "ludeeus"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "sha256-peSGe9ycxVD2ve8tFpmznQZr3Hrc1KimeVlThmd0NFo="; 20 + sha256 = "sha256-OQArggd7210OyFpZKm3kr3fFbakIDG7U3WBNImAAobw="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+5 -2
pkgs/development/python-modules/azure-core/default.nix
··· 7 7 , aiohttp 8 8 , flask 9 9 , mock 10 - , msrest 11 10 , pytest 12 11 , pytest-asyncio 13 12 , pytest-trio ··· 39 38 aiohttp 40 39 flask 41 40 mock 42 - msrest 43 41 pytest 44 42 pytest-trio 45 43 pytest-asyncio ··· 78 76 "tests/testserver_tests/" 79 77 # requires missing pytest plugin 80 78 "tests/async_tests/test_rest_asyncio_transport.py" 79 + # needs msrest, which cannot be included in checkInputs due to circular dependency new in msrest 0.7.1 80 + # azure-core needs msrest which needs azure-core 81 + "tests/test_polling.py" 82 + "tests/async_tests/test_base_polling_async.py" 83 + "tests/async_tests/test_polling_async.py" 81 84 ]; 82 85 83 86 meta = with lib; {
+2 -2
pkgs/development/python-modules/boxx/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "boxx"; 22 - version = "0.10.6"; 22 + version = "0.10.7"; 23 23 format = "setuptools"; 24 24 25 25 disabled = pythonOlder "3.7"; 26 26 27 27 src = fetchPypi { 28 28 inherit pname version; 29 - hash = "sha256-npPwYhDTujBpTnPyhvZbA+EK4jU8nnHSBgSw9xlTcJM="; 29 + hash = "sha256-OPbqCsTZZskZOJMcK1OJsG3Qgx4K0X217g5pNWQZDAM="; 30 30 }; 31 31 32 32 propagatedBuildInputs = [
+9 -3
pkgs/development/python-modules/dwdwfsapi/default.nix
··· 3 3 , fetchPypi 4 4 , requests 5 5 , ciso8601 6 + , pythonOlder 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "dwdwfsapi"; 10 - version = "1.0.5"; 11 + version = "1.0.6"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.6"; 11 15 12 16 src = fetchPypi { 13 17 inherit pname version; 14 - sha256 = "8541eb93a6323bec6a2281aa06667e72b02c8e5fac40f899c402089b1c774472"; 18 + hash = "sha256-zeSV2acjtSWUYnrMjEBtrSPlXRvrNQRX5SYPYHnaOy0="; 15 19 }; 16 20 17 21 propagatedBuildInputs = [ ··· 22 26 # All tests require network access 23 27 doCheck = false; 24 28 25 - pythonImportsCheck = [ "dwdwfsapi" ]; 29 + pythonImportsCheck = [ 30 + "dwdwfsapi" 31 + ]; 26 32 27 33 meta = with lib; { 28 34 description = "Python client to retrieve data provided by DWD via their geoserver WFS API";
+2 -2
pkgs/development/python-modules/fjaraskupan/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "fjaraskupan"; 12 - version = "2.0.1"; 12 + version = "2.1.0"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.8"; ··· 18 18 owner = "elupus"; 19 19 repo = pname; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-i7816KJraHkrXKYA+vhKMs5xhXksnYc2uYiE0pPEicw="; 21 + hash = "sha256-Vt2THMB4m0YCLdfEnAokwS0oJfcgp3fmZMUDhTrekZY="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/govee-ble/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "govee-ble"; 15 - version = "0.19.0"; 15 + version = "0.19.1"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.9"; ··· 21 21 owner = "Bluetooth-Devices"; 22 22 repo = pname; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-KMWz/CiF0Xti8G31T6JAJfUJEUpBa5QczjrQeA2KcrA="; 24 + hash = "sha256-3uYAyItZ1X18pw3h3rTJpcv2H7O+e4sFCv1R7vb8QPI="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/hstspreload/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "hstspreload"; 9 - version = "2022.8.1"; 9 + version = "2022.10.1"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.6"; ··· 15 15 owner = "sethmlarson"; 16 16 repo = pname; 17 17 rev = version; 18 - sha256 = "sha256-lQ28j4vOtxSjkMZXTKG+vesAN9KWj5T4sZ3QbaWP9Gw="; 18 + sha256 = "sha256-P9aVJUkGUpghAHcJ3OQSbpx3TpkhJU7Lxp0n/RsJBYI="; 19 19 }; 20 20 21 21 # Tests require network connection
+2 -2
pkgs/development/python-modules/lxmf/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "lxmf"; 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 = "markqvist"; 17 17 repo = "lxmf"; 18 18 rev = "refs/tags/${version}"; 19 - hash = "sha256-SRDUFDtXJ1ZkX8A4ekF+YSOnxj/vsFsvr3W/LOIuerg="; 19 + hash = "sha256-NwjijbRSg9RYl1NS5dXAG4HohkZx5oeEyMyvEFYQhYk="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+6 -3
pkgs/development/python-modules/msrest/default.nix
··· 1 1 { lib 2 2 , aiodns 3 3 , aiohttp 4 + , azure-core 4 5 , buildPythonPackage 5 6 , certifi 6 7 , fetchFromGitHub ··· 16 17 17 18 buildPythonPackage rec { 18 19 pname = "msrest"; 19 - version = "0.6.21"; 20 + version = "0.7.1"; 20 21 format = "setuptools"; 21 22 22 23 disabled = pythonOlder "3.7"; ··· 24 25 src = fetchFromGitHub { 25 26 owner = "Azure"; 26 27 repo = "msrest-for-python"; 27 - rev = "v${version}"; 28 - hash = "sha256-IlBwlVQ/v+vJmCWNbFZKGL6a9K09z4AYrPm3kwaA/nI="; 28 + # no tag for 0.7.1 29 + rev = "2d8fd04f68a124d0f3df7b81584accc3270b1afc"; 30 + hash = "sha256-1EXXXflhDeU+erdI+NsWxSX76ooDTl3+MyQwRzm2xV0="; 29 31 }; 30 32 31 33 propagatedBuildInputs = [ 34 + azure-core 32 35 aiodns 33 36 aiohttp 34 37 certifi
+2 -2
pkgs/development/python-modules/nomadnet/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "nomadnet"; 12 - version = "0.2.1"; 12 + version = "0.2.2"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "markqvist"; 19 19 repo = "NomadNet"; 20 20 rev = version; 21 - hash = "sha256-VNfsuCN251C+6uvywosHmuz76f263wCeIisQldvFRVg="; 21 + hash = "sha256-NCnf50li0RZa8RCDutS1s7DfLfOK3RjEeJ4QvQzqsHs="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/peaqevcore/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "peaqevcore"; 9 - version = "6.0.0"; 9 + version = "6.0.3"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.7"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-CnL/oF85efwFKtj1ol+6zjKv07IhFQetYUCXbbbFqn8="; 16 + hash = "sha256-GaN/3WbuXc5p/+VhFngSX6aKnxMj72pyeB9HaA+PbCo="; 17 17 }; 18 18 19 19 postPatch = ''
+2 -2
pkgs/development/python-modules/plugwise/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "plugwise"; 24 - version = "0.22.1"; 24 + version = "0.23.0"; 25 25 format = "setuptools"; 26 26 27 27 disabled = pythonOlder "3.7"; ··· 30 30 owner = pname; 31 31 repo = "python-plugwise"; 32 32 rev = "refs/tags/v${version}"; 33 - sha256 = "sha256-vgHfdfyKzabYdsHtCMXcfQexYYxw17bKjNr8wSPBFvI="; 33 + sha256 = "sha256-nLJLp5LnsluZe/pzLvycvjPmPYXGGobZaS5kI70CVa8="; 34 34 }; 35 35 36 36 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pylutron-caseta/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pylutron-caseta"; 15 - version = "0.15.2"; 15 + version = "0.16.0"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "gurumitts"; 22 22 repo = pname; 23 23 rev = "v${version}"; 24 - hash = "sha256-dw/uCEY4+kpgNjbjgvw+kSfluziIK6NvIKo5QIjt+GQ="; 24 + hash = "sha256-QASVifbDh9nsgKi0cT4VaUX0d6inVS8rddr/rsbJ7/I="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/rns/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "rns"; 12 - version = "0.3.11"; 12 + version = "0.3.12"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "markqvist"; 19 19 repo = "Reticulum"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-LANk104sO9we7n681a+yVmWOcd9SBQ/kiQAN38xaq80="; 21 + hash = "sha256-2GTMpIYDbvwAuRVOEW1Tp8idelHAV5SkAyGBj2yh1OQ="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+4 -2
pkgs/development/python-modules/s3-credentials/default.nix
··· 8 8 , pytestCheckHook 9 9 , hypothesis 10 10 , pytest-mock 11 + , moto 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "s3-credentials"; 15 - version = "0.13"; 16 + version = "0.14"; 16 17 format = "setuptools"; 17 18 18 19 disabled = pythonOlder "3.6"; ··· 21 22 owner = "simonw"; 22 23 repo = pname; 23 24 rev = "refs/tags/${version}"; 24 - hash = "sha256-kzu+ySeAi+nRIJSBSJUQzNHD7KVANlWoi0OWKXkc0/8="; 25 + hash = "sha256-vKOcOSt9vscj5ixrHZGL6PRun/x38JLbni75nw2YAbg="; 25 26 }; 26 27 27 28 propagatedBuildInputs = [ ··· 34 35 pytestCheckHook 35 36 hypothesis 36 37 pytest-mock 38 + moto 37 39 ]; 38 40 39 41 pythonImportsCheck = [
+4
pkgs/development/python-modules/vsts/default.nix
··· 16 16 17 17 propagatedBuildInputs = [ msrest ]; 18 18 19 + postPatch = '' 20 + substituteInPlace setup.py --replace "msrest>=0.6.0,<0.7.0" "msrest" 21 + ''; 22 + 19 23 # Tests are highly impure 20 24 checkPhase = '' 21 25 ${python.interpreter} -c 'import vsts.version; print(vsts.version.VERSION)'
+3 -5
pkgs/development/python-modules/weconnect-mqtt/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "weconnect-mqtt"; 13 - version = "0.39.2"; 13 + version = "0.40.1"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "tillsteinbach"; 20 20 repo = "WeConnect-mqtt"; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-htLyf7ouy/psG/BJr3nATQjd+bTFETjGEWQYs2uMtSM="; 22 + hash = "sha256-WnaVE9WEJmdlxsPUZcEmeCf4DK1GCyd2yQmBiQZ7NkI="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [ 26 26 paho-mqtt 27 27 python-dateutil 28 28 weconnect 29 - ]; 29 + ] ++ weconnect.optional-dependencies.Images; 30 30 31 31 postPatch = '' 32 32 substituteInPlace weconnect_mqtt/__version.py \ ··· 34 34 substituteInPlace pytest.ini \ 35 35 --replace "--cov=weconnect_mqtt --cov-config=.coveragerc --cov-report html" "" \ 36 36 --replace "pytest-cov" "" 37 - substituteInPlace requirements.txt \ 38 - --replace "weconnect[Images]~=0.40.0" "weconnect" 39 37 ''; 40 38 41 39 checkInputs = [
+9 -4
pkgs/development/python-modules/weconnect/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "weconnect"; 15 - version = "0.47.1"; 15 + version = "0.48.1"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "tillsteinbach"; 22 22 repo = "WeConnect-python"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-qxE8hX6HBmP6s+NivwSgbrPWzUDr8RW9HAyQ21WTiZE="; 24 + hash = "sha256-SLVOvGGhyn/kMYgZUmcy5cw7tDHS7wIcVdP5ZnRgmVc="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [ 28 - ascii-magic 29 28 oauthlib 30 - pillow 31 29 requests 32 30 ]; 31 + 32 + passthru.optional-dependencies = { 33 + Images = [ 34 + ascii-magic 35 + pillow 36 + ]; 37 + }; 33 38 34 39 checkInputs = [ 35 40 pytest-httpserver
+2 -2
pkgs/development/tools/analysis/flow/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "flow"; 5 - version = "0.188.0"; 5 + version = "0.188.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "facebook"; 9 9 repo = "flow"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-DmVnJRGxaMfpJbzJGNM0hA0j5HQ1qRH+7b4zNod8b5I="; 11 + sha256 = "sha256-6VHqjLG11JB1WmXZ6+i5H3ovSGd7hA/oZ+AN5Sw++4I="; 12 12 }; 13 13 14 14 makeFlags = [ "FLOW_RELEASE=1" ];
+2 -2
pkgs/development/tools/doctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "doctl"; 5 - version = "1.82.0"; 5 + version = "1.82.2"; 6 6 7 7 vendorSha256 = null; 8 8 ··· 31 31 owner = "digitalocean"; 32 32 repo = "doctl"; 33 33 rev = "v${version}"; 34 - sha256 = "sha256-w8km6Ze2qAoYGZZxfHucQSBEOv4d+mWatfeYYI2lrRw="; 34 + sha256 = "sha256-o8Wp9zrpIkeigQhbsaMURIiL6coOX8OwUDQmRfO8VoY="; 35 35 }; 36 36 37 37 meta = with lib; {
+2 -2
pkgs/development/tools/misc/saleae-logic-2/default.nix
··· 1 1 { lib, fetchurl, makeDesktopItem, appimageTools }: 2 2 let 3 3 name = "saleae-logic-2"; 4 - version = "2.3.59"; 4 + version = "2.4.0"; 5 5 src = fetchurl { 6 6 url = "https://downloads.saleae.com/logic2/Logic-${version}-master.AppImage"; 7 - sha256 = "sha256-jIu/ODVD/x+TjcVSGlOw6/JWESJYDKZQrJGMAix9wTY="; 7 + sha256 = "sha256-jvD/DLpcJKAqy9LSSEVZFtD+BMxfbUmdJwfnQMtA7rg="; 8 8 }; 9 9 desktopItem = makeDesktopItem { 10 10 inherit name;
+31 -31
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 2 2 "4.14": { 3 3 "patch": { 4 4 "extra": "-hardened1", 5 - "name": "linux-hardened-4.14.292-hardened1.patch", 6 - "sha256": "0l20yxg50azpxm2x4gr37yhkvjw3wlishjm2x8pqwil3g1pxykdi", 7 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.292-hardened1/linux-hardened-4.14.292-hardened1.patch" 5 + "name": "linux-hardened-4.14.294-hardened1.patch", 6 + "sha256": "0x7qnfih7hvn94f8w5g6qqdvsswr71ml9wd9fy1p14dd8k068hcj", 7 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.294-hardened1/linux-hardened-4.14.294-hardened1.patch" 8 8 }, 9 - "sha256": "0zc97qy62dhc5xkjnvsfn4lpl4dgrj23hlxvxcr4cr8sj0hxzx3h", 10 - "version": "4.14.292" 9 + "sha256": "069i11hv4fhwc9dirqbag1g1k3fn21wzpfggah4f1a41whf98apy", 10 + "version": "4.14.294" 11 11 }, 12 12 "4.19": { 13 13 "patch": { 14 14 "extra": "-hardened1", 15 - "name": "linux-hardened-4.19.257-hardened1.patch", 16 - "sha256": "03hv417v0abn6n0zbmypfsjmxb4aqdz23vrykhgn259w4h45w2z9", 17 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.257-hardened1/linux-hardened-4.19.257-hardened1.patch" 15 + "name": "linux-hardened-4.19.259-hardened1.patch", 16 + "sha256": "05hnliiszj0ri0dkfm1ppaqss1x5nd0jbyr5l7736s5bi707lmsp", 17 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.259-hardened1/linux-hardened-4.19.259-hardened1.patch" 18 18 }, 19 - "sha256": "0izaldl2l2zsshkd07qsnr9x6ikipmj5jp7lxr8dyz7kf2m17pga", 20 - "version": "4.19.257" 19 + "sha256": "1ska6v95zjjj44h53gi34rnbsrm4507jwxi3kklnky6d0aykiy1z", 20 + "version": "4.19.259" 21 21 }, 22 22 "5.10": { 23 23 "patch": { 24 24 "extra": "-hardened1", 25 - "name": "linux-hardened-5.10.142-hardened1.patch", 26 - "sha256": "074w7j8wx2k3lk3ssm9x14wf4gns85l2p6syq4pigkb67gvdphpv", 27 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.142-hardened1/linux-hardened-5.10.142-hardened1.patch" 25 + "name": "linux-hardened-5.10.145-hardened1.patch", 26 + "sha256": "08rq52prxnvzg0j2d8gs010hh44qlhga00h2mvcxlfj10ifg4rgb", 27 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.145-hardened1/linux-hardened-5.10.145-hardened1.patch" 28 28 }, 29 - "sha256": "0s52vfvw5pgnq7gq9n66ib05ryhkxwv765f16862l5gykbdynirz", 30 - "version": "5.10.142" 29 + "sha256": "0qdcqmwvc70hfgj8hb8ccwmnvwl41dvdffqrmyg3cyblwprr0ngw", 30 + "version": "5.10.145" 31 31 }, 32 32 "5.15": { 33 33 "patch": { 34 34 "extra": "-hardened1", 35 - "name": "linux-hardened-5.15.67-hardened1.patch", 36 - "sha256": "1151dry0ia25rq50vnvrkjsxz5h9zsr6lahld3vilk2p01bv2fc3", 37 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.67-hardened1/linux-hardened-5.15.67-hardened1.patch" 35 + "name": "linux-hardened-5.15.70-hardened1.patch", 36 + "sha256": "0m3r9i5zyv12y4y6jn7yqv6n080ikar0hdn2bfzs85mnzc9vsmqr", 37 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.70-hardened1/linux-hardened-5.15.70-hardened1.patch" 38 38 }, 39 - "sha256": "0h7r2k59jsw8ykb2p7nxrpazbwx1n5p3nmfbbj1lhib91fldjiys", 40 - "version": "5.15.67" 39 + "sha256": "0xhdjz7aqq13pkh1yr7ax3msqdb2xvrcpj464wibn1rl4pq2cz0s", 40 + "version": "5.15.70" 41 41 }, 42 42 "5.19": { 43 43 "patch": { 44 - "extra": "-hardened2", 45 - "name": "linux-hardened-5.19.8-hardened2.patch", 46 - "sha256": "1dfgnx2yr5d5kh2d8r7ywqkyjq1rfni2b5sdpqly0w986rlkw48k", 47 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.19.8-hardened2/linux-hardened-5.19.8-hardened2.patch" 44 + "extra": "-hardened1", 45 + "name": "linux-hardened-5.19.11-hardened1.patch", 46 + "sha256": "0n0w9qmbhhg9svnjkvmhx24i8d0mhrx2k4xfb3rmnsjg79rcl0qd", 47 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.19.11-hardened1/linux-hardened-5.19.11-hardened1.patch" 48 48 }, 49 - "sha256": "1kl7fifsa6vsm34xg3kd2svhx18n771hfj67nhwnlalmb9whhqv1", 50 - "version": "5.19.8" 49 + "sha256": "0wyrwdqm4dypx2jbb7d8c3b7fl7q5j434d6g9x2v6sw01gwx4m2m", 50 + "version": "5.19.11" 51 51 }, 52 52 "5.4": { 53 53 "patch": { 54 54 "extra": "-hardened1", 55 - "name": "linux-hardened-5.4.212-hardened1.patch", 56 - "sha256": "0vdx78n1aggyfia017h40k6xg7bd2spcv3s4m0kiq693skxzlh4x", 57 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.212-hardened1/linux-hardened-5.4.212-hardened1.patch" 55 + "name": "linux-hardened-5.4.214-hardened1.patch", 56 + "sha256": "0j96knplhwvk1w1af4fs818ninvrs38ykg76mb80pjjvi3fdl402", 57 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.214-hardened1/linux-hardened-5.4.214-hardened1.patch" 58 58 }, 59 - "sha256": "1hngr4hsrcd6hmlyvc3msy5racniav2jagp5abmp7xsxv0yjxiq9", 60 - "version": "5.4.212" 59 + "sha256": "1ny57g5agk8sq6cbp2crjiay5bfkwqy32i4a5yw7x0lch2s7kg4s", 60 + "version": "5.4.214" 61 61 } 62 62 }
+2 -2
pkgs/os-specific/linux/kernel/linux-4.14.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.14.294"; 6 + version = "4.14.295"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "069i11hv4fhwc9dirqbag1g1k3fn21wzpfggah4f1a41whf98apy"; 16 + sha256 = "0svalywqmrhav63vw0ns06c25sgyvzwfngljpham3nm7jjxbkk32"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.19.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.19.259"; 6 + version = "4.19.260"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "1ska6v95zjjj44h53gi34rnbsrm4507jwxi3kklnky6d0aykiy1z"; 16 + sha256 = "1vlhaapbkvvk2acw1i5f6v6gd8v0x37n1y3i066cddl90my6yl24"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.9.nix
··· 1 1 { buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args: 2 2 3 3 buildLinux (args // rec { 4 - version = "4.9.329"; 4 + version = "4.9.330"; 5 5 extraMeta.branch = "4.9"; 6 6 extraMeta.broken = stdenv.isAarch64; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 10 - sha256 = "168hy7vhgw2sfknflhhf6ykhkp4xs8v0igii6ivjlvs3dmwm21sj"; 10 + sha256 = "0psrl8fcbp1bsanjmllic503dlyhkj8bjzfc20p2ksahlhv1j0mz"; 11 11 }; 12 12 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.10.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.10.145"; 6 + version = "5.10.146"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0qdcqmwvc70hfgj8hb8ccwmnvwl41dvdffqrmyg3cyblwprr0ngw"; 16 + sha256 = "1hbdxvlibp9w0q8bk1zlx77ayq2wcld8rjm134ybgbcf4zrrggbv"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.15.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.15.70"; 6 + version = "5.15.71"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0xhdjz7aqq13pkh1yr7ax3msqdb2xvrcpj464wibn1rl4pq2cz0s"; 16 + sha256 = "0lqy3nmhij6sb4963kb5dhvfdx46mg79hp81kq10wv01iq9hhm2z"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.19.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.19.11"; 6 + version = "5.19.12"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0wyrwdqm4dypx2jbb7d8c3b7fl7q5j434d6g9x2v6sw01gwx4m2m"; 16 + sha256 = "1fmhwbgqpr6q3z3ygys153szivlmv3mcnwilbbyfcb1iqx4aadn4"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.4.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.4.214"; 6 + version = "5.4.215"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "1ny57g5agk8sq6cbp2crjiay5bfkwqy32i4a5yw7x0lch2s7kg4s"; 16 + sha256 = "1gafnf9gbsfzvp9jq6y8qhpvas5cv9y0m9bad2sg55sjlb1zfard"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+3 -3
pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
··· 6 6 , ... } @ args: 7 7 8 8 let 9 - version = "5.10.140-rt73"; # updated by ./update-rt.sh 9 + version = "5.10.145-rt74"; # updated by ./update-rt.sh 10 10 branch = lib.versions.majorMinor version; 11 11 kversion = builtins.elemAt (lib.splitString "-" version) 0; 12 12 in buildLinux (args // { ··· 18 18 19 19 src = fetchurl { 20 20 url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz"; 21 - sha256 = "00v8mdbc8ndx29grfnlf49ifikqxnl25zn0243j3bgclvfyxipx4"; 21 + sha256 = "0qdcqmwvc70hfgj8hb8ccwmnvwl41dvdffqrmyg3cyblwprr0ngw"; 22 22 }; 23 23 24 24 kernelPatches = let rt-patch = { 25 25 name = "rt"; 26 26 patch = fetchurl { 27 27 url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz"; 28 - sha256 = "1abrxwxx3kfmbyabb1hhjpz1l7idrn2g14zx7qix7ds7n9f6dcgf"; 28 + sha256 = "16a2cnvn1azxsw1qjwbygkych0jzkfpmj0kx08jdz3fx3xbmqpr4"; 29 29 }; 30 30 }; in [ rt-patch ] ++ kernelPatches; 31 31
+3 -3
pkgs/servers/plex/raw.nix
··· 12 12 # server, and the FHS userenv and corresponding NixOS module should 13 13 # automatically pick up the changes. 14 14 stdenv.mkDerivation rec { 15 - version = "1.28.2.6151-914ddd2b3"; 15 + version = "1.29.0.6244-819d3678c"; 16 16 pname = "plexmediaserver"; 17 17 18 18 # Fetch the source 19 19 src = if stdenv.hostPlatform.system == "aarch64-linux" then fetchurl { 20 20 url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_arm64.deb"; 21 - sha256 = "sha256-aWRcPHwuZA/xM1QUx4rOUhh3ICvwCgDFrPgnVWB4aUE="; 21 + sha256 = "sha256-f9QRaAF9qE3NpCt3lMWQ7MAbfLI7YQaIIF/fkJorUxY="; 22 22 } else fetchurl { 23 23 url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_amd64.deb"; 24 - sha256 = "sha256-J8sQ/fLz00Tiy5ka+M9JIXbQUzIfGBvofiGX7stWf84="; 24 + sha256 = "sha256-iGMO6uuNm2c7UBZvA5dYaSxUrEQCL1tR9zLA3rZhBn4="; 25 25 }; 26 26 27 27 outputs = [ "out" "basedb" ];
+15 -3
pkgs/tools/admin/pgadmin/default.nix
··· 10 10 11 11 let 12 12 pname = "pgadmin"; 13 - version = "6.13"; 13 + version = "6.14"; 14 14 15 15 src = fetchurl { 16 16 url = "https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${version}/source/pgadmin4-${version}.tar.gz"; 17 - sha256 = "sha256-vLItmE76R1IzgMYEGEvIeOmbfQQac5WK12AkkZknTFU="; 17 + sha256 = "sha256-M3Tu+69Gmc0FfqtGTtJ6j014QARd2efJ4dq0vK2IMr8="; 18 18 }; 19 19 20 20 yarnDeps = mkYarnModules { ··· 75 75 # keep the scope, as it is used throughout the derivation and tests 76 76 # this also makes potential future overrides easier 77 77 pythonPackages = python3.pkgs.overrideScope (final: prev: rec { 78 - # flask 2.2 is incompatible with pgadmin 6.13 78 + # flask 2.2 is incompatible with pgadmin 6.14 79 79 # https://redmine.postgresql.org/issues/7651 80 80 flask = prev.flask.overridePythonAttrs (oldAttrs: rec { 81 81 version = "2.1.3"; ··· 83 83 inherit version; 84 84 sha256 = "sha256-FZcuUBffBXXD1sCQuhaLbbkCWeYgrI1+qBOjlrrVtss="; 85 85 }; 86 + }); 87 + # pgadmin 6.14 is incompatible with the major flask-security-too update to 5.0.x 88 + flask-security-too = prev.flask-security-too.overridePythonAttrs (oldAttrs: rec { 89 + version = "4.1.5"; 90 + src = oldAttrs.src.override { 91 + inherit version; 92 + sha256 = "sha256-98jKcHDv/+mls7QVWeGvGcmoYOGCspxM7w5/2RjJxoM="; 93 + }; 94 + propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ 95 + final.pythonPackages.flask_mail 96 + final.pythonPackages.pyqrcode 97 + ]; 86 98 }); 87 99 }); 88 100
+4 -7
pkgs/tools/admin/pgadmin/package.json
··· 37 37 "exports-loader": "^2.0.0", 38 38 "html-react-parser": "^1.2.7", 39 39 "image-minimizer-webpack-plugin": "^2.2.0", 40 + "imagemin-mozjpeg": "^10.0.0", 41 + "imagemin-optipng": "^8.0.0", 42 + "imagemin-pngquant": "^9.0.2", 40 43 "is-docker": "^2.1.1", 41 44 "istanbul-instrumenter-loader": "^3.0.1", 42 45 "jasmine-core": "^3.6.0", ··· 85 88 "@projectstorm/react-diagrams": "^6.6.1", 86 89 "@simonwep/pickr": "^1.5.1", 87 90 "@szhsin/react-menu": "^2.2.0", 88 - "@tippyjs/react": "^4.2.0", 89 91 "@types/classnames": "^2.2.6", 90 92 "@types/react": "^16.7.18", 91 93 "@types/react-dom": "^16.0.11", 92 94 "ajv": "^8.8.2", 93 - "alertifyjs": "git+https://github.com/EnterpriseDB/AlertifyJS/#72c1d794f5b6d4ec13a68d123c08f19021afe263", 94 95 "anti-trojan-source": "^1.4.0", 95 96 "aspen-decorations": "^1.0.2", 96 97 "axios": "^0.21.1", 97 98 "babelify": "~10.0.0", 98 99 "backbone": "1.4.0", 99 - "backform": "^0.2.0", 100 - "backgrid-filter": "^0.3.7", 101 - "backgrid-select-all": "^0.3.5", 102 100 "bignumber.js": "^9.0.1", 103 101 "bootstrap": "^4.3.1", 104 102 "bootstrap-datepicker": "^1.8.0", ··· 147 145 "react": "^17.0.1", 148 146 "react-aspen": "^1.1.0", 149 147 "react-checkbox-tree": "^1.7.2", 150 - "react-data-grid": "git+https://github.com/adityatoshniwal/react-data-grid.git/#8d9bc16ddd7c419acfbbd1c1cc2b70eb9f5b453c", 148 + "react-data-grid": "git+https://github.com/EnterpriseDB/react-data-grid.git/#200d2f5e02de694e3e9ffbe177c279bc40240fb8", 151 149 "react-dom": "^17.0.1", 152 150 "react-draggable": "^4.4.4", 153 151 "react-dropzone": "^14.2.1", ··· 161 159 "react-window": "^1.8.5", 162 160 "select2": "^4.0.13", 163 161 "shim-loader": "^1.0.1", 164 - "slickgrid": "git+https://github.com/6pac/SlickGrid.git#2.3.16", 165 162 "snapsvg-cjs": "^0.0.6", 166 163 "socket.io-client": "^4.0.0", 167 164 "split.js": "^1.5.10",
+1111 -100
pkgs/tools/admin/pgadmin/yarn.lock
··· 2306 2306 resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.21.tgz#5de5a2385a35309427f6011992b544514d559aa1" 2307 2307 integrity sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g== 2308 2308 2309 - "@popperjs/core@^2.9.0": 2310 - version "2.10.2" 2311 - resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.10.2.tgz#0798c03351f0dea1a5a4cabddf26a55a7cbee590" 2312 - integrity sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ== 2313 - 2314 2309 "@projectstorm/geometry@^6.6.1": 2315 2310 version "6.6.1" 2316 2311 resolved "https://registry.yarnpkg.com/@projectstorm/geometry/-/geometry-6.6.1.tgz#4a42f5c8fdfcc3d951e73f5db7fe9546514acc3d" ··· 2500 2495 dependencies: 2501 2496 prop-types "^15.7.2" 2502 2497 react-transition-state "^1.1.3" 2503 - 2504 - "@tippyjs/react@^4.2.0": 2505 - version "4.2.6" 2506 - resolved "https://registry.yarnpkg.com/@tippyjs/react/-/react-4.2.6.tgz#971677a599bf663f20bb1c60a62b9555b749cc71" 2507 - integrity sha512-91RicDR+H7oDSyPycI13q3b7o4O60wa2oRbjlz2fyRLmHImc4vyDwuUP8NtZaN0VARJY5hybvDYrFzhY9+Lbyw== 2508 - dependencies: 2509 - tippy.js "^6.3.1" 2510 2498 2511 2499 "@tootallnate/once@2": 2512 2500 version "2.0.0" ··· 2996 2984 require-from-string "^2.0.2" 2997 2985 uri-js "^4.2.2" 2998 2986 2999 - "alertifyjs@git+https://github.com/EnterpriseDB/AlertifyJS/#72c1d794f5b6d4ec13a68d123c08f19021afe263": 3000 - version "1.7.1" 3001 - resolved "git+https://github.com/EnterpriseDB/AlertifyJS/#72c1d794f5b6d4ec13a68d123c08f19021afe263" 3002 - 3003 2987 alphanum-sort@^1.0.2: 3004 2988 version "1.0.2" 3005 2989 resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" ··· 3060 3044 resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" 3061 3045 integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== 3062 3046 3047 + arch@^2.1.0: 3048 + version "2.2.0" 3049 + resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" 3050 + integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== 3051 + 3052 + archive-type@^4.0.0: 3053 + version "4.0.0" 3054 + resolved "https://registry.yarnpkg.com/archive-type/-/archive-type-4.0.0.tgz#f92e72233056dfc6969472749c267bdb046b1d70" 3055 + integrity sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA== 3056 + dependencies: 3057 + file-type "^4.2.0" 3058 + 3063 3059 are-we-there-yet@^3.0.0: 3064 3060 version "3.0.0" 3065 3061 resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz#ba20bd6b553e31d62fc8c31bd23d22b95734390d" ··· 3435 3431 resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 3436 3432 integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== 3437 3433 3438 - "backbone@1.1.2 || 1.2.3 || ~1.3.2": 3439 - version "1.3.3" 3440 - resolved "https://registry.yarnpkg.com/backbone/-/backbone-1.3.3.tgz#4cc80ea7cb1631ac474889ce40f2f8bc683b2999" 3441 - integrity sha512-aK+k3TiU4tQDUrRCymDDE7XDFnMVuyE6zbZ4JX7mb4pJbQTVOH997/kyBzb8wB2s5Y/Oh7EUfj+sZhwRPxWwow== 3442 - dependencies: 3443 - underscore ">=1.8.3" 3444 - 3445 3434 backbone@1.4.0: 3446 3435 version "1.4.0" 3447 3436 resolved "https://registry.yarnpkg.com/backbone/-/backbone-1.4.0.tgz#54db4de9df7c3811c3f032f34749a4cd27f3bd12" ··· 3449 3438 dependencies: 3450 3439 underscore ">=1.8.3" 3451 3440 3452 - backbone@~1.2.3: 3453 - version "1.2.3" 3454 - resolved "https://registry.yarnpkg.com/backbone/-/backbone-1.2.3.tgz#c22cfd07fc86ebbeae61d18929ed115e999d65b9" 3455 - integrity sha512-1/eXj4agG79UDN7TWnZXcGD6BJrBwLZKCX7zYcBIy9jWf4mrtVkw7IE1VOYFnrKahsmPF9L55Tib9IQRvk027w== 3456 - dependencies: 3457 - underscore ">=1.7.0" 3458 - 3459 - backform@^0.2.0: 3460 - version "0.2.0" 3461 - resolved "https://registry.yarnpkg.com/backform/-/backform-0.2.0.tgz#b14cb8deb08c863fc595a2bc505066e32a2ad4ce" 3462 - integrity sha512-QYwlItiVqb4CDELHyBC+TM4UcoG6Mw/al+PUDUVbQ7OJojpQHaa2TV8uJHhMR6o/Xq4FGt+52qIZLp36dletfw== 3463 - 3464 - backgrid-filter@^0.3.7: 3465 - version "0.3.7" 3466 - resolved "https://registry.yarnpkg.com/backgrid-filter/-/backgrid-filter-0.3.7.tgz#d4b19d0e707013d7f181f9e8c7febb4997d56f03" 3467 - integrity sha512-HKWOXXd/dES5Ll3R1+vsfPYO7yVQ0V4+h8cPirFqci4oKTyyZVJupXM2fINhqm0On9dvHijHje8h4X+Wg621gw== 3468 - dependencies: 3469 - backbone "~1.2.3" 3470 - backgrid "~0.3.7" 3471 - lunr "^0.7.0" 3472 - underscore "^1.8.3" 3473 - 3474 - backgrid-select-all@^0.3.5: 3475 - version "0.3.5" 3476 - resolved "https://registry.yarnpkg.com/backgrid-select-all/-/backgrid-select-all-0.3.5.tgz#143a800e5d95ff2ae5a84d78bf4fba41f9481e94" 3477 - integrity sha512-bwMQi5d8AnBSZDiV4nWrXcOSmEODbxB6/70mSHG8cGoDfjgW5X7mLiXlmlgEP3VsA1avFD6VvCvpAKZ4BS5f9Q== 3478 - 3479 - backgrid@~0.3.7: 3480 - version "0.3.8" 3481 - resolved "https://registry.yarnpkg.com/backgrid/-/backgrid-0.3.8.tgz#7d26816742d72c859cad39b13f19c9f27baffed7" 3482 - integrity sha512-Klzo941ahoj8Kqd0tRsau+VfXddV3YnQTwb6wVwIaaQxoJ9ORykQy2MNit1MUBnZO6IValYJPvCQyvZhnV6Lfg== 3483 - dependencies: 3484 - backbone "1.1.2 || 1.2.3 || ~1.3.2" 3485 - underscore "^1.8.0" 3486 - 3487 3441 backo2@~1.0.2: 3488 3442 version "1.0.2" 3489 3443 resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" ··· 3529 3483 resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.0.1.tgz#8d7ba124c882bfd8e43260c67475518d0689e4e5" 3530 3484 integrity sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA== 3531 3485 3486 + bin-build@^3.0.0: 3487 + version "3.0.0" 3488 + resolved "https://registry.yarnpkg.com/bin-build/-/bin-build-3.0.0.tgz#c5780a25a8a9f966d8244217e6c1f5082a143861" 3489 + integrity sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA== 3490 + dependencies: 3491 + decompress "^4.0.0" 3492 + download "^6.2.2" 3493 + execa "^0.7.0" 3494 + p-map-series "^1.0.0" 3495 + tempfile "^2.0.0" 3496 + 3497 + bin-check@^4.1.0: 3498 + version "4.1.0" 3499 + resolved "https://registry.yarnpkg.com/bin-check/-/bin-check-4.1.0.tgz#fc495970bdc88bb1d5a35fc17e65c4a149fc4a49" 3500 + integrity sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA== 3501 + dependencies: 3502 + execa "^0.7.0" 3503 + executable "^4.1.0" 3504 + 3505 + bin-version-check@^4.0.0: 3506 + version "4.0.0" 3507 + resolved "https://registry.yarnpkg.com/bin-version-check/-/bin-version-check-4.0.0.tgz#7d819c62496991f80d893e6e02a3032361608f71" 3508 + integrity sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ== 3509 + dependencies: 3510 + bin-version "^3.0.0" 3511 + semver "^5.6.0" 3512 + semver-truncate "^1.1.2" 3513 + 3514 + bin-version@^3.0.0: 3515 + version "3.1.0" 3516 + resolved "https://registry.yarnpkg.com/bin-version/-/bin-version-3.1.0.tgz#5b09eb280752b1bd28f0c9db3f96f2f43b6c0839" 3517 + integrity sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ== 3518 + dependencies: 3519 + execa "^1.0.0" 3520 + find-versions "^3.0.0" 3521 + 3522 + bin-wrapper@^4.0.0, bin-wrapper@^4.0.1: 3523 + version "4.1.0" 3524 + resolved "https://registry.yarnpkg.com/bin-wrapper/-/bin-wrapper-4.1.0.tgz#99348f2cf85031e3ef7efce7e5300aeaae960605" 3525 + integrity sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q== 3526 + dependencies: 3527 + bin-check "^4.1.0" 3528 + bin-version-check "^4.0.0" 3529 + download "^7.1.0" 3530 + import-lazy "^3.1.0" 3531 + os-filter-obj "^2.0.0" 3532 + pify "^4.0.1" 3533 + 3532 3534 binary-extensions@^2.0.0: 3533 3535 version "2.2.0" 3534 3536 resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" ··· 3540 3542 integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== 3541 3543 dependencies: 3542 3544 file-uri-to-path "1.0.0" 3545 + 3546 + bl@^1.0.0: 3547 + version "1.2.3" 3548 + resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.3.tgz#1e8dd80142eac80d7158c9dccc047fb620e035e7" 3549 + integrity sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww== 3550 + dependencies: 3551 + readable-stream "^2.3.5" 3552 + safe-buffer "^5.1.1" 3543 3553 3544 3554 bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: 3545 3555 version "4.12.0" ··· 3801 3811 node-releases "^2.0.3" 3802 3812 picocolors "^1.0.0" 3803 3813 3814 + buffer-alloc-unsafe@^1.1.0: 3815 + version "1.1.0" 3816 + resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" 3817 + integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== 3818 + 3819 + buffer-alloc@^1.2.0: 3820 + version "1.2.0" 3821 + resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" 3822 + integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== 3823 + dependencies: 3824 + buffer-alloc-unsafe "^1.1.0" 3825 + buffer-fill "^1.0.0" 3826 + 3827 + buffer-crc32@~0.2.3: 3828 + version "0.2.13" 3829 + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 3830 + integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== 3831 + 3832 + buffer-fill@^1.0.0: 3833 + version "1.0.0" 3834 + resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" 3835 + integrity sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ== 3836 + 3804 3837 buffer-from@^1.0.0: 3805 3838 version "1.1.2" 3806 3839 resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" ··· 3811 3844 resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 3812 3845 integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== 3813 3846 3847 + buffer@^5.2.1: 3848 + version "5.7.1" 3849 + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" 3850 + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== 3851 + dependencies: 3852 + base64-js "^1.3.1" 3853 + ieee754 "^1.1.13" 3854 + 3814 3855 buffer@^6.0.3: 3815 3856 version "6.0.3" 3816 3857 resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" ··· 3868 3909 tar "^6.1.11" 3869 3910 unique-filename "^1.1.1" 3870 3911 3912 + cacheable-request@^2.1.1: 3913 + version "2.1.4" 3914 + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d" 3915 + integrity sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ== 3916 + dependencies: 3917 + clone-response "1.0.2" 3918 + get-stream "3.0.0" 3919 + http-cache-semantics "3.8.1" 3920 + keyv "3.0.0" 3921 + lowercase-keys "1.0.0" 3922 + normalize-url "2.0.1" 3923 + responselike "1.0.2" 3924 + 3871 3925 cached-path-relative@^1.0.0, cached-path-relative@^1.0.2: 3872 3926 version "1.1.0" 3873 3927 resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.1.0.tgz#865576dfef39c0d6a7defde794d078f5308e3ef3" ··· 3931 3985 resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001346.tgz#e895551b46b9cc9cc9de852facd42f04839a8fbe" 3932 3986 integrity sha512-q6ibZUO2t88QCIPayP/euuDREq+aMAxFE5S70PkrLh0iTDj/zEhgvJRKC2+CvXY6EWc6oQwUR48lL5vCW6jiXQ== 3933 3987 3988 + caw@^2.0.0, caw@^2.0.1: 3989 + version "2.0.1" 3990 + resolved "https://registry.yarnpkg.com/caw/-/caw-2.0.1.tgz#6c3ca071fc194720883c2dc5da9b074bfc7e9e95" 3991 + integrity sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA== 3992 + dependencies: 3993 + get-proxy "^2.0.0" 3994 + isurl "^1.0.0-alpha5" 3995 + tunnel-agent "^0.6.0" 3996 + url-to-options "^1.0.1" 3997 + 3934 3998 chalk@^1.1.3: 3935 3999 version "1.1.3" 3936 4000 resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" ··· 4076 4140 kind-of "^6.0.2" 4077 4141 shallow-clone "^3.0.0" 4078 4142 4143 + clone-response@1.0.2: 4144 + version "1.0.2" 4145 + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 4146 + integrity sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q== 4147 + dependencies: 4148 + mimic-response "^1.0.0" 4149 + 4079 4150 closest@^0.0.1: 4080 4151 version "0.0.1" 4081 4152 resolved "https://registry.yarnpkg.com/closest/-/closest-0.0.1.tgz#26da6f80b3e0e17e71f80f12782819e9f653495c" ··· 4147 4218 lodash.memoize "~3.0.3" 4148 4219 source-map "~0.5.3" 4149 4220 4150 - commander@^2.19.0, commander@^2.20.0: 4221 + commander@^2.19.0, commander@^2.20.0, commander@^2.8.1: 4151 4222 version "2.20.3" 4152 4223 resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 4153 4224 integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== ··· 4187 4258 readable-stream "^2.2.2" 4188 4259 typedarray "^0.0.6" 4189 4260 4261 + config-chain@^1.1.11: 4262 + version "1.1.13" 4263 + resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" 4264 + integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== 4265 + dependencies: 4266 + ini "^1.3.4" 4267 + proto-list "~1.2.1" 4268 + 4190 4269 connect@^3.7.0: 4191 4270 version "3.7.0" 4192 4271 resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" ··· 4211 4290 version "1.0.0" 4212 4291 resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 4213 4292 integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== 4293 + 4294 + content-disposition@^0.5.2: 4295 + version "0.5.4" 4296 + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" 4297 + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== 4298 + dependencies: 4299 + safe-buffer "5.2.1" 4214 4300 4215 4301 content-type@~1.0.4: 4216 4302 version "1.0.4" ··· 4362 4448 dependencies: 4363 4449 cross-spawn "^7.0.1" 4364 4450 4365 - cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: 4451 + cross-spawn@^5.0.1: 4452 + version "5.1.0" 4453 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 4454 + integrity sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A== 4455 + dependencies: 4456 + lru-cache "^4.0.1" 4457 + shebang-command "^1.2.0" 4458 + which "^1.2.9" 4459 + 4460 + cross-spawn@^6.0.0: 4461 + version "6.0.5" 4462 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 4463 + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 4464 + dependencies: 4465 + nice-try "^1.0.4" 4466 + path-key "^2.0.1" 4467 + semver "^5.5.0" 4468 + shebang-command "^1.2.0" 4469 + which "^1.2.9" 4470 + 4471 + cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: 4366 4472 version "7.0.3" 4367 4473 resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 4368 4474 integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== ··· 4619 4725 resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-5.0.1.tgz#db11a92e58c741ef339fb0a2868d8a06a9a7b1e9" 4620 4726 integrity sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA== 4621 4727 4728 + decode-uri-component@^0.2.0: 4729 + version "0.2.0" 4730 + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 4731 + integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og== 4732 + 4733 + decompress-response@^3.2.0, decompress-response@^3.3.0: 4734 + version "3.3.0" 4735 + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 4736 + integrity sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA== 4737 + dependencies: 4738 + mimic-response "^1.0.0" 4739 + 4740 + decompress-tar@^4.0.0, decompress-tar@^4.1.0, decompress-tar@^4.1.1: 4741 + version "4.1.1" 4742 + resolved "https://registry.yarnpkg.com/decompress-tar/-/decompress-tar-4.1.1.tgz#718cbd3fcb16209716e70a26b84e7ba4592e5af1" 4743 + integrity sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ== 4744 + dependencies: 4745 + file-type "^5.2.0" 4746 + is-stream "^1.1.0" 4747 + tar-stream "^1.5.2" 4748 + 4749 + decompress-tarbz2@^4.0.0: 4750 + version "4.1.1" 4751 + resolved "https://registry.yarnpkg.com/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz#3082a5b880ea4043816349f378b56c516be1a39b" 4752 + integrity sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A== 4753 + dependencies: 4754 + decompress-tar "^4.1.0" 4755 + file-type "^6.1.0" 4756 + is-stream "^1.1.0" 4757 + seek-bzip "^1.0.5" 4758 + unbzip2-stream "^1.0.9" 4759 + 4760 + decompress-targz@^4.0.0: 4761 + version "4.1.1" 4762 + resolved "https://registry.yarnpkg.com/decompress-targz/-/decompress-targz-4.1.1.tgz#c09bc35c4d11f3de09f2d2da53e9de23e7ce1eee" 4763 + integrity sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w== 4764 + dependencies: 4765 + decompress-tar "^4.1.1" 4766 + file-type "^5.2.0" 4767 + is-stream "^1.1.0" 4768 + 4769 + decompress-unzip@^4.0.1: 4770 + version "4.0.1" 4771 + resolved "https://registry.yarnpkg.com/decompress-unzip/-/decompress-unzip-4.0.1.tgz#deaaccdfd14aeaf85578f733ae8210f9b4848f69" 4772 + integrity sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw== 4773 + dependencies: 4774 + file-type "^3.8.0" 4775 + get-stream "^2.2.0" 4776 + pify "^2.3.0" 4777 + yauzl "^2.4.2" 4778 + 4779 + decompress@^4.0.0, decompress@^4.2.0: 4780 + version "4.2.1" 4781 + resolved "https://registry.yarnpkg.com/decompress/-/decompress-4.2.1.tgz#007f55cc6a62c055afa37c07eb6a4ee1b773f118" 4782 + integrity sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ== 4783 + dependencies: 4784 + decompress-tar "^4.0.0" 4785 + decompress-tarbz2 "^4.0.0" 4786 + decompress-targz "^4.0.0" 4787 + decompress-unzip "^4.0.1" 4788 + graceful-fs "^4.1.10" 4789 + make-dir "^1.0.0" 4790 + pify "^2.3.0" 4791 + strip-dirs "^2.0.0" 4792 + 4622 4793 deep-diff@^1.0.2: 4623 4794 version "1.0.2" 4624 4795 resolved "https://registry.yarnpkg.com/deep-diff/-/deep-diff-1.0.2.tgz#afd3d1f749115be965e89c63edc7abb1506b9c26" ··· 4803 4974 domelementtype "^2.2.0" 4804 4975 domhandler "^4.2.0" 4805 4976 4977 + download@^6.2.2: 4978 + version "6.2.5" 4979 + resolved "https://registry.yarnpkg.com/download/-/download-6.2.5.tgz#acd6a542e4cd0bb42ca70cfc98c9e43b07039714" 4980 + integrity sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA== 4981 + dependencies: 4982 + caw "^2.0.0" 4983 + content-disposition "^0.5.2" 4984 + decompress "^4.0.0" 4985 + ext-name "^5.0.0" 4986 + file-type "5.2.0" 4987 + filenamify "^2.0.0" 4988 + get-stream "^3.0.0" 4989 + got "^7.0.0" 4990 + make-dir "^1.0.0" 4991 + p-event "^1.0.0" 4992 + pify "^3.0.0" 4993 + 4994 + download@^7.1.0: 4995 + version "7.1.0" 4996 + resolved "https://registry.yarnpkg.com/download/-/download-7.1.0.tgz#9059aa9d70b503ee76a132897be6dec8e5587233" 4997 + integrity sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ== 4998 + dependencies: 4999 + archive-type "^4.0.0" 5000 + caw "^2.0.1" 5001 + content-disposition "^0.5.2" 5002 + decompress "^4.2.0" 5003 + ext-name "^5.0.0" 5004 + file-type "^8.1.0" 5005 + filenamify "^2.0.0" 5006 + get-stream "^3.0.0" 5007 + got "^8.3.1" 5008 + make-dir "^1.2.0" 5009 + p-event "^2.1.0" 5010 + pify "^3.0.0" 5011 + 4806 5012 duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 4807 5013 version "0.1.4" 4808 5014 resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 4809 5015 integrity sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== 4810 5016 dependencies: 4811 5017 readable-stream "^2.0.2" 5018 + 5019 + duplexer3@^0.1.4: 5020 + version "0.1.5" 5021 + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.5.tgz#0b5e4d7bad5de8901ea4440624c8e1d20099217e" 5022 + integrity sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA== 4812 5023 4813 5024 duplexer@^0.1.2: 4814 5025 version "0.1.2" ··· 4876 5087 integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== 4877 5088 dependencies: 4878 5089 iconv-lite "^0.6.2" 5090 + 5091 + end-of-stream@^1.0.0, end-of-stream@^1.1.0: 5092 + version "1.4.4" 5093 + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 5094 + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 5095 + dependencies: 5096 + once "^1.4.0" 4879 5097 4880 5098 engine.io-client@~6.0.1: 4881 5099 version "6.0.2" ··· 5256 5474 md5.js "^1.3.4" 5257 5475 safe-buffer "^5.1.1" 5258 5476 5477 + exec-buffer@^3.0.0: 5478 + version "3.2.0" 5479 + resolved "https://registry.yarnpkg.com/exec-buffer/-/exec-buffer-3.2.0.tgz#b1686dbd904c7cf982e652c1f5a79b1e5573082b" 5480 + integrity sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA== 5481 + dependencies: 5482 + execa "^0.7.0" 5483 + p-finally "^1.0.0" 5484 + pify "^3.0.0" 5485 + rimraf "^2.5.4" 5486 + tempfile "^2.0.0" 5487 + 5488 + execa@^0.7.0: 5489 + version "0.7.0" 5490 + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 5491 + integrity sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw== 5492 + dependencies: 5493 + cross-spawn "^5.0.1" 5494 + get-stream "^3.0.0" 5495 + is-stream "^1.1.0" 5496 + npm-run-path "^2.0.0" 5497 + p-finally "^1.0.0" 5498 + signal-exit "^3.0.0" 5499 + strip-eof "^1.0.0" 5500 + 5501 + execa@^1.0.0: 5502 + version "1.0.0" 5503 + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 5504 + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 5505 + dependencies: 5506 + cross-spawn "^6.0.0" 5507 + get-stream "^4.0.0" 5508 + is-stream "^1.1.0" 5509 + npm-run-path "^2.0.0" 5510 + p-finally "^1.0.0" 5511 + signal-exit "^3.0.0" 5512 + strip-eof "^1.0.0" 5513 + 5514 + execa@^4.0.0: 5515 + version "4.1.0" 5516 + resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" 5517 + integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== 5518 + dependencies: 5519 + cross-spawn "^7.0.0" 5520 + get-stream "^5.0.0" 5521 + human-signals "^1.1.1" 5522 + is-stream "^2.0.0" 5523 + merge-stream "^2.0.0" 5524 + npm-run-path "^4.0.0" 5525 + onetime "^5.1.0" 5526 + signal-exit "^3.0.2" 5527 + strip-final-newline "^2.0.0" 5528 + 5259 5529 execa@^5.0.0: 5260 5530 version "5.1.1" 5261 5531 resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" ··· 5271 5541 signal-exit "^3.0.3" 5272 5542 strip-final-newline "^2.0.0" 5273 5543 5544 + execa@^6.0.0: 5545 + version "6.1.0" 5546 + resolved "https://registry.yarnpkg.com/execa/-/execa-6.1.0.tgz#cea16dee211ff011246556388effa0818394fb20" 5547 + integrity sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA== 5548 + dependencies: 5549 + cross-spawn "^7.0.3" 5550 + get-stream "^6.0.1" 5551 + human-signals "^3.0.1" 5552 + is-stream "^3.0.0" 5553 + merge-stream "^2.0.0" 5554 + npm-run-path "^5.1.0" 5555 + onetime "^6.0.0" 5556 + signal-exit "^3.0.7" 5557 + strip-final-newline "^3.0.0" 5558 + 5559 + executable@^4.1.0: 5560 + version "4.1.1" 5561 + resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" 5562 + integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg== 5563 + dependencies: 5564 + pify "^2.2.0" 5565 + 5274 5566 exports-loader@^2.0.0: 5275 5567 version "2.0.0" 5276 5568 resolved "https://registry.yarnpkg.com/exports-loader/-/exports-loader-2.0.0.tgz#ca7861b86726997bb4e55001888d2af940935979" ··· 5278 5570 dependencies: 5279 5571 source-map "^0.6.1" 5280 5572 5573 + ext-list@^2.0.0: 5574 + version "2.2.2" 5575 + resolved "https://registry.yarnpkg.com/ext-list/-/ext-list-2.2.2.tgz#0b98e64ed82f5acf0f2931babf69212ef52ddd37" 5576 + integrity sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA== 5577 + dependencies: 5578 + mime-db "^1.28.0" 5579 + 5580 + ext-name@^5.0.0: 5581 + version "5.0.0" 5582 + resolved "https://registry.yarnpkg.com/ext-name/-/ext-name-5.0.0.tgz#70781981d183ee15d13993c8822045c506c8f0a6" 5583 + integrity sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ== 5584 + dependencies: 5585 + ext-list "^2.0.0" 5586 + sort-keys-length "^1.0.0" 5587 + 5281 5588 extend@^3.0.0: 5282 5589 version "3.0.2" 5283 5590 resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" ··· 5347 5654 dependencies: 5348 5655 reusify "^1.0.4" 5349 5656 5657 + fd-slicer@~1.1.0: 5658 + version "1.1.0" 5659 + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" 5660 + integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== 5661 + dependencies: 5662 + pend "~1.2.0" 5663 + 5350 5664 file-entry-cache@^6.0.1: 5351 5665 version "6.0.1" 5352 5666 resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" ··· 5361 5675 dependencies: 5362 5676 tslib "^2.4.0" 5363 5677 5678 + file-type@5.2.0, file-type@^5.2.0: 5679 + version "5.2.0" 5680 + resolved "https://registry.yarnpkg.com/file-type/-/file-type-5.2.0.tgz#2ddbea7c73ffe36368dfae49dc338c058c2b8ad6" 5681 + integrity sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ== 5682 + 5364 5683 file-type@^12.0.0: 5365 5684 version "12.4.2" 5366 5685 resolved "https://registry.yarnpkg.com/file-type/-/file-type-12.4.2.tgz#a344ea5664a1d01447ee7fb1b635f72feb6169d9" 5367 5686 integrity sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg== 5368 5687 5688 + file-type@^3.8.0: 5689 + version "3.9.0" 5690 + resolved "https://registry.yarnpkg.com/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9" 5691 + integrity sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA== 5692 + 5693 + file-type@^4.2.0: 5694 + version "4.4.0" 5695 + resolved "https://registry.yarnpkg.com/file-type/-/file-type-4.4.0.tgz#1b600e5fca1fbdc6e80c0a70c71c8dba5f7906c5" 5696 + integrity sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ== 5697 + 5698 + file-type@^6.1.0: 5699 + version "6.2.0" 5700 + resolved "https://registry.yarnpkg.com/file-type/-/file-type-6.2.0.tgz#e50cd75d356ffed4e306dc4f5bcf52a79903a919" 5701 + integrity sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg== 5702 + 5703 + file-type@^8.1.0: 5704 + version "8.1.0" 5705 + resolved "https://registry.yarnpkg.com/file-type/-/file-type-8.1.0.tgz#244f3b7ef641bbe0cca196c7276e4b332399f68c" 5706 + integrity sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ== 5707 + 5369 5708 file-uri-to-path@1.0.0: 5370 5709 version "1.0.0" 5371 5710 resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" ··· 5382 5721 version "2.0.0" 5383 5722 resolved "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz#abf73dfab735d045440abfea2d91f389ebbfa229" 5384 5723 integrity sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ== 5724 + 5725 + filenamify@^2.0.0: 5726 + version "2.1.0" 5727 + resolved "https://registry.yarnpkg.com/filenamify/-/filenamify-2.1.0.tgz#88faf495fb1b47abfd612300002a16228c677ee9" 5728 + integrity sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA== 5729 + dependencies: 5730 + filename-reserved-regex "^2.0.0" 5731 + strip-outer "^1.0.0" 5732 + trim-repeated "^1.0.0" 5385 5733 5386 5734 fill-range@^7.0.1: 5387 5735 version "7.0.1" ··· 5433 5781 locate-path "^6.0.0" 5434 5782 path-exists "^4.0.0" 5435 5783 5784 + find-versions@^3.0.0: 5785 + version "3.2.0" 5786 + resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e" 5787 + integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww== 5788 + dependencies: 5789 + semver-regex "^2.0.0" 5790 + 5436 5791 flat-cache@^3.0.4: 5437 5792 version "3.0.4" 5438 5793 resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" ··· 5465 5820 version "4.1.1" 5466 5821 resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.1.1.tgz#ac4e520473dae67012d618aab91eda09bcb400ff" 5467 5822 integrity sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg== 5823 + 5824 + from2@^2.1.1: 5825 + version "2.3.0" 5826 + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 5827 + integrity sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g== 5828 + dependencies: 5829 + inherits "^2.0.1" 5830 + readable-stream "^2.0.0" 5831 + 5832 + fs-constants@^1.0.0: 5833 + version "1.0.0" 5834 + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 5835 + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 5468 5836 5469 5837 fs-extra@^10.0.0: 5470 5838 version "10.0.0" ··· 5560 5928 has "^1.0.3" 5561 5929 has-symbols "^1.0.1" 5562 5930 5563 - get-stream@^6.0.0: 5931 + get-proxy@^2.0.0: 5932 + version "2.1.0" 5933 + resolved "https://registry.yarnpkg.com/get-proxy/-/get-proxy-2.1.0.tgz#349f2b4d91d44c4d4d4e9cba2ad90143fac5ef93" 5934 + integrity sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw== 5935 + dependencies: 5936 + npm-conf "^1.1.0" 5937 + 5938 + get-stream@3.0.0, get-stream@^3.0.0: 5939 + version "3.0.0" 5940 + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 5941 + integrity sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ== 5942 + 5943 + get-stream@^2.2.0: 5944 + version "2.3.1" 5945 + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 5946 + integrity sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA== 5947 + dependencies: 5948 + object-assign "^4.0.1" 5949 + pinkie-promise "^2.0.0" 5950 + 5951 + get-stream@^4.0.0: 5952 + version "4.1.0" 5953 + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 5954 + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 5955 + dependencies: 5956 + pump "^3.0.0" 5957 + 5958 + get-stream@^5.0.0: 5959 + version "5.2.0" 5960 + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 5961 + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 5962 + dependencies: 5963 + pump "^3.0.0" 5964 + 5965 + get-stream@^6.0.0, get-stream@^6.0.1: 5564 5966 version "6.0.1" 5565 5967 resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 5566 5968 integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== ··· 5663 6065 merge2 "^1.4.1" 5664 6066 slash "^4.0.0" 5665 6067 6068 + got@^7.0.0: 6069 + version "7.1.0" 6070 + resolved "https://registry.yarnpkg.com/got/-/got-7.1.0.tgz#05450fd84094e6bbea56f451a43a9c289166385a" 6071 + integrity sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw== 6072 + dependencies: 6073 + decompress-response "^3.2.0" 6074 + duplexer3 "^0.1.4" 6075 + get-stream "^3.0.0" 6076 + is-plain-obj "^1.1.0" 6077 + is-retry-allowed "^1.0.0" 6078 + is-stream "^1.0.0" 6079 + isurl "^1.0.0-alpha5" 6080 + lowercase-keys "^1.0.0" 6081 + p-cancelable "^0.3.0" 6082 + p-timeout "^1.1.1" 6083 + safe-buffer "^5.0.1" 6084 + timed-out "^4.0.0" 6085 + url-parse-lax "^1.0.0" 6086 + url-to-options "^1.0.1" 6087 + 6088 + got@^8.3.1: 6089 + version "8.3.2" 6090 + resolved "https://registry.yarnpkg.com/got/-/got-8.3.2.tgz#1d23f64390e97f776cac52e5b936e5f514d2e937" 6091 + integrity sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw== 6092 + dependencies: 6093 + "@sindresorhus/is" "^0.7.0" 6094 + cacheable-request "^2.1.1" 6095 + decompress-response "^3.3.0" 6096 + duplexer3 "^0.1.4" 6097 + get-stream "^3.0.0" 6098 + into-stream "^3.1.0" 6099 + is-retry-allowed "^1.1.0" 6100 + isurl "^1.0.0-alpha5" 6101 + lowercase-keys "^1.0.0" 6102 + mimic-response "^1.0.0" 6103 + p-cancelable "^0.4.0" 6104 + p-timeout "^2.0.1" 6105 + pify "^3.0.0" 6106 + safe-buffer "^5.1.1" 6107 + timed-out "^4.0.1" 6108 + url-parse-lax "^3.0.0" 6109 + url-to-options "^1.0.1" 6110 + 6111 + graceful-fs@^4.1.10: 6112 + version "4.2.10" 6113 + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 6114 + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 6115 + 5666 6116 graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6: 5667 6117 version "4.2.8" 5668 6118 resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" ··· 5731 6181 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 5732 6182 integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 5733 6183 6184 + has-symbol-support-x@^1.4.1: 6185 + version "1.4.2" 6186 + resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455" 6187 + integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw== 6188 + 5734 6189 has-symbols@^1.0.1, has-symbols@^1.0.2: 5735 6190 version "1.0.2" 5736 6191 resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 5737 6192 integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 6193 + 6194 + has-to-string-tag-x@^1.2.0: 6195 + version "1.4.1" 6196 + resolved "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d" 6197 + integrity sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw== 6198 + dependencies: 6199 + has-symbol-support-x "^1.4.1" 5738 6200 5739 6201 has-tostringtag@^1.0.0: 5740 6202 version "1.0.0" ··· 5866 6328 domutils "^2.5.2" 5867 6329 entities "^2.0.0" 5868 6330 6331 + http-cache-semantics@3.8.1: 6332 + version "3.8.1" 6333 + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" 6334 + integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w== 6335 + 5869 6336 http-cache-semantics@^4.1.0: 5870 6337 version "4.1.0" 5871 6338 resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" ··· 5913 6380 agent-base "6" 5914 6381 debug "4" 5915 6382 6383 + human-signals@^1.1.1: 6384 + version "1.1.1" 6385 + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 6386 + integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 6387 + 5916 6388 human-signals@^2.1.0: 5917 6389 version "2.1.0" 5918 6390 resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 5919 6391 integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 5920 6392 6393 + human-signals@^3.0.1: 6394 + version "3.0.1" 6395 + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-3.0.1.tgz#c740920859dafa50e5a3222da9d3bf4bb0e5eef5" 6396 + integrity sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ== 6397 + 5921 6398 humanize-ms@^1.2.1: 5922 6399 version "1.2.1" 5923 6400 resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" ··· 5949 6426 resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" 5950 6427 integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== 5951 6428 5952 - ieee754@^1.1.4, ieee754@^1.2.1: 6429 + ieee754@^1.1.13, ieee754@^1.1.4, ieee754@^1.2.1: 5953 6430 version "1.2.1" 5954 6431 resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 5955 6432 integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ··· 5980 6457 schema-utils "^3.0.0" 5981 6458 serialize-javascript "^5.0.1" 5982 6459 6460 + imagemin-mozjpeg@^10.0.0: 6461 + version "10.0.0" 6462 + resolved "https://registry.yarnpkg.com/imagemin-mozjpeg/-/imagemin-mozjpeg-10.0.0.tgz#d6771d1ce05ee15e2f6f34a9878c7266abccd9ee" 6463 + integrity sha512-DK85QNOjS3/GzWYfNB3CACMZD10sIQgFDv1+WTOnZljgltQTEyATjdyUVyjKu5q4sCESQdwvwq7WEZzJ5fFjlg== 6464 + dependencies: 6465 + execa "^6.0.0" 6466 + is-jpg "^3.0.0" 6467 + mozjpeg "^8.0.0" 6468 + 6469 + imagemin-optipng@^8.0.0: 6470 + version "8.0.0" 6471 + resolved "https://registry.yarnpkg.com/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz#b88e5cf6da25cc8479e07cdf38c3ae0479df7ef2" 6472 + integrity sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A== 6473 + dependencies: 6474 + exec-buffer "^3.0.0" 6475 + is-png "^2.0.0" 6476 + optipng-bin "^7.0.0" 6477 + 6478 + imagemin-pngquant@^9.0.2: 6479 + version "9.0.2" 6480 + resolved "https://registry.yarnpkg.com/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz#38155702b0cc4f60f671ba7c2b086ea3805d9567" 6481 + integrity sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg== 6482 + dependencies: 6483 + execa "^4.0.0" 6484 + is-png "^2.0.0" 6485 + is-stream "^2.0.0" 6486 + ow "^0.17.0" 6487 + pngquant-bin "^6.0.0" 6488 + 5983 6489 imagemin@^7.0.1: 5984 6490 version "7.0.1" 5985 6491 resolved "https://registry.yarnpkg.com/imagemin/-/imagemin-7.0.1.tgz#f6441ca647197632e23db7d971fffbd530c87dbf" ··· 6005 6511 dependencies: 6006 6512 parent-module "^1.0.0" 6007 6513 resolve-from "^4.0.0" 6514 + 6515 + import-lazy@^3.1.0: 6516 + version "3.1.0" 6517 + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-3.1.0.tgz#891279202c8a2280fdbd6674dbd8da1a1dfc67cc" 6518 + integrity sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ== 6008 6519 6009 6520 import-local@^3.0.2: 6010 6521 version "3.0.3" ··· 6066 6577 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 6067 6578 integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== 6068 6579 6580 + ini@^1.3.4: 6581 + version "1.3.8" 6582 + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 6583 + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 6584 + 6069 6585 inline-source-map@~0.6.0: 6070 6586 version "0.6.2" 6071 6587 resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" ··· 6113 6629 resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" 6114 6630 integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== 6115 6631 6632 + into-stream@^3.1.0: 6633 + version "3.1.0" 6634 + resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6" 6635 + integrity sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ== 6636 + dependencies: 6637 + from2 "^2.1.1" 6638 + p-is-promise "^1.1.0" 6639 + 6116 6640 invariant@^2.2.2: 6117 6641 version "2.2.4" 6118 6642 resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" ··· 6258 6782 resolved "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz#56ff4db683a078c6082eb95dad7dc62e1d04f835" 6259 6783 integrity sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g== 6260 6784 6785 + is-jpg@^3.0.0: 6786 + version "3.0.0" 6787 + resolved "https://registry.yarnpkg.com/is-jpg/-/is-jpg-3.0.0.tgz#f97b4ab6de92401650cb4f54ec0a6ad79c51367f" 6788 + integrity sha512-Vcd67KWHZblEKEBrtP25qLZ8wN9ICoAhl1pKUqD7SM7hf2qtuRl7loDgP5Zigh2oN/+7uj+KVyC0eRJvgOEFeQ== 6789 + 6261 6790 is-lambda@^1.0.1: 6262 6791 version "1.0.1" 6263 6792 resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" 6264 6793 integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== 6265 6794 6795 + is-natural-number@^4.0.1: 6796 + version "4.0.1" 6797 + resolved "https://registry.yarnpkg.com/is-natural-number/-/is-natural-number-4.0.1.tgz#ab9d76e1db4ced51e35de0c72ebecf09f734cde8" 6798 + integrity sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ== 6799 + 6266 6800 is-negative-zero@^2.0.1: 6267 6801 version "2.0.1" 6268 6802 resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" ··· 6280 6814 resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 6281 6815 integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 6282 6816 6283 - is-plain-obj@^1.1.0: 6817 + is-object@^1.0.1: 6818 + version "1.0.2" 6819 + resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.2.tgz#a56552e1c665c9e950b4a025461da87e72f86fcf" 6820 + integrity sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA== 6821 + 6822 + is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: 6284 6823 version "1.1.0" 6285 6824 resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 6286 6825 integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== ··· 6292 6831 dependencies: 6293 6832 isobject "^3.0.1" 6294 6833 6834 + is-png@^2.0.0: 6835 + version "2.0.0" 6836 + resolved "https://registry.yarnpkg.com/is-png/-/is-png-2.0.0.tgz#ee8cbc9e9b050425cedeeb4a6fb74a649b0a4a8d" 6837 + integrity sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g== 6838 + 6295 6839 is-regex@^1.0.5, is-regex@^1.1.0, is-regex@^1.1.4: 6296 6840 version "1.1.4" 6297 6841 resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" ··· 6312 6856 resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 6313 6857 integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== 6314 6858 6859 + is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0: 6860 + version "1.2.0" 6861 + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" 6862 + integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== 6863 + 6315 6864 is-shared-array-buffer@^1.0.1: 6316 6865 version "1.0.1" 6317 6866 resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz#97b0c85fbdacb59c9c446fe653b82cf2b5b7cfe6" 6318 6867 integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA== 6319 6868 6869 + is-stream@^1.0.0, is-stream@^1.1.0: 6870 + version "1.1.0" 6871 + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 6872 + integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== 6873 + 6320 6874 is-stream@^2.0.0: 6321 6875 version "2.0.1" 6322 6876 resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 6323 6877 integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 6324 6878 6879 + is-stream@^3.0.0: 6880 + version "3.0.0" 6881 + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" 6882 + integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== 6883 + 6325 6884 is-string@^1.0.5, is-string@^1.0.7: 6326 6885 version "1.0.7" 6327 6886 resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" ··· 6460 7019 html-escaper "^2.0.0" 6461 7020 istanbul-lib-report "^3.0.0" 6462 7021 7022 + isurl@^1.0.0-alpha5: 7023 + version "1.0.0" 7024 + resolved "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67" 7025 + integrity sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w== 7026 + dependencies: 7027 + has-to-string-tag-x "^1.2.0" 7028 + is-object "^1.0.1" 7029 + 6463 7030 jake@^10.8.5: 6464 7031 version "10.8.5" 6465 7032 resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" ··· 6508 7075 dependencies: 6509 7076 jquery "^3.5.0" 6510 7077 6511 - jquery-ui@>=1.8.0, jquery-ui@^1.13.2: 7078 + jquery-ui@^1.13.2: 6512 7079 version "1.13.2" 6513 7080 resolved "https://registry.yarnpkg.com/jquery-ui/-/jquery-ui-1.13.2.tgz#de03580ae6604773602f8d786ad1abfb75232034" 6514 7081 integrity sha512-wBZPnqWs5GaYJmo1Jj0k/mrSkzdQzKDwhXNtHKcBdAcKVxMM3KNYFq+iJ2i1rwiG53Z8M4mTn3Qxrm17uH1D4Q== 6515 7082 dependencies: 6516 7083 jquery ">=1.8.0 <4.0.0" 6517 7084 6518 - "jquery@>=1.7.1 <4.0.0", jquery@>=1.8.0, "jquery@>=1.8.0 <4.0.0", jquery@^3.3.1, jquery@^3.5.0, jquery@^3.5.1, jquery@^3.6.0: 7085 + "jquery@>=1.7.1 <4.0.0", "jquery@>=1.8.0 <4.0.0", jquery@^3.3.1, jquery@^3.5.0, jquery@^3.5.1, jquery@^3.6.0: 6519 7086 version "3.6.0" 6520 7087 resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz#c72a09f15c1bdce142f49dbf1170bdf8adac2470" 6521 7088 integrity sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw== ··· 6570 7137 dependencies: 6571 7138 bignumber.js "^7.2.1" 6572 7139 7140 + json-buffer@3.0.0: 7141 + version "3.0.0" 7142 + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 7143 + integrity sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ== 7144 + 6573 7145 json-parse-better-errors@^1.0.2: 6574 7146 version "1.0.2" 6575 7147 resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" ··· 6853 7425 tmp "^0.2.1" 6854 7426 ua-parser-js "^0.7.30" 6855 7427 yargs "^16.1.1" 7428 + 7429 + keyv@3.0.0: 7430 + version "3.0.0" 7431 + resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373" 7432 + integrity sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA== 7433 + dependencies: 7434 + json-buffer "3.0.0" 6856 7435 6857 7436 kind-of@^6.0.2, kind-of@^6.0.3: 6858 7437 version "6.0.3" ··· 7192 7771 dependencies: 7193 7772 js-tokens "^3.0.0 || ^4.0.0" 7194 7773 7774 + lowercase-keys@1.0.0: 7775 + version "1.0.0" 7776 + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 7777 + integrity sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A== 7778 + 7779 + lowercase-keys@^1.0.0: 7780 + version "1.0.1" 7781 + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 7782 + integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 7783 + 7784 + lru-cache@^4.0.1: 7785 + version "4.1.5" 7786 + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 7787 + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 7788 + dependencies: 7789 + pseudomap "^1.0.2" 7790 + yallist "^2.1.2" 7791 + 7195 7792 lru-cache@^6.0.0: 7196 7793 version "6.0.0" 7197 7794 resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" ··· 7204 7801 resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.13.1.tgz#267a81fbd0881327c46a81c5922606a2cfe336c4" 7205 7802 integrity sha512-CHqbAq7NFlW3RSnoWXLJBxCWaZVBrfa9UEHId2M3AW8iEBurbqduNexEUCGc3SHc6iCYXNJCDi903LajSVAEPQ== 7206 7803 7207 - lunr@^0.7.0: 7208 - version "0.7.2" 7209 - resolved "https://registry.yarnpkg.com/lunr/-/lunr-0.7.2.tgz#79a30e932e216cba163541ee37a3607c12cd7281" 7210 - integrity sha512-qXxxSzrWOhFu4EhyvYqCGMv1nJsTy5OGQN3GtClGbRSaqJ/1XASk41nF2jjxzKTS8kjU0QybhOgGgGo6HUZqSQ== 7804 + make-dir@^1.0.0, make-dir@^1.2.0: 7805 + version "1.3.0" 7806 + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 7807 + integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== 7808 + dependencies: 7809 + pify "^3.0.0" 7211 7810 7212 7811 make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0: 7213 7812 version "3.1.0" ··· 7336 7935 resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.50.0.tgz#abd4ac94e98d3c0e185016c67ab45d5fde40c11f" 7337 7936 integrity sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A== 7338 7937 7938 + mime-db@^1.28.0: 7939 + version "1.52.0" 7940 + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 7941 + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 7942 + 7339 7943 mime-types@^2.1.27, mime-types@~2.1.24: 7340 7944 version "2.1.33" 7341 7945 resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.33.tgz#1fa12a904472fafd068e48d9e8401f74d3f70edb" ··· 7357 7961 version "2.1.0" 7358 7962 resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 7359 7963 integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 7964 + 7965 + mimic-fn@^4.0.0: 7966 + version "4.0.0" 7967 + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" 7968 + integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== 7969 + 7970 + mimic-response@^1.0.0: 7971 + version "1.0.1" 7972 + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 7973 + integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 7360 7974 7361 7975 min-indent@^1.0.1: 7362 7976 version "1.0.1" ··· 7538 8152 xtend "^4.0.0" 7539 8153 7540 8154 moment-timezone@^0.5.31, moment-timezone@^0.5.34: 7541 - version "0.5.34" 7542 - resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.34.tgz#a75938f7476b88f155d3504a9343f7519d9a405c" 7543 - integrity sha512-3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg== 8155 + version "0.5.37" 8156 + resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.37.tgz#adf97f719c4e458fdb12e2b4e87b8bec9f4eef1e" 8157 + integrity "sha1-rfl/cZxORY/bEuK06HuL7J9O7x4= sha512-uEDzDNFhfaywRl+vwXxffjjq1q0Vzr+fcQpQ1bU0kbzorfS7zVtZnCnGc8mhWmF39d4g4YriF6kwA75mJKE/Zg==" 7544 8158 dependencies: 7545 8159 moment ">= 2.9.0" 7546 8160 ··· 7559 8173 resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.5.tgz#8a766d8c272b08393d5f56074e0b5ec183485bf9" 7560 8174 integrity sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA== 7561 8175 8176 + mozjpeg@^8.0.0: 8177 + version "8.0.0" 8178 + resolved "https://registry.yarnpkg.com/mozjpeg/-/mozjpeg-8.0.0.tgz#cd990d96581626ca64b877146ce22ba00b3b308c" 8179 + integrity sha512-Ca2Yhah9hG0Iutgsn8MOrAl37P9ThnKsJatjXoWdUO+8X8GeG/6ahvHZrTyqvbs6leMww1SauWUCao/L9qBuFQ== 8180 + dependencies: 8181 + bin-build "^3.0.0" 8182 + bin-wrapper "^4.0.0" 8183 + 7562 8184 ms@2.0.0: 7563 8185 version "2.0.0" 7564 8186 resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" ··· 7626 8248 resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 7627 8249 integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 7628 8250 8251 + nice-try@^1.0.4: 8252 + version "1.0.5" 8253 + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 8254 + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 8255 + 7629 8256 node-gyp@^9.0.0: 7630 8257 version "9.1.0" 7631 8258 resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.1.0.tgz#c8d8e590678ea1f7b8097511dedf41fc126648f8" ··· 7679 8306 resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 7680 8307 integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== 7681 8308 8309 + normalize-url@2.0.1: 8310 + version "2.0.1" 8311 + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6" 8312 + integrity sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw== 8313 + dependencies: 8314 + prepend-http "^2.0.0" 8315 + query-string "^5.0.1" 8316 + sort-keys "^2.0.0" 8317 + 7682 8318 normalize-url@^6.0.1: 7683 8319 version "6.1.0" 7684 8320 resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" ··· 7697 8333 clsx "^1.1.0" 7698 8334 hoist-non-react-statics "^3.3.0" 7699 8335 7700 - npm-run-path@^4.0.1: 8336 + npm-conf@^1.1.0: 8337 + version "1.1.3" 8338 + resolved "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz#256cc47bd0e218c259c4e9550bf413bc2192aff9" 8339 + integrity sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw== 8340 + dependencies: 8341 + config-chain "^1.1.11" 8342 + pify "^3.0.0" 8343 + 8344 + npm-run-path@^2.0.0: 8345 + version "2.0.2" 8346 + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 8347 + integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== 8348 + dependencies: 8349 + path-key "^2.0.0" 8350 + 8351 + npm-run-path@^4.0.0, npm-run-path@^4.0.1: 7701 8352 version "4.0.1" 7702 8353 resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 7703 8354 integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 7704 8355 dependencies: 7705 8356 path-key "^3.0.0" 8357 + 8358 + npm-run-path@^5.1.0: 8359 + version "5.1.0" 8360 + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" 8361 + integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== 8362 + dependencies: 8363 + path-key "^4.0.0" 7706 8364 7707 8365 npmlog@^6.0.0: 7708 8366 version "6.0.2" ··· 7721 8379 dependencies: 7722 8380 boolbase "^1.0.0" 7723 8381 7724 - object-assign@^4, object-assign@^4.1.1: 8382 + object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 7725 8383 version "4.1.1" 7726 8384 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 7727 8385 integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== ··· 7796 8454 dependencies: 7797 8455 ee-first "1.1.1" 7798 8456 7799 - once@^1.3.0: 8457 + once@^1.3.0, once@^1.3.1, once@^1.4.0: 7800 8458 version "1.4.0" 7801 8459 resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 7802 8460 integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 7803 8461 dependencies: 7804 8462 wrappy "1" 7805 8463 7806 - onetime@^5.1.2: 8464 + onetime@^5.1.0, onetime@^5.1.2: 7807 8465 version "5.1.2" 7808 8466 resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 7809 8467 integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 7810 8468 dependencies: 7811 8469 mimic-fn "^2.1.0" 7812 8470 8471 + onetime@^6.0.0: 8472 + version "6.0.0" 8473 + resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" 8474 + integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== 8475 + dependencies: 8476 + mimic-fn "^4.0.0" 8477 + 7813 8478 opener@^1.5.2: 7814 8479 version "1.5.2" 7815 8480 resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" ··· 7826 8491 prelude-ls "^1.2.1" 7827 8492 type-check "^0.4.0" 7828 8493 word-wrap "^1.2.3" 8494 + 8495 + optipng-bin@^7.0.0: 8496 + version "7.0.1" 8497 + resolved "https://registry.yarnpkg.com/optipng-bin/-/optipng-bin-7.0.1.tgz#beb8e55a52f8a26f885ee57ab44fcf62397d6972" 8498 + integrity sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA== 8499 + dependencies: 8500 + bin-build "^3.0.0" 8501 + bin-wrapper "^4.0.0" 7829 8502 7830 8503 os-browserify@~0.3.0: 7831 8504 version "0.3.0" 7832 8505 resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 7833 8506 integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== 7834 8507 8508 + os-filter-obj@^2.0.0: 8509 + version "2.0.0" 8510 + resolved "https://registry.yarnpkg.com/os-filter-obj/-/os-filter-obj-2.0.0.tgz#1c0b62d5f3a2442749a2d139e6dddee6e81d8d16" 8511 + integrity sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg== 8512 + dependencies: 8513 + arch "^2.1.0" 8514 + 7835 8515 os-shim@^0.1.3: 7836 8516 version "0.1.3" 7837 8517 resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 7838 8518 integrity sha512-jd0cvB8qQ5uVt0lvCIexBaROw1KyKm5sbulg2fWOHjETisuCzWyt+eTZKEMs8v6HwzoGs8xik26jg7eCM6pS+A== 7839 8519 8520 + ow@^0.17.0: 8521 + version "0.17.0" 8522 + resolved "https://registry.yarnpkg.com/ow/-/ow-0.17.0.tgz#4f938999fed6264c9048cd6254356e0f1e7f688c" 8523 + integrity sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA== 8524 + dependencies: 8525 + type-fest "^0.11.0" 8526 + 8527 + p-cancelable@^0.3.0: 8528 + version "0.3.0" 8529 + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 8530 + integrity sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw== 8531 + 8532 + p-cancelable@^0.4.0: 8533 + version "0.4.1" 8534 + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0" 8535 + integrity sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ== 8536 + 8537 + p-event@^1.0.0: 8538 + version "1.3.0" 8539 + resolved "https://registry.yarnpkg.com/p-event/-/p-event-1.3.0.tgz#8e6b4f4f65c72bc5b6fe28b75eda874f96a4a085" 8540 + integrity sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA== 8541 + dependencies: 8542 + p-timeout "^1.1.1" 8543 + 8544 + p-event@^2.1.0: 8545 + version "2.3.1" 8546 + resolved "https://registry.yarnpkg.com/p-event/-/p-event-2.3.1.tgz#596279ef169ab2c3e0cae88c1cfbb08079993ef6" 8547 + integrity sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA== 8548 + dependencies: 8549 + p-timeout "^2.0.1" 8550 + 8551 + p-finally@^1.0.0: 8552 + version "1.0.0" 8553 + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 8554 + integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== 8555 + 8556 + p-is-promise@^1.1.0: 8557 + version "1.1.0" 8558 + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" 8559 + integrity sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg== 8560 + 7840 8561 p-limit@^2.2.0: 7841 8562 version "2.3.0" 7842 8563 resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" ··· 7865 8586 dependencies: 7866 8587 p-limit "^3.0.2" 7867 8588 8589 + p-map-series@^1.0.0: 8590 + version "1.0.0" 8591 + resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-1.0.0.tgz#bf98fe575705658a9e1351befb85ae4c1f07bdca" 8592 + integrity sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg== 8593 + dependencies: 8594 + p-reduce "^1.0.0" 8595 + 7868 8596 p-map@^4.0.0: 7869 8597 version "4.0.0" 7870 8598 resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" ··· 7890 8618 "@sindresorhus/is" "^0.7.0" 7891 8619 p-reduce "^1.0.0" 7892 8620 8621 + p-timeout@^1.1.1: 8622 + version "1.2.1" 8623 + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-1.2.1.tgz#5eb3b353b7fce99f101a1038880bb054ebbea386" 8624 + integrity sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA== 8625 + dependencies: 8626 + p-finally "^1.0.0" 8627 + 8628 + p-timeout@^2.0.1: 8629 + version "2.0.1" 8630 + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038" 8631 + integrity sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA== 8632 + dependencies: 8633 + p-finally "^1.0.0" 8634 + 7893 8635 p-try@^2.0.0: 7894 8636 version "2.2.0" 7895 8637 resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" ··· 7984 8726 resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 7985 8727 integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 7986 8728 8729 + path-key@^2.0.0, path-key@^2.0.1: 8730 + version "2.0.1" 8731 + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 8732 + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== 8733 + 7987 8734 path-key@^3.0.0, path-key@^3.1.0: 7988 8735 version "3.1.1" 7989 8736 resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 7990 8737 integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 8738 + 8739 + path-key@^4.0.0: 8740 + version "4.0.0" 8741 + resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" 8742 + integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== 7991 8743 7992 8744 path-parse@^1.0.6: 7993 8745 version "1.0.7" ··· 8026 8778 ripemd160 "^2.0.1" 8027 8779 safe-buffer "^5.0.1" 8028 8780 sha.js "^2.4.8" 8781 + 8782 + pend@~1.2.0: 8783 + version "1.2.0" 8784 + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 8785 + integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== 8029 8786 8030 8787 performance-now@^2.1.0: 8031 8788 version "2.1.0" ··· 8068 8825 resolved "https://registry.yarnpkg.com/picomodal/-/picomodal-3.0.0.tgz#facd30f4fbf34a809c1e04ea525f004f399c0b82" 8069 8826 integrity sha512-FoR3TDfuLlqUvcEeK5ifpKSVVns6B4BQvc8SDF6THVMuadya6LLtji0QgUDSStw0ZR2J7I6UGi5V2V23rnPWTw== 8070 8827 8828 + pify@^2.2.0, pify@^2.3.0: 8829 + version "2.3.0" 8830 + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 8831 + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== 8832 + 8833 + pify@^3.0.0: 8834 + version "3.0.0" 8835 + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 8836 + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== 8837 + 8838 + pify@^4.0.1: 8839 + version "4.0.1" 8840 + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 8841 + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 8842 + 8843 + pinkie-promise@^2.0.0: 8844 + version "2.0.1" 8845 + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 8846 + integrity sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw== 8847 + dependencies: 8848 + pinkie "^2.0.0" 8849 + 8850 + pinkie@^2.0.0: 8851 + version "2.0.4" 8852 + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 8853 + integrity sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg== 8854 + 8071 8855 pkg-dir@^4.1.0, pkg-dir@^4.2.0: 8072 8856 version "4.2.0" 8073 8857 resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 8074 8858 integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 8075 8859 dependencies: 8076 8860 find-up "^4.0.0" 8861 + 8862 + pngquant-bin@^6.0.0: 8863 + version "6.0.1" 8864 + resolved "https://registry.yarnpkg.com/pngquant-bin/-/pngquant-bin-6.0.1.tgz#2b5789ca219eeb4d8509ab1ae082092801b7f07e" 8865 + integrity sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ== 8866 + dependencies: 8867 + bin-build "^3.0.0" 8868 + bin-wrapper "^4.0.1" 8869 + execa "^4.0.0" 8077 8870 8078 8871 popper.js@1.16.1-lts: 8079 8872 version "1.16.1-lts" ··· 8362 9155 resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 8363 9156 integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 8364 9157 9158 + prepend-http@^1.0.1: 9159 + version "1.0.4" 9160 + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 9161 + integrity sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg== 9162 + 9163 + prepend-http@^2.0.0: 9164 + version "2.0.0" 9165 + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 9166 + integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== 9167 + 8365 9168 process-nextick-args@~2.0.0: 8366 9169 version "2.0.1" 8367 9170 resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" ··· 8416 9219 loose-envify "^1.4.0" 8417 9220 object-assign "^4.1.1" 8418 9221 react-is "^16.13.1" 9222 + 9223 + proto-list@~1.2.1: 9224 + version "1.2.4" 9225 + resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 9226 + integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== 9227 + 9228 + pseudomap@^1.0.2: 9229 + version "1.0.2" 9230 + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 9231 + integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== 8419 9232 8420 9233 public-encrypt@^4.0.0: 8421 9234 version "4.0.3" ··· 8429 9242 randombytes "^2.0.1" 8430 9243 safe-buffer "^5.1.2" 8431 9244 9245 + pump@^3.0.0: 9246 + version "3.0.0" 9247 + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 9248 + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 9249 + dependencies: 9250 + end-of-stream "^1.1.0" 9251 + once "^1.3.1" 9252 + 8432 9253 punycode@1.3.2: 8433 9254 version "1.3.2" 8434 9255 resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" ··· 8458 9279 version "6.7.0" 8459 9280 resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" 8460 9281 integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== 9282 + 9283 + query-string@^5.0.1: 9284 + version "5.1.1" 9285 + resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb" 9286 + integrity sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw== 9287 + dependencies: 9288 + decode-uri-component "^0.2.0" 9289 + object-assign "^4.1.0" 9290 + strict-uri-encode "^1.0.0" 8461 9291 8462 9292 querystring-es3@~0.2.0: 8463 9293 version "0.2.1" ··· 8685 9515 nanoid "^3.0.0" 8686 9516 prop-types "^15.5.8" 8687 9517 8688 - "react-data-grid@git+https://github.com/adityatoshniwal/react-data-grid.git/#8d9bc16ddd7c419acfbbd1c1cc2b70eb9f5b453c": 8689 - version "7.0.0-beta.12" 8690 - resolved "git+https://github.com/adityatoshniwal/react-data-grid.git/#8d9bc16ddd7c419acfbbd1c1cc2b70eb9f5b453c" 9518 + "react-data-grid@git+https://github.com/EnterpriseDB/react-data-grid.git/#200d2f5e02de694e3e9ffbe177c279bc40240fb8": 9519 + version "7.0.0-beta.14" 9520 + resolved "git+https://github.com/EnterpriseDB/react-data-grid.git/#200d2f5e02de694e3e9ffbe177c279bc40240fb8" 8691 9521 dependencies: 8692 9522 clsx "^1.1.1" 8693 9523 ··· 8910 9740 isarray "0.0.1" 8911 9741 string_decoder "~0.10.x" 8912 9742 8913 - readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@~2.3.6: 9743 + readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@~2.3.6: 8914 9744 version "2.3.7" 8915 9745 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 8916 9746 integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== ··· 9128 9958 is-core-module "^2.2.0" 9129 9959 path-parse "^1.0.6" 9130 9960 9961 + responselike@1.0.2: 9962 + version "1.0.2" 9963 + resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 9964 + integrity sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ== 9965 + dependencies: 9966 + lowercase-keys "^1.0.0" 9967 + 9131 9968 ret@~0.1.10: 9132 9969 version "0.1.15" 9133 9970 resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" ··· 9154 9991 integrity sha512-DSOJTWHD67860I5ojetXdEQRIBvF6YcpNe53j0vn1vp9EUb9N80EiZTxgP+FkDKorWC8PZw052kTF4C1GOivCQ== 9155 9992 dependencies: 9156 9993 "@babel/runtime" "^7.3.1" 9994 + 9995 + rimraf@^2.5.4: 9996 + version "2.7.1" 9997 + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 9998 + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 9999 + dependencies: 10000 + glob "^7.1.3" 9157 10001 9158 10002 rimraf@^3.0.0, rimraf@^3.0.2: 9159 10003 version "3.0.2" ··· 9185 10029 dependencies: 9186 10030 queue-microtask "^1.2.2" 9187 10031 9188 - safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: 10032 + safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: 9189 10033 version "5.2.1" 9190 10034 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 9191 10035 integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== ··· 9280 10124 ajv "^6.12.5" 9281 10125 ajv-keywords "^3.5.2" 9282 10126 10127 + seek-bzip@^1.0.5: 10128 + version "1.0.6" 10129 + resolved "https://registry.yarnpkg.com/seek-bzip/-/seek-bzip-1.0.6.tgz#35c4171f55a680916b52a07859ecf3b5857f21c4" 10130 + integrity sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ== 10131 + dependencies: 10132 + commander "^2.8.1" 10133 + 9283 10134 select2@^4.0.13: 9284 10135 version "4.0.13" 9285 10136 resolved "https://registry.yarnpkg.com/select2/-/select2-4.0.13.tgz#0dbe377df3f96167c4c1626033e924372d8ef44d" 9286 10137 integrity sha512-1JeB87s6oN/TDxQQYCvS5EFoQyvV6eYMZZ0AeA4tdFDYWN3BAGZ8npr17UBFddU0lgAt3H0yjX3X6/ekOj1yjw== 9287 10138 10139 + semver-regex@^2.0.0: 10140 + version "2.0.0" 10141 + resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" 10142 + integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== 10143 + 10144 + semver-truncate@^1.1.2: 10145 + version "1.1.2" 10146 + resolved "https://registry.yarnpkg.com/semver-truncate/-/semver-truncate-1.1.2.tgz#57f41de69707a62709a7e0104ba2117109ea47e8" 10147 + integrity sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w== 10148 + dependencies: 10149 + semver "^5.3.0" 10150 + 9288 10151 semver@7.0.0: 9289 10152 version "7.0.0" 9290 10153 resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 9291 10154 integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 9292 10155 9293 - semver@^5.3.0, semver@^5.7.0, semver@^5.7.1: 10156 + semver@^5.3.0, semver@^5.5.0, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1: 9294 10157 version "5.7.1" 9295 10158 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 9296 10159 integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== ··· 9365 10228 dependencies: 9366 10229 fast-safe-stringify "^2.0.7" 9367 10230 10231 + shebang-command@^1.2.0: 10232 + version "1.2.0" 10233 + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 10234 + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== 10235 + dependencies: 10236 + shebang-regex "^1.0.0" 10237 + 9368 10238 shebang-command@^2.0.0: 9369 10239 version "2.0.0" 9370 10240 resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" ··· 9372 10242 dependencies: 9373 10243 shebang-regex "^3.0.0" 9374 10244 10245 + shebang-regex@^1.0.0: 10246 + version "1.0.0" 10247 + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 10248 + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== 10249 + 9375 10250 shebang-regex@^3.0.0: 9376 10251 version "3.0.0" 9377 10252 resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" ··· 9401 10276 get-intrinsic "^1.0.2" 9402 10277 object-inspect "^1.9.0" 9403 10278 9404 - signal-exit@^3.0.3, signal-exit@^3.0.7: 10279 + signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: 9405 10280 version "3.0.7" 9406 10281 resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 9407 10282 integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== ··· 9439 10314 astral-regex "^2.0.0" 9440 10315 is-fullwidth-code-point "^3.0.0" 9441 10316 9442 - "slickgrid@git+https://github.com/6pac/SlickGrid.git#2.3.16": 9443 - version "2.3.16" 9444 - resolved "git+https://github.com/6pac/SlickGrid.git#4f8c6f498d0b82391fdf382beb8ef114ed7408e7" 9445 - dependencies: 9446 - jquery ">=1.8.0" 9447 - jquery-ui ">=1.8.0" 9448 - 9449 10317 smart-buffer@^4.2.0: 9450 10318 version "4.2.0" 9451 10319 resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" ··· 9528 10396 ip "^2.0.0" 9529 10397 smart-buffer "^4.2.0" 9530 10398 10399 + sort-keys-length@^1.0.0: 10400 + version "1.0.1" 10401 + resolved "https://registry.yarnpkg.com/sort-keys-length/-/sort-keys-length-1.0.1.tgz#9cb6f4f4e9e48155a6aa0671edd336ff1479a188" 10402 + integrity sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw== 10403 + dependencies: 10404 + sort-keys "^1.0.0" 10405 + 10406 + sort-keys@^1.0.0: 10407 + version "1.1.2" 10408 + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 10409 + integrity sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg== 10410 + dependencies: 10411 + is-plain-obj "^1.0.0" 10412 + 10413 + sort-keys@^2.0.0: 10414 + version "2.0.0" 10415 + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" 10416 + integrity sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg== 10417 + dependencies: 10418 + is-plain-obj "^1.0.0" 10419 + 9531 10420 source-list-map@^1.1.1: 9532 10421 version "1.1.2" 9533 10422 resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-1.1.2.tgz#9889019d1024cce55cdc069498337ef6186a11a1" ··· 9670 10559 debug "^4.1.1" 9671 10560 fs-extra "^10.0.0" 9672 10561 10562 + strict-uri-encode@^1.0.0: 10563 + version "1.1.0" 10564 + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 10565 + integrity sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ== 10566 + 9673 10567 "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 9674 10568 version "4.2.3" 9675 10569 resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" ··· 9756 10650 resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz#4ad11c3fbcac177a67a40ac224ca339ca1c1ba9b" 9757 10651 integrity sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw== 9758 10652 10653 + strip-dirs@^2.0.0: 10654 + version "2.1.0" 10655 + resolved "https://registry.yarnpkg.com/strip-dirs/-/strip-dirs-2.1.0.tgz#4987736264fc344cf20f6c34aca9d13d1d4ed6c5" 10656 + integrity sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g== 10657 + dependencies: 10658 + is-natural-number "^4.0.1" 10659 + 10660 + strip-eof@^1.0.0: 10661 + version "1.0.0" 10662 + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 10663 + integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== 10664 + 9759 10665 strip-final-newline@^2.0.0: 9760 10666 version "2.0.0" 9761 10667 resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 9762 10668 integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 9763 10669 10670 + strip-final-newline@^3.0.0: 10671 + version "3.0.0" 10672 + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" 10673 + integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== 10674 + 9764 10675 strip-indent@^4.0.0: 9765 10676 version "4.0.0" 9766 10677 resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-4.0.0.tgz#b41379433dd06f5eae805e21d631e07ee670d853" ··· 9772 10683 version "3.1.1" 9773 10684 resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 9774 10685 integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 10686 + 10687 + strip-outer@^1.0.0: 10688 + version "1.0.1" 10689 + resolved "https://registry.yarnpkg.com/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631" 10690 + integrity sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg== 10691 + dependencies: 10692 + escape-string-regexp "^1.0.2" 9775 10693 9776 10694 style-loader@^2.0.0: 9777 10695 version "2.0.0" ··· 9941 10859 resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" 9942 10860 integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== 9943 10861 10862 + tar-stream@^1.5.2: 10863 + version "1.6.2" 10864 + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" 10865 + integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== 10866 + dependencies: 10867 + bl "^1.0.0" 10868 + buffer-alloc "^1.2.0" 10869 + end-of-stream "^1.0.0" 10870 + fs-constants "^1.0.0" 10871 + readable-stream "^2.3.0" 10872 + to-buffer "^1.1.1" 10873 + xtend "^4.0.0" 10874 + 9944 10875 tar@^6.1.11, tar@^6.1.2: 9945 10876 version "6.1.11" 9946 10877 resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" ··· 9953 10884 mkdirp "^1.0.3" 9954 10885 yallist "^4.0.0" 9955 10886 10887 + temp-dir@^1.0.0: 10888 + version "1.0.0" 10889 + resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" 10890 + integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ== 10891 + 10892 + tempfile@^2.0.0: 10893 + version "2.0.0" 10894 + resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-2.0.0.tgz#6b0446856a9b1114d1856ffcbe509cccb0977265" 10895 + integrity sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA== 10896 + dependencies: 10897 + temp-dir "^1.0.0" 10898 + uuid "^3.0.1" 10899 + 9956 10900 tempusdominus-bootstrap-4@^5.1.2: 9957 10901 version "5.39.0" 9958 10902 resolved "https://registry.yarnpkg.com/tempusdominus-bootstrap-4/-/tempusdominus-bootstrap-4-5.39.0.tgz#f13dcfec6c41b37c5fe509f08bd513590c64411f" ··· 10015 10959 readable-stream "~2.3.6" 10016 10960 xtend "~4.0.1" 10017 10961 10018 - "through@>=2.2.7 <3": 10962 + "through@>=2.2.7 <3", through@^2.3.8: 10019 10963 version "2.3.8" 10020 10964 resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 10021 10965 integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== 10966 + 10967 + timed-out@^4.0.0, timed-out@^4.0.1: 10968 + version "4.0.1" 10969 + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 10970 + integrity sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA== 10022 10971 10023 10972 timers-browserify@^1.0.1: 10024 10973 version "1.4.2" ··· 10042 10991 resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" 10043 10992 integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== 10044 10993 10045 - tippy.js@^6.3.1: 10046 - version "6.3.5" 10047 - resolved "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.3.5.tgz#cbc99d34f87ccc127e6460032b86c8d47971d38f" 10048 - integrity sha512-B9hAQ5KNF+jDJRg6cRysV6Y3J+5fiNfD60GuXR5TP0sfrcltpgdzVc7f1wMtjQ3W0+Xsy80CDvk0Z+Vr0cM4sQ== 10049 - dependencies: 10050 - "@popperjs/core" "^2.9.0" 10051 - 10052 10994 tmp@^0.2.1: 10053 10995 version "0.2.1" 10054 10996 resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" 10055 10997 integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== 10056 10998 dependencies: 10057 10999 rimraf "^3.0.0" 11000 + 11001 + to-buffer@^1.1.1: 11002 + version "1.1.1" 11003 + resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" 11004 + integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== 10058 11005 10059 11006 to-fast-properties@^1.0.3: 10060 11007 version "1.0.3" ··· 10088 11035 resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-4.0.2.tgz#d6aaaf6a0df1b4b536d183879a6b939489808c7c" 10089 11036 integrity sha512-GJtWyq9InR/2HRiLZgpIKv+ufIKrVrvjQWEj7PxAXNc5dwbNJkqhAUoAGgzRmULAnoOM5EIpveYd3J2VeSAIew== 10090 11037 11038 + trim-repeated@^1.0.0: 11039 + version "1.0.0" 11040 + resolved "https://registry.yarnpkg.com/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21" 11041 + integrity sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg== 11042 + dependencies: 11043 + escape-string-regexp "^1.0.2" 11044 + 10091 11045 trim-right@^1.0.1: 10092 11046 version "1.0.1" 10093 11047 resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" ··· 10138 11092 resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" 10139 11093 integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== 10140 11094 11095 + tunnel-agent@^0.6.0: 11096 + version "0.6.0" 11097 + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 11098 + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== 11099 + dependencies: 11100 + safe-buffer "^5.0.1" 11101 + 10141 11102 type-check@^0.4.0, type-check@~0.4.0: 10142 11103 version "0.4.0" 10143 11104 resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 10144 11105 integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 10145 11106 dependencies: 10146 11107 prelude-ls "^1.2.1" 11108 + 11109 + type-fest@^0.11.0: 11110 + version "0.11.0" 11111 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 11112 + integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 10147 11113 10148 11114 type-fest@^0.20.2: 10149 11115 version "0.20.2" ··· 10198 11164 has-symbols "^1.0.2" 10199 11165 which-boxed-primitive "^1.0.2" 10200 11166 11167 + unbzip2-stream@^1.0.9: 11168 + version "1.4.3" 11169 + resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" 11170 + integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg== 11171 + dependencies: 11172 + buffer "^5.2.1" 11173 + through "^2.3.8" 11174 + 10201 11175 unc-path-regex@^0.1.2: 10202 11176 version "0.1.2" 10203 11177 resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" ··· 10214 11188 simple-concat "^1.0.0" 10215 11189 xtend "^4.0.1" 10216 11190 10217 - underscore@>=1.7.0, underscore@>=1.8.3, underscore@^1.13.1, underscore@^1.8.0, underscore@^1.8.3, underscore@^1.9.1: 11191 + underscore@>=1.8.3, underscore@^1.13.1, underscore@^1.9.1: 10218 11192 version "1.13.1" 10219 11193 resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.1.tgz#0c1c6bd2df54b6b69f2314066d65b6cde6fcf9d1" 10220 11194 integrity sha512-hzSoAVtJF+3ZtiFX0VgfFPHEDRm7Y/QPjGyNo4TVdnDTdft3tr8hEkD25a1jC+TjTuE7tkHGKkhwCgs9dgBB2g== ··· 10315 11289 mime "^2.0.3" 10316 11290 schema-utils "^1.0.0" 10317 11291 11292 + url-parse-lax@^1.0.0: 11293 + version "1.0.0" 11294 + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 11295 + integrity sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA== 11296 + dependencies: 11297 + prepend-http "^1.0.1" 11298 + 11299 + url-parse-lax@^3.0.0: 11300 + version "3.0.0" 11301 + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 11302 + integrity sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ== 11303 + dependencies: 11304 + prepend-http "^2.0.0" 11305 + 11306 + url-to-options@^1.0.1: 11307 + version "1.0.1" 11308 + resolved "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9" 11309 + integrity sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A== 11310 + 10318 11311 url@~0.11.0: 10319 11312 version "0.11.0" 10320 11313 resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" ··· 10359 11352 dependencies: 10360 11353 base64-arraybuffer "^1.0.1" 10361 11354 11355 + uuid@^3.0.1: 11356 + version "3.4.0" 11357 + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 11358 + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 11359 + 10362 11360 v8-compile-cache@^2.0.3: 10363 11361 version "2.3.0" 10364 11362 resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" ··· 10561 11559 has-tostringtag "^1.0.0" 10562 11560 is-typed-array "^1.1.7" 10563 11561 10564 - which@^1.2.1: 11562 + which@^1.2.1, which@^1.2.9: 10565 11563 version "1.3.1" 10566 11564 resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 10567 11565 integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== ··· 10663 11661 resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 10664 11662 integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 10665 11663 11664 + yallist@^2.1.2: 11665 + version "2.1.2" 11666 + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 11667 + integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== 11668 + 10666 11669 yallist@^4.0.0: 10667 11670 version "4.0.0" 10668 11671 resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" ··· 10699 11702 commander "^9.3.0" 10700 11703 ejs "~3.1.8" 10701 11704 marked "^4.0.17" 11705 + 11706 + yauzl@^2.4.2: 11707 + version "2.10.0" 11708 + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" 11709 + integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== 11710 + dependencies: 11711 + buffer-crc32 "~0.2.3" 11712 + fd-slicer "~1.1.0" 10702 11713 10703 11714 yeast@0.1.2: 10704 11715 version "0.1.2"
+1195 -115
pkgs/tools/admin/pgadmin/yarn.nix
··· 2098 2098 }; 2099 2099 } 2100 2100 { 2101 - name = "_popperjs_core___core_2.10.2.tgz"; 2102 - path = fetchurl { 2103 - name = "_popperjs_core___core_2.10.2.tgz"; 2104 - url = "https://registry.yarnpkg.com/@popperjs/core/-/core-2.10.2.tgz"; 2105 - sha512 = "IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ=="; 2106 - }; 2107 - } 2108 - { 2109 2101 name = "_projectstorm_geometry___geometry_6.6.1.tgz"; 2110 2102 path = fetchurl { 2111 2103 name = "_projectstorm_geometry___geometry_6.6.1.tgz"; ··· 2319 2311 name = "_szhsin_react_menu___react_menu_2.3.3.tgz"; 2320 2312 url = "https://registry.yarnpkg.com/@szhsin/react-menu/-/react-menu-2.3.3.tgz"; 2321 2313 sha512 = "CbZumbMZI+lWMLe6wp0nVepbEc1XQIyMZnLwQG3barQe5wLiDWUYnWbfys9759Ejt6f6d8e/B6k1ZdefkcRqUQ=="; 2322 - }; 2323 - } 2324 - { 2325 - name = "_tippyjs_react___react_4.2.6.tgz"; 2326 - path = fetchurl { 2327 - name = "_tippyjs_react___react_4.2.6.tgz"; 2328 - url = "https://registry.yarnpkg.com/@tippyjs/react/-/react-4.2.6.tgz"; 2329 - sha512 = "91RicDR+H7oDSyPycI13q3b7o4O60wa2oRbjlz2fyRLmHImc4vyDwuUP8NtZaN0VARJY5hybvDYrFzhY9+Lbyw=="; 2330 2314 }; 2331 2315 } 2332 2316 { ··· 2882 2866 }; 2883 2867 } 2884 2868 { 2885 - name = "AlertifyJS"; 2886 - path = 2887 - let 2888 - repo = fetchgit { 2889 - url = "https://github.com/EnterpriseDB/AlertifyJS/"; 2890 - rev = "72c1d794f5b6d4ec13a68d123c08f19021afe263"; 2891 - sha256 = "08sbzwdba8sq5cpafymz0jjxay0b0hwnjkr8dr3iymjdy071ah9y"; 2892 - }; 2893 - in 2894 - runCommand "AlertifyJS" { buildInputs = [gnutar]; } '' 2895 - # Set u+w because tar-fs can't unpack archives with read-only dirs 2896 - # https://github.com/mafintosh/tar-fs/issues/79 2897 - tar cf $out --mode u+w -C ${repo} . 2898 - ''; 2899 - } 2900 - { 2901 2869 name = "alphanum_sort___alphanum_sort_1.0.2.tgz"; 2902 2870 path = fetchurl { 2903 2871 name = "alphanum_sort___alphanum_sort_1.0.2.tgz"; ··· 2978 2946 }; 2979 2947 } 2980 2948 { 2949 + name = "arch___arch_2.2.0.tgz"; 2950 + path = fetchurl { 2951 + name = "arch___arch_2.2.0.tgz"; 2952 + url = "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz"; 2953 + sha512 = "Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ=="; 2954 + }; 2955 + } 2956 + { 2957 + name = "archive_type___archive_type_4.0.0.tgz"; 2958 + path = fetchurl { 2959 + name = "archive_type___archive_type_4.0.0.tgz"; 2960 + url = "https://registry.yarnpkg.com/archive-type/-/archive-type-4.0.0.tgz"; 2961 + sha512 = "zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA=="; 2962 + }; 2963 + } 2964 + { 2981 2965 name = "are_we_there_yet___are_we_there_yet_3.0.0.tgz"; 2982 2966 path = fetchurl { 2983 2967 name = "are_we_there_yet___are_we_there_yet_3.0.0.tgz"; ··· 3346 3330 }; 3347 3331 } 3348 3332 { 3349 - name = "backbone___backbone_1.3.3.tgz"; 3350 - path = fetchurl { 3351 - name = "backbone___backbone_1.3.3.tgz"; 3352 - url = "https://registry.yarnpkg.com/backbone/-/backbone-1.3.3.tgz"; 3353 - sha512 = "aK+k3TiU4tQDUrRCymDDE7XDFnMVuyE6zbZ4JX7mb4pJbQTVOH997/kyBzb8wB2s5Y/Oh7EUfj+sZhwRPxWwow=="; 3354 - }; 3355 - } 3356 - { 3357 3333 name = "backbone___backbone_1.4.0.tgz"; 3358 3334 path = fetchurl { 3359 3335 name = "backbone___backbone_1.4.0.tgz"; ··· 3362 3338 }; 3363 3339 } 3364 3340 { 3365 - name = "backbone___backbone_1.2.3.tgz"; 3366 - path = fetchurl { 3367 - name = "backbone___backbone_1.2.3.tgz"; 3368 - url = "https://registry.yarnpkg.com/backbone/-/backbone-1.2.3.tgz"; 3369 - sha512 = "1/eXj4agG79UDN7TWnZXcGD6BJrBwLZKCX7zYcBIy9jWf4mrtVkw7IE1VOYFnrKahsmPF9L55Tib9IQRvk027w=="; 3370 - }; 3371 - } 3372 - { 3373 - name = "backform___backform_0.2.0.tgz"; 3374 - path = fetchurl { 3375 - name = "backform___backform_0.2.0.tgz"; 3376 - url = "https://registry.yarnpkg.com/backform/-/backform-0.2.0.tgz"; 3377 - sha512 = "QYwlItiVqb4CDELHyBC+TM4UcoG6Mw/al+PUDUVbQ7OJojpQHaa2TV8uJHhMR6o/Xq4FGt+52qIZLp36dletfw=="; 3378 - }; 3379 - } 3380 - { 3381 - name = "backgrid_filter___backgrid_filter_0.3.7.tgz"; 3382 - path = fetchurl { 3383 - name = "backgrid_filter___backgrid_filter_0.3.7.tgz"; 3384 - url = "https://registry.yarnpkg.com/backgrid-filter/-/backgrid-filter-0.3.7.tgz"; 3385 - sha512 = "HKWOXXd/dES5Ll3R1+vsfPYO7yVQ0V4+h8cPirFqci4oKTyyZVJupXM2fINhqm0On9dvHijHje8h4X+Wg621gw=="; 3386 - }; 3387 - } 3388 - { 3389 - name = "backgrid_select_all___backgrid_select_all_0.3.5.tgz"; 3390 - path = fetchurl { 3391 - name = "backgrid_select_all___backgrid_select_all_0.3.5.tgz"; 3392 - url = "https://registry.yarnpkg.com/backgrid-select-all/-/backgrid-select-all-0.3.5.tgz"; 3393 - sha512 = "bwMQi5d8AnBSZDiV4nWrXcOSmEODbxB6/70mSHG8cGoDfjgW5X7mLiXlmlgEP3VsA1avFD6VvCvpAKZ4BS5f9Q=="; 3394 - }; 3395 - } 3396 - { 3397 - name = "backgrid___backgrid_0.3.8.tgz"; 3398 - path = fetchurl { 3399 - name = "backgrid___backgrid_0.3.8.tgz"; 3400 - url = "https://registry.yarnpkg.com/backgrid/-/backgrid-0.3.8.tgz"; 3401 - sha512 = "Klzo941ahoj8Kqd0tRsau+VfXddV3YnQTwb6wVwIaaQxoJ9ORykQy2MNit1MUBnZO6IValYJPvCQyvZhnV6Lfg=="; 3402 - }; 3403 - } 3404 - { 3405 3341 name = "backo2___backo2_1.0.2.tgz"; 3406 3342 path = fetchurl { 3407 3343 name = "backo2___backo2_1.0.2.tgz"; ··· 3474 3410 }; 3475 3411 } 3476 3412 { 3413 + name = "bin_build___bin_build_3.0.0.tgz"; 3414 + path = fetchurl { 3415 + name = "bin_build___bin_build_3.0.0.tgz"; 3416 + url = "https://registry.yarnpkg.com/bin-build/-/bin-build-3.0.0.tgz"; 3417 + sha512 = "jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA=="; 3418 + }; 3419 + } 3420 + { 3421 + name = "bin_check___bin_check_4.1.0.tgz"; 3422 + path = fetchurl { 3423 + name = "bin_check___bin_check_4.1.0.tgz"; 3424 + url = "https://registry.yarnpkg.com/bin-check/-/bin-check-4.1.0.tgz"; 3425 + sha512 = "b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA=="; 3426 + }; 3427 + } 3428 + { 3429 + name = "bin_version_check___bin_version_check_4.0.0.tgz"; 3430 + path = fetchurl { 3431 + name = "bin_version_check___bin_version_check_4.0.0.tgz"; 3432 + url = "https://registry.yarnpkg.com/bin-version-check/-/bin-version-check-4.0.0.tgz"; 3433 + sha512 = "sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ=="; 3434 + }; 3435 + } 3436 + { 3437 + name = "bin_version___bin_version_3.1.0.tgz"; 3438 + path = fetchurl { 3439 + name = "bin_version___bin_version_3.1.0.tgz"; 3440 + url = "https://registry.yarnpkg.com/bin-version/-/bin-version-3.1.0.tgz"; 3441 + sha512 = "Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ=="; 3442 + }; 3443 + } 3444 + { 3445 + name = "bin_wrapper___bin_wrapper_4.1.0.tgz"; 3446 + path = fetchurl { 3447 + name = "bin_wrapper___bin_wrapper_4.1.0.tgz"; 3448 + url = "https://registry.yarnpkg.com/bin-wrapper/-/bin-wrapper-4.1.0.tgz"; 3449 + sha512 = "hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q=="; 3450 + }; 3451 + } 3452 + { 3477 3453 name = "binary_extensions___binary_extensions_2.2.0.tgz"; 3478 3454 path = fetchurl { 3479 3455 name = "binary_extensions___binary_extensions_2.2.0.tgz"; ··· 3487 3463 name = "bindings___bindings_1.5.0.tgz"; 3488 3464 url = "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz"; 3489 3465 sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 3466 + }; 3467 + } 3468 + { 3469 + name = "bl___bl_1.2.3.tgz"; 3470 + path = fetchurl { 3471 + name = "bl___bl_1.2.3.tgz"; 3472 + url = "https://registry.yarnpkg.com/bl/-/bl-1.2.3.tgz"; 3473 + sha512 = "pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww=="; 3490 3474 }; 3491 3475 } 3492 3476 { ··· 3698 3682 }; 3699 3683 } 3700 3684 { 3685 + name = "buffer_alloc_unsafe___buffer_alloc_unsafe_1.1.0.tgz"; 3686 + path = fetchurl { 3687 + name = "buffer_alloc_unsafe___buffer_alloc_unsafe_1.1.0.tgz"; 3688 + url = "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"; 3689 + sha512 = "TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="; 3690 + }; 3691 + } 3692 + { 3693 + name = "buffer_alloc___buffer_alloc_1.2.0.tgz"; 3694 + path = fetchurl { 3695 + name = "buffer_alloc___buffer_alloc_1.2.0.tgz"; 3696 + url = "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz"; 3697 + sha512 = "CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow=="; 3698 + }; 3699 + } 3700 + { 3701 + name = "buffer_crc32___buffer_crc32_0.2.13.tgz"; 3702 + path = fetchurl { 3703 + name = "buffer_crc32___buffer_crc32_0.2.13.tgz"; 3704 + url = "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz"; 3705 + sha512 = "VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ=="; 3706 + }; 3707 + } 3708 + { 3709 + name = "buffer_fill___buffer_fill_1.0.0.tgz"; 3710 + path = fetchurl { 3711 + name = "buffer_fill___buffer_fill_1.0.0.tgz"; 3712 + url = "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz"; 3713 + sha512 = "T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ=="; 3714 + }; 3715 + } 3716 + { 3701 3717 name = "buffer_from___buffer_from_1.1.2.tgz"; 3702 3718 path = fetchurl { 3703 3719 name = "buffer_from___buffer_from_1.1.2.tgz"; ··· 3711 3727 name = "buffer_xor___buffer_xor_1.0.3.tgz"; 3712 3728 url = "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz"; 3713 3729 sha512 = "571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="; 3730 + }; 3731 + } 3732 + { 3733 + name = "buffer___buffer_5.7.1.tgz"; 3734 + path = fetchurl { 3735 + name = "buffer___buffer_5.7.1.tgz"; 3736 + url = "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz"; 3737 + sha512 = "EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="; 3714 3738 }; 3715 3739 } 3716 3740 { ··· 3762 3786 }; 3763 3787 } 3764 3788 { 3789 + name = "cacheable_request___cacheable_request_2.1.4.tgz"; 3790 + path = fetchurl { 3791 + name = "cacheable_request___cacheable_request_2.1.4.tgz"; 3792 + url = "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-2.1.4.tgz"; 3793 + sha512 = "vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ=="; 3794 + }; 3795 + } 3796 + { 3765 3797 name = "cached_path_relative___cached_path_relative_1.1.0.tgz"; 3766 3798 path = fetchurl { 3767 3799 name = "cached_path_relative___cached_path_relative_1.1.0.tgz"; ··· 3839 3871 name = "caniuse_lite___caniuse_lite_1.0.30001346.tgz"; 3840 3872 url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001346.tgz"; 3841 3873 sha512 = "q6ibZUO2t88QCIPayP/euuDREq+aMAxFE5S70PkrLh0iTDj/zEhgvJRKC2+CvXY6EWc6oQwUR48lL5vCW6jiXQ=="; 3874 + }; 3875 + } 3876 + { 3877 + name = "caw___caw_2.0.1.tgz"; 3878 + path = fetchurl { 3879 + name = "caw___caw_2.0.1.tgz"; 3880 + url = "https://registry.yarnpkg.com/caw/-/caw-2.0.1.tgz"; 3881 + sha512 = "Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA=="; 3842 3882 }; 3843 3883 } 3844 3884 { ··· 3978 4018 }; 3979 4019 } 3980 4020 { 4021 + name = "clone_response___clone_response_1.0.2.tgz"; 4022 + path = fetchurl { 4023 + name = "clone_response___clone_response_1.0.2.tgz"; 4024 + url = "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz"; 4025 + sha512 = "yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q=="; 4026 + }; 4027 + } 4028 + { 3981 4029 name = "closest___closest_0.0.1.tgz"; 3982 4030 path = fetchurl { 3983 4031 name = "closest___closest_0.0.1.tgz"; ··· 4127 4175 name = "concat_stream___concat_stream_1.6.2.tgz"; 4128 4176 url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz"; 4129 4177 sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; 4178 + }; 4179 + } 4180 + { 4181 + name = "config_chain___config_chain_1.1.13.tgz"; 4182 + path = fetchurl { 4183 + name = "config_chain___config_chain_1.1.13.tgz"; 4184 + url = "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz"; 4185 + sha512 = "qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ=="; 4130 4186 }; 4131 4187 } 4132 4188 { ··· 4162 4218 }; 4163 4219 } 4164 4220 { 4221 + name = "content_disposition___content_disposition_0.5.4.tgz"; 4222 + path = fetchurl { 4223 + name = "content_disposition___content_disposition_0.5.4.tgz"; 4224 + url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz"; 4225 + sha512 = "FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ=="; 4226 + }; 4227 + } 4228 + { 4165 4229 name = "content_type___content_type_1.0.4.tgz"; 4166 4230 path = fetchurl { 4167 4231 name = "content_type___content_type_1.0.4.tgz"; ··· 4314 4378 }; 4315 4379 } 4316 4380 { 4381 + name = "cross_spawn___cross_spawn_5.1.0.tgz"; 4382 + path = fetchurl { 4383 + name = "cross_spawn___cross_spawn_5.1.0.tgz"; 4384 + url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz"; 4385 + sha512 = "pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A=="; 4386 + }; 4387 + } 4388 + { 4389 + name = "cross_spawn___cross_spawn_6.0.5.tgz"; 4390 + path = fetchurl { 4391 + name = "cross_spawn___cross_spawn_6.0.5.tgz"; 4392 + url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; 4393 + sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="; 4394 + }; 4395 + } 4396 + { 4317 4397 name = "cross_spawn___cross_spawn_7.0.3.tgz"; 4318 4398 path = fetchurl { 4319 4399 name = "cross_spawn___cross_spawn_7.0.3.tgz"; ··· 4562 4642 }; 4563 4643 } 4564 4644 { 4645 + name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 4646 + path = fetchurl { 4647 + name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 4648 + url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; 4649 + sha512 = "hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og=="; 4650 + }; 4651 + } 4652 + { 4653 + name = "decompress_response___decompress_response_3.3.0.tgz"; 4654 + path = fetchurl { 4655 + name = "decompress_response___decompress_response_3.3.0.tgz"; 4656 + url = "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz"; 4657 + sha512 = "BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA=="; 4658 + }; 4659 + } 4660 + { 4661 + name = "decompress_tar___decompress_tar_4.1.1.tgz"; 4662 + path = fetchurl { 4663 + name = "decompress_tar___decompress_tar_4.1.1.tgz"; 4664 + url = "https://registry.yarnpkg.com/decompress-tar/-/decompress-tar-4.1.1.tgz"; 4665 + sha512 = "JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ=="; 4666 + }; 4667 + } 4668 + { 4669 + name = "decompress_tarbz2___decompress_tarbz2_4.1.1.tgz"; 4670 + path = fetchurl { 4671 + name = "decompress_tarbz2___decompress_tarbz2_4.1.1.tgz"; 4672 + url = "https://registry.yarnpkg.com/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz"; 4673 + sha512 = "s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A=="; 4674 + }; 4675 + } 4676 + { 4677 + name = "decompress_targz___decompress_targz_4.1.1.tgz"; 4678 + path = fetchurl { 4679 + name = "decompress_targz___decompress_targz_4.1.1.tgz"; 4680 + url = "https://registry.yarnpkg.com/decompress-targz/-/decompress-targz-4.1.1.tgz"; 4681 + sha512 = "4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w=="; 4682 + }; 4683 + } 4684 + { 4685 + name = "decompress_unzip___decompress_unzip_4.0.1.tgz"; 4686 + path = fetchurl { 4687 + name = "decompress_unzip___decompress_unzip_4.0.1.tgz"; 4688 + url = "https://registry.yarnpkg.com/decompress-unzip/-/decompress-unzip-4.0.1.tgz"; 4689 + sha512 = "1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw=="; 4690 + }; 4691 + } 4692 + { 4693 + name = "decompress___decompress_4.2.1.tgz"; 4694 + path = fetchurl { 4695 + name = "decompress___decompress_4.2.1.tgz"; 4696 + url = "https://registry.yarnpkg.com/decompress/-/decompress-4.2.1.tgz"; 4697 + sha512 = "e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ=="; 4698 + }; 4699 + } 4700 + { 4565 4701 name = "deep_diff___deep_diff_1.0.2.tgz"; 4566 4702 path = fetchurl { 4567 4703 name = "deep_diff___deep_diff_1.0.2.tgz"; ··· 4778 4914 }; 4779 4915 } 4780 4916 { 4917 + name = "download___download_6.2.5.tgz"; 4918 + path = fetchurl { 4919 + name = "download___download_6.2.5.tgz"; 4920 + url = "https://registry.yarnpkg.com/download/-/download-6.2.5.tgz"; 4921 + sha512 = "DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA=="; 4922 + }; 4923 + } 4924 + { 4925 + name = "download___download_7.1.0.tgz"; 4926 + path = fetchurl { 4927 + name = "download___download_7.1.0.tgz"; 4928 + url = "https://registry.yarnpkg.com/download/-/download-7.1.0.tgz"; 4929 + sha512 = "xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ=="; 4930 + }; 4931 + } 4932 + { 4781 4933 name = "duplexer2___duplexer2_0.1.4.tgz"; 4782 4934 path = fetchurl { 4783 4935 name = "duplexer2___duplexer2_0.1.4.tgz"; 4784 4936 url = "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz"; 4785 4937 sha512 = "asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA=="; 4938 + }; 4939 + } 4940 + { 4941 + name = "duplexer3___duplexer3_0.1.5.tgz"; 4942 + path = fetchurl { 4943 + name = "duplexer3___duplexer3_0.1.5.tgz"; 4944 + url = "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.5.tgz"; 4945 + sha512 = "1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA=="; 4786 4946 }; 4787 4947 } 4788 4948 { ··· 4871 5031 name = "encoding___encoding_0.1.13.tgz"; 4872 5032 url = "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz"; 4873 5033 sha512 = "ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A=="; 5034 + }; 5035 + } 5036 + { 5037 + name = "end_of_stream___end_of_stream_1.4.4.tgz"; 5038 + path = fetchurl { 5039 + name = "end_of_stream___end_of_stream_1.4.4.tgz"; 5040 + url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz"; 5041 + sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 4874 5042 }; 4875 5043 } 4876 5044 { ··· 5218 5386 }; 5219 5387 } 5220 5388 { 5389 + name = "exec_buffer___exec_buffer_3.2.0.tgz"; 5390 + path = fetchurl { 5391 + name = "exec_buffer___exec_buffer_3.2.0.tgz"; 5392 + url = "https://registry.yarnpkg.com/exec-buffer/-/exec-buffer-3.2.0.tgz"; 5393 + sha512 = "wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA=="; 5394 + }; 5395 + } 5396 + { 5397 + name = "execa___execa_0.7.0.tgz"; 5398 + path = fetchurl { 5399 + name = "execa___execa_0.7.0.tgz"; 5400 + url = "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz"; 5401 + sha512 = "RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw=="; 5402 + }; 5403 + } 5404 + { 5405 + name = "execa___execa_1.0.0.tgz"; 5406 + path = fetchurl { 5407 + name = "execa___execa_1.0.0.tgz"; 5408 + url = "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz"; 5409 + sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 5410 + }; 5411 + } 5412 + { 5413 + name = "execa___execa_4.1.0.tgz"; 5414 + path = fetchurl { 5415 + name = "execa___execa_4.1.0.tgz"; 5416 + url = "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz"; 5417 + sha512 = "j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA=="; 5418 + }; 5419 + } 5420 + { 5221 5421 name = "execa___execa_5.1.1.tgz"; 5222 5422 path = fetchurl { 5223 5423 name = "execa___execa_5.1.1.tgz"; ··· 5226 5426 }; 5227 5427 } 5228 5428 { 5429 + name = "execa___execa_6.1.0.tgz"; 5430 + path = fetchurl { 5431 + name = "execa___execa_6.1.0.tgz"; 5432 + url = "https://registry.yarnpkg.com/execa/-/execa-6.1.0.tgz"; 5433 + sha512 = "QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA=="; 5434 + }; 5435 + } 5436 + { 5437 + name = "executable___executable_4.1.1.tgz"; 5438 + path = fetchurl { 5439 + name = "executable___executable_4.1.1.tgz"; 5440 + url = "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz"; 5441 + sha512 = "8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg=="; 5442 + }; 5443 + } 5444 + { 5229 5445 name = "exports_loader___exports_loader_2.0.0.tgz"; 5230 5446 path = fetchurl { 5231 5447 name = "exports_loader___exports_loader_2.0.0.tgz"; 5232 5448 url = "https://registry.yarnpkg.com/exports-loader/-/exports-loader-2.0.0.tgz"; 5233 5449 sha512 = "k/VFrVEUmotfkk8vZ+njG5NEXpr5Ee+BonV+AYINV2hNo3o+/UB8nEuCUQk2k6IyWIoobmXoTFO0igxrQcMV4Q=="; 5450 + }; 5451 + } 5452 + { 5453 + name = "ext_list___ext_list_2.2.2.tgz"; 5454 + path = fetchurl { 5455 + name = "ext_list___ext_list_2.2.2.tgz"; 5456 + url = "https://registry.yarnpkg.com/ext-list/-/ext-list-2.2.2.tgz"; 5457 + sha512 = "u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA=="; 5458 + }; 5459 + } 5460 + { 5461 + name = "ext_name___ext_name_5.0.0.tgz"; 5462 + path = fetchurl { 5463 + name = "ext_name___ext_name_5.0.0.tgz"; 5464 + url = "https://registry.yarnpkg.com/ext-name/-/ext-name-5.0.0.tgz"; 5465 + sha512 = "yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ=="; 5234 5466 }; 5235 5467 } 5236 5468 { ··· 5322 5554 }; 5323 5555 } 5324 5556 { 5557 + name = "fd_slicer___fd_slicer_1.1.0.tgz"; 5558 + path = fetchurl { 5559 + name = "fd_slicer___fd_slicer_1.1.0.tgz"; 5560 + url = "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz"; 5561 + sha512 = "cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g=="; 5562 + }; 5563 + } 5564 + { 5325 5565 name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; 5326 5566 path = fetchurl { 5327 5567 name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; ··· 5338 5578 }; 5339 5579 } 5340 5580 { 5581 + name = "file_type___file_type_5.2.0.tgz"; 5582 + path = fetchurl { 5583 + name = "file_type___file_type_5.2.0.tgz"; 5584 + url = "https://registry.yarnpkg.com/file-type/-/file-type-5.2.0.tgz"; 5585 + sha512 = "Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ=="; 5586 + }; 5587 + } 5588 + { 5341 5589 name = "file_type___file_type_12.4.2.tgz"; 5342 5590 path = fetchurl { 5343 5591 name = "file_type___file_type_12.4.2.tgz"; ··· 5346 5594 }; 5347 5595 } 5348 5596 { 5597 + name = "file_type___file_type_3.9.0.tgz"; 5598 + path = fetchurl { 5599 + name = "file_type___file_type_3.9.0.tgz"; 5600 + url = "https://registry.yarnpkg.com/file-type/-/file-type-3.9.0.tgz"; 5601 + sha512 = "RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA=="; 5602 + }; 5603 + } 5604 + { 5605 + name = "file_type___file_type_4.4.0.tgz"; 5606 + path = fetchurl { 5607 + name = "file_type___file_type_4.4.0.tgz"; 5608 + url = "https://registry.yarnpkg.com/file-type/-/file-type-4.4.0.tgz"; 5609 + sha512 = "f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ=="; 5610 + }; 5611 + } 5612 + { 5613 + name = "file_type___file_type_6.2.0.tgz"; 5614 + path = fetchurl { 5615 + name = "file_type___file_type_6.2.0.tgz"; 5616 + url = "https://registry.yarnpkg.com/file-type/-/file-type-6.2.0.tgz"; 5617 + sha512 = "YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg=="; 5618 + }; 5619 + } 5620 + { 5621 + name = "file_type___file_type_8.1.0.tgz"; 5622 + path = fetchurl { 5623 + name = "file_type___file_type_8.1.0.tgz"; 5624 + url = "https://registry.yarnpkg.com/file-type/-/file-type-8.1.0.tgz"; 5625 + sha512 = "qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ=="; 5626 + }; 5627 + } 5628 + { 5349 5629 name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz"; 5350 5630 path = fetchurl { 5351 5631 name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz"; ··· 5367 5647 name = "filename_reserved_regex___filename_reserved_regex_2.0.0.tgz"; 5368 5648 url = "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz"; 5369 5649 sha512 = "lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ=="; 5650 + }; 5651 + } 5652 + { 5653 + name = "filenamify___filenamify_2.1.0.tgz"; 5654 + path = fetchurl { 5655 + name = "filenamify___filenamify_2.1.0.tgz"; 5656 + url = "https://registry.yarnpkg.com/filenamify/-/filenamify-2.1.0.tgz"; 5657 + sha512 = "ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA=="; 5370 5658 }; 5371 5659 } 5372 5660 { ··· 5418 5706 }; 5419 5707 } 5420 5708 { 5709 + name = "find_versions___find_versions_3.2.0.tgz"; 5710 + path = fetchurl { 5711 + name = "find_versions___find_versions_3.2.0.tgz"; 5712 + url = "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz"; 5713 + sha512 = "P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww=="; 5714 + }; 5715 + } 5716 + { 5421 5717 name = "flat_cache___flat_cache_3.0.4.tgz"; 5422 5718 path = fetchurl { 5423 5719 name = "flat_cache___flat_cache_3.0.4.tgz"; ··· 5463 5759 name = "fraction.js___fraction.js_4.1.1.tgz"; 5464 5760 url = "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.1.1.tgz"; 5465 5761 sha512 = "MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg=="; 5762 + }; 5763 + } 5764 + { 5765 + name = "from2___from2_2.3.0.tgz"; 5766 + path = fetchurl { 5767 + name = "from2___from2_2.3.0.tgz"; 5768 + url = "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz"; 5769 + sha512 = "OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g=="; 5770 + }; 5771 + } 5772 + { 5773 + name = "fs_constants___fs_constants_1.0.0.tgz"; 5774 + path = fetchurl { 5775 + name = "fs_constants___fs_constants_1.0.0.tgz"; 5776 + url = "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz"; 5777 + sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="; 5466 5778 }; 5467 5779 } 5468 5780 { ··· 5578 5890 }; 5579 5891 } 5580 5892 { 5893 + name = "get_proxy___get_proxy_2.1.0.tgz"; 5894 + path = fetchurl { 5895 + name = "get_proxy___get_proxy_2.1.0.tgz"; 5896 + url = "https://registry.yarnpkg.com/get-proxy/-/get-proxy-2.1.0.tgz"; 5897 + sha512 = "zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw=="; 5898 + }; 5899 + } 5900 + { 5901 + name = "get_stream___get_stream_3.0.0.tgz"; 5902 + path = fetchurl { 5903 + name = "get_stream___get_stream_3.0.0.tgz"; 5904 + url = "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz"; 5905 + sha512 = "GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ=="; 5906 + }; 5907 + } 5908 + { 5909 + name = "get_stream___get_stream_2.3.1.tgz"; 5910 + path = fetchurl { 5911 + name = "get_stream___get_stream_2.3.1.tgz"; 5912 + url = "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz"; 5913 + sha512 = "AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA=="; 5914 + }; 5915 + } 5916 + { 5917 + name = "get_stream___get_stream_4.1.0.tgz"; 5918 + path = fetchurl { 5919 + name = "get_stream___get_stream_4.1.0.tgz"; 5920 + url = "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz"; 5921 + sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w=="; 5922 + }; 5923 + } 5924 + { 5925 + name = "get_stream___get_stream_5.2.0.tgz"; 5926 + path = fetchurl { 5927 + name = "get_stream___get_stream_5.2.0.tgz"; 5928 + url = "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz"; 5929 + sha512 = "nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="; 5930 + }; 5931 + } 5932 + { 5581 5933 name = "get_stream___get_stream_6.0.1.tgz"; 5582 5934 path = fetchurl { 5583 5935 name = "get_stream___get_stream_6.0.1.tgz"; ··· 5674 6026 }; 5675 6027 } 5676 6028 { 6029 + name = "got___got_7.1.0.tgz"; 6030 + path = fetchurl { 6031 + name = "got___got_7.1.0.tgz"; 6032 + url = "https://registry.yarnpkg.com/got/-/got-7.1.0.tgz"; 6033 + sha512 = "Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw=="; 6034 + }; 6035 + } 6036 + { 6037 + name = "got___got_8.3.2.tgz"; 6038 + path = fetchurl { 6039 + name = "got___got_8.3.2.tgz"; 6040 + url = "https://registry.yarnpkg.com/got/-/got-8.3.2.tgz"; 6041 + sha512 = "qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw=="; 6042 + }; 6043 + } 6044 + { 6045 + name = "graceful_fs___graceful_fs_4.2.10.tgz"; 6046 + path = fetchurl { 6047 + name = "graceful_fs___graceful_fs_4.2.10.tgz"; 6048 + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz"; 6049 + sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; 6050 + }; 6051 + } 6052 + { 5677 6053 name = "graceful_fs___graceful_fs_4.2.8.tgz"; 5678 6054 path = fetchurl { 5679 6055 name = "graceful_fs___graceful_fs_4.2.8.tgz"; ··· 5762 6138 }; 5763 6139 } 5764 6140 { 6141 + name = "has_symbol_support_x___has_symbol_support_x_1.4.2.tgz"; 6142 + path = fetchurl { 6143 + name = "has_symbol_support_x___has_symbol_support_x_1.4.2.tgz"; 6144 + url = "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz"; 6145 + sha512 = "3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw=="; 6146 + }; 6147 + } 6148 + { 5765 6149 name = "has_symbols___has_symbols_1.0.2.tgz"; 5766 6150 path = fetchurl { 5767 6151 name = "has_symbols___has_symbols_1.0.2.tgz"; 5768 6152 url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz"; 5769 6153 sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; 6154 + }; 6155 + } 6156 + { 6157 + name = "has_to_string_tag_x___has_to_string_tag_x_1.4.1.tgz"; 6158 + path = fetchurl { 6159 + name = "has_to_string_tag_x___has_to_string_tag_x_1.4.1.tgz"; 6160 + url = "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz"; 6161 + sha512 = "vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw=="; 5770 6162 }; 5771 6163 } 5772 6164 { ··· 5914 6306 }; 5915 6307 } 5916 6308 { 6309 + name = "http_cache_semantics___http_cache_semantics_3.8.1.tgz"; 6310 + path = fetchurl { 6311 + name = "http_cache_semantics___http_cache_semantics_3.8.1.tgz"; 6312 + url = "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz"; 6313 + sha512 = "5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w=="; 6314 + }; 6315 + } 6316 + { 5917 6317 name = "http_cache_semantics___http_cache_semantics_4.1.0.tgz"; 5918 6318 path = fetchurl { 5919 6319 name = "http_cache_semantics___http_cache_semantics_4.1.0.tgz"; ··· 5962 6362 }; 5963 6363 } 5964 6364 { 6365 + name = "human_signals___human_signals_1.1.1.tgz"; 6366 + path = fetchurl { 6367 + name = "human_signals___human_signals_1.1.1.tgz"; 6368 + url = "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz"; 6369 + sha512 = "SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="; 6370 + }; 6371 + } 6372 + { 5965 6373 name = "human_signals___human_signals_2.1.0.tgz"; 5966 6374 path = fetchurl { 5967 6375 name = "human_signals___human_signals_2.1.0.tgz"; ··· 5970 6378 }; 5971 6379 } 5972 6380 { 6381 + name = "human_signals___human_signals_3.0.1.tgz"; 6382 + path = fetchurl { 6383 + name = "human_signals___human_signals_3.0.1.tgz"; 6384 + url = "https://registry.yarnpkg.com/human-signals/-/human-signals-3.0.1.tgz"; 6385 + sha512 = "rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ=="; 6386 + }; 6387 + } 6388 + { 5973 6389 name = "humanize_ms___humanize_ms_1.2.1.tgz"; 5974 6390 path = fetchurl { 5975 6391 name = "humanize_ms___humanize_ms_1.2.1.tgz"; ··· 6050 6466 }; 6051 6467 } 6052 6468 { 6469 + name = "imagemin_mozjpeg___imagemin_mozjpeg_10.0.0.tgz"; 6470 + path = fetchurl { 6471 + name = "imagemin_mozjpeg___imagemin_mozjpeg_10.0.0.tgz"; 6472 + url = "https://registry.yarnpkg.com/imagemin-mozjpeg/-/imagemin-mozjpeg-10.0.0.tgz"; 6473 + sha512 = "DK85QNOjS3/GzWYfNB3CACMZD10sIQgFDv1+WTOnZljgltQTEyATjdyUVyjKu5q4sCESQdwvwq7WEZzJ5fFjlg=="; 6474 + }; 6475 + } 6476 + { 6477 + name = "imagemin_optipng___imagemin_optipng_8.0.0.tgz"; 6478 + path = fetchurl { 6479 + name = "imagemin_optipng___imagemin_optipng_8.0.0.tgz"; 6480 + url = "https://registry.yarnpkg.com/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz"; 6481 + sha512 = "CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A=="; 6482 + }; 6483 + } 6484 + { 6485 + name = "imagemin_pngquant___imagemin_pngquant_9.0.2.tgz"; 6486 + path = fetchurl { 6487 + name = "imagemin_pngquant___imagemin_pngquant_9.0.2.tgz"; 6488 + url = "https://registry.yarnpkg.com/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz"; 6489 + sha512 = "cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg=="; 6490 + }; 6491 + } 6492 + { 6053 6493 name = "imagemin___imagemin_7.0.1.tgz"; 6054 6494 path = fetchurl { 6055 6495 name = "imagemin___imagemin_7.0.1.tgz"; ··· 6071 6511 name = "import_fresh___import_fresh_3.3.0.tgz"; 6072 6512 url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz"; 6073 6513 sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 6514 + }; 6515 + } 6516 + { 6517 + name = "import_lazy___import_lazy_3.1.0.tgz"; 6518 + path = fetchurl { 6519 + name = "import_lazy___import_lazy_3.1.0.tgz"; 6520 + url = "https://registry.yarnpkg.com/import-lazy/-/import-lazy-3.1.0.tgz"; 6521 + sha512 = "8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ=="; 6074 6522 }; 6075 6523 } 6076 6524 { ··· 6154 6602 }; 6155 6603 } 6156 6604 { 6605 + name = "ini___ini_1.3.8.tgz"; 6606 + path = fetchurl { 6607 + name = "ini___ini_1.3.8.tgz"; 6608 + url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz"; 6609 + sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 6610 + }; 6611 + } 6612 + { 6157 6613 name = "inline_source_map___inline_source_map_0.6.2.tgz"; 6158 6614 path = fetchurl { 6159 6615 name = "inline_source_map___inline_source_map_0.6.2.tgz"; ··· 6199 6655 name = "interpret___interpret_2.2.0.tgz"; 6200 6656 url = "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz"; 6201 6657 sha512 = "Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw=="; 6658 + }; 6659 + } 6660 + { 6661 + name = "into_stream___into_stream_3.1.0.tgz"; 6662 + path = fetchurl { 6663 + name = "into_stream___into_stream_3.1.0.tgz"; 6664 + url = "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz"; 6665 + sha512 = "TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ=="; 6202 6666 }; 6203 6667 } 6204 6668 { ··· 6394 6858 }; 6395 6859 } 6396 6860 { 6861 + name = "is_jpg___is_jpg_3.0.0.tgz"; 6862 + path = fetchurl { 6863 + name = "is_jpg___is_jpg_3.0.0.tgz"; 6864 + url = "https://registry.yarnpkg.com/is-jpg/-/is-jpg-3.0.0.tgz"; 6865 + sha512 = "Vcd67KWHZblEKEBrtP25qLZ8wN9ICoAhl1pKUqD7SM7hf2qtuRl7loDgP5Zigh2oN/+7uj+KVyC0eRJvgOEFeQ=="; 6866 + }; 6867 + } 6868 + { 6397 6869 name = "is_lambda___is_lambda_1.0.1.tgz"; 6398 6870 path = fetchurl { 6399 6871 name = "is_lambda___is_lambda_1.0.1.tgz"; 6400 6872 url = "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz"; 6401 6873 sha512 = "z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ=="; 6874 + }; 6875 + } 6876 + { 6877 + name = "is_natural_number___is_natural_number_4.0.1.tgz"; 6878 + path = fetchurl { 6879 + name = "is_natural_number___is_natural_number_4.0.1.tgz"; 6880 + url = "https://registry.yarnpkg.com/is-natural-number/-/is-natural-number-4.0.1.tgz"; 6881 + sha512 = "Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ=="; 6402 6882 }; 6403 6883 } 6404 6884 { ··· 6426 6906 }; 6427 6907 } 6428 6908 { 6909 + name = "is_object___is_object_1.0.2.tgz"; 6910 + path = fetchurl { 6911 + name = "is_object___is_object_1.0.2.tgz"; 6912 + url = "https://registry.yarnpkg.com/is-object/-/is-object-1.0.2.tgz"; 6913 + sha512 = "2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA=="; 6914 + }; 6915 + } 6916 + { 6429 6917 name = "is_plain_obj___is_plain_obj_1.1.0.tgz"; 6430 6918 path = fetchurl { 6431 6919 name = "is_plain_obj___is_plain_obj_1.1.0.tgz"; ··· 6442 6930 }; 6443 6931 } 6444 6932 { 6933 + name = "is_png___is_png_2.0.0.tgz"; 6934 + path = fetchurl { 6935 + name = "is_png___is_png_2.0.0.tgz"; 6936 + url = "https://registry.yarnpkg.com/is-png/-/is-png-2.0.0.tgz"; 6937 + sha512 = "4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g=="; 6938 + }; 6939 + } 6940 + { 6445 6941 name = "is_regex___is_regex_1.1.4.tgz"; 6446 6942 path = fetchurl { 6447 6943 name = "is_regex___is_regex_1.1.4.tgz"; ··· 6466 6962 }; 6467 6963 } 6468 6964 { 6965 + name = "is_retry_allowed___is_retry_allowed_1.2.0.tgz"; 6966 + path = fetchurl { 6967 + name = "is_retry_allowed___is_retry_allowed_1.2.0.tgz"; 6968 + url = "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz"; 6969 + sha512 = "RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg=="; 6970 + }; 6971 + } 6972 + { 6469 6973 name = "is_shared_array_buffer___is_shared_array_buffer_1.0.1.tgz"; 6470 6974 path = fetchurl { 6471 6975 name = "is_shared_array_buffer___is_shared_array_buffer_1.0.1.tgz"; ··· 6474 6978 }; 6475 6979 } 6476 6980 { 6981 + name = "is_stream___is_stream_1.1.0.tgz"; 6982 + path = fetchurl { 6983 + name = "is_stream___is_stream_1.1.0.tgz"; 6984 + url = "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz"; 6985 + sha512 = "uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ=="; 6986 + }; 6987 + } 6988 + { 6477 6989 name = "is_stream___is_stream_2.0.1.tgz"; 6478 6990 path = fetchurl { 6479 6991 name = "is_stream___is_stream_2.0.1.tgz"; ··· 6482 6994 }; 6483 6995 } 6484 6996 { 6997 + name = "is_stream___is_stream_3.0.0.tgz"; 6998 + path = fetchurl { 6999 + name = "is_stream___is_stream_3.0.0.tgz"; 7000 + url = "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz"; 7001 + sha512 = "LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA=="; 7002 + }; 7003 + } 7004 + { 6485 7005 name = "is_string___is_string_1.0.7.tgz"; 6486 7006 path = fetchurl { 6487 7007 name = "is_string___is_string_1.0.7.tgz"; ··· 6634 7154 }; 6635 7155 } 6636 7156 { 7157 + name = "isurl___isurl_1.0.0.tgz"; 7158 + path = fetchurl { 7159 + name = "isurl___isurl_1.0.0.tgz"; 7160 + url = "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz"; 7161 + sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; 7162 + }; 7163 + } 7164 + { 6637 7165 name = "jake___jake_10.8.5.tgz"; 6638 7166 path = fetchurl { 6639 7167 name = "jake___jake_10.8.5.tgz"; ··· 6775 7303 name = "json_bignumber___json_bignumber_1.0.2.tgz"; 6776 7304 url = "https://registry.yarnpkg.com/json-bignumber/-/json-bignumber-1.0.2.tgz"; 6777 7305 sha512 = "CfvvCybXLMo3+ZW4gkSOM1OF+f6rWTeZ5AZvYHcmcEPzK0z4EDR9XrdQoARGoozw3+qdS4DLe+Q/et4NstxrNA=="; 7306 + }; 7307 + } 7308 + { 7309 + name = "json_buffer___json_buffer_3.0.0.tgz"; 7310 + path = fetchurl { 7311 + name = "json_buffer___json_buffer_3.0.0.tgz"; 7312 + url = "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz"; 7313 + sha512 = "CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ=="; 6778 7314 }; 6779 7315 } 6780 7316 { ··· 7066 7602 }; 7067 7603 } 7068 7604 { 7605 + name = "keyv___keyv_3.0.0.tgz"; 7606 + path = fetchurl { 7607 + name = "keyv___keyv_3.0.0.tgz"; 7608 + url = "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz"; 7609 + sha512 = "eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA=="; 7610 + }; 7611 + } 7612 + { 7069 7613 name = "kind_of___kind_of_6.0.3.tgz"; 7070 7614 path = fetchurl { 7071 7615 name = "kind_of___kind_of_6.0.3.tgz"; ··· 7474 8018 }; 7475 8019 } 7476 8020 { 8021 + name = "lowercase_keys___lowercase_keys_1.0.0.tgz"; 8022 + path = fetchurl { 8023 + name = "lowercase_keys___lowercase_keys_1.0.0.tgz"; 8024 + url = "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz"; 8025 + sha512 = "RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A=="; 8026 + }; 8027 + } 8028 + { 8029 + name = "lowercase_keys___lowercase_keys_1.0.1.tgz"; 8030 + path = fetchurl { 8031 + name = "lowercase_keys___lowercase_keys_1.0.1.tgz"; 8032 + url = "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz"; 8033 + sha512 = "G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA=="; 8034 + }; 8035 + } 8036 + { 8037 + name = "lru_cache___lru_cache_4.1.5.tgz"; 8038 + path = fetchurl { 8039 + name = "lru_cache___lru_cache_4.1.5.tgz"; 8040 + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz"; 8041 + sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="; 8042 + }; 8043 + } 8044 + { 7477 8045 name = "lru_cache___lru_cache_6.0.0.tgz"; 7478 8046 path = fetchurl { 7479 8047 name = "lru_cache___lru_cache_6.0.0.tgz"; ··· 7490 8058 }; 7491 8059 } 7492 8060 { 7493 - name = "lunr___lunr_0.7.2.tgz"; 8061 + name = "make_dir___make_dir_1.3.0.tgz"; 7494 8062 path = fetchurl { 7495 - name = "lunr___lunr_0.7.2.tgz"; 7496 - url = "https://registry.yarnpkg.com/lunr/-/lunr-0.7.2.tgz"; 7497 - sha512 = "qXxxSzrWOhFu4EhyvYqCGMv1nJsTy5OGQN3GtClGbRSaqJ/1XASk41nF2jjxzKTS8kjU0QybhOgGgGo6HUZqSQ=="; 8063 + name = "make_dir___make_dir_1.3.0.tgz"; 8064 + url = "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz"; 8065 + sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ=="; 7498 8066 }; 7499 8067 } 7500 8068 { ··· 7634 8202 }; 7635 8203 } 7636 8204 { 8205 + name = "mime_db___mime_db_1.52.0.tgz"; 8206 + path = fetchurl { 8207 + name = "mime_db___mime_db_1.52.0.tgz"; 8208 + url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz"; 8209 + sha512 = "sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="; 8210 + }; 8211 + } 8212 + { 7637 8213 name = "mime_types___mime_types_2.1.33.tgz"; 7638 8214 path = fetchurl { 7639 8215 name = "mime_types___mime_types_2.1.33.tgz"; ··· 7663 8239 name = "mimic_fn___mimic_fn_2.1.0.tgz"; 7664 8240 url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz"; 7665 8241 sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; 8242 + }; 8243 + } 8244 + { 8245 + name = "mimic_fn___mimic_fn_4.0.0.tgz"; 8246 + path = fetchurl { 8247 + name = "mimic_fn___mimic_fn_4.0.0.tgz"; 8248 + url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz"; 8249 + sha512 = "vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw=="; 8250 + }; 8251 + } 8252 + { 8253 + name = "mimic_response___mimic_response_1.0.1.tgz"; 8254 + path = fetchurl { 8255 + name = "mimic_response___mimic_response_1.0.1.tgz"; 8256 + url = "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz"; 8257 + sha512 = "j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ=="; 7666 8258 }; 7667 8259 } 7668 8260 { ··· 7858 8450 }; 7859 8451 } 7860 8452 { 7861 - name = "moment_timezone___moment_timezone_0.5.34.tgz"; 8453 + name = "moment_timezone___moment_timezone_0.5.37.tgz"; 7862 8454 path = fetchurl { 7863 - name = "moment_timezone___moment_timezone_0.5.34.tgz"; 7864 - url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.34.tgz"; 7865 - sha512 = "3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg=="; 8455 + name = "moment_timezone___moment_timezone_0.5.37.tgz"; 8456 + url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.37.tgz"; 8457 + sha256 = "1w1sq8m21v1widzhy1dfrf2ngv9a5yhq06igjsjlpl23vxmfmfir"; 7866 8458 }; 7867 8459 } 7868 8460 { ··· 7887 8479 name = "mousetrap___mousetrap_1.6.5.tgz"; 7888 8480 url = "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.5.tgz"; 7889 8481 sha512 = "QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA=="; 8482 + }; 8483 + } 8484 + { 8485 + name = "mozjpeg___mozjpeg_8.0.0.tgz"; 8486 + path = fetchurl { 8487 + name = "mozjpeg___mozjpeg_8.0.0.tgz"; 8488 + url = "https://registry.yarnpkg.com/mozjpeg/-/mozjpeg-8.0.0.tgz"; 8489 + sha512 = "Ca2Yhah9hG0Iutgsn8MOrAl37P9ThnKsJatjXoWdUO+8X8GeG/6ahvHZrTyqvbs6leMww1SauWUCao/L9qBuFQ=="; 7890 8490 }; 7891 8491 } 7892 8492 { ··· 7986 8586 }; 7987 8587 } 7988 8588 { 8589 + name = "nice_try___nice_try_1.0.5.tgz"; 8590 + path = fetchurl { 8591 + name = "nice_try___nice_try_1.0.5.tgz"; 8592 + url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz"; 8593 + sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; 8594 + }; 8595 + } 8596 + { 7989 8597 name = "node_gyp___node_gyp_9.1.0.tgz"; 7990 8598 path = fetchurl { 7991 8599 name = "node_gyp___node_gyp_9.1.0.tgz"; ··· 8042 8650 }; 8043 8651 } 8044 8652 { 8653 + name = "normalize_url___normalize_url_2.0.1.tgz"; 8654 + path = fetchurl { 8655 + name = "normalize_url___normalize_url_2.0.1.tgz"; 8656 + url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz"; 8657 + sha512 = "D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw=="; 8658 + }; 8659 + } 8660 + { 8045 8661 name = "normalize_url___normalize_url_6.1.0.tgz"; 8046 8662 path = fetchurl { 8047 8663 name = "normalize_url___normalize_url_6.1.0.tgz"; ··· 8066 8682 }; 8067 8683 } 8068 8684 { 8685 + name = "npm_conf___npm_conf_1.1.3.tgz"; 8686 + path = fetchurl { 8687 + name = "npm_conf___npm_conf_1.1.3.tgz"; 8688 + url = "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz"; 8689 + sha512 = "Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw=="; 8690 + }; 8691 + } 8692 + { 8693 + name = "npm_run_path___npm_run_path_2.0.2.tgz"; 8694 + path = fetchurl { 8695 + name = "npm_run_path___npm_run_path_2.0.2.tgz"; 8696 + url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz"; 8697 + sha512 = "lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw=="; 8698 + }; 8699 + } 8700 + { 8069 8701 name = "npm_run_path___npm_run_path_4.0.1.tgz"; 8070 8702 path = fetchurl { 8071 8703 name = "npm_run_path___npm_run_path_4.0.1.tgz"; 8072 8704 url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz"; 8073 8705 sha512 = "S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="; 8706 + }; 8707 + } 8708 + { 8709 + name = "npm_run_path___npm_run_path_5.1.0.tgz"; 8710 + path = fetchurl { 8711 + name = "npm_run_path___npm_run_path_5.1.0.tgz"; 8712 + url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz"; 8713 + sha512 = "sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q=="; 8074 8714 }; 8075 8715 } 8076 8716 { ··· 8186 8826 }; 8187 8827 } 8188 8828 { 8829 + name = "onetime___onetime_6.0.0.tgz"; 8830 + path = fetchurl { 8831 + name = "onetime___onetime_6.0.0.tgz"; 8832 + url = "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz"; 8833 + sha512 = "1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ=="; 8834 + }; 8835 + } 8836 + { 8189 8837 name = "opener___opener_1.5.2.tgz"; 8190 8838 path = fetchurl { 8191 8839 name = "opener___opener_1.5.2.tgz"; ··· 8202 8850 }; 8203 8851 } 8204 8852 { 8853 + name = "optipng_bin___optipng_bin_7.0.1.tgz"; 8854 + path = fetchurl { 8855 + name = "optipng_bin___optipng_bin_7.0.1.tgz"; 8856 + url = "https://registry.yarnpkg.com/optipng-bin/-/optipng-bin-7.0.1.tgz"; 8857 + sha512 = "W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA=="; 8858 + }; 8859 + } 8860 + { 8205 8861 name = "os_browserify___os_browserify_0.3.0.tgz"; 8206 8862 path = fetchurl { 8207 8863 name = "os_browserify___os_browserify_0.3.0.tgz"; 8208 8864 url = "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz"; 8209 8865 sha512 = "gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A=="; 8866 + }; 8867 + } 8868 + { 8869 + name = "os_filter_obj___os_filter_obj_2.0.0.tgz"; 8870 + path = fetchurl { 8871 + name = "os_filter_obj___os_filter_obj_2.0.0.tgz"; 8872 + url = "https://registry.yarnpkg.com/os-filter-obj/-/os-filter-obj-2.0.0.tgz"; 8873 + sha512 = "uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg=="; 8210 8874 }; 8211 8875 } 8212 8876 { ··· 8218 8882 }; 8219 8883 } 8220 8884 { 8885 + name = "ow___ow_0.17.0.tgz"; 8886 + path = fetchurl { 8887 + name = "ow___ow_0.17.0.tgz"; 8888 + url = "https://registry.yarnpkg.com/ow/-/ow-0.17.0.tgz"; 8889 + sha512 = "i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA=="; 8890 + }; 8891 + } 8892 + { 8893 + name = "p_cancelable___p_cancelable_0.3.0.tgz"; 8894 + path = fetchurl { 8895 + name = "p_cancelable___p_cancelable_0.3.0.tgz"; 8896 + url = "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz"; 8897 + sha512 = "RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw=="; 8898 + }; 8899 + } 8900 + { 8901 + name = "p_cancelable___p_cancelable_0.4.1.tgz"; 8902 + path = fetchurl { 8903 + name = "p_cancelable___p_cancelable_0.4.1.tgz"; 8904 + url = "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz"; 8905 + sha512 = "HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ=="; 8906 + }; 8907 + } 8908 + { 8909 + name = "p_event___p_event_1.3.0.tgz"; 8910 + path = fetchurl { 8911 + name = "p_event___p_event_1.3.0.tgz"; 8912 + url = "https://registry.yarnpkg.com/p-event/-/p-event-1.3.0.tgz"; 8913 + sha512 = "hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA=="; 8914 + }; 8915 + } 8916 + { 8917 + name = "p_event___p_event_2.3.1.tgz"; 8918 + path = fetchurl { 8919 + name = "p_event___p_event_2.3.1.tgz"; 8920 + url = "https://registry.yarnpkg.com/p-event/-/p-event-2.3.1.tgz"; 8921 + sha512 = "NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA=="; 8922 + }; 8923 + } 8924 + { 8925 + name = "p_finally___p_finally_1.0.0.tgz"; 8926 + path = fetchurl { 8927 + name = "p_finally___p_finally_1.0.0.tgz"; 8928 + url = "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz"; 8929 + sha512 = "LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow=="; 8930 + }; 8931 + } 8932 + { 8933 + name = "p_is_promise___p_is_promise_1.1.0.tgz"; 8934 + path = fetchurl { 8935 + name = "p_is_promise___p_is_promise_1.1.0.tgz"; 8936 + url = "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz"; 8937 + sha512 = "zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg=="; 8938 + }; 8939 + } 8940 + { 8221 8941 name = "p_limit___p_limit_2.3.0.tgz"; 8222 8942 path = fetchurl { 8223 8943 name = "p_limit___p_limit_2.3.0.tgz"; ··· 8250 8970 }; 8251 8971 } 8252 8972 { 8973 + name = "p_map_series___p_map_series_1.0.0.tgz"; 8974 + path = fetchurl { 8975 + name = "p_map_series___p_map_series_1.0.0.tgz"; 8976 + url = "https://registry.yarnpkg.com/p-map-series/-/p-map-series-1.0.0.tgz"; 8977 + sha512 = "4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg=="; 8978 + }; 8979 + } 8980 + { 8253 8981 name = "p_map___p_map_4.0.0.tgz"; 8254 8982 path = fetchurl { 8255 8983 name = "p_map___p_map_4.0.0.tgz"; ··· 8279 9007 name = "p_series___p_series_1.1.0.tgz"; 8280 9008 url = "https://registry.yarnpkg.com/p-series/-/p-series-1.1.0.tgz"; 8281 9009 sha512 = "356covArc9UCfj2twY/sxCJKGMzzO+pJJtucizsPC6aS1xKSTBc9PQrQhvFR3+7F+fa2KBKdJjdIcv6NEWDcIQ=="; 9010 + }; 9011 + } 9012 + { 9013 + name = "p_timeout___p_timeout_1.2.1.tgz"; 9014 + path = fetchurl { 9015 + name = "p_timeout___p_timeout_1.2.1.tgz"; 9016 + url = "https://registry.yarnpkg.com/p-timeout/-/p-timeout-1.2.1.tgz"; 9017 + sha512 = "gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA=="; 9018 + }; 9019 + } 9020 + { 9021 + name = "p_timeout___p_timeout_2.0.1.tgz"; 9022 + path = fetchurl { 9023 + name = "p_timeout___p_timeout_2.0.1.tgz"; 9024 + url = "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz"; 9025 + sha512 = "88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA=="; 8282 9026 }; 8283 9027 } 8284 9028 { ··· 8402 9146 }; 8403 9147 } 8404 9148 { 9149 + name = "path_key___path_key_2.0.1.tgz"; 9150 + path = fetchurl { 9151 + name = "path_key___path_key_2.0.1.tgz"; 9152 + url = "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz"; 9153 + sha512 = "fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw=="; 9154 + }; 9155 + } 9156 + { 8405 9157 name = "path_key___path_key_3.1.1.tgz"; 8406 9158 path = fetchurl { 8407 9159 name = "path_key___path_key_3.1.1.tgz"; 8408 9160 url = "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz"; 8409 9161 sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 9162 + }; 9163 + } 9164 + { 9165 + name = "path_key___path_key_4.0.0.tgz"; 9166 + path = fetchurl { 9167 + name = "path_key___path_key_4.0.0.tgz"; 9168 + url = "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz"; 9169 + sha512 = "haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ=="; 8410 9170 }; 8411 9171 } 8412 9172 { ··· 8458 9218 }; 8459 9219 } 8460 9220 { 9221 + name = "pend___pend_1.2.0.tgz"; 9222 + path = fetchurl { 9223 + name = "pend___pend_1.2.0.tgz"; 9224 + url = "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz"; 9225 + sha512 = "F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="; 9226 + }; 9227 + } 9228 + { 8461 9229 name = "performance_now___performance_now_2.1.0.tgz"; 8462 9230 path = fetchurl { 8463 9231 name = "performance_now___performance_now_2.1.0.tgz"; ··· 8506 9274 }; 8507 9275 } 8508 9276 { 9277 + name = "pify___pify_2.3.0.tgz"; 9278 + path = fetchurl { 9279 + name = "pify___pify_2.3.0.tgz"; 9280 + url = "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz"; 9281 + sha512 = "udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="; 9282 + }; 9283 + } 9284 + { 9285 + name = "pify___pify_3.0.0.tgz"; 9286 + path = fetchurl { 9287 + name = "pify___pify_3.0.0.tgz"; 9288 + url = "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz"; 9289 + sha512 = "C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg=="; 9290 + }; 9291 + } 9292 + { 9293 + name = "pify___pify_4.0.1.tgz"; 9294 + path = fetchurl { 9295 + name = "pify___pify_4.0.1.tgz"; 9296 + url = "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz"; 9297 + sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="; 9298 + }; 9299 + } 9300 + { 9301 + name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; 9302 + path = fetchurl { 9303 + name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; 9304 + url = "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; 9305 + sha512 = "0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw=="; 9306 + }; 9307 + } 9308 + { 9309 + name = "pinkie___pinkie_2.0.4.tgz"; 9310 + path = fetchurl { 9311 + name = "pinkie___pinkie_2.0.4.tgz"; 9312 + url = "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz"; 9313 + sha512 = "MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg=="; 9314 + }; 9315 + } 9316 + { 8509 9317 name = "pkg_dir___pkg_dir_4.2.0.tgz"; 8510 9318 path = fetchurl { 8511 9319 name = "pkg_dir___pkg_dir_4.2.0.tgz"; 8512 9320 url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz"; 8513 9321 sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 9322 + }; 9323 + } 9324 + { 9325 + name = "pngquant_bin___pngquant_bin_6.0.1.tgz"; 9326 + path = fetchurl { 9327 + name = "pngquant_bin___pngquant_bin_6.0.1.tgz"; 9328 + url = "https://registry.yarnpkg.com/pngquant-bin/-/pngquant-bin-6.0.1.tgz"; 9329 + sha512 = "Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ=="; 8514 9330 }; 8515 9331 } 8516 9332 { ··· 8826 9642 }; 8827 9643 } 8828 9644 { 9645 + name = "prepend_http___prepend_http_1.0.4.tgz"; 9646 + path = fetchurl { 9647 + name = "prepend_http___prepend_http_1.0.4.tgz"; 9648 + url = "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz"; 9649 + sha512 = "PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg=="; 9650 + }; 9651 + } 9652 + { 9653 + name = "prepend_http___prepend_http_2.0.0.tgz"; 9654 + path = fetchurl { 9655 + name = "prepend_http___prepend_http_2.0.0.tgz"; 9656 + url = "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz"; 9657 + sha512 = "ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA=="; 9658 + }; 9659 + } 9660 + { 8829 9661 name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; 8830 9662 path = fetchurl { 8831 9663 name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; ··· 8887 9719 name = "prop_types___prop_types_15.8.1.tgz"; 8888 9720 url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz"; 8889 9721 sha512 = "oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="; 9722 + }; 9723 + } 9724 + { 9725 + name = "proto_list___proto_list_1.2.4.tgz"; 9726 + path = fetchurl { 9727 + name = "proto_list___proto_list_1.2.4.tgz"; 9728 + url = "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz"; 9729 + sha512 = "vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA=="; 9730 + }; 9731 + } 9732 + { 9733 + name = "pseudomap___pseudomap_1.0.2.tgz"; 9734 + path = fetchurl { 9735 + name = "pseudomap___pseudomap_1.0.2.tgz"; 9736 + url = "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz"; 9737 + sha512 = "b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ=="; 8890 9738 }; 8891 9739 } 8892 9740 { ··· 8898 9746 }; 8899 9747 } 8900 9748 { 9749 + name = "pump___pump_3.0.0.tgz"; 9750 + path = fetchurl { 9751 + name = "pump___pump_3.0.0.tgz"; 9752 + url = "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz"; 9753 + sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="; 9754 + }; 9755 + } 9756 + { 8901 9757 name = "punycode___punycode_1.3.2.tgz"; 8902 9758 path = fetchurl { 8903 9759 name = "punycode___punycode_1.3.2.tgz"; ··· 8943 9799 name = "qs___qs_6.7.0.tgz"; 8944 9800 url = "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz"; 8945 9801 sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 9802 + }; 9803 + } 9804 + { 9805 + name = "query_string___query_string_5.1.1.tgz"; 9806 + path = fetchurl { 9807 + name = "query_string___query_string_5.1.1.tgz"; 9808 + url = "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz"; 9809 + sha512 = "gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw=="; 8946 9810 }; 8947 9811 } 8948 9812 { ··· 9158 10022 path = 9159 10023 let 9160 10024 repo = fetchgit { 9161 - url = "https://github.com/adityatoshniwal/react-data-grid.git/"; 9162 - rev = "8d9bc16ddd7c419acfbbd1c1cc2b70eb9f5b453c"; 9163 - sha256 = "1cp419hpl766jrz2wc48iifif221qmaxa028v3hx311dhd8m96k9"; 10025 + url = "https://github.com/EnterpriseDB/react-data-grid.git/"; 10026 + rev = "200d2f5e02de694e3e9ffbe177c279bc40240fb8"; 10027 + sha256 = "0s4k8s8ackr5lrvhv7ljbhd90679wh34p2wv71xqn8yy1ykjwm15"; 9164 10028 }; 9165 10029 in 9166 10030 runCommand "react-data-grid.git" { buildInputs = [gnutar]; } '' ··· 9650 10514 }; 9651 10515 } 9652 10516 { 10517 + name = "responselike___responselike_1.0.2.tgz"; 10518 + path = fetchurl { 10519 + name = "responselike___responselike_1.0.2.tgz"; 10520 + url = "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz"; 10521 + sha512 = "/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ=="; 10522 + }; 10523 + } 10524 + { 9653 10525 name = "ret___ret_0.1.15.tgz"; 9654 10526 path = fetchurl { 9655 10527 name = "ret___ret_0.1.15.tgz"; ··· 9687 10559 name = "rifm___rifm_0.7.0.tgz"; 9688 10560 url = "https://registry.yarnpkg.com/rifm/-/rifm-0.7.0.tgz"; 9689 10561 sha512 = "DSOJTWHD67860I5ojetXdEQRIBvF6YcpNe53j0vn1vp9EUb9N80EiZTxgP+FkDKorWC8PZw052kTF4C1GOivCQ=="; 10562 + }; 10563 + } 10564 + { 10565 + name = "rimraf___rimraf_2.7.1.tgz"; 10566 + path = fetchurl { 10567 + name = "rimraf___rimraf_2.7.1.tgz"; 10568 + url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz"; 10569 + sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="; 9690 10570 }; 9691 10571 } 9692 10572 { ··· 9826 10706 }; 9827 10707 } 9828 10708 { 10709 + name = "seek_bzip___seek_bzip_1.0.6.tgz"; 10710 + path = fetchurl { 10711 + name = "seek_bzip___seek_bzip_1.0.6.tgz"; 10712 + url = "https://registry.yarnpkg.com/seek-bzip/-/seek-bzip-1.0.6.tgz"; 10713 + sha512 = "e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ=="; 10714 + }; 10715 + } 10716 + { 9829 10717 name = "select2___select2_4.0.13.tgz"; 9830 10718 path = fetchurl { 9831 10719 name = "select2___select2_4.0.13.tgz"; 9832 10720 url = "https://registry.yarnpkg.com/select2/-/select2-4.0.13.tgz"; 9833 10721 sha512 = "1JeB87s6oN/TDxQQYCvS5EFoQyvV6eYMZZ0AeA4tdFDYWN3BAGZ8npr17UBFddU0lgAt3H0yjX3X6/ekOj1yjw=="; 10722 + }; 10723 + } 10724 + { 10725 + name = "semver_regex___semver_regex_2.0.0.tgz"; 10726 + path = fetchurl { 10727 + name = "semver_regex___semver_regex_2.0.0.tgz"; 10728 + url = "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz"; 10729 + sha512 = "mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw=="; 10730 + }; 10731 + } 10732 + { 10733 + name = "semver_truncate___semver_truncate_1.1.2.tgz"; 10734 + path = fetchurl { 10735 + name = "semver_truncate___semver_truncate_1.1.2.tgz"; 10736 + url = "https://registry.yarnpkg.com/semver-truncate/-/semver-truncate-1.1.2.tgz"; 10737 + sha512 = "V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w=="; 9834 10738 }; 9835 10739 } 9836 10740 { ··· 9938 10842 }; 9939 10843 } 9940 10844 { 10845 + name = "shebang_command___shebang_command_1.2.0.tgz"; 10846 + path = fetchurl { 10847 + name = "shebang_command___shebang_command_1.2.0.tgz"; 10848 + url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz"; 10849 + sha512 = "EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg=="; 10850 + }; 10851 + } 10852 + { 9941 10853 name = "shebang_command___shebang_command_2.0.0.tgz"; 9942 10854 path = fetchurl { 9943 10855 name = "shebang_command___shebang_command_2.0.0.tgz"; 9944 10856 url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz"; 9945 10857 sha512 = "kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="; 10858 + }; 10859 + } 10860 + { 10861 + name = "shebang_regex___shebang_regex_1.0.0.tgz"; 10862 + path = fetchurl { 10863 + name = "shebang_regex___shebang_regex_1.0.0.tgz"; 10864 + url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz"; 10865 + sha512 = "wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ=="; 9946 10866 }; 9947 10867 } 9948 10868 { ··· 10026 10946 }; 10027 10947 } 10028 10948 { 10029 - name = "SlickGrid.git"; 10030 - path = 10031 - let 10032 - repo = fetchgit { 10033 - url = "https://github.com/6pac/SlickGrid.git"; 10034 - rev = "4f8c6f498d0b82391fdf382beb8ef114ed7408e7"; 10035 - sha256 = "1d8gha5h60dlgmv36nlrgn5502hq64a3nhdl0pyn8017y470qdry"; 10036 - }; 10037 - in 10038 - runCommand "SlickGrid.git" { buildInputs = [gnutar]; } '' 10039 - # Set u+w because tar-fs can't unpack archives with read-only dirs 10040 - # https://github.com/mafintosh/tar-fs/issues/79 10041 - tar cf $out --mode u+w -C ${repo} . 10042 - ''; 10043 - } 10044 - { 10045 10949 name = "smart_buffer___smart_buffer_4.2.0.tgz"; 10046 10950 path = fetchurl { 10047 10951 name = "smart_buffer___smart_buffer_4.2.0.tgz"; ··· 10119 11023 name = "socks___socks_2.7.0.tgz"; 10120 11024 url = "https://registry.yarnpkg.com/socks/-/socks-2.7.0.tgz"; 10121 11025 sha512 = "scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA=="; 11026 + }; 11027 + } 11028 + { 11029 + name = "sort_keys_length___sort_keys_length_1.0.1.tgz"; 11030 + path = fetchurl { 11031 + name = "sort_keys_length___sort_keys_length_1.0.1.tgz"; 11032 + url = "https://registry.yarnpkg.com/sort-keys-length/-/sort-keys-length-1.0.1.tgz"; 11033 + sha512 = "GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw=="; 11034 + }; 11035 + } 11036 + { 11037 + name = "sort_keys___sort_keys_1.1.2.tgz"; 11038 + path = fetchurl { 11039 + name = "sort_keys___sort_keys_1.1.2.tgz"; 11040 + url = "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz"; 11041 + sha512 = "vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg=="; 11042 + }; 11043 + } 11044 + { 11045 + name = "sort_keys___sort_keys_2.0.0.tgz"; 11046 + path = fetchurl { 11047 + name = "sort_keys___sort_keys_2.0.0.tgz"; 11048 + url = "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz"; 11049 + sha512 = "/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg=="; 10122 11050 }; 10123 11051 } 10124 11052 { ··· 10298 11226 }; 10299 11227 } 10300 11228 { 11229 + name = "strict_uri_encode___strict_uri_encode_1.1.0.tgz"; 11230 + path = fetchurl { 11231 + name = "strict_uri_encode___strict_uri_encode_1.1.0.tgz"; 11232 + url = "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz"; 11233 + sha512 = "R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ=="; 11234 + }; 11235 + } 11236 + { 10301 11237 name = "string_width___string_width_4.2.3.tgz"; 10302 11238 path = fetchurl { 10303 11239 name = "string_width___string_width_4.2.3.tgz"; ··· 10386 11322 }; 10387 11323 } 10388 11324 { 11325 + name = "strip_dirs___strip_dirs_2.1.0.tgz"; 11326 + path = fetchurl { 11327 + name = "strip_dirs___strip_dirs_2.1.0.tgz"; 11328 + url = "https://registry.yarnpkg.com/strip-dirs/-/strip-dirs-2.1.0.tgz"; 11329 + sha512 = "JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g=="; 11330 + }; 11331 + } 11332 + { 11333 + name = "strip_eof___strip_eof_1.0.0.tgz"; 11334 + path = fetchurl { 11335 + name = "strip_eof___strip_eof_1.0.0.tgz"; 11336 + url = "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz"; 11337 + sha512 = "7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q=="; 11338 + }; 11339 + } 11340 + { 10389 11341 name = "strip_final_newline___strip_final_newline_2.0.0.tgz"; 10390 11342 path = fetchurl { 10391 11343 name = "strip_final_newline___strip_final_newline_2.0.0.tgz"; ··· 10394 11346 }; 10395 11347 } 10396 11348 { 11349 + name = "strip_final_newline___strip_final_newline_3.0.0.tgz"; 11350 + path = fetchurl { 11351 + name = "strip_final_newline___strip_final_newline_3.0.0.tgz"; 11352 + url = "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz"; 11353 + sha512 = "dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw=="; 11354 + }; 11355 + } 11356 + { 10397 11357 name = "strip_indent___strip_indent_4.0.0.tgz"; 10398 11358 path = fetchurl { 10399 11359 name = "strip_indent___strip_indent_4.0.0.tgz"; ··· 10407 11367 name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; 10408 11368 url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; 10409 11369 sha512 = "6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="; 11370 + }; 11371 + } 11372 + { 11373 + name = "strip_outer___strip_outer_1.0.1.tgz"; 11374 + path = fetchurl { 11375 + name = "strip_outer___strip_outer_1.0.1.tgz"; 11376 + url = "https://registry.yarnpkg.com/strip-outer/-/strip-outer-1.0.1.tgz"; 11377 + sha512 = "k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg=="; 10410 11378 }; 10411 11379 } 10412 11380 { ··· 10578 11546 }; 10579 11547 } 10580 11548 { 11549 + name = "tar_stream___tar_stream_1.6.2.tgz"; 11550 + path = fetchurl { 11551 + name = "tar_stream___tar_stream_1.6.2.tgz"; 11552 + url = "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz"; 11553 + sha512 = "rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A=="; 11554 + }; 11555 + } 11556 + { 10581 11557 name = "tar___tar_6.1.11.tgz"; 10582 11558 path = fetchurl { 10583 11559 name = "tar___tar_6.1.11.tgz"; 10584 11560 url = "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz"; 10585 11561 sha512 = "an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA=="; 11562 + }; 11563 + } 11564 + { 11565 + name = "temp_dir___temp_dir_1.0.0.tgz"; 11566 + path = fetchurl { 11567 + name = "temp_dir___temp_dir_1.0.0.tgz"; 11568 + url = "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz"; 11569 + sha512 = "xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ=="; 11570 + }; 11571 + } 11572 + { 11573 + name = "tempfile___tempfile_2.0.0.tgz"; 11574 + path = fetchurl { 11575 + name = "tempfile___tempfile_2.0.0.tgz"; 11576 + url = "https://registry.yarnpkg.com/tempfile/-/tempfile-2.0.0.tgz"; 11577 + sha512 = "ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA=="; 10586 11578 }; 10587 11579 } 10588 11580 { ··· 10650 11642 }; 10651 11643 } 10652 11644 { 11645 + name = "timed_out___timed_out_4.0.1.tgz"; 11646 + path = fetchurl { 11647 + name = "timed_out___timed_out_4.0.1.tgz"; 11648 + url = "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz"; 11649 + sha512 = "G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA=="; 11650 + }; 11651 + } 11652 + { 10653 11653 name = "timers_browserify___timers_browserify_1.4.2.tgz"; 10654 11654 path = fetchurl { 10655 11655 name = "timers_browserify___timers_browserify_1.4.2.tgz"; ··· 10682 11682 }; 10683 11683 } 10684 11684 { 10685 - name = "tippy.js___tippy.js_6.3.5.tgz"; 11685 + name = "tmp___tmp_0.2.1.tgz"; 10686 11686 path = fetchurl { 10687 - name = "tippy.js___tippy.js_6.3.5.tgz"; 10688 - url = "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.3.5.tgz"; 10689 - sha512 = "B9hAQ5KNF+jDJRg6cRysV6Y3J+5fiNfD60GuXR5TP0sfrcltpgdzVc7f1wMtjQ3W0+Xsy80CDvk0Z+Vr0cM4sQ=="; 11687 + name = "tmp___tmp_0.2.1.tgz"; 11688 + url = "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz"; 11689 + sha512 = "76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ=="; 10690 11690 }; 10691 11691 } 10692 11692 { 10693 - name = "tmp___tmp_0.2.1.tgz"; 11693 + name = "to_buffer___to_buffer_1.1.1.tgz"; 10694 11694 path = fetchurl { 10695 - name = "tmp___tmp_0.2.1.tgz"; 10696 - url = "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz"; 10697 - sha512 = "76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ=="; 11695 + name = "to_buffer___to_buffer_1.1.1.tgz"; 11696 + url = "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz"; 11697 + sha512 = "lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg=="; 10698 11698 }; 10699 11699 } 10700 11700 { ··· 10743 11743 name = "trim_newlines___trim_newlines_4.0.2.tgz"; 10744 11744 url = "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-4.0.2.tgz"; 10745 11745 sha512 = "GJtWyq9InR/2HRiLZgpIKv+ufIKrVrvjQWEj7PxAXNc5dwbNJkqhAUoAGgzRmULAnoOM5EIpveYd3J2VeSAIew=="; 11746 + }; 11747 + } 11748 + { 11749 + name = "trim_repeated___trim_repeated_1.0.0.tgz"; 11750 + path = fetchurl { 11751 + name = "trim_repeated___trim_repeated_1.0.0.tgz"; 11752 + url = "https://registry.yarnpkg.com/trim-repeated/-/trim-repeated-1.0.0.tgz"; 11753 + sha512 = "pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg=="; 10746 11754 }; 10747 11755 } 10748 11756 { ··· 10810 11818 }; 10811 11819 } 10812 11820 { 11821 + name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; 11822 + path = fetchurl { 11823 + name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; 11824 + url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; 11825 + sha512 = "McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w=="; 11826 + }; 11827 + } 11828 + { 10813 11829 name = "type_check___type_check_0.4.0.tgz"; 10814 11830 path = fetchurl { 10815 11831 name = "type_check___type_check_0.4.0.tgz"; ··· 10818 11834 }; 10819 11835 } 10820 11836 { 11837 + name = "type_fest___type_fest_0.11.0.tgz"; 11838 + path = fetchurl { 11839 + name = "type_fest___type_fest_0.11.0.tgz"; 11840 + url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz"; 11841 + sha512 = "OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ=="; 11842 + }; 11843 + } 11844 + { 10821 11845 name = "type_fest___type_fest_0.20.2.tgz"; 10822 11846 path = fetchurl { 10823 11847 name = "type_fest___type_fest_0.20.2.tgz"; ··· 10887 11911 name = "unbox_primitive___unbox_primitive_1.0.1.tgz"; 10888 11912 url = "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz"; 10889 11913 sha512 = "tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw=="; 11914 + }; 11915 + } 11916 + { 11917 + name = "unbzip2_stream___unbzip2_stream_1.4.3.tgz"; 11918 + path = fetchurl { 11919 + name = "unbzip2_stream___unbzip2_stream_1.4.3.tgz"; 11920 + url = "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz"; 11921 + sha512 = "mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg=="; 10890 11922 }; 10891 11923 } 10892 11924 { ··· 11042 12074 }; 11043 12075 } 11044 12076 { 12077 + name = "url_parse_lax___url_parse_lax_1.0.0.tgz"; 12078 + path = fetchurl { 12079 + name = "url_parse_lax___url_parse_lax_1.0.0.tgz"; 12080 + url = "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz"; 12081 + sha512 = "BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA=="; 12082 + }; 12083 + } 12084 + { 12085 + name = "url_parse_lax___url_parse_lax_3.0.0.tgz"; 12086 + path = fetchurl { 12087 + name = "url_parse_lax___url_parse_lax_3.0.0.tgz"; 12088 + url = "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz"; 12089 + sha512 = "NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ=="; 12090 + }; 12091 + } 12092 + { 12093 + name = "url_to_options___url_to_options_1.0.1.tgz"; 12094 + path = fetchurl { 12095 + name = "url_to_options___url_to_options_1.0.1.tgz"; 12096 + url = "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz"; 12097 + sha512 = "0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A=="; 12098 + }; 12099 + } 12100 + { 11045 12101 name = "url___url_0.11.0.tgz"; 11046 12102 path = fetchurl { 11047 12103 name = "url___url_0.11.0.tgz"; ··· 11087 12143 name = "utrie___utrie_1.0.1.tgz"; 11088 12144 url = "https://registry.yarnpkg.com/utrie/-/utrie-1.0.1.tgz"; 11089 12145 sha512 = "JPaDXF3vzgZxfeEwutdGzlrNoVFL5UvZcbO6Qo9D4GoahrieUPoMU8GCpVpR7MQqcKhmShIh8VlbEN3PLM3EBg=="; 12146 + }; 12147 + } 12148 + { 12149 + name = "uuid___uuid_3.4.0.tgz"; 12150 + path = fetchurl { 12151 + name = "uuid___uuid_3.4.0.tgz"; 12152 + url = "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz"; 12153 + sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 11090 12154 }; 11091 12155 } 11092 12156 { ··· 11418 12482 }; 11419 12483 } 11420 12484 { 12485 + name = "yallist___yallist_2.1.2.tgz"; 12486 + path = fetchurl { 12487 + name = "yallist___yallist_2.1.2.tgz"; 12488 + url = "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz"; 12489 + sha512 = "ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A=="; 12490 + }; 12491 + } 12492 + { 11421 12493 name = "yallist___yallist_4.0.0.tgz"; 11422 12494 path = fetchurl { 11423 12495 name = "yallist___yallist_4.0.0.tgz"; ··· 11455 12527 name = "yarn_audit_html___yarn_audit_html_4.0.0.tgz"; 11456 12528 url = "https://registry.yarnpkg.com/yarn-audit-html/-/yarn-audit-html-4.0.0.tgz"; 11457 12529 sha512 = "PZW+M6b6BW4hBU6AuUnxFSOVOq6Gnrh+krBdzcX3OjWNqiDh8ovhiB6pTYEeR13jL8J9VXk/1POn2XljicWZNA=="; 12530 + }; 12531 + } 12532 + { 12533 + name = "yauzl___yauzl_2.10.0.tgz"; 12534 + path = fetchurl { 12535 + name = "yauzl___yauzl_2.10.0.tgz"; 12536 + url = "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz"; 12537 + sha512 = "p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g=="; 11458 12538 }; 11459 12539 } 11460 12540 {
+2 -2
pkgs/tools/admin/uacme/default.nix
··· 10 10 }: 11 11 stdenv.mkDerivation rec { 12 12 pname = "uacme"; 13 - version = "1.7.2"; 13 + version = "1.7.3"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "ndilieto"; 17 17 repo = "uacme"; 18 18 rev = "v${version}"; 19 - hash = "sha256-mbH5Z/ieV4fiLCLWag1aLPNA89sexd5upNF3KHTfhKM="; 19 + hash = "sha256-kgS+QOB63Q1cNa4gk527G4hHFdiCL6JqmoVQRAVMUDw="; 20 20 }; 21 21 22 22 configureFlags = [ "--with-openssl" ];
-7
pkgs/tools/misc/elfcat/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "elfcat" 7 - version = "0.1.8"
+3 -3
pkgs/tools/misc/fclones/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "fclones"; 11 - version = "0.29.0"; 11 + version = "0.29.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pkolaczk"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-0R9UB4xW5LYSA3rJIhJkYCEIN3Fn3eQaqZS1OP4kXNg="; 17 + sha256 = "sha256-spWfZx2br7gSLS0xaUBvMgvA326ISh16i/s0K3m1HCI="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-elpMupN5Ah40+kWzXYDg+PUs0taOxdVhiPMO749H9fA="; 20 + cargoSha256 = "sha256-qwjwauM2ejeMEbajVD8Deuhl/qMcB7MsvjR2CYGaF+M="; 21 21 22 22 buildInputs = lib.optionals stdenv.isDarwin [ 23 23 AppKit
+2 -2
pkgs/tools/misc/gh-dash/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "gh-dash"; 8 - version = "3.4.0"; 8 + version = "3.4.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "dlvhdr"; 12 12 repo = "gh-dash"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-HVGwq3v+VSViPoxeeXRz4F4iyY+auMkP9BdEombalE8="; 14 + sha256 = "sha256-NGUuUBCoLKyyFdTw7n/PY486JEcrTsed4/iuB9iUTLE="; 15 15 }; 16 16 17 17 vendorSha256 = "sha256-BbrHvphTQLvUKanmO4GrNpkT0MSlY7+WMJiyXV7dFB8=";
+6 -3
pkgs/tools/misc/steampipe/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "steampipe"; 5 - version = "0.15.3"; 5 + version = "0.16.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "turbot"; 9 9 repo = "steampipe"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-7TIEdT+s6Am2hPiMPKH+YioNfsCmLVZg6BQiO94Xiu0="; 11 + sha256 = "sha256-awZlA02lKYpFdvCsGUC8Blv8FHek5XskkljseDGjDmk="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-x57IvMKSE2F5bGTC8ao+wLJmYlz8nMh4SoMhtGlwQyE="; 14 + vendorSha256 = "sha256-6l3bBxGhdZGIXmdzgF44TGZQqT6gSUHSwOAE2SlgLgg="; 15 15 proxyVendor = true; 16 16 17 17 patchPhase = '' 18 + runHook prePatch 18 19 # Patch test that relies on looking up homedir in user struct to prefer ~ 19 20 substituteInPlace pkg/steampipeconfig/shared_test.go \ 20 21 --replace '"github.com/turbot/go-kit/helpers"' "" \ 21 22 --replace 'filepaths.SteampipeDir, _ = helpers.Tildefy("~/.steampipe")' 'filepaths.SteampipeDir = "~/.steampipe"'; 23 + runHook postPatch 22 24 ''; 23 25 24 26 nativeBuildInputs = [ installShellFiles ]; ··· 38 40 description = "select * from cloud;"; 39 41 license = licenses.agpl3; 40 42 maintainers = with maintainers; [ hardselius ]; 43 + changelog = "https://github.com/turbot/steampipe/blob/v${version}/CHANGELOG.md"; 41 44 }; 42 45 }
+2 -2
pkgs/tools/networking/dnsproxy/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnsproxy"; 5 - version = "0.45.1"; 5 + version = "0.45.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "AdguardTeam"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-sBLZHBbBUF2qpmgRbMahVOcoZOURZRMfW8hAebuxXRs="; 11 + sha256 = "sha256-2lPGKLmLDP39qtyb88MiCBVjbztrBFqqy5hc7iOK3QE="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+2 -2
pkgs/tools/networking/minidlna/default.nix
··· 1 - { lib, stdenv, fetchgit, autoreconfHook, ffmpeg, flac, libvorbis, libogg, libid3tag, libexif, libjpeg, sqlite, gettext, nixosTests }: 1 + { lib, stdenv, fetchgit, autoreconfHook, ffmpeg, flac, libvorbis, libogg, libid3tag, libexif, libjpeg, sqlite, gettext, nixosTests, zlib }: 2 2 3 3 let 4 4 pname = "minidlna"; ··· 20 20 21 21 nativeBuildInputs = [ autoreconfHook ]; 22 22 23 - buildInputs = [ ffmpeg flac libvorbis libogg libid3tag libexif libjpeg sqlite gettext ]; 23 + buildInputs = [ ffmpeg flac libvorbis libogg libid3tag libexif libjpeg sqlite gettext zlib ]; 24 24 25 25 postInstall = '' 26 26 mkdir -p $out/share/man/man{5,8}
+8 -1
pkgs/tools/networking/pdsh/default.nix
··· 1 - { lib, stdenv, fetchurl, perl, readline, rsh, ssh, slurm, slurmSupport ? false }: 1 + { lib, stdenv, fetchurl, autoreconfHook, perl, readline, rsh, ssh, slurm, slurmSupport ? false }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pdsh"; ··· 11 11 12 12 buildInputs = [ perl readline ssh ] 13 13 ++ (lib.optional slurmSupport slurm); 14 + 15 + nativeBuildInputs = [ autoreconfHook ]; 16 + 17 + # Do not use git to derive a version. 18 + postPatch = '' 19 + sed -i 's/m4_esyscmd(\[git describe.*/[${version}])/' configure.ac 20 + ''; 14 21 15 22 preConfigure = '' 16 23 configureFlagsArray=(
+3 -2
pkgs/tools/security/gnupg/23.nix
··· 2 2 , libgpg-error, libiconv, npth, gettext, texinfo, buildPackages 3 3 , guiSupport ? stdenv.isDarwin, enableMinimal ? false 4 4 , adns, bzip2, gnutls, libusb1, openldap 5 - , tpm2-tss, pcsclite, pinentry, readline, sqlite, zlib 5 + , tpm2-tss, pinentry, readline, sqlite, zlib 6 + , withPcsc ? !enableMinimal, pcsclite 6 7 }: 7 8 8 9 assert guiSupport -> enableMinimal == false; ··· 43 44 ]; 44 45 postPatch = '' 45 46 sed -i 's,\(hkps\|https\)://keyserver.ubuntu.com,hkps://keys.openpgp.org,g' configure configure.ac doc/dirmngr.texi doc/gnupg.info-1 46 - '' + lib.optionalString (stdenv.isLinux && (!enableMinimal)) '' 47 + '' + lib.optionalString (stdenv.isLinux && withPcsc) '' 47 48 sed -i 's,"libpcsclite\.so[^"]*","${lib.getLib pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c 48 49 ''; 49 50
+6 -7
pkgs/tools/security/gowitness/default.nix
··· 1 - { lib 2 - , buildGoModule 3 - , fetchFromGitHub 4 - }: 1 + { lib, buildGoModule, fetchFromGitHub }: 5 2 6 3 buildGoModule rec { 7 4 pname = "gowitness"; 8 - version = "2.4.0"; 5 + version = "2.4.2"; 9 6 10 7 src = fetchFromGitHub { 11 8 owner = "sensepost"; 12 9 repo = pname; 13 10 rev = version; 14 - hash = "sha256-6O4pGsUu9tG3VAIGaD9aauXaVMhvK+HpEjByE0AwVnE="; 11 + sha256 = "sha256-e4J+W5VHVy/ngC5FDsDBStIaIR7jODWPt8VGTfAse44="; 15 12 }; 16 13 17 - vendorSha256 = "sha256-6FgYDiz050ZlC1XBz7dKkVFKY7gkGhIm0ND23tMwxC8="; 14 + vendorSha256 = "sha256-NFQbulW07sljskjLn6A4f+PMMCJxploYqAHE+K7XxH8="; 15 + 16 + ldflags = [ "-s" "-w" ]; 18 17 19 18 meta = with lib; { 20 19 description = "Web screenshot utility";
+2 -2
pkgs/tools/security/iaito/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "iaito"; 20 - version = "5.7.4"; 20 + version = "5.7.6"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "radareorg"; 24 24 repo = pname; 25 25 rev = version; 26 - sha256 = "sha256-T9+YQQDcXHFogD7FVkippsde7+0bKodwwABCqrKjcH4="; 26 + sha256 = "sha256-PnIOoWPYLK30lMmLVctihCs7GBo0rTN8yetWAr21h9w="; 27 27 }; 28 28 29 29 nativeBuildInputs = [ meson ninja pkg-config python3 qttools wrapQtAppsHook ];
+2 -2
pkgs/tools/system/thermald/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "thermald"; 21 - version = "2.5"; 21 + version = "2.5.1"; 22 22 23 23 outputs = [ "out" "devdoc" ]; 24 24 ··· 26 26 owner = "intel"; 27 27 repo = "thermal_daemon"; 28 28 rev = "v${version}"; 29 - sha256 = "sha256-j66uBbTZhHFXhDSDI0IseoyF/rCEl/B87YjorfZIHX8="; 29 + sha256 = "sha256-j3WurlNJ67iXBt+jn1iGGtGup8m6OYQtqJTYwUkJ4Ro="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+1
pkgs/top-level/aliases.nix
··· 847 847 pbis-open = throw "pbis-open has been removed, because it is no longer maintained upstream"; # added 2021-12-15 848 848 pdf-redact-tools = throw "pdf-redact-tools has been removed from nixpkgs because the upstream has abandoned the project"; # Added 2022-01-01 849 849 pdfmod = throw "pdfmod has been removed"; # Added 2022-01-15 850 + pdfstudio = throw "'pdfstudio' has been replaced with 'pdfstudio<year>', where '<year>' is the year from the PDF Studio version number, because each license is specific to a given year"; # Added 2022-09-04 850 851 peach = asouldocs; # Added 2022-08-28 851 852 pentablet-driver = xp-pen-g430-driver; # Added 2022-06-23 852 853 perlXMLParser = throw "'perlXMLParser' has been renamed to/replaced by 'perlPackages.XMLParser'"; # Converted to throw 2022-02-22
+17 -9
pkgs/top-level/all-packages.nix
··· 3822 3822 3823 3823 element-desktop = callPackage ../applications/networking/instant-messengers/element/element-desktop.nix { 3824 3824 inherit (darwin.apple_sdk.frameworks) Security AppKit CoreServices; 3825 - electron = electron_19; 3825 + electron = electron_20; 3826 3826 }; 3827 3827 element-desktop-wayland = writeScriptBin "element-desktop" '' 3828 3828 #!/bin/sh ··· 4727 4727 4728 4728 statserial = callPackage ../tools/misc/statserial { }; 4729 4729 4730 - steampipe = callPackage ../tools/misc/steampipe { }; 4730 + steampipe = callPackage ../tools/misc/steampipe { 4731 + buildGoModule = buildGo119Module; 4732 + }; 4731 4733 4732 4734 step-ca = callPackage ../tools/security/step-ca { 4733 4735 inherit (darwin.apple_sdk.frameworks) PCSC; ··· 22418 22420 wxGTK31-gtk2 = wxGTK31.override { withGtk2 = true; }; 22419 22421 wxGTK31-gtk3 = wxGTK31.override { withGtk2 = false; }; 22420 22422 22423 + wxGTK32 = callPackage ../development/libraries/wxwidgets/wxGTK32.nix { 22424 + inherit (darwin.stubs) setfile; 22425 + inherit (darwin.apple_sdk.frameworks) AGL Carbon Cocoa Kernel QTKit AVFoundation AVKit WebKit; 22426 + }; 22427 + 22421 22428 wxSVG = callPackage ../development/libraries/wxSVG { 22422 22429 wxGTK = wxGTK30-gtk3; 22423 22430 inherit (darwin.apple_sdk.frameworks) Cocoa; ··· 26652 26659 26653 26660 foxitreader = libsForQt512.callPackage ../applications/misc/foxitreader { }; 26654 26661 26655 - pdfstudio = import ../applications/misc/pdfstudio { 26656 - program = "pdfstudio"; 26657 - inherit callPackage fetchurl libgccjit; 26662 + pdfstudio2021 = callPackage ../applications/misc/pdfstudio { 26663 + year = "2021"; 26658 26664 }; 26659 26665 26660 - pdfstudioviewer = import ../applications/misc/pdfstudio { 26666 + pdfstudio2022 = callPackage ../applications/misc/pdfstudio { 26667 + year = "2022"; 26668 + }; 26669 + 26670 + pdfstudioviewer = callPackage ../applications/misc/pdfstudio { 26661 26671 program = "pdfstudioviewer"; 26662 - inherit callPackage fetchurl libgccjit; 26663 26672 }; 26664 26673 26665 26674 aeolus = callPackage ../applications/audio/aeolus { }; ··· 35897 35906 gotestwaf = callPackage ../tools/security/gotestwaf { }; 35898 35907 35899 35908 gowitness = callPackage ../tools/security/gowitness { 35900 - # pinned due to build failure or vendoring problems. When unpinning double check with: nix-build -A $name.go-modules --rebuild 35901 - buildGoModule = buildGo117Module; 35909 + buildGoModule = buildGo119Module; 35902 35910 }; 35903 35911 35904 35912 guetzli = callPackage ../applications/graphics/guetzli { };
-7
pkgs/top-level/octave-packages.nix
··· 23 23 24 24 makeScope newScope (self: 25 25 let 26 - inherit (octave) blas lapack gfortran python texinfo gnuplot; 27 - 28 26 callPackage = self.callPackage; 29 27 30 28 buildOctavePackage = callPackage ../development/interpreters/octave/build-octave-package.nix { 31 29 inherit lib stdenv; 32 30 inherit octave; 33 31 inherit computeRequiredOctavePackages; 34 - }; 35 - 36 - wrapOctave = callPackage ../development/interpreters/octave/wrap-octave.nix { 37 - inherit octave; 38 - inherit (pkgs) makeSetupHook makeWrapper; 39 32 }; 40 33 41 34 # Given a list of required Octave package derivations, get a list of