lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
1551e9d6 344456f6

+754 -906
+8 -4
nixos/modules/services/web-servers/apache-httpd/default.nix
··· 126 126 </IfModule> 127 127 ''; 128 128 129 - luaSetPaths = '' 129 + luaSetPaths = let 130 + # support both lua and lua.withPackages derivations 131 + luaversion = cfg.package.lua5.lua.luaversion or cfg.package.lua5.luaversion; 132 + in 133 + '' 130 134 <IfModule mod_lua.c> 131 - LuaPackageCPath ${cfg.package.lua5}/lib/lua/${cfg.package.lua5.lua.luaversion}/?.so 132 - LuaPackagePath ${cfg.package.lua5}/share/lua/${cfg.package.lua5.lua.luaversion}/?.lua 135 + LuaPackageCPath ${cfg.package.lua5}/lib/lua/${luaversion}/?.so 136 + LuaPackagePath ${cfg.package.lua5}/share/lua/${luaversion}/?.lua 133 137 </IfModule> 134 138 ''; 135 139 ··· 333 337 334 338 ${sslConf} 335 339 336 - ${if cfg.package.luaSupport then luaSetPaths else ""} 340 + ${optionalString cfg.package.luaSupport luaSetPaths} 337 341 338 342 # Fascist default - deny access to everything. 339 343 <Directory />
+3 -3
pkgs/applications/misc/pueue/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "pueue"; 5 - version = "0.8.2"; 5 + version = "0.12.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Nukesor"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "1vdlsfnqnyri0ny2g695lhivs9m25v9lsqf1valwbjv9l9vjxfqa"; 11 + sha256 = "sha256-yOUVDq/wRY35ZQjQVwTLYHKukkKpoggN51wBDdZnhI4="; 12 12 }; 13 13 14 - cargoSha256 = "0qziwb69qpbziz772np8dcb1dvxg6m506k5kl63m75z4zicgykcv"; 14 + cargoSha256 = "sha256-56jJ8IjxWTBlaDd1CVit4RP659Mgw2j2wMWcSDYVihM="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+2 -2
pkgs/applications/video/go-chromecast/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "go-chromecast"; 5 - version = "0.2.8"; 5 + version = "0.2.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vishen"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ehIhFqZeVidhYTgqOLlf0aMHKG0cOe6245UyOVM/nOg="; 11 + sha256 = "sha256-KhJMgr57pDnuFLhsbf0/4n9w0EfjuuKA46ENPLXox3A="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-idxElk4Sy7SE9G1OMRw8YH4o8orBa80qhBXPA+ar620=";
+48 -22
pkgs/data/fonts/iosevka/default.nix
··· 1 1 { stdenv, lib, pkgs, fetchFromGitHub, nodejs, nodePackages, remarshal 2 2 , ttfautohint-nox 3 + # Custom font set options. 4 + # See https://typeof.net/Iosevka/customizer 5 + # Can be a raw TOML string, or a Nix attrset. 3 6 4 - # Custom font set options. 5 - # See https://github.com/be5invis/Iosevka#build-your-own-style 6 - # Ex: 7 - # privateBuildPlan = { 8 - # family = "Iosevka Expanded"; 9 - # 10 - # design = [ 11 - # "sans" 12 - # "expanded" 13 - # ]; 14 - # }; 7 + # Ex: 8 + # privateBuildPlan = '' 9 + # [buildPlans.iosevka-custom] 10 + # family = "Iosevka Custom" 11 + # spacing = "normal" 12 + # serifs = "sans" 13 + # 14 + # [buildPlans.iosevka-custom.variants.design] 15 + # capital-j = "serifless" 16 + # 17 + # [buildPlans.iosevka-custom.variants.italic] 18 + # i = "tailed" 19 + # ''; 20 + 21 + # Or: 22 + # privateBuildPlan = { 23 + # family = "Iosevka Custom"; 24 + # spacing = "normal"; 25 + # serifs = "sans"; 26 + # 27 + # variants = { 28 + # design.capital-j = "serifless"; 29 + # italic.i = "tailed"; 30 + # }; 31 + # } 15 32 , privateBuildPlan ? null 16 33 # Extra parameters. Can be used for ligature mapping. 17 - # It must be a raw toml string. 18 - # 34 + # It must be a raw TOML string. 35 + 19 36 # Ex: 20 - # [[iosevka.compLig]] 21 - # unicode = 57808 # 0xe1d0 22 - # featureTag = 'XHS0' 23 - # sequence = "+>" 37 + # extraParameters = '' 38 + # [[iosevka.compLig]] 39 + # unicode = 57808 # 0xe1d0 40 + # featureTag = 'XHS0' 41 + # sequence = "+>" 42 + # ''; 24 43 , extraParameters ? null 25 44 # Custom font set name. Required if any custom settings above. 26 45 , set ? null }: 27 46 28 47 assert (privateBuildPlan != null) -> set != null; 48 + assert (extraParameters != null) -> set != null; 29 49 30 50 let 31 51 # We don't know the attribute name for the Iosevka package as it ··· 54 74 ttfautohint-nox 55 75 ]; 56 76 57 - privateBuildPlanJSON = 58 - builtins.toJSON { buildPlans.${pname} = privateBuildPlan; }; 77 + buildPlan = 78 + if builtins.isAttrs privateBuildPlan 79 + then builtins.toJSON { buildPlans.${pname} = privateBuildPlan; } 80 + else privateBuildPlan; 81 + 59 82 inherit extraParameters; 60 - passAsFile = [ "privateBuildPlanJSON" "extraParameters" ]; 83 + passAsFile = [ "buildPlan" "extraParameters" ]; 61 84 62 85 configurePhase = '' 63 86 runHook preConfigure 64 - ${lib.optionalString (privateBuildPlan != null) '' 65 - remarshal -i "$privateBuildPlanJSONPath" -o private-build-plans.toml -if json -of toml 87 + ${lib.optionalString (builtins.isAttrs privateBuildPlan) '' 88 + remarshal -i "$buildPlanPath" -o private-build-plans.toml -if json -of toml 89 + ''} 90 + ${lib.optionalString (builtins.isString privateBuildPlan) '' 91 + cp "$buildPlanPath" private-build-plans.toml 66 92 ''} 67 93 ${lib.optionalString (extraParameters != null) '' 68 94 echo -e "\n" >> params/parameters.toml
+4 -5
pkgs/development/libraries/grpc/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, zlib, c-ares, pkg-config, openssl, protobuf 2 - , gflags, abseil-cpp, libnsl 2 + , gflags, libnsl 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - version = "1.34.1"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too 6 + version = "1.35.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too 7 7 pname = "grpc"; 8 8 src = fetchFromGitHub { 9 9 owner = "grpc"; 10 10 repo = "grpc"; 11 11 rev = "v${version}"; 12 - sha256 = "0p6si9i0gg885ag2x87a7jyzhgd5lhx2bh2vjj2ra1jn6y3vg6qk"; 12 + sha256 = "0vxgp3kqxsglavzs91ybpkkh7aaywxcryacp5z3z6dpsgmw0mscd"; 13 13 fetchSubmodules = true; 14 14 }; 15 15 patches = [ ··· 21 21 ]; 22 22 23 23 nativeBuildInputs = [ cmake pkg-config ]; 24 - buildInputs = [ zlib c-ares c-ares.cmake-config openssl protobuf gflags abseil-cpp ] 24 + buildInputs = [ zlib c-ares c-ares.cmake-config openssl protobuf gflags ] 25 25 ++ lib.optionals stdenv.isLinux [ libnsl ]; 26 26 27 27 cmakeFlags = ··· 30 30 "-DgRPC_SSL_PROVIDER=package" 31 31 "-DgRPC_PROTOBUF_PROVIDER=package" 32 32 "-DgRPC_GFLAGS_PROVIDER=package" 33 - "-DgRPC_ABSL_PROVIDER=package" 34 33 "-DBUILD_SHARED_LIBS=ON" 35 34 "-DCMAKE_SKIP_BUILD_RPATH=OFF" 36 35 ];
+1 -1
pkgs/development/node-packages/node-packages.json
··· 115 115 , "indium" 116 116 , "insect" 117 117 , "ionic" 118 - , {"iosevka": "https://github.com/be5invis/Iosevka/archive/v3.7.1.tar.gz"} 118 + , {"iosevka": "https://github.com/be5invis/Iosevka/archive/v4.5.0.tar.gz"} 119 119 , "jake" 120 120 , "javascript-typescript-langserver" 121 121 , "joplin"
+611 -828
pkgs/development/node-packages/node-packages.nix
··· 22 22 sha512 = "t4WmWoGV9gyzypwG3y3JlcK2t8fKLtvzBA7xEoFTj9SMPvOuLsf13uh4ikK0RRaaa9RPPWLgFUdOyIRaQvCpwQ=="; 23 23 }; 24 24 }; 25 - "@angular-devkit/architect-0.1101.4" = { 25 + "@angular-devkit/architect-0.1102.0" = { 26 26 name = "_at_angular-devkit_slash_architect"; 27 27 packageName = "@angular-devkit/architect"; 28 - version = "0.1101.4"; 28 + version = "0.1102.0"; 29 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1101.4.tgz"; 31 - sha512 = "yur0mX156ZX1aXE7d8Z1z6sYjDk771iCyijLCN8MCx35lHIPGwMZwsB/dkttTChVHS8wJ+9YZnIucEBoh9ij3g=="; 30 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1102.0.tgz"; 31 + sha512 = "d9Da6SiTiDb5N1avxWLcPHSyWCq3G62TlROXxr32WkcQRko8wtgW5VOzgSkdmY2p6UTSME89naUojfzgu2Wh6g=="; 32 32 }; 33 33 }; 34 34 "@angular-devkit/core-11.0.3" = { ··· 49 49 sha512 = "O2oIcqpQKGvYJH88d/NCgLYZGc9laA1eo2d1s0FH1Udu4c2L+bAsviQqtTKNmzyaqODHrlkt+eKx7uakdwWtnQ=="; 50 50 }; 51 51 }; 52 - "@angular-devkit/core-11.1.4" = { 52 + "@angular-devkit/core-11.2.0" = { 53 53 name = "_at_angular-devkit_slash_core"; 54 54 packageName = "@angular-devkit/core"; 55 - version = "11.1.4"; 55 + version = "11.2.0"; 56 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-11.1.4.tgz"; 58 - sha512 = "xqjUIdMTDNjZ8jkzlDSQbhmTwF2tOLlT0iRI9mb7pN4VIS0LI/Xu0iTqDUrVs0Hqtb9609dz13LXu5zbQSb+cw=="; 57 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-11.2.0.tgz"; 58 + sha512 = "qqYEH8m/bwpngoLDMFuth8ykvoHxQ3aHHnAWfRXz9NXydwSfathG0VSYCctB126sK39JKIn+xq16CQAExxNu+Q=="; 59 59 }; 60 60 }; 61 61 "@angular-devkit/schematics-11.0.3" = { ··· 76 76 sha512 = "6qfR5w1jyk8MC+5Tfimz+Czsq3WlsVoB57dpxSZfhGGsv1Vxc8Q41y5f3BrAyEqHYjcH7NtaoLQoJjtra5KaAg=="; 77 77 }; 78 78 }; 79 - "@angular-devkit/schematics-11.1.4" = { 79 + "@angular-devkit/schematics-11.2.0" = { 80 80 name = "_at_angular-devkit_slash_schematics"; 81 81 packageName = "@angular-devkit/schematics"; 82 - version = "11.1.4"; 82 + version = "11.2.0"; 83 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-11.1.4.tgz"; 85 - sha512 = "WWHmBHPabKgrBDM2M5ayA0OdhonNQHld8NjY8jEdwyWI4xEj23C/qDfgQc8sssvpi4LauKSaPozDELl7ItBPXA=="; 84 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-11.2.0.tgz"; 85 + sha512 = "sMDacACJbA4pykiqgJf/RdW0damcf4mDqErGgEqs/bGG+SBUb8+wgt4cQnUwwVX5V2nMdvv7f0A84rgR6I3G2w=="; 86 86 }; 87 87 }; 88 88 "@angular-devkit/schematics-cli-0.1100.3" = { ··· 337 337 sha512 = "U/hshG5R+SIoW7HVWIdmy1cB7s3ki+r3FpyEZiCgpi4tFgPnX/vynY80ZGSASOIrUM6O7VxOgCZgdt7h97bUGg=="; 338 338 }; 339 339 }; 340 - "@babel/core-7.12.13" = { 340 + "@babel/core-7.12.16" = { 341 341 name = "_at_babel_slash_core"; 342 342 packageName = "@babel/core"; 343 - version = "7.12.13"; 343 + version = "7.12.16"; 344 344 src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/core/-/core-7.12.13.tgz"; 346 - sha512 = "BQKE9kXkPlXHPeqissfxo0lySWJcYdEP0hdtJOH/iJfDdhOCcgtNCjftCJg3qqauB4h+lz2N6ixM++b9DN1Tcw=="; 345 + url = "https://registry.npmjs.org/@babel/core/-/core-7.12.16.tgz"; 346 + sha512 = "t/hHIB504wWceOeaOoONOhu+gX+hpjfeN6YRBT209X/4sibZQfSF1I0HFRRlBe97UZZosGx5XwUg1ZgNbelmNw=="; 347 347 }; 348 348 }; 349 349 "@babel/core-7.9.0" = { ··· 391 391 sha512 = "CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA=="; 392 392 }; 393 393 }; 394 - "@babel/helper-compilation-targets-7.12.13" = { 394 + "@babel/helper-compilation-targets-7.12.16" = { 395 395 name = "_at_babel_slash_helper-compilation-targets"; 396 396 packageName = "@babel/helper-compilation-targets"; 397 - version = "7.12.13"; 397 + version = "7.12.16"; 398 398 src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.13.tgz"; 400 - sha512 = "dXof20y/6wB5HnLOGyLh/gobsMvDNoekcC+8MCV2iaTd5JemhFkPD73QB+tK3iFC9P0xJC73B6MvKkyUfS9cCw=="; 399 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.16.tgz"; 400 + sha512 = "dBHNEEaZx7F3KoUYqagIhRIeqyyuI65xMndMZ3WwGwEBI609I4TleYQHcrS627vbKyNTXqShoN+fvYD9HuQxAg=="; 401 401 }; 402 402 }; 403 - "@babel/helper-create-class-features-plugin-7.12.13" = { 403 + "@babel/helper-create-class-features-plugin-7.12.16" = { 404 404 name = "_at_babel_slash_helper-create-class-features-plugin"; 405 405 packageName = "@babel/helper-create-class-features-plugin"; 406 - version = "7.12.13"; 406 + version = "7.12.16"; 407 407 src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.13.tgz"; 409 - sha512 = "Vs/e9wv7rakKYeywsmEBSRC9KtmE7Px+YBlESekLeJOF0zbGUicGfXSNi3o+tfXSNS48U/7K9mIOOCR79Cl3+Q=="; 408 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.16.tgz"; 409 + sha512 = "KbSEj8l9zYkMVHpQqM3wJNxS1d9h3U9vm/uE5tpjMbaj3lTp+0noe3KPsV5dSD9jxKnf9jO9Ip9FX5PKNZCKow=="; 410 410 }; 411 411 }; 412 - "@babel/helper-create-regexp-features-plugin-7.12.13" = { 412 + "@babel/helper-create-regexp-features-plugin-7.12.16" = { 413 413 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 414 414 packageName = "@babel/helper-create-regexp-features-plugin"; 415 - version = "7.12.13"; 415 + version = "7.12.16"; 416 416 src = fetchurl { 417 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.13.tgz"; 418 - sha512 = "XC+kiA0J3at6E85dL5UnCYfVOcIZ834QcAY0TIpgUVnz0zDzg+0TtvZTnJ4g9L1dPRGe30Qi03XCIS4tYCLtqw=="; 417 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.16.tgz"; 418 + sha512 = "jAcQ1biDYZBdaAxB4yg46/XirgX7jBDiMHDbwYQOgtViLBXGxJpZQ24jutmBqAIB/q+AwB6j+NbBXjKxEY8vqg=="; 419 419 }; 420 420 }; 421 421 "@babel/helper-explode-assignable-expression-7.12.13" = { ··· 454 454 sha512 = "KSC5XSj5HreRhYQtZ3cnSnQwDzgnbdUDEFsxkN0m6Q3WrCRt72xrnZ8+h+pX7YxM7hr87zIO3a/v5p/H3TrnVw=="; 455 455 }; 456 456 }; 457 - "@babel/helper-member-expression-to-functions-7.12.13" = { 457 + "@babel/helper-member-expression-to-functions-7.12.16" = { 458 458 name = "_at_babel_slash_helper-member-expression-to-functions"; 459 459 packageName = "@babel/helper-member-expression-to-functions"; 460 - version = "7.12.13"; 460 + version = "7.12.16"; 461 461 src = fetchurl { 462 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.13.tgz"; 463 - sha512 = "B+7nN0gIL8FZ8SvMcF+EPyB21KnCcZHQZFczCxbiNGV/O0rsrSBlWGLzmtBJ3GMjSVMIm4lpFhR+VdVBuIsUcQ=="; 462 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.16.tgz"; 463 + sha512 = "zYoZC1uvebBFmj1wFAlXwt35JLEgecefATtKp20xalwEK8vHAixLBXTGxNrVGEmTT+gzOThUgr8UEdgtalc1BQ=="; 464 464 }; 465 465 }; 466 466 "@babel/helper-module-imports-7.12.13" = { ··· 553 553 sha512 = "np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="; 554 554 }; 555 555 }; 556 - "@babel/helper-validator-option-7.12.11" = { 556 + "@babel/helper-validator-option-7.12.16" = { 557 557 name = "_at_babel_slash_helper-validator-option"; 558 558 packageName = "@babel/helper-validator-option"; 559 - version = "7.12.11"; 559 + version = "7.12.16"; 560 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz"; 562 - sha512 = "TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw=="; 561 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.16.tgz"; 562 + sha512 = "uCgsDBPUQDvzr11ePPo4TVEocxj8RXjUVSC/Y8N1YpVAI/XDdUwGJu78xmlGhTxj2ntaWM7n9LQdRtyhOzT2YQ=="; 563 563 }; 564 564 }; 565 565 "@babel/helper-wrap-function-7.12.13" = { ··· 589 589 sha512 = "kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww=="; 590 590 }; 591 591 }; 592 - "@babel/parser-7.12.15" = { 592 + "@babel/parser-7.12.16" = { 593 593 name = "_at_babel_slash_parser"; 594 594 packageName = "@babel/parser"; 595 - version = "7.12.15"; 595 + version = "7.12.16"; 596 596 src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.15.tgz"; 598 - sha512 = "AQBOU2Z9kWwSZMd6lNjCX0GUgFonL1wAM1db8L8PMk9UDaGsRCArBkU4Sc+UCM3AE4hjbXx+h58Lb3QT4oRmrA=="; 597 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.16.tgz"; 598 + sha512 = "c/+u9cqV6F0+4Hpq01jnJO+GLp2DdT63ppz9Xa+6cHaajM9VFzK/iDXiKK65YtpeVwu+ctfS6iqlMqRgQRzeCw=="; 599 599 }; 600 600 }; 601 601 "@babel/plugin-external-helpers-7.8.3" = { ··· 625 625 sha512 = "8SCJ0Ddrpwv4T7Gwb33EmW1V9PY5lggTO+A8WjyIwxrSHDUyBw4MtF96ifn1n8H806YlxbVCoKXbbmzD6RD+cA=="; 626 626 }; 627 627 }; 628 - "@babel/plugin-proposal-dynamic-import-7.12.1" = { 628 + "@babel/plugin-proposal-dynamic-import-7.12.16" = { 629 629 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 630 630 packageName = "@babel/plugin-proposal-dynamic-import"; 631 - version = "7.12.1"; 631 + version = "7.12.16"; 632 632 src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz"; 634 - sha512 = "a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ=="; 633 + url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.16.tgz"; 634 + sha512 = "yiDkYFapVxNOCcBfLnsb/qdsliroM+vc3LHiZwS4gh7pFjo5Xq3BDhYBNn3H3ao+hWPvqeeTdU+s+FIvokov+w=="; 635 635 }; 636 636 }; 637 637 "@babel/plugin-proposal-export-default-from-7.12.13" = { ··· 706 706 sha512 = "9+MIm6msl9sHWg58NvqpNpLtuFbmpFYk37x8kgnGzAHvX35E1FyAwSUt5hIkSoWJFSAH+iwU8bJ4fcD1zKXOzg=="; 707 707 }; 708 708 }; 709 - "@babel/plugin-proposal-optional-chaining-7.12.13" = { 709 + "@babel/plugin-proposal-optional-chaining-7.12.16" = { 710 710 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 711 711 packageName = "@babel/plugin-proposal-optional-chaining"; 712 - version = "7.12.13"; 712 + version = "7.12.16"; 713 713 src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.13.tgz"; 715 - sha512 = "0ZwjGfTcnZqyV3y9DSD1Yk3ebp+sIUpT2YDqP8hovzaNZnQq2Kd7PEqa6iOIUDBXBt7Jl3P7YAcEIL5Pz8u09Q=="; 714 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.16.tgz"; 715 + sha512 = "O3ohPwOhkwji5Mckb7F/PJpJVJY3DpPsrt/F0Bk40+QMk9QpAIqeGusHWqu/mYqsM8oBa6TziL/2mbERWsUZjg=="; 716 716 }; 717 717 }; 718 718 "@babel/plugin-proposal-private-methods-7.12.13" = { ··· 1129 1129 sha512 = "MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA=="; 1130 1130 }; 1131 1131 }; 1132 - "@babel/plugin-transform-react-jsx-7.12.13" = { 1132 + "@babel/plugin-transform-react-jsx-7.12.16" = { 1133 1133 name = "_at_babel_slash_plugin-transform-react-jsx"; 1134 1134 packageName = "@babel/plugin-transform-react-jsx"; 1135 - version = "7.12.13"; 1135 + version = "7.12.16"; 1136 1136 src = fetchurl { 1137 - url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.13.tgz"; 1138 - sha512 = "hhXZMYR8t9RvduN2uW4sjl6MRtUhzNE726JvoJhpjhxKgRUVkZqTsA0xc49ALZxQM7H26pZ/lLvB2Yrea9dllA=="; 1137 + url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.16.tgz"; 1138 + sha512 = "dNu0vAbIk8OkqJfGtYF6ADk6jagoyAl+Ks5aoltbAlfoKv8d6yooi3j+kObeSQaCj9PgN6KMZPB90wWyek5TmQ=="; 1139 1139 }; 1140 1140 }; 1141 1141 "@babel/plugin-transform-react-jsx-source-7.12.13" = { ··· 1219 1219 sha512 = "eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ=="; 1220 1220 }; 1221 1221 }; 1222 - "@babel/plugin-transform-typescript-7.12.13" = { 1222 + "@babel/plugin-transform-typescript-7.12.16" = { 1223 1223 name = "_at_babel_slash_plugin-transform-typescript"; 1224 1224 packageName = "@babel/plugin-transform-typescript"; 1225 - version = "7.12.13"; 1225 + version = "7.12.16"; 1226 1226 src = fetchurl { 1227 - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.13.tgz"; 1228 - sha512 = "z1VWskPJxK9tfxoYvePWvzSJC+4pxXr8ArmRm5ofqgi+mwpKg6lvtomkIngBYMJVnKhsFYVysCQLDn//v2RHcg=="; 1227 + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.16.tgz"; 1228 + sha512 = "88hep+B6dtDOiEqtRzwHp2TYO+CN8nbAV3eh5OpBGPsedug9J6y1JwLKzXRIGGQZDC8NlpxpQMIIxcfIW96Wgw=="; 1229 1229 }; 1230 1230 }; 1231 1231 "@babel/plugin-transform-unicode-escapes-7.12.13" = { ··· 1255 1255 sha512 = "X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g=="; 1256 1256 }; 1257 1257 }; 1258 - "@babel/preset-env-7.12.13" = { 1258 + "@babel/preset-env-7.12.16" = { 1259 1259 name = "_at_babel_slash_preset-env"; 1260 1260 packageName = "@babel/preset-env"; 1261 - version = "7.12.13"; 1261 + version = "7.12.16"; 1262 1262 src = fetchurl { 1263 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.13.tgz"; 1264 - sha512 = "JUVlizG8SoFTz4LmVUL8++aVwzwxcvey3N0j1tRbMAXVEy95uQ/cnEkmEKHN00Bwq4voAV3imQGnQvpkLAxsrw=="; 1263 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.16.tgz"; 1264 + sha512 = "BXCAXy8RE/TzX416pD2hsVdkWo0G+tYd16pwnRV4Sc0fRwTLRS/Ssv8G5RLXUGQv7g4FG7TXkdDJxCjQ5I+Zjg=="; 1265 1265 }; 1266 1266 }; 1267 1267 "@babel/preset-flow-7.12.13" = { ··· 1291 1291 sha512 = "dStnEQgejNYIHFNACdDCigK4BF7wgW6Zahv9Dc2un7rGjbeVtZhBfR3sy0I7ZJOhBexkFxVdMZ5hqmll7BFShw=="; 1292 1292 }; 1293 1293 }; 1294 - "@babel/preset-typescript-7.12.13" = { 1294 + "@babel/preset-typescript-7.12.16" = { 1295 1295 name = "_at_babel_slash_preset-typescript"; 1296 1296 packageName = "@babel/preset-typescript"; 1297 - version = "7.12.13"; 1297 + version = "7.12.16"; 1298 1298 src = fetchurl { 1299 - url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.13.tgz"; 1300 - sha512 = "gYry7CeXwD2wtw5qHzrtzKaShEhOfTmKb4i0ZxeYBcBosN5VuAudsNbjX7Oj5EAfQ3K4s4HsVMQRRcqGsPvs2A=="; 1299 + url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.16.tgz"; 1300 + sha512 = "IrYNrpDSuQfNHeqh7gsJsO35xTGyAyGkI1VxOpBEADFtxCqZ77a1RHbJqM3YJhroj7qMkNMkNtcw0lqeZUrzow=="; 1301 1301 }; 1302 1302 }; 1303 1303 "@babel/register-7.12.13" = { ··· 3469 3469 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 3470 3470 }; 3471 3471 }; 3472 - "@netlify/build-9.1.1" = { 3472 + "@netlify/build-9.1.2" = { 3473 3473 name = "_at_netlify_slash_build"; 3474 3474 packageName = "@netlify/build"; 3475 - version = "9.1.1"; 3475 + version = "9.1.2"; 3476 3476 src = fetchurl { 3477 - url = "https://registry.npmjs.org/@netlify/build/-/build-9.1.1.tgz"; 3478 - sha512 = "e2oCBUfq0/odlcopN3mv9kVbTywhvTAk6V7r8AutnHFsLj9SKcb/RbmLIJQGJWUUAdYp2eeC52T3V4QvHM6uZQ=="; 3477 + url = "https://registry.npmjs.org/@netlify/build/-/build-9.1.2.tgz"; 3478 + sha512 = "GvAx6f3T8MZRHDEPNOsGdsAfW188FjKTGpA04G2QoMJdLHgzAp6gI6J6m7B9b16Sw7qs5U+JX2A9JjZRHmOAsg=="; 3479 3479 }; 3480 3480 }; 3481 3481 "@netlify/cache-utils-1.0.6" = { ··· 3505 3505 sha512 = "vqy9wbBRP8qWnkzA/OQsThr1+cfqapMrORJ4hWcrjhIPRmXIJtwB6OWuLIUalMeSGCwqZjYpKfudc4BLuxxvjw=="; 3506 3506 }; 3507 3507 }; 3508 - "@netlify/functions-utils-1.3.11" = { 3508 + "@netlify/functions-utils-1.3.12" = { 3509 3509 name = "_at_netlify_slash_functions-utils"; 3510 3510 packageName = "@netlify/functions-utils"; 3511 - version = "1.3.11"; 3511 + version = "1.3.12"; 3512 3512 src = fetchurl { 3513 - url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.11.tgz"; 3514 - sha512 = "cGVOQ2BubMHfUNAGpqAcFmpAm2gh1A1aDD0cIMvZ48bIve0153AYCSvQXVFBqxxdLQbcfN2VHUd9LkSdu9+Hyg=="; 3513 + url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.12.tgz"; 3514 + sha512 = "u2t6AVKsg9MuXicYETMqWubOXUayNdCU0GuMl2u5T3bz9E7mVCnCB4VVkEVDqlC8GnrdbVHzEu+OPmbv+dkzJA=="; 3515 3515 }; 3516 3516 }; 3517 3517 "@netlify/git-utils-1.0.7" = { ··· 3703 3703 sha512 = "oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q=="; 3704 3704 }; 3705 3705 }; 3706 - "@npmcli/git-2.0.4" = { 3706 + "@npmcli/git-2.0.6" = { 3707 3707 name = "_at_npmcli_slash_git"; 3708 3708 packageName = "@npmcli/git"; 3709 - version = "2.0.4"; 3709 + version = "2.0.6"; 3710 3710 src = fetchurl { 3711 - url = "https://registry.npmjs.org/@npmcli/git/-/git-2.0.4.tgz"; 3712 - sha512 = "OJZCmJ9DNn1cz9HPXXsPmUBnqaArot3CGYo63CyajHQk+g87rPXVOJByGsskQJhPsUUEXJcsZ2Q6bWd2jSwnBA=="; 3711 + url = "https://registry.npmjs.org/@npmcli/git/-/git-2.0.6.tgz"; 3712 + sha512 = "a1MnTfeRPBaKbFY07fd+6HugY1WAkKJzdiJvlRub/9o5xz2F/JtPacZZapx5zRJUQFIzSL677vmTSxEcDMrDbg=="; 3713 3713 }; 3714 3714 }; 3715 3715 "@npmcli/installed-package-contents-1.0.7" = { ··· 3721 3721 sha512 = "9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw=="; 3722 3722 }; 3723 3723 }; 3724 - "@npmcli/move-file-1.1.1" = { 3724 + "@npmcli/move-file-1.1.2" = { 3725 3725 name = "_at_npmcli_slash_move-file"; 3726 3726 packageName = "@npmcli/move-file"; 3727 - version = "1.1.1"; 3727 + version = "1.1.2"; 3728 3728 src = fetchurl { 3729 - url = "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.1.tgz"; 3730 - sha512 = "LtWTicuF2wp7PNTuyCwABx7nNG+DnzSE8gN0iWxkC6mpgm/iOPu0ZMTkXuCxmJxtWFsDxUaixM9COSNJEMUfuQ=="; 3729 + url = "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz"; 3730 + sha512 = "1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="; 3731 3731 }; 3732 3732 }; 3733 3733 "@npmcli/node-gyp-1.0.2" = { ··· 4099 4099 sha512 = "2TUGhTGkhgnxTciHCNAILPSeyXageJewRqfP9wOrx65sKd/jgvNYoY8nYf4EVWVMirDOxKDsmYgUkjdQrwb2dg=="; 4100 4100 }; 4101 4101 }; 4102 - "@ot-builder/bin-composite-types-0.10.37" = { 4102 + "@ot-builder/bin-composite-types-1.0.1" = { 4103 4103 name = "_at_ot-builder_slash_bin-composite-types"; 4104 4104 packageName = "@ot-builder/bin-composite-types"; 4105 - version = "0.10.37"; 4105 + version = "1.0.1"; 4106 4106 src = fetchurl { 4107 - url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-0.10.37.tgz"; 4108 - sha512 = "TJ4mDLP0sHES4HjUry9fJTEHGb8bC51nF0OqBDR+lNCt3OHi5VVtE1Ph8QqxoglfTypLfTyXRcP8kXC+vV0Q/g=="; 4107 + url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.0.1.tgz"; 4108 + sha512 = "OwX0d7IN7LhgeWiPPftMTcGYVisMPWXuvuLQHdc7gO+1Sg/7+XbMwXbdYI1PvJwqNlqKPE5+yVesjgVtt1RRwQ=="; 4109 4109 }; 4110 4110 }; 4111 - "@ot-builder/bin-util-0.10.37" = { 4111 + "@ot-builder/bin-util-1.0.1" = { 4112 4112 name = "_at_ot-builder_slash_bin-util"; 4113 4113 packageName = "@ot-builder/bin-util"; 4114 - version = "0.10.37"; 4114 + version = "1.0.1"; 4115 4115 src = fetchurl { 4116 - url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-0.10.37.tgz"; 4117 - sha512 = "RR93ek6moT25cNC3eCc9QsGWxj3vOlTfryNybDTUVFEwhXi2EWXJ+cOvjKPOxplNY17YxzxffhqXX0qdX/Y6JQ=="; 4116 + url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.0.1.tgz"; 4117 + sha512 = "LN6iR+Y/gmRkRoxW6VV5U1SIDRu9zQ5ZshePQukp1+gdJQJBrhmCrreL4XEEOQ/3AC67yuj6pAPi70jagqKxyA=="; 4118 4118 }; 4119 4119 }; 4120 - "@ot-builder/cli-help-shower-0.10.37" = { 4120 + "@ot-builder/cli-help-shower-1.0.1" = { 4121 4121 name = "_at_ot-builder_slash_cli-help-shower"; 4122 4122 packageName = "@ot-builder/cli-help-shower"; 4123 - version = "0.10.37"; 4123 + version = "1.0.1"; 4124 4124 src = fetchurl { 4125 - url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-0.10.37.tgz"; 4126 - sha512 = "nkSDmkUROYEVAkZqd60p0WYvWAIDyv2EVN0Bon7X8fxk4Kg92ApD6yzvRUY6WrZKIV+AAM37UUodURgLG3c/Vg=="; 4125 + url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.0.1.tgz"; 4126 + sha512 = "oCsKX1ecjd1L8uOmU1z0YziizRoOWN4NOhnDU+sLGtPYPnM9bOzKprfY6W99NFkTYu27N19glwFUPM/s0F+nNA=="; 4127 4127 }; 4128 4128 }; 4129 - "@ot-builder/cli-proc-0.10.37" = { 4129 + "@ot-builder/cli-proc-1.0.1" = { 4130 4130 name = "_at_ot-builder_slash_cli-proc"; 4131 4131 packageName = "@ot-builder/cli-proc"; 4132 - version = "0.10.37"; 4132 + version = "1.0.1"; 4133 4133 src = fetchurl { 4134 - url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-0.10.37.tgz"; 4135 - sha512 = "5X+DBnVQrByPwGz8UlVnsldpxIKgwbZG3RndI75y2HZc/rZ5fgaAuTyjVhqxrIpLeNBv3InnTybu3QBbAouiuQ=="; 4134 + url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.0.1.tgz"; 4135 + sha512 = "lR90Mb/Wmm2GZH0tBIGjfZhh/VxQl5YiwXVjQIo7UM5iFviHf44lYqVkn0vyE9D1IT5E/tA1OzDrjpIBG7WBKQ=="; 4136 4136 }; 4137 4137 }; 4138 - "@ot-builder/cli-shared-0.10.37" = { 4138 + "@ot-builder/cli-shared-1.0.1" = { 4139 4139 name = "_at_ot-builder_slash_cli-shared"; 4140 4140 packageName = "@ot-builder/cli-shared"; 4141 - version = "0.10.37"; 4141 + version = "1.0.1"; 4142 4142 src = fetchurl { 4143 - url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-0.10.37.tgz"; 4144 - sha512 = "tiRMqvsiQ+TlP+00kMC93AW1ti9ip6kTGstjzXkDhYD9nulyyGUO6Kwx27M0DS4hFcMQXeUDd65JAOaDN5XVcQ=="; 4143 + url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.0.1.tgz"; 4144 + sha512 = "I9Zd7gRiZdD+MFr13A9zH2CRvEkjZX91OfkDiAxpDM9ncKlnlZpbbIVp3nh0VCbUAad9lrdc+xI+MMwOEPKhIA=="; 4145 4145 }; 4146 4146 }; 4147 - "@ot-builder/common-impl-0.10.37" = { 4147 + "@ot-builder/common-impl-1.0.1" = { 4148 4148 name = "_at_ot-builder_slash_common-impl"; 4149 4149 packageName = "@ot-builder/common-impl"; 4150 - version = "0.10.37"; 4150 + version = "1.0.1"; 4151 4151 src = fetchurl { 4152 - url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-0.10.37.tgz"; 4153 - sha512 = "oEl8l7313MfTRoouKGaPw5oDO8W8vq7EbS6Zg7GIh7yX5cjdXfvjS8pb9Nn2MUPcBJZ7nCGWO4mCYMSNT9Llug=="; 4152 + url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.0.1.tgz"; 4153 + sha512 = "v0r2tPYO8MTmx6Eo6cPGCXYZe2ScX4zA9xAfqvXn//h0sr4K11k3F6ELLDY64zKASOhITcWgznU3Prt3ubpkjg=="; 4154 4154 }; 4155 4155 }; 4156 - "@ot-builder/errors-0.10.37" = { 4156 + "@ot-builder/errors-1.0.1" = { 4157 4157 name = "_at_ot-builder_slash_errors"; 4158 4158 packageName = "@ot-builder/errors"; 4159 - version = "0.10.37"; 4159 + version = "1.0.1"; 4160 4160 src = fetchurl { 4161 - url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-0.10.37.tgz"; 4162 - sha512 = "1dQK50SBwEP2QWV5NBZAYTIqvIOXGQTFS4LVAUYBhhXYgBkbh58g8Cyhd7MDqf/VlCohuhZ/VxHZDjFsZse0Kg=="; 4161 + url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.0.1.tgz"; 4162 + sha512 = "66pRCyZq/uESMHTb6Wz3FYwUr6YYnuJ+sJMGyfvOCCvwZzlUYiZZ9r0lPjh/lvZ3j1UYFG6OvpIgUeBCqean9w=="; 4163 4163 }; 4164 4164 }; 4165 - "@ot-builder/io-bin-cff-0.10.37" = { 4165 + "@ot-builder/io-bin-cff-1.0.1" = { 4166 4166 name = "_at_ot-builder_slash_io-bin-cff"; 4167 4167 packageName = "@ot-builder/io-bin-cff"; 4168 - version = "0.10.37"; 4168 + version = "1.0.1"; 4169 4169 src = fetchurl { 4170 - url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-0.10.37.tgz"; 4171 - sha512 = "Cyhw7PddXzzRwflhBNX2ta+kRmfCGhS8v+XtTOmS/WX/bPwJRJInf4DGYB+NmhCfK51dmNxA9SJEf/lHsVoSrw=="; 4170 + url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.0.1.tgz"; 4171 + sha512 = "rEuNFXtyU0/a2xpqTHajIZ8YgEkVdB7XImODrs308zlkHdaWL6akOUgBNr866qj6kVWEdfnXkcF0ZCaRJYrCzA=="; 4172 4172 }; 4173 4173 }; 4174 - "@ot-builder/io-bin-encoding-0.10.37" = { 4174 + "@ot-builder/io-bin-encoding-1.0.1" = { 4175 4175 name = "_at_ot-builder_slash_io-bin-encoding"; 4176 4176 packageName = "@ot-builder/io-bin-encoding"; 4177 - version = "0.10.37"; 4177 + version = "1.0.1"; 4178 4178 src = fetchurl { 4179 - url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-0.10.37.tgz"; 4180 - sha512 = "N2N0aJMz/pyt/TEgo0d9mlJQuOEcYf63p6ZPxCgnaiweb8QRFQa71WoWqlHLrZYKQRg8TU1xdRrrLzn6MpV/KA=="; 4179 + url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.0.1.tgz"; 4180 + sha512 = "50IRjuNn2vJny5QXFcEp7EccfHEVZ8TTp4TdA6w6pyNtqxyUSHukrqJTpnO30jitNS+NRSqdoI9EHDgZh2Z5IQ=="; 4181 4181 }; 4182 4182 }; 4183 - "@ot-builder/io-bin-ext-private-0.10.37" = { 4183 + "@ot-builder/io-bin-ext-private-1.0.1" = { 4184 4184 name = "_at_ot-builder_slash_io-bin-ext-private"; 4185 4185 packageName = "@ot-builder/io-bin-ext-private"; 4186 - version = "0.10.37"; 4186 + version = "1.0.1"; 4187 4187 src = fetchurl { 4188 - url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-0.10.37.tgz"; 4189 - sha512 = "WO/omCDnkA+4M6OTSATzSfDRCpHQPkbm2l8HjVEvCj9lENEGDlB10qVUfHhS9OJRGyQ1zC2Sgz1uCP7fUPmpPQ=="; 4188 + url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.0.1.tgz"; 4189 + sha512 = "+vWNtsB9YDoM6bYcADfQEw5g9BIM1qbNlYDtntas/3BcEkjtMC2hUmHfkjPYJCaLpJSROUTqH9n+3Ih+OLgvRw=="; 4190 4190 }; 4191 4191 }; 4192 - "@ot-builder/io-bin-font-0.10.37" = { 4192 + "@ot-builder/io-bin-font-1.0.1" = { 4193 4193 name = "_at_ot-builder_slash_io-bin-font"; 4194 4194 packageName = "@ot-builder/io-bin-font"; 4195 - version = "0.10.37"; 4195 + version = "1.0.1"; 4196 4196 src = fetchurl { 4197 - url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-0.10.37.tgz"; 4198 - sha512 = "fN5UpZ1YnAiU9qLTH/bhzNnL7dTPdDNoDKbcfoEYcBF0HxvbGM7nOqgOe95HP20uUGO9z6p6A7jdkcCIgM/+JA=="; 4197 + url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.0.1.tgz"; 4198 + sha512 = "GQ605nx70kUD3Mu+4RZ7+GyO5Yp6zGG4+Lrw6Fpmyd7aCTchCeYkHAIAuIUtzkTo/xKTg+MDQqHUK1a9V9hQpw=="; 4199 4199 }; 4200 4200 }; 4201 - "@ot-builder/io-bin-glyph-store-0.10.37" = { 4201 + "@ot-builder/io-bin-glyph-store-1.0.1" = { 4202 4202 name = "_at_ot-builder_slash_io-bin-glyph-store"; 4203 4203 packageName = "@ot-builder/io-bin-glyph-store"; 4204 - version = "0.10.37"; 4204 + version = "1.0.1"; 4205 4205 src = fetchurl { 4206 - url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-0.10.37.tgz"; 4207 - sha512 = "g2GvPbzcNSSUcs/TmjpaLfCgDUDOkeO5/BwZsUyF8vesHdZXzCLIuZ34Hla18kDFNEujNY5lTYOblin9MLsuCw=="; 4206 + url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.0.1.tgz"; 4207 + sha512 = "O51k7dReVjls62SfpIh+bNv053dxqRq+fbHBwU2mXo/klKk+T7NIQvaWqZpomUFlY3nrNv9AOAlAHZzjkHyIeA=="; 4208 4208 }; 4209 4209 }; 4210 - "@ot-builder/io-bin-layout-0.10.37" = { 4210 + "@ot-builder/io-bin-layout-1.0.1" = { 4211 4211 name = "_at_ot-builder_slash_io-bin-layout"; 4212 4212 packageName = "@ot-builder/io-bin-layout"; 4213 - version = "0.10.37"; 4213 + version = "1.0.1"; 4214 4214 src = fetchurl { 4215 - url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-0.10.37.tgz"; 4216 - sha512 = "8uEvHSC5X1bxBBNEKVz+/5yedVStOSFndAHI86pCcEim8538Ib/jZTTcwSlBs4cg4r4QDJ8EekkOt0TFjvY0qA=="; 4215 + url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.0.1.tgz"; 4216 + sha512 = "dfdqHp77r5jixq0E/7v/PyrMWVKVtZPCEAa7QonPIfFxoG5a/nq9hzuXSLldg8GxuUXzEqV3waXB9sSo7KpOCg=="; 4217 4217 }; 4218 4218 }; 4219 - "@ot-builder/io-bin-metadata-0.10.37" = { 4219 + "@ot-builder/io-bin-metadata-1.0.1" = { 4220 4220 name = "_at_ot-builder_slash_io-bin-metadata"; 4221 4221 packageName = "@ot-builder/io-bin-metadata"; 4222 - version = "0.10.37"; 4222 + version = "1.0.1"; 4223 4223 src = fetchurl { 4224 - url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-0.10.37.tgz"; 4225 - sha512 = "hvb+b11sYjHhRQBBCEo0Ijwk62v9S+HMCydL4EHzWxWBtEXL6ELyqG3JeWDWbwFnQ1R/gHVjHOHacaW/8NsPYw=="; 4224 + url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.0.1.tgz"; 4225 + sha512 = "c5DMb048oMO3WKkeszVif5OVN1ZCEGexBjPBS06zIeRB3F0X+/ZjCjbtx6WWXRvF9DkZDrDMAFDmG3dAhtPvdA=="; 4226 4226 }; 4227 4227 }; 4228 - "@ot-builder/io-bin-metric-0.10.37" = { 4228 + "@ot-builder/io-bin-metric-1.0.1" = { 4229 4229 name = "_at_ot-builder_slash_io-bin-metric"; 4230 4230 packageName = "@ot-builder/io-bin-metric"; 4231 - version = "0.10.37"; 4231 + version = "1.0.1"; 4232 4232 src = fetchurl { 4233 - url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-0.10.37.tgz"; 4234 - sha512 = "AL38lT4RPUTJ8I/gDu0zuW6F5drcIzhoDN1hPsmMwsQLApx+1Ea/7gJipWfU4ppE+R9dpULrHOyH3EdCH59owA=="; 4233 + url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.0.1.tgz"; 4234 + sha512 = "vRodhi6NOZ3J91XtnhNRC/i4FyUhV4xFA3kavsJvuRa6kmubSmkqoH1xYGgIxvRxi3pRdfojGI9+a/usZ5DikA=="; 4235 4235 }; 4236 4236 }; 4237 - "@ot-builder/io-bin-name-0.10.37" = { 4237 + "@ot-builder/io-bin-name-1.0.1" = { 4238 4238 name = "_at_ot-builder_slash_io-bin-name"; 4239 4239 packageName = "@ot-builder/io-bin-name"; 4240 - version = "0.10.37"; 4240 + version = "1.0.1"; 4241 4241 src = fetchurl { 4242 - url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-0.10.37.tgz"; 4243 - sha512 = "KBgTi4FdMdo/CJoPEL3HU1910GS42Lfw03BEwn/AXmv8mZy4q4DkhSI5jFH9xf2g9d67Rm9Ms4IR01OtZIdasg=="; 4242 + url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.0.1.tgz"; 4243 + sha512 = "GnOPDSjIFG2uR2tbEondXqEt2ArISyTn7yXJbYM3AG4hdY52xn/mFcEvidgHEYLDDOkxuxoNTBDnbeCg3LxEyA=="; 4244 4244 }; 4245 4245 }; 4246 - "@ot-builder/io-bin-sfnt-0.10.37" = { 4246 + "@ot-builder/io-bin-sfnt-1.0.1" = { 4247 4247 name = "_at_ot-builder_slash_io-bin-sfnt"; 4248 4248 packageName = "@ot-builder/io-bin-sfnt"; 4249 - version = "0.10.37"; 4249 + version = "1.0.1"; 4250 4250 src = fetchurl { 4251 - url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-0.10.37.tgz"; 4252 - sha512 = "HzYvTaydmgxTRr7o5sichmc0j4TJcFbZfhf3kU8fE2KUdagi+Ia9jms3YWz+AVFaxkd6vp7xAKSgoaYggXWtcQ=="; 4251 + url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.0.1.tgz"; 4252 + sha512 = "5TjEG3bEthvgn/LlQT/c2wSiPUeY+7jmfPr6+7G839avl/31FwxYIbhCjrjWbg/ceuo8NNRxvmi7H+m1HwjcBg=="; 4253 4253 }; 4254 4254 }; 4255 - "@ot-builder/io-bin-ttf-0.10.37" = { 4255 + "@ot-builder/io-bin-ttf-1.0.1" = { 4256 4256 name = "_at_ot-builder_slash_io-bin-ttf"; 4257 4257 packageName = "@ot-builder/io-bin-ttf"; 4258 - version = "0.10.37"; 4258 + version = "1.0.1"; 4259 4259 src = fetchurl { 4260 - url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-0.10.37.tgz"; 4261 - sha512 = "nLILmjrsN3J9HqVQP8AqfTSNdaIJaB7V/k5Csu+lFS6Qeozkpm5C43WFb+pjTo9rO+3ZUyQKtN0dBez6Mu5zfA=="; 4260 + url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.0.1.tgz"; 4261 + sha512 = "nYRGtMLRDZdrSkCxp6sDjFeSeOEsCDTMFWBZrNSeRKINSvDmXpVJQCKLqx+TBZBykNb9Cf7+iCuNG5YfNUiEGg=="; 4262 4262 }; 4263 4263 }; 4264 - "@ot-builder/ot-0.10.37" = { 4264 + "@ot-builder/ot-1.0.1" = { 4265 4265 name = "_at_ot-builder_slash_ot"; 4266 4266 packageName = "@ot-builder/ot"; 4267 - version = "0.10.37"; 4267 + version = "1.0.1"; 4268 4268 src = fetchurl { 4269 - url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-0.10.37.tgz"; 4270 - sha512 = "H2OhGBya1uhb3LNbDn1uYhD7VH+RxVIc//DjPB9TTjRAxepzJhtDQA+xHr44Pfh+/gMhzOg6IZaE6w2hKCOi+A=="; 4269 + url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.0.1.tgz"; 4270 + sha512 = "l+nQjrTWO6De0OkX1ETC+7Pr8gArJL5L+2vhYdktiqe0tAC/odmu/dVINMenqOufC+DVzJLHhCyFNT/HrukGCA=="; 4271 4271 }; 4272 4272 }; 4273 - "@ot-builder/ot-encoding-0.10.37" = { 4273 + "@ot-builder/ot-encoding-1.0.1" = { 4274 4274 name = "_at_ot-builder_slash_ot-encoding"; 4275 4275 packageName = "@ot-builder/ot-encoding"; 4276 - version = "0.10.37"; 4276 + version = "1.0.1"; 4277 4277 src = fetchurl { 4278 - url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-0.10.37.tgz"; 4279 - sha512 = "xuSnN3LD3v6ovkHLeZebM8z4PYZkpW6tVrl2HqRaujIjuR0LpBSWQcLwqI1B8xUwfvpdPrmRABXGTDQEfH7XbA=="; 4278 + url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.0.1.tgz"; 4279 + sha512 = "eY1L/Waa9J7OAu5xaggvied4qKnJobpfELVcrDTdsR85F7JJQMdV2P1o9oRS0tzf6nHMfhkCihV5IlLqLxS1eQ=="; 4280 4280 }; 4281 4281 }; 4282 - "@ot-builder/ot-ext-private-0.10.37" = { 4282 + "@ot-builder/ot-ext-private-1.0.1" = { 4283 4283 name = "_at_ot-builder_slash_ot-ext-private"; 4284 4284 packageName = "@ot-builder/ot-ext-private"; 4285 - version = "0.10.37"; 4285 + version = "1.0.1"; 4286 4286 src = fetchurl { 4287 - url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-0.10.37.tgz"; 4288 - sha512 = "dZk0SedGSAvmmHuY+kwqICz0ptrX0rvWVitp5nF/0kXS1sUr5x2xXrGIFm6/ZatyYek5tdGIMy6OjUyfv2lEew=="; 4287 + url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.0.1.tgz"; 4288 + sha512 = "VTagNcyvtC9EmfVHDAni78dYX97k+Hd1/ruDRSPAJhttLA5xiLWah9xAuPeQtBcglFx7375N8qA9f6CQgFBrBA=="; 4289 4289 }; 4290 4290 }; 4291 - "@ot-builder/ot-glyphs-0.10.37" = { 4291 + "@ot-builder/ot-glyphs-1.0.1" = { 4292 4292 name = "_at_ot-builder_slash_ot-glyphs"; 4293 4293 packageName = "@ot-builder/ot-glyphs"; 4294 - version = "0.10.37"; 4294 + version = "1.0.1"; 4295 4295 src = fetchurl { 4296 - url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-0.10.37.tgz"; 4297 - sha512 = "EGO3Ok6xOZLrpViokybKkCD5fyV/TOOdzD2WD5hNC9OUT3uSWUCVp8O5CN1xbJUC47Xsbx8L3WTKPLMDVfyurQ=="; 4296 + url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.0.1.tgz"; 4297 + sha512 = "FZfcl61XFO393QOBZK8hzRAdavVHW5tUKEzkZzlnDWJEhlZNUTqycn+nJWc5rwfMtQnnJ4UQ1DdJDUTaDZ2VHQ=="; 4298 4298 }; 4299 4299 }; 4300 - "@ot-builder/ot-layout-0.10.37" = { 4300 + "@ot-builder/ot-layout-1.0.1" = { 4301 4301 name = "_at_ot-builder_slash_ot-layout"; 4302 4302 packageName = "@ot-builder/ot-layout"; 4303 - version = "0.10.37"; 4303 + version = "1.0.1"; 4304 4304 src = fetchurl { 4305 - url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-0.10.37.tgz"; 4306 - sha512 = "sK0ERPlrujMfd/1yqxX5In5AZRbV/vqR0gCyZavd2iOWA5IrPS0jeUcF6TmpnWqSt8IvKL/syPHm2VEmEBEGtQ=="; 4305 + url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.0.1.tgz"; 4306 + sha512 = "1Kes3RWBnP+k6bCtQAASquh4zDHvJI7BcD+vS0FyerwvniarxGxw4CELmLN87xGrQBybmez/aftqXnRmhsjrRQ=="; 4307 4307 }; 4308 4308 }; 4309 - "@ot-builder/ot-metadata-0.10.37" = { 4309 + "@ot-builder/ot-metadata-1.0.1" = { 4310 4310 name = "_at_ot-builder_slash_ot-metadata"; 4311 4311 packageName = "@ot-builder/ot-metadata"; 4312 - version = "0.10.37"; 4312 + version = "1.0.1"; 4313 4313 src = fetchurl { 4314 - url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-0.10.37.tgz"; 4315 - sha512 = "KO+MhJXSHCVMRE0sVoqI/W91/SYC5JUM1yc09OvlHdb5RlCYk8RWDr/1G2VKIQifrbMMXpzeVVwAVOjKxOlH2w=="; 4314 + url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.0.1.tgz"; 4315 + sha512 = "YO6WGvXyhvSCmsGdkK/L37YzoMpFn6A8YoDgMJk4R0MPjoJuVta4srDv41RvOLVr9oDiYtiPFRw8BjkdEWrMbg=="; 4316 4316 }; 4317 4317 }; 4318 - "@ot-builder/ot-name-0.10.37" = { 4318 + "@ot-builder/ot-name-1.0.1" = { 4319 4319 name = "_at_ot-builder_slash_ot-name"; 4320 4320 packageName = "@ot-builder/ot-name"; 4321 - version = "0.10.37"; 4321 + version = "1.0.1"; 4322 4322 src = fetchurl { 4323 - url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-0.10.37.tgz"; 4324 - sha512 = "LIXAd02w3PIUaepM5Esct+Z1iUu/Lq/kxd3WNUL0OTmauZF2oh0qdK3dQHLtFBHOMHoWIXUKjOPDLw/YP1dUwA=="; 4323 + url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.0.1.tgz"; 4324 + sha512 = "6L4SAwLALNOjifhX47HvXPkGKcX1HfpeGnzFtMDtgUi3muiYrKb3YJffV8vk8V1EQhiVTWJ1j7441SS6cY2m8g=="; 4325 4325 }; 4326 4326 }; 4327 - "@ot-builder/ot-sfnt-0.10.37" = { 4327 + "@ot-builder/ot-sfnt-1.0.1" = { 4328 4328 name = "_at_ot-builder_slash_ot-sfnt"; 4329 4329 packageName = "@ot-builder/ot-sfnt"; 4330 - version = "0.10.37"; 4330 + version = "1.0.1"; 4331 4331 src = fetchurl { 4332 - url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-0.10.37.tgz"; 4333 - sha512 = "VICXFcp8yzi6zkd4nwLrYh7p3Yx86KMqDRV39ODtM1g/2r887beIfBOONE1ll4Dy6FMXbtvWY1+OEcMPEjD+LA=="; 4332 + url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.0.1.tgz"; 4333 + sha512 = "jmojZ36QbcDUIXX+UPYlKtkxklKSlV35Cpa4P4vWVAISqocmX3fFIQ+Xz7Ub1XeLnkcIf86ruOrDyoSytF5NHg=="; 4334 4334 }; 4335 4335 }; 4336 - "@ot-builder/ot-standard-glyph-namer-0.10.37" = { 4336 + "@ot-builder/ot-standard-glyph-namer-1.0.1" = { 4337 4337 name = "_at_ot-builder_slash_ot-standard-glyph-namer"; 4338 4338 packageName = "@ot-builder/ot-standard-glyph-namer"; 4339 - version = "0.10.37"; 4339 + version = "1.0.1"; 4340 4340 src = fetchurl { 4341 - url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-0.10.37.tgz"; 4342 - sha512 = "I1FsVaBOHMSPA6lPFo6SWwAYLmp+q1QNKYQtcRJmgW5G5lljIjCTptvpDzyXqgujgFvGUDz7UWPNzlRq/HwLNw=="; 4341 + url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.0.1.tgz"; 4342 + sha512 = "yKgPw8neJZr/wa/mFWtPbi4sKTkfyYCo+Q0SONkjJLNchuI6i/w3ijX3EDf8R9/m4j65JhHKQ8wltKBnRgHlCQ=="; 4343 4343 }; 4344 4344 }; 4345 - "@ot-builder/prelude-0.10.37" = { 4345 + "@ot-builder/prelude-1.0.1" = { 4346 4346 name = "_at_ot-builder_slash_prelude"; 4347 4347 packageName = "@ot-builder/prelude"; 4348 - version = "0.10.37"; 4348 + version = "1.0.1"; 4349 4349 src = fetchurl { 4350 - url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-0.10.37.tgz"; 4351 - sha512 = "rUMCp2j3or0dSYr2hDkmNRexg9A24zzRRQWNHh5KF+6x4Crj5Sg41gx+sx+MohQqs8mu8CM3CZOV1b66P7ixPA=="; 4350 + url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.0.1.tgz"; 4351 + sha512 = "ocaoVx+QeYm5aYjzy+gD67cK1j/JGArqTjGXmo/ndjsBCvS9Ni9QpN4UEjoN2oz8rzr0sK4RhX9fJ7ufQ27gPA=="; 4352 4352 }; 4353 4353 }; 4354 - "@ot-builder/primitive-0.10.37" = { 4354 + "@ot-builder/primitive-1.0.1" = { 4355 4355 name = "_at_ot-builder_slash_primitive"; 4356 4356 packageName = "@ot-builder/primitive"; 4357 - version = "0.10.37"; 4357 + version = "1.0.1"; 4358 4358 src = fetchurl { 4359 - url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-0.10.37.tgz"; 4360 - sha512 = "GdYr1DUgWRUASpK9C85jklb/iHpdzgPmHs1fxud61QktqXJ21Wo1jvr5W0TaHsK3tGyeDjfSbEohMQhFKgZZOA=="; 4359 + url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.0.1.tgz"; 4360 + sha512 = "mRSNfNNf7qUmZJ23UJVK6VnITRKgGQC5X1I1DFlIve/YfTVe6SbH0AbBBcS4OsC/gXskLkywXX6rZChjSWDmTg=="; 4361 4361 }; 4362 4362 }; 4363 - "@ot-builder/rectify-0.10.37" = { 4363 + "@ot-builder/rectify-1.0.1" = { 4364 4364 name = "_at_ot-builder_slash_rectify"; 4365 4365 packageName = "@ot-builder/rectify"; 4366 - version = "0.10.37"; 4366 + version = "1.0.1"; 4367 4367 src = fetchurl { 4368 - url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-0.10.37.tgz"; 4369 - sha512 = "0gv45ARwPgBSWnpl7mmk+lTtIlTO0XBtoCBT8BbkXzXH4YxkB70fEsAX47GEhSpWzWWg9QgTrVUCBFXVj4i67A=="; 4368 + url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.0.1.tgz"; 4369 + sha512 = "IBA/v+6ksxUADQEpk1Nbc0jRwXhZD2CNPz8xmtPPqnRAE3b8JpxIjmu6zhn1pRx0E0AvtPdMfAilhNis7IzY9g=="; 4370 4370 }; 4371 4371 }; 4372 - "@ot-builder/stat-glyphs-0.10.37" = { 4372 + "@ot-builder/stat-glyphs-1.0.1" = { 4373 4373 name = "_at_ot-builder_slash_stat-glyphs"; 4374 4374 packageName = "@ot-builder/stat-glyphs"; 4375 - version = "0.10.37"; 4375 + version = "1.0.1"; 4376 4376 src = fetchurl { 4377 - url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-0.10.37.tgz"; 4378 - sha512 = "JTQQtR8CWclhAdJyKAvWH3O99wuaJFJKyAr+BRcXL5wJ6D68V9AQ8zY+weaIL7m1FZIOp5kf4nc4RmRodtCcNw=="; 4377 + url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.0.1.tgz"; 4378 + sha512 = "YgsglcyhfAHNpbPXdPoZD4DhqbaHzAhtocJ/cblaOQr+uE7LD66890is1kJ4mrKUYV4Ei0uLZDyw9ngixZGteg=="; 4379 4379 }; 4380 4380 }; 4381 - "@ot-builder/trace-0.10.37" = { 4381 + "@ot-builder/trace-1.0.1" = { 4382 4382 name = "_at_ot-builder_slash_trace"; 4383 4383 packageName = "@ot-builder/trace"; 4384 - version = "0.10.37"; 4384 + version = "1.0.1"; 4385 4385 src = fetchurl { 4386 - url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-0.10.37.tgz"; 4387 - sha512 = "phedlApvTXseNHId9T0Ab+6luHoATwkwk0l/JFEhVFIbMdvAcHwgAB/oxumsySlTscYuV/7dgGqCyYeeYicfjw=="; 4386 + url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.0.1.tgz"; 4387 + sha512 = "UZ7Fi+A+LEnkjagFeCiPlzFKSrBtY04l/B2iXqlC4gyfmwOzKGe+A8B0kVfjheePhteUm4808Yx3e419o2EepQ=="; 4388 4388 }; 4389 4389 }; 4390 - "@ot-builder/var-store-0.10.37" = { 4390 + "@ot-builder/var-store-1.0.1" = { 4391 4391 name = "_at_ot-builder_slash_var-store"; 4392 4392 packageName = "@ot-builder/var-store"; 4393 - version = "0.10.37"; 4393 + version = "1.0.1"; 4394 4394 src = fetchurl { 4395 - url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-0.10.37.tgz"; 4396 - sha512 = "yAEZBdo+X0m3WnFNLXFW2pkmhDx8EEvqxqR0A95KxZC1M6gtLdYesQGz5x1qnTn6cAvxOOhyclWsk3XcSJpvKw=="; 4395 + url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.0.1.tgz"; 4396 + sha512 = "IcoJ7U+Z+wjbFSL2qLuU0tIW9G/NR6sWI0r1bKgnBr0hE2Si4dj/D+GYjIVkRscfvI3x/5/XL2sWayuh2Pjvdg=="; 4397 4397 }; 4398 4398 }; 4399 - "@ot-builder/variance-0.10.37" = { 4399 + "@ot-builder/variance-1.0.1" = { 4400 4400 name = "_at_ot-builder_slash_variance"; 4401 4401 packageName = "@ot-builder/variance"; 4402 - version = "0.10.37"; 4402 + version = "1.0.1"; 4403 4403 src = fetchurl { 4404 - url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-0.10.37.tgz"; 4405 - sha512 = "I+ZvuTZ82Itr1/KwTkDyMrhx30rgmimMxYX6dOIvjrrheTJSPR3iKR7tFKszCuJSgx6GTITeikeyi6tH4/krGQ=="; 4404 + url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.0.1.tgz"; 4405 + sha512 = "cJ4eL1xyvJnPlEcrnKkZeqIw6NbPGAP2RFyEclBU2U4Freu2ZH1R8WqATbekdQqlOnwoZ1vgV8mH8EpNI3N8Uw=="; 4406 4406 }; 4407 4407 }; 4408 4408 "@parcel/fs-1.11.0" = { ··· 4738 4738 sha512 = "b2iE8kjjzzUo2WZ0xuE2N77kfnTds7ClrDxcz3Atz7h2XrNVoAPUoT75i7CY0st5x++70V91Y+c6RpBX9MX7Jg=="; 4739 4739 }; 4740 4740 }; 4741 - "@schematics/angular-11.1.4" = { 4741 + "@schematics/angular-11.2.0" = { 4742 4742 name = "_at_schematics_slash_angular"; 4743 4743 packageName = "@schematics/angular"; 4744 - version = "11.1.4"; 4744 + version = "11.2.0"; 4745 4745 src = fetchurl { 4746 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-11.1.4.tgz"; 4747 - sha512 = "UWhUPxRarbK4AWTcOBmCOYMZwuxnJRo/Ts/0yyNqUkj6gHieyv0hsOi10f8Ofn34MyvPnUpDnCT/o9bzanmqog=="; 4746 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-11.2.0.tgz"; 4747 + sha512 = "PtbyZ7TEEEae9Y5siSZYigWyk8iOSjZ10ThA7tRxm8gdcLjGimyyKr5TyjufIAvrXIYnBXNLgPkZG6s5CQIEyw=="; 4748 4748 }; 4749 4749 }; 4750 4750 "@schematics/schematics-0.1100.3" = { ··· 4756 4756 sha512 = "tzjKnjD90FQ4LgRN9ALT2qCqgJYZrAKoy1embFJRuGKA8vv1hTG4JonVDqQEUoNwTc9r/Ok2Z1eenAI9TSUd1A=="; 4757 4757 }; 4758 4758 }; 4759 - "@schematics/update-0.1101.4" = { 4759 + "@schematics/update-0.1102.0" = { 4760 4760 name = "_at_schematics_slash_update"; 4761 4761 packageName = "@schematics/update"; 4762 - version = "0.1101.4"; 4762 + version = "0.1102.0"; 4763 4763 src = fetchurl { 4764 - url = "https://registry.npmjs.org/@schematics/update/-/update-0.1101.4.tgz"; 4765 - sha512 = "aEb/kqNgdVZ53lGQBIE4vPBGwlnqv2hRp3dyrhe++PJOyQf4cf0iJwfL0tB3pSHwjialaHtsrMybOs0a/81alA=="; 4764 + url = "https://registry.npmjs.org/@schematics/update/-/update-0.1102.0.tgz"; 4765 + sha512 = "2hFt/2iPe6LqQvzYj4HvQ8us0e0lBU75rSK2yY6VfiZWR/qo7yk99YKI7JWFTLvLsNbhNnSG/9opXJHqqUoc3g=="; 4766 4766 }; 4767 4767 }; 4768 4768 "@segment/loosely-validate-event-2.0.0" = { ··· 5818 5818 sha512 = "AaXSrIF99SjjtPVNmCmYb388HML+PKEJb/xmj4SbL2ZO0hHuETZZzyDIKfOqaEoAHZEuX4sC+FRFrHYJoIby6A=="; 5819 5819 }; 5820 5820 }; 5821 - "@types/graceful-fs-4.1.4" = { 5821 + "@types/graceful-fs-4.1.5" = { 5822 5822 name = "_at_types_slash_graceful-fs"; 5823 5823 packageName = "@types/graceful-fs"; 5824 - version = "4.1.4"; 5824 + version = "4.1.5"; 5825 5825 src = fetchurl { 5826 - url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.4.tgz"; 5827 - sha512 = "mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg=="; 5826 + url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz"; 5827 + sha512 = "anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw=="; 5828 5828 }; 5829 5829 }; 5830 5830 "@types/graphlib-2.1.7" = { ··· 6241 6241 sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; 6242 6242 }; 6243 6243 }; 6244 - "@types/node-14.14.25" = { 6244 + "@types/node-14.14.26" = { 6245 6245 name = "_at_types_slash_node"; 6246 6246 packageName = "@types/node"; 6247 - version = "14.14.25"; 6247 + version = "14.14.26"; 6248 6248 src = fetchurl { 6249 - url = "https://registry.npmjs.org/@types/node/-/node-14.14.25.tgz"; 6250 - sha512 = "EPpXLOVqDvisVxtlbvzfyqSsFeQxltFbluZNRndIb8tr9KiBnYNLzrc1N3pyKUCww2RNrfHDViqDWWE1LCJQtQ=="; 6249 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.26.tgz"; 6250 + sha512 = "skWxepWOs+VArEBWd2S/VR3wUavioIIx9/HzW+UJiIjtwa6+kNXdsOeq7FfxDXf56hIcL0ieo2brwMgBJ1+lhw=="; 6251 6251 }; 6252 6252 }; 6253 6253 "@types/node-6.14.13" = { ··· 10417 10417 sha512 = "+KBkqH7t/XE91Fqn8eyJeNIWsnhSWL8bSUqFD7TfE3FN07MTlC0nprGYp+2WfcYNz5i8Bus1vY2DHNVhtTImnw=="; 10418 10418 }; 10419 10419 }; 10420 - "aws-sdk-2.841.0" = { 10420 + "aws-sdk-2.842.0" = { 10421 10421 name = "aws-sdk"; 10422 10422 packageName = "aws-sdk"; 10423 - version = "2.841.0"; 10423 + version = "2.842.0"; 10424 10424 src = fetchurl { 10425 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.841.0.tgz"; 10426 - sha512 = "pMgFr0B4WFIZEKc6EPAcyrvafkqoE1JwU6DJuE4UmT2ntat87DnbWUzFRP2HB4HuJvP1F7KNmElMz8p8j8bkNg=="; 10425 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.842.0.tgz"; 10426 + sha512 = "9vjVDxsLzNI79JChUgEHDUpv2obkTe35F3oGFGViKsf4C7xlOexzKOCfTRNcgzh0MON6rVDFpYBtF2LlEyDGKg=="; 10427 10427 }; 10428 10428 }; 10429 10429 "aws-sign2-0.6.0" = { ··· 12946 12946 sha512 = "HaJnVuslRF4g2kSDeyl++AaVizoitCpL9PglzCYwy0uHHyvWerfvEb8jWmYbF1z4kiVFolGomnxSGl+GUQp2jg=="; 12947 12947 }; 12948 12948 }; 12949 - "bufferstreams-2.0.1" = { 12950 - name = "bufferstreams"; 12951 - packageName = "bufferstreams"; 12952 - version = "2.0.1"; 12953 - src = fetchurl { 12954 - url = "https://registry.npmjs.org/bufferstreams/-/bufferstreams-2.0.1.tgz"; 12955 - sha512 = "ZswyIoBfFb3cVDsnZLLj2IDJ/0ppYdil/v2EGlZXvoefO689FokEmFEldhN5dV7R2QBxFneqTJOMIpfqhj+n0g=="; 12956 - }; 12957 - }; 12958 12949 "bufferutil-1.3.0" = { 12959 12950 name = "bufferutil"; 12960 12951 packageName = "bufferutil"; ··· 16889 16880 sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg=="; 16890 16881 }; 16891 16882 }; 16892 - "create-torrent-4.4.5" = { 16883 + "create-torrent-4.5.0" = { 16893 16884 name = "create-torrent"; 16894 16885 packageName = "create-torrent"; 16895 - version = "4.4.5"; 16886 + version = "4.5.0"; 16896 16887 src = fetchurl { 16897 - url = "https://registry.npmjs.org/create-torrent/-/create-torrent-4.4.5.tgz"; 16898 - sha512 = "6odHpDbUVAekmhG54TgHpv6PlUrfw9fCAq5jxv8nOlhHBeGZAhA4iLwjJyp1tjOdsrYsjqojK/gjY/mLfVdQXg=="; 16888 + url = "https://registry.npmjs.org/create-torrent/-/create-torrent-4.5.0.tgz"; 16889 + sha512 = "RvhI3/mMbvSGb+NbV2V1nax64fc47rRYXY8WJV47t4RfzM+P2p2zpAOYyBjKqz+CkBUexS9Mvgga4Rx53m+tyA=="; 16899 16890 }; 16900 16891 }; 16901 16892 "cron-1.7.2" = { ··· 18509 18500 sha512 = "pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw=="; 18510 18501 }; 18511 18502 }; 18512 - "debug-4.2.0" = { 18513 - name = "debug"; 18514 - packageName = "debug"; 18515 - version = "4.2.0"; 18516 - src = fetchurl { 18517 - url = "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz"; 18518 - sha512 = "IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg=="; 18519 - }; 18520 - }; 18521 18503 "debug-4.3.1" = { 18522 18504 name = "debug"; 18523 18505 packageName = "debug"; ··· 19544 19526 sha512 = "58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="; 19545 19527 }; 19546 19528 }; 19529 + "diff-5.0.0" = { 19530 + name = "diff"; 19531 + packageName = "diff"; 19532 + version = "5.0.0"; 19533 + src = fetchurl { 19534 + url = "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz"; 19535 + sha512 = "/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w=="; 19536 + }; 19537 + }; 19547 19538 "diff-match-patch-1.0.5" = { 19548 19539 name = "diff-match-patch"; 19549 19540 packageName = "diff-match-patch"; ··· 20570 20561 sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw=="; 20571 20562 }; 20572 20563 }; 20573 - "electron-to-chromium-1.3.662" = { 20564 + "electron-to-chromium-1.3.663" = { 20574 20565 name = "electron-to-chromium"; 20575 20566 packageName = "electron-to-chromium"; 20576 - version = "1.3.662"; 20567 + version = "1.3.663"; 20577 20568 src = fetchurl { 20578 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.662.tgz"; 20579 - sha512 = "IGBXmTGwdVGUVTnZ8ISEvkhDfhhD+CDFndG4//BhvDcEtPYiVrzoB+rzT/Y12OQCf5bvRCrVmrUbGrS9P7a6FQ=="; 20569 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.663.tgz"; 20570 + sha512 = "xkVkzHj6k3oRRGlmdgUCCLSLhtFYHDCTH7SeK+LJdJjnsLcrdbpr8EYmfMQhez3V/KPO5UScSpzQ0feYX6Qoyw=="; 20580 20571 }; 20581 20572 }; 20582 20573 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 35209 35200 sha512 = "07JHC0r1ykIoruKO8ifMXu+xEU8qOXDFETylktdug6vJDACnP+HKevOu3PXyNPzFyTSlz8vrBYlBO1JZRe8Cag=="; 35210 35201 }; 35211 35202 }; 35212 - "make-fetch-happen-8.0.13" = { 35203 + "make-fetch-happen-8.0.14" = { 35213 35204 name = "make-fetch-happen"; 35214 35205 packageName = "make-fetch-happen"; 35215 - version = "8.0.13"; 35206 + version = "8.0.14"; 35216 35207 src = fetchurl { 35217 - url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.13.tgz"; 35218 - sha512 = "rQ5NijwwdU8tIaBrpTtSVrNCcAJfyDRcKBC76vOQlyJX588/88+TE+UpjWl4BgG7gCkp29wER7xcRqkeg+x64Q=="; 35208 + url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.14.tgz"; 35209 + sha512 = "EsS89h6l4vbfJEtBZnENTOFk8mCRpY5ru36Xe5bcX1KYIli2mkSHqoFsp5O1wMDvTJJzxe/4THpCTtygjeeGWQ=="; 35219 35210 }; 35220 35211 }; 35221 35212 "make-iterator-1.0.1" = { ··· 37180 37171 sha512 = "O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ=="; 37181 37172 }; 37182 37173 }; 37183 - "mocha-8.2.1" = { 37174 + "mocha-8.3.0" = { 37184 37175 name = "mocha"; 37185 37176 packageName = "mocha"; 37186 - version = "8.2.1"; 37177 + version = "8.3.0"; 37187 37178 src = fetchurl { 37188 - url = "https://registry.npmjs.org/mocha/-/mocha-8.2.1.tgz"; 37189 - sha512 = "cuLBVfyFfFqbNR0uUKbDGXKGk+UDFe6aR4os78XIrMQpZl/nv7JYHcvP5MFIAb374b2zFXsdgEGwmzMtP0Xg8w=="; 37179 + url = "https://registry.npmjs.org/mocha/-/mocha-8.3.0.tgz"; 37180 + sha512 = "TQqyC89V1J/Vxx0DhJIXlq9gbbL9XFNdeLQ1+JsnZsVaSOV1z3tWfw0qZmQJGQRIfkvZcs7snQnZnOCKoldq1Q=="; 37190 37181 }; 37191 37182 }; 37192 37183 "mock-require-3.0.3" = { ··· 37396 37387 sha512 = "2/PRtGGiqPc/VEhbm7xAQ+gbb7yzHjjMAv6MpAifr5pCpbh3fQUdj93uNgwPiTppAGu8HFKe3PeU+OdRyAxStA=="; 37397 37388 }; 37398 37389 }; 37399 - "mp4-stream-3.1.0" = { 37390 + "mp4-stream-3.1.2" = { 37400 37391 name = "mp4-stream"; 37401 37392 packageName = "mp4-stream"; 37402 - version = "3.1.0"; 37393 + version = "3.1.2"; 37403 37394 src = fetchurl { 37404 - url = "https://registry.npmjs.org/mp4-stream/-/mp4-stream-3.1.0.tgz"; 37405 - sha512 = "ZQQjf0VEiqPucwRvmT3e0pfZfMSE3nc5ngGUiN1+2VMxCtrInrlAjZ2K6jpNmxSZ/roiQne/ovYJYTeOvZDXPw=="; 37395 + url = "https://registry.npmjs.org/mp4-stream/-/mp4-stream-3.1.2.tgz"; 37396 + sha512 = "AviUjTA6aER9DFVFPNYd4KrEKfhw2Pi8OKBY46r39ORmyX8qfaYx6XBIUGFCl67gX4+Giv2FLF+Gh6P3g81xrQ=="; 37406 37397 }; 37407 37398 }; 37408 37399 "mpath-0.5.2" = { ··· 37981 37972 sha512 = "s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA=="; 37982 37973 }; 37983 37974 }; 37984 - "nanoid-3.1.12" = { 37985 - name = "nanoid"; 37986 - packageName = "nanoid"; 37987 - version = "3.1.12"; 37988 - src = fetchurl { 37989 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.12.tgz"; 37990 - sha512 = "1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A=="; 37991 - }; 37992 - }; 37993 37975 "nanoid-3.1.20" = { 37994 37976 name = "nanoid"; 37995 37977 packageName = "nanoid"; ··· 38809 38791 src = fetchurl { 38810 38792 url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz"; 38811 38793 sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA=="; 38812 - }; 38813 - }; 38814 - "node-gyp-4.0.0" = { 38815 - name = "node-gyp"; 38816 - packageName = "node-gyp"; 38817 - version = "4.0.0"; 38818 - src = fetchurl { 38819 - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-4.0.0.tgz"; 38820 - sha512 = "2XiryJ8sICNo6ej8d0idXDEMKfVfFK7kekGCtJAuelGsYHQxhj13KTf95swTCN2dZ/4lTfZ84Fu31jqJEEgjWA=="; 38821 38794 }; 38822 38795 }; 38823 38796 "node-gyp-5.1.1" = { ··· 40990 40963 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; 40991 40964 }; 40992 40965 }; 40993 - "ot-builder-0.10.37" = { 40966 + "ot-builder-1.0.1" = { 40994 40967 name = "ot-builder"; 40995 40968 packageName = "ot-builder"; 40996 - version = "0.10.37"; 40969 + version = "1.0.1"; 40997 40970 src = fetchurl { 40998 - url = "https://registry.npmjs.org/ot-builder/-/ot-builder-0.10.37.tgz"; 40999 - sha512 = "9V9v49oxGZUDosB63AlR1k6J5nAMJKUaRflYbwYy8o2/u9YMyujfAfqwDqAoWz12Q2Xdc9GllVA8TpPTw03acQ=="; 40971 + url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.0.1.tgz"; 40972 + sha512 = "tx0ZlR8KGohvVketGtOmd5nClqvdoWPxMwugihnkzSu2z75b1uAgEfiJ2gvZLix+re20trKq/HooYv+iQ+kmjA=="; 41000 40973 }; 41001 40974 }; 41002 - "otb-ttc-bundle-0.10.37" = { 40975 + "otb-ttc-bundle-1.0.1" = { 41003 40976 name = "otb-ttc-bundle"; 41004 40977 packageName = "otb-ttc-bundle"; 41005 - version = "0.10.37"; 40978 + version = "1.0.1"; 41006 40979 src = fetchurl { 41007 - url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-0.10.37.tgz"; 41008 - sha512 = "y3ziaqX+obzc9NMeXFvVz9+q2Hf9Nhu03lNbY/Iz1AjhfBHi7kMF9giW7ljmCTfdEg26crfOCBi2RbAUA2+3+g=="; 40980 + url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.0.1.tgz"; 40981 + sha512 = "dkdU3V3jqOLOSABpKYzl1mocygPZUhv6DjJSip5Hp2L7PVsDKv1xS+TNf+SQSBlPYPXLzP6cwvbDvwsqeeCEBw=="; 41009 40982 }; 41010 40983 }; 41011 40984 "ow-0.21.0" = { ··· 41548 41521 sha512 = "LUL4NK7sz01jdSUdCu3z1LyphCiFdQaFouaEDsAWmJpzS0lbeNfvZoX4bi1Tm1ilzheK5VAoD96QskDCZQr+jA=="; 41549 41522 }; 41550 41523 }; 41551 - "pacote-11.1.14" = { 41524 + "pacote-11.2.4" = { 41552 41525 name = "pacote"; 41553 41526 packageName = "pacote"; 41554 - version = "11.1.14"; 41527 + version = "11.2.4"; 41555 41528 src = fetchurl { 41556 - url = "https://registry.npmjs.org/pacote/-/pacote-11.1.14.tgz"; 41557 - sha512 = "6c5OhQelaJFDfiw/Zd8MfGCvvFHurSdeGzufZMPvRFImdbNOYFciOINf3DtUNUaU3h98eCb749UyHDsgvL19+A=="; 41529 + url = "https://registry.npmjs.org/pacote/-/pacote-11.2.4.tgz"; 41530 + sha512 = "GfTeVQGJ6WyBQbQD4t3ocHbyOmTQLmWjkCKSZPmKiGFKYKNUaM5U2gbLzUW8WG1XmS9yQFnsTFA0k3o1+q4klQ=="; 41558 41531 }; 41559 41532 }; 41560 41533 "pacote-11.2.6" = { ··· 42277 42250 sha512 = "nxl9nrnLQmh64iTzMfyylSlRozL7kAXIaxw1fVcLYdyhNkJCRUzirRZTikXGJsg+hc4fqpneTK6iU2H1Q8THSA=="; 42278 42251 }; 42279 42252 }; 42280 - "patel-0.33.1" = { 42253 + "patel-0.34.0" = { 42281 42254 name = "patel"; 42282 42255 packageName = "patel"; 42283 - version = "0.33.1"; 42256 + version = "0.34.0"; 42284 42257 src = fetchurl { 42285 - url = "https://registry.npmjs.org/patel/-/patel-0.33.1.tgz"; 42286 - sha512 = "zOv5DhGH2r4cRKnZfOlHmWqxBp9nMGnC3F/NZbUqFCYMA65RXiv8q1F96/6dm2ANR6xvCe+xLODQSb49IFoYQg=="; 42258 + url = "https://registry.npmjs.org/patel/-/patel-0.34.0.tgz"; 42259 + sha512 = "3EvIzxbIFknpPa9QL2LYW+B35qFwER3Dn674KSC9Hc7DIuLJ7YMUJOR4dvCMPmpj/lB4fDvfr/VYV7FKKLEpFA=="; 42287 42260 }; 42288 42261 }; 42289 42262 "path-browserify-0.0.1" = { ··· 53447 53420 sha512 = "xk5CMbwoQVI53rTq9o/iMojAqXP5NT4/+TMeTP4uXWDIH18pB9AXgO5Olqt0RXuf3jH032DA4DS4qzem6XdXAw=="; 53448 53421 }; 53449 53422 }; 53450 - "swagger-ui-dist-3.42.0" = { 53423 + "swagger-ui-dist-3.43.0" = { 53451 53424 name = "swagger-ui-dist"; 53452 53425 packageName = "swagger-ui-dist"; 53453 - version = "3.42.0"; 53426 + version = "3.43.0"; 53454 53427 src = fetchurl { 53455 - url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.42.0.tgz"; 53456 - sha512 = "hTNX6cX7KWtBZgk6ZQSOzsBJhqdCmD5NOIjb6dBPKSnYZidSkIXOcaPMR3+kwxLrj8bDC881bSDlNbLsHikacg=="; 53428 + url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.43.0.tgz"; 53429 + sha512 = "PtE+g23bNbYv8qqAVoPBqNQth8hU5Sl5ZsQ7gHXlO5jlCt31dVTiKI9ArHIT1b23ZzUYTnKsFgPYYFoiWyNCAw=="; 53457 53430 }; 53458 53431 }; 53459 53432 "swagger2openapi-6.2.3" = { ··· 54960 54933 sha512 = "MV5F74YF9+UYsvwXGXTh+5YP3EqH/ivwWfyFE2/YHWQQxm9jDPmkIC23nkN133Ye4nO3HTXmiMcfGqJ5xRPfOA=="; 54961 54934 }; 54962 54935 }; 54963 - "too-wordy-0.3.0" = { 54936 + "too-wordy-0.3.1" = { 54964 54937 name = "too-wordy"; 54965 54938 packageName = "too-wordy"; 54966 - version = "0.3.0"; 54939 + version = "0.3.1"; 54967 54940 src = fetchurl { 54968 - url = "https://registry.npmjs.org/too-wordy/-/too-wordy-0.3.0.tgz"; 54969 - sha512 = "Yk2hzecuFYHw64YwVXy30CuCXXOCgCM/+QvLmXX6CyR9+pyA/Y00cY8cmiTW2mzvWqMpVf9BPJXK6Y4kOXSMzg=="; 54941 + url = "https://registry.npmjs.org/too-wordy/-/too-wordy-0.3.1.tgz"; 54942 + sha512 = "qfKDd/kxLEmbOqdtWnp/Gw1EEvW5ONZB3HehzkHNKFIx3bUrfda6qdOzxJ74vkaIaJbZyRFkBHkbY078fjAd5A=="; 54970 54943 }; 54971 54944 }; 54972 54945 "topo-2.0.2" = { ··· 55525 55498 src = fetchurl { 55526 55499 url = "https://registry.npmjs.org/tsutils/-/tsutils-3.20.0.tgz"; 55527 55500 sha512 = "RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg=="; 55528 - }; 55529 - }; 55530 - "ttf2woff-2.0.2" = { 55531 - name = "ttf2woff"; 55532 - packageName = "ttf2woff"; 55533 - version = "2.0.2"; 55534 - src = fetchurl { 55535 - url = "https://registry.npmjs.org/ttf2woff/-/ttf2woff-2.0.2.tgz"; 55536 - sha512 = "X68badwBjAy/+itU49scLjXUL094up+rHuYk+YAOTTBYSUMOmLZ7VyhZJuqQESj1gnyLAC2/5V8Euv+mExmyPA=="; 55537 - }; 55538 - }; 55539 - "ttf2woff2-3.0.0" = { 55540 - name = "ttf2woff2"; 55541 - packageName = "ttf2woff2"; 55542 - version = "3.0.0"; 55543 - src = fetchurl { 55544 - url = "https://registry.npmjs.org/ttf2woff2/-/ttf2woff2-3.0.0.tgz"; 55545 - sha512 = "5/Web6B0lF/STNAQ0d5vAlRRquuWsNj8wOmKQ9ql9Bsgbx8MsLnNzaBG9vBcSE4s4Ry1QOr/MyUrDUIVgVPEfw=="; 55546 55501 }; 55547 55502 }; 55548 55503 "ttl-1.3.1" = { ··· 59272 59227 sha1 = "79331f666366b3b1c6ab02ceb04bad8dd2eebb0c"; 59273 59228 }; 59274 59229 }; 59230 + "wawoff2-1.0.2" = { 59231 + name = "wawoff2"; 59232 + packageName = "wawoff2"; 59233 + version = "1.0.2"; 59234 + src = fetchurl { 59235 + url = "https://registry.npmjs.org/wawoff2/-/wawoff2-1.0.2.tgz"; 59236 + sha512 = "qxuTwf5tAP/XojrRc6cmR0hGvqgD3XUxv2fzfzURKPDfE7AeHmtRuankVxdJ4DRdSKXaE5QlyJT49yBis2vb6Q=="; 59237 + }; 59238 + }; 59275 59239 "wbuf-1.7.3" = { 59276 59240 name = "wbuf"; 59277 59241 packageName = "wbuf"; ··· 59551 59515 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 59552 59516 }; 59553 59517 }; 59554 - "webtorrent-0.114.0" = { 59518 + "webtorrent-0.114.1" = { 59555 59519 name = "webtorrent"; 59556 59520 packageName = "webtorrent"; 59557 - version = "0.114.0"; 59521 + version = "0.114.1"; 59558 59522 src = fetchurl { 59559 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.114.0.tgz"; 59560 - sha512 = "jOdohvSNewT0CSCRp37NYrq6OEwPiVJ6GuSijeelZ8JCwrUUz//tsEGyKXv4/DlsTYFPhwvWuKXZKMy5yagh4Q=="; 59523 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.114.1.tgz"; 59524 + sha512 = "RJqwy6cTG1kysvd3xX2CJIAMeC/3e5M/MPu4MuZKcBxa2I+D75nONoNjP0cLTnE+gVb0MFQSQU93ln/2/f6k6g=="; 59561 59525 }; 59562 59526 }; 59563 59527 "well-known-symbols-2.0.0" = { ··· 60199 60163 sha512 = "P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg=="; 60200 60164 }; 60201 60165 }; 60202 - "workerpool-6.0.2" = { 60166 + "workerpool-6.1.0" = { 60203 60167 name = "workerpool"; 60204 60168 packageName = "workerpool"; 60205 - version = "6.0.2"; 60169 + version = "6.1.0"; 60206 60170 src = fetchurl { 60207 - url = "https://registry.npmjs.org/workerpool/-/workerpool-6.0.2.tgz"; 60208 - sha512 = "DSNyvOpFKrNusaaUwk+ej6cBj1bmhLcBfj80elGk+ZIo5JSkq+unB1dLKEOcNfJDZgjGICfhQ0Q5TbP0PvF4+Q=="; 60171 + url = "https://registry.npmjs.org/workerpool/-/workerpool-6.1.0.tgz"; 60172 + sha512 = "toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg=="; 60209 60173 }; 60210 60174 }; 60211 60175 "wrap-ansi-2.1.0" = { ··· 61547 61511 "@angular/cli" = nodeEnv.buildNodePackage { 61548 61512 name = "_at_angular_slash_cli"; 61549 61513 packageName = "@angular/cli"; 61550 - version = "11.1.4"; 61514 + version = "11.2.0"; 61551 61515 src = fetchurl { 61552 - url = "https://registry.npmjs.org/@angular/cli/-/cli-11.1.4.tgz"; 61553 - sha512 = "IGGKtMWtUBkEEzFcd0wP/SFricOg5Mc0l7BG4m6kRtCU34wQVbvc5h6xQIGrhKOJyLQ/gGZkqSWY+21Hun5jgQ=="; 61516 + url = "https://registry.npmjs.org/@angular/cli/-/cli-11.2.0.tgz"; 61517 + sha512 = "waIR5Nqc2wcYXZh/Mgm+4Iyvu0nzKAhvmKiJjcJ+f2UuPRMLdNAInTvhdpfgKaNdmiArxNa6UntRIu+EavGc9Q=="; 61554 61518 }; 61555 61519 dependencies = [ 61556 - sources."@angular-devkit/architect-0.1101.4" 61557 - sources."@angular-devkit/core-11.1.4" 61558 - sources."@angular-devkit/schematics-11.1.4" 61520 + sources."@angular-devkit/architect-0.1102.0" 61521 + sources."@angular-devkit/core-11.2.0" 61522 + sources."@angular-devkit/schematics-11.2.0" 61559 61523 sources."@npmcli/ci-detect-1.3.0" 61560 - sources."@npmcli/git-2.0.4" 61524 + (sources."@npmcli/git-2.0.6" // { 61525 + dependencies = [ 61526 + sources."promise-retry-2.0.1" 61527 + ]; 61528 + }) 61561 61529 sources."@npmcli/installed-package-contents-1.0.7" 61562 - sources."@npmcli/move-file-1.1.1" 61530 + sources."@npmcli/move-file-1.1.2" 61563 61531 sources."@npmcli/node-gyp-1.0.2" 61564 61532 sources."@npmcli/promise-spawn-1.3.2" 61565 61533 (sources."@npmcli/run-script-1.8.3" // { ··· 61567 61535 sources."read-package-json-fast-2.0.1" 61568 61536 ]; 61569 61537 }) 61570 - sources."@schematics/angular-11.1.4" 61571 - sources."@schematics/update-0.1101.4" 61538 + sources."@schematics/angular-11.2.0" 61539 + sources."@schematics/update-0.1102.0" 61572 61540 sources."@tootallnate/once-1.1.2" 61573 61541 sources."@yarnpkg/lockfile-1.1.0" 61574 61542 sources."abbrev-1.1.1" ··· 61631 61599 ]; 61632 61600 }) 61633 61601 sources."env-paths-2.2.0" 61634 - sources."err-code-1.1.2" 61602 + sources."err-code-2.0.3" 61635 61603 sources."escape-string-regexp-1.0.5" 61636 61604 sources."extend-3.0.2" 61637 61605 sources."external-editor-3.1.0" ··· 61699 61667 sources."log-symbols-4.0.0" 61700 61668 sources."lru-cache-6.0.0" 61701 61669 sources."magic-string-0.25.7" 61702 - sources."make-fetch-happen-8.0.13" 61670 + (sources."make-fetch-happen-8.0.14" // { 61671 + dependencies = [ 61672 + sources."promise-retry-2.0.1" 61673 + ]; 61674 + }) 61703 61675 sources."mime-db-1.45.0" 61704 61676 sources."mime-types-2.1.28" 61705 61677 sources."mimic-fn-2.1.0" ··· 61730 61702 sources."object-assign-4.1.1" 61731 61703 sources."once-1.4.0" 61732 61704 sources."onetime-5.1.2" 61733 - sources."open-7.3.1" 61734 - sources."ora-5.2.0" 61705 + sources."open-7.4.0" 61706 + sources."ora-5.3.0" 61735 61707 sources."os-tmpdir-1.0.2" 61736 61708 sources."p-map-4.0.0" 61737 - sources."pacote-11.1.14" 61709 + sources."pacote-11.2.4" 61738 61710 sources."path-is-absolute-1.0.1" 61739 61711 sources."path-parse-1.0.6" 61740 61712 sources."performance-now-2.1.0" 61741 61713 sources."process-nextick-args-2.0.1" 61742 61714 sources."promise-inflight-1.0.1" 61743 - sources."promise-retry-1.1.1" 61715 + (sources."promise-retry-1.1.1" // { 61716 + dependencies = [ 61717 + sources."err-code-1.1.2" 61718 + sources."retry-0.10.1" 61719 + ]; 61720 + }) 61744 61721 sources."psl-1.8.0" 61745 61722 sources."puka-1.0.1" 61746 61723 sources."punycode-2.1.1" ··· 61754 61731 }) 61755 61732 sources."resolve-1.19.0" 61756 61733 sources."restore-cursor-3.1.0" 61757 - sources."retry-0.10.1" 61734 + sources."retry-0.12.0" 61758 61735 sources."rimraf-3.0.2" 61759 61736 sources."run-async-2.4.1" 61760 61737 sources."rxjs-6.6.3" ··· 62382 62359 sources."@types/estree-0.0.45" 62383 62360 sources."@types/json-schema-7.0.7" 62384 62361 sources."@types/json5-0.0.29" 62385 - sources."@types/node-14.14.25" 62362 + sources."@types/node-14.14.26" 62386 62363 sources."@types/parse-json-4.0.0" 62387 62364 sources."@types/source-list-map-0.1.2" 62388 62365 sources."@types/tapable-1.0.6" ··· 62457 62434 sources."cross-spawn-7.0.3" 62458 62435 sources."deepmerge-4.2.2" 62459 62436 sources."defaults-1.0.3" 62460 - sources."electron-to-chromium-1.3.662" 62437 + sources."electron-to-chromium-1.3.663" 62461 62438 sources."emoji-regex-8.0.0" 62462 62439 sources."end-of-stream-1.4.4" 62463 62440 sources."enhanced-resolve-4.5.0" ··· 62722 62699 sources."@apollographql/graphql-playground-html-1.6.26" 62723 62700 sources."@babel/code-frame-7.12.13" 62724 62701 sources."@babel/compat-data-7.12.13" 62725 - (sources."@babel/core-7.12.13" // { 62702 + (sources."@babel/core-7.12.16" // { 62726 62703 dependencies = [ 62727 62704 sources."@babel/generator-7.12.15" 62728 62705 sources."@babel/types-7.12.13" ··· 62744 62721 sources."@babel/types-7.12.13" 62745 62722 ]; 62746 62723 }) 62747 - (sources."@babel/helper-compilation-targets-7.12.13" // { 62724 + (sources."@babel/helper-compilation-targets-7.12.16" // { 62748 62725 dependencies = [ 62749 62726 sources."semver-5.7.1" 62750 62727 ]; 62751 62728 }) 62752 - sources."@babel/helper-create-class-features-plugin-7.12.13" 62753 - sources."@babel/helper-create-regexp-features-plugin-7.12.13" 62729 + sources."@babel/helper-create-class-features-plugin-7.12.16" 62730 + sources."@babel/helper-create-regexp-features-plugin-7.12.16" 62754 62731 (sources."@babel/helper-explode-assignable-expression-7.12.13" // { 62755 62732 dependencies = [ 62756 62733 sources."@babel/types-7.12.13" ··· 62771 62748 sources."@babel/types-7.12.13" 62772 62749 ]; 62773 62750 }) 62774 - (sources."@babel/helper-member-expression-to-functions-7.12.13" // { 62751 + (sources."@babel/helper-member-expression-to-functions-7.12.16" // { 62775 62752 dependencies = [ 62776 62753 sources."@babel/types-7.12.13" 62777 62754 ]; ··· 62818 62795 ]; 62819 62796 }) 62820 62797 sources."@babel/helper-validator-identifier-7.12.11" 62821 - sources."@babel/helper-validator-option-7.12.11" 62798 + sources."@babel/helper-validator-option-7.12.16" 62822 62799 (sources."@babel/helper-wrap-function-7.12.13" // { 62823 62800 dependencies = [ 62824 62801 sources."@babel/types-7.12.13" ··· 62830 62807 ]; 62831 62808 }) 62832 62809 sources."@babel/highlight-7.12.13" 62833 - sources."@babel/parser-7.12.15" 62810 + sources."@babel/parser-7.12.16" 62834 62811 sources."@babel/plugin-proposal-async-generator-functions-7.12.13" 62835 62812 sources."@babel/plugin-proposal-class-properties-7.12.13" 62836 - sources."@babel/plugin-proposal-dynamic-import-7.12.1" 62813 + sources."@babel/plugin-proposal-dynamic-import-7.12.16" 62837 62814 sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 62838 62815 sources."@babel/plugin-proposal-json-strings-7.12.13" 62839 62816 sources."@babel/plugin-proposal-logical-assignment-operators-7.12.13" ··· 62841 62818 sources."@babel/plugin-proposal-numeric-separator-7.12.13" 62842 62819 sources."@babel/plugin-proposal-object-rest-spread-7.12.13" 62843 62820 sources."@babel/plugin-proposal-optional-catch-binding-7.12.13" 62844 - sources."@babel/plugin-proposal-optional-chaining-7.12.13" 62821 + sources."@babel/plugin-proposal-optional-chaining-7.12.16" 62845 62822 sources."@babel/plugin-proposal-private-methods-7.12.13" 62846 62823 sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 62847 62824 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 62889 62866 sources."@babel/plugin-transform-sticky-regex-7.12.13" 62890 62867 sources."@babel/plugin-transform-template-literals-7.12.13" 62891 62868 sources."@babel/plugin-transform-typeof-symbol-7.12.13" 62892 - sources."@babel/plugin-transform-typescript-7.12.13" 62869 + sources."@babel/plugin-transform-typescript-7.12.16" 62893 62870 sources."@babel/plugin-transform-unicode-escapes-7.12.13" 62894 62871 sources."@babel/plugin-transform-unicode-regex-7.12.13" 62895 - (sources."@babel/preset-env-7.12.13" // { 62872 + (sources."@babel/preset-env-7.12.16" // { 62896 62873 dependencies = [ 62897 62874 sources."@babel/types-7.12.13" 62898 62875 sources."semver-5.7.1" ··· 62900 62877 }) 62901 62878 sources."@babel/preset-flow-7.12.13" 62902 62879 sources."@babel/preset-modules-0.1.4" 62903 - sources."@babel/preset-typescript-7.12.13" 62880 + sources."@babel/preset-typescript-7.12.16" 62904 62881 (sources."@babel/register-7.12.13" // { 62905 62882 dependencies = [ 62906 62883 sources."make-dir-2.1.0" ··· 63082 63059 sources."@types/long-4.0.1" 63083 63060 sources."@types/mime-1.3.2" 63084 63061 sources."@types/minimatch-3.0.3" 63085 - sources."@types/node-14.14.25" 63062 + sources."@types/node-14.14.26" 63086 63063 (sources."@types/node-fetch-2.5.7" // { 63087 63064 dependencies = [ 63088 63065 sources."form-data-3.0.0" ··· 63567 63544 sources."ecc-jsbn-0.1.2" 63568 63545 sources."ee-first-1.1.1" 63569 63546 sources."ejs-2.7.4" 63570 - sources."electron-to-chromium-1.3.662" 63547 + sources."electron-to-chromium-1.3.663" 63571 63548 sources."elegant-spinner-1.0.1" 63572 63549 sources."emoji-regex-8.0.0" 63573 63550 sources."emojis-list-3.0.0" ··· 64831 64808 sources."@babel/generator-7.12.15" 64832 64809 sources."@babel/helper-validator-identifier-7.12.11" 64833 64810 sources."@babel/highlight-7.12.13" 64834 - sources."@babel/parser-7.12.15" 64811 + sources."@babel/parser-7.12.16" 64835 64812 sources."@babel/template-7.12.13" 64836 64813 sources."@babel/types-7.12.13" 64837 64814 sources."@webassemblyjs/ast-1.11.0" ··· 64909 64886 }; 64910 64887 dependencies = [ 64911 64888 sources."@babel/code-frame-7.12.13" 64912 - (sources."@babel/core-7.12.13" // { 64889 + (sources."@babel/core-7.12.16" // { 64913 64890 dependencies = [ 64914 64891 sources."source-map-0.5.7" 64915 64892 ]; ··· 64921 64898 }) 64922 64899 sources."@babel/helper-function-name-7.12.13" 64923 64900 sources."@babel/helper-get-function-arity-7.12.13" 64924 - sources."@babel/helper-member-expression-to-functions-7.12.13" 64901 + sources."@babel/helper-member-expression-to-functions-7.12.16" 64925 64902 sources."@babel/helper-module-imports-7.12.13" 64926 64903 sources."@babel/helper-module-transforms-7.12.13" 64927 64904 sources."@babel/helper-optimise-call-expression-7.12.13" ··· 64931 64908 sources."@babel/helper-validator-identifier-7.12.11" 64932 64909 sources."@babel/helpers-7.12.13" 64933 64910 sources."@babel/highlight-7.12.13" 64934 - sources."@babel/parser-7.12.15" 64911 + sources."@babel/parser-7.12.16" 64935 64912 sources."@babel/template-7.12.13" 64936 64913 sources."@babel/traverse-7.12.13" 64937 64914 sources."@babel/types-7.12.13" ··· 65041 65018 dependencies = [ 65042 65019 sources."@types/glob-7.1.3" 65043 65020 sources."@types/minimatch-3.0.3" 65044 - sources."@types/node-14.14.25" 65021 + sources."@types/node-14.14.26" 65045 65022 sources."balanced-match-1.0.0" 65046 65023 sources."brace-expansion-1.1.11" 65047 65024 sources."chromium-pickle-js-0.2.0" ··· 66670 66647 sources."@types/archiver-5.1.0" 66671 66648 sources."@types/glob-7.1.3" 66672 66649 sources."@types/minimatch-3.0.3" 66673 - sources."@types/node-14.14.25" 66650 + sources."@types/node-14.14.26" 66674 66651 sources."@types/readline-sync-1.4.3" 66675 66652 sources."@types/stream-buffers-3.0.3" 66676 66653 sources."@types/uuid-8.3.0" ··· 67762 67739 sources."domutils-1.7.0" 67763 67740 sources."dot-prop-5.3.0" 67764 67741 sources."duplexer3-0.1.4" 67765 - sources."electron-to-chromium-1.3.662" 67742 + sources."electron-to-chromium-1.3.663" 67766 67743 sources."emoji-regex-8.0.0" 67767 67744 sources."end-of-stream-1.4.4" 67768 67745 sources."entities-1.1.2" ··· 68680 68657 }; 68681 68658 dependencies = [ 68682 68659 sources."@babel/code-frame-7.12.13" 68683 - sources."@babel/core-7.12.13" 68660 + sources."@babel/core-7.12.16" 68684 68661 sources."@babel/generator-7.12.15" 68685 68662 sources."@babel/helper-function-name-7.12.13" 68686 68663 sources."@babel/helper-get-function-arity-7.12.13" 68687 - sources."@babel/helper-member-expression-to-functions-7.12.13" 68664 + sources."@babel/helper-member-expression-to-functions-7.12.16" 68688 68665 sources."@babel/helper-module-imports-7.12.13" 68689 68666 sources."@babel/helper-module-transforms-7.12.13" 68690 68667 sources."@babel/helper-optimise-call-expression-7.12.13" ··· 68698 68675 sources."chalk-2.4.2" 68699 68676 ]; 68700 68677 }) 68701 - sources."@babel/parser-7.12.15" 68678 + sources."@babel/parser-7.12.16" 68702 68679 sources."@babel/template-7.12.13" 68703 68680 sources."@babel/traverse-7.12.13" 68704 68681 sources."@babel/types-7.12.13" ··· 68765 68742 sources."domelementtype-1.3.1" 68766 68743 sources."domhandler-2.4.2" 68767 68744 sources."domutils-1.7.0" 68768 - sources."electron-to-chromium-1.3.662" 68745 + sources."electron-to-chromium-1.3.663" 68769 68746 sources."emoji-regex-8.0.0" 68770 68747 sources."entities-1.1.2" 68771 68748 sources."error-ex-1.3.2" ··· 69597 69574 sources."@nodelib/fs.stat-2.0.4" 69598 69575 sources."@nodelib/fs.walk-1.2.6" 69599 69576 sources."@npmcli/ci-detect-1.3.0" 69600 - (sources."@npmcli/git-2.0.4" // { 69601 - dependencies = [ 69602 - sources."promise-retry-1.1.1" 69603 - ]; 69604 - }) 69577 + sources."@npmcli/git-2.0.6" 69605 69578 sources."@npmcli/installed-package-contents-1.0.7" 69606 - sources."@npmcli/move-file-1.1.1" 69579 + sources."@npmcli/move-file-1.1.2" 69607 69580 sources."@npmcli/node-gyp-1.0.2" 69608 69581 sources."@npmcli/promise-spawn-1.3.2" 69609 69582 sources."@npmcli/run-script-1.8.3" ··· 69761 69734 sources."end-of-stream-1.4.4" 69762 69735 sources."endent-1.4.1" 69763 69736 sources."env-paths-2.2.0" 69764 - sources."err-code-1.1.2" 69737 + sources."err-code-2.0.3" 69765 69738 sources."escape-goat-2.1.1" 69766 69739 sources."escape-html-1.0.3" 69767 69740 sources."escape-string-regexp-1.0.5" ··· 69937 69910 sources."semver-6.3.0" 69938 69911 ]; 69939 69912 }) 69940 - (sources."make-fetch-happen-8.0.13" // { 69941 - dependencies = [ 69942 - sources."promise-retry-1.1.1" 69943 - ]; 69944 - }) 69913 + sources."make-fetch-happen-8.0.14" 69945 69914 sources."md5-file-5.0.0" 69946 69915 sources."media-typer-0.3.0" 69947 69916 sources."merge-descriptors-1.0.1" ··· 70037 70006 sources."prepend-http-2.0.0" 70038 70007 sources."process-nextick-args-2.0.1" 70039 70008 sources."promise-inflight-1.0.1" 70040 - (sources."promise-retry-2.0.1" // { 70041 - dependencies = [ 70042 - sources."err-code-2.0.3" 70043 - sources."retry-0.12.0" 70044 - ]; 70045 - }) 70009 + sources."promise-retry-2.0.1" 70046 70010 sources."promzard-0.3.0" 70047 70011 sources."proxy-addr-2.0.6" 70048 70012 sources."psl-1.8.0" ··· 70078 70042 sources."onetime-2.0.1" 70079 70043 ]; 70080 70044 }) 70081 - sources."retry-0.10.1" 70045 + sources."retry-0.12.0" 70082 70046 sources."reusify-1.0.4" 70083 70047 sources."rimraf-3.0.2" 70084 70048 sources."run-async-2.4.1" ··· 70221 70185 sources."@types/glob-7.1.3" 70222 70186 sources."@types/minimatch-3.0.3" 70223 70187 sources."@types/minimist-1.2.1" 70224 - sources."@types/node-14.14.25" 70188 + sources."@types/node-14.14.26" 70225 70189 sources."@types/normalize-package-data-2.4.0" 70226 70190 sources."aggregate-error-3.1.0" 70227 70191 sources."ansi-styles-3.2.1" ··· 70592 70556 sources."@cycle/run-3.4.0" 70593 70557 sources."@cycle/time-0.10.1" 70594 70558 sources."@types/cookiejar-2.1.2" 70595 - sources."@types/node-14.14.25" 70559 + sources."@types/node-14.14.26" 70596 70560 sources."@types/superagent-3.8.2" 70597 70561 sources."ansi-escapes-3.2.0" 70598 70562 sources."ansi-regex-2.1.1" ··· 71673 71637 dependencies = [ 71674 71638 sources."@fast-csv/format-4.3.5" 71675 71639 sources."@fast-csv/parse-4.3.6" 71676 - sources."@types/node-14.14.25" 71640 + sources."@types/node-14.14.26" 71677 71641 sources."JSONStream-1.3.5" 71678 71642 sources."ajv-6.12.6" 71679 71643 sources."asn1-0.2.4" ··· 71836 71800 }; 71837 71801 dependencies = [ 71838 71802 sources."@babel/code-frame-7.12.13" 71839 - sources."@babel/core-7.12.13" 71803 + sources."@babel/core-7.12.16" 71840 71804 sources."@babel/generator-7.12.15" 71841 71805 sources."@babel/helper-annotate-as-pure-7.12.13" 71842 71806 sources."@babel/helper-function-name-7.12.13" 71843 71807 sources."@babel/helper-get-function-arity-7.12.13" 71844 - sources."@babel/helper-member-expression-to-functions-7.12.13" 71808 + sources."@babel/helper-member-expression-to-functions-7.12.16" 71845 71809 sources."@babel/helper-module-imports-7.12.13" 71846 71810 sources."@babel/helper-module-transforms-7.12.13" 71847 71811 sources."@babel/helper-optimise-call-expression-7.12.13" ··· 71852 71816 sources."@babel/helper-validator-identifier-7.12.11" 71853 71817 sources."@babel/helpers-7.12.13" 71854 71818 sources."@babel/highlight-7.12.13" 71855 - sources."@babel/parser-7.12.15" 71819 + sources."@babel/parser-7.12.16" 71856 71820 sources."@babel/plugin-proposal-object-rest-spread-7.12.13" 71857 71821 sources."@babel/plugin-syntax-jsx-7.12.13" 71858 71822 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 71859 71823 sources."@babel/plugin-transform-destructuring-7.12.13" 71860 71824 sources."@babel/plugin-transform-parameters-7.12.13" 71861 - sources."@babel/plugin-transform-react-jsx-7.12.13" 71825 + sources."@babel/plugin-transform-react-jsx-7.12.16" 71862 71826 sources."@babel/template-7.12.13" 71863 71827 sources."@babel/traverse-7.12.13" 71864 71828 sources."@babel/types-7.12.13" ··· 71868 71832 sources."@types/http-cache-semantics-4.0.0" 71869 71833 sources."@types/keyv-3.1.1" 71870 71834 sources."@types/minimist-1.2.1" 71871 - sources."@types/node-14.14.25" 71835 + sources."@types/node-14.14.26" 71872 71836 sources."@types/normalize-package-data-2.4.0" 71873 71837 sources."@types/responselike-1.0.0" 71874 71838 sources."@types/yoga-layout-1.9.2" ··· 72213 72177 sources."@nodelib/fs.scandir-2.1.4" 72214 72178 sources."@nodelib/fs.stat-2.0.4" 72215 72179 sources."@nodelib/fs.walk-1.2.6" 72216 - (sources."@npmcli/move-file-1.1.1" // { 72180 + (sources."@npmcli/move-file-1.1.2" // { 72217 72181 dependencies = [ 72218 72182 sources."rimraf-3.0.2" 72219 72183 ]; ··· 74218 74182 sources."@babel/generator-7.12.15" 74219 74183 sources."@babel/helper-annotate-as-pure-7.12.13" 74220 74184 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 74221 - (sources."@babel/helper-compilation-targets-7.12.13" // { 74185 + (sources."@babel/helper-compilation-targets-7.12.16" // { 74222 74186 dependencies = [ 74223 74187 sources."semver-5.7.1" 74224 74188 ]; 74225 74189 }) 74226 - sources."@babel/helper-create-class-features-plugin-7.12.13" 74227 - sources."@babel/helper-create-regexp-features-plugin-7.12.13" 74190 + sources."@babel/helper-create-class-features-plugin-7.12.16" 74191 + sources."@babel/helper-create-regexp-features-plugin-7.12.16" 74228 74192 sources."@babel/helper-explode-assignable-expression-7.12.13" 74229 74193 sources."@babel/helper-function-name-7.12.13" 74230 74194 sources."@babel/helper-get-function-arity-7.12.13" 74231 74195 sources."@babel/helper-hoist-variables-7.12.13" 74232 - sources."@babel/helper-member-expression-to-functions-7.12.13" 74196 + sources."@babel/helper-member-expression-to-functions-7.12.16" 74233 74197 sources."@babel/helper-module-imports-7.12.13" 74234 74198 sources."@babel/helper-module-transforms-7.12.13" 74235 74199 sources."@babel/helper-optimise-call-expression-7.12.13" ··· 74240 74204 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 74241 74205 sources."@babel/helper-split-export-declaration-7.12.13" 74242 74206 sources."@babel/helper-validator-identifier-7.12.11" 74243 - sources."@babel/helper-validator-option-7.12.11" 74207 + sources."@babel/helper-validator-option-7.12.16" 74244 74208 sources."@babel/helper-wrap-function-7.12.13" 74245 74209 sources."@babel/helpers-7.12.13" 74246 74210 (sources."@babel/highlight-7.12.13" // { ··· 74248 74212 sources."chalk-2.4.2" 74249 74213 ]; 74250 74214 }) 74251 - sources."@babel/parser-7.12.15" 74215 + sources."@babel/parser-7.12.16" 74252 74216 sources."@babel/plugin-proposal-async-generator-functions-7.12.13" 74253 74217 sources."@babel/plugin-proposal-class-properties-7.12.13" 74254 - sources."@babel/plugin-proposal-dynamic-import-7.12.1" 74218 + sources."@babel/plugin-proposal-dynamic-import-7.12.16" 74255 74219 sources."@babel/plugin-proposal-export-default-from-7.12.13" 74256 74220 sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 74257 74221 sources."@babel/plugin-proposal-json-strings-7.12.13" ··· 74260 74224 sources."@babel/plugin-proposal-numeric-separator-7.12.13" 74261 74225 sources."@babel/plugin-proposal-object-rest-spread-7.12.13" 74262 74226 sources."@babel/plugin-proposal-optional-catch-binding-7.12.13" 74263 - sources."@babel/plugin-proposal-optional-chaining-7.12.13" 74227 + sources."@babel/plugin-proposal-optional-chaining-7.12.16" 74264 74228 sources."@babel/plugin-proposal-private-methods-7.12.13" 74265 74229 sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 74266 74230 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 74305 74269 sources."@babel/plugin-transform-parameters-7.12.13" 74306 74270 sources."@babel/plugin-transform-property-literals-7.12.13" 74307 74271 sources."@babel/plugin-transform-react-display-name-7.12.13" 74308 - sources."@babel/plugin-transform-react-jsx-7.12.13" 74272 + sources."@babel/plugin-transform-react-jsx-7.12.16" 74309 74273 sources."@babel/plugin-transform-react-jsx-source-7.12.13" 74310 74274 sources."@babel/plugin-transform-regenerator-7.12.13" 74311 74275 sources."@babel/plugin-transform-reserved-words-7.12.13" ··· 74319 74283 sources."@babel/plugin-transform-sticky-regex-7.12.13" 74320 74284 sources."@babel/plugin-transform-template-literals-7.12.13" 74321 74285 sources."@babel/plugin-transform-typeof-symbol-7.12.13" 74322 - sources."@babel/plugin-transform-typescript-7.12.13" 74286 + sources."@babel/plugin-transform-typescript-7.12.16" 74323 74287 sources."@babel/plugin-transform-unicode-escapes-7.12.13" 74324 74288 sources."@babel/plugin-transform-unicode-regex-7.12.13" 74325 - (sources."@babel/preset-env-7.12.13" // { 74289 + (sources."@babel/preset-env-7.12.16" // { 74326 74290 dependencies = [ 74327 74291 sources."semver-5.7.1" 74328 74292 ]; 74329 74293 }) 74330 74294 sources."@babel/preset-modules-0.1.4" 74331 - sources."@babel/preset-typescript-7.12.13" 74295 + sources."@babel/preset-typescript-7.12.16" 74332 74296 sources."@babel/runtime-7.12.13" 74333 74297 sources."@babel/template-7.12.13" 74334 74298 sources."@babel/traverse-7.12.13" ··· 74469 74433 sources."@nodelib/fs.stat-2.0.4" 74470 74434 sources."@nodelib/fs.walk-1.2.6" 74471 74435 sources."@npmcli/ci-detect-1.3.0" 74472 - (sources."@npmcli/git-2.0.4" // { 74436 + (sources."@npmcli/git-2.0.6" // { 74473 74437 dependencies = [ 74474 74438 sources."mkdirp-1.0.4" 74475 - sources."promise-retry-1.1.1" 74476 - sources."retry-0.10.1" 74477 74439 sources."which-2.0.2" 74478 74440 ]; 74479 74441 }) 74480 74442 sources."@npmcli/installed-package-contents-1.0.7" 74481 - (sources."@npmcli/move-file-1.1.1" // { 74443 + (sources."@npmcli/move-file-1.1.2" // { 74482 74444 dependencies = [ 74483 74445 sources."mkdirp-1.0.4" 74484 74446 sources."rimraf-3.0.2" ··· 75054 75016 sources."duplexify-3.7.1" 75055 75017 sources."ecc-jsbn-0.1.2" 75056 75018 sources."ee-first-1.1.1" 75057 - sources."electron-to-chromium-1.3.662" 75019 + sources."electron-to-chromium-1.3.663" 75058 75020 (sources."elliptic-6.5.4" // { 75059 75021 dependencies = [ 75060 75022 sources."bn.js-4.11.9" ··· 75079 75041 sources."env-paths-2.2.0" 75080 75042 sources."envinfo-7.5.0" 75081 75043 sources."eol-0.9.1" 75082 - sources."err-code-1.1.2" 75044 + sources."err-code-2.0.3" 75083 75045 sources."errno-0.1.8" 75084 75046 (sources."error-ex-1.3.2" // { 75085 75047 dependencies = [ ··· 75534 75496 sources."semver-5.7.1" 75535 75497 ]; 75536 75498 }) 75537 - (sources."make-fetch-happen-8.0.13" // { 75499 + (sources."make-fetch-happen-8.0.14" // { 75538 75500 dependencies = [ 75539 75501 sources."minipass-3.1.3" 75540 - sources."promise-retry-1.1.1" 75541 - sources."retry-0.10.1" 75542 75502 ]; 75543 75503 }) 75544 75504 sources."map-cache-0.2.2" ··· 76000 75960 sources."process-nextick-args-2.0.1" 76001 75961 sources."progress-2.0.3" 76002 75962 sources."promise-inflight-1.0.1" 76003 - (sources."promise-retry-2.0.1" // { 76004 - dependencies = [ 76005 - sources."err-code-2.0.3" 76006 - ]; 76007 - }) 75963 + sources."promise-retry-2.0.1" 76008 75964 sources."prompts-2.4.0" 76009 75965 sources."proxy-addr-2.0.6" 76010 75966 sources."prr-1.0.1" ··· 77566 77522 sources."@tootallnate/once-1.1.2" 77567 77523 sources."@types/duplexify-3.6.0" 77568 77524 sources."@types/long-4.0.1" 77569 - sources."@types/node-14.14.25" 77525 + sources."@types/node-14.14.26" 77570 77526 sources."JSONStream-1.3.5" 77571 77527 sources."abbrev-1.1.1" 77572 77528 sources."abort-controller-3.0.0" ··· 79689 79645 sources."@nodelib/fs.walk-1.2.6" 79690 79646 sources."@sindresorhus/is-0.14.0" 79691 79647 sources."@szmarczak/http-timer-1.1.2" 79692 - sources."@types/node-14.14.25" 79648 + sources."@types/node-14.14.26" 79693 79649 sources."@types/parse-json-4.0.0" 79694 79650 sources."@types/websocket-1.0.1" 79695 79651 sources."aggregate-error-3.1.0" ··· 82609 82565 bypassCache = true; 82610 82566 reconstructLock = true; 82611 82567 }; 82612 - "iosevka-https://github.com/be5invis/Iosevka/archive/v3.7.1.tar.gz" = nodeEnv.buildNodePackage { 82568 + "iosevka-https://github.com/be5invis/Iosevka/archive/v4.5.0.tar.gz" = nodeEnv.buildNodePackage { 82613 82569 name = "iosevka"; 82614 82570 packageName = "iosevka"; 82615 - version = "3.7.1"; 82571 + version = "4.5.0"; 82616 82572 src = fetchurl { 82617 - name = "iosevka-3.7.1.tar.gz"; 82618 - url = "https://codeload.github.com/be5invis/Iosevka/tar.gz/v3.7.1"; 82619 - sha256 = "ed7aee70af326ef22458f8f7603c599fd2f5164ae8062fbd6fb7d56864d98aca"; 82573 + name = "iosevka-4.5.0.tar.gz"; 82574 + url = "https://codeload.github.com/be5invis/Iosevka/tar.gz/v4.5.0"; 82575 + sha256 = "f6dc0160e927241c7a63f5278d6e19b1da93f23defa02486b9a3ac7bdd3bde74"; 82620 82576 }; 82621 82577 dependencies = [ 82622 82578 sources."@iarna/toml-2.2.5" 82623 - sources."@ot-builder/bin-composite-types-0.10.37" 82624 - sources."@ot-builder/bin-util-0.10.37" 82625 - (sources."@ot-builder/cli-help-shower-0.10.37" // { 82579 + sources."@ot-builder/bin-composite-types-1.0.1" 82580 + sources."@ot-builder/bin-util-1.0.1" 82581 + (sources."@ot-builder/cli-help-shower-1.0.1" // { 82626 82582 dependencies = [ 82627 82583 sources."ansi-styles-4.3.0" 82628 82584 sources."chalk-4.1.0" ··· 82632 82588 sources."supports-color-7.2.0" 82633 82589 ]; 82634 82590 }) 82635 - (sources."@ot-builder/cli-proc-0.10.37" // { 82591 + (sources."@ot-builder/cli-proc-1.0.1" // { 82636 82592 dependencies = [ 82637 82593 sources."ansi-styles-4.3.0" 82638 82594 sources."chalk-4.1.0" ··· 82642 82598 sources."supports-color-7.2.0" 82643 82599 ]; 82644 82600 }) 82645 - (sources."@ot-builder/cli-shared-0.10.37" // { 82601 + (sources."@ot-builder/cli-shared-1.0.1" // { 82646 82602 dependencies = [ 82647 82603 sources."ansi-styles-4.3.0" 82648 82604 sources."chalk-4.1.0" ··· 82652 82608 sources."supports-color-7.2.0" 82653 82609 ]; 82654 82610 }) 82655 - sources."@ot-builder/common-impl-0.10.37" 82656 - sources."@ot-builder/errors-0.10.37" 82657 - sources."@ot-builder/io-bin-cff-0.10.37" 82658 - sources."@ot-builder/io-bin-encoding-0.10.37" 82659 - sources."@ot-builder/io-bin-ext-private-0.10.37" 82660 - sources."@ot-builder/io-bin-font-0.10.37" 82661 - sources."@ot-builder/io-bin-glyph-store-0.10.37" 82662 - sources."@ot-builder/io-bin-layout-0.10.37" 82663 - sources."@ot-builder/io-bin-metadata-0.10.37" 82664 - sources."@ot-builder/io-bin-metric-0.10.37" 82665 - sources."@ot-builder/io-bin-name-0.10.37" 82666 - sources."@ot-builder/io-bin-sfnt-0.10.37" 82667 - sources."@ot-builder/io-bin-ttf-0.10.37" 82668 - sources."@ot-builder/ot-0.10.37" 82669 - sources."@ot-builder/ot-encoding-0.10.37" 82670 - sources."@ot-builder/ot-ext-private-0.10.37" 82671 - sources."@ot-builder/ot-glyphs-0.10.37" 82672 - sources."@ot-builder/ot-layout-0.10.37" 82673 - sources."@ot-builder/ot-metadata-0.10.37" 82674 - sources."@ot-builder/ot-name-0.10.37" 82675 - sources."@ot-builder/ot-sfnt-0.10.37" 82676 - sources."@ot-builder/ot-standard-glyph-namer-0.10.37" 82677 - sources."@ot-builder/prelude-0.10.37" 82678 - sources."@ot-builder/primitive-0.10.37" 82679 - sources."@ot-builder/rectify-0.10.37" 82680 - sources."@ot-builder/stat-glyphs-0.10.37" 82681 - sources."@ot-builder/trace-0.10.37" 82682 - sources."@ot-builder/var-store-0.10.37" 82683 - sources."@ot-builder/variance-0.10.37" 82611 + sources."@ot-builder/common-impl-1.0.1" 82612 + sources."@ot-builder/errors-1.0.1" 82613 + sources."@ot-builder/io-bin-cff-1.0.1" 82614 + sources."@ot-builder/io-bin-encoding-1.0.1" 82615 + sources."@ot-builder/io-bin-ext-private-1.0.1" 82616 + sources."@ot-builder/io-bin-font-1.0.1" 82617 + sources."@ot-builder/io-bin-glyph-store-1.0.1" 82618 + sources."@ot-builder/io-bin-layout-1.0.1" 82619 + sources."@ot-builder/io-bin-metadata-1.0.1" 82620 + sources."@ot-builder/io-bin-metric-1.0.1" 82621 + sources."@ot-builder/io-bin-name-1.0.1" 82622 + sources."@ot-builder/io-bin-sfnt-1.0.1" 82623 + sources."@ot-builder/io-bin-ttf-1.0.1" 82624 + sources."@ot-builder/ot-1.0.1" 82625 + sources."@ot-builder/ot-encoding-1.0.1" 82626 + sources."@ot-builder/ot-ext-private-1.0.1" 82627 + sources."@ot-builder/ot-glyphs-1.0.1" 82628 + sources."@ot-builder/ot-layout-1.0.1" 82629 + sources."@ot-builder/ot-metadata-1.0.1" 82630 + sources."@ot-builder/ot-name-1.0.1" 82631 + sources."@ot-builder/ot-sfnt-1.0.1" 82632 + sources."@ot-builder/ot-standard-glyph-namer-1.0.1" 82633 + sources."@ot-builder/prelude-1.0.1" 82634 + sources."@ot-builder/primitive-1.0.1" 82635 + sources."@ot-builder/rectify-1.0.1" 82636 + sources."@ot-builder/stat-glyphs-1.0.1" 82637 + sources."@ot-builder/trace-1.0.1" 82638 + sources."@ot-builder/var-store-1.0.1" 82639 + sources."@ot-builder/variance-1.0.1" 82684 82640 sources."@unicode/unicode-13.0.0-1.0.3" 82685 - sources."abbrev-1.1.1" 82686 - sources."ajv-6.12.6" 82687 82641 sources."amdefine-1.0.1" 82688 - sources."ansi-regex-2.1.1" 82642 + sources."ansi-regex-5.0.0" 82689 82643 sources."ansi-styles-3.2.1" 82690 - sources."aproba-1.2.0" 82691 - sources."are-we-there-yet-1.1.5" 82692 82644 sources."argparse-1.0.10" 82693 - sources."asn1-0.2.4" 82694 - sources."assert-plus-1.0.0" 82695 82645 sources."async-0.9.2" 82696 - sources."asynckit-0.4.0" 82697 82646 sources."at-least-node-1.0.0" 82698 82647 sources."atob-2.1.2" 82699 - sources."aws-sign2-0.7.0" 82700 - sources."aws4-1.11.0" 82701 82648 sources."balanced-match-1.0.0" 82702 - sources."bcrypt-pbkdf-1.0.2" 82703 - sources."bindings-1.5.0" 82704 82649 sources."bluebird-3.7.2" 82705 82650 sources."brace-expansion-1.1.11" 82706 - sources."bufferstreams-2.0.1" 82707 - sources."camelcase-3.0.0" 82708 - sources."caseless-0.12.0" 82651 + sources."camelcase-5.3.1" 82709 82652 sources."chainsaw-0.0.9" 82710 82653 sources."chalk-2.4.2" 82711 - sources."chownr-1.1.4" 82712 82654 sources."cldr-5.8.0" 82713 82655 sources."cli-cursor-3.1.0" 82714 82656 sources."clipper-lib-6.4.2" 82715 - sources."cliui-3.2.0" 82716 - sources."code-point-at-1.1.0" 82657 + sources."cliui-7.0.4" 82717 82658 sources."color-convert-1.9.3" 82718 82659 sources."color-name-1.1.3" 82719 - sources."combined-stream-1.0.8" 82720 82660 sources."concat-map-0.0.1" 82721 - sources."console-control-strings-1.1.0" 82722 - sources."core-util-is-1.0.2" 82723 82661 sources."css-2.2.4" 82724 82662 sources."css-parse-2.0.0" 82725 - sources."dashdash-1.14.1" 82726 82663 sources."debug-3.1.0" 82727 82664 sources."decamelize-1.2.0" 82728 82665 sources."decode-uri-component-0.2.0" 82729 82666 sources."deep-is-0.1.3" 82730 - sources."delayed-stream-1.0.0" 82731 - sources."delegates-1.0.0" 82732 - sources."ecc-jsbn-0.1.2" 82733 82667 sources."ejs-3.1.6" 82734 82668 sources."emoji-regex-8.0.0" 82735 - sources."error-ex-1.3.2" 82669 + sources."escalade-3.1.1" 82736 82670 sources."escape-string-regexp-1.0.5" 82737 82671 sources."escodegen-2.0.0" 82738 82672 (sources."escope-1.0.3" // { ··· 82760 82694 }) 82761 82695 sources."estraverse-5.2.0" 82762 82696 sources."esutils-2.0.3" 82763 - sources."extend-3.0.2" 82764 - sources."extsprintf-1.3.0" 82765 82697 sources."fast-deep-equal-3.1.3" 82766 - sources."fast-json-stable-stringify-2.1.0" 82767 82698 sources."fast-levenshtein-2.0.6" 82768 - sources."file-uri-to-path-1.0.0" 82769 82699 sources."filelist-1.0.2" 82770 - sources."find-up-1.1.2" 82771 - sources."forever-agent-0.6.1" 82772 - sources."form-data-2.3.3" 82700 + sources."find-up-4.1.0" 82773 82701 sources."fs-extra-9.1.0" 82774 - sources."fs-minipass-1.2.7" 82775 82702 sources."fs.realpath-1.0.0" 82776 82703 sources."function-bind-1.1.1" 82777 - sources."gauge-2.7.4" 82778 - sources."get-caller-file-1.0.3" 82779 - sources."getpass-0.1.7" 82704 + sources."get-caller-file-2.0.5" 82780 82705 sources."glob-7.1.6" 82781 82706 sources."graceful-fs-4.2.6" 82782 - sources."har-schema-2.0.0" 82783 - sources."har-validator-5.1.5" 82784 82707 sources."has-1.0.3" 82785 82708 sources."has-flag-3.0.0" 82786 - sources."has-unicode-2.0.1" 82787 82709 sources."hashish-0.0.4" 82788 - sources."hosted-git-info-2.8.8" 82789 - sources."http-signature-1.2.0" 82790 82710 sources."iconv-lite-0.6.2" 82791 82711 sources."inflight-1.0.6" 82792 82712 sources."inherits-2.0.4" 82793 - sources."invert-kv-1.0.0" 82794 - sources."is-arrayish-0.2.1" 82795 82713 sources."is-core-module-2.2.0" 82796 - sources."is-fullwidth-code-point-1.0.0" 82797 - sources."is-typedarray-1.0.0" 82798 - sources."is-utf8-0.2.1" 82799 - sources."isarray-1.0.0" 82714 + sources."is-fullwidth-code-point-3.0.0" 82800 82715 sources."isexe-2.0.0" 82801 - sources."isstream-0.1.2" 82802 82716 sources."jake-10.8.2" 82803 - sources."jsbn-0.1.1" 82804 - sources."json-schema-0.2.3" 82805 - sources."json-schema-traverse-0.4.1" 82806 - sources."json-stringify-safe-5.0.1" 82807 82717 sources."jsonfile-6.1.0" 82808 - sources."jsprim-1.4.1" 82809 - sources."lcid-1.0.0" 82810 82718 sources."levn-0.3.0" 82811 - sources."load-json-file-1.1.0" 82812 82719 sources."locate-path-5.0.0" 82813 82720 sources."lru-cache-2.5.0" 82814 82721 sources."memoizeasync-1.1.0" 82815 - sources."microbuffer-1.0.0" 82816 - sources."mime-db-1.45.0" 82817 - sources."mime-types-2.1.28" 82818 82722 sources."mimic-fn-2.1.0" 82819 82723 sources."minimatch-3.0.4" 82820 - sources."minimist-1.2.5" 82821 - (sources."minipass-2.9.0" // { 82822 - dependencies = [ 82823 - sources."yallist-3.1.1" 82824 - ]; 82825 - }) 82826 - sources."minizlib-1.3.3" 82827 82724 sources."mkdirp-1.0.4" 82828 82725 sources."ms-2.0.0" 82829 - sources."nan-2.14.2" 82830 - (sources."node-gyp-4.0.0" // { 82831 - dependencies = [ 82832 - sources."mkdirp-0.5.5" 82833 - sources."semver-5.3.0" 82834 - sources."which-1.3.1" 82835 - ]; 82836 - }) 82837 - sources."nopt-3.0.6" 82838 - (sources."normalize-package-data-2.5.0" // { 82839 - dependencies = [ 82840 - sources."semver-5.7.1" 82841 - ]; 82842 - }) 82843 - sources."npmlog-4.1.2" 82844 - sources."number-is-nan-1.0.1" 82845 - sources."oauth-sign-0.9.0" 82846 82726 sources."object-assign-4.1.1" 82847 82727 sources."once-1.4.0" 82848 82728 sources."onetime-5.1.2" 82849 82729 sources."optionator-0.8.3" 82850 - sources."os-homedir-1.0.2" 82851 - sources."os-locale-1.4.0" 82852 - sources."os-tmpdir-1.0.2" 82853 - sources."osenv-0.1.5" 82854 - sources."ot-builder-0.10.37" 82855 - (sources."otb-ttc-bundle-0.10.37" // { 82730 + sources."ot-builder-1.0.1" 82731 + (sources."otb-ttc-bundle-1.0.1" // { 82856 82732 dependencies = [ 82857 82733 sources."ansi-styles-4.3.0" 82858 82734 sources."chalk-4.1.0" ··· 82865 82741 sources."p-limit-2.3.0" 82866 82742 sources."p-locate-4.1.0" 82867 82743 sources."p-try-2.2.0" 82868 - sources."pako-1.0.11" 82869 - sources."parse-json-2.2.0" 82870 82744 sources."passerror-1.1.1" 82871 - sources."patel-0.33.1" 82872 - sources."path-exists-2.1.0" 82745 + sources."patel-0.34.0" 82746 + sources."path-exists-4.0.0" 82873 82747 sources."path-is-absolute-1.0.1" 82874 82748 sources."path-parse-1.0.6" 82875 - sources."path-type-1.1.0" 82876 82749 sources."patrisika-0.22.2" 82877 82750 sources."patrisika-scopes-0.11.1" 82878 82751 sources."pegjs-0.10.0" 82879 - sources."performance-now-2.1.0" 82880 - sources."pify-2.3.0" 82881 - sources."pinkie-2.0.4" 82882 - sources."pinkie-promise-2.0.1" 82883 82752 sources."prelude-ls-1.1.2" 82884 - sources."process-nextick-args-2.0.1" 82885 - sources."psl-1.8.0" 82886 - sources."punycode-2.1.1" 82887 - sources."qs-6.5.2" 82888 - sources."read-pkg-1.1.0" 82889 - sources."read-pkg-up-1.0.1" 82890 - sources."readable-stream-2.3.7" 82891 - sources."request-2.88.2" 82892 82753 sources."require-directory-2.1.1" 82893 - sources."require-main-filename-1.0.1" 82754 + sources."require-main-filename-2.0.0" 82894 82755 sources."resolve-1.20.0" 82895 82756 sources."resolve-url-0.2.1" 82896 82757 sources."restore-cursor-3.1.0" 82897 82758 sources."resumer-0.0.0" 82898 - sources."rimraf-2.7.1" 82899 - sources."safe-buffer-5.1.2" 82900 82759 sources."safer-buffer-2.1.2" 82901 82760 sources."sax-1.2.4" 82902 82761 sources."semaphore-async-await-1.5.1" ··· 82911 82770 sources."source-map-0.6.1" 82912 82771 sources."source-map-resolve-0.5.3" 82913 82772 sources."source-map-url-0.4.1" 82914 - sources."spdx-correct-3.1.1" 82915 - sources."spdx-exceptions-2.3.0" 82916 - sources."spdx-expression-parse-3.0.1" 82917 - sources."spdx-license-ids-3.0.7" 82918 82773 (sources."spiro-2.0.0" // { 82919 82774 dependencies = [ 82920 82775 sources."tslib-1.14.1" ··· 82922 82777 }) 82923 82778 sources."split-1.0.1" 82924 82779 sources."sprintf-js-1.0.3" 82925 - sources."sshpk-1.16.1" 82926 82780 sources."stack-trace-0.0.9" 82927 - sources."string-width-1.0.2" 82928 - sources."string_decoder-1.1.1" 82929 - sources."strip-ansi-3.0.1" 82930 - sources."strip-bom-2.0.0" 82781 + sources."string-width-4.2.0" 82782 + sources."strip-ansi-6.0.0" 82931 82783 (sources."stylus-0.54.8" // { 82932 82784 dependencies = [ 82933 82785 sources."semver-6.3.0" ··· 82935 82787 ]; 82936 82788 }) 82937 82789 sources."supports-color-5.5.0" 82938 - (sources."tar-4.4.13" // { 82939 - dependencies = [ 82940 - sources."mkdirp-0.5.5" 82941 - sources."yallist-3.1.1" 82942 - ]; 82943 - }) 82944 82790 sources."through-2.3.8" 82945 82791 sources."toposort-2.0.2" 82946 - sources."tough-cookie-2.5.0" 82947 82792 sources."traverse-0.3.9" 82948 82793 sources."ts-process-promises-1.0.2" 82949 82794 sources."tslib-2.1.0" 82950 - sources."ttf2woff-2.0.2" 82951 - sources."ttf2woff2-3.0.0" 82952 - sources."tunnel-agent-0.6.0" 82953 - sources."tweetnacl-0.14.5" 82954 82795 sources."type-check-0.3.2" 82955 82796 sources."typo-geom-0.11.1" 82956 82797 sources."unicoderegexp-0.4.1" 82957 82798 sources."universalify-2.0.0" 82958 - sources."uri-js-4.4.1" 82959 82799 sources."urix-0.1.0" 82960 - sources."util-deprecate-1.0.2" 82961 - sources."uuid-3.4.0" 82962 - sources."validate-npm-package-license-3.0.4" 82963 82800 (sources."verda-1.2.1" // { 82964 82801 dependencies = [ 82965 - sources."ansi-regex-5.0.0" 82966 82802 sources."ansi-styles-4.3.0" 82967 - sources."camelcase-5.3.1" 82968 82803 sources."chalk-4.1.0" 82969 82804 sources."cliui-6.0.0" 82970 82805 sources."color-convert-2.0.1" 82971 82806 sources."color-name-1.1.4" 82972 - sources."find-up-4.1.0" 82973 - sources."get-caller-file-2.0.5" 82974 82807 sources."has-flag-4.0.0" 82975 - sources."is-fullwidth-code-point-3.0.0" 82976 - sources."path-exists-4.0.0" 82977 - sources."require-main-filename-2.0.0" 82978 - sources."string-width-4.2.0" 82979 - sources."strip-ansi-6.0.0" 82980 82808 sources."supports-color-7.2.0" 82981 - sources."which-module-2.0.0" 82982 82809 sources."wrap-ansi-6.2.0" 82983 82810 sources."y18n-4.0.1" 82984 82811 sources."yargs-15.4.1" 82985 82812 sources."yargs-parser-18.1.3" 82986 82813 ]; 82987 82814 }) 82988 - sources."verror-1.10.0" 82815 + sources."wawoff2-1.0.2" 82989 82816 sources."which-2.0.2" 82990 - sources."which-module-1.0.0" 82991 - sources."wide-align-1.1.3" 82817 + sources."which-module-2.0.0" 82992 82818 sources."word-wrap-1.2.3" 82993 82819 sources."wordwrap-0.0.3" 82994 - sources."wrap-ansi-2.1.0" 82820 + (sources."wrap-ansi-7.0.0" // { 82821 + dependencies = [ 82822 + sources."ansi-styles-4.3.0" 82823 + sources."color-convert-2.0.1" 82824 + sources."color-name-1.1.4" 82825 + ]; 82826 + }) 82995 82827 sources."wrappy-1.0.2" 82996 82828 sources."xmldom-0.4.0" 82997 82829 sources."xpath-0.0.32" 82998 - sources."y18n-3.2.2" 82830 + sources."y18n-5.0.5" 82999 82831 sources."yallist-4.0.0" 83000 - sources."yargs-6.6.0" 83001 - sources."yargs-parser-4.2.1" 82832 + sources."yargs-16.2.0" 82833 + sources."yargs-parser-20.2.4" 83002 82834 ]; 83003 82835 buildInputs = globalBuildInputs; 83004 82836 meta = { ··· 83188 83020 sources."async-mutex-0.1.4" 83189 83021 sources."asynckit-0.4.0" 83190 83022 sources."atob-2.1.2" 83191 - (sources."aws-sdk-2.841.0" // { 83023 + (sources."aws-sdk-2.842.0" // { 83192 83024 dependencies = [ 83193 83025 sources."sax-1.2.1" 83194 83026 sources."uuid-3.3.2" ··· 83934 83766 sha512 = "znR99e1BHeyEkSvgDDpX0sTiTu+8aQyDl9DawrkOGZTTW8hv0deIFXx87114zJ7gRaDZKVQD/4tr1ifmJp9xhQ=="; 83935 83767 }; 83936 83768 dependencies = [ 83937 - sources."@babel/parser-7.12.15" 83769 + sources."@babel/parser-7.12.16" 83938 83770 sources."argparse-1.0.10" 83939 83771 sources."bluebird-3.7.2" 83940 83772 sources."catharsis-0.8.11" ··· 84400 84232 sources."@types/component-emitter-1.2.10" 84401 84233 sources."@types/cookie-0.4.0" 84402 84234 sources."@types/cors-2.8.9" 84403 - sources."@types/node-14.14.25" 84235 + sources."@types/node-14.14.26" 84404 84236 sources."accepts-1.3.7" 84405 84237 sources."ansi-regex-5.0.0" 84406 84238 sources."ansi-styles-4.3.0" ··· 85048 84880 sources."@types/glob-7.1.3" 85049 84881 sources."@types/minimatch-3.0.3" 85050 84882 sources."@types/minimist-1.2.1" 85051 - sources."@types/node-14.14.25" 84883 + sources."@types/node-14.14.26" 85052 84884 sources."@types/normalize-package-data-2.4.0" 85053 84885 sources."@zkochan/cmd-shim-3.1.0" 85054 84886 sources."JSONStream-1.3.5" ··· 86851 86683 dependencies = [ 86852 86684 sources."@babel/code-frame-7.12.13" 86853 86685 sources."@babel/compat-data-7.12.13" 86854 - sources."@babel/core-7.12.13" 86686 + sources."@babel/core-7.12.16" 86855 86687 sources."@babel/generator-7.12.15" 86856 86688 sources."@babel/helper-annotate-as-pure-7.12.13" 86857 86689 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 86858 - sources."@babel/helper-compilation-targets-7.12.13" 86859 - sources."@babel/helper-create-class-features-plugin-7.12.13" 86860 - sources."@babel/helper-create-regexp-features-plugin-7.12.13" 86690 + sources."@babel/helper-compilation-targets-7.12.16" 86691 + sources."@babel/helper-create-class-features-plugin-7.12.16" 86692 + sources."@babel/helper-create-regexp-features-plugin-7.12.16" 86861 86693 sources."@babel/helper-explode-assignable-expression-7.12.13" 86862 86694 sources."@babel/helper-function-name-7.12.13" 86863 86695 sources."@babel/helper-get-function-arity-7.12.13" 86864 86696 sources."@babel/helper-hoist-variables-7.12.13" 86865 - sources."@babel/helper-member-expression-to-functions-7.12.13" 86697 + sources."@babel/helper-member-expression-to-functions-7.12.16" 86866 86698 sources."@babel/helper-module-imports-7.12.13" 86867 86699 sources."@babel/helper-module-transforms-7.12.13" 86868 86700 sources."@babel/helper-optimise-call-expression-7.12.13" ··· 86873 86705 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 86874 86706 sources."@babel/helper-split-export-declaration-7.12.13" 86875 86707 sources."@babel/helper-validator-identifier-7.12.11" 86876 - sources."@babel/helper-validator-option-7.12.11" 86708 + sources."@babel/helper-validator-option-7.12.16" 86877 86709 sources."@babel/helper-wrap-function-7.12.13" 86878 86710 sources."@babel/helpers-7.12.13" 86879 86711 (sources."@babel/highlight-7.12.13" // { ··· 86881 86713 sources."chalk-2.4.2" 86882 86714 ]; 86883 86715 }) 86884 - sources."@babel/parser-7.12.15" 86716 + sources."@babel/parser-7.12.16" 86885 86717 sources."@babel/plugin-external-helpers-7.8.3" 86886 86718 sources."@babel/plugin-proposal-async-generator-functions-7.12.13" 86887 86719 sources."@babel/plugin-proposal-class-properties-7.12.13" 86888 - sources."@babel/plugin-proposal-dynamic-import-7.12.1" 86720 + sources."@babel/plugin-proposal-dynamic-import-7.12.16" 86889 86721 sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 86890 86722 sources."@babel/plugin-proposal-json-strings-7.12.13" 86891 86723 sources."@babel/plugin-proposal-logical-assignment-operators-7.12.13" ··· 86893 86725 sources."@babel/plugin-proposal-numeric-separator-7.12.13" 86894 86726 sources."@babel/plugin-proposal-object-rest-spread-7.12.13" 86895 86727 sources."@babel/plugin-proposal-optional-catch-binding-7.12.13" 86896 - sources."@babel/plugin-proposal-optional-chaining-7.12.13" 86728 + sources."@babel/plugin-proposal-optional-chaining-7.12.16" 86897 86729 sources."@babel/plugin-proposal-private-methods-7.12.13" 86898 86730 sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 86899 86731 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 86943 86775 sources."@babel/plugin-transform-typeof-symbol-7.12.13" 86944 86776 sources."@babel/plugin-transform-unicode-escapes-7.12.13" 86945 86777 sources."@babel/plugin-transform-unicode-regex-7.12.13" 86946 - sources."@babel/preset-env-7.12.13" 86778 + sources."@babel/preset-env-7.12.16" 86947 86779 sources."@babel/preset-modules-0.1.4" 86948 86780 sources."@babel/preset-stage-2-7.8.3" 86949 86781 sources."@babel/runtime-7.12.13" ··· 86965 86797 sources."@types/babel__template-7.4.0" 86966 86798 sources."@types/babel__traverse-7.11.0" 86967 86799 sources."@types/estree-0.0.46" 86968 - sources."@types/graceful-fs-4.1.4" 86800 + sources."@types/graceful-fs-4.1.5" 86969 86801 sources."@types/istanbul-lib-coverage-2.0.3" 86970 86802 sources."@types/istanbul-lib-report-3.0.0" 86971 86803 sources."@types/istanbul-reports-1.1.2" 86972 86804 sources."@types/json-schema-7.0.7" 86973 - sources."@types/node-14.14.25" 86805 + sources."@types/node-14.14.26" 86974 86806 sources."@types/normalize-package-data-2.4.0" 86975 86807 sources."@types/resolve-0.0.8" 86976 86808 sources."@types/yargs-15.0.13" ··· 87263 87095 sources."duplexer2-0.1.4" 87264 87096 sources."duplexify-3.7.1" 87265 87097 sources."ecc-jsbn-0.1.2" 87266 - sources."electron-to-chromium-1.3.662" 87098 + sources."electron-to-chromium-1.3.663" 87267 87099 (sources."elliptic-6.5.4" // { 87268 87100 dependencies = [ 87269 87101 sources."bn.js-4.11.9" ··· 88462 88294 }; 88463 88295 dependencies = [ 88464 88296 sources."@braintree/sanitize-url-3.1.0" 88465 - sources."@types/node-14.14.25" 88297 + sources."@types/node-14.14.26" 88466 88298 sources."@types/yauzl-2.9.1" 88467 88299 sources."agent-base-5.1.1" 88468 88300 sources."ansi-styles-4.3.0" ··· 88851 88683 sources."strip-json-comments-2.0.1" 88852 88684 sources."supports-color-2.0.0" 88853 88685 sources."swagger-schema-official-2.0.0-bab6bed" 88854 - sources."swagger-ui-dist-3.42.0" 88686 + sources."swagger-ui-dist-3.43.0" 88855 88687 sources."tail-2.2.0" 88856 88688 sources."through-2.3.8" 88857 88689 sources."tmp-0.0.33" ··· 88883 88715 mocha = nodeEnv.buildNodePackage { 88884 88716 name = "mocha"; 88885 88717 packageName = "mocha"; 88886 - version = "8.2.1"; 88718 + version = "8.3.0"; 88887 88719 src = fetchurl { 88888 - url = "https://registry.npmjs.org/mocha/-/mocha-8.2.1.tgz"; 88889 - sha512 = "cuLBVfyFfFqbNR0uUKbDGXKGk+UDFe6aR4os78XIrMQpZl/nv7JYHcvP5MFIAb374b2zFXsdgEGwmzMtP0Xg8w=="; 88720 + url = "https://registry.npmjs.org/mocha/-/mocha-8.3.0.tgz"; 88721 + sha512 = "TQqyC89V1J/Vxx0DhJIXlq9gbbL9XFNdeLQ1+JsnZsVaSOV1z3tWfw0qZmQJGQRIfkvZcs7snQnZnOCKoldq1Q=="; 88890 88722 }; 88891 88723 dependencies = [ 88892 88724 sources."@ungap/promise-all-settled-1.1.2" ··· 88894 88726 sources."ansi-regex-3.0.0" 88895 88727 sources."ansi-styles-4.3.0" 88896 88728 sources."anymatch-3.1.1" 88897 - sources."argparse-1.0.10" 88729 + sources."argparse-2.0.1" 88898 88730 sources."balanced-match-1.0.0" 88899 88731 sources."binary-extensions-2.2.0" 88900 88732 sources."brace-expansion-1.1.11" 88901 88733 sources."braces-3.0.2" 88902 88734 sources."browser-stdout-1.3.1" 88903 - sources."camelcase-5.3.1" 88904 - sources."chalk-4.1.0" 88905 - sources."chokidar-3.4.3" 88906 - (sources."cliui-5.0.0" // { 88735 + sources."camelcase-6.2.0" 88736 + (sources."chalk-4.1.0" // { 88907 88737 dependencies = [ 88908 - sources."ansi-regex-4.1.0" 88909 - sources."string-width-3.1.0" 88910 - sources."strip-ansi-5.2.0" 88738 + sources."supports-color-7.2.0" 88739 + ]; 88740 + }) 88741 + sources."chokidar-3.5.1" 88742 + (sources."cliui-7.0.4" // { 88743 + dependencies = [ 88744 + sources."ansi-regex-5.0.0" 88745 + sources."is-fullwidth-code-point-3.0.0" 88746 + sources."string-width-4.2.0" 88747 + sources."strip-ansi-6.0.0" 88911 88748 ]; 88912 88749 }) 88913 88750 sources."color-convert-2.0.1" 88914 88751 sources."color-name-1.1.4" 88915 88752 sources."concat-map-0.0.1" 88916 - sources."debug-4.2.0" 88917 - sources."decamelize-1.2.0" 88918 - sources."diff-4.0.2" 88919 - sources."emoji-regex-7.0.3" 88753 + (sources."debug-4.3.1" // { 88754 + dependencies = [ 88755 + sources."ms-2.1.2" 88756 + ]; 88757 + }) 88758 + sources."decamelize-4.0.0" 88759 + sources."diff-5.0.0" 88760 + sources."emoji-regex-8.0.0" 88761 + sources."escalade-3.1.1" 88920 88762 sources."escape-string-regexp-4.0.0" 88921 - sources."esprima-4.0.1" 88922 88763 sources."fill-range-7.0.1" 88923 88764 sources."find-up-5.0.0" 88924 88765 sources."flat-5.0.2" 88925 88766 sources."fs.realpath-1.0.0" 88926 - sources."fsevents-2.1.3" 88767 + sources."fsevents-2.3.2" 88927 88768 sources."get-caller-file-2.0.5" 88928 88769 sources."glob-7.1.6" 88929 88770 sources."glob-parent-5.1.1" ··· 88939 88780 sources."is-number-7.0.0" 88940 88781 sources."is-plain-obj-2.1.0" 88941 88782 sources."isexe-2.0.0" 88942 - sources."js-yaml-3.14.0" 88783 + sources."js-yaml-4.0.0" 88943 88784 sources."locate-path-6.0.0" 88944 88785 sources."log-symbols-4.0.0" 88945 88786 sources."minimatch-3.0.4" 88946 - sources."ms-2.1.2" 88947 - sources."nanoid-3.1.12" 88787 + sources."ms-2.1.3" 88788 + sources."nanoid-3.1.20" 88948 88789 sources."normalize-path-3.0.0" 88949 88790 sources."once-1.4.0" 88950 88791 sources."p-limit-3.1.0" 88951 88792 sources."p-locate-5.0.0" 88952 - sources."p-try-2.2.0" 88953 88793 sources."path-exists-4.0.0" 88954 88794 sources."path-is-absolute-1.0.1" 88955 88795 sources."picomatch-2.2.2" 88956 88796 sources."randombytes-2.1.0" 88957 88797 sources."readdirp-3.5.0" 88958 88798 sources."require-directory-2.1.1" 88959 - sources."require-main-filename-2.0.0" 88960 88799 sources."safe-buffer-5.2.1" 88961 88800 sources."serialize-javascript-5.0.1" 88962 - sources."set-blocking-2.0.0" 88963 - sources."sprintf-js-1.0.3" 88964 88801 sources."string-width-2.1.1" 88965 88802 sources."strip-ansi-4.0.0" 88966 88803 sources."strip-json-comments-3.1.1" 88967 - sources."supports-color-7.2.0" 88804 + sources."supports-color-8.1.1" 88968 88805 sources."to-regex-range-5.0.1" 88969 88806 sources."which-2.0.2" 88970 - sources."which-module-2.0.0" 88971 88807 sources."wide-align-1.1.3" 88972 - sources."workerpool-6.0.2" 88973 - (sources."wrap-ansi-5.1.0" // { 88808 + sources."workerpool-6.1.0" 88809 + (sources."wrap-ansi-7.0.0" // { 88974 88810 dependencies = [ 88975 - sources."ansi-regex-4.1.0" 88976 - sources."ansi-styles-3.2.1" 88977 - sources."color-convert-1.9.3" 88978 - sources."color-name-1.1.3" 88979 - sources."string-width-3.1.0" 88980 - sources."strip-ansi-5.2.0" 88811 + sources."ansi-regex-5.0.0" 88812 + sources."is-fullwidth-code-point-3.0.0" 88813 + sources."string-width-4.2.0" 88814 + sources."strip-ansi-6.0.0" 88981 88815 ]; 88982 88816 }) 88983 88817 sources."wrappy-1.0.2" 88984 - sources."y18n-4.0.1" 88985 - (sources."yargs-13.3.2" // { 88818 + sources."y18n-5.0.5" 88819 + (sources."yargs-16.2.0" // { 88986 88820 dependencies = [ 88987 - sources."ansi-regex-4.1.0" 88988 - sources."find-up-3.0.0" 88989 - sources."locate-path-3.0.0" 88990 - sources."p-limit-2.3.0" 88991 - sources."p-locate-3.0.0" 88992 - sources."path-exists-3.0.0" 88993 - sources."string-width-3.1.0" 88994 - sources."strip-ansi-5.2.0" 88821 + sources."ansi-regex-5.0.0" 88822 + sources."is-fullwidth-code-point-3.0.0" 88823 + sources."string-width-4.2.0" 88824 + sources."strip-ansi-6.0.0" 88995 88825 ]; 88996 88826 }) 88997 - sources."yargs-parser-13.1.2" 88998 - (sources."yargs-unparser-2.0.0" // { 88999 - dependencies = [ 89000 - sources."camelcase-6.2.0" 89001 - sources."decamelize-4.0.0" 89002 - ]; 89003 - }) 88827 + sources."yargs-parser-20.2.4" 88828 + sources."yargs-unparser-2.0.0" 89004 88829 sources."yocto-queue-0.1.0" 89005 88830 ]; 89006 88831 buildInputs = globalBuildInputs; ··· 89150 88975 dependencies = [ 89151 88976 sources."@babel/code-frame-7.12.13" 89152 88977 sources."@babel/compat-data-7.12.13" 89153 - (sources."@babel/core-7.12.13" // { 88978 + (sources."@babel/core-7.12.16" // { 89154 88979 dependencies = [ 89155 88980 sources."semver-5.7.1" 89156 88981 ]; ··· 89158 88983 sources."@babel/generator-7.12.15" 89159 88984 sources."@babel/helper-annotate-as-pure-7.12.13" 89160 88985 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 89161 - (sources."@babel/helper-compilation-targets-7.12.13" // { 88986 + (sources."@babel/helper-compilation-targets-7.12.16" // { 89162 88987 dependencies = [ 89163 88988 sources."semver-5.7.1" 89164 88989 ]; 89165 88990 }) 89166 - sources."@babel/helper-create-class-features-plugin-7.12.13" 89167 - sources."@babel/helper-create-regexp-features-plugin-7.12.13" 88991 + sources."@babel/helper-create-class-features-plugin-7.12.16" 88992 + sources."@babel/helper-create-regexp-features-plugin-7.12.16" 89168 88993 sources."@babel/helper-explode-assignable-expression-7.12.13" 89169 88994 sources."@babel/helper-function-name-7.12.13" 89170 88995 sources."@babel/helper-get-function-arity-7.12.13" 89171 88996 sources."@babel/helper-hoist-variables-7.12.13" 89172 - sources."@babel/helper-member-expression-to-functions-7.12.13" 88997 + sources."@babel/helper-member-expression-to-functions-7.12.16" 89173 88998 sources."@babel/helper-module-imports-7.12.13" 89174 88999 sources."@babel/helper-module-transforms-7.12.13" 89175 89000 sources."@babel/helper-optimise-call-expression-7.12.13" ··· 89180 89005 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 89181 89006 sources."@babel/helper-split-export-declaration-7.12.13" 89182 89007 sources."@babel/helper-validator-identifier-7.12.11" 89183 - sources."@babel/helper-validator-option-7.12.11" 89008 + sources."@babel/helper-validator-option-7.12.16" 89184 89009 sources."@babel/helper-wrap-function-7.12.13" 89185 89010 sources."@babel/helpers-7.12.13" 89186 89011 sources."@babel/highlight-7.12.13" 89187 - sources."@babel/parser-7.12.15" 89012 + sources."@babel/parser-7.12.16" 89188 89013 sources."@babel/plugin-proposal-async-generator-functions-7.12.13" 89189 89014 sources."@babel/plugin-proposal-class-properties-7.12.13" 89190 - sources."@babel/plugin-proposal-dynamic-import-7.12.1" 89015 + sources."@babel/plugin-proposal-dynamic-import-7.12.16" 89191 89016 sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 89192 89017 sources."@babel/plugin-proposal-json-strings-7.12.13" 89193 89018 sources."@babel/plugin-proposal-logical-assignment-operators-7.12.13" ··· 89195 89020 sources."@babel/plugin-proposal-numeric-separator-7.12.13" 89196 89021 sources."@babel/plugin-proposal-object-rest-spread-7.12.13" 89197 89022 sources."@babel/plugin-proposal-optional-catch-binding-7.12.13" 89198 - sources."@babel/plugin-proposal-optional-chaining-7.12.13" 89023 + sources."@babel/plugin-proposal-optional-chaining-7.12.16" 89199 89024 sources."@babel/plugin-proposal-private-methods-7.12.13" 89200 89025 sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 89201 89026 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 89242 89067 sources."@babel/plugin-transform-typeof-symbol-7.12.13" 89243 89068 sources."@babel/plugin-transform-unicode-escapes-7.12.13" 89244 89069 sources."@babel/plugin-transform-unicode-regex-7.12.13" 89245 - (sources."@babel/preset-env-7.12.13" // { 89070 + (sources."@babel/preset-env-7.12.16" // { 89246 89071 dependencies = [ 89247 89072 sources."semver-5.7.1" 89248 89073 ]; ··· 89261 89086 sources."@dabh/diagnostics-2.0.2" 89262 89087 sources."@jest/types-24.9.0" 89263 89088 sources."@mrmlnc/readdir-enhanced-2.2.1" 89264 - (sources."@netlify/build-9.1.1" // { 89089 + (sources."@netlify/build-9.1.2" // { 89265 89090 dependencies = [ 89266 89091 sources."ansi-styles-4.3.0" 89267 89092 sources."chalk-3.0.0" ··· 89287 89112 sources."locate-path-5.0.0" 89288 89113 ]; 89289 89114 }) 89290 - sources."@netlify/functions-utils-1.3.11" 89115 + sources."@netlify/functions-utils-1.3.12" 89291 89116 (sources."@netlify/git-utils-1.0.7" // { 89292 89117 dependencies = [ 89293 89118 sources."braces-3.0.2" ··· 89522 89347 sources."@types/istanbul-reports-1.1.2" 89523 89348 sources."@types/minimatch-3.0.3" 89524 89349 sources."@types/mkdirp-0.5.2" 89525 - sources."@types/node-14.14.25" 89350 + sources."@types/node-14.14.26" 89526 89351 sources."@types/node-fetch-2.5.8" 89527 89352 sources."@types/normalize-package-data-2.4.0" 89528 89353 sources."@types/parse5-5.0.3" ··· 89580 89405 sources."at-least-node-1.0.0" 89581 89406 sources."atob-2.1.2" 89582 89407 sources."atob-lite-2.0.0" 89583 - (sources."aws-sdk-2.841.0" // { 89408 + (sources."aws-sdk-2.842.0" // { 89584 89409 dependencies = [ 89585 89410 sources."buffer-4.9.2" 89586 89411 sources."ieee754-1.1.13" ··· 89884 89709 }) 89885 89710 sources."duplexer3-0.1.4" 89886 89711 sources."ee-first-1.1.1" 89887 - sources."electron-to-chromium-1.3.662" 89712 + sources."electron-to-chromium-1.3.663" 89888 89713 sources."elf-cam-0.1.1" 89889 89714 sources."emoji-regex-8.0.0" 89890 89715 sources."enabled-2.0.0" ··· 92379 92204 sources."@types/http-cache-semantics-4.0.0" 92380 92205 sources."@types/keyv-3.1.1" 92381 92206 sources."@types/minimist-1.2.1" 92382 - sources."@types/node-14.14.25" 92207 + sources."@types/node-14.14.26" 92383 92208 sources."@types/normalize-package-data-2.4.0" 92384 92209 sources."@types/parse-json-4.0.0" 92385 92210 sources."@types/responselike-1.0.0" ··· 92910 92735 sources."@nodelib/fs.stat-2.0.4" 92911 92736 sources."@nodelib/fs.walk-1.2.6" 92912 92737 sources."@npmcli/ci-detect-1.3.0" 92913 - (sources."@npmcli/git-2.0.4" // { 92914 - dependencies = [ 92915 - sources."promise-retry-1.1.1" 92916 - ]; 92917 - }) 92738 + sources."@npmcli/git-2.0.6" 92918 92739 sources."@npmcli/installed-package-contents-1.0.7" 92919 - sources."@npmcli/move-file-1.1.1" 92740 + sources."@npmcli/move-file-1.1.2" 92920 92741 sources."@npmcli/node-gyp-1.0.2" 92921 92742 sources."@npmcli/promise-spawn-1.3.2" 92922 92743 sources."@npmcli/run-script-1.8.3" ··· 93006 92827 sources."encoding-0.1.13" 93007 92828 sources."end-of-stream-1.4.4" 93008 92829 sources."env-paths-2.2.0" 93009 - sources."err-code-1.1.2" 92830 + sources."err-code-2.0.3" 93010 92831 sources."escape-goat-2.1.1" 93011 92832 sources."escape-string-regexp-1.0.5" 93012 92833 sources."extend-3.0.2" ··· 93115 92936 sources."semver-6.3.0" 93116 92937 ]; 93117 92938 }) 93118 - (sources."make-fetch-happen-8.0.13" // { 93119 - dependencies = [ 93120 - sources."promise-retry-1.1.1" 93121 - ]; 93122 - }) 92939 + sources."make-fetch-happen-8.0.14" 93123 92940 sources."map-age-cleaner-0.1.3" 93124 92941 sources."mem-8.0.0" 93125 92942 sources."merge2-1.4.1" ··· 93177 92994 sources."process-nextick-args-2.0.1" 93178 92995 sources."progress-2.0.3" 93179 92996 sources."promise-inflight-1.0.1" 93180 - (sources."promise-retry-2.0.1" // { 93181 - dependencies = [ 93182 - sources."err-code-2.0.3" 93183 - sources."retry-0.12.0" 93184 - ]; 93185 - }) 92997 + sources."promise-retry-2.0.1" 93186 92998 sources."prompts-2.4.0" 93187 92999 sources."psl-1.8.0" 93188 93000 sources."puka-1.0.1" ··· 93201 93013 sources."request-2.88.2" 93202 93014 sources."require-from-string-2.0.2" 93203 93015 sources."responselike-1.0.2" 93204 - sources."retry-0.10.1" 93016 + sources."retry-0.12.0" 93205 93017 sources."reusify-1.0.4" 93206 93018 sources."rimraf-3.0.2" 93207 93019 sources."run-parallel-1.2.0" ··· 93500 93312 dependencies = [ 93501 93313 sources."@babel/code-frame-7.12.13" 93502 93314 sources."@babel/compat-data-7.12.13" 93503 - (sources."@babel/core-7.12.13" // { 93315 + (sources."@babel/core-7.12.16" // { 93504 93316 dependencies = [ 93505 93317 sources."json5-2.2.0" 93506 93318 sources."source-map-0.5.7" ··· 93513 93325 }) 93514 93326 sources."@babel/helper-annotate-as-pure-7.12.13" 93515 93327 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 93516 - sources."@babel/helper-compilation-targets-7.12.13" 93517 - sources."@babel/helper-create-class-features-plugin-7.12.13" 93518 - sources."@babel/helper-create-regexp-features-plugin-7.12.13" 93328 + sources."@babel/helper-compilation-targets-7.12.16" 93329 + sources."@babel/helper-create-class-features-plugin-7.12.16" 93330 + sources."@babel/helper-create-regexp-features-plugin-7.12.16" 93519 93331 sources."@babel/helper-explode-assignable-expression-7.12.13" 93520 93332 sources."@babel/helper-function-name-7.12.13" 93521 93333 sources."@babel/helper-get-function-arity-7.12.13" 93522 93334 sources."@babel/helper-hoist-variables-7.12.13" 93523 - sources."@babel/helper-member-expression-to-functions-7.12.13" 93335 + sources."@babel/helper-member-expression-to-functions-7.12.16" 93524 93336 sources."@babel/helper-module-imports-7.12.13" 93525 93337 sources."@babel/helper-module-transforms-7.12.13" 93526 93338 sources."@babel/helper-optimise-call-expression-7.12.13" ··· 93531 93343 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 93532 93344 sources."@babel/helper-split-export-declaration-7.12.13" 93533 93345 sources."@babel/helper-validator-identifier-7.12.11" 93534 - sources."@babel/helper-validator-option-7.12.11" 93346 + sources."@babel/helper-validator-option-7.12.16" 93535 93347 sources."@babel/helper-wrap-function-7.12.13" 93536 93348 sources."@babel/helpers-7.12.13" 93537 93349 sources."@babel/highlight-7.12.13" 93538 - sources."@babel/parser-7.12.15" 93350 + sources."@babel/parser-7.12.16" 93539 93351 sources."@babel/plugin-proposal-async-generator-functions-7.12.13" 93540 93352 sources."@babel/plugin-proposal-class-properties-7.12.13" 93541 - sources."@babel/plugin-proposal-dynamic-import-7.12.1" 93353 + sources."@babel/plugin-proposal-dynamic-import-7.12.16" 93542 93354 sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 93543 93355 sources."@babel/plugin-proposal-json-strings-7.12.13" 93544 93356 sources."@babel/plugin-proposal-logical-assignment-operators-7.12.13" ··· 93546 93358 sources."@babel/plugin-proposal-numeric-separator-7.12.13" 93547 93359 sources."@babel/plugin-proposal-object-rest-spread-7.12.13" 93548 93360 sources."@babel/plugin-proposal-optional-catch-binding-7.12.13" 93549 - sources."@babel/plugin-proposal-optional-chaining-7.12.13" 93361 + sources."@babel/plugin-proposal-optional-chaining-7.12.16" 93550 93362 sources."@babel/plugin-proposal-private-methods-7.12.13" 93551 93363 sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 93552 93364 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 93587 93399 sources."@babel/plugin-transform-object-super-7.12.13" 93588 93400 sources."@babel/plugin-transform-parameters-7.12.13" 93589 93401 sources."@babel/plugin-transform-property-literals-7.12.13" 93590 - sources."@babel/plugin-transform-react-jsx-7.12.13" 93402 + sources."@babel/plugin-transform-react-jsx-7.12.16" 93591 93403 sources."@babel/plugin-transform-regenerator-7.12.13" 93592 93404 sources."@babel/plugin-transform-reserved-words-7.12.13" 93593 93405 sources."@babel/plugin-transform-shorthand-properties-7.12.13" ··· 93597 93409 sources."@babel/plugin-transform-typeof-symbol-7.12.13" 93598 93410 sources."@babel/plugin-transform-unicode-escapes-7.12.13" 93599 93411 sources."@babel/plugin-transform-unicode-regex-7.12.13" 93600 - sources."@babel/preset-env-7.12.13" 93412 + sources."@babel/preset-env-7.12.16" 93601 93413 sources."@babel/preset-modules-0.1.4" 93602 93414 sources."@babel/runtime-7.12.13" 93603 93415 sources."@babel/template-7.12.13" ··· 93852 93664 sources."duplexer2-0.1.4" 93853 93665 sources."ecc-jsbn-0.1.2" 93854 93666 sources."ee-first-1.1.1" 93855 - sources."electron-to-chromium-1.3.662" 93667 + sources."electron-to-chromium-1.3.663" 93856 93668 (sources."elliptic-6.5.4" // { 93857 93669 dependencies = [ 93858 93670 sources."bn.js-4.11.9" ··· 97107 96919 sources."@babel/helper-split-export-declaration-7.12.13" 97108 96920 sources."@babel/helper-validator-identifier-7.12.11" 97109 96921 sources."@babel/highlight-7.12.13" 97110 - sources."@babel/parser-7.12.15" 96922 + sources."@babel/parser-7.12.16" 97111 96923 sources."@babel/runtime-7.12.13" 97112 96924 sources."@babel/template-7.12.13" 97113 96925 sources."@babel/traverse-7.12.13" ··· 97540 97352 sources."buffers-0.1.1" 97541 97353 sources."builtin-modules-3.2.0" 97542 97354 sources."callsites-3.1.0" 97543 - sources."camelcase-5.3.1" 97355 + sources."camelcase-6.2.0" 97544 97356 sources."chainsaw-0.1.0" 97545 97357 (sources."chalk-4.1.0" // { 97546 97358 dependencies = [ ··· 97553 97365 }) 97554 97366 sources."cheerio-1.0.0-rc.5" 97555 97367 sources."cheerio-select-tmp-0.1.1" 97556 - sources."chokidar-3.4.3" 97557 - (sources."cliui-5.0.0" // { 97558 - dependencies = [ 97559 - sources."ansi-regex-4.1.0" 97560 - sources."emoji-regex-7.0.3" 97561 - sources."is-fullwidth-code-point-2.0.0" 97562 - sources."string-width-3.1.0" 97563 - sources."strip-ansi-5.2.0" 97564 - ]; 97565 - }) 97368 + sources."chokidar-3.5.1" 97369 + sources."cliui-7.0.4" 97566 97370 sources."color-convert-1.9.3" 97567 97371 sources."color-name-1.1.3" 97568 97372 sources."combined-stream-1.0.8" ··· 97575 97379 sources."css-select-3.1.2" 97576 97380 sources."css-what-4.0.0" 97577 97381 sources."debug-4.3.2" 97578 - sources."decamelize-1.2.0" 97382 + sources."decamelize-4.0.0" 97579 97383 sources."deep-is-0.1.3" 97580 97384 sources."deepmerge-4.2.2" 97581 97385 sources."delayed-stream-1.0.0" 97582 97386 sources."denodeify-1.2.1" 97583 - sources."diff-4.0.2" 97387 + sources."diff-5.0.0" 97584 97388 sources."dir-glob-3.0.1" 97585 97389 sources."doctrine-3.0.0" 97586 97390 sources."dom-serializer-1.2.0" ··· 97598 97402 sources."emoji-regex-8.0.0" 97599 97403 sources."enquirer-2.3.6" 97600 97404 sources."entities-2.1.0" 97405 + sources."escalade-3.1.1" 97601 97406 sources."escape-string-regexp-1.0.5" 97602 97407 (sources."eslint-7.19.0" // { 97603 97408 dependencies = [ ··· 97644 97449 sources."flatted-3.1.1" 97645 97450 sources."form-data-3.0.0" 97646 97451 sources."fs.realpath-1.0.0" 97647 - sources."fsevents-2.1.3" 97452 + sources."fsevents-2.3.2" 97648 97453 (sources."fstream-1.0.12" // { 97649 97454 dependencies = [ 97650 97455 sources."rimraf-2.7.1" ··· 97708 97513 sources."minimatch-3.0.4" 97709 97514 sources."minimist-1.2.5" 97710 97515 sources."mkdirp-0.5.5" 97711 - (sources."mocha-8.2.1" // { 97516 + (sources."mocha-8.3.0" // { 97712 97517 dependencies = [ 97713 - sources."debug-4.2.0" 97518 + sources."argparse-2.0.1" 97519 + (sources."debug-4.3.1" // { 97520 + dependencies = [ 97521 + sources."ms-2.1.2" 97522 + ]; 97523 + }) 97714 97524 sources."escape-string-regexp-4.0.0" 97715 97525 sources."has-flag-4.0.0" 97716 - sources."js-yaml-3.14.0" 97717 - sources."supports-color-7.2.0" 97526 + sources."js-yaml-4.0.0" 97527 + sources."ms-2.1.3" 97528 + sources."supports-color-8.1.1" 97718 97529 ]; 97719 97530 }) 97720 97531 sources."ms-2.1.2" 97721 97532 sources."mute-stream-0.0.8" 97722 - sources."nanoid-3.1.12" 97533 + sources."nanoid-3.1.20" 97723 97534 sources."natural-compare-1.4.0" 97724 97535 sources."node-fetch-2.6.1" 97725 97536 sources."normalize-path-3.0.0" ··· 97732 97543 sources."osenv-0.1.5" 97733 97544 sources."p-limit-3.1.0" 97734 97545 sources."p-locate-5.0.0" 97735 - sources."p-try-2.2.0" 97736 97546 sources."parent-module-1.0.1" 97737 97547 (sources."parse-semver-1.1.1" // { 97738 97548 dependencies = [ ··· 97765 97575 sources."regexpp-3.1.0" 97766 97576 sources."require-directory-2.1.1" 97767 97577 sources."require-from-string-2.0.2" 97768 - sources."require-main-filename-2.0.0" 97769 97578 sources."resolve-1.20.0" 97770 97579 sources."resolve-from-4.0.0" 97771 97580 sources."reusify-1.0.4" 97772 97581 sources."rimraf-3.0.2" 97773 - (sources."rollup-2.38.5" // { 97774 - dependencies = [ 97775 - sources."fsevents-2.3.2" 97776 - ]; 97777 - }) 97582 + sources."rollup-2.38.5" 97778 97583 sources."run-parallel-1.2.0" 97779 97584 sources."safe-buffer-5.2.1" 97780 97585 sources."semver-7.3.4" 97781 97586 sources."serialize-javascript-5.0.1" 97782 - sources."set-blocking-2.0.0" 97783 97587 sources."setimmediate-1.0.5" 97784 97588 sources."shebang-command-2.0.0" 97785 97589 sources."shebang-regex-3.0.0" ··· 97845 97649 sources."vscode-languageserver-types-3.16.0" 97846 97650 sources."vscode-test-1.5.0" 97847 97651 sources."which-2.0.2" 97848 - sources."which-module-2.0.0" 97849 97652 (sources."wide-align-1.1.3" // { 97850 97653 dependencies = [ 97851 97654 sources."ansi-regex-3.0.0" ··· 97855 97658 ]; 97856 97659 }) 97857 97660 sources."word-wrap-1.2.3" 97858 - sources."workerpool-6.0.2" 97859 - (sources."wrap-ansi-5.1.0" // { 97661 + sources."workerpool-6.1.0" 97662 + (sources."wrap-ansi-7.0.0" // { 97860 97663 dependencies = [ 97861 - sources."ansi-regex-4.1.0" 97862 - sources."emoji-regex-7.0.3" 97863 - sources."is-fullwidth-code-point-2.0.0" 97864 - sources."string-width-3.1.0" 97865 - sources."strip-ansi-5.2.0" 97664 + sources."ansi-styles-4.3.0" 97665 + sources."color-convert-2.0.1" 97666 + sources."color-name-1.1.4" 97866 97667 ]; 97867 97668 }) 97868 97669 sources."wrappy-1.0.2" 97869 - sources."y18n-4.0.1" 97670 + sources."y18n-5.0.5" 97870 97671 sources."yallist-4.0.0" 97871 - (sources."yargs-13.3.2" // { 97872 - dependencies = [ 97873 - sources."ansi-regex-4.1.0" 97874 - sources."emoji-regex-7.0.3" 97875 - sources."find-up-3.0.0" 97876 - sources."is-fullwidth-code-point-2.0.0" 97877 - sources."locate-path-3.0.0" 97878 - sources."p-limit-2.3.0" 97879 - sources."p-locate-3.0.0" 97880 - sources."path-exists-3.0.0" 97881 - sources."string-width-3.1.0" 97882 - sources."strip-ansi-5.2.0" 97883 - ]; 97884 - }) 97885 - sources."yargs-parser-13.1.2" 97886 - (sources."yargs-unparser-2.0.0" // { 97887 - dependencies = [ 97888 - sources."camelcase-6.2.0" 97889 - sources."decamelize-4.0.0" 97890 - ]; 97891 - }) 97672 + sources."yargs-16.2.0" 97673 + sources."yargs-parser-20.2.4" 97674 + sources."yargs-unparser-2.0.0" 97892 97675 sources."yauzl-2.10.0" 97893 97676 sources."yazl-2.5.1" 97894 97677 sources."yocto-queue-0.1.0" ··· 98294 98077 sources."@types/keyv-3.1.1" 98295 98078 sources."@types/lodash-4.14.168" 98296 98079 sources."@types/long-4.0.1" 98297 - sources."@types/node-14.14.25" 98080 + sources."@types/node-14.14.26" 98298 98081 sources."@types/request-2.48.5" 98299 98082 sources."@types/request-promise-native-1.0.17" 98300 98083 sources."@types/responselike-1.0.0" ··· 98351 98134 sources."async-limiter-1.0.1" 98352 98135 sources."asynckit-0.4.0" 98353 98136 sources."at-least-node-1.0.0" 98354 - (sources."aws-sdk-2.841.0" // { 98137 + (sources."aws-sdk-2.842.0" // { 98355 98138 dependencies = [ 98356 98139 sources."buffer-4.9.2" 98357 98140 sources."ieee754-1.1.13" ··· 99782 99565 sources."@types/http-cache-semantics-4.0.0" 99783 99566 sources."@types/js-yaml-3.12.6" 99784 99567 sources."@types/keyv-3.1.1" 99785 - sources."@types/node-14.14.25" 99568 + sources."@types/node-14.14.26" 99786 99569 sources."@types/responselike-1.0.0" 99787 99570 sources."@yarnpkg/lockfile-1.1.0" 99788 99571 sources."abbrev-1.1.1" ··· 100390 100173 sources."@types/component-emitter-1.2.10" 100391 100174 sources."@types/cookie-0.4.0" 100392 100175 sources."@types/cors-2.8.9" 100393 - sources."@types/node-14.14.25" 100176 + sources."@types/node-14.14.26" 100394 100177 sources."accepts-1.3.7" 100395 100178 sources."base64-arraybuffer-0.1.4" 100396 100179 sources."base64id-2.0.0" ··· 101632 101415 sources."async-1.5.2" 101633 101416 sources."async-limiter-1.0.1" 101634 101417 sources."asynckit-0.4.0" 101635 - (sources."aws-sdk-2.841.0" // { 101418 + (sources."aws-sdk-2.842.0" // { 101636 101419 dependencies = [ 101637 101420 sources."uuid-3.3.2" 101638 101421 ]; ··· 102407 102190 }; 102408 102191 dependencies = [ 102409 102192 sources."@babel/code-frame-7.12.13" 102410 - sources."@babel/core-7.12.13" 102193 + sources."@babel/core-7.12.16" 102411 102194 sources."@babel/generator-7.12.15" 102412 102195 sources."@babel/helper-function-name-7.12.13" 102413 102196 sources."@babel/helper-get-function-arity-7.12.13" 102414 - sources."@babel/helper-member-expression-to-functions-7.12.13" 102197 + sources."@babel/helper-member-expression-to-functions-7.12.16" 102415 102198 sources."@babel/helper-module-imports-7.12.13" 102416 102199 sources."@babel/helper-module-transforms-7.12.13" 102417 102200 sources."@babel/helper-optimise-call-expression-7.12.13" ··· 102425 102208 sources."chalk-2.4.2" 102426 102209 ]; 102427 102210 }) 102428 - sources."@babel/parser-7.12.15" 102211 + sources."@babel/parser-7.12.16" 102429 102212 sources."@babel/template-7.12.13" 102430 102213 sources."@babel/traverse-7.12.13" 102431 102214 sources."@babel/types-7.12.13" ··· 102492 102275 sources."domelementtype-1.3.1" 102493 102276 sources."domhandler-2.4.2" 102494 102277 sources."domutils-1.7.0" 102495 - sources."electron-to-chromium-1.3.662" 102278 + sources."electron-to-chromium-1.3.663" 102496 102279 sources."emoji-regex-8.0.0" 102497 102280 sources."entities-1.1.2" 102498 102281 sources."error-ex-1.3.2" ··· 102735 102518 sources."@emmetio/abbreviation-2.2.0" 102736 102519 sources."@emmetio/css-abbreviation-2.1.2" 102737 102520 sources."@emmetio/scanner-1.0.0" 102738 - sources."@types/node-14.14.25" 102521 + sources."@types/node-14.14.26" 102739 102522 sources."@types/parse-json-4.0.0" 102740 102523 sources."@types/pug-2.0.4" 102741 102524 sources."@types/sass-1.16.0" ··· 104773 104556 sources."@types/debug-4.1.5" 104774 104557 sources."@types/http-cache-semantics-4.0.0" 104775 104558 sources."@types/keyv-3.1.1" 104776 - sources."@types/node-14.14.25" 104559 + sources."@types/node-14.14.26" 104777 104560 sources."@types/responselike-1.0.0" 104778 104561 sources."abbrev-1.1.1" 104779 104562 sources."abstract-logging-2.0.1" ··· 105743 105526 sources."@types/component-emitter-1.2.10" 105744 105527 sources."@types/cookie-0.4.0" 105745 105528 sources."@types/cors-2.8.9" 105746 - sources."@types/node-14.14.25" 105529 + sources."@types/node-14.14.26" 105747 105530 sources."abbrev-1.1.1" 105748 105531 sources."accepts-1.3.7" 105749 105532 sources."ansi-regex-5.0.0" ··· 107534 107317 sources."@starptech/rehype-webparser-0.10.0" 107535 107318 sources."@starptech/webparser-0.10.0" 107536 107319 sources."@szmarczak/http-timer-1.1.2" 107537 - sources."@types/node-14.14.25" 107320 + sources."@types/node-14.14.26" 107538 107321 sources."@types/unist-2.0.3" 107539 107322 sources."@types/vfile-3.0.2" 107540 107323 sources."@types/vfile-message-2.0.0" ··· 108480 108263 sources."@sindresorhus/is-0.14.0" 108481 108264 sources."@szmarczak/http-timer-1.1.2" 108482 108265 sources."@types/minimatch-3.0.3" 108483 - sources."@types/node-14.14.25" 108266 + sources."@types/node-14.14.26" 108484 108267 sources."@types/yauzl-2.9.1" 108485 108268 sources."JSONSelect-0.2.1" 108486 108269 sources."acorn-7.4.1" ··· 109388 109171 sources."@types/eslint-scope-3.7.0" 109389 109172 sources."@types/estree-0.0.46" 109390 109173 sources."@types/json-schema-7.0.7" 109391 - sources."@types/node-14.14.25" 109174 + sources."@types/node-14.14.26" 109392 109175 sources."@webassemblyjs/ast-1.11.0" 109393 109176 sources."@webassemblyjs/floating-point-hex-parser-1.11.0" 109394 109177 sources."@webassemblyjs/helper-api-error-1.11.0" ··· 109415 109198 sources."chrome-trace-event-1.0.2" 109416 109199 sources."colorette-1.2.1" 109417 109200 sources."commander-2.20.3" 109418 - sources."electron-to-chromium-1.3.662" 109201 + sources."electron-to-chromium-1.3.663" 109419 109202 sources."enhanced-resolve-5.7.0" 109420 109203 sources."es-module-lexer-0.3.26" 109421 109204 sources."escalade-3.1.1" ··· 109556 109339 dependencies = [ 109557 109340 sources."@types/glob-7.1.3" 109558 109341 sources."@types/minimatch-3.0.3" 109559 - sources."@types/node-14.14.25" 109342 + sources."@types/node-14.14.26" 109560 109343 sources."accepts-1.3.7" 109561 109344 sources."ajv-6.12.6" 109562 109345 sources."ajv-errors-1.0.1" ··· 110288 110071 ]; 110289 110072 }) 110290 110073 sources."core-util-is-1.0.2" 110291 - sources."create-torrent-4.4.5" 110074 + sources."create-torrent-4.5.0" 110292 110075 sources."debug-2.6.9" 110293 110076 sources."decompress-response-3.3.0" 110294 110077 (sources."dlnacasts-0.1.0" // { ··· 110358 110141 sources."mkdirp-classic-0.5.3" 110359 110142 sources."moment-2.29.1" 110360 110143 sources."mp4-box-encoding-1.4.1" 110361 - sources."mp4-stream-3.1.0" 110144 + sources."mp4-stream-3.1.2" 110362 110145 sources."ms-2.0.0" 110363 110146 (sources."multicast-dns-6.2.3" // { 110364 110147 dependencies = [ ··· 110478 110261 sources."utp-native-2.3.0" 110479 110262 sources."videostream-3.2.2" 110480 110263 sources."vlc-command-1.2.0" 110481 - (sources."webtorrent-0.114.0" // { 110264 + (sources."webtorrent-0.114.1" // { 110482 110265 dependencies = [ 110483 110266 sources."debug-4.3.2" 110484 110267 sources."decompress-response-6.0.0" ··· 110539 110322 sources."e-prime-0.10.4" 110540 110323 sources."no-cliches-0.2.2" 110541 110324 sources."passive-voice-0.1.0" 110542 - sources."too-wordy-0.3.0" 110325 + sources."too-wordy-0.3.1" 110543 110326 sources."weasel-words-0.1.1" 110544 110327 ]; 110545 110328 buildInputs = globalBuildInputs; ··· 110643 110426 sources."@sindresorhus/is-0.7.0" 110644 110427 sources."@types/glob-7.1.3" 110645 110428 sources."@types/minimatch-3.0.3" 110646 - sources."@types/node-14.14.25" 110429 + sources."@types/node-14.14.26" 110647 110430 sources."@types/normalize-package-data-2.4.0" 110648 110431 sources."JSONStream-1.3.5" 110649 110432 sources."aggregate-error-3.1.0"
+2 -2
pkgs/development/python-modules/grpcio-tools/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "grpcio-tools"; 5 - version = "1.34.1"; 5 + version = "1.35.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "b411f36748f4ead33411544d785e37825598bbb8abbe79eca422e395be5a3d08"; 9 + sha256 = "9e2a41cba9c5a20ae299d0fdd377fe231434fa04cbfbfb3807293c6ec10b03cf"; 10 10 }; 11 11 12 12 outputs = [ "out" "dev" ];
+2 -2
pkgs/development/tools/analysis/tfsec/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "tfsec"; 5 - version = "0.37.3"; 5 + version = "0.38.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tfsec"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-36yiX/uTqjiG+ZdQUQGPiLxSxIXE6ThH/LMqBGnm1d8="; 11 + sha256 = "sha256-ezTmtKR6ng3fuVJzLP81o0aoaqu3XPUMF0BIKFCwXdw="; 12 12 }; 13 13 14 14 goPackagePath = "github.com/tfsec/tfsec";
+3 -3
pkgs/development/tools/bazelisk/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "bazelisk"; 5 - version = "1.7.4"; 5 + version = "1.7.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bazelbuild"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "1mc1l2g2qrg9djpyyz203a6dpx5fxllisybmhrpmikyza15w935q"; 11 + sha256 = "sha256-jXRTj/7GJO6rSueOmw8aNg69w43lxiDbSeZR802+kws="; 12 12 }; 13 13 14 - vendorSha256 = "116wy1a7gmi2w8why9hszhcybfvpwp4iq62vshb25cdcma6q4mjh"; 14 + vendorSha256 = "sha256-fW7KHsxhBfz947Tg+O5bdtiH6xMeKmLRHX9FWQSyxVQ="; 15 15 16 16 doCheck = false; 17 17
+2 -2
pkgs/development/tools/pgformatter/default.nix
··· 2 2 3 3 perlPackages.buildPerlPackage rec { 4 4 pname = "pgformatter"; 5 - version = "4.4"; 5 + version = "5.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "darold"; 9 9 repo = "pgFormatter"; 10 10 rev = "v${version}"; 11 - sha256 = "1sqjw6q005lws7qhkd26jqyb1xqmpcklzw5hk8paxxi8mzyjn0jp"; 11 + sha256 = "10ml3va6ip501ibaykbhq8282y1j6r8bc8azc1gqxskk5jvfz1jm"; 12 12 }; 13 13 14 14 outputs = [ "out" ];
+12
pkgs/misc/vscode-extensions/default.nix
··· 128 128 }; 129 129 }; 130 130 131 + dbaeumer.vscode-eslint = buildVscodeMarketplaceExtension { 132 + mktplcRef = { 133 + name = "vscode-eslint"; 134 + publisher = "dbaeumer"; 135 + version = "2.1.14"; 136 + sha256 = "sha256-bVGmp871yu1Llr3uJ+CCosDsrxJtD4b1+CR+omMUfIQ="; 137 + }; 138 + meta = { 139 + license = lib.licenses.mit; 140 + }; 141 + }; 142 + 131 143 davidanson.vscode-markdownlint = buildVscodeMarketplaceExtension { 132 144 mktplcRef = { 133 145 name = "vscode-markdownlint";
+3 -3
pkgs/servers/minio/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "minio"; 5 - version = "2021-02-01T22-56-52Z"; 5 + version = "2021-02-11T08-23-43Z"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "minio"; 9 9 repo = "minio"; 10 10 rev = "RELEASE.${version}"; 11 - sha256 = "sha256-cAQErFWFqyHJpTGxbzY5JCSH/ZV0ZZOWbh1lJmK8MlY="; 11 + sha256 = "sha256-Y2iyi+bdBCLV/MWPPsrrJFEayuQVGsvrs63kOuFljJ8="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-1wnnt4QuOn+1NqZcuA43naP3KtIL5VbVr6VF3+Cu41w="; 14 + vendorSha256 = "sha256-7WvR6WHiaFHHBhpPoqnkr9pzFxNpLpZuaB1a/SkLBtc="; 15 15 16 16 doCheck = false; 17 17
+2 -2
pkgs/servers/pg_tileserv/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pg_tileserv"; 5 - version = "1.0.6"; 5 + version = "1.0.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "CrunchyData"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-6KFYTZq126uvxQ5IOrMN+hpnAk/WtmS1Dam7w6Oif1M="; 11 + sha256 = "sha256-PHF8n0rjxvajyC/y2sFcdvxQdDFXkxcDZOkYT10UsE4="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-qdlh9H039GwKTxOhx+dzyUHkzJbaOeuguKnBOyAPe/E=";
+2 -2
pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pg_auto_failover"; 5 - version = "1.4.1"; 5 + version = "1.4.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "citusdata"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0x19p0b9hv1hkhwjm68cm8gskhnsl7np4si8wl0ablf6kasyl3q7"; 11 + sha256 = "030vm83ksfi4daypr4hamvvfs4g1ckww4ldg7rrk6c6hqkppykpa"; 12 12 }; 13 13 14 14 buildInputs = [ postgresql openssl zlib readline ];
+3 -3
pkgs/tools/misc/topgrade/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "topgrade"; 5 - version = "6.3.2"; 5 + version = "6.4.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "r-darwish"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-yKNHUH+oLQ99oH3yKYQCGAfX3tOI3ghLzLUpPzU6M0k="; 11 + sha256 = "sha256-xrp2oGqJRhjYYZ0dDvYiUfgKM2mazOAlkJQyawDk2y4="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-kSxnEIAKF5Xf/x1LgtEj1u6IchbThtp3Sti5wnezlRA="; 14 + cargoSha256 = "sha256-EK48mrTYgh0AgC53rvVRFfdZP/FS9LOZWr8TF13qEl0="; 15 15 16 16 buildInputs = lib.optional stdenv.isDarwin Foundation; 17 17
+3 -3
pkgs/tools/networking/minio-client/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "minio-client"; 5 - version = "2021-01-30T00-50-42Z"; 5 + version = "2021-02-10T07-32-57Z"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "minio"; 9 9 repo = "mc"; 10 10 rev = "RELEASE.${version}"; 11 - sha256 = "sha256-6t9x2kViSUyZMbe9OFdoCFN4y/swelMVOm80YvOizwM="; 11 + sha256 = "sha256-dwgQ322KV1aR1RYSowHkb7Q0Pn7vuiV6Me1s6cMyaEs="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-3wWUIFpNXom2MuUEDgAAEHlWRXhUzId+shZW/i5Rw4A="; 14 + vendorSha256 = "sha256-MXCZZZ7NGDu8NMBzfIiNdRduvj7d7nboN2r8ObGx4dQ="; 15 15 16 16 doCheck = false; 17 17
+26 -4
pkgs/tools/package-management/libdnf/darwin.patch
··· 1 - --- src/libdnf/hy-iutil.cpp 2020-12-02 07:53:42.000000000 -0800 2 - +++ src/libdnf/hy-iutil.cpp 2020-12-21 14:24:14.000000000 -0800 1 + diff --git src/libdnf/config.h src/libdnf/config.h 2 + index 16121f6f..737d0bc4 100644 3 + --- src/libdnf/config.h 4 + +++ src/libdnf/config.h 5 + @@ -18,7 +18,12 @@ 6 + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 7 + */ 8 + 9 + + 10 + +#ifdef __APPLE__ 11 + +#include <stdint.h> 12 + +#else 13 + #include <bits/wordsize.h> 14 + +#endif 15 + 16 + 17 + #if __WORDSIZE == 32 18 + #include "config-32.h" 19 + diff --git src/libdnf/hy-iutil.cpp src/libdnf/hy-iutil.cpp 20 + index 497c560d..5de077fa 100644 21 + --- src/libdnf/hy-iutil.cpp 22 + +++ src/libdnf/hy-iutil.cpp 3 23 @@ -22,7 +22,7 @@ 4 24 #include <errno.h> 5 25 #include <dirent.h> ··· 9 29 #include <pwd.h> 10 30 #include <unistd.h> 11 31 #include <stdio.h> 12 - --- src/libdnf/hy-util.cpp 2020-12-02 07:53:42.000000000 -0800 13 - +++ src/libdnf/hy-util.cpp 2020-12-21 14:23:21.000000000 -0800 32 + diff --git src/libdnf/hy-util.cpp src/libdnf/hy-util.cpp 33 + index 295fdc1b..9d584b8a 100644 34 + --- src/libdnf/hy-util.cpp 35 + +++ src/libdnf/hy-util.cpp 14 36 @@ -24,7 +24,20 @@ 15 37 #include <ctype.h> 16 38 #include <sys/utsname.h>
+3 -3
pkgs/tools/package-management/libdnf/default.nix
··· 1 1 { gcc9Stdenv, lib, stdenv, fetchFromGitHub, cmake, gettext, pkg-config, gpgme, libsolv, openssl, check 2 - , pcre, json_c, libmodulemd, libsmartcols, sqlite, librepo, libyaml, rpm }: 2 + , json_c, libmodulemd, libsmartcols, sqlite, librepo, libyaml, rpm }: 3 3 4 4 gcc9Stdenv.mkDerivation rec { 5 5 pname = "libdnf"; 6 - version = "0.55.2"; 6 + version = "0.58.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "rpm-software-management"; 10 10 repo = pname; 11 11 rev = version; 12 - sha256 = "0hiydwfa90nsrqk5ffa6ks1g73wnsgjgq7z7gwq9jj76a7gpfbfq"; 12 + sha256 = "0an8giv0lm0qqc76fpmqg42ra081mlj62b9r0s1p0sgb3270l76l"; 13 13 }; 14 14 15 15 patches = lib.optionals stdenv.isDarwin [ ./darwin.patch ];
+2 -2
pkgs/tools/package-management/microdnf/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "microdnf"; 5 - version = "3.6.0"; 5 + version = "3.7.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "rpm-software-management"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "0a7lc3qsnblvznzsz3544l3n84184xi85zf7c3m3jhnmpmxsg39h"; 11 + sha256 = "1is8hqckjdz1h9w44iq1ljyfs5b0qd2cyivl30ny4dv8m8zba4zv"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config cmake gettext help2man ];
+3 -3
pkgs/tools/package-management/nfpm/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "nfpm"; 5 - version = "2.2.3"; 5 + version = "2.2.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "goreleaser"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-F3SDcO5E0d5/aEJLdy0fJqB6brwf4C9Imtk1R5zOT5A="; 11 + sha256 = "sha256-EIHEdU1H5XhhzuWJUEvnKNsuNV8CBJrHBlaZlSfrSro="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-fGhe0EukTWk/4tGPiFMit7zBD4380AkgxrQ3pzImsFU="; 14 + vendorSha256 = "sha256-aSoryidfAfqPBpOtAXFJsq1ZcqJqpGiX3pZz5GpkKqQ="; 15 15 16 16 doCheck = false; 17 17
+9 -7
pkgs/tools/security/gopass/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , makeWrapper 3 4 , buildGoModule 4 5 , fetchFromGitHub ··· 12 13 13 14 buildGoModule rec { 14 15 pname = "gopass"; 15 - version = "1.11.0"; 16 + version = "1.12.0"; 16 17 17 18 nativeBuildInputs = [ installShellFiles makeWrapper ]; 18 19 ··· 20 21 owner = "gopasspw"; 21 22 repo = pname; 22 23 rev = "v${version}"; 23 - sha256 = "0plg3hck6yqxcazjczx9m5palzz5h3qs5minzmmq8yzvfwi0shic"; 24 + sha256 = "0y3dcikw6gl436mhza5j0b3lm49jzl590a9ry53rkmzrv2lqx9w6"; 24 25 }; 25 26 26 - vendorSha256 = "1sycbcld5qyriqb771l52drxy4vhzm4nh9q5s6kn70nq1s2a3h7x"; 27 + vendorSha256 = "09lbkm7c361c2s87qi1wpfsqgpp3r862wcn98dzdg5j6pvpgwbag"; 28 + 29 + subPackages = [ "." ]; 27 30 28 31 doCheck = false; 29 32 ··· 47 50 ''; 48 51 49 52 postFixup = '' 50 - for bin in $out/bin/*; do 51 - wrapProgram $bin --prefix PATH : "${wrapperPath}" 52 - done 53 + wrapProgram $out/bin/gopass --prefix PATH : "${wrapperPath}" 53 54 ''; 54 55 55 56 meta = with lib; { ··· 57 58 homepage = "https://www.gopass.pw/"; 58 59 license = licenses.mit; 59 60 maintainers = with maintainers; [ andir rvolosatovs ]; 61 + changelog = "https://github.com/gopasspw/gopass/blob/v${version}/CHANGELOG.md"; 60 62 platforms = platforms.unix; 61 63 62 64 longDescription = ''