From 3266f88f3dd3bcfca231ddc6c95a5da702792756 Mon Sep 17 00:00:00 2001 From: Janik H Date: Sun, 12 Mar 2023 21:41:40 +0100 Subject: [PATCH 001/213] asterisk: add sub-package with ldap support --- pkgs/servers/asterisk/default.nix | 8 ++++++-- pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/asterisk/default.nix b/pkgs/servers/asterisk/default.nix index 3b345e994e30..b8e856b24164 100644 --- a/pkgs/servers/asterisk/default.nix +++ b/pkgs/servers/asterisk/default.nix @@ -6,6 +6,7 @@ autoconf, libtool, automake, fetchpatch, python39, writeScript, withOpus ? true, + ldapSupport ? false, openldap }: let @@ -29,13 +30,16 @@ let ]; common = {version, sha256, externals}: stdenv.mkDerivation { inherit version; - pname = "asterisk"; + pname = "asterisk" + + lib.optionalString ldapSupport "-ldap"; + buildInputs = [ jansson libedit libxml2 libxslt ncurses openssl sqlite dmidecode libuuid newt lua speex srtp wget curl iksemel ] - ++ lib.optionals withOpus [ libopus opusfile libogg ]; + ++ lib.optionals withOpus [ libopus opusfile libogg ] + ++ lib.optionals ldapSupport [ openldap ]; nativeBuildInputs = [ util-linux pkg-config autoconf libtool automake ]; patches = [ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 36577abfc3cd..8b1f1df949f9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -24550,6 +24550,8 @@ with pkgs; asterisk-module-sccp = callPackage ../servers/asterisk/sccp { }; + asterisk-ldap = lowPrio (asterisk.override { ldapSupport = true; }); + sabnzbd = callPackage ../servers/sabnzbd { }; baserow = callPackage ../servers/baserow { }; From 1bfefc7b43cb397a34ecce9b02dd0f6b146a5e16 Mon Sep 17 00:00:00 2001 From: Janik H Date: Tue, 14 Mar 2023 18:33:33 +0100 Subject: [PATCH 002/213] asterisk: autoformat default.nix --- pkgs/servers/asterisk/default.nix | 95 ++++++++++++++++++++++--------- 1 file changed, 69 insertions(+), 26 deletions(-) diff --git a/pkgs/servers/asterisk/default.nix b/pkgs/servers/asterisk/default.nix index b8e856b24164..c80c747b50c6 100644 --- a/pkgs/servers/asterisk/default.nix +++ b/pkgs/servers/asterisk/default.nix @@ -1,12 +1,38 @@ -{ stdenv, lib, fetchurl, fetchsvn, fetchFromGitHub, - jansson, libedit, libxml2, libxslt, ncurses, openssl, sqlite, - util-linux, dmidecode, libuuid, newt, - lua, speex, libopus, opusfile, libogg, - srtp, wget, curl, iksemel, pkg-config, - autoconf, libtool, automake, fetchpatch, - python39, writeScript, - withOpus ? true, - ldapSupport ? false, openldap +{ stdenv +, lib +, fetchurl +, fetchsvn +, fetchFromGitHub +, jansson +, libedit +, libxml2 +, libxslt +, ncurses +, openssl +, sqlite +, util-linux +, dmidecode +, libuuid +, newt +, lua +, speex +, libopus +, opusfile +, libogg +, srtp +, wget +, curl +, iksemel +, pkg-config +, autoconf +, libtool +, automake +, fetchpatch +, python39 +, writeScript +, withOpus ? true +, ldapSupport ? false +, openldap }: let @@ -28,18 +54,32 @@ let sha256 = "sha256-0iEr/Z4UQpWsTXYWVYzWWk7MQDOFnTQ1BBYpynGLTVQ="; }) ]; - common = {version, sha256, externals}: stdenv.mkDerivation { + common = { version, sha256, externals }: stdenv.mkDerivation { inherit version; pname = "asterisk" - + lib.optionalString ldapSupport "-ldap"; + + lib.optionalString ldapSupport "-ldap"; - buildInputs = [ jansson libedit libxml2 libxslt ncurses openssl sqlite - dmidecode libuuid newt - lua speex - srtp wget curl iksemel ] - ++ lib.optionals withOpus [ libopus opusfile libogg ] - ++ lib.optionals ldapSupport [ openldap ]; + buildInputs = [ + jansson + libedit + libxml2 + libxslt + ncurses + openssl + sqlite + dmidecode + libuuid + newt + lua + speex + srtp + wget + curl + iksemel + ] + ++ lib.optionals withOpus [ libopus opusfile libogg ] + ++ lib.optionals ldapSupport [ openldap ]; nativeBuildInputs = [ util-linux pkg-config autoconf libtool automake ]; patches = [ @@ -139,13 +179,15 @@ let }; # auto-generated by update.py - versions = lib.mapAttrs (_: {version, sha256}: common { - inherit version sha256; - externals = { - "externals_cache/pjproject-2.12.1.tar.bz2" = pjproject_2_12_1; - "addons/mp3" = mp3-202; - }; - }) (lib.importJSON ./versions.json); + versions = lib.mapAttrs + (_: { version, sha256 }: common { + inherit version sha256; + externals = { + "externals_cache/pjproject-2.12.1.tar.bz2" = pjproject_2_12_1; + "addons/mp3" = mp3-202; + }; + }) + (lib.importJSON ./versions.json); updateScript_python = python39.withPackages (p: with p; [ packaging beautifulsoup4 requests ]); updateScript = writeScript "asterisk-update" '' @@ -153,7 +195,8 @@ let exec ${updateScript_python}/bin/python ${toString ./update.py} ''; -in { +in +{ # Supported releases (as of 2022-04-05). # Source: https://wiki.asterisk.org/wiki/display/AST/Asterisk+Versions # Exact version can be found at https://www.asterisk.org/downloads/asterisk/all-asterisk-versions/ @@ -166,7 +209,7 @@ in { asterisk-lts = versions.asterisk_18; asterisk-stable = versions.asterisk_19; asterisk = versions.asterisk_19.overrideAttrs (o: { - passthru = (o.passthru or {}) // { inherit updateScript; }; + passthru = (o.passthru or { }) // { inherit updateScript; }; }); } // versions From 722d963ef287f2469133f6677b0d3e25ae4e2ede Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 24 Mar 2023 16:29:09 +0200 Subject: [PATCH 003/213] owl-compositor: init at unstable-2021-11-10 --- .../window-managers/owl/default.nix | 87 ++++++++++++++++++ .../window-managers/owl/mac/MainMenu.nib | Bin 0 -> 6088 bytes .../owl/mac/OwlPreferences.nib | Bin 0 -> 2806 bytes pkgs/top-level/all-packages.nix | 2 + 4 files changed, 89 insertions(+) create mode 100644 pkgs/applications/window-managers/owl/default.nix create mode 100644 pkgs/applications/window-managers/owl/mac/MainMenu.nib create mode 100644 pkgs/applications/window-managers/owl/mac/OwlPreferences.nib diff --git a/pkgs/applications/window-managers/owl/default.nix b/pkgs/applications/window-managers/owl/default.nix new file mode 100644 index 000000000000..ac42c38e7aaa --- /dev/null +++ b/pkgs/applications/window-managers/owl/default.nix @@ -0,0 +1,87 @@ +{ lib +, stdenv +, fetchFromGitHub +, gnustep +, libxkbcommon +, makeWrapper +, wayland +, wayland-scanner +, darwin +}: + +assert wayland.withLibraries; + +let + mkDerivation = if stdenv.isDarwin then stdenv.mkDerivation else gnustep.gsmakeDerivation; +in +mkDerivation { + pname = "owl"; + version = "unstable-2021-11-10"; + + src = fetchFromGitHub { + owner = "owl-compositor"; + repo = "owl"; + rev = "91abf02613cd2ddb97be58b5b6703240320233a0"; + hash = "sha256-a+TznasOVEzSNrs66/y91AeMRDEfyd+WO5mO811hLj0="; + }; + + # use pregenerated nib files because generating them requires Xcode + postPatch = lib.optionalString stdenv.isDarwin '' + sed -i "/ibtool/d" configure + mkdir -p build/Owl.app/Contents/Resources/English.lproj + cp ${./mac/MainMenu.nib} build/Owl.app/Contents/Resources/English.lproj/MainMenu.nib + cp ${./mac/OwlPreferences.nib} build/Owl.app/Contents/Resources/English.lproj/OwlPreferences.nib + ''; + + strictDeps = true; + + nativeBuildInputs = [ + makeWrapper + wayland-scanner + ] ++ lib.optionals stdenv.isDarwin [ + darwin.DarwinTools + darwin.bootstrap_cmds + ] ++ lib.optionals (!stdenv.isDarwin) [ + gnustep.make + ]; + + buildInputs = [ + libxkbcommon + wayland + ] ++ lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Cocoa + ] ++ lib.optionals (!stdenv.isDarwin) [ + gnustep.back + gnustep.base + gnustep.gui + ]; + + preConfigure = '' + mkdir -p build + cd build + ''; + + configureScript = "../configure"; + + # error: "Your gnustep-base was configured for the objc-nonfragile-abi but you are not using it now." + env.NIX_CFLAGS_COMPILE = lib.optionalString (!stdenv.isDarwin) "-fobjc-runtime=gnustep-2.0"; + + installPhase = '' + runHook preInstall + + mkdir -p $out/{Applications,bin} + mv Owl.app $out/Applications + makeWrapper $out/{Applications/Owl.app${lib.optionalString stdenv.isDarwin "/Contents/MacOS"},bin}/Owl + + runHook postInstall + ''; + + meta = with lib; { + description = "A portable Wayland compositor in Objective-C"; + homepage = "https://github.com/owl-compositor/owl"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.unix; + mainProgram = "Owl"; + }; +} diff --git a/pkgs/applications/window-managers/owl/mac/MainMenu.nib b/pkgs/applications/window-managers/owl/mac/MainMenu.nib new file mode 100644 index 0000000000000000000000000000000000000000..ea5c6f8fe3a0da7bc038a401799278b12a3ea0af GIT binary patch literal 6088 zcmebCbaE_8&d4lFWn^Gr;9_84IK;rfV8p<{pv%C(z|YLU@PLVd;RGuK10Mqe!%r~= zhK7cw#-^^Op2p_h#+JUu*8T}?^IMu0H#RS6Y+l;fwydRTRb%t&#`ZN$&FdOl*SBv$3(6tFf`0yRo^0ud%aP zys@!aqOq|_vazvQs zzOk`6p|P<$v9YNmxv{f3r?Ig)x3RG~ud%T^zp<&Ku(7kbsV19w5hRKtf{d_ylG{-LsN6Jb5mohOH*5iS5t3ucvE9@ zL{npXWK(l%OjA!sMpJi3aZ`6kT~lu}cXMMqPjhoCe{*BAKyzbD>Q*%?ROLKFFdvkAdNONO*XmfLGM00ybd~;VvW^;FQNpoXIX>(6A zV@qQ@Q%iFzYfDozdrM<8M@wT9XG>!#=ZCV?9ZCe|A?OGdq?OPjr9aW4y;~c5eOeoPeOnuQ{aPD){aYJ* z16mt<16vz=gIXJVgIgPWLs}bqLt7hr!&)1A!&@7BBU&4KBU>ALqgoq#qgxw$V_F+~ zV_O?r<60Yg;#(U#{DSq8Doav}r-XX?WhS}iCFiH47P;mYlvH}BR(ALW2j`a-C8zfL z1^Xvur6!jYhb88erWQ~43wBISPAx9ZOv=p3EUEO*OeywGtt{^I3--**$;?Yl0julv z3wB8@F3HSGEXmBz>-G!wP0cIyEJ@8R?(_@x&-2VpOi%6g3---R&CSotO!mo7?)D3I z&PgmT_Djr7?eYuOD=tV)&P>b!Gc&7F%Mx=Y_yvb$7H1~qq=skarR0|v&+-d)%*n|w zPfc;lFY?LE%`8bxaV#kC%})WD?OE)YQ<7Sgmspb8;TIf|Sd^Yx(&rZ(lv)h-7|5QP zXr6J-&&x|qF3B${?uC0BFcoYWq_V36;@{w;3v3kE6a z^a~CyP0CHpEA4{Fg0=evLru=i&nxZ#Sqci3g;3{%!q2s^G_x!*CpE9cCqFqcC$kD1 zZtZ@-K8Z=GIlZ1vdimg3NJ%V7?D7ltPOSv%n1|H}-^`+-{G!af^iIEEz0AClvc#M= zNDQER7~%dNPbZhu;>`5C;LNJjrGCNA8JRgL&iQ#IMfo{7sYT93sbCicr{;hI2;|o` zzu=(!{E}IoPI|?a#U-h^Zuxm7p#>?4C8=SlMa7xhU=E;a@RhDI(>1<}Z*2xhB-Ni8s`2PRFy zq!pNS0Fy3Y(gRHTfXP5G844z&7#J9u!0v71VrO7rn9IeI2D&czQ_)DD#dc})Q97#T1r$H2g_2yE;e)&;Cnxda&)80K>cF)%Q6GX4Mm zzrKS@n1O*|HJ1d~lr~W2RWNMeXz1b+VPIgG$R*0az%Ye#36~fH1H%f=299>WU~ptL zaP&hGn{!5La&~TFQFb>2QxBIo*qDxLLkk@RL$g|#DUwiAq@boufanFseQ-%)Nh(;g zG+1*xShGnjva4l@aJ3P#26-Yh7&mZqCqsiYHLtXZO9>qKD&P>SU|?W?gqSkisFh3% z3<6lgZITlxBPuxNY^d}Y-CFZ54dgg%zteUvgz!qqtS)dNKK!bsS z0k;JmzL|NMxtUd|4IGWR4IGmTQj5~^i*iAti6x~)nN_J)OKZ2`5Y z=5m>Uy@IgC0BnmPUa#~86s4x67NzDTrxrhISk}PNsMEz|432tG{y>s#;Fy+QkeY`i z0;v+Lnz+osA!&(by*b!=3%u5Mcx0xeLVVho(ZJD~k(mMtJ8Q77?7+s_qZw-hHr5uu zv4N$T&;V>Kgq1s8C8=kadxK3! zWDYMPOmB(G&(Ce(=z*qL5YMWK%NJ~30NA_|crx_^o97P=YV5($19ojletu3;Vo?J} zV@U(Y3U^Pqf~ z0&tBIkeHKNQUZ$PFtC-8U@Pn4z6u9h83FYb_9CRizdT35BQ>X>fuqsBfuplHBflKP zwQAyu1{)d+HWU=}{j89ZDF$pT$S2s!^69~;MP;c)y1}6I?vk3E52=!i8#pFHLdzwy zxF9F7GC0`93RG)=(taaXJh;{<1Ct=T8o8>$Y*5+Q$OTFSjo@Oek*f+U4su%~R}z>F zDhC?DrBEX{gEoSbWFr?SZ#8n|fz^OYk4CNxFgqPgW`fCVFqsb~K{=(7s|d^nC5=XK zVrc}&XCqfFSR53%ja;DMZsaNii-4-mMlSTauMu1kH*z(D)qpD5MlMjG=odqzG6s2(lHs-ShSkT1v0FiD-GZs#fmhYND@Nfx;p352fzYl82@25;aCOxQ zCcD67H<;`Jlf7WF4@~xh$q8U`BAA>6CMSc*DPVFcn4AVCr-R8EU~(pyoCPLlgULBy zaxR#h2PWr($pv6?A(&hQCKrRrC17$Xm|O-XmxIX_U~(mxTm>dqgUK~uaxIu#2PW5p z$qis~BbeL-CO3o0EnsphnA`>?w}Z(YU~(sz+yy3ggULN$axa+N2PXG3Ffc4+v|w7u zXvwsY(TZsyqczh)MjNJujJ8Y*8SR)BGTJjOWOQI!$mqzlkkN^0A)_j9^;G7|FDdF^Xv+V>Hu3#u%oBjIm4$8RM81 zGR8A4WK3XM$e75qkTHpAA!9PrLdF!Pg^a083mMax7BZ$YEo97KTF98mw2(22X(3}a z(?Z4^riF~TObZ$Fm=-eTGl51lIvZevSq%LRe!-qjkO4iH#F9j?0HnbR5o7=<4lV)p zSs8j8{DOT;OF)Az!Ko!+rBJS8QBh(g!_)@9V86^H|I(72)Dq|bSAG#gJ4jndg=c4%l literal 0 HcmV?d00001 diff --git a/pkgs/applications/window-managers/owl/mac/OwlPreferences.nib b/pkgs/applications/window-managers/owl/mac/OwlPreferences.nib new file mode 100644 index 0000000000000000000000000000000000000000..14f187d144e5891f824e003a26d97694b181303f GIT binary patch literal 2806 zcmebCbaE_8&d4lFWn^Gr;9_84FkoO{Fk)a}2x4GhILpAmFq?saL5PikL5P8Y;RPoH zLqkJTV^ddCPh)d$V@qFC>xACsxsA>98k^@gwk_yvU)j{LdRp_r#?C|i%@-THE;Tn_ zZS20*+I+jQ`A%cc-KOUIjlB;Vn;$kdKWc1#+}Ql2vHfXt-;0*!H;w&oo0~s0PWaf? z^u4k9N8^N_Z4>@?PT*+loG94XI8msvaiVZz<3y3h#)+bhjT6Nh8z+i4HcpgiY;2co zY@8s~*f`lQ*fFOhwJ0yKB-J@TuOv0Eq`1Q`I5@wwC^@yuFIcZQvnsVLF{i^XSTCuv zB(=E9FBqn-(=RwY#4RT=9V8fBnpBpVT3$R8B43oB6JC^Al9`w8l3A3RT#}ie*X|eW zlbDp6v&=6zEHkw{JTb4N*eSKRBq+5wKc^I=!oMIj&)p}uv?whxId!6^lV7lNPG&)I zNWN2kXN@lW4YEEM1Y`9gS#i_-?nR)3ssXm!`slNFssr`Pz;hA|U z`Q=WD$=R8C>C^p!9g~w&i;FXpGIKIZD*ZE4ioH`Si>HBX@ky-AFD>y+EK1MJD|Ro< zOi7&%H##^qFU1k;e&596>^{F>kaIzS+sULwdd-5}Q| z78irmO@z57xTG>C6=YDaU$9?hQb>Mja)wi4(R`3Af-@3R^2<|Gf-7^A@^hT?^U^ZY zON+o}_4@@omR2~GmXze@g;W-ReCMB(m6}{q9F~|I9@D>6x3D4hm&RT!w(W1`4_SqTIwBuw0v8a8Q1J2`I2( z9_jZB_D-#IEiBC}OUy~lE9rp+4k*=4hC2w9iZk;{^Gl28`UQs;rxtCC#_yw1NL#r2NhjUJ1aq&Em4|4L$i+%Fb zGm{f@An6O95xV_?-HH-(Q$e2X@e2-4E=o zWhS}iCFiH47P;mYlvH}BR(ARYyXJw+NP!15$S(-TfU=}hQEFngZ+=Q@JJj#9Je^!p zi!;;nz+s7!*e8I>hvLknoK#4x7k7fwSV4YKNrzu>8Z5k_fdq=wHoss{Q1to*LvsZv zWum8gM1JT7S&&)|jw)~wSCE>VnV8e->7GTWs zO{@S3oaF-51oIgfS8_2iFfbh9Vqsuln8YQ`z`$^lOM!ubVJ4R{0|UbXE)`Jaz@^H- zz%YkPkAZ=qk4v9{f#DRGoWjM-z`)SV(dS>D6Ht_zmRgjWmz-L>i*+9tD+2?=R0jTD z2BrgCYzzzxtxOCI6$;C_*cliYW^r!f;$UE4IL*0^a}5_K0|UcWE=dLkhKpQM3=9mr zS(`a#R972Xn&~JQnHbdSC{&wR80aV%nH$vBHgoj*m**%TS=P+a0ZSe0Ij3=MWMp7$ z;{w%iTeu_`7#KQP_i*-eb}=x39L3GRz_1={AxI$);~_2{1_p+OU=g^&{j5v4co`TN zHnS{cVA#&Uu$E;pOApIV28M$S4DHPSpUDQ z)~*7DOAAQpT(B7}Tzm`+3`e>685kIjbAg<3j!7ZV#$z4>(+Vy@1_p*@Tw)9i3=Lf3 z3=9mb!DKh%35G=sk~82oHgoKPcw3=3wWut$NVhmMB~>9MH8~$r;1(;Sk4uh$ zfuRwcS|@{pu!BpMfq`KgXER5C0XXpm2fILOgGR9YWU$%}E_tvM`$`hCQy~Eu9PDBR zGFB06EGVV!11EufU~T)jK(RlCO9`y4*Dn|pMw!XrG7Y2)lwJ0LjfSLhWW5M^d}ibug&`CN;sN7MRoqlR98hmw|y{2Lt;K296yJoI4n}b}(@7VBp!oz`KKi zZx`z>*3Jf4dBV`&;1}%a1Swox5=#=n0?wtyCHc7!K?acG;F6-uymW@%2ESn6(h^XS z7@S(dFtGuar9x733vv=mQW@GCASDpk7^qUmqN2n~urZKe2O9%nf~sh+9#EPBn+LHP z))Hap0GS7B2rx`(fE8Qdauw2yW0=|iZf*FNmgJ Date: Tue, 4 Apr 2023 13:58:03 +0200 Subject: [PATCH 004/213] CODEOWNERS: add RaitoBezarius to llvm tree --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 4654518a0e80..1f6fed0d83a0 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -138,7 +138,7 @@ # C compilers /pkgs/development/compilers/gcc @matthewbauer -/pkgs/development/compilers/llvm @matthewbauer +/pkgs/development/compilers/llvm @matthewbauer @RaitoBezarius # Compatibility stuff /pkgs/top-level/unix-tools.nix @matthewbauer From 71983a6eb5cdf0755d80d8197f52f52b0a5d3f9f Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Sun, 17 Apr 2022 18:05:25 -0400 Subject: [PATCH 005/213] systemd-initrd: Don't use SYSTEMD_SULOGIN_FORCE --- nixos/modules/system/boot/systemd/initrd.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/boot/systemd/initrd.nix b/nixos/modules/system/boot/systemd/initrd.nix index ffe96f3ad9c3..a566fbeae441 100644 --- a/nixos/modules/system/boot/systemd/initrd.nix +++ b/nixos/modules/system/boot/systemd/initrd.nix @@ -378,7 +378,7 @@ in { "/etc/systemd/system.conf".text = '' [Manager] - DefaultEnvironment=PATH=/bin:/sbin ${optionalString (isBool cfg.emergencyAccess && cfg.emergencyAccess) "SYSTEMD_SULOGIN_FORCE=1"} + DefaultEnvironment=PATH=/bin:/sbin ${cfg.extraConfig} ManagerEnvironment=${lib.concatStringsSep " " (lib.mapAttrsToList (n: v: "${n}=${lib.escapeShellArg v}") cfg.managerEnvironment)} ''; @@ -389,7 +389,10 @@ in { "/etc/modules-load.d/nixos.conf".text = concatStringsSep "\n" config.boot.initrd.kernelModules; "/etc/passwd".source = "${pkgs.fakeNss}/etc/passwd"; - "/etc/shadow".text = "root:${if isBool cfg.emergencyAccess then "!" else cfg.emergencyAccess}:::::::"; + # We can use either ! or * to lock the root account in the + # console, but some software like OpenSSH won't even allow you + # to log in with an SSH key if you use ! so we use * instead + "/etc/shadow".text = "root:${if isBool cfg.emergencyAccess then optionalString (!cfg.emergencyAccess) "*" else cfg.emergencyAccess}:::::::"; "/bin".source = "${initrdBinEnv}/bin"; "/sbin".source = "${initrdBinEnv}/sbin"; From fef26d88e20cc4045768071421bf495871506b7a Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Mon, 8 Aug 2022 19:09:37 -0400 Subject: [PATCH 006/213] systemd-initrd: Support secrets when boot loader doesn't initrd-secrets: Fix service config with systemd-stage-1 --- nixos/modules/system/boot/systemd/initrd-secrets.nix | 4 ++-- nixos/modules/virtualisation/qemu-vm.nix | 2 ++ nixos/tests/initrd-network-openvpn/default.nix | 2 +- nixos/tests/initrd-network-ssh/default.nix | 4 ---- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/nixos/modules/system/boot/systemd/initrd-secrets.nix b/nixos/modules/system/boot/systemd/initrd-secrets.nix index bc65880719d7..7b59c0cbe7b8 100644 --- a/nixos/modules/system/boot/systemd/initrd-secrets.nix +++ b/nixos/modules/system/boot/systemd/initrd-secrets.nix @@ -19,13 +19,13 @@ # drop this service, we'd mount the /run tmpfs over the secret, making it # invisible in stage 2. script = '' - for secret in $(cd /.initrd-secrets; find . -type f); do + for secret in $(cd /.initrd-secrets; find . -type f -o -type l); do mkdir -p "$(dirname "/$secret")" cp "/.initrd-secrets/$secret" "/$secret" done ''; - unitConfig = { + serviceConfig = { Type = "oneshot"; RemainAfterExit = true; }; diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index a55a21a46a53..727dca36fe01 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -880,6 +880,8 @@ in boot.initrd.kernelModules = optionals (cfg.useNixStoreImage && !cfg.writableStore) [ "erofs" ]; + boot.loader.supportsInitrdSecrets = mkIf (!cfg.useBootLoader) (mkVMOverride false); + boot.initrd.extraUtilsCommands = lib.mkIf (cfg.useDefaultFilesystems && !config.boot.initrd.systemd.enable) '' # We need mke2fs in the initrd. diff --git a/nixos/tests/initrd-network-openvpn/default.nix b/nixos/tests/initrd-network-openvpn/default.nix index dbb34c28eea7..1150e2dc5b0d 100644 --- a/nixos/tests/initrd-network-openvpn/default.nix +++ b/nixos/tests/initrd-network-openvpn/default.nix @@ -26,7 +26,7 @@ import ../make-test-python.nix ({ lib, ...}: enable = true; openvpn = { enable = true; - configuration = "/dev/null"; + configuration = builtins.toFile "initrd.ovpn" ""; }; }; }; diff --git a/nixos/tests/initrd-network-ssh/default.nix b/nixos/tests/initrd-network-ssh/default.nix index 0ad0563b0ce1..017de6882081 100644 --- a/nixos/tests/initrd-network-ssh/default.nix +++ b/nixos/tests/initrd-network-ssh/default.nix @@ -22,10 +22,6 @@ import ../make-test-python.nix ({ lib, ... }: hostKeys = [ ./ssh_host_ed25519_key ]; }; }; - boot.initrd.extraUtilsCommands = '' - mkdir -p $out/secrets/etc/ssh - cat "${./ssh_host_ed25519_key}" > $out/secrets/etc/ssh/sh_host_ed25519_key - ''; boot.initrd.preLVMCommands = '' while true; do if [ -f fnord ]; then From 762b69f2ff4a7e843a7e9690a0bed741f229229d Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Fri, 22 Jul 2022 01:26:24 -0400 Subject: [PATCH 007/213] systemd-initrd: Fix up root directory mode --- nixos/modules/system/boot/stage-1.nix | 3 ++- pkgs/build-support/kernel/make-initrd-ng.nix | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix index d26ea7597c45..1229f6357523 100644 --- a/nixos/modules/system/boot/stage-1.nix +++ b/nixos/modules/system/boot/stage-1.nix @@ -445,7 +445,8 @@ let ) config.boot.initrd.secrets) } - (cd "$tmp" && find . -print0 | sort -z | bsdtar --uid 0 --gid 0 -cnf - -T - | bsdtar --null -cf - --format=newc @-) | \ + # mindepth 1 so that we don't change the mode of / + (cd "$tmp" && find . -mindepth 1 -print0 | sort -z | bsdtar --uid 0 --gid 0 -cnf - -T - | bsdtar --null -cf - --format=newc @-) | \ ${compressorExe} ${lib.escapeShellArgs initialRamdisk.compressorArgs} >> "$1" ''; diff --git a/pkgs/build-support/kernel/make-initrd-ng.nix b/pkgs/build-support/kernel/make-initrd-ng.nix index dc0e9b87db2a..f3cf3d59f92b 100644 --- a/pkgs/build-support/kernel/make-initrd-ng.nix +++ b/pkgs/build-support/kernel/make-initrd-ng.nix @@ -78,14 +78,14 @@ in STRIP = if strip then "${pkgsBuildHost.binutils.targetPrefix}strip" else null; }) '' - mkdir ./root + mkdir -p ./root/var/empty make-initrd-ng "$contentsPath" ./root mkdir "$out" (cd root && find * .[^.*] -exec touch -h -d '@1' '{}' +) for PREP in $prepend; do cat $PREP >> $out/initrd done - (cd root && find * .[^.*] -print0 | sort -z | cpio -o -H newc -R +0:+0 --reproducible --null | eval -- $compress >> "$out/initrd") + (cd root && find . -print0 | sort -z | cpio -o -H newc -R +0:+0 --reproducible --null | eval -- $compress >> "$out/initrd") if [ -n "$makeUInitrd" ]; then mkimage -A "$uInitrdArch" -O linux -T ramdisk -C "$uInitrdCompression" -d "$out/initrd" $out/initrd.img From e70b42bf612e65693c95fab37ff0de725858ed8e Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Fri, 22 Jul 2022 01:32:22 -0400 Subject: [PATCH 008/213] systemd-initrd: Add users and groups with static IDs. --- nixos/modules/config/users-groups.nix | 92 ++++++++++++++++++++ nixos/modules/system/boot/systemd/initrd.nix | 1 - nixos/tests/systemd-initrd-simple.nix | 2 + 3 files changed, 94 insertions(+), 1 deletion(-) diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix index e44cce11f3a8..d1e9c8072eac 100644 --- a/nixos/modules/config/users-groups.nix +++ b/nixos/modules/config/users-groups.nix @@ -428,6 +428,8 @@ let uidsAreUnique = idsAreUnique (filterAttrs (n: u: u.uid != null) cfg.users) "uid"; gidsAreUnique = idsAreUnique (filterAttrs (n: g: g.gid != null) cfg.groups) "gid"; + sdInitrdUidsAreUnique = idsAreUnique (filterAttrs (n: u: u.uid != null) config.boot.initrd.systemd.users) "uid"; + sdInitrdGidsAreUnique = idsAreUnique (filterAttrs (n: g: g.gid != null) config.boot.initrd.systemd.groups) "gid"; spec = pkgs.writeText "users-groups.json" (builtins.toJSON { inherit (cfg) mutableUsers; @@ -534,6 +536,54 @@ in { WARNING: enabling this can lock you out of your system. Enable this only if you know what are you doing. ''; }; + + # systemd initrd + boot.initrd.systemd.users = mkOption { + visible = false; + description = '' + Users to include in initrd. + ''; + default = {}; + type = types.attrsOf (types.submodule ({ name, ... }: { + options.uid = mkOption { + visible = false; + type = types.int; + description = '' + ID of the user in initrd. + ''; + defaultText = literalExpression "config.users.users.\${name}.uid"; + default = cfg.users.${name}.uid; + }; + options.group = mkOption { + visible = false; + type = types.singleLineStr; + description = '' + Group the user belongs to in initrd. + ''; + defaultText = literalExpression "config.users.users.\${name}.group"; + default = cfg.users.${name}.group; + }; + })); + }; + + boot.initrd.systemd.groups = mkOption { + visible = false; + description = '' + Groups to include in initrd. + ''; + default = {}; + type = types.attrsOf (types.submodule ({ name, ... }: { + options.gid = mkOption { + visible = false; + type = types.int; + description = '' + ID of the group in initrd. + ''; + defaultText = literalExpression "config.users.groups.\${name}.gid"; + default = cfg.groups.${name}.gid; + }; + })); + }; }; @@ -639,10 +689,52 @@ in { "/etc/profiles/per-user/$USER" ]; + # systemd initrd + boot.initrd.systemd = lib.mkIf config.boot.initrd.systemd.enable { + contents = { + "/etc/passwd".text = '' + ${lib.concatStringsSep "\n" (lib.mapAttrsToList (n: { uid, group }: let + g = config.boot.initrd.systemd.groups.${group}; + in "${n}:x:${toString uid}:${toString g.gid}::/var/empty:") config.boot.initrd.systemd.users)} + ''; + "/etc/group".text = '' + ${lib.concatStringsSep "\n" (lib.mapAttrsToList (n: { gid }: "${n}:x:${toString gid}:") config.boot.initrd.systemd.groups)} + ''; + }; + + users = { + root = {}; + nobody = {}; + }; + + groups = { + root = {}; + nogroup = {}; + systemd-journal = {}; + tty = {}; + dialout = {}; + kmem = {}; + input = {}; + video = {}; + render = {}; + sgx = {}; + audio = {}; + video = {}; + lp = {}; + disk = {}; + cdrom = {}; + tape = {}; + kvm = {}; + }; + }; + assertions = [ { assertion = !cfg.enforceIdUniqueness || (uidsAreUnique && gidsAreUnique); message = "UIDs and GIDs must be unique!"; } + { assertion = !cfg.enforceIdUniqueness || (sdInitrdUidsAreUnique && sdInitrdGidsAreUnique); + message = "systemd initrd UIDs and GIDs must be unique!"; + } { # If mutableUsers is false, to prevent users creating a # configuration that locks them out of the system, ensure that # there is at least one "privileged" account that has a diff --git a/nixos/modules/system/boot/systemd/initrd.nix b/nixos/modules/system/boot/systemd/initrd.nix index a566fbeae441..e11ab5c824d2 100644 --- a/nixos/modules/system/boot/systemd/initrd.nix +++ b/nixos/modules/system/boot/systemd/initrd.nix @@ -388,7 +388,6 @@ in { "/etc/modules-load.d/nixos.conf".text = concatStringsSep "\n" config.boot.initrd.kernelModules; - "/etc/passwd".source = "${pkgs.fakeNss}/etc/passwd"; # We can use either ! or * to lock the root account in the # console, but some software like OpenSSH won't even allow you # to log in with an SSH key if you use ! so we use * instead diff --git a/nixos/tests/systemd-initrd-simple.nix b/nixos/tests/systemd-initrd-simple.nix index f7f4863d17e3..a6a22e9d48e0 100644 --- a/nixos/tests/systemd-initrd-simple.nix +++ b/nixos/tests/systemd-initrd-simple.nix @@ -27,6 +27,8 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { machine.succeed("[ -e /dev/pts/ptmx ]") # /dev/pts machine.succeed("[ -e /run/keys ]") # /run/keys + with subtest("groups work"): + machine.fail("journalctl -b 0 | grep 'systemd-udevd.*Unknown group.*ignoring'") with subtest("growfs works"): oldAvail = machine.succeed("df --output=avail / | sed 1d") From 4c0970c21684b31da57b608400d885d685e6e58e Mon Sep 17 00:00:00 2001 From: nviets Date: Fri, 31 Mar 2023 19:41:21 -0500 Subject: [PATCH 009/213] xgboost: 1.7.4 -> 1.7.5 --- pkgs/development/libraries/xgboost/default.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/xgboost/default.nix b/pkgs/development/libraries/xgboost/default.nix index 3fbbb9d1f8cf..2f0c7a1d7a4c 100644 --- a/pkgs/development/libraries/xgboost/default.nix +++ b/pkgs/development/libraries/xgboost/default.nix @@ -12,7 +12,7 @@ , llvmPackages , R , rPackages -}: +}@inputs: assert ncclSupport -> cudaSupport; # Disable regular tests when building the R package @@ -22,6 +22,14 @@ assert ncclSupport -> cudaSupport; # tests. assert rLibrary -> doCheck != true; +let + # This ensures xgboost gets the correct libstdc++ when + # built with cuda support. This may be removed once + # #226165 rewrites cudaStdenv + inherit (cudaPackages) backendStdenv; + stdenv = if cudaSupport then backendStdenv else inputs.stdenv; +in + stdenv.mkDerivation rec { pnameBase = "xgboost"; # prefix with r when building the R library @@ -37,14 +45,14 @@ stdenv.mkDerivation rec { # in \ # rWrapper.override{ packages = [ xgb ]; }" pname = lib.optionalString rLibrary "r-" + pnameBase; - version = "1.7.4"; + version = "1.7.5"; src = fetchFromGitHub { owner = "dmlc"; repo = pnameBase; rev = "v${version}"; fetchSubmodules = true; - hash = "sha256-HGS9w4g2+Aw5foKjHK/XQvSCnFHUswhzAsQf6XkdvOI="; + hash = "sha256-IBqtyz40VVHdncibnZQAe5oDsjb5isWBYQ6pGx/zt38="; }; nativeBuildInputs = [ cmake ] From 312b3856e8dda36ddbea7d8465f89d01bfaee530 Mon Sep 17 00:00:00 2001 From: apfelkuchen06 Date: Sat, 15 Apr 2023 19:36:18 +0200 Subject: [PATCH 010/213] mpvScripts.uosc: 4.6.0 -> 4.7.0 --- pkgs/applications/video/mpv/scripts/uosc.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/mpv/scripts/uosc.nix b/pkgs/applications/video/mpv/scripts/uosc.nix index 1a486dbf556d..b88cd2c5b968 100644 --- a/pkgs/applications/video/mpv/scripts/uosc.nix +++ b/pkgs/applications/video/mpv/scripts/uosc.nix @@ -2,13 +2,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "uosc"; - version = "4.6.0"; + version = "4.7.0"; src = fetchFromGitHub { owner = "tomasklaen"; repo = "uosc"; rev = finalAttrs.version; - hash = "sha256-AxApKlSaRLPl6VsXsARfaT3kWDK6AB2AAEmIHYiuFaM="; + hash = "sha256-JqlBjhwRgmXl6XfHYTwtNWZj656EDHjcdWOlCgihF5I="; }; postPatch = '' From 479629550084d43fda03ed4f6c41e7c22698d11a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 15 Apr 2023 19:57:12 +0200 Subject: [PATCH 011/213] python310Packages.crate: 0.30.0 -> 0.31.0 Changelog: https://github.com/crate/crate-python/blob/0.31.0/CHANGES.txt --- pkgs/development/python-modules/crate/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/crate/default.nix b/pkgs/development/python-modules/crate/default.nix index 4da552db399b..bdfefe2aa28a 100644 --- a/pkgs/development/python-modules/crate/default.nix +++ b/pkgs/development/python-modules/crate/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "crate"; - version = "0.30.0"; + version = "0.31.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-8xraDCFZbpJZsh3sO5VlSHwnEfH4u4AJZkXA+L4TB60="; + hash = "sha256-HhncnVmUXyHLaLkhIFS89NnKoSY42C1GipOqurIsoZ4="; }; propagatedBuildInputs = [ From 063d0aea24cd9bbaa3c8a283cdacf7371b274b4e Mon Sep 17 00:00:00 2001 From: lunik1 Date: Sun, 16 Apr 2023 13:55:22 +0100 Subject: [PATCH 012/213] =?UTF-8?q?iosevka:=2022.0.0=20=E2=86=92=2022.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Diff: https://github.com/be5invis/iosevka/compare/v22.0.0...v22.0.2 --- pkgs/data/fonts/iosevka/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/fonts/iosevka/default.nix b/pkgs/data/fonts/iosevka/default.nix index c16d69f1affb..6f974d078b02 100644 --- a/pkgs/data/fonts/iosevka/default.nix +++ b/pkgs/data/fonts/iosevka/default.nix @@ -55,16 +55,16 @@ assert (extraParameters != null) -> set != null; buildNpmPackage rec { pname = if set != null then "iosevka-${set}" else "iosevka"; - version = "22.0.0"; + version = "22.0.2"; src = fetchFromGitHub { owner = "be5invis"; repo = "iosevka"; rev = "v${version}"; - hash = "sha256-TvzUUuwmDP2K1deUsODV/FDjPTgZjVvilUdfrkeaO88="; + hash = "sha256-cBIcf6GEJnkOvKPMWTb9dWqN9uPs4ynr6tLc7+B6f3k="; }; - npmDepsHash = "sha256-G+iAGKweh5MOFTaNHLnSUwVMTSlgL/w0zrS2SrJrsJE="; + npmDepsHash = "sha256-tLdJuDFVPdnEtHdGdU7G6N+LIiINVVB5/NNFaeveK/U="; nativeBuildInputs = [ remarshal From d3c6336d0bc8e4f7ddb175697f74497191572193 Mon Sep 17 00:00:00 2001 From: amesgen Date: Sun, 16 Apr 2023 23:13:18 +0200 Subject: [PATCH 013/213] scriv: 1.2.1 -> 1.3.1 --- pkgs/applications/version-management/scriv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/scriv/default.nix b/pkgs/applications/version-management/scriv/default.nix index a1238ed01df4..79e1cb1a2923 100644 --- a/pkgs/applications/version-management/scriv/default.nix +++ b/pkgs/applications/version-management/scriv/default.nix @@ -9,11 +9,11 @@ python3.pkgs.buildPythonApplication rec { pname = "scriv"; - version = "1.2.1"; + version = "1.3.1"; src = fetchPypi { inherit pname version; - hash = "sha256-le39dmQs965rXNQJdVRdivWPY5jKv+g/91Xo7tuN3U4="; + hash = "sha256-TfWX7gp7PcwNUxXXZJ3wke/LGz/wjwtRppg0ByfRcRg="; }; propagatedBuildInputs = with python3.pkgs; [ From a63235871017932b07714e807166726e6084aaa3 Mon Sep 17 00:00:00 2001 From: Nicolas Benes Date: Mon, 17 Apr 2023 01:46:07 +0200 Subject: [PATCH 014/213] libxisf: init at 0.2.3 --- .../science/astronomy/libxisf/default.nix | 47 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 49 insertions(+) create mode 100644 pkgs/development/libraries/science/astronomy/libxisf/default.nix diff --git a/pkgs/development/libraries/science/astronomy/libxisf/default.nix b/pkgs/development/libraries/science/astronomy/libxisf/default.nix new file mode 100644 index 000000000000..e7e4bc98b0d8 --- /dev/null +++ b/pkgs/development/libraries/science/astronomy/libxisf/default.nix @@ -0,0 +1,47 @@ +{ lib +, stdenv +, fetchFromGitea +, cmake +, pkg-config +, lz4 +, pugixml +, zlib +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "libxisf"; + version = "0.2.3"; + + src = fetchFromGitea { + domain = "gitea.nouspiro.space"; + owner = "nou"; + repo = "libXISF"; + rev = "v${finalAttrs.version}"; + hash = "sha256-u5EYnRO2rUV8ofLL9qfACeVvVbWXEXpkqh2Q4OOxpaQ="; + }; + + nativeBuildInputs = [ + cmake + pkg-config + ]; + + cmakeFlags = [ + "-DUSE_BUNDLED_LIBS=OFF" + ] ++ lib.optional stdenv.hostPlatform.isStatic "-DBUILD_SHARED_LIBS=OFF"; + + buildInputs = [ + lz4 + pugixml + zlib + ]; + + doCheck = true; + + meta = with lib; { + description = "Library to load and write XISF format from PixInsight"; + homepage = "https://gitea.nouspiro.space/nou/libXISF"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ panicgh ]; + platforms = platforms.linux; + }; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 337b9e9185c8..ff01c40ca9af 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -22342,6 +22342,8 @@ with pkgs; libxdg_basedir = callPackage ../development/libraries/libxdg-basedir { }; + libxisf = callPackage ../development/libraries/science/astronomy/libxisf { }; + libxkbcommon = libxkbcommon_8; libxkbcommon_8 = callPackage ../development/libraries/libxkbcommon { }; libxkbcommon_7 = callPackage ../development/libraries/libxkbcommon/libxkbcommon_7.nix { }; From 73c5e2a5c5eeff3fc46b54264b0ef1af4a304f69 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 17 Apr 2023 00:08:52 +0000 Subject: [PATCH 015/213] sq: 0.25.1 -> 0.33.0 --- pkgs/development/tools/sq/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/sq/default.nix b/pkgs/development/tools/sq/default.nix index 39c24732cb30..dd5931f514e1 100644 --- a/pkgs/development/tools/sq/default.nix +++ b/pkgs/development/tools/sq/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "sq"; - version = "0.25.1"; + version = "0.33.0"; src = fetchFromGitHub { owner = "neilotoole"; repo = pname; rev = "v${version}"; - sha256 = "sha256-FYEgCXXcVhm6vv1QT8UqCBo+/o0dAPwbR3ZNB72MrGI="; + sha256 = "sha256-1I6adQLbVx4Gj9rdocpEPyQagEpaI4a4sHUaSyntyGI="; }; - vendorHash = "sha256-Kcl0/txbq7+xA6826SzSrZx4L02GHcXG5ciKmkrtWLI="; + vendorHash = "sha256-e14qz4KTD2aAl1G5wj2/T0cxocvscj0r+c8So+omA38="; proxyVendor = true; From 96a2c646ec40121679942bf58c44858e2669abff Mon Sep 17 00:00:00 2001 From: Jonas Nick Date: Mon, 17 Apr 2023 12:55:14 +0000 Subject: [PATCH 016/213] secp256k1: 0.3.0 -> 0.3.1 --- pkgs/tools/security/secp256k1/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/secp256k1/default.nix b/pkgs/tools/security/secp256k1/default.nix index cb9cf172daa1..fd8d0cd9eefa 100644 --- a/pkgs/tools/security/secp256k1/default.nix +++ b/pkgs/tools/security/secp256k1/default.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "secp256k1"; - version = "0.3.0"; + version = "0.3.1"; src = fetchFromGitHub { owner = "bitcoin-core"; repo = "secp256k1"; rev = "refs/tags/v${version}"; - sha256 = "sha256-ii4JuYd65L0FBWY+cqcFuUEjExZOj6Pt5T0OyaVhIEI="; + sha256 = "sha256-0Xb/hot88HRDzwP1hJq47nrUbKVJFzsIKCQxLznQkrM="; }; nativeBuildInputs = [ autoreconfHook ]; From 7cdd1f3ebf9974aa402d2f6fe11670a1e7e138c1 Mon Sep 17 00:00:00 2001 From: apfelkuchen06 Date: Mon, 17 Apr 2023 18:55:15 +0200 Subject: [PATCH 017/213] libnvme: fix cross without this, pkgsCross.armv7l-hf-multiplatform.libnvme fails to build with [93/811] Compiling C object libnvme/_nvme.cpython-310-x86_64-linux-gnu.so.p/meson-generated_.._nvme_wrap.c.o FAILED: libnvme/_nvme.cpython-310-x86_64-linux-gnu.so.p/meson-generated_.._nvme_wrap.c.o armv7l-unknown-linux-gnueabihf-gcc -Ilibnvme/_nvme.cpython-310-x86_64-linux-gnu.so.p -Ilibnvme -I../libnvme -I. -I.. -Iccan -I../ccan -Isrc -I../src -Iinternal -I../internal -I/nix/store/fg4hibxylq2lhfc2xx2asaih8c02c77m-json-c-armv7l-unknown-linux-gnueabihf-0.16-dev/include -I/nix/store/fg4hibxylq2lhfc2xx2asaih8c02c77m-json-c-armv7l-unknown-linux-gnueabihf-0.16-dev/include/json-c -I/nix/store/fdqpyj613dr0v1l1lrzqhzay7sk4xg87-python3-3.10.10/include/python3.10 -fvisibility=hidden -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -std=gnu99 -fomit-frame-pointer -D_GNU_SOURCE -include internal/config.h -fPIC -MD -MQ libnvme/_nvme.cpython-310-x86_64-linux-gnu.so.p/meson-generated_.._nvme_wrap.c.o -MF libnvme/_nvme.cpython-310-x86_64-linux-gnu.so.p/meson-generated_.._nvme_wrap.c.o.d -o libnvme/_nvme.cpython-310-x86_64-linux-gnu.so.p/meson-generated_.._nvme_wrap.c.o -c libnvme/nvme_wrap.c In file included from /nix/store/fdqpyj613dr0v1l1lrzqhzay7sk4xg87-python3-3.10.10/include/python3.10/Python.h:50, from libnvme/nvme_wrap.c:149: /nix/store/fdqpyj613dr0v1l1lrzqhzay7sk4xg87-python3-3.10.10/include/python3.10/pyport.h:746:2: error: #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)." 746 | #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)." | ^~~~~ --- pkgs/os-specific/linux/libnvme/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/libnvme/default.nix b/pkgs/os-specific/linux/libnvme/default.nix index 17fad5410024..5f1960f4e531 100644 --- a/pkgs/os-specific/linux/libnvme/default.nix +++ b/pkgs/os-specific/linux/libnvme/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { ninja perl # for kernel-doc pkg-config - python3 + python3.pythonForBuild swig ]; @@ -46,6 +46,7 @@ stdenv.mkDerivation rec { json_c openssl systemd + python3 ]; mesonFlags = [ From 24a451a1db9ebb3f63365346f66d10863b7c88f9 Mon Sep 17 00:00:00 2001 From: Marcelo Amancio de Lima Santos Date: Mon, 17 Apr 2023 15:06:26 -0300 Subject: [PATCH 018/213] cypress: 10.10.0 -> 12.9.0 --- pkgs/development/web/cypress/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/web/cypress/default.nix b/pkgs/development/web/cypress/default.nix index bc6bf6b7adc8..ebe6d9d496ec 100644 --- a/pkgs/development/web/cypress/default.nix +++ b/pkgs/development/web/cypress/default.nix @@ -18,11 +18,11 @@ let availableBinaries = { x86_64-linux = { platform = "linux-x64"; - checksum = "sha256-26mkizwkF0qPX2+0rkjep28ZuNlLGPljCvVO73t34Lk="; + checksum = "sha256-ozyQya2WxnDK6of1VfxlDlXo6IDGxAXkCjFt3DqRM4k="; }; aarch64-linux = { platform = "linux-arm64"; - checksum = "sha256-gcf/MJ5aNUPoH6qz0n9vjviTec1rcxB0UzF+++6bUTs="; + checksum = "sha256-UxceWQ/eIGPFXNFIPSzBe431qqp54GwDbs9p7cqLosA="; }; }; inherit (stdenv.hostPlatform) system; @@ -30,7 +30,7 @@ let inherit (binary) platform checksum; in stdenv.mkDerivation rec { pname = "cypress"; - version = "10.10.0"; + version = "12.9.0"; src = fetchzip { url = "https://cdn.cypress.io/desktop/${version}/${platform}/cypress.zip"; From 9c8a86d52f66d64cb5d268398fd5269a3cbb024b Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 17 Apr 2023 19:22:18 +0300 Subject: [PATCH 019/213] Revert "uhd: fix cross" This reverts commit ec1631a06f864c5303c86f63862e5bc3c4ee3e67. It was merged too fast, without giving a chance to maintainers to suggest the changes in the upcoming commits. --- pkgs/applications/radio/uhd/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/applications/radio/uhd/default.nix b/pkgs/applications/radio/uhd/default.nix index 476a954f8181..b810af6e2ea6 100644 --- a/pkgs/applications/radio/uhd/default.nix +++ b/pkgs/applications/radio/uhd/default.nix @@ -93,7 +93,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkg-config - python3 ] # If both enableLibuhd_Python_api and enableUtils are off, we don't need # pythonEnv in buildInputs as it's a 'build' dependency and not a runtime From 3697ccb4b1444c1cd4259da5bb875308b091488b Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 17 Apr 2023 19:27:27 +0300 Subject: [PATCH 020/213] uhd: Remove neon.patch not applying anymore --- pkgs/applications/radio/uhd/default.nix | 2 -- pkgs/applications/radio/uhd/neon.patch | 19 ------------------- 2 files changed, 21 deletions(-) delete mode 100644 pkgs/applications/radio/uhd/neon.patch diff --git a/pkgs/applications/radio/uhd/default.nix b/pkgs/applications/radio/uhd/default.nix index b810af6e2ea6..678236ebbefe 100644 --- a/pkgs/applications/radio/uhd/default.nix +++ b/pkgs/applications/radio/uhd/default.nix @@ -121,8 +121,6 @@ stdenv.mkDerivation rec { patches = [ # Disable tests that fail in the sandbox ./no-adapter-tests.patch - ] ++ lib.optionals stdenv.isAarch32 [ - ./neon.patch ]; postPhases = [ "installFirmware" "removeInstalledTests" ] diff --git a/pkgs/applications/radio/uhd/neon.patch b/pkgs/applications/radio/uhd/neon.patch deleted file mode 100644 index 18ec59c1d64b..000000000000 --- a/pkgs/applications/radio/uhd/neon.patch +++ /dev/null @@ -1,19 +0,0 @@ -Description: When building for armhf, enable NEON - NEON is part of the armhf baseline, so this will always be enabled on - armhf. -Author: Paul Tagliamonte -Bug-Debian: https://bugs.debian.org/873608 -Origin: vendor -Last-Update: 2017-08-29 - ---- uhd-3.10.2.0.orig/host/lib/convert/CMakeLists.txt -+++ uhd-3.10.2.0/host/lib/convert/CMakeLists.txt -@@ -67,6 +67,8 @@ IF(HAVE_ARM_NEON_H AND (${CMAKE_SIZEOF_V - ${CMAKE_CURRENT_SOURCE_DIR}/convert_with_neon.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/convert_neon.S - ) -+ -+ SET ( CMAKE_CXX_FLAGS "-mfpu=neon" ) - ENDIF() - - ######################################################################## From be4ae4fbfdbb44c44e74cc01b35739aecd56cf35 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 17 Apr 2023 19:30:30 +0300 Subject: [PATCH 021/213] uhd: Remove unused enableSim flag --- pkgs/applications/radio/uhd/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/applications/radio/uhd/default.nix b/pkgs/applications/radio/uhd/default.nix index 678236ebbefe..0658402dea1b 100644 --- a/pkgs/applications/radio/uhd/default.nix +++ b/pkgs/applications/radio/uhd/default.nix @@ -13,7 +13,6 @@ , python3 , enableExamples ? false , enableUtils ? false -, enableSim ? false , libusb1 , enableDpdk ? false , dpdk From 25665063b9077c9cdc6db1549ebb3d3ae070b892 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 17 Apr 2023 19:32:10 +0300 Subject: [PATCH 022/213] uhd: Add a buildPackages pythonEnv for nativeBuildInputs --- pkgs/applications/radio/uhd/default.nix | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/radio/uhd/default.nix b/pkgs/applications/radio/uhd/default.nix index 0658402dea1b..873c49dd9a7c 100644 --- a/pkgs/applications/radio/uhd/default.nix +++ b/pkgs/applications/radio/uhd/default.nix @@ -11,6 +11,7 @@ # requires numpy , enablePythonApi ? false , python3 +, buildPackages , enableExamples ? false , enableUtils ? false , libusb1 @@ -33,6 +34,11 @@ let onOffBool = b: if b then "ON" else "OFF"; inherit (lib) optionals; + # Later used in pythonEnv generation. Python + mako are always required for the build itself but not necessary for runtime. + pythonEnvArg = (ps: with ps; [ mako ] + ++ optionals (enablePythonApi) [ numpy setuptools ] + ++ optionals (enableUtils) [ requests six ] + ); in stdenv.mkDerivation rec { @@ -83,21 +89,14 @@ stdenv.mkDerivation rec { ++ [ (lib.optionalString stdenv.isAarch32 "-DCMAKE_CXX_FLAGS=-Wno-psabi") ] ; - # Python + mako are always required for the build itself but not necessary for runtime. - pythonEnv = python3.withPackages (ps: with ps; [ mako ] - ++ optionals (enablePythonApi) [ numpy setuptools ] - ++ optionals (enableUtils) [ requests six ] - ); + pythonEnv = python3.withPackages pythonEnvArg; nativeBuildInputs = [ cmake pkg-config - ] - # If both enableLibuhd_Python_api and enableUtils are off, we don't need - # pythonEnv in buildInputs as it's a 'build' dependency and not a runtime - # dependency - ++ optionals (!enablePythonApi && !enableUtils) [ pythonEnv ] - ; + # Present both here and in buildInputs for cross compilation. + (buildPackages.python3.withPackages pythonEnvArg) + ]; buildInputs = [ boost libusb1 From db457e873a62c1707190a5929824ce5ddb15b942 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Mon, 17 Apr 2023 21:36:04 +0100 Subject: [PATCH 023/213] mtpfs: drop explicit overrides for libmad and libid3tag --- pkgs/tools/filesystems/mtpfs/default.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkgs/tools/filesystems/mtpfs/default.nix b/pkgs/tools/filesystems/mtpfs/default.nix index 58c5a8d54a2c..0a6623bfdc4a 100644 --- a/pkgs/tools/filesystems/mtpfs/default.nix +++ b/pkgs/tools/filesystems/mtpfs/default.nix @@ -7,13 +7,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ fuse libmtp glib libid3tag libmad ]; - # adding LIBS is a hack, duno why it does not find libid3tag.so by adding buildInputs - preConfigure = '' - export MAD_CFLAGS=${libmad}/include - export MAD_LIBS=${libmad}/lib/libmad.so - export LIBS=${libid3tag}/lib/libid3tag.so - ''; - src = fetchurl { url = "https://www.adebenham.com/files/mtp/mtpfs-${version}.tar.gz"; sha256 = "07acrqb17kpif2xcsqfqh5j4axvsa4rnh6xwnpqab5b9w5ykbbqv"; From dd392d7c7694c762812f84b4d0a3ba8157ac8a73 Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Wed, 29 Jun 2022 01:01:59 -0400 Subject: [PATCH 024/213] systemd-initrd: networkd --- nixos/modules/services/hardware/udev.nix | 11 -- nixos/modules/system/boot/networkd.nix | 132 +++++++++++++++---- nixos/modules/system/boot/systemd/initrd.nix | 9 -- nixos/tests/all-tests.nix | 1 + nixos/tests/predictable-interface-names.nix | 39 ++++-- nixos/tests/systemd-initrd-networkd.nix | 45 +++++++ 6 files changed, 184 insertions(+), 53 deletions(-) create mode 100644 nixos/tests/systemd-initrd-networkd.nix diff --git a/nixos/modules/services/hardware/udev.nix b/nixos/modules/services/hardware/udev.nix index d95261332419..95c2a4fc5c3e 100644 --- a/nixos/modules/services/hardware/udev.nix +++ b/nixos/modules/services/hardware/udev.nix @@ -16,16 +16,6 @@ let ''; - # networkd link files are used early by udev to set up interfaces early. - # This must be done in stage 1 to avoid race conditions between udev and - # network daemons. - # TODO move this into the initrd-network module when it exists - initrdLinkUnits = pkgs.runCommand "initrd-link-units" {} '' - mkdir -p $out - ln -s ${udev}/lib/systemd/network/*.link $out/ - ${lib.concatMapStringsSep "\n" (file: "ln -s ${file} $out/") (lib.mapAttrsToList (n: v: "${v.unit}/${n}") (lib.filterAttrs (n: _: hasSuffix ".link" n) config.systemd.network.units))} - ''; - extraUdevRules = pkgs.writeTextFile { name = "extra-udev-rules"; text = cfg.extraRules; @@ -398,7 +388,6 @@ in systemd = config.boot.initrd.systemd.package; binPackages = config.boot.initrd.services.udev.binPackages ++ [ config.boot.initrd.systemd.contents."/bin".source ]; }; - "/etc/systemd/network".source = initrdLinkUnits; }; # Insert initrd rules boot.initrd.services.udev.packages = [ diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix index 05a667a09efc..e325a33a9e37 100644 --- a/nixos/modules/system/boot/networkd.nix +++ b/nixos/modules/system/boot/networkd.nix @@ -6,8 +6,6 @@ with lib; let - cfg = config.systemd.network; - check = { global = { @@ -2941,14 +2939,12 @@ let + def.extraConfig; }; - unitFiles = listToAttrs (map (name: { - name = "systemd/network/${name}"; + mkUnitFiles = prefix: cfg: listToAttrs (map (name: { + name = "${prefix}systemd/network/${name}"; value.source = "${cfg.units.${name}.unit}/${name}"; }) (attrNames cfg.units)); -in -{ - options = { + commonOptions = { systemd.network.enable = mkOption { default = false; @@ -3051,12 +3047,11 @@ in }; - config = mkMerge [ + commonConfig = config: let cfg = config.systemd.network; in mkMerge [ # .link units are honored by udev, no matter if systemd-networkd is enabled or not. { systemd.network.units = mapAttrs' (n: v: nameValuePair "${n}.link" (linkToUnit n v)) cfg.links; - environment.etc = unitFiles; systemd.network.wait-online.extraArgs = [ "--timeout=${toString cfg.wait-online.timeout}" ] @@ -3066,14 +3061,6 @@ in (mkIf config.systemd.network.enable { - users.users.systemd-network.group = "systemd-network"; - - systemd.additionalUpstreamSystemUnits = [ - "systemd-networkd-wait-online.service" - "systemd-networkd.service" - "systemd-networkd.socket" - ]; - systemd.network.units = mapAttrs' (n: v: nameValuePair "${n}.netdev" (netdevToUnit n v)) cfg.netdevs // mapAttrs' (n: v: nameValuePair "${n}.network" (networkToUnit n v)) cfg.networks; @@ -3082,14 +3069,6 @@ in # networkd. systemd.sockets.systemd-networkd.wantedBy = [ "sockets.target" ]; - systemd.services.systemd-networkd = { - wantedBy = [ "multi-user.target" ]; - aliases = [ "dbus-org.freedesktop.network1.service" ]; - restartTriggers = map (x: x.source) (attrValues unitFiles) ++ [ - config.environment.etc."systemd/networkd.conf".source - ]; - }; - systemd.services.systemd-networkd-wait-online = { inherit (cfg.wait-online) enable; wantedBy = [ "network-online.target" ]; @@ -3111,8 +3090,37 @@ in }; }; + }) + ]; + + stage2Config = let + cfg = config.systemd.network; + unitFiles = mkUnitFiles "" cfg; + in mkMerge [ + (commonConfig config) + + { environment.etc = unitFiles; } + + (mkIf config.systemd.network.enable { + + users.users.systemd-network.group = "systemd-network"; + + systemd.additionalUpstreamSystemUnits = [ + "systemd-networkd-wait-online.service" + "systemd-networkd.service" + "systemd-networkd.socket" + ]; + environment.etc."systemd/networkd.conf" = renderConfig cfg.config; + systemd.services.systemd-networkd = { + wantedBy = [ "multi-user.target" ]; + restartTriggers = map (x: x.source) (attrValues unitFiles) ++ [ + config.environment.etc."systemd/networkd.conf".source + ]; + aliases = [ "dbus-org.freedesktop.network1.service" ]; + }; + networking.iproute2 = mkIf (cfg.config.addRouteTablesToIPRoute2 && cfg.config.routeTables != { }) { enable = mkDefault true; rttablesExtraConfig = '' @@ -3123,6 +3131,80 @@ in }; services.resolved.enable = mkDefault true; + + }) + ]; + + stage1Config = let + cfg = config.boot.initrd.systemd.network; + in mkMerge [ + (commonConfig config.boot.initrd) + + { + systemd.network.enable = mkDefault config.boot.initrd.network.enable; + systemd.contents = mkUnitFiles "/etc/" cfg; + + # Networkd link files are used early by udev to set up interfaces early. + # This must be done in stage 1 to avoid race conditions between udev and + # network daemons. + systemd.network.units = lib.filterAttrs (n: _: hasSuffix ".link" n) config.systemd.network.units; + systemd.storePaths = ["${config.boot.initrd.systemd.package}/lib/systemd/network/99-default.link"]; + } + + (mkIf cfg.enable { + + systemd.package = pkgs.systemdStage1Network; + + systemd.additionalUpstreamUnits = [ + "systemd-networkd-wait-online.service" + "systemd-networkd.service" + "systemd-networkd.socket" + "systemd-network-generator.service" + "network-online.target" + "network-pre.target" + "network.target" + "nss-lookup.target" + "nss-user-lookup.target" + "remote-fs-pre.target" + "remote-fs.target" + ]; + systemd.users.systemd-network = {}; + systemd.groups.systemd-network = {}; + + systemd.contents."/etc/systemd/networkd.conf" = renderConfig cfg.config; + + systemd.services.systemd-networkd.wantedBy = [ "initrd.target" ]; + systemd.services.systemd-network-generator.wantedBy = [ "sysinit.target" ]; + + systemd.storePaths = [ + "${config.boot.initrd.systemd.package}/lib/systemd/systemd-networkd" + "${config.boot.initrd.systemd.package}/lib/systemd/systemd-networkd-wait-online" + "${config.boot.initrd.systemd.package}/lib/systemd/systemd-network-generator" + ]; + kernelModules = [ "af_packet" ]; + + }) + ]; + +in + +{ + options = commonOptions // { + boot.initrd = commonOptions; + }; + + config = mkMerge [ + stage2Config + (mkIf config.boot.initrd.systemd.enable { + assertions = [{ + assertion = config.boot.initrd.network.udhcpc.extraArgs == []; + message = '' + boot.initrd.network.udhcpc.extraArgs is not supported when + boot.initrd.systemd.enable is enabled + ''; + }]; + + boot.initrd = stage1Config; }) ]; } diff --git a/nixos/modules/system/boot/systemd/initrd.nix b/nixos/modules/system/boot/systemd/initrd.nix index e11ab5c824d2..d623eddf699f 100644 --- a/nixos/modules/system/boot/systemd/initrd.nix +++ b/nixos/modules/system/boot/systemd/initrd.nix @@ -72,15 +72,6 @@ let "systemd-tmpfiles-setup.service" "timers.target" "umount.target" - - # TODO: Networking - # "network-online.target" - # "network-pre.target" - # "network.target" - # "nss-lookup.target" - # "nss-user-lookup.target" - # "remote-fs-pre.target" - # "remote-fs.target" ] ++ cfg.additionalUpstreamUnits; upstreamWants = [ diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 0783f3bf68e2..00a637b460f5 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -677,6 +677,7 @@ in { systemd-initrd-simple = handleTest ./systemd-initrd-simple.nix {}; systemd-initrd-swraid = handleTest ./systemd-initrd-swraid.nix {}; systemd-initrd-vconsole = handleTest ./systemd-initrd-vconsole.nix {}; + systemd-initrd-networkd = handleTest ./systemd-initrd-networkd.nix {}; systemd-journal = handleTest ./systemd-journal.nix {}; systemd-machinectl = handleTest ./systemd-machinectl.nix {}; systemd-networkd = handleTest ./systemd-networkd.nix {}; diff --git a/nixos/tests/predictable-interface-names.nix b/nixos/tests/predictable-interface-names.nix index 684df9c39246..42183625c7c9 100644 --- a/nixos/tests/predictable-interface-names.nix +++ b/nixos/tests/predictable-interface-names.nix @@ -8,25 +8,48 @@ let testCombinations = pkgs.lib.cartesianProductOfSets { predictable = [true false]; withNetworkd = [true false]; + systemdStage1 = [true false]; }; -in pkgs.lib.listToAttrs (builtins.map ({ predictable, withNetworkd }: { +in pkgs.lib.listToAttrs (builtins.map ({ predictable, withNetworkd, systemdStage1 }: { name = pkgs.lib.optionalString (!predictable) "un" + "predictable" - + pkgs.lib.optionalString withNetworkd "Networkd"; + + pkgs.lib.optionalString withNetworkd "Networkd" + + pkgs.lib.optionalString systemdStage1 "SystemdStage1"; value = makeTest { - name = "${pkgs.lib.optionalString (!predictable) "un"}predictableInterfaceNames${pkgs.lib.optionalString withNetworkd "-with-networkd"}"; + name = pkgs.lib.optionalString (!predictable) "un" + "predictableInterfaceNames" + + pkgs.lib.optionalString withNetworkd "-with-networkd" + + pkgs.lib.optionalString systemdStage1 "-systemd-stage-1"; meta = {}; - nodes.machine = { lib, ... }: { + nodes.machine = { lib, ... }: let + script = '' + ip link + if ${lib.optionalString predictable "!"} ip link show eth0; then + echo Success + else + exit 1 + fi + ''; + in { networking.usePredictableInterfaceNames = lib.mkForce predictable; networking.useNetworkd = withNetworkd; networking.dhcpcd.enable = !withNetworkd; networking.useDHCP = !withNetworkd; # Check if predictable interface names are working in stage-1 - boot.initrd.postDeviceCommands = '' - ip link - ip link show eth0 ${if predictable then "&&" else "||"} exit 1 - ''; + boot.initrd.postDeviceCommands = script; + + boot.initrd.systemd = lib.mkIf systemdStage1 { + enable = true; + initrdBin = [ pkgs.iproute2 ]; + services.systemd-udev-settle.wantedBy = ["initrd.target"]; + services.check-interfaces = { + requiredBy = ["initrd.target"]; + after = ["systemd-udev-settle.service"]; + serviceConfig.Type = "oneshot"; + path = [ pkgs.iproute2 ]; + inherit script; + }; + }; }; testScript = '' diff --git a/nixos/tests/systemd-initrd-networkd.nix b/nixos/tests/systemd-initrd-networkd.nix new file mode 100644 index 000000000000..872a8cd64b25 --- /dev/null +++ b/nixos/tests/systemd-initrd-networkd.nix @@ -0,0 +1,45 @@ +import ./make-test-python.nix ({ pkgs, lib, ... }: { + name = "systemd-initrd-network"; + meta.maintainers = [ lib.maintainers.elvishjerricco ]; + + nodes = { + basic = { ... }: { + boot.initrd.network.enable = true; + + boot.initrd.systemd = { + enable = true; + network.networks."99-eth0" = { + matchConfig.Name = "eth0"; + DHCP = "yes"; + }; + network.wait-online.timeout = 10; + # Drop the boot into emergency mode if we timeout + targets.network-online.requiredBy = [ "initrd.target" ]; + services.systemd-networkd-wait-online.requiredBy = + [ "network-online.target" ]; + + initrdBin = [ pkgs.iproute2 pkgs.iputils pkgs.gnugrep ]; + services.check = { + requiredBy = [ "initrd.target" ]; + before = [ "initrd.target" ]; + after = [ "network-online.target" ]; + serviceConfig.Type = "oneshot"; + path = [ pkgs.iproute2 pkgs.iputils pkgs.gnugrep ]; + script = '' + ip addr | grep 10.0.2.15 || exit 1 + ping -c1 10.0.2.2 || exit 1 + ''; + }; + }; + }; + }; + + testScript = '' + start_all() + basic.wait_for_unit("multi-user.target") + # Make sure the systemd-network user was set correctly in initrd + basic.succeed("[ $(stat -c '%U,%G' /run/systemd/netif/links) = systemd-network,systemd-network ]") + basic.succeed("ip addr show >&2") + basic.succeed("ip route show >&2") + ''; +}) From 748f1329fcee7db22be526677089719a5276ba30 Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Sun, 16 Oct 2022 19:59:41 -0400 Subject: [PATCH 025/213] systemd-initrd: Automatically configure networking.interfaces --- .../tasks/network-interfaces-systemd.nix | 302 +++++++++--------- nixos/tests/systemd-initrd-networkd.nix | 7 +- 2 files changed, 161 insertions(+), 148 deletions(-) diff --git a/nixos/modules/tasks/network-interfaces-systemd.nix b/nixos/modules/tasks/network-interfaces-systemd.nix index b24b29c32d4a..0fcd3c10219c 100644 --- a/nixos/modules/tasks/network-interfaces-systemd.nix +++ b/nixos/modules/tasks/network-interfaces-systemd.nix @@ -28,11 +28,164 @@ let # TODO: warn the user that any address configured on those interfaces will be useless ++ concatMap (i: attrNames (filterAttrs (_: config: config.type != "internal") i.interfaces)) (attrValues cfg.vswitches); + domains = cfg.search ++ (optional (cfg.domain != null) cfg.domain); + genericNetwork = override: + let gateway = optional (cfg.defaultGateway != null && (cfg.defaultGateway.address or "") != "") cfg.defaultGateway.address + ++ optional (cfg.defaultGateway6 != null && (cfg.defaultGateway6.address or "") != "") cfg.defaultGateway6.address; + makeGateway = gateway: { + routeConfig = { + Gateway = gateway; + GatewayOnLink = false; + }; + }; + in optionalAttrs (gateway != [ ]) { + routes = override (map makeGateway gateway); + } // optionalAttrs (domains != [ ]) { + domains = override domains; + }; + + genericDhcpNetworks = initrd: mkIf cfg.useDHCP { + networks."99-ethernet-default-dhcp" = { + # We want to match physical ethernet interfaces as commonly + # found on laptops, desktops and servers, to provide an + # "out-of-the-box" setup that works for common cases. This + # heuristic isn't perfect (it could match interfaces with + # custom names that _happen_ to start with en or eth), but + # should be good enough to make the common case easy and can + # be overridden on a case-by-case basis using + # higher-priority networks or by disabling useDHCP. + + # Type=ether matches veth interfaces as well, and this is + # more likely to result in interfaces being configured to + # use DHCP when they shouldn't. + + # When wait-online.anyInterface is enabled, RequiredForOnline really + # means "sufficient for online", so we can enable it. + # Otherwise, don't block the network coming online because of default networks. + matchConfig.Name = ["en*" "eth*"]; + DHCP = "yes"; + linkConfig.RequiredForOnline = + lib.mkDefault (if initrd + then config.boot.initrd.systemd.network.wait-online.anyInterface + else config.systemd.network.wait-online.anyInterface); + networkConfig.IPv6PrivacyExtensions = "kernel"; + }; + networks."99-wireless-client-dhcp" = { + # Like above, but this is much more likely to be correct. + matchConfig.WLANInterfaceType = "station"; + DHCP = "yes"; + linkConfig.RequiredForOnline = + lib.mkDefault config.systemd.network.wait-online.anyInterface; + networkConfig.IPv6PrivacyExtensions = "kernel"; + # We also set the route metric to one more than the default + # of 1024, so that Ethernet is preferred if both are + # available. + dhcpV4Config.RouteMetric = 1025; + ipv6AcceptRAConfig.RouteMetric = 1025; + }; + }; + + + interfaceNetworks = mkMerge (forEach interfaces (i: { + netdevs = mkIf i.virtual ({ + "40-${i.name}" = { + netdevConfig = { + Name = i.name; + Kind = i.virtualType; + }; + "${i.virtualType}Config" = optionalAttrs (i.virtualOwner != null) { + User = i.virtualOwner; + }; + }; + }); + networks."40-${i.name}" = mkMerge [ (genericNetwork id) { + name = mkDefault i.name; + DHCP = mkForce (dhcpStr + (if i.useDHCP != null then i.useDHCP else false)); + address = forEach (interfaceIps i) + (ip: "${ip.address}/${toString ip.prefixLength}"); + routes = forEach (interfaceRoutes i) + (route: { + # Most of these route options have not been tested. + # Please fix or report any mistakes you may find. + routeConfig = + optionalAttrs (route.address != null && route.prefixLength != null) { + Destination = "${route.address}/${toString route.prefixLength}"; + } // + optionalAttrs (route.options ? fastopen_no_cookie) { + FastOpenNoCookie = route.options.fastopen_no_cookie; + } // + optionalAttrs (route.via != null) { + Gateway = route.via; + } // + optionalAttrs (route.type != null) { + Type = route.type; + } // + optionalAttrs (route.options ? onlink) { + GatewayOnLink = true; + } // + optionalAttrs (route.options ? initrwnd) { + InitialAdvertisedReceiveWindow = route.options.initrwnd; + } // + optionalAttrs (route.options ? initcwnd) { + InitialCongestionWindow = route.options.initcwnd; + } // + optionalAttrs (route.options ? pref) { + IPv6Preference = route.options.pref; + } // + optionalAttrs (route.options ? mtu) { + MTUBytes = route.options.mtu; + } // + optionalAttrs (route.options ? metric) { + Metric = route.options.metric; + } // + optionalAttrs (route.options ? src) { + PreferredSource = route.options.src; + } // + optionalAttrs (route.options ? protocol) { + Protocol = route.options.protocol; + } // + optionalAttrs (route.options ? quickack) { + QuickAck = route.options.quickack; + } // + optionalAttrs (route.options ? scope) { + Scope = route.options.scope; + } // + optionalAttrs (route.options ? from) { + Source = route.options.from; + } // + optionalAttrs (route.options ? table) { + Table = route.options.table; + } // + optionalAttrs (route.options ? advmss) { + TCPAdvertisedMaximumSegmentSize = route.options.advmss; + } // + optionalAttrs (route.options ? ttl-propagate) { + TTLPropagate = route.options.ttl-propagate == "enabled"; + }; + }); + networkConfig.IPv6PrivacyExtensions = "kernel"; + linkConfig = optionalAttrs (i.macAddress != null) { + MACAddress = i.macAddress; + } // optionalAttrs (i.mtu != null) { + MTUBytes = toString i.mtu; + }; + }]; + })); + in { + config = mkMerge [ - config = mkIf cfg.useNetworkd { + (mkIf config.boot.initrd.network.enable { + # Note this is if initrd.network.enable, not if + # initrd.systemd.network.enable. By setting the latter and not the + # former, the user retains full control over the configuration. + boot.initrd.systemd.network = mkMerge [(genericDhcpNetworks true) interfaceNetworks]; + }) + + (mkIf cfg.useNetworkd { assertions = [ { assertion = cfg.defaultGatewayWindowSize == null; @@ -54,149 +207,11 @@ in networking.dhcpcd.enable = mkDefault false; systemd.network = - let - domains = cfg.search ++ (optional (cfg.domain != null) cfg.domain); - genericNetwork = override: - let gateway = optional (cfg.defaultGateway != null && (cfg.defaultGateway.address or "") != "") cfg.defaultGateway.address - ++ optional (cfg.defaultGateway6 != null && (cfg.defaultGateway6.address or "") != "") cfg.defaultGateway6.address; - makeGateway = gateway: { - routeConfig = { - Gateway = gateway; - GatewayOnLink = false; - }; - }; - in optionalAttrs (gateway != [ ]) { - routes = override (map makeGateway gateway); - } // optionalAttrs (domains != [ ]) { - domains = override domains; - }; - in mkMerge [ { + mkMerge [ { enable = true; } - (mkIf cfg.useDHCP { - networks."99-ethernet-default-dhcp" = lib.mkIf cfg.useDHCP { - # We want to match physical ethernet interfaces as commonly - # found on laptops, desktops and servers, to provide an - # "out-of-the-box" setup that works for common cases. This - # heuristic isn't perfect (it could match interfaces with - # custom names that _happen_ to start with en or eth), but - # should be good enough to make the common case easy and can - # be overridden on a case-by-case basis using - # higher-priority networks or by disabling useDHCP. - - # Type=ether matches veth interfaces as well, and this is - # more likely to result in interfaces being configured to - # use DHCP when they shouldn't. - - # When wait-online.anyInterface is enabled, RequiredForOnline really - # means "sufficient for online", so we can enable it. - # Otherwise, don't block the network coming online because of default networks. - matchConfig.Name = ["en*" "eth*"]; - DHCP = "yes"; - linkConfig.RequiredForOnline = - lib.mkDefault config.systemd.network.wait-online.anyInterface; - networkConfig.IPv6PrivacyExtensions = "kernel"; - }; - networks."99-wireless-client-dhcp" = lib.mkIf cfg.useDHCP { - # Like above, but this is much more likely to be correct. - matchConfig.WLANInterfaceType = "station"; - DHCP = "yes"; - linkConfig.RequiredForOnline = - lib.mkDefault config.systemd.network.wait-online.anyInterface; - networkConfig.IPv6PrivacyExtensions = "kernel"; - # We also set the route metric to one more than the default - # of 1024, so that Ethernet is preferred if both are - # available. - dhcpV4Config.RouteMetric = 1025; - ipv6AcceptRAConfig.RouteMetric = 1025; - }; - }) - (mkMerge (forEach interfaces (i: { - netdevs = mkIf i.virtual ({ - "40-${i.name}" = { - netdevConfig = { - Name = i.name; - Kind = i.virtualType; - }; - "${i.virtualType}Config" = optionalAttrs (i.virtualOwner != null) { - User = i.virtualOwner; - }; - }; - }); - networks."40-${i.name}" = mkMerge [ (genericNetwork id) { - name = mkDefault i.name; - DHCP = mkForce (dhcpStr - (if i.useDHCP != null then i.useDHCP else false)); - address = forEach (interfaceIps i) - (ip: "${ip.address}/${toString ip.prefixLength}"); - routes = forEach (interfaceRoutes i) - (route: { - # Most of these route options have not been tested. - # Please fix or report any mistakes you may find. - routeConfig = - optionalAttrs (route.address != null && route.prefixLength != null) { - Destination = "${route.address}/${toString route.prefixLength}"; - } // - optionalAttrs (route.options ? fastopen_no_cookie) { - FastOpenNoCookie = route.options.fastopen_no_cookie; - } // - optionalAttrs (route.via != null) { - Gateway = route.via; - } // - optionalAttrs (route.type != null) { - Type = route.type; - } // - optionalAttrs (route.options ? onlink) { - GatewayOnLink = true; - } // - optionalAttrs (route.options ? initrwnd) { - InitialAdvertisedReceiveWindow = route.options.initrwnd; - } // - optionalAttrs (route.options ? initcwnd) { - InitialCongestionWindow = route.options.initcwnd; - } // - optionalAttrs (route.options ? pref) { - IPv6Preference = route.options.pref; - } // - optionalAttrs (route.options ? mtu) { - MTUBytes = route.options.mtu; - } // - optionalAttrs (route.options ? metric) { - Metric = route.options.metric; - } // - optionalAttrs (route.options ? src) { - PreferredSource = route.options.src; - } // - optionalAttrs (route.options ? protocol) { - Protocol = route.options.protocol; - } // - optionalAttrs (route.options ? quickack) { - QuickAck = route.options.quickack; - } // - optionalAttrs (route.options ? scope) { - Scope = route.options.scope; - } // - optionalAttrs (route.options ? from) { - Source = route.options.from; - } // - optionalAttrs (route.options ? table) { - Table = route.options.table; - } // - optionalAttrs (route.options ? advmss) { - TCPAdvertisedMaximumSegmentSize = route.options.advmss; - } // - optionalAttrs (route.options ? ttl-propagate) { - TTLPropagate = route.options.ttl-propagate == "enabled"; - }; - }); - networkConfig.IPv6PrivacyExtensions = "kernel"; - linkConfig = optionalAttrs (i.macAddress != null) { - MACAddress = i.macAddress; - } // optionalAttrs (i.mtu != null) { - MTUBytes = toString i.mtu; - }; - }]; - }))) + (genericDhcpNetworks false) + interfaceNetworks (mkMerge (flip mapAttrsToList cfg.bridges (name: bridge: { netdevs."40-${name}" = { netdevConfig = { @@ -437,6 +452,7 @@ in bindsTo = [ "systemd-networkd.service" ]; }; }; - }; + }) + ]; } diff --git a/nixos/tests/systemd-initrd-networkd.nix b/nixos/tests/systemd-initrd-networkd.nix index 872a8cd64b25..1656f5d5e189 100644 --- a/nixos/tests/systemd-initrd-networkd.nix +++ b/nixos/tests/systemd-initrd-networkd.nix @@ -8,12 +8,9 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: { boot.initrd.systemd = { enable = true; - network.networks."99-eth0" = { - matchConfig.Name = "eth0"; - DHCP = "yes"; - }; + # Enable network-online to fail the test in case of timeout network.wait-online.timeout = 10; - # Drop the boot into emergency mode if we timeout + network.wait-online.anyInterface = true; targets.network-online.requiredBy = [ "initrd.target" ]; services.systemd-networkd-wait-online.requiredBy = [ "network-online.target" ]; From 0698a1cf04392a24f740b4b5e16c5bd33642b6df Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Wed, 3 Aug 2022 06:36:11 -0400 Subject: [PATCH 026/213] systemd-initrd: sshd --- nixos/modules/system/boot/initrd-ssh.nix | 64 +++++++++++++--- nixos/tests/all-tests.nix | 1 + nixos/tests/systemd-initrd-networkd-ssh.nix | 82 +++++++++++++++++++++ 3 files changed, 137 insertions(+), 10 deletions(-) create mode 100644 nixos/tests/systemd-initrd-networkd-ssh.nix diff --git a/nixos/modules/system/boot/initrd-ssh.nix b/nixos/modules/system/boot/initrd-ssh.nix index 125f75d66706..60c5ff62ffff 100644 --- a/nixos/modules/system/boot/initrd-ssh.nix +++ b/nixos/modules/system/boot/initrd-ssh.nix @@ -5,6 +5,10 @@ with lib; let cfg = config.boot.initrd.network.ssh; + shell = if cfg.shell == null then "/bin/ash" else cfg.shell; + inherit (config.programs.ssh) package; + + enabled = let initrd = config.boot.initrd; in (initrd.network.enable || initrd.systemd.network.enable) && cfg.enable; in @@ -33,8 +37,9 @@ in }; shell = mkOption { - type = types.str; - default = "/bin/ash"; + type = types.nullOr types.str; + default = null; + defaultText = ''"/bin/ash"''; description = lib.mdDoc '' Login shell of the remote user. Can be used to limit actions user can do. ''; @@ -119,9 +124,11 @@ in sshdCfg = config.services.openssh; sshdConfig = '' + UsePAM no Port ${toString cfg.port} PasswordAuthentication no + AuthorizedKeysFile %h/.ssh/authorized_keys %h/.ssh/authorized_keys2 /etc/ssh/authorized_keys.d/%u ChallengeResponseAuthentication no ${flip concatMapStrings cfg.hostKeys (path: '' @@ -142,7 +149,7 @@ in ${cfg.extraConfig} ''; - in mkIf (config.boot.initrd.network.enable && cfg.enable) { + in mkIf enabled { assertions = [ { assertion = cfg.authorizedKeys != []; @@ -157,14 +164,19 @@ in for instructions. ''; } + + { + assertion = config.boot.initrd.systemd.enable -> cfg.shell == null; + message = "systemd stage 1 does not support boot.initrd.network.ssh.shell"; + } ]; - boot.initrd.extraUtilsCommands = '' - copy_bin_and_libs ${pkgs.openssh}/bin/sshd + boot.initrd.extraUtilsCommands = mkIf (!config.boot.initrd.systemd.enable) '' + copy_bin_and_libs ${package}/bin/sshd cp -pv ${pkgs.glibc.out}/lib/libnss_files.so.* $out/lib ''; - boot.initrd.extraUtilsCommandsTest = '' + boot.initrd.extraUtilsCommandsTest = mkIf (!config.boot.initrd.systemd.enable) '' # sshd requires a host key to check config, so we pass in the test's tmpkey="$(mktemp initrd-ssh-testkey.XXXXXXXXXX)" cp "${../../../tests/initrd-network-ssh/ssh_host_ed25519_key}" "$tmpkey" @@ -176,9 +188,9 @@ in rm "$tmpkey" ''; - boot.initrd.network.postCommands = '' - echo '${cfg.shell}' > /etc/shells - echo 'root:x:0:0:root:/root:${cfg.shell}' > /etc/passwd + boot.initrd.network.postCommands = mkIf (!config.boot.initrd.systemd.enable) '' + echo '${shell}' > /etc/shells + echo 'root:x:0:0:root:/root:${shell}' > /etc/passwd echo 'sshd:x:1:1:sshd:/var/empty:/bin/nologin' >> /etc/passwd echo 'passwd: files' > /etc/nsswitch.conf @@ -204,7 +216,7 @@ in /bin/sshd -e ''; - boot.initrd.postMountCommands = '' + boot.initrd.postMountCommands = mkIf (!config.boot.initrd.systemd.enable) '' # Stop sshd cleanly before stage 2. # # If you want to keep it around to debug post-mount SSH issues, @@ -217,6 +229,38 @@ in boot.initrd.secrets = listToAttrs (map (path: nameValuePair (initrdKeyPath path) path) cfg.hostKeys); + + # Systemd initrd stuff + boot.initrd.systemd = mkIf config.boot.initrd.systemd.enable { + users.sshd = { uid = 1; group = "sshd"; }; + groups.sshd = { gid = 1; }; + + contents."/etc/ssh/authorized_keys.d/root".text = + concatStringsSep "\n" config.boot.initrd.network.ssh.authorizedKeys; + contents."/etc/ssh/sshd_config".text = sshdConfig; + storePaths = ["${package}/bin/sshd"]; + + services.sshd = { + description = "SSH Daemon"; + wantedBy = ["initrd.target"]; + after = ["network.target" "initrd-nixos-copy-secrets.service"]; + + # Keys from Nix store are world-readable, which sshd doesn't + # like. If this were a real nix store and not the initrd, we + # neither would nor could do this + preStart = flip concatMapStrings cfg.hostKeys (path: '' + /bin/chmod 0600 "${initrdKeyPath path}" + ''); + unitConfig.DefaultDependencies = false; + serviceConfig = { + ExecStart = "${package}/bin/sshd -D -f /etc/ssh/sshd_config"; + Type = "simple"; + KillMode = "process"; + Restart = "on-failure"; + }; + }; + }; + }; } diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 00a637b460f5..5771d1c3bc96 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -678,6 +678,7 @@ in { systemd-initrd-swraid = handleTest ./systemd-initrd-swraid.nix {}; systemd-initrd-vconsole = handleTest ./systemd-initrd-vconsole.nix {}; systemd-initrd-networkd = handleTest ./systemd-initrd-networkd.nix {}; + systemd-initrd-networkd-ssh = handleTest ./systemd-initrd-networkd-ssh.nix {}; systemd-journal = handleTest ./systemd-journal.nix {}; systemd-machinectl = handleTest ./systemd-machinectl.nix {}; systemd-networkd = handleTest ./systemd-networkd.nix {}; diff --git a/nixos/tests/systemd-initrd-networkd-ssh.nix b/nixos/tests/systemd-initrd-networkd-ssh.nix new file mode 100644 index 000000000000..943552613be9 --- /dev/null +++ b/nixos/tests/systemd-initrd-networkd-ssh.nix @@ -0,0 +1,82 @@ +import ./make-test-python.nix ({ lib, ... }: { + name = "systemd-initrd-network-ssh"; + meta.maintainers = [ lib.maintainers.elvishjerricco ]; + + nodes = with lib; { + server = { config, pkgs, ... }: { + environment.systemPackages = [pkgs.cryptsetup]; + boot.loader.systemd-boot.enable = true; + boot.loader.timeout = 0; + virtualisation = { + emptyDiskImages = [ 4096 ]; + useBootLoader = true; + useEFIBoot = true; + }; + + specialisation.encrypted-root.configuration = { + virtualisation.bootDevice = "/dev/mapper/root"; + boot.initrd.luks.devices = lib.mkVMOverride { + root.device = "/dev/vdc"; + }; + boot.initrd.systemd.enable = true; + boot.initrd.network = { + enable = true; + ssh = { + enable = true; + authorizedKeys = [ (readFile ./initrd-network-ssh/id_ed25519.pub) ]; + port = 22; + # Terrible hack so it works with useBootLoader + hostKeys = [ { outPath = "${./initrd-network-ssh/ssh_host_ed25519_key}"; } ]; + }; + }; + }; + }; + + client = { config, ... }: { + environment.etc = { + knownHosts = { + text = concatStrings [ + "server," + "${ + toString (head (splitString " " (toString + (elemAt (splitString "\n" config.networking.extraHosts) 2)))) + } " + "${readFile ./initrd-network-ssh/ssh_host_ed25519_key.pub}" + ]; + }; + sshKey = { + source = ./initrd-network-ssh/id_ed25519; + mode = "0600"; + }; + }; + }; + }; + + testScript = '' + start_all() + + def ssh_is_up(_) -> bool: + status, _ = client.execute("nc -z server 22") + return status == 0 + + server.wait_for_unit("multi-user.target") + server.succeed( + "echo somepass | cryptsetup luksFormat --type=luks2 /dev/vdc", + "bootctl set-default nixos-generation-1-specialisation-encrypted-root.conf", + "sync", + ) + server.shutdown() + server.start() + + client.wait_for_unit("network.target") + with client.nested("waiting for SSH server to come up"): + retry(ssh_is_up) + + client.succeed( + "echo somepass | ssh -i /etc/sshKey -o UserKnownHostsFile=/etc/knownHosts server 'systemd-tty-ask-password-agent' & exit" + ) + + server.wait_for_unit("multi-user.target") + server.succeed("mount | grep '/dev/mapper/root on /'") + ''; +}) From 834ec135ce71cdc93aba9e98cf67f42e41502f32 Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Fri, 17 Feb 2023 07:47:40 -0500 Subject: [PATCH 027/213] systemd-initrd: OpenVPN --- nixos/modules/system/boot/initrd-openvpn.nix | 21 ++++++++++++++++--- nixos/tests/all-tests.nix | 1 + .../tests/initrd-network-openvpn/default.nix | 18 ++++++++++++++++ 3 files changed, 37 insertions(+), 3 deletions(-) diff --git a/nixos/modules/system/boot/initrd-openvpn.nix b/nixos/modules/system/boot/initrd-openvpn.nix index cbc61d55d6bb..2530240628e4 100644 --- a/nixos/modules/system/boot/initrd-openvpn.nix +++ b/nixos/modules/system/boot/initrd-openvpn.nix @@ -51,7 +51,7 @@ in # Add openvpn and ip binaries to the initrd # The shared libraries are required for DNS resolution - boot.initrd.extraUtilsCommands = '' + boot.initrd.extraUtilsCommands = mkIf (!config.boot.initrd.systemd.enable) '' copy_bin_and_libs ${pkgs.openvpn}/bin/openvpn copy_bin_and_libs ${pkgs.iproute2}/bin/ip @@ -59,18 +59,33 @@ in cp -pv ${pkgs.glibc}/lib/libnss_dns.so.2 $out/lib ''; + boot.initrd.systemd.storePaths = [ + "${pkgs.openvpn}/bin/openvpn" + "${pkgs.iproute2}/bin/ip" + "${pkgs.glibc}/lib/libresolv.so.2" + "${pkgs.glibc}/lib/libnss_dns.so.2" + ]; + boot.initrd.secrets = { "/etc/initrd.ovpn" = cfg.configuration; }; # openvpn --version would exit with 1 instead of 0 - boot.initrd.extraUtilsCommandsTest = '' + boot.initrd.extraUtilsCommandsTest = mkIf (!config.boot.initrd.systemd.enable) '' $out/bin/openvpn --show-gateway ''; - boot.initrd.network.postCommands = '' + boot.initrd.network.postCommands = mkIf (!config.boot.initrd.systemd.enable) '' openvpn /etc/initrd.ovpn & ''; + + boot.initrd.systemd.services.openvpn = { + wantedBy = [ "initrd.target" ]; + path = [ pkgs.iproute2 ]; + after = [ "network.target" "initrd-nixos-copy-secrets.service" ]; + serviceConfig.ExecStart = "${pkgs.openvpn}/bin/openvpn /etc/initrd.ovpn"; + serviceConfig.Type = "notify"; + }; }; } diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 5771d1c3bc96..95b67617fe97 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -679,6 +679,7 @@ in { systemd-initrd-vconsole = handleTest ./systemd-initrd-vconsole.nix {}; systemd-initrd-networkd = handleTest ./systemd-initrd-networkd.nix {}; systemd-initrd-networkd-ssh = handleTest ./systemd-initrd-networkd-ssh.nix {}; + systemd-initrd-networkd-openvpn = handleTest ./initrd-network-openvpn { systemdStage1 = true; }; systemd-journal = handleTest ./systemd-journal.nix {}; systemd-machinectl = handleTest ./systemd-machinectl.nix {}; systemd-networkd = handleTest ./systemd-networkd.nix {}; diff --git a/nixos/tests/initrd-network-openvpn/default.nix b/nixos/tests/initrd-network-openvpn/default.nix index 1150e2dc5b0d..769049905eb8 100644 --- a/nixos/tests/initrd-network-openvpn/default.nix +++ b/nixos/tests/initrd-network-openvpn/default.nix @@ -1,3 +1,9 @@ +{ system ? builtins.currentSystem +, config ? {} +, pkgs ? import ../.. { inherit system config; } +, systemdStage1 ? false +}: + import ../make-test-python.nix ({ lib, ...}: { @@ -22,6 +28,7 @@ import ../make-test-python.nix ({ lib, ...}: minimalboot = { ... }: { + boot.initrd.systemd.enable = systemdStage1; boot.initrd.network = { enable = true; openvpn = { @@ -39,6 +46,17 @@ import ../make-test-python.nix ({ lib, ...}: virtualisation.vlans = [ 1 ]; boot.initrd = { + systemd.enable = systemdStage1; + systemd.extraBin.nc = "${pkgs.busybox}/bin/nc"; + systemd.services.nc = { + requiredBy = ["initrd.target"]; + after = ["network.target"]; + serviceConfig = { + ExecStart = "/bin/nc -p 1234 -lke /bin/echo TESTVALUE"; + Type = "oneshot"; + }; + }; + # This command does not fork to keep the VM in the state where # only the initramfs is loaded preLVMCommands = From 85982346510230f7bfe1aeabfa2f9382c8192ad8 Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Mon, 6 Mar 2023 22:21:48 -0500 Subject: [PATCH 028/213] systemd-initrd: dbus --- nixos/modules/services/system/dbus.nix | 21 ++++++++++++++++++++- nixos/modules/system/boot/networkd.nix | 3 +++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix index c677088101f0..9d8a62ec78c5 100644 --- a/nixos/modules/services/system/dbus.nix +++ b/nixos/modules/services/system/dbus.nix @@ -14,13 +14,17 @@ let serviceDirectories = cfg.packages; }; - inherit (lib) mkOption mkIf mkMerge types; + inherit (lib) mkOption mkEnableOption mkIf mkMerge types; in { options = { + boot.initrd.systemd.dbus = { + enable = mkEnableOption (lib.mdDoc "dbus in stage 1") // { visible = false; }; + }; + services.dbus = { enable = mkOption { @@ -111,6 +115,21 @@ in ]; } + (mkIf config.boot.initrd.systemd.dbus.enable { + boot.initrd.systemd = { + users.messagebus = { }; + groups.messagebus = { }; + contents."/etc/dbus-1".source = pkgs.makeDBusConf { + inherit (cfg) apparmor; + suidHelper = "/bin/false"; + serviceDirectories = [ pkgs.dbus ]; + }; + packages = [ pkgs.dbus ]; + storePaths = [ "${pkgs.dbus}/bin/dbus-daemon" ]; + targets.sockets.wants = [ "dbus.socket" ]; + }; + }) + (mkIf (cfg.implementation == "dbus") { environment.systemPackages = [ pkgs.dbus diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix index e325a33a9e37..d2a8a28c4e69 100644 --- a/nixos/modules/system/boot/networkd.nix +++ b/nixos/modules/system/boot/networkd.nix @@ -3155,6 +3155,9 @@ let systemd.package = pkgs.systemdStage1Network; + # For networkctl + systemd.dbus.enable = mkDefault true; + systemd.additionalUpstreamUnits = [ "systemd-networkd-wait-online.service" "systemd-networkd.service" From 3cb9534df64937f3425dbc0f63749cc83276791a Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Mon, 6 Mar 2023 13:46:17 -0500 Subject: [PATCH 029/213] systemd-initrd: Flush networkd --- nixos/modules/system/boot/initrd-network.nix | 6 +++- nixos/modules/system/boot/networkd.nix | 33 +++++++++++++++++++ nixos/tests/systemd-initrd-networkd.nix | 34 +++++++++++++++++++- 3 files changed, 71 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/boot/initrd-network.nix b/nixos/modules/system/boot/initrd-network.nix index a1017c3e2420..e8bbf1d04032 100644 --- a/nixos/modules/system/boot/initrd-network.nix +++ b/nixos/modules/system/boot/initrd-network.nix @@ -67,11 +67,15 @@ in boot.initrd.network.flushBeforeStage2 = mkOption { type = types.bool; - default = true; + default = !config.boot.initrd.systemd.enable; + defaultText = "!config.boot.initrd.systemd.enable"; description = lib.mdDoc '' Whether to clear the configuration of the interfaces that were set up in the initrd right before stage 2 takes over. Stage 2 will do the regular network configuration based on the NixOS networking options. + + The default is false when systemd is enabled in initrd, + because the systemd-networkd documentation suggests it. ''; }; diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix index d2a8a28c4e69..bd2f1cc4374a 100644 --- a/nixos/modules/system/boot/networkd.nix +++ b/nixos/modules/system/boot/networkd.nix @@ -3186,6 +3186,39 @@ let ]; kernelModules = [ "af_packet" ]; + systemd.services.nixos-flush-networkd = mkIf config.boot.initrd.network.flushBeforeStage2 { + description = "Flush Network Configuration"; + wantedBy = ["initrd.target"]; + after = ["systemd-networkd.service" "dbus.socket" "dbus.service"]; + before = ["shutdown.target" "initrd-switch-root.target"]; + conflicts = ["shutdown.target" "initrd-switch-root.target"]; + unitConfig.DefaultDependencies = false; + serviceConfig = { + # This service does nothing when starting, but brings down + # interfaces when switching root. This is the easiest way to + # ensure proper ordering while stopping. See systemd.unit(5) + # section on Before= and After=. The important part is that + # we are stopped before units we need, like dbus.service, + # and that we are stopped before starting units like + # initrd-switch-root.target + Type = "oneshot"; + RemainAfterExit = true; + ExecStart = "/bin/true"; + }; + # systemd-networkd doesn't bring down interfaces on its own + # when it exits (see: systemd-networkd(8)), so we have to do + # it ourselves. The networkctl command doesn't have a way to + # bring all interfaces down, so we have to iterate over the + # list and filter out unmanaged interfaces to bring them down + # individually. + preStop = '' + networkctl list --full --no-legend | while read _idx link _type _operational setup _; do + [ "$setup" = unmanaged ] && continue + networkctl down "$link" + done + ''; + }; + }) ]; diff --git a/nixos/tests/systemd-initrd-networkd.nix b/nixos/tests/systemd-initrd-networkd.nix index 1656f5d5e189..00ecbec5613c 100644 --- a/nixos/tests/systemd-initrd-networkd.nix +++ b/nixos/tests/systemd-initrd-networkd.nix @@ -2,7 +2,23 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: { name = "systemd-initrd-network"; meta.maintainers = [ lib.maintainers.elvishjerricco ]; - nodes = { + nodes = let + mkFlushTest = flush: script: { ... }: { + boot.initrd.systemd.enable = true; + boot.initrd.network = { + enable = true; + flushBeforeStage2 = flush; + }; + systemd.services.check-flush = { + requiredBy = ["multi-user.target"]; + before = ["network-pre.target" "multi-user.target"]; + unitConfig.DefaultDependencies = false; + serviceConfig.Type = "oneshot"; + path = [ pkgs.iproute2 pkgs.iputils pkgs.gnugrep ]; + inherit script; + }; + }; + in { basic = { ... }: { boot.initrd.network.enable = true; @@ -29,11 +45,27 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: { }; }; }; + + doFlush = mkFlushTest true '' + if ip addr | grep 10.0.2.15; then + echo "Network configuration survived switch-root; flushBeforeStage2 failed" + exit 1 + fi + ''; + + dontFlush = mkFlushTest false '' + if ! (ip addr | grep 10.0.2.15); then + echo "Network configuration didn't survive switch-root" + exit 1 + fi + ''; }; testScript = '' start_all() basic.wait_for_unit("multi-user.target") + doFlush.wait_for_unit("multi-user.target") + dontFlush.wait_for_unit("multi-user.target") # Make sure the systemd-network user was set correctly in initrd basic.succeed("[ $(stat -c '%U,%G' /run/systemd/netif/links) = systemd-network,systemd-network ]") basic.succeed("ip addr show >&2") From 2e7a27e66b07e44f09c04e197e853dc60d6a14df Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Mon, 17 Apr 2023 23:32:00 +0100 Subject: [PATCH 030/213] pkgsi686Linux.openexr_3: enforce SSE arithmetics (instead of x87) On i686 with x87 80-bit FPU precision tests fail as: F float at 59, 0 not equal: C++ loaded C 0x7f84e300 (nan) vs C++ loaded C++ 7fc4e300 (nan) Core Test failed: a.iv == b.iv file:/build/source/src/test/OpenEXRCoreTest/compression.cpp line:423 function:static void pixels::compareExact(float, float, int, int, const char*, const char*, const char*) Force SSE arithmetic to get expected rounding and precision. --- pkgs/development/libraries/openexr/3.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/openexr/3.nix b/pkgs/development/libraries/openexr/3.nix index 4cf535cb2f94..5ab6ecf2f3d5 100644 --- a/pkgs/development/libraries/openexr/3.nix +++ b/pkgs/development/libraries/openexr/3.nix @@ -32,6 +32,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; propagatedBuildInputs = [ imath zlib ]; + # Without 'sse' enforcement tests fail on i686 as due to excessive precision as: + # error reading back channel B pixel 21,-76 got -nan expected -nan + env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isi686 "-msse2 -mfpmath=sse"; + doCheck = true; meta = with lib; { From 69d506aad2ef61dbdba24719126544fc1f0b40ce Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 18 Apr 2023 03:42:09 +0000 Subject: [PATCH 031/213] capnproto: 0.10.3 -> 0.10.4 --- pkgs/development/libraries/capnproto/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/capnproto/default.nix b/pkgs/development/libraries/capnproto/default.nix index fda33fa16460..f21c3955836d 100644 --- a/pkgs/development/libraries/capnproto/default.nix +++ b/pkgs/development/libraries/capnproto/default.nix @@ -8,14 +8,14 @@ stdenv.mkDerivation rec { pname = "capnproto"; - version = "0.10.3"; + version = "0.10.4"; # release tarballs are missing some ekam rules src = fetchFromGitHub { owner = "capnproto"; repo = "capnproto"; rev = "v${version}"; - sha256 = "sha256-QrBSIKDwVlG8AIE/F4tnRq14xdhT05NKsBMldWzQQFo="; + sha256 = "sha256-45sxnVyyYIw9i3sbFZ1naBMoUzkpP21WarzR5crg4X8="; }; nativeBuildInputs = [ cmake ]; From 639e754db540e9f1c1a7706b25ed16f2b2742449 Mon Sep 17 00:00:00 2001 From: D Anzorge Date: Tue, 18 Apr 2023 14:41:55 +0200 Subject: [PATCH 032/213] cldr-annotations: 42.0 -> 43.0 https://cldr.unicode.org/index/downloads/cldr-43 --- pkgs/data/misc/cldr-annotations/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/misc/cldr-annotations/default.nix b/pkgs/data/misc/cldr-annotations/default.nix index 729d3cdbb7b8..6d06d49eb711 100644 --- a/pkgs/data/misc/cldr-annotations/default.nix +++ b/pkgs/data/misc/cldr-annotations/default.nix @@ -2,12 +2,12 @@ stdenvNoCC.mkDerivation rec { pname = "cldr-annotations"; - version = "42.0"; + version = "43.0"; src = fetchzip { url = "https://unicode.org/Public/cldr/${lib.versions.major version}/cldr-common-${version}.zip"; stripRoot = false; - hash = "sha256-paRon3ecGXNp3ZDnN1DU9RVU2NDWTBiKjy0OP3vcPLE="; + hash = "sha256-L8ikzRpSw4mDCV79TiUqhPHWC0PmGi4i4He0OAB54R0="; }; installPhase = '' From b70298fe11c0aa64d8f8171ed0df687cddfe1ea1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 18 Apr 2023 16:22:23 +0200 Subject: [PATCH 033/213] python310Packages.meshtastic: 2.0.12 -> 2.1.6 Changelog: https://github.com/meshtastic/python/releases/tag/2.1.6 --- .../development/python-modules/meshtastic/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/meshtastic/default.nix b/pkgs/development/python-modules/meshtastic/default.nix index ec1f34fcf3d2..3e4842d53771 100644 --- a/pkgs/development/python-modules/meshtastic/default.nix +++ b/pkgs/development/python-modules/meshtastic/default.nix @@ -12,6 +12,7 @@ , pytestCheckHook , pythonOlder , pyyaml +, requests , setuptools , tabulate , timeago @@ -19,7 +20,7 @@ buildPythonPackage rec { pname = "meshtastic"; - version = "2.0.12"; + version = "2.1.6"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -28,7 +29,7 @@ buildPythonPackage rec { owner = "meshtastic"; repo = "Meshtastic-python"; rev = "refs/tags/${version}"; - hash = "sha256-Y3X5LW85e+OQ548H13fQ0s+R870Hzp0kVd+v+lbdqtg="; + hash = "sha256-xfE4hfnf9NFA9iwce1onclLJOYgMWxuionmVUPDVEuw="; }; propagatedBuildInputs = [ @@ -41,6 +42,7 @@ buildPythonPackage rec { pyserial pyyaml setuptools + requests tabulate timeago ]; @@ -103,6 +105,11 @@ buildPythonPackage rec { "test_writeGPIOs" "test_reboot" "test_shutdown" + "test_main_sendtext" + "test_main_sendtext_with_channel" + "test_MeshInterface" + "test_getNode_not_local" + "test_getNode_not_local_timeout" ]; meta = with lib; { From a5c5ba536f7dfcef41ee9d986f31e8e7c50312f1 Mon Sep 17 00:00:00 2001 From: Julius de Bruijn Date: Tue, 18 Apr 2023 16:42:20 +0200 Subject: [PATCH 034/213] prisma-engines: 4.12.0 -> 4.13.0 --- .../tools/database/prisma-engines/Cargo.lock | 738 ++++++++++-------- .../tools/database/prisma-engines/default.nix | 10 +- 2 files changed, 423 insertions(+), 325 deletions(-) diff --git a/pkgs/development/tools/database/prisma-engines/Cargo.lock b/pkgs/development/tools/database/prisma-engines/Cargo.lock index 4e62430f3c50..5d7b32a4f6cc 100644 --- a/pkgs/development/tools/database/prisma-engines/Cargo.lock +++ b/pkgs/development/tools/database/prisma-engines/Cargo.lock @@ -106,7 +106,7 @@ checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -117,7 +117,7 @@ checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -191,6 +191,12 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" +[[package]] +name = "base64" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" + [[package]] name = "bigdecimal" version = "0.3.0" @@ -208,7 +214,7 @@ version = "0.59.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cexpr", "clang-sys", "lazy_static", @@ -233,6 +239,12 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c70beb79cbb5ce9c4f8e20849978f34225931f665bb49efa6982875a4d5facb3" + [[package]] name = "bitvec" version = "1.0.1" @@ -245,6 +257,21 @@ dependencies = [ "wyz", ] +[[package]] +name = "black-box-tests" +version = "0.1.0" +dependencies = [ + "anyhow", + "indoc", + "insta", + "query-engine-tests", + "query-tests-setup", + "reqwest", + "serde_json", + "tokio", + "user-facing-errors", +] + [[package]] name = "block-buffer" version = "0.9.0" @@ -283,6 +310,15 @@ dependencies = [ "uuid 1.1.2", ] +[[package]] +name = "bstr" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" +dependencies = [ + "memchr", +] + [[package]] name = "builtin-psl-connectors" version = "0.1.0" @@ -403,7 +439,7 @@ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" dependencies = [ "ansi_term", "atty", - "bitflags", + "bitflags 1.3.2", "strsim 0.8.0", "textwrap 0.11.0", "unicode-width", @@ -416,7 +452,7 @@ version = "3.2.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" dependencies = [ - "bitflags", + "bitflags 1.3.2", "clap_lex", "indexmap", "textwrap 0.16.0", @@ -507,12 +543,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "convert_case" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb4a24b1aaf0fd0ce8b45161144d6f42cd91677fd5940fd431183eb023b3a2b8" - [[package]] name = "convert_case" version = "0.6.0" @@ -693,7 +723,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb" dependencies = [ "quote", - "syn", + "syn 1.0.99", +] + +[[package]] +name = "ctor" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd4056f63fce3b82d852c3da92b08ea59959890813a7f4ce9c0ff85b10cf301b" +dependencies = [ + "quote", + "syn 2.0.14", ] [[package]] @@ -728,7 +768,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.10.0", - "syn", + "syn 1.0.99", ] [[package]] @@ -739,7 +779,7 @@ checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" dependencies = [ "darling_core", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -781,7 +821,7 @@ checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -842,9 +882,12 @@ name = "dmmf" version = "0.1.0" dependencies = [ "bigdecimal", + "colored", "expect-test", + "flate2", "indexmap", "indoc", + "itertools", "pretty_assertions", "prisma-models", "psl", @@ -852,6 +895,7 @@ dependencies = [ "schema-builder", "serde", "serde_json", + "similar", ] [[package]] @@ -930,6 +974,15 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" +[[package]] +name = "encoding_rs" +version = "0.8.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" +dependencies = [ + "cfg-if", +] + [[package]] name = "endian-type" version = "0.1.2" @@ -945,7 +998,7 @@ dependencies = [ "heck 0.4.0", "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -957,7 +1010,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -978,7 +1031,7 @@ checksum = "f58dc3c5e468259f19f2d46304a6b28f1c3d034442e14b322d2b850e36f6d5ae" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -1112,7 +1165,7 @@ checksum = "3dbc4f084ec5a3f031d24ccedeb87ab2c3189a2f33b8d070889073837d5ea09e" dependencies = [ "frunk_proc_macro_helpers", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -1124,7 +1177,7 @@ dependencies = [ "frunk_core", "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -1148,7 +1201,7 @@ dependencies = [ "frunk_proc_macro_helpers", "proc-macro-hack", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -1213,7 +1266,7 @@ checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -1487,6 +1540,19 @@ dependencies = [ "tokio-io-timeout", ] +[[package]] +name = "hyper-tls" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" +dependencies = [ + "bytes", + "hyper", + "native-tls", + "tokio", + "tokio-native-tls", +] + [[package]] name = "ident_case" version = "1.0.1" @@ -1517,9 +1583,9 @@ dependencies = [ [[package]] name = "indoc" -version = "1.0.7" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adab1eaa3408fb7f0c777a73e7465fd5656136fc93b670eb6df3c88c2c1344e3" +checksum = "9f2cb48b81b1dc9f39676bf99f5499babfec7cd8fe14307f7b3d747208fb5690" [[package]] name = "insta" @@ -1543,47 +1609,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "introspection-connector" -version = "0.1.0" -dependencies = [ - "anyhow", - "async-trait", - "enumflags2", - "psl", - "serde", - "serde_json", - "thiserror", - "user-facing-errors", -] - -[[package]] -name = "introspection-engine-tests" -version = "0.1.0" -dependencies = [ - "barrel", - "connection-string", - "enumflags2", - "expect-test", - "indoc", - "introspection-connector", - "migration-connector", - "pretty_assertions", - "psl", - "quaint", - "serde_json", - "sql-introspection-connector", - "sql-migration-connector", - "sql-schema-describer", - "test-macros", - "test-setup", - "tokio", - "tracing", - "tracing-futures", - "url", - "user-facing-errors", -] - [[package]] name = "io-lifetimes" version = "1.0.6" @@ -1603,7 +1628,7 @@ dependencies = [ "socket2", "widestring", "winapi", - "winreg", + "winreg 0.7.0", ] [[package]] @@ -1614,9 +1639,9 @@ checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" [[package]] name = "itertools" -version = "0.10.3" +version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" dependencies = [ "either", ] @@ -1859,7 +1884,7 @@ version = "0.91.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2368312c59425dd133cb9a327afee65be0a633a8ce471d248e2202a48f8f68ae" dependencies = [ - "bitflags", + "bitflags 1.3.2", "serde", "serde_json", "serde_repr", @@ -1972,7 +1997,7 @@ checksum = "49e30813093f757be5cf21e50389a24dc7dbb22c49f23b7e8f51d69b508a5ffa" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -2014,99 +2039,10 @@ dependencies = [ ] [[package]] -name = "migration-connector" -version = "0.1.0" -dependencies = [ - "chrono", - "enumflags2", - "introspection-connector", - "psl", - "sha2 0.9.9", - "tracing", - "tracing-error", - "user-facing-errors", -] - -[[package]] -name = "migration-core" -version = "0.1.0" -dependencies = [ - "async-trait", - "chrono", - "enumflags2", - "json-rpc-api-build", - "jsonrpc-core", - "migration-connector", - "mongodb-migration-connector", - "psl", - "serde", - "serde_json", - "sql-migration-connector", - "tokio", - "tracing", - "tracing-futures", - "tracing-subscriber", - "url", - "user-facing-errors", -] - -[[package]] -name = "migration-engine-cli" -version = "0.1.0" -dependencies = [ - "backtrace", - "base64 0.13.1", - "connection-string", - "expect-test", - "indoc", - "json-rpc-stdio", - "migration-connector", - "migration-core", - "quaint", - "serde_json", - "structopt", - "tempfile", - "test-macros", - "test-setup", - "tokio", - "tracing", - "tracing-error", - "tracing-subscriber", - "url", - "user-facing-errors", -] - -[[package]] -name = "migration-engine-tests" -version = "0.1.0" -dependencies = [ - "bigdecimal", - "chrono", - "colored", - "connection-string", - "enumflags2", - "expect-test", - "indoc", - "jsonrpc-core", - "migration-core", - "once_cell", - "pretty_assertions", - "prisma-value", - "psl", - "quaint", - "serde", - "serde_json", - "sql-migration-connector", - "sql-schema-describer", - "tempfile", - "test-macros", - "test-setup", - "tokio", - "tracing", - "tracing-futures", - "url", - "user-facing-errors", -] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "minimal-lexical" @@ -2161,7 +2097,7 @@ checksum = "b95afe97b0c799fdf69cd960272a2cb9662d077bd6efd84eb722bb9805d47554" dependencies = [ "async-trait", "base64 0.13.1", - "bitflags", + "bitflags 1.3.2", "bson", "chrono", "derivative", @@ -2209,53 +2145,6 @@ dependencies = [ "thiserror", ] -[[package]] -name = "mongodb-introspection-connector" -version = "0.1.0" -dependencies = [ - "async-trait", - "convert_case 0.5.0", - "datamodel-renderer", - "enumflags2", - "expect-test", - "futures", - "indoc", - "introspection-connector", - "mongodb", - "mongodb-client", - "mongodb-schema-describer", - "names", - "once_cell", - "psl", - "regex", - "serde_json", - "thiserror", - "tokio", - "url", - "user-facing-errors", -] - -[[package]] -name = "mongodb-migration-connector" -version = "0.1.0" -dependencies = [ - "dissimilar", - "enumflags2", - "futures", - "migration-connector", - "mongodb", - "mongodb-client", - "mongodb-introspection-connector", - "mongodb-schema-describer", - "once_cell", - "psl", - "serde", - "serde_json", - "tokio", - "tracing", - "url", -] - [[package]] name = "mongodb-query-connector" version = "0.1.0" @@ -2288,6 +2177,33 @@ dependencies = [ "uuid 1.1.2", ] +[[package]] +name = "mongodb-schema-connector" +version = "0.1.0" +dependencies = [ + "convert_case", + "datamodel-renderer", + "dissimilar", + "enumflags2", + "expect-test", + "futures", + "indoc", + "mongodb", + "mongodb-client", + "mongodb-schema-describer", + "names", + "once_cell", + "psl", + "regex", + "schema-connector", + "serde", + "serde_json", + "tokio", + "tracing", + "url", + "user-facing-errors", +] + [[package]] name = "mongodb-schema-describer" version = "0.1.0" @@ -2344,7 +2260,7 @@ dependencies = [ "base64 0.13.1", "bigdecimal", "bindgen", - "bitflags", + "bitflags 1.3.2", "bitvec", "byteorder", "bytes", @@ -2392,17 +2308,17 @@ dependencies = [ [[package]] name = "napi" -version = "2.10.4" +version = "2.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "838b5b414a008e75b97edb3c3e6f189034af789a0608686299b149d3b0e66c39" +checksum = "556470a21074b55be8adee5f27ca04389cfdaca323a28b4b0e9c15466de94731" dependencies = [ - "bitflags", - "ctor", + "bitflags 2.1.0", + "ctor 0.2.0", + "napi-derive", "napi-sys", "once_cell", "serde", "serde_json", - "thread_local", "tokio", ] @@ -2414,36 +2330,37 @@ checksum = "ebd4419172727423cf30351406c54f6cc1b354a2cfb4f1dba3e6cd07f6d5522b" [[package]] name = "napi-derive" -version = "2.9.3" +version = "2.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af4e44e34e70aa61be9036ae652e27c20db5bca80e006be0f482419f6601352a" +checksum = "af2ac63101a19228b0881694cac07468d642fd10e4f943a9c9feebeebf1a4787" dependencies = [ - "convert_case 0.6.0", + "convert_case", "napi-derive-backend", "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] name = "napi-derive-backend" -version = "1.0.40" +version = "1.0.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17925fff04b6fa636f8e4b4608cc1a4f1360b64ac8ecbfdb7da1be1dc74f6843" +checksum = "0e32b5bc4d803e40b783b0aa3fe488eac8711cfaa4c5c9915293dfd3d0b99925" dependencies = [ - "convert_case 0.6.0", + "convert_case", "once_cell", "proc-macro2", "quote", "regex", - "syn", + "semver 1.0.17", + "syn 1.0.99", ] [[package]] name = "napi-sys" -version = "2.2.2" +version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "529671ebfae679f2ce9630b62dd53c72c56b3eb8b2c852e7e2fa91704ff93d67" +checksum = "166b5ef52a3ab5575047a9fe8d4a030cdd0f63c96f071cd6907674453b07bae3" dependencies = [ "libloading", ] @@ -2567,7 +2484,7 @@ version = "0.10.48" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "518915b97df115dd36109bfa429a48b8f737bd05508cf9588977b599648926d2" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg-if", "foreign-types", "libc", @@ -2584,7 +2501,7 @@ checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -2841,7 +2758,7 @@ dependencies = [ "pest_meta", "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -2910,7 +2827,7 @@ checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -2962,7 +2879,7 @@ dependencies = [ [[package]] name = "postgres-native-tls" version = "0.5.0" -source = "git+https://github.com/pimeys/rust-postgres?branch=pgbouncer-mode#74f0847e9a8ac350c48dd65c4c33e9be5fcf6010" +source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#00d4815e58859261bdfca71c75be7dc657303f7d" dependencies = [ "native-tls", "tokio", @@ -2973,7 +2890,7 @@ dependencies = [ [[package]] name = "postgres-protocol" version = "0.6.4" -source = "git+https://github.com/pimeys/rust-postgres?branch=pgbouncer-mode#74f0847e9a8ac350c48dd65c4c33e9be5fcf6010" +source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#00d4815e58859261bdfca71c75be7dc657303f7d" dependencies = [ "base64 0.13.1", "byteorder", @@ -2990,7 +2907,7 @@ dependencies = [ [[package]] name = "postgres-types" version = "0.2.4" -source = "git+https://github.com/pimeys/rust-postgres?branch=pgbouncer-mode#74f0847e9a8ac350c48dd65c4c33e9be5fcf6010" +source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#00d4815e58859261bdfca71c75be7dc657303f7d" dependencies = [ "bit-vec", "bytes", @@ -3020,7 +2937,7 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" dependencies = [ - "ctor", + "ctor 0.1.23", "diff", "output_vt100", "yansi", @@ -3099,7 +3016,7 @@ dependencies = [ "proc-macro-error-attr", "proc-macro2", "quote", - "syn", + "syn 1.0.99", "version_check", ] @@ -3122,9 +3039,9 @@ checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" [[package]] name = "proc-macro2" -version = "1.0.43" +version = "1.0.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab" +checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" dependencies = [ "unicode-ident", ] @@ -3169,7 +3086,7 @@ dependencies = [ "itertools", "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -3222,13 +3139,13 @@ version = "0.1.0" dependencies = [ "connection-string", "enumflags2", - "migration-core", "mongodb", "mongodb-client", "once_cell", "parking_lot 0.12.1", "psl", "quaint", + "schema-core", "tempfile", "test-setup", "url", @@ -3237,7 +3154,7 @@ dependencies = [ [[package]] name = "quaint" version = "0.2.0-alpha.13" -source = "git+https://github.com/prisma/quaint#53c756a67a0ff3f1b6023c64bec9dc9280bdc1cd" +source = "git+https://github.com/prisma/quaint#5a708313ed488da9016e37edbb2f774fd7893250" dependencies = [ "async-trait", "base64 0.12.3", @@ -3317,22 +3234,16 @@ dependencies = [ "base64 0.12.3", "bigdecimal", "chrono", - "connection-string", "crossbeam-channel", - "crossbeam-queue", "cuid", "enumflags2", "futures", "indexmap", "itertools", "lru 0.7.8", - "mongodb-client", - "mongodb-query-connector", "once_cell", "opentelemetry", - "parking_lot 0.12.1", "petgraph 0.4.13", - "pin-utils", "prisma-models", "prisma-value", "psl", @@ -3342,14 +3253,12 @@ dependencies = [ "schema-builder", "serde", "serde_json", - "sql-query-connector", "thiserror", "tokio", "tracing", "tracing-futures", "tracing-opentelemetry", "tracing-subscriber", - "url", "user-facing-errors", "uuid 1.1.2", ] @@ -3474,7 +3383,7 @@ dependencies = [ "proc-macro2", "query-tests-setup", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -3521,9 +3430,9 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" [[package]] name = "quote" -version = "1.0.21" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" +checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" dependencies = [ "proc-macro2", ] @@ -3621,7 +3530,7 @@ version = "10.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6823ea29436221176fe662da99998ad3b4db2c7f31e7b6f5fe43adccd6320bb" dependencies = [ - "bitflags", + "bitflags 1.3.2", ] [[package]] @@ -3652,14 +3561,14 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ - "bitflags", + "bitflags 1.3.2", ] [[package]] name = "regex" -version = "1.7.0" +version = "1.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" +checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" dependencies = [ "aho-corasick", "memchr", @@ -3677,9 +3586,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.27" +version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "request-handlers" @@ -3693,18 +3602,57 @@ dependencies = [ "indexmap", "insta", "itertools", + "mongodb-query-connector", "prisma-models", "psl", "query-core", "schema-builder", "serde", "serde_json", + "sql-query-connector", "thiserror", "tracing", "url", "user-facing-errors", ] +[[package]] +name = "reqwest" +version = "0.11.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" +dependencies = [ + "base64 0.21.0", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "hyper-tls", + "ipnet", + "js-sys", + "log", + "mime", + "native-tls", + "once_cell", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "serde_urlencoded", + "tokio", + "tokio-native-tls", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "winreg 0.10.1", +] + [[package]] name = "resolv-conf" version = "0.7.0" @@ -3736,7 +3684,7 @@ version = "0.25.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c4b1eaf239b47034fb450ee9cdedd7d0226571689d8823030c4b6c2cb407152" dependencies = [ - "bitflags", + "bitflags 1.3.2", "chrono", "fallible-iterator", "fallible-streaming-iterator", @@ -3775,7 +3723,7 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" dependencies = [ - "semver", + "semver 0.9.0", ] [[package]] @@ -3785,7 +3733,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d31b7153270ebf48bf91c65ae5b0c00e749c4cfad505f66530ac74950249582f" dependencies = [ "rustc_version", - "semver", + "semver 0.9.0", ] [[package]] @@ -3794,7 +3742,7 @@ version = "0.36.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd5c6ff11fecd55b40746d1995a02f2eb375bf8c00d192d521ee09f42bef37bc" dependencies = [ - "bitflags", + "bitflags 1.3.2", "errno", "io-lifetimes", "libc", @@ -3904,9 +3852,75 @@ dependencies = [ "once_cell", "prisma-models", "psl", + "rustc-hash", "schema", ] +[[package]] +name = "schema-connector" +version = "0.1.0" +dependencies = [ + "chrono", + "enumflags2", + "psl", + "quaint", + "serde", + "serde_json", + "sha2 0.9.9", + "tracing", + "tracing-error", + "user-facing-errors", +] + +[[package]] +name = "schema-core" +version = "0.1.0" +dependencies = [ + "async-trait", + "chrono", + "enumflags2", + "json-rpc-api-build", + "jsonrpc-core", + "mongodb-schema-connector", + "psl", + "schema-connector", + "serde", + "serde_json", + "sql-schema-connector", + "tokio", + "tracing", + "tracing-futures", + "tracing-subscriber", + "url", + "user-facing-errors", +] + +[[package]] +name = "schema-engine-cli" +version = "0.1.0" +dependencies = [ + "backtrace", + "base64 0.13.1", + "connection-string", + "expect-test", + "indoc", + "json-rpc-stdio", + "quaint", + "schema-connector", + "schema-core", + "serde_json", + "structopt", + "tempfile", + "test-macros", + "test-setup", + "tokio", + "tracing", + "tracing-error", + "tracing-subscriber", + "url", + "user-facing-errors", +] + [[package]] name = "scopeguard" version = "1.1.0" @@ -3939,7 +3953,7 @@ version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" dependencies = [ - "bitflags", + "bitflags 1.3.2", "core-foundation", "core-foundation-sys", "libc", @@ -3965,6 +3979,12 @@ dependencies = [ "semver-parser", ] +[[package]] +name = "semver" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" + [[package]] name = "semver-parser" version = "0.7.0" @@ -3997,7 +4017,7 @@ checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -4020,7 +4040,19 @@ checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", ] [[package]] @@ -4042,7 +4074,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -4068,7 +4100,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -4146,6 +4178,9 @@ name = "similar" version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" +dependencies = [ + "bstr", +] [[package]] name = "siphasher" @@ -4198,58 +4233,60 @@ dependencies = [ ] [[package]] -name = "sql-introspection-connector" +name = "sql-introspection-tests" version = "0.1.0" dependencies = [ - "anyhow", - "async-trait", - "bigdecimal", - "datamodel-renderer", - "either", + "barrel", + "connection-string", "enumflags2", "expect-test", - "introspection-connector", - "once_cell", - "pretty_assertions", - "prisma-value", - "psl", - "quaint", - "regex", - "serde", - "serde_json", - "sql-schema-describer", - "sqlformat", - "sqlparser", - "thiserror", - "tracing", - "tracing-futures", - "user-facing-errors", -] - -[[package]] -name = "sql-migration-connector" -version = "0.1.0" -dependencies = [ - "chrono", - "connection-string", - "either", - "enumflags2", "indoc", - "migration-connector", - "once_cell", + "pretty_assertions", "psl", "quaint", - "regex", + "schema-connector", "serde_json", - "sql-ddl", - "sql-introspection-connector", + "sql-schema-connector", "sql-schema-describer", + "test-macros", + "test-setup", + "tokio", + "tracing", + "tracing-futures", + "url", + "user-facing-errors", +] + +[[package]] +name = "sql-migration-tests" +version = "0.1.0" +dependencies = [ + "bigdecimal", + "chrono", + "colored", + "connection-string", + "enumflags2", + "expect-test", + "indoc", + "jsonrpc-core", + "once_cell", + "pretty_assertions", + "prisma-value", + "psl", + "quaint", + "schema-core", + "serde", + "serde_json", + "sql-schema-connector", + "sql-schema-describer", + "tempfile", + "test-macros", + "test-setup", "tokio", "tracing", "tracing-futures", "url", "user-facing-errors", - "uuid 1.1.2", ] [[package]] @@ -4282,6 +4319,36 @@ dependencies = [ "uuid 1.1.2", ] +[[package]] +name = "sql-schema-connector" +version = "0.1.0" +dependencies = [ + "chrono", + "connection-string", + "datamodel-renderer", + "either", + "enumflags2", + "indoc", + "once_cell", + "prisma-value", + "psl", + "quaint", + "regex", + "schema-connector", + "serde", + "serde_json", + "sql-ddl", + "sql-schema-describer", + "sqlformat", + "sqlparser", + "tokio", + "tracing", + "tracing-futures", + "url", + "user-facing-errors", + "uuid 1.1.2", +] + [[package]] name = "sql-schema-describer" version = "0.1.0" @@ -4386,7 +4453,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -4416,6 +4483,17 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "syn" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcf316d5356ed6847742d036f8a39c3b8435cac10bd528a4bd461928a6ab34d5" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "take_mut" version = "0.2.2" @@ -4460,10 +4538,9 @@ dependencies = [ "colored", "dmmf", "enumflags2", - "introspection-connector", - "migration-connector", - "migration-core", "psl", + "schema-connector", + "schema-core", "serde_json", "structopt", "tokio", @@ -4478,7 +4555,7 @@ version = "0.1.0" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -4529,7 +4606,7 @@ checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -4664,7 +4741,7 @@ checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -4680,7 +4757,7 @@ dependencies = [ [[package]] name = "tokio-postgres" version = "0.7.7" -source = "git+https://github.com/pimeys/rust-postgres?branch=pgbouncer-mode#74f0847e9a8ac350c48dd65c4c33e9be5fcf6010" +source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#00d4815e58859261bdfca71c75be7dc657303f7d" dependencies = [ "async-trait", "byteorder", @@ -4814,7 +4891,7 @@ dependencies = [ "proc-macro2", "prost-build", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -4870,7 +4947,7 @@ checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -5030,7 +5107,7 @@ checksum = "89851716b67b937e393b3daa8423e67ddfc4bbbf1654bcf05488e95e0828db0c" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -5117,7 +5194,7 @@ version = "0.1.0" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", ] [[package]] @@ -5276,10 +5353,22 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn", + "syn 1.0.99", "wasm-bindgen-shared", ] +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "wasm-bindgen-macro" version = "0.2.84" @@ -5298,7 +5387,7 @@ checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.99", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -5413,7 +5502,7 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f820cd208ce9c6b050812dc2d724ba98c6c1e9db5ce9b3f58d925ae5723a5e6" dependencies = [ - "bitflags", + "bitflags 1.3.2", "byteorder", "md5", "rand 0.7.3", @@ -5510,6 +5599,15 @@ dependencies = [ "winapi", ] +[[package]] +name = "winreg" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" +dependencies = [ + "winapi", +] + [[package]] name = "wyz" version = "0.5.0" diff --git a/pkgs/development/tools/database/prisma-engines/default.nix b/pkgs/development/tools/database/prisma-engines/default.nix index 07934dde7654..6f1a8e91a956 100644 --- a/pkgs/development/tools/database/prisma-engines/default.nix +++ b/pkgs/development/tools/database/prisma-engines/default.nix @@ -14,13 +14,13 @@ # function correctly. rustPlatform.buildRustPackage rec { pname = "prisma-engines"; - version = "4.12.0"; + version = "4.13.0"; src = fetchFromGitHub { owner = "prisma"; repo = "prisma-engines"; rev = version; - sha256 = "sha256-bSyAWJ4ukiXVyKI1iGvCs2cMgW1jdYRs5cgTdOCXvrQ="; + sha256 = "sha256-NJQvu+EREF40u5P3i8h2yGYC1vM6Q8xEXX9WyOnJkBM="; }; # Use system openssl. @@ -33,8 +33,8 @@ rustPlatform.buildRustPackage rec { "graphql-parser-0.3.0" = "sha256-0ZAsj2mW6fCLhwTETucjbu4rPNzfbNiHu2wVTBlTNe4="; "mobc-0.7.3" = "sha256-Ts2VVAuZakS+Sy/rEUrCe7RJX5MWs/TTO60c7mH+5sU="; "mysql_async-0.31.3" = "sha256-hvuZTJ8W6L2s2gYAGJXBezkeAHTu06zIvJGQjoYX+7Q="; - "postgres-native-tls-0.5.0" = "sha256-6aDlwv9+Tt9ncOPRnhKNAgafcPhqM1V31Ix+fplwdUc="; - "quaint-0.2.0-alpha.13" = "sha256-UI1B/BylEQQko48D+sQzUhD7qIK2Z84115bu7NkDSFw="; + "postgres-native-tls-0.5.0" = "sha256-OYbtGYAvDDCTeYfhav/BI2LJSyMyUERD7xa8GA/57rI="; + "quaint-0.2.0-alpha.13" = "sha256-Z7Zl1ZXzP3YE1Z1iuuj9V6dYBD2DpJngVbDLb4l/gjc="; }; }; @@ -59,7 +59,7 @@ rustPlatform.buildRustPackage rec { cargoBuildFlags = [ "-p" "query-engine" "-p" "query-engine-node-api" - "-p" "migration-engine-cli" + "-p" "schema-engine-cli" "-p" "prisma-fmt" ]; From 9a03bb2c0760db455f4d672c206e69a7201b8c99 Mon Sep 17 00:00:00 2001 From: Julius de Bruijn Date: Tue, 18 Apr 2023 16:44:22 +0200 Subject: [PATCH 035/213] nodePackages.prisma: 4.12.0 -> 4.13.0 --- pkgs/development/node-packages/overrides.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/node-packages/overrides.nix b/pkgs/development/node-packages/overrides.nix index afc9c3a0e381..b468ec4fe4dc 100644 --- a/pkgs/development/node-packages/overrides.nix +++ b/pkgs/development/node-packages/overrides.nix @@ -412,7 +412,7 @@ final: prev: { src = fetchurl { url = "https://registry.npmjs.org/prisma/-/prisma-${version}.tgz"; - hash = "sha512-xqVper4mbwl32BWzLpdznHAYvYDWQQWK2tBfXjdUD397XaveRyAP7SkBZ6kFlIg8kKayF4hvuaVtYwXd9BodAg=="; + hash = "sha512-L9mqjnSmvWIRCYJ9mQkwCtj4+JDYYTdhoyo8hlsHNDXaZLh/b4hR0IoKIBbTKxZuyHQzLopb/+0Rvb69uGV7uA=="; }; postInstall = with pkgs; '' wrapProgram "$out/bin/prisma" \ From 0f05321d784fdd9e6b3a80aabe292a32d28e96c1 Mon Sep 17 00:00:00 2001 From: Albert Peschar Date: Tue, 18 Apr 2023 17:44:25 +0300 Subject: [PATCH 036/213] zfs: enable keylocation=http:// When ZFS is built with cURL, it allows retrieving encryption keys from URLs automatically. --- nixos/tests/zfs.nix | 26 ++++++++++++++++++++++++-- pkgs/os-specific/linux/zfs/default.nix | 4 ++++ 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/nixos/tests/zfs.nix b/nixos/tests/zfs.nix index bcb9d9bcfd60..ce2796b67da4 100644 --- a/nixos/tests/zfs.nix +++ b/nixos/tests/zfs.nix @@ -80,6 +80,11 @@ let fsType = "zfs"; options = [ "noauto" ]; }; + virtualisation.fileSystems."/manual/httpkey" = { + device = "manual/httpkey"; + fsType = "zfs"; + options = [ "noauto" ]; + }; }; specialisation.forcepool.configuration = { @@ -92,6 +97,19 @@ let options = [ "noauto" ]; }; }; + + services.nginx = { + enable = true; + virtualHosts = { + localhost = { + locations = { + "/zfskey" = { + return = ''200 "httpkeyabc"''; + }; + }; + }; + }; + }; }; testScript = '' @@ -130,6 +148,8 @@ let "zpool create -O mountpoint=legacy manual /dev/vdd1", "echo otherpass | zfs create " + "-o encryption=aes-256-gcm -o keyformat=passphrase manual/encrypted", + "zfs create -o encryption=aes-256-gcm -o keyformat=passphrase " + + "-o keylocation=http://localhost/zfskey manual/httpkey", "bootctl set-default nixos-generation-1-specialisation-encryption.conf", "sync", "zpool export automatic", @@ -141,10 +161,12 @@ let machine.send_console("password\n") machine.wait_for_unit("multi-user.target") machine.succeed( - "zfs get keystatus manual/encrypted | grep unavailable", + "zfs get -Ho value keystatus manual/encrypted | grep -Fx unavailable", "echo otherpass | zfs load-key manual/encrypted", "systemctl start manual-encrypted.mount", - "umount /automatic /manual/encrypted /manual", + "zfs load-key manual/httpkey", + "systemctl start manual-httpkey.mount", + "umount /automatic /manual/encrypted /manual/httpkey /manual", "zpool destroy automatic", "zpool destroy manual", ) diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix index 8655bd2ed323..7476a0c845fe 100644 --- a/pkgs/os-specific/linux/zfs/default.nix +++ b/pkgs/os-specific/linux/zfs/default.nix @@ -10,6 +10,7 @@ , gawk, gnugrep, gnused, systemd , smartmontools, enableMail ? false , sysstat, pkg-config +, curl # Kernel dependencies , kernel ? null @@ -76,6 +77,8 @@ let nfs-utils.override (old: { enablePython = old.enablePython or true && enablePython; }) }/bin/exportfs" substituteInPlace ./lib/libshare/smb.h --replace "/usr/bin/net" "${samba}/bin/net" + # Disable dynamic loading of libcurl + substituteInPlace ./config/user-libfetch.m4 --replace "curl-config --built-shared" "true" substituteInPlace ./config/user-systemd.m4 --replace "/usr/lib/modules-load.d" "$out/etc/modules-load.d" substituteInPlace ./config/zfs-build.m4 --replace "\$sysconfdir/init.d" "$out/etc/init.d" \ --replace "/etc/default" "$out/etc/default" @@ -111,6 +114,7 @@ let ++ optional buildUser pkg-config; buildInputs = optionals buildUser [ zlib libuuid attr libtirpc ] ++ optional buildUser openssl + ++ optional buildUser curl ++ optional (buildUser && enablePython) python3; # for zdb to get the rpath to libgcc_s, needed for pthread_cancel to work From b7df45f169d4552bfbe2c8d307f76ea97ef59c73 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 18 Apr 2023 17:09:14 +0200 Subject: [PATCH 037/213] kube-hunter: fix version handling --- pkgs/tools/security/kube-hunter/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/tools/security/kube-hunter/default.nix b/pkgs/tools/security/kube-hunter/default.nix index 823f3db9b432..05ee083f4d77 100644 --- a/pkgs/tools/security/kube-hunter/default.nix +++ b/pkgs/tools/security/kube-hunter/default.nix @@ -14,6 +14,8 @@ python3.pkgs.buildPythonApplication rec { sha256 = "sha256-+M8P/VSF9SKPvq+yNPjokyhggY7hzQ9qLLhkiTNbJls="; }; + SETUPTOOLS_SCM_PRETEND_VERSION = version; + nativeBuildInputs = with python3.pkgs; [ setuptools-scm ]; @@ -47,6 +49,11 @@ python3.pkgs.buildPythonApplication rec { "kube_hunter" ]; + disabledTests = [ + # Test is out-dated + "test_K8sCveHunter" + ]; + meta = with lib; { description = "Tool to search issues in Kubernetes clusters"; homepage = "https://github.com/aquasecurity/kube-hunter"; From c24b4a4839b7ad7e5ae6d6217c446a204dc94589 Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk <24990891+ymatsiuk@users.noreply.github.com> Date: Tue, 18 Apr 2023 17:30:44 +0200 Subject: [PATCH 038/213] google-cloud-sdk: 424.0.0 -> 426.0.0 --- .../admin/google-cloud-sdk/components.json | 312 +++++++++--------- pkgs/tools/admin/google-cloud-sdk/data.nix | 22 +- pkgs/tools/admin/google-cloud-sdk/update.sh | 2 +- 3 files changed, 168 insertions(+), 168 deletions(-) diff --git a/pkgs/tools/admin/google-cloud-sdk/components.json b/pkgs/tools/admin/google-cloud-sdk/components.json index b05c0f74011f..709fdf117b36 100644 --- a/pkgs/tools/admin/google-cloud-sdk/components.json +++ b/pkgs/tools/admin/google-cloud-sdk/components.json @@ -5,7 +5,7 @@ "checksum": "5a65179c291bc480696ca323d2f8c4874985458303eff8f233e16cdca4e88e6f", "contents_checksum": "038c999c7a7d70d5133eab7dc5868c4c3d0358431dad250f9833306af63016c8", "size": 800, - "source": "components/google-cloud-sdk-alpha-20230324213959.tar.gz", + "source": "components/google-cloud-sdk-alpha-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -22,8 +22,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20230324213959, - "version_string": "2023.03.24" + "build_number": 20230410222307, + "version_string": "2023.04.10" } }, { @@ -560,15 +560,15 @@ "platform_required": false, "version": { "build_number": 0, - "version_string": "1.9.73" + "version_string": "1.9.74" } }, { "data": { - "checksum": "9ee98c4e0d8b8ab0b611f009dabb7ff970ab3aae3d9b3670137f06e22c24f23d", - "contents_checksum": "9ce47001c34dd733d7b9af5cef0c9143c5e332cd53c42581fd3413bcfb986687", - "size": 4456298, - "source": "components/google-cloud-sdk-app-engine-go-darwin-arm-20230317195124.tar.gz", + "checksum": "9ccbf2d3f1b16c6e135c0f212ffc23a57014bfe630760e053c5fd598c3d7c81e", + "contents_checksum": "6ed06edd2ff2d1a53c731cf5fefa978b8821111df2fd4c5c053539bf5e8e68d1", + "size": 4463608, + "source": "components/google-cloud-sdk-app-engine-go-darwin-arm-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -594,16 +594,16 @@ }, "platform_required": false, "version": { - "build_number": 20230317195124, - "version_string": "1.9.73" + "build_number": 20230410222307, + "version_string": "1.9.74" } }, { "data": { - "checksum": "eab5919985bc653e824aacf3f7cb512c5c6dc704c7126c5324f918321f51fb6e", - "contents_checksum": "3bf2f6a279d32628645bc05f6aa442557b502c12b639541aa72c11b597b6f9e4", - "size": 4654616, - "source": "components/google-cloud-sdk-app-engine-go-darwin-x86_64-20230317195124.tar.gz", + "checksum": "541aadb1f47c1746f88bbb544c075dfe69d721d5f1c0febc1791d896001e1bf7", + "contents_checksum": "76b0489355b7682fc72f0433f7f5b2d5f486f6cc9f7afe414771fb874509bf49", + "size": 4658275, + "source": "components/google-cloud-sdk-app-engine-go-darwin-x86_64-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -629,16 +629,16 @@ }, "platform_required": false, "version": { - "build_number": 20230317195124, - "version_string": "1.9.73" + "build_number": 20230410222307, + "version_string": "1.9.74" } }, { "data": { - "checksum": "02ce33c22af742bc894e89c58b6da16eb2a5e9bb27b47ed7c7efc4e5d601027e", - "contents_checksum": "c34d60f0ad1db0ffaab6d7f185ace22f9b684ce0c45364027b711aa2f5e1ec2e", - "size": 4409259, - "source": "components/google-cloud-sdk-app-engine-go-linux-arm-20230317195124.tar.gz", + "checksum": "0285d1f1181f05dff4fd971095760c2cc31c93db77393a73584a8b96f2ee28e9", + "contents_checksum": "b51ee28c36a553f2d9c3e2bbdd38969861d49da7501fa8377faa53b91f3f9aee", + "size": 4418740, + "source": "components/google-cloud-sdk-app-engine-go-linux-arm-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -664,16 +664,16 @@ }, "platform_required": false, "version": { - "build_number": 20230317195124, - "version_string": "1.9.73" + "build_number": 20230410222307, + "version_string": "1.9.74" } }, { "data": { - "checksum": "69b03dbfe6a5a15f5923602fe3b0b47f20b7be0e2bd460d40bbf061f663985b4", - "contents_checksum": "ccb2ea5318acbaaba5fc1fb8ab0884be0af7eb85b1029f837db2423adac7603a", - "size": 4808474, - "source": "components/google-cloud-sdk-app-engine-go-linux-x86-20230317195124.tar.gz", + "checksum": "9ace85dd79d0cbe1239829215fe7bbbec1402cd76b1d6a04672909f818d78ba5", + "contents_checksum": "1262e24409d76def1483927ef95203635637f28c56fa5fd3fd643a47ba4ad38d", + "size": 4813823, + "source": "components/google-cloud-sdk-app-engine-go-linux-x86-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -699,16 +699,16 @@ }, "platform_required": false, "version": { - "build_number": 20230317195124, - "version_string": "1.9.73" + "build_number": 20230410222307, + "version_string": "1.9.74" } }, { "data": { - "checksum": "a87fbb39717e40303347c0c67e0984f918a5623895c25eddb8fc1a9458482cd5", - "contents_checksum": "4460f4ae203876f88313526f9916132f9d8aa25297cdf90939b01361e3c89a71", - "size": 4720972, - "source": "components/google-cloud-sdk-app-engine-go-linux-x86_64-20230317195124.tar.gz", + "checksum": "d27520cde52bece0702e1b5883a62bf1ed86c4dd07ff2325babe5eb428dfb1f9", + "contents_checksum": "09fcb20e1a31f23528b7177343e5c462a542d3a279b29eb796e8435a50bc20e2", + "size": 4727758, + "source": "components/google-cloud-sdk-app-engine-go-linux-x86_64-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -734,16 +734,16 @@ }, "platform_required": false, "version": { - "build_number": 20230317195124, - "version_string": "1.9.73" + "build_number": 20230410222307, + "version_string": "1.9.74" } }, { "data": { - "checksum": "1d8f7cf92fc9420902fc2ab6db77b1b02ffd396b6afef62c229494066299dd09", - "contents_checksum": "d37b785758e21ffdf03a30ef3eebc8cf1d1a77918c04a8be2295a9c77608142a", - "size": 4916192, - "source": "components/google-cloud-sdk-app-engine-go-windows-x86-20230317195124.tar.gz", + "checksum": "99a6f51c86bc35826bbb6238f5c019a1db67a3a6a725cb5af0a3a8b08665b27f", + "contents_checksum": "311aebedf540d23402665c67a125ba7342bc01524cf3b86f361c991052db0485", + "size": 4916010, + "source": "components/google-cloud-sdk-app-engine-go-windows-x86-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -769,16 +769,16 @@ }, "platform_required": false, "version": { - "build_number": 20230317195124, - "version_string": "1.9.73" + "build_number": 20230410222307, + "version_string": "1.9.74" } }, { "data": { - "checksum": "79242a945bf952a935039590440dbb6cef9323285378255ae25d0719e18590b6", - "contents_checksum": "546d214135b59654bdac7837244ed0b054257202f64561d0aa66707df13f25d5", - "size": 4784421, - "source": "components/google-cloud-sdk-app-engine-go-windows-x86_64-20230317195124.tar.gz", + "checksum": "e34f285a94e28318a0d7cfccf53388a47250c2ee164f33634d9ef9dfe62409e5", + "contents_checksum": "535438cf6e6ac0a8317cb784a875f932a68c32b2cb0cdcd4387b50573b7c8a6b", + "size": 4786620, + "source": "components/google-cloud-sdk-app-engine-go-windows-x86_64-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -804,8 +804,8 @@ }, "platform_required": false, "version": { - "build_number": 20230317195124, - "version_string": "1.9.73" + "build_number": 20230410222307, + "version_string": "1.9.74" } }, { @@ -1432,7 +1432,7 @@ "checksum": "707d412854a14450b4fddee199d258e75946fe51b44eb2980c8cd7e274c15760", "contents_checksum": "0b4e9d8e6394dc841aece07ca4da91920a460cbd7ec22495be4a2b4f46635b4d", "size": 797, - "source": "components/google-cloud-sdk-beta-20230324213959.tar.gz", + "source": "components/google-cloud-sdk-beta-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -1449,8 +1449,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20230324213959, - "version_string": "2023.03.24" + "build_number": 20230410222307, + "version_string": "2023.04.10" } }, { @@ -1765,10 +1765,10 @@ }, { "data": { - "checksum": "3b47dbf200e0e1bca926b81c1afd298e934a01fdbd32aea7693cf73561863dab", - "contents_checksum": "d48d61610fb430f82fea456da8c96d1729e8c5923a6a497f8ac98f50b07cf12d", - "size": 1661040, - "source": "components/google-cloud-sdk-bq-20230324213959.tar.gz", + "checksum": "4a06cd26e6c56d79e5af12c8333f003e92f09af3a0018e58f315a62ca016dc8b", + "contents_checksum": "1ed865efe8040709ef0236d2506997639c06f83ef7dc32fef5dfe1c125b9e6fb", + "size": 1661255, + "source": "components/google-cloud-sdk-bq-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -1787,8 +1787,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20230324213959, - "version_string": "2.0.89" + "build_number": 20230410222307, + "version_string": "2.0.90" } }, { @@ -2818,15 +2818,15 @@ "platform_required": false, "version": { "build_number": 0, - "version_string": "1.4.9" + "version_string": "1.5.2" } }, { "data": { - "checksum": "ea602c838b974d60bfaf51b16130f4c5a59463cc76a1c62f2df2eb374e3fbc4d", - "contents_checksum": "e3e477fda5304af371044feb9e49badd4f140e00868de5fb447af7cb07e351d8", - "size": 30082563, - "source": "components/google-cloud-sdk-cloud-spanner-emulator-linux-x86_64-20230120151534.tar.gz", + "checksum": "7f2760004610137539f4acd364803170377bdd46610009fa87516d78d8ea6f00", + "contents_checksum": "5c69f77ead6547b8731e318fc4d7a292c5d4f36976505cf4bd67c8900d946685", + "size": 30132273, + "source": "components/google-cloud-sdk-cloud-spanner-emulator-linux-x86_64-20230331214548.tar.gz", "type": "tar" }, "dependencies": [ @@ -2851,8 +2851,8 @@ }, "platform_required": false, "version": { - "build_number": 20230120151534, - "version_string": "1.4.9" + "build_number": 20230331214548, + "version_string": "1.5.2" } }, { @@ -3322,10 +3322,10 @@ }, { "data": { - "checksum": "4a4a8f391b47659020d4721ccabe62bdb9084f25e6273dcd8f9828ba50b7384d", - "contents_checksum": "b59d6252aed8d184e07cfc238a39807f364bb2125941127c417234200368a143", - "size": 21033675, - "source": "components/google-cloud-sdk-core-20230324213959.tar.gz", + "checksum": "53a5066680e61999e1418ec7ebbb9efe5d087b4bf52b298f75071acbeadd666a", + "contents_checksum": "0b0ffc99b9c7f62dc21f83ee9ba3a0df6500a189506a1cb7d69998840abbb931", + "size": 21202857, + "source": "components/google-cloud-sdk-core-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -3346,8 +3346,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20230324213959, - "version_string": "2023.03.24" + "build_number": 20230410222307, + "version_string": "2023.04.10" } }, { @@ -4138,10 +4138,10 @@ }, { "data": { - "checksum": "0ca9f8770b5e9f47e1087632b887804b2300c7251f9758a3d3dfce8517c3a983", - "contents_checksum": "7daf6ace54f867880a3559f866438575bfb4d5cc0c7f10ec2853b0a140ad9506", - "size": 11784358, - "source": "components/google-cloud-sdk-gcloud-deps-20230224152814.tar.gz", + "checksum": "af7ff3a8ec7d8a733a0b88910d569c9d3f7171e3fdbce88e45872fe05991da03", + "contents_checksum": "e222736b661e5d516690cdc360cedb56a7440209caef906afcc3b23f754a086a", + "size": 11797805, + "source": "components/google-cloud-sdk-gcloud-deps-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -4164,8 +4164,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20230224152814, - "version_string": "2023.02.24" + "build_number": 20230410222307, + "version_string": "2023.04.10" } }, { @@ -4401,10 +4401,10 @@ }, { "data": { - "checksum": "4c7ad4739caa2b6e82874fcb8852bce5b59ec5b7afe0626ec1eb735969f359c4", - "contents_checksum": "9ef5c8334b61e432e6471551f8de1dc66dcd09883d302dd559c315340ea7c958", - "size": 5797405, - "source": "components/google-cloud-sdk-gcloud-man-pages-nix-20230324213959.tar.gz", + "checksum": "026737be09469f6f33f0a93f2aa77db18f4b8e95c3a1fbb99e6e4149338e0abd", + "contents_checksum": "61b69e3108f54924f32b786e45010f4e32f9daf0398d89076b3cc7487bc0dcb6", + "size": 5846262, + "source": "components/google-cloud-sdk-gcloud-man-pages-nix-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -4429,7 +4429,7 @@ }, "platform_required": false, "version": { - "build_number": 20230324213959, + "build_number": 20230410222307, "version_string": "" } }, @@ -4816,15 +4816,15 @@ "platform_required": false, "version": { "build_number": 0, - "version_string": "2.0.2" + "version_string": "2.0.3" } }, { "data": { - "checksum": "314cd1c85749247e679f0554bc216a6631b7ae18a02d970025d1e3b802508dd1", - "contents_checksum": "83745593b4e201ea34f8578a971dcedd716d7c27e30f645a5a04304449d3c994", - "size": 23351443, - "source": "components/google-cloud-sdk-harbourbridge-linux-x86_64-20230217153950.tar.gz", + "checksum": "bba42d44c83d7ab0a2437ae561ee718d215dd55b6525aa8635d7726ab4638a80", + "contents_checksum": "da61f9f44c74667079644f3cce92f9054195920ef9adfecea7b7761e75795f2a", + "size": 23362209, + "source": "components/google-cloud-sdk-harbourbridge-linux-x86_64-20230331214548.tar.gz", "type": "tar" }, "dependencies": [ @@ -4848,8 +4848,8 @@ }, "platform_required": false, "version": { - "build_number": 20230217153950, - "version_string": "2.0.2" + "build_number": 20230331214548, + "version_string": "2.0.3" } }, { @@ -6042,15 +6042,15 @@ "platform_required": false, "version": { "build_number": 0, - "version_string": "1.29.0" + "version_string": "1.30.1" } }, { "data": { - "checksum": "4ea0b739eb65fcf33b30d91dbc9faf00b4a32d57e50a20d210ec3c643fd0030c", - "contents_checksum": "8a085a785886f0674b1b16cf3498918433cf45b4a40ccca6bdf94dfa423bf582", - "size": 32825665, - "source": "components/google-cloud-sdk-minikube-darwin-arm-20230130152419.tar.gz", + "checksum": "fcd7eb541df45b734090b1984028a854f1539d8ba71ef98de639776f2e68b893", + "contents_checksum": "d9d5530acc0876431aaa532d12fac62b35451ca1b59873f51d2856c78cfbafc2", + "size": 33392192, + "source": "components/google-cloud-sdk-minikube-darwin-arm-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -6074,16 +6074,16 @@ }, "platform_required": false, "version": { - "build_number": 20230130152419, - "version_string": "1.29.0" + "build_number": 20230410222307, + "version_string": "1.30.1" } }, { "data": { - "checksum": "27237e4e99ad9ac791e87fbee351ef9508646877666eac8e8a7faa243f914748", - "contents_checksum": "213568c7c35f279849046e215835f0df4822a21a81ac2d213d7097b96dfe4e7b", - "size": 34129820, - "source": "components/google-cloud-sdk-minikube-darwin-x86_64-20230130152419.tar.gz", + "checksum": "ed6c4dc9b46d225373171ebc9d62d96a932b629b4acf9697d6a82c5b5990ea7c", + "contents_checksum": "618beafd3210c57672a9a2ba1059b58c31b0cec781e5012f750e9a6e4fa822fc", + "size": 34851037, + "source": "components/google-cloud-sdk-minikube-darwin-x86_64-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -6107,16 +6107,16 @@ }, "platform_required": false, "version": { - "build_number": 20230130152419, - "version_string": "1.29.0" + "build_number": 20230410222307, + "version_string": "1.30.1" } }, { "data": { - "checksum": "db8df83660a68a2aa7e5367382ac7e32e66bfee34cc00a9d92ce9ed11a5180cb", - "contents_checksum": "90c2a28e55e7481ac9d0c22cb413c8a867130a23710d45d8d78236e5c15a3f0b", - "size": 32276350, - "source": "components/google-cloud-sdk-minikube-linux-arm-20230130152419.tar.gz", + "checksum": "4c8106ae353c735dc2bcd78f3e20f71da145d742f1cfadd578d20b915a702443", + "contents_checksum": "f936ecc7e890dd76279e6d9ad3aa611044300e0e1bcce25d410daaeca7a9c31d", + "size": 32850885, + "source": "components/google-cloud-sdk-minikube-linux-arm-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -6140,16 +6140,16 @@ }, "platform_required": false, "version": { - "build_number": 20230130152419, - "version_string": "1.29.0" + "build_number": 20230410222307, + "version_string": "1.30.1" } }, { "data": { - "checksum": "29c988a8465d62ecc9fc349ccc08434d2dbe2371c135efc073bfd47478d5df04", - "contents_checksum": "a02dd25832f1694763d660d4174fe3acb81c0fbf3b6e33887107e273103ce3f0", - "size": 34747405, - "source": "components/google-cloud-sdk-minikube-linux-x86_64-20230130152419.tar.gz", + "checksum": "76dd82f9f3b33058dd0000e5746ef00002d920c8f783aaec219496d1612e89f6", + "contents_checksum": "51b92727f6f319db2b7b611e311867b20e95a164ff1703f7f40dc83aa620f29e", + "size": 35423805, + "source": "components/google-cloud-sdk-minikube-linux-x86_64-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -6173,16 +6173,16 @@ }, "platform_required": false, "version": { - "build_number": 20230130152419, - "version_string": "1.29.0" + "build_number": 20230410222307, + "version_string": "1.30.1" } }, { "data": { - "checksum": "3e52bad758b1183061f44b25d5f888b49ff28760a72e153097d88e8939dbe2eb", - "contents_checksum": "4a8e3af29021959409e6dcdab134856d19870413d5ab45fa6b4d39d86ac93e05", - "size": 34656565, - "source": "components/google-cloud-sdk-minikube-windows-x86_64-20230130152419.tar.gz", + "checksum": "c6a9264d1e47c1f2968d5688e4a1c04db1ef03e4d0814adb838d9cc41ee9d1fc", + "contents_checksum": "8cc516c4cfa46110a53031c7a9308babb52f8a844f69b1fb0f821fe4a6e6625a", + "size": 35332823, + "source": "components/google-cloud-sdk-minikube-windows-x86_64-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -6206,8 +6206,8 @@ }, "platform_required": false, "version": { - "build_number": 20230130152419, - "version_string": "1.29.0" + "build_number": 20230410222307, + "version_string": "1.30.1" } }, { @@ -6567,15 +6567,15 @@ "platform_required": false, "version": { "build_number": 0, - "version_string": "2.2.0" + "version_string": "2.3.0" } }, { "data": { - "checksum": "b9b59001689844455aa32ec96c640dba5735173af66b97ea402bae8ae027f8de", - "contents_checksum": "1791d865c984e03c4191059b725250e30d43b4e7f1c5f09770ce978f3bbde75a", - "size": 22766948, - "source": "components/google-cloud-sdk-skaffold-darwin-arm-20230310163703.tar.gz", + "checksum": "37a66708e57ae8b4eb7609896cc56c15c128b66af9f7fee44d9b9d92aaa54088", + "contents_checksum": "5df531a5b9e6fac2bec4fd7541836cbb4ff49b5937b55e5d6ca4d8e05f1770d0", + "size": 22835187, + "source": "components/google-cloud-sdk-skaffold-darwin-arm-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -6600,16 +6600,16 @@ }, "platform_required": false, "version": { - "build_number": 20230310163703, - "version_string": "2.2.0" + "build_number": 20230410222307, + "version_string": "2.3.0" } }, { "data": { - "checksum": "aafd765077e12d0cf0538e59aeaa085484cdbff9fec07141463947713448a174", - "contents_checksum": "5adffa90737720264f1c24349d96f39e2cbf2038f7d53f82365aa690360047ac", - "size": 24854301, - "source": "components/google-cloud-sdk-skaffold-darwin-x86_64-20230310163703.tar.gz", + "checksum": "37d557756347bccd89d74d44e8f6474d43d856f03e105d82ba40653dc84c41ad", + "contents_checksum": "75a9ec0576d9ed37961ed276eaf6037c8b59747f18beb2a4b6b6c022e4e79d7e", + "size": 24930459, + "source": "components/google-cloud-sdk-skaffold-darwin-x86_64-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -6634,16 +6634,16 @@ }, "platform_required": false, "version": { - "build_number": 20230310163703, - "version_string": "2.2.0" + "build_number": 20230410222307, + "version_string": "2.3.0" } }, { "data": { - "checksum": "9c99d844f0fe12b8f978cd0a3e3e559d2683204816f3c697bb5fcd98119db27a", - "contents_checksum": "60e8f9ea27e7b6069aec9c27225d78acdd18006be5f2f2375d878dd27287acfe", - "size": 20894227, - "source": "components/google-cloud-sdk-skaffold-linux-arm-20230310163703.tar.gz", + "checksum": "73b00f22c3a09f37722360e61c5e74467bce8a9a7d8317b8bde215090c164a47", + "contents_checksum": "ca80ad12d1ae70fefb70c8e6200523e7627c5746a9333841d865c8ebabafaf3c", + "size": 20964851, + "source": "components/google-cloud-sdk-skaffold-linux-arm-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -6668,16 +6668,16 @@ }, "platform_required": false, "version": { - "build_number": 20230310163703, - "version_string": "2.2.0" + "build_number": 20230410222307, + "version_string": "2.3.0" } }, { "data": { - "checksum": "bc105b801f07b7ec40fdf21a6cbda74b0296ef393499591945d52a30b7048a1b", - "contents_checksum": "4d806d68d659adca5afeda4f874ac7570b4689552da06818f70d0d4585243334", - "size": 23019290, - "source": "components/google-cloud-sdk-skaffold-linux-x86_64-20230310163703.tar.gz", + "checksum": "5cb36aa3040f04d48048eda22f9833fbfb0659623f7c255afb3e23865f875d63", + "contents_checksum": "8157e8582ca8e284605cb2ca0f33c53ebd0514332e8b8b427990b2190e21e9b6", + "size": 23084056, + "source": "components/google-cloud-sdk-skaffold-linux-x86_64-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -6702,16 +6702,16 @@ }, "platform_required": false, "version": { - "build_number": 20230310163703, - "version_string": "2.2.0" + "build_number": 20230410222307, + "version_string": "2.3.0" } }, { "data": { - "checksum": "a43c732a5a7187e5220158a5e6eab72ef5f26dffc1084a6c1ff8076c012071c3", - "contents_checksum": "27d3c2fde09d868bcceac3019b23f0b1ba149881ba34efc230280db4bacba690", - "size": 23127429, - "source": "components/google-cloud-sdk-skaffold-windows-x86_64-20230310163703.tar.gz", + "checksum": "64ca050875949ae4d11aec1d976d847497c94f48d44e4893b28645fa4d2d8552", + "contents_checksum": "8fcd773de270da033fee3be73138eeb1b4e956178536ad2c1e85141d3438b1a2", + "size": 23197474, + "source": "components/google-cloud-sdk-skaffold-windows-x86_64-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -6736,8 +6736,8 @@ }, "platform_required": false, "version": { - "build_number": 20230310163703, - "version_string": "2.2.0" + "build_number": 20230410222307, + "version_string": "2.3.0" } }, { @@ -6993,10 +6993,10 @@ }, { "data": { - "checksum": "baef1cb23fbbcb6ea59128acf39fa82d40b920b6e9e445a131026baff61b7e62", - "contents_checksum": "e45b545e37843251cc469789ade92922e370e30dcb7d558ed23218ea68bbb92f", - "size": 37458368, - "source": "components/google-cloud-sdk-tests-20230324213959.tar.gz", + "checksum": "c33a7e819bac731e0ed03586bb44f7860593685f21fc078eb24d5892415cb335", + "contents_checksum": "3c525f6eb474de59010c4abb3b932449712a6aaedda8e7b0384e3056f28a97d4", + "size": 37555440, + "source": "components/google-cloud-sdk-tests-20230410222307.tar.gz", "type": "tar" }, "dependencies": [ @@ -7013,8 +7013,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20230324213959, - "version_string": "2023.03.24" + "build_number": 20230410222307, + "version_string": "2023.04.10" } } ], @@ -7033,11 +7033,11 @@ ], "post_processing_command": "components post-process", "release_notes_url": "RELEASE_NOTES", - "revision": 20230324213959, + "revision": 20230410222307, "schema_version": { "no_update": false, "url": "https://dl.google.com/dl/cloudsdk/channels/rapid/google-cloud-sdk.tar.gz", "version": 3 }, - "version": "424.0.0" + "version": "426.0.0" } diff --git a/pkgs/tools/admin/google-cloud-sdk/data.nix b/pkgs/tools/admin/google-cloud-sdk/data.nix index e7d0e2782d1b..9d5eab65ddf8 100644 --- a/pkgs/tools/admin/google-cloud-sdk/data.nix +++ b/pkgs/tools/admin/google-cloud-sdk/data.nix @@ -1,32 +1,32 @@ # DO NOT EDIT! This file is generated automatically by update.sh { }: { - version = "424.0.0"; + version = "426.0.0"; googleCloudSdkPkgs = { x86_64-linux = { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-424.0.0-linux-x86_64.tar.gz"; - sha256 = "063bd6994c2z43s8ap47sgzw9dhvzw4m0gb2jw7jwd93dxi3kv8z"; + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-426.0.0-linux-x86_64.tar.gz"; + sha256 = "04rfabif4d6760dfsbhs3qfzinzspb5hvnp17h7f0jvl5vciz5jg"; }; x86_64-darwin = { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-424.0.0-darwin-x86_64.tar.gz"; - sha256 = "01a870vi591llsvn2a9bgcpikyylgh0arpx5s8dhvxafdlpf67mw"; + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-426.0.0-darwin-x86_64.tar.gz"; + sha256 = "02w6mls2k8kw4qyn79zzbkwp1x4lpwdaxnhv3pgb5c8cdfhmi7hw"; }; aarch64-linux = { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-424.0.0-linux-arm.tar.gz"; - sha256 = "021w871qdd2iiqmzpdmmfcybbq0hs5q1nismyp71bbrqgxfp0jk7"; + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-426.0.0-linux-arm.tar.gz"; + sha256 = "1mak6vd0asdyl7qjr59qc6m82i0bacbmvi187xgm8fmzm49nqnn2"; }; aarch64-darwin = { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-424.0.0-darwin-arm.tar.gz"; - sha256 = "0l6ig8pa19sn5jsm4p76g410704qq9ac7gclqysa3ksm5dk9p3fg"; + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-426.0.0-darwin-arm.tar.gz"; + sha256 = "16rizpxd9i8wmh120pnd7jks2c2ff4anhgpdglmfklfdd5n7bjig"; }; i686-linux = { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-424.0.0-linux-x86.tar.gz"; - sha256 = "1bvc28zmd0r942b3vk903x42d156rf26mhaml93prn2plvs3xxkg"; + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-426.0.0-linux-x86.tar.gz"; + sha256 = "19n8xc2bap473q4qp1m01irpmksgdbhx6f9jiwmsxfa0077sj2qy"; }; }; } diff --git a/pkgs/tools/admin/google-cloud-sdk/update.sh b/pkgs/tools/admin/google-cloud-sdk/update.sh index 1309ff63fc35..4a401547eb48 100755 --- a/pkgs/tools/admin/google-cloud-sdk/update.sh +++ b/pkgs/tools/admin/google-cloud-sdk/update.sh @@ -6,7 +6,7 @@ BASE_URL="$CHANNEL_URL/downloads/google-cloud-sdk" # Version of Google Cloud SDK from # https://cloud.google.com/sdk/docs/release-notes -VERSION="424.0.0" +VERSION="426.0.0" function genMainSrc() { local url="${BASE_URL}-${VERSION}-${1}-${2}.tar.gz" From 8eb15c53208cf0e1010c570d21148cfaeceaa111 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Tue, 18 Apr 2023 18:55:47 +0300 Subject: [PATCH 039/213] systemd.services.prlshprint: fix type --- nixos/modules/virtualisation/parallels-guest.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/virtualisation/parallels-guest.nix b/nixos/modules/virtualisation/parallels-guest.nix index 07a61bf208db..dba8ce02b724 100644 --- a/nixos/modules/virtualisation/parallels-guest.nix +++ b/nixos/modules/virtualisation/parallels-guest.nix @@ -87,7 +87,6 @@ in bindsTo = [ "cups.service" ]; path = [ prl-tools ]; serviceConfig = { - Type = "forking"; ExecStart = "${prl-tools}/bin/prlshprint"; WorkingDirectory = "${prl-tools}/bin"; }; From 0f6857d433fd376d357c2d67afb61072187cecce Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Fri, 14 Apr 2023 20:50:33 +0300 Subject: [PATCH 040/213] mlterm: desktopItem: update attributes to remove warnings Remove deprecated `Application` category and make `comment` different then `name`. --- pkgs/applications/terminal-emulators/mlterm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/terminal-emulators/mlterm/default.nix b/pkgs/applications/terminal-emulators/mlterm/default.nix index cc26d4eea295..20fe040a76df 100644 --- a/pkgs/applications/terminal-emulators/mlterm/default.nix +++ b/pkgs/applications/terminal-emulators/mlterm/default.nix @@ -95,10 +95,10 @@ stdenv.mkDerivation rec { exec = "mlterm %U"; icon = "mlterm"; type = "Application"; - comment = "Terminal emulator"; + comment = "Multi Lingual TERMinal emulator"; desktopName = "mlterm"; genericName = "Terminal emulator"; - categories = [ "Application" "System" "TerminalEmulator" ]; + categories = [ "System" "TerminalEmulator" ]; startupNotify = false; }; From c5a159637d0c97de30ff490e74bea8d8cea1a27a Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sat, 15 Apr 2023 01:51:15 +0300 Subject: [PATCH 041/213] mlterm: add doronbehar as maintainer --- pkgs/applications/terminal-emulators/mlterm/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/terminal-emulators/mlterm/default.nix b/pkgs/applications/terminal-emulators/mlterm/default.nix index 20fe040a76df..66148adde2d2 100644 --- a/pkgs/applications/terminal-emulators/mlterm/default.nix +++ b/pkgs/applications/terminal-emulators/mlterm/default.nix @@ -108,7 +108,7 @@ stdenv.mkDerivation rec { description = "Multi Lingual TERMinal emulator"; homepage = "https://mlterm.sourceforge.net/"; license = licenses.bsd3; - maintainers = with maintainers; [ ramkromberg atemu ]; + maintainers = with maintainers; [ ramkromberg atemu doronbehar ]; platforms = platforms.all; }; } From a4f65246a09e08246d1eee2c1fad7f537cfb4bd0 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Fri, 14 Apr 2023 20:45:58 +0300 Subject: [PATCH 042/213] mlterm: cleanup `Cocoa` unused input --- pkgs/applications/terminal-emulators/mlterm/default.nix | 1 - pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/applications/terminal-emulators/mlterm/default.nix b/pkgs/applications/terminal-emulators/mlterm/default.nix index 66148adde2d2..bc93f167e85d 100644 --- a/pkgs/applications/terminal-emulators/mlterm/default.nix +++ b/pkgs/applications/terminal-emulators/mlterm/default.nix @@ -5,7 +5,6 @@ , libssh2 #build-in ssh , fcitx5, fcitx5-gtk, ibus, uim #IME , wrapGAppsHook #color picker in mlconfig -, Cocoa #Darwin }: stdenv.mkDerivation rec { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cba86cf44d7f..b89a588ea051 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2571,9 +2571,7 @@ with pkgs; microcom = callPackage ../applications/terminal-emulators/microcom { }; - mlterm = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/mlterm { - inherit (darwin.apple_sdk_11_0.frameworks) Cocoa; - }; + mlterm = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/mlterm { }; mrxvt = callPackage ../applications/terminal-emulators/mrxvt { }; From 0628c3de9955d43684face33cbc37392d60a9a4e Mon Sep 17 00:00:00 2001 From: Mykhailo Nikiforov Date: Tue, 18 Apr 2023 22:12:05 +0300 Subject: [PATCH 043/213] tmuxPlugins.dracula: v2.0.0 -> v2.1.0 --- pkgs/misc/tmux-plugins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 374d299be48a..73e994458ee4 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -198,12 +198,12 @@ in rec { dracula = mkTmuxPlugin rec { pluginName = "dracula"; - version = "2.0.0"; + version = "2.1.0"; src = fetchFromGitHub { owner = "dracula"; repo = "tmux"; rev = "v${version}"; - sha256 = "ILs+GMltb2AYNUecFMyQZ/AuETB0PCFF2InSnptVBos="; + sha256 = "89S8LHTx2gYWj+Ejws5f6YRQgoj0rYE7ITtGtZibl30="; }; meta = with lib; { homepage = "https://draculatheme.com/tmux"; From 6f6df175b00805eed4385393f7f18ad7f07f41ce Mon Sep 17 00:00:00 2001 From: Vinny Meller Date: Tue, 18 Apr 2023 01:00:49 -0500 Subject: [PATCH 044/213] twm: 0.1.1 -> 0.4.0 --- pkgs/tools/misc/twm/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/twm/default.nix b/pkgs/tools/misc/twm/default.nix index 9109547a1d33..524f74f33182 100644 --- a/pkgs/tools/misc/twm/default.nix +++ b/pkgs/tools/misc/twm/default.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage rec { pname = "twm"; - version = "0.1.1"; + version = "0.4.0"; src = fetchFromGitHub { owner = "vinnymeller"; repo = pname; rev = "v${version}"; - sha256 = "sha256-YURzNHbmGLEqNEcc4FImIqn/KcRwGdxYXM5QzM3dxbo="; + sha256 = "sha256-CC3FlEX86mrRi+TFOoswHEaxKbvFm5fHSqbikgZdPA8="; }; - cargoHash = "sha256-sc2/eQZjY1x5KIzQ+yr8NgAMKJ6iHWwCy6fRSBp7Fw4="; + cargoHash = "sha256-TCqXoFkxwqYuztaPdtfcSVL6psYkVaafOrUT6bUd8ig="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; @@ -26,6 +26,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "A customizable workspace manager for tmux"; homepage = "https://github.com/vinnymeller/twm"; + changelog = "https://github.com/vinnymeller/twm/releases/tag/v${version}"; license = licenses.gpl2Only; maintainers = with maintainers; [ vinnymeller ]; }; From 4855a6f817aea59f6c568bc9e298c899602d17a2 Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Wed, 19 Apr 2023 10:24:02 +0200 Subject: [PATCH 045/213] unit: drop PHP 8.0 support PHP 8.0 will be end-of-life before the end of life of the next stable version of NixOS. Related to #224505. --- pkgs/servers/http/unit/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/servers/http/unit/default.nix b/pkgs/servers/http/unit/default.nix index c8178fe87a9d..1860365ce910 100644 --- a/pkgs/servers/http/unit/default.nix +++ b/pkgs/servers/http/unit/default.nix @@ -1,7 +1,6 @@ { lib, stdenv, fetchFromGitHub, nixosTests, which , pcre2 , withPython3 ? true, python3, ncurses -, withPHP80 ? false, php80 , withPHP81 ? true, php81 , withPerl534 ? false, perl534 , withPerl536 ? true, perl536 @@ -26,7 +25,6 @@ let fpmSupport = false; }; - php80-unit = php80.override phpConfig; php81-unit = php81.override phpConfig; in stdenv.mkDerivation rec { @@ -44,7 +42,6 @@ in stdenv.mkDerivation rec { buildInputs = [ pcre2.dev ] ++ optionals withPython3 [ python3 ncurses ] - ++ optional withPHP80 php80-unit ++ optional withPHP81 php81-unit ++ optional withPerl534 perl534 ++ optional withPerl536 perl536 @@ -64,12 +61,10 @@ in stdenv.mkDerivation rec { ++ optional withDebug "--debug"; # Optionally add the PHP derivations used so they can be addressed in the configs - usedPhp80 = optionals withPHP80 php80-unit; usedPhp81 = optionals withPHP81 php81-unit; postConfigure = '' ${optionalString withPython3 "./configure python --module=python3 --config=python3-config --lib-path=${python3}/lib"} - ${optionalString withPHP80 "./configure php --module=php80 --config=${php80-unit.unwrapped.dev}/bin/php-config --lib-path=${php80-unit}/lib"} ${optionalString withPHP81 "./configure php --module=php81 --config=${php81-unit.unwrapped.dev}/bin/php-config --lib-path=${php81-unit}/lib"} ${optionalString withPerl534 "./configure perl --module=perl534 --perl=${perl534}/bin/perl"} ${optionalString withPerl536 "./configure perl --module=perl536 --perl=${perl536}/bin/perl"} From 9817e6af859354ca10979fd7e47c0d94d13ec5da Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Wed, 19 Apr 2023 10:36:33 +0200 Subject: [PATCH 046/213] unit: add PHP 8.2 support --- pkgs/servers/http/unit/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/servers/http/unit/default.nix b/pkgs/servers/http/unit/default.nix index 1860365ce910..68ac3d7f2cd5 100644 --- a/pkgs/servers/http/unit/default.nix +++ b/pkgs/servers/http/unit/default.nix @@ -2,6 +2,7 @@ , pcre2 , withPython3 ? true, python3, ncurses , withPHP81 ? true, php81 +, withPHP82 ? false, php82 , withPerl534 ? false, perl534 , withPerl536 ? true, perl536 , withPerldevel ? false, perldevel @@ -26,6 +27,7 @@ let }; php81-unit = php81.override phpConfig; + php82-unit = php82.override phpConfig; in stdenv.mkDerivation rec { version = "1.29.1"; @@ -43,6 +45,7 @@ in stdenv.mkDerivation rec { buildInputs = [ pcre2.dev ] ++ optionals withPython3 [ python3 ncurses ] ++ optional withPHP81 php81-unit + ++ optional withPHP82 php82-unit ++ optional withPerl534 perl534 ++ optional withPerl536 perl536 ++ optional withPerldevel perldevel @@ -66,6 +69,7 @@ in stdenv.mkDerivation rec { postConfigure = '' ${optionalString withPython3 "./configure python --module=python3 --config=python3-config --lib-path=${python3}/lib"} ${optionalString withPHP81 "./configure php --module=php81 --config=${php81-unit.unwrapped.dev}/bin/php-config --lib-path=${php81-unit}/lib"} + ${optionalString withPHP82 "./configure php --module=php81 --config=${php82-unit.unwrapped.dev}/bin/php-config --lib-path=${php82-unit}/lib"} ${optionalString withPerl534 "./configure perl --module=perl534 --perl=${perl534}/bin/perl"} ${optionalString withPerl536 "./configure perl --module=perl536 --perl=${perl536}/bin/perl"} ${optionalString withPerldevel "./configure perl --module=perldev --perl=${perldevel}/bin/perl"} From 04aa1916154f3a2c02b01e8f1808d030b2d08bf0 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Wed, 19 Apr 2023 14:07:33 -0400 Subject: [PATCH 047/213] vmware-horizon-client: use Chroot instead of Bubblewrap When connecting, the client only shows a blank screen if run under bubblewrap --- .../networking/remote/vmware-horizon-client/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/remote/vmware-horizon-client/default.nix b/pkgs/applications/networking/remote/vmware-horizon-client/default.nix index a6cd01390b71..34f7f9b22eb9 100644 --- a/pkgs/applications/networking/remote/vmware-horizon-client/default.nix +++ b/pkgs/applications/networking/remote/vmware-horizon-client/default.nix @@ -1,6 +1,6 @@ { stdenv , lib -, buildFHSEnv +, buildFHSEnvChroot , fetchurl , gsettings-desktop-schemas , makeDesktopItem @@ -57,7 +57,7 @@ let ''; }; - vmwareFHSUserEnv = name: buildFHSEnv { + vmwareFHSUserEnv = name: buildFHSEnvChroot { inherit name; runScript = "${vmwareHorizonClientFiles}/bin/${name}_wrapper"; From 5594826e597bf5752f37bae26a9c1af0b4f12d71 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Wed, 19 Apr 2023 14:08:18 -0400 Subject: [PATCH 048/213] vmware-horizon-client: include opensc for smartcard support --- .../networking/remote/vmware-horizon-client/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/applications/networking/remote/vmware-horizon-client/default.nix b/pkgs/applications/networking/remote/vmware-horizon-client/default.nix index 34f7f9b22eb9..6b6e152efab3 100644 --- a/pkgs/applications/networking/remote/vmware-horizon-client/default.nix +++ b/pkgs/applications/networking/remote/vmware-horizon-client/default.nix @@ -5,6 +5,7 @@ , gsettings-desktop-schemas , makeDesktopItem , makeWrapper +, opensc , writeTextDir , configText ? "" }: @@ -53,6 +54,11 @@ let # This library causes the program to core-dump occasionally. Use ours instead. rm -r $out/lib/vmware/view/crtbora + # This opensc library is required to support smartcard authentication during the + # initial connection to Horizon. + mkdir $out/lib/vmware/view/pkcs11 + ln -s ${opensc}/lib/pkcs11/opensc-pkcs11.so $out/lib/vmware/view/pkcs11/libopenscpkcs11.so + ${lib.concatMapStrings wrapBinCommands bins} ''; }; From 4cbbdaa8a28a4f0eabc9a495d152b214fe999b9f Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Thu, 20 Apr 2023 04:20:00 +0000 Subject: [PATCH 049/213] twilio-cli: 5.6.0 -> 5.7.0 https://github.com/twilio/twilio-cli/releases/tag/5.7.0 --- pkgs/development/tools/twilio-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/twilio-cli/default.nix b/pkgs/development/tools/twilio-cli/default.nix index d670d2502d9b..b4ef90bae6eb 100644 --- a/pkgs/development/tools/twilio-cli/default.nix +++ b/pkgs/development/tools/twilio-cli/default.nix @@ -2,11 +2,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "twilio-cli"; - version = "5.6.0"; + version = "5.7.0"; src = fetchzip { url = "https://twilio-cli-prod.s3.amazonaws.com/twilio-v${finalAttrs.version}/twilio-v${finalAttrs.version}.tar.gz"; - sha256 = "sha256-M6UQ6P021FYQOSZ3AXfXHDgD8NLkcdhzfDin9ElXyNU="; + sha256 = "sha256-qlStCQKm+L50n3oFCuP+M4zzonmlx9gpDrGeNZ2Ex8A="; }; buildInputs = [ nodejs ]; From 430f1dcdbd362d9c37ba516edbb395570df47339 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Thu, 20 Apr 2023 11:34:54 +0200 Subject: [PATCH 050/213] nextcloud: remove nextcloud24, 25.0.5 -> 25.0.6, 26.0.0 -> 26.0.1 --- nixos/modules/services/web-apps/nextcloud.nix | 2 +- nixos/tests/nextcloud/default.nix | 2 +- pkgs/servers/nextcloud/default.nix | 23 +- pkgs/servers/nextcloud/packages/24.json | 242 ------------------ pkgs/top-level/all-packages.nix | 4 +- 5 files changed, 18 insertions(+), 255 deletions(-) delete mode 100644 pkgs/servers/nextcloud/packages/24.json diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix index 76a0172747ff..da1c4b9eae23 100644 --- a/nixos/modules/services/web-apps/nextcloud.nix +++ b/nixos/modules/services/web-apps/nextcloud.nix @@ -204,7 +204,7 @@ in { package = mkOption { type = types.package; description = lib.mdDoc "Which package to use for the Nextcloud instance."; - relatedPackages = [ "nextcloud24" "nextcloud25" "nextcloud26" ]; + relatedPackages = [ "nextcloud25" "nextcloud26" ]; }; phpPackage = mkOption { type = types.package; diff --git a/nixos/tests/nextcloud/default.nix b/nixos/tests/nextcloud/default.nix index 350486e8c733..78fe026b4a84 100644 --- a/nixos/tests/nextcloud/default.nix +++ b/nixos/tests/nextcloud/default.nix @@ -26,4 +26,4 @@ foldl }; }) { } - [ 24 25 26 ] + [ 25 26 ] diff --git a/pkgs/servers/nextcloud/default.nix b/pkgs/servers/nextcloud/default.nix index c6385d6dd744..7c22008e8dbc 100644 --- a/pkgs/servers/nextcloud/default.nix +++ b/pkgs/servers/nextcloud/default.nix @@ -39,19 +39,26 @@ let }; }; in { - nextcloud24 = generic { - version = "24.0.11"; - sha256 = "sha256-ipsg4rulhRnatEW9VwUJLvOEtX5ZiK7MXK3AU8Q9qIo="; - }; + nextcloud24 = throw '' + Nextcloud v24 has been removed from `nixpkgs` as the support for is dropped + by upstream in 2023-04. Please upgrade to at least Nextcloud v25 by declaring + + services.nextcloud.package = pkgs.nextcloud25; + + in your NixOS config. + + WARNING: if you were on Nextcloud 23 you have to upgrade to Nextcloud 24 + first on 22.11 because Nextcloud doesn't support upgrades across multiple major versions! + ''; nextcloud25 = generic { - version = "25.0.5"; - sha256 = "sha256-xtxjLYPGK9V0GvUzXcE7awzeYQZNPNmlHuDmtHeMqaU="; + version = "25.0.6"; + sha256 = "sha256-fYtO3CZ5oNpaIs+S+emMrxqYNlck0AC43fxdiomsjDg="; }; nextcloud26 = generic { - version = "26.0.0"; - sha256 = "sha256-8WMVA2Ou6TZuy1zVJZv2dW7U8HPOp4tfpRXK2noNDD0="; + version = "26.0.1"; + sha256 = "sha256-b5xqEkjXyK9K1HPXOkJWX2rautRTHFz6V7w0l7K2T0g="; }; # tip: get the sha with: diff --git a/pkgs/servers/nextcloud/packages/24.json b/pkgs/servers/nextcloud/packages/24.json deleted file mode 100644 index 83eac3d156f3..000000000000 --- a/pkgs/servers/nextcloud/packages/24.json +++ /dev/null @@ -1,242 +0,0 @@ -{ - "bookmarks": { - "sha256": "1jkbwzig4xd042jcbdbdh4whkpxb87f7ba0c89c78bdgcqzjv1a3", - "url": "https://github.com/nextcloud/bookmarks/releases/download/v11.0.4/bookmarks-11.0.4.tar.gz", - "version": "11.0.4", - "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- 🔍 Full-text search\n- 📲 Synchronize with all your browsers and devices\n- 👪 Share bookmarks with other users and publicly\n- ☠ Find broken links\n- ⚛ Generate RSS feeds of your collections\n- 📔 Read archived versions of your links in case they are depublished\n- 💬 Create new bookmarks directly from within Nextcloud Talk\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP v7.4+\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", - "homepage": "https://github.com/nextcloud/bookmarks", - "licenses": [ - "agpl" - ] - }, - "calendar": { - "sha256": "0zzq556727yryxa0zas6agm6azl1898gbjx4wnl8d8m9hczf6xr2", - "url": "https://github.com/nextcloud-releases/calendar/releases/download/v3.5.7/calendar-v3.5.7.tar.gz", - "version": "3.5.7", - "description": "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.", - "homepage": "https://github.com/nextcloud/calendar/", - "licenses": [ - "agpl" - ] - }, - "contacts": { - "sha256": "1r0z0ldywzaw7a87hlsbn1f9pxqndqpxxa6khn70yh02cjrzh03m", - "url": "https://github.com/nextcloud-releases/contacts/releases/download/v4.2.5/contacts-v4.2.5.tar.gz", - "version": "4.2.5", - "description": "The Nextcloud contacts app is a user interface for Nextcloud's CardDAV server. Easily sync contacts from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Mail and Calendar – more to come.\n* 🎉 **Never forget a birthday!** You can sync birthdays and other recurring events with your Nextcloud Calendar.\n* 👥 **Sharing of Adressbooks!** You want to share your contacts with your friends or coworkers? No problem!\n* 🙈 **We’re not reinventing the wheel!** Based on the great and open SabreDAV library.", - "homepage": "https://github.com/nextcloud/contacts#readme", - "licenses": [ - "agpl" - ] - }, - "deck": { - "sha256": "1q21vpq9fv6p9harn96fq7cn68qixw3d08s9yf25mnxzpynrwv50", - "url": "https://github.com/nextcloud-releases/deck/releases/download/v1.7.3/deck-v1.7.3.tar.gz", - "version": "1.7.3", - "description": "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized", - "homepage": "https://github.com/nextcloud/deck", - "licenses": [ - "agpl" - ] - }, - "files_markdown": { - "sha256": "1dhl83vxk6aznakmvbcx52gl8slhy6jz1vqwiv8nwfjh75aczzxy", - "url": "https://github.com/icewind1991/files_markdown/releases/download/v2.3.6/files_markdown.tar.gz", - "version": "2.3.6", - "description": "Markdown Editor extends the Nextcloud text editor with a live preview for markdown files.\n\nA full list of features can be found [in the README](https://github.com/icewind1991/files_markdown)", - "homepage": "https://github.com/icewind1991/files_markdown", - "licenses": [ - "agpl" - ] - }, - "files_texteditor": { - "sha256": "0rmk14iw34pd81snp3lm01k07wm5j2nh9spcd4j0m43l20b7kxss", - "url": "https://github.com/nextcloud-releases/files_texteditor/releases/download/v2.15.0/files_texteditor.tar.gz", - "version": "2.15.0", - "description": "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry called \"Text file\" in the \"New\" button menu at the top of the web browser appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation.", - "homepage": "https://github.com/nextcloud/files_texteditor", - "licenses": [ - "agpl" - ] - }, - "forms": { - "sha256": "1payxppd2j0n67kcswb3dkk2a467fahwakxs7wqsfqgqgr9mcbl4", - "url": "https://github.com/nextcloud/forms/releases/download/v2.5.2/forms.tar.gz", - "version": "2.5.2", - "description": "**Simple surveys and questionnaires, self-hosted!**\n\n- **📝 Simple design:** No mass of options, only the essentials. Works well on mobile of course.\n- **📊 View & export results:** Results are visualized and can also be exported as CSV in the same format used by Google Forms.\n- **🔒 Data under your control!** Unlike in Google Forms, Typeform, Doodle and others, the survey info and responses are kept private on your instance.\n- **🧑‍💻 Connect to your software:** Easily integrate Forms into your service with our full-fledged [REST-API](https://github.com/nextcloud/forms/blob/main/docs/API.md).\n- **🙋 Get involved!** We have lots of stuff planned like more question types, collaboration on forms, [and much more](https://github.com/nextcloud/forms/milestones)!", - "homepage": "https://github.com/nextcloud/forms", - "licenses": [ - "agpl" - ] - }, - "groupfolders": { - "sha256": "09lz63n9i040lndzmpm6rdlpviaa8m9skpjw98m18miamdmqbf0d", - "url": "https://github.com/nextcloud-releases/groupfolders/releases/download/v12.0.3/groupfolders-v12.0.3.tar.gz", - "version": "12.0.3", - "description": "Admin configured folders shared with everyone in a group.\n\nFolders can be configured from *Group folders* in the admin settings.\n\nAfter a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.\n\nNote: Encrypting the contents of group folders is currently not supported.", - "homepage": "https://github.com/nextcloud/groupfolders", - "licenses": [ - "agpl" - ] - }, - "impersonate": { - "sha256": "1kjibw5rigij51j6vjmx7ykrk61lg98syp7kkr0fzgwzvxrdniah", - "url": "https://github.com/nextcloud-releases/impersonate/releases/download/v1.11.1/impersonate-v1.11.1.tar.gz", - "version": "1.11.1", - "description": "By installing the impersonate app of your Nextcloud you enable administrators to impersonate other users on the Nextcloud server. This is especially useful for debugging issues reported by users.\n\nTo impersonate a user an administrator has to simply follow the following four steps:\n\n1. Login as administrator to Nextcloud.\n2. Open users administration interface.\n3. Select the impersonate button on the affected user.\n4. Confirm the impersonation.\n\nThe administrator is then logged-in as the user, to switch back to the regular user account they simply have to press the logout button.\n\n**Note:**\n\n- This app is not compatible with instances that have encryption enabled.\n- While impersonate actions are logged note that actions performed impersonated will be logged as the impersonated user.\n- Impersonating a user is only possible after their first login.", - "homepage": "https://github.com/nextcloud/impersonate", - "licenses": [ - "agpl" - ] - }, - "keeweb": { - "sha256": "19wzp588p3a87bi7ajn2r8jmsjjzzc1g8bkpwkidv66gi87gv9sr", - "url": "https://github.com/jhass/nextcloud-keeweb/releases/download/v0.6.12/keeweb-0.6.12.tar.gz", - "version": "0.6.12", - "description": "Open Keepass stores inside Nextcloud with Keeweb just by clicking on an *.kdbx file in your Nextcloud.", - "homepage": "https://github.com/jhass/nextcloud-keeweb", - "licenses": [ - "agpl" - ] - }, - "mail": { - "sha256": "1a697wf2lq596dk04acd6qpmx9immh6v8npj0kf43m31kc3hm0rs", - "url": "https://github.com/nextcloud-releases/mail/releases/download/v1.15.3/mail-v1.15.3.tar.gz", - "version": "1.15.3", - "description": "**💌 A mail app for Nextcloud**\n\n- **🚀 Integration with other Nextcloud apps!** Currently Contacts, Calendar & Files – more to come.\n- **📥 Multiple mail accounts!** Personal and company account? No problem, and a nice unified inbox. Connect any IMAP account.\n- **🔒 Send & receive encrypted mails!** Using the great [Mailvelope](https://mailvelope.com) browser extension.\n- **🙈 We’re not reinventing the wheel!** Based on the great [Horde](https://horde.org) libraries.\n- **📬 Want to host your own mail server?** We do not have to reimplement this as you could set up [Mail-in-a-Box](https://mailinabox.email)!", - "homepage": "https://github.com/nextcloud/mail#readme", - "licenses": [ - "agpl" - ] - }, - "news": { - "sha256": "1zyn6rs24f5dsb4z65dzx2mdkw8gy8n3adk9dgyyd4cjjhhixhsm", - "url": "https://github.com/nextcloud/news/releases/download/21.2.0-beta3/news.tar.gz", - "version": "21.2.0-beta3", - "description": "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)", - "homepage": "https://github.com/nextcloud/news", - "licenses": [ - "agpl" - ] - }, - "notes": { - "sha256": "0b88xsznfi31la7iyj4b7j1qlb8wvrmq49z9dgdrwja3r81mxnsr", - "url": "https://github.com/nextcloud/notes/releases/download/v4.5.1/notes.tar.gz", - "version": "4.5.1", - "description": "The Notes app is a distraction free notes taking app for [Nextcloud](https://www.nextcloud.com/). It provides categories for better organization and supports formatting using [Markdown](https://en.wikipedia.org/wiki/Markdown) syntax. Notes are saved as files in your Nextcloud, so you can view and edit them with every Nextcloud client. Furthermore, a separate [REST API](https://github.com/nextcloud/notes/blob/master/docs/api/README.md) allows for an easy integration into third-party apps (currently, there are notes apps for [Android](https://github.com/nextcloud/notes-android), [iOS](https://github.com/nextcloud/notes-ios) and the [console](https://git.danielmoch.com/nncli/about) which allow convenient access to your Nextcloud notes). Further features include marking notes as favorites.", - "homepage": "https://github.com/nextcloud/notes", - "licenses": [ - "agpl" - ] - }, - "notify_push": { - "sha256": "1fz6wi5nb4c2w33vp9ry2mk4lmv7aa3axyfxzldf5w4glfzaymzw", - "url": "https://github.com/nextcloud-releases/notify_push/releases/download/v0.6.2/notify_push-v0.6.2.tar.gz", - "version": "0.6.2", - "description": "Push update support for desktop app.\n\nOnce the app is installed, the push binary needs to be setup. You can either use the setup wizard with `occ notify_push:setup` or see the [README](http://github.com/nextcloud/notify_push) for detailed setup instructions", - "homepage": "", - "licenses": [ - "agpl" - ] - }, - "onlyoffice": { - "sha256": "0hscbm7jcnxyg7ib0g16b0sw8nz7rl6qzx90qmki5knhzrf6hf1j", - "url": "https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v7.7.0/onlyoffice.tar.gz", - "version": "7.7.0", - "description": "ONLYOFFICE connector allows you to view, edit and collaborate on text documents, spreadsheets and presentations within Nextcloud using ONLYOFFICE Docs. This will create a new Edit in ONLYOFFICE action within the document library for Office documents. This allows multiple users to co-author documents in real time from the familiar web interface and save the changes back to your file storage.", - "homepage": "https://www.onlyoffice.com", - "licenses": [ - "apache" - ] - }, - "polls": { - "sha256": "0qdm0hnljkv0df1s929awyjj1gsp3d6xv9llr52cxv66kkfx086y", - "url": "https://github.com/nextcloud/polls/releases/download/v3.8.4/polls.tar.gz", - "version": "3.8.4", - "description": "A polls app, similar to Doodle/Dudle with the possibility to restrict access (members, certain groups/users, hidden and public).", - "homepage": "https://github.com/nextcloud/polls", - "licenses": [ - "agpl" - ] - }, - "previewgenerator": { - "sha256": "0vwlx3z80i12f9hm0qrm014a0wybjk2j5is7vyn9wcizhr6mpzjv", - "url": "https://github.com/nextcloud-releases/previewgenerator/releases/download/v5.2.2/previewgenerator-v5.2.2.tar.gz", - "version": "5.2.2", - "description": "The Preview Generator app allows admins to pre-generate previews. The app listens to edit events and stores this information. Once a cron job is triggered it will generate start preview generation. This means that you can better utilize your system by pre-generating previews when your system is normally idle and thus putting less load on your machine when the requests are actually served.\n\nThe app does not replace on demand preview generation so if a preview is requested before it is pre-generated it will still be shown.\nThe first time you install this app, before using a cron job, you properly want to generate all previews via:\n**./occ preview:generate-all -vvv**\n\n**Important**: To enable pre-generation of previews you must add **php /var/www/nextcloud/occ preview:pre-generate** to a system cron job that runs at times of your choosing.", - "homepage": "https://github.com/nextcloud/previewgenerator", - "licenses": [ - "agpl" - ] - }, - "registration": { - "sha256": "0m45limwsk8a86fqjxj2w1753hd2vc5icpv0wcbwrlr0mxxdc46f", - "url": "https://github.com/nextcloud-releases/registration/releases/download/v1.5.0/registration-v1.5.0.tar.gz", - "version": "1.5.0", - "description": "User registration\n\nThis app allows users to register a new account.\n\n# Features\n\n- Add users to a given group\n- Allow-list with email domains (including wildcard) to register with\n- Administrator will be notified via email for new user creation or require approval\n- Supports Nextcloud's Client Login Flow v1 and v2 - allowing registration in the mobile Apps and Desktop clients\n\n# Web form registration flow\n\n1. User enters their email address\n2. Verification link is sent to the email address\n3. User clicks on the verification link\n4. User is lead to a form where they can choose their username and password\n5. New account is created and is logged in automatically", - "homepage": "https://github.com/nextcloud/registration", - "licenses": [ - "agpl" - ] - }, - "spreed": { - "sha256": "1r2n312kxx6ymlwrvqsj230x4zsg6im4xrss04zagiflvfljr5da", - "url": "https://github.com/nextcloud-releases/spreed/releases/download/v14.0.10/spreed-v14.0.10.tar.gz", - "version": "14.0.10", - "description": "Chat, video & audio-conferencing using WebRTC\n\n* 💬 **Chat integration!** Nextcloud Talk comes with a simple text chat. Allowing you to share files from your Nextcloud and mentioning other participants.\n* 👥 **Private, group, public and password protected calls!** Just invite somebody, a whole group or send a public link to invite to a call.\n* 💻 **Screen sharing!** Share your screen with participants of your call. You just need to use Firefox version 66 (or newer), latest Edge or Chrome 72 (or newer, also possible using Chrome 49 with this [Chrome extension](https://chrome.google.com/webstore/detail/screensharing-for-nextclo/kepnpjhambipllfmgmbapncekcmabkol)).\n* 🚀 **Integration with other Nextcloud apps** like Files, Contacts and Deck. More to come.\n\nAnd in the works for the [coming versions](https://github.com/nextcloud/spreed/milestones/):\n* ✋ [Federated calls](https://github.com/nextcloud/spreed/issues/21), to call people on other Nextclouds", - "homepage": "https://github.com/nextcloud/spreed", - "licenses": [ - "agpl" - ] - }, - "tasks": { - "sha256": "0jm13d6nm7cfsw27yfiq1il9xjlh0qrq8xby2yz9dmggn7lk1dx5", - "url": "https://github.com/nextcloud/tasks/releases/download/v0.14.5/tasks.tar.gz", - "version": "0.14.5", - "description": "Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client: Thunderbird, Evolution, KDE Kontact, iCal … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar.", - "homepage": "https://github.com/nextcloud/tasks/", - "licenses": [ - "agpl" - ] - }, - "twofactor_nextcloud_notification": { - "sha256": "1zdx7khsa22k6g9zhcxrgr1mykl16064z0scr5jbgq5ms3hh2q9w", - "url": "https://github.com/nextcloud-releases/twofactor_nextcloud_notification/releases/download/v3.4.0/twofactor_nextcloud_notification-v3.4.0.tar.gz", - "version": "3.4.0", - "description": "Allows using any of your logged in devices as second factor", - "homepage": "https://github.com/nextcloud/twofactor_nextcloud_notification", - "licenses": [ - "agpl" - ] - }, - "twofactor_totp": { - "sha256": "189cwq78dqanqxhsl69dahdkh230zhz2r285lvf0b7pg0sxcs0yc", - "url": "https://github.com/nextcloud-releases/twofactor_totp/releases/download/v6.4.1/twofactor_totp-v6.4.1.tar.gz", - "version": "6.4.1", - "description": "A Two-Factor-Auth Provider for TOTP (RFC 6238)", - "homepage": "https://github.com/nextcloud/twofactor_totp#readme", - "licenses": [ - "agpl" - ] - }, - "twofactor_webauthn": { - "sha256": "10f6dm9cxljicmfk9l4ncg6r7c1jy1pvm0b5kvz35q9jgniq0hcs", - "url": "https://github.com/nextcloud-releases/twofactor_webauthn/releases/download/v0.3.3/twofactor_webauthn-v0.3.3.tar.gz", - "version": "0.3.3", - "description": "A two-factor provider for WebAuthn devices", - "homepage": "https://github.com/nextcloud/twofactor_webauthn#readme", - "licenses": [ - "agpl" - ] - }, - "unsplash": { - "sha256": "1xlqpzry2qq0msrq8alg0mywlhjh09m3z5glh4rgwmh3p5b0777c", - "url": "https://github.com/nextcloud/unsplash/releases/download/v2.0.1/unsplash.tar.gz", - "version": "2.0.1", - "description": "Show a new random featured nature photo in your nextcloud. Now with choosable motives!", - "homepage": "https://github.com/nextcloud/unsplash/", - "licenses": [ - "agpl" - ] - } -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 93290034e458..f8e53aa3e23b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10260,9 +10260,7 @@ with pkgs; inherit (callPackage ../servers/nextcloud {}) nextcloud24 nextcloud25 nextcloud26; - nextcloud24Packages = ( callPackage ../servers/nextcloud/packages { - apps = lib.importJSON ../servers/nextcloud/packages/24.json; - }); + nextcloud24Packages = throw "Nextcloud24 is EOL!"; nextcloud25Packages = ( callPackage ../servers/nextcloud/packages { apps = lib.importJSON ../servers/nextcloud/packages/25.json; }); From 0abc5bcc7ed8db1ef23165c6ade0d65858b415cf Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Thu, 20 Apr 2023 12:10:37 +0200 Subject: [PATCH 051/213] nixos/nextcloud: for nc26 it's not necessary anymore to set `enableBrokenCiphersForSSE` to `false` --- nixos/modules/services/web-apps/nextcloud.md | 4 +++- nixos/modules/services/web-apps/nextcloud.nix | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/nextcloud.md b/nixos/modules/services/web-apps/nextcloud.md index 7ef3cca281f9..15c1f2da2724 100644 --- a/nixos/modules/services/web-apps/nextcloud.md +++ b/nixos/modules/services/web-apps/nextcloud.md @@ -132,7 +132,9 @@ Auto updates for Nextcloud apps can be enabled using Nextcloud supports [server-side encryption (SSE)](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/encryption_configuration.html). This is not an end-to-end encryption, but can be used to encrypt files that will be persisted to external storage such as S3. Please note that this won't work anymore when using OpenSSL 3 - for PHP's openssl extension because this is implemented using the legacy cipher RC4. + for PHP's openssl extension and **Nextcloud 25 or older** because this is implemented using the + legacy cipher RC4. For Nextcloud26 this isn't relevant anymore, because Nextcloud has an RC4 implementation + written in native PHP and thus doesn't need `ext-openssl` for that anymore. If [](#opt-system.stateVersion) is *above* `22.05`, this is disabled by default. To turn it on again and for further information please refer to [](#opt-services.nextcloud.enableBrokenCiphersForSSE). diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix index da1c4b9eae23..2824b7ee2456 100644 --- a/nixos/modules/services/web-apps/nextcloud.nix +++ b/nixos/modules/services/web-apps/nextcloud.nix @@ -712,6 +712,10 @@ in { See on how to achieve this. For more context, here is the implementing pull request: https://github.com/NixOS/nixpkgs/pull/198470 + '') + ++ (optional (cfg.enableBrokenCiphersForSSE && versionAtLeast cfg.package.version "26") '' + Nextcloud26 supports RC4 without requiring legacy OpenSSL, so + `services.nextcloud.enableBrokenCiphersForSSE` can be set to `false`. ''); services.nextcloud.package = with pkgs; From 75eb0a3f6f7a1cc89aad5ee0a6616cbb912b770c Mon Sep 17 00:00:00 2001 From: SamLukeYes Date: Thu, 20 Apr 2023 18:27:52 +0800 Subject: [PATCH 052/213] qq: add missing dependencies --- .../instant-messengers/qq/default.nix | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/qq/default.nix b/pkgs/applications/networking/instant-messengers/qq/default.nix index 32d34787d657..9f037845def6 100644 --- a/pkgs/applications/networking/instant-messengers/qq/default.nix +++ b/pkgs/applications/networking/instant-messengers/qq/default.nix @@ -6,6 +6,7 @@ , glib , gtk3 , lib +, libappindicator , libdrm , libgcrypt , libkrb5 @@ -14,6 +15,7 @@ , xorg , systemd , stdenv +, vips , at-spi2-core , autoPatchelfHook , wrapGAppsHook @@ -49,18 +51,20 @@ stdenv.mkDerivation { alsa-lib at-spi2-core cups - gtk3 glib + gtk3 libdrm libgcrypt libkrb5 mesa nss + vips xorg.libXdamage ]; - runtimeDependencies = [ - (lib.getLib systemd) + runtimeDependencies = map lib.getLib [ + libappindicator + systemd ]; installPhase = '' @@ -74,9 +78,16 @@ stdenv.mkDerivation { --replace "/usr/share" "$out/share" ln -s $out/opt/QQ/qq $out/bin/qq + # Remove bundled libraries + rm -r $out/opt/QQ/resources/app/sharp-lib + runHook postInstall ''; + preFixup = '' + gappsWrapperArgs+=(--prefix PATH : "${lib.makeBinPath [ gjs ]}") + ''; + meta = with lib; { homepage = "https://im.qq.com/linuxqq/"; description = "Messaging app"; From 9df4441b52279528fe73c7e73a7e8ca45fe65a9d Mon Sep 17 00:00:00 2001 From: misuzu Date: Thu, 20 Apr 2023 13:33:04 +0300 Subject: [PATCH 053/213] netbird: format using nixpkgs-fmt --- pkgs/tools/networking/netbird/default.nix | 72 ++++++++++++++--------- 1 file changed, 44 insertions(+), 28 deletions(-) diff --git a/pkgs/tools/networking/netbird/default.nix b/pkgs/tools/networking/netbird/default.nix index 0323c8e6f855..eaa905939c06 100644 --- a/pkgs/tools/networking/netbird/default.nix +++ b/pkgs/tools/networking/netbird/default.nix @@ -1,16 +1,31 @@ -{ stdenv, lib, nixosTests, buildGoModule, fetchFromGitHub, installShellFiles +{ stdenv +, lib +, nixosTests +, buildGoModule +, fetchFromGitHub +, installShellFiles , pkg-config -, gtk3, libayatana-appindicator, libX11, libXcursor, libXxf86vm -, Cocoa, IOKit, Kernel, UserNotifications, WebKit -, ui ? false }: +, gtk3 +, libayatana-appindicator +, libX11 +, libXcursor +, libXxf86vm +, Cocoa +, IOKit +, Kernel +, UserNotifications +, WebKit +, ui ? false +}: let - modules = if ui then { - "client/ui" = "netbird-ui"; - } else { - client = "netbird"; - management = "netbird-mgmt"; - signal = "netbird-signal"; - }; + modules = + if ui then { + "client/ui" = "netbird-ui"; + } else { + client = "netbird"; + management = "netbird-mgmt"; + signal = "netbird-signal"; + }; in buildGoModule rec { pname = "netbird"; @@ -61,25 +76,26 @@ buildGoModule rec { --replace 'unix:///var/run/netbird.sock' 'unix:///var/run/netbird/sock' ''; - postInstall = lib.concatStringsSep "\n" (lib.mapAttrsToList - (module: binary: '' - mv $out/bin/${lib.last (lib.splitString "/" module)} $out/bin/${binary} - '' + lib.optionalString (!ui) '' - installShellCompletion --cmd ${binary} \ - --bash <($out/bin/${binary} completion bash) \ - --fish <($out/bin/${binary} completion fish) \ - --zsh <($out/bin/${binary} completion zsh) - '') - modules) + lib.optionalString (stdenv.isLinux && ui) '' - mkdir -p $out/share/pixmaps - cp $src/client/ui/disconnected.png $out/share/pixmaps/netbird.png + postInstall = lib.concatStringsSep "\n" + (lib.mapAttrsToList + (module: binary: '' + mv $out/bin/${lib.last (lib.splitString "/" module)} $out/bin/${binary} + '' + lib.optionalString (!ui) '' + installShellCompletion --cmd ${binary} \ + --bash <($out/bin/${binary} completion bash) \ + --fish <($out/bin/${binary} completion fish) \ + --zsh <($out/bin/${binary} completion zsh) + '') + modules) + lib.optionalString (stdenv.isLinux && ui) '' + mkdir -p $out/share/pixmaps + cp $src/client/ui/disconnected.png $out/share/pixmaps/netbird.png - mkdir -p $out/share/applications - cp $src/client/ui/netbird.desktop $out/share/applications/netbird.desktop + mkdir -p $out/share/applications + cp $src/client/ui/netbird.desktop $out/share/applications/netbird.desktop - substituteInPlace $out/share/applications/netbird.desktop \ - --replace "Exec=/usr/bin/netbird-ui" "Exec=$out/bin/netbird-ui" - ''; + substituteInPlace $out/share/applications/netbird.desktop \ + --replace "Exec=/usr/bin/netbird-ui" "Exec=$out/bin/netbird-ui" + ''; passthru.tests.netbird = nixosTests.netbird; From 8374a081bf4382c80dfd92a179031f06c7561543 Mon Sep 17 00:00:00 2001 From: holyparzival Date: Thu, 20 Apr 2023 15:34:20 +0500 Subject: [PATCH 054/213] mpvScripts.mpvacious: 0.20 -> 0.23 --- pkgs/applications/video/mpv/scripts/mpvacious.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/mpv/scripts/mpvacious.nix b/pkgs/applications/video/mpv/scripts/mpvacious.nix index af033781ac2c..2ba2b80cbdcb 100644 --- a/pkgs/applications/video/mpv/scripts/mpvacious.nix +++ b/pkgs/applications/video/mpv/scripts/mpvacious.nix @@ -8,13 +8,13 @@ stdenvNoCC.mkDerivation rec { pname = "mpvacious"; - version = "0.20"; + version = "0.23"; src = fetchFromGitHub { owner = "Ajatt-Tools"; repo = "mpvacious"; rev = "v${version}"; - sha256 = "sha256-9Lf7MVaJ5eC5Gb1PdGBvtENU8AAVq2jsUkY3wJfztt8="; + sha256 = "sha256-b0JUT5Y0u/H9p5whuFTU8EgQnKzFCUR2HA9NO+mxe04="; }; postPatch = '' From 85462bc753027824c288f90a30cf621088740a0a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 10:38:05 +0000 Subject: [PATCH 055/213] minio: 2023-03-24T21-41-23Z -> 2023-04-13T03-08-07Z --- pkgs/servers/minio/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/minio/default.nix b/pkgs/servers/minio/default.nix index e03bd667117e..9d1526103761 100644 --- a/pkgs/servers/minio/default.nix +++ b/pkgs/servers/minio/default.nix @@ -15,16 +15,16 @@ let in buildGoModule rec { pname = "minio"; - version = "2023-03-24T21-41-23Z"; + version = "2023-04-13T03-08-07Z"; src = fetchFromGitHub { owner = "minio"; repo = "minio"; rev = "RELEASE.${version}"; - sha256 = "sha256-n42At76bE0LQUiGeW4a9KeVcqVJ+pD9t2WGlUbwZ0Tg="; + sha256 = "sha256-hwNIQO2ZVPs/pw4AiuXMYF6IH/OeXUZ9NMxIWropXVk="; }; - vendorHash = "sha256-OFHifFSsyKIpiffxgVxF538AFBUrJrrcwkqkYyArY7o="; + vendorHash = "sha256-ZBGrZjqrfcF8EYbJwlnpUsV1nOWYmserVV1PXBMkagg="; doCheck = false; From 3288cbdd097da51b371e6d6d1cabe72644d69c9a Mon Sep 17 00:00:00 2001 From: misuzu Date: Thu, 20 Apr 2023 13:33:25 +0300 Subject: [PATCH 056/213] netbird: 0.14.6 -> 0.16.0 Also add updateScript --- pkgs/tools/networking/netbird/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/netbird/default.nix b/pkgs/tools/networking/netbird/default.nix index eaa905939c06..93ce3a08308a 100644 --- a/pkgs/tools/networking/netbird/default.nix +++ b/pkgs/tools/networking/netbird/default.nix @@ -1,6 +1,7 @@ { stdenv , lib , nixosTests +, nix-update-script , buildGoModule , fetchFromGitHub , installShellFiles @@ -29,16 +30,16 @@ let in buildGoModule rec { pname = "netbird"; - version = "0.14.6"; + version = "0.16.0"; src = fetchFromGitHub { owner = "netbirdio"; repo = pname; rev = "v${version}"; - sha256 = "sha256-S11PshEVwOYPb8RGs5joC3Cr8CNKAenK6JRd/oV4LNQ="; + sha256 = "sha256-HtkMwy+8Af69vOz9VYMozOzW/W7CFSXlWR0vLlmYCeY="; }; - vendorHash = "sha256-RyTfEZPwr2CNb9M8vGmo4gtbqQDh2KWApyz2Yx6qPmk="; + vendorHash = "sha256-lag/usfAvpZhWeVe1wB3SJJsTCLcBeh04RvkE803OqQ="; nativeBuildInputs = [ installShellFiles ] ++ lib.optional ui pkg-config; @@ -61,7 +62,7 @@ buildGoModule rec { ldflags = [ "-s" "-w" - "-X github.com/netbirdio/netbird/client/system.version=${version}" + "-X github.com/netbirdio/netbird/version.version=${version}" "-X main.builtBy=nix" ]; @@ -97,7 +98,10 @@ buildGoModule rec { --replace "Exec=/usr/bin/netbird-ui" "Exec=$out/bin/netbird-ui" ''; - passthru.tests.netbird = nixosTests.netbird; + passthru = { + tests.netbird = nixosTests.netbird; + updateScript = nix-update-script { }; + }; meta = with lib; { homepage = "https://netbird.io"; From 26ff9ddecaa2dd7419a438df4a46a27eb484d4be Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Thu, 20 Apr 2023 13:03:14 +0200 Subject: [PATCH 057/213] gscan2pdf: disable failing test Signed-off-by: Florian Brandes --- pkgs/applications/graphics/gscan2pdf/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/applications/graphics/gscan2pdf/default.nix b/pkgs/applications/graphics/gscan2pdf/default.nix index d3323a827cec..78f25a0df3ad 100644 --- a/pkgs/applications/graphics/gscan2pdf/default.nix +++ b/pkgs/applications/graphics/gscan2pdf/default.nix @@ -130,6 +130,12 @@ perlPackages.buildPerlPackage rec { # Non-zero wait status: 139 rm t/0601_Dialog_Scan.t + # Disable a test which failed due to convert returning an exit value of 1 + # convert: negative or zero image size `/build/KL5kTVnNCi/YfgegFM53e.pnm' @ error/resize.c/ResizeImage/3743. + # *** unhandled exception in callback: + # *** "convert" unexpectedly returned exit value 1 at t/357_unpaper_rtl.t line 63. + rm t/357_unpaper_rtl.t + xvfb-run -s '-screen 0 800x600x24' \ make test ''; From d5bb5259e4ea86ab1e472dc4d1bcf897d0f6fba8 Mon Sep 17 00:00:00 2001 From: misuzu Date: Thu, 20 Apr 2023 13:55:09 +0300 Subject: [PATCH 058/213] nixos/netbird: allow configuring dns --- nixos/modules/services/networking/netbird.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/netbird.nix b/nixos/modules/services/networking/netbird.nix index 5bd9e9ca6169..647c0ce3e6d1 100644 --- a/nixos/modules/services/networking/netbird.nix +++ b/nixos/modules/services/networking/netbird.nix @@ -41,9 +41,10 @@ in { documentation = [ "https://netbird.io/docs/" ]; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; + path = with pkgs; [ + openresolv + ]; serviceConfig = { - AmbientCapabilities = [ "CAP_NET_ADMIN" ]; - DynamicUser = true; Environment = [ "NB_CONFIG=/var/lib/netbird/config.json" "NB_LOG_FILE=console" From 85a74ff0162289aae25101fe31a49acc93b76ea0 Mon Sep 17 00:00:00 2001 From: Michael Adler Date: Thu, 20 Apr 2023 09:43:59 +0200 Subject: [PATCH 059/213] ungoogled-chromium: 112.0.5615.121 -> 112.0.5615.165 --- .../networking/browsers/chromium/upstream-info.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 7d2dc69d236d..53531b1335cb 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -45,9 +45,9 @@ } }, "ungoogled-chromium": { - "version": "112.0.5615.121", - "sha256": "1qbsgcsw3jgy9b76i8ypiq91fkm9zy1hy77l52w2xbw53ghjfwlw", - "sha256bin64": "1zh674vpczs1nyzbijpcgs2j2r0hdgp7bkwyn5l8w1hcj6az6k3n", + "version": "112.0.5615.165", + "sha256": "1zbrgkzcb211y1mvi9g35421dnp5bskkczwnpygzja7lm7z6530n", + "sha256bin64": "16da3zi0qy2nc92jf90zvncss3xk9ggiys3ld9j0ghbsrs1jxbvm", "deps": { "gn": { "version": "2023-02-17", @@ -56,8 +56,8 @@ "sha256": "075p4jwk1apvwmqmvhwfw5f669ci7nxwjq9mz5aa2g5lz4fkdm4c" }, "ungoogled-patches": { - "rev": "112.0.5615.121-1", - "sha256": "1zdk0sn84sj5zwcjjxikm0sc8mfpw0gri6w1fmpcbwyqawwjmi4f" + "rev": "112.0.5615.165-1", + "sha256": "1q2870z4k2hkn3jh24xc0xiadd1sxc4apn1jz740yzlwsi6jmcgw" } } } From 4c74dfe77477deb2715d764d635f9801e620a80b Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 20 Apr 2023 14:12:43 +0200 Subject: [PATCH 060/213] evcc: 0.116.2 -> 0.116.3 https://github.com/evcc-io/evcc/releases/tag/0.116.3 --- pkgs/servers/home-automation/evcc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/home-automation/evcc/default.nix b/pkgs/servers/home-automation/evcc/default.nix index 9ba9a904a987..dcbf21fffe6f 100644 --- a/pkgs/servers/home-automation/evcc/default.nix +++ b/pkgs/servers/home-automation/evcc/default.nix @@ -16,16 +16,16 @@ buildGo120Module rec { pname = "evcc"; - version = "0.116.2"; + version = "0.116.3"; src = fetchFromGitHub { owner = "evcc-io"; repo = pname; rev = version; - hash = "sha256-SZwfXoIJRdkr0jQSizmXGOWZYteqa2IWrJNSTOQ3OQ8="; + hash = "sha256-w4AExQmItvSbUSGBOnoyP4rGnEYsyFUU9Y+lF+0xGVc="; }; - vendorHash = "sha256-V0etgtYoU5a6OexoHmy4rKv2J9qvNlT57utJp1Nxyas="; + vendorHash = "sha256-lu6/tRf9o0n13lVsT9OBxc6Ytz3IVEE16vLZ+pZ4Czk="; npmDeps = fetchNpmDeps { inherit src; From 99b4bedef83d05269215ad28ac2cd416fb0cd993 Mon Sep 17 00:00:00 2001 From: Philipp Arras Date: Thu, 20 Apr 2023 14:14:59 +0200 Subject: [PATCH 061/213] python3Packages.ducc0: 0.29.0 -> 0.30.0 --- pkgs/development/python-modules/ducc0/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ducc0/default.nix b/pkgs/development/python-modules/ducc0/default.nix index 3c2cdcd0eaa9..491e274bf798 100644 --- a/pkgs/development/python-modules/ducc0/default.nix +++ b/pkgs/development/python-modules/ducc0/default.nix @@ -2,7 +2,7 @@ buildPythonPackage rec { pname = "ducc0"; - version = "0.29.0"; + version = "0.30.0"; disabled = pythonOlder "3.7"; @@ -11,7 +11,7 @@ buildPythonPackage rec { owner = "mtr"; repo = "ducc"; rev = "ducc0_${lib.replaceStrings ["."] ["_"] version}"; - hash = "sha256-lI0h1dn+7qY6I4FWn7wFFu1mlqIILTX4wD8YjLzFt9c="; + hash = "sha256-xYjgJGtWl9AjnzlFvdj/0chnIUDmoH85AtKXsNBwWUU="; }; buildInputs = [ pybind11 ]; From 5d903cae06958d8bf8cee04430cb69047ffed198 Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Thu, 20 Apr 2023 14:46:38 +0200 Subject: [PATCH 062/213] hwloc: 2.9.0 -> 2.9.1 --- pkgs/development/libraries/hwloc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/hwloc/default.nix b/pkgs/development/libraries/hwloc/default.nix index 426f87047cd6..028504bb6996 100644 --- a/pkgs/development/libraries/hwloc/default.nix +++ b/pkgs/development/libraries/hwloc/default.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation rec { pname = "hwloc"; - version = "2.9.0"; + version = "2.9.1"; src = fetchurl { url = "https://www.open-mpi.org/software/hwloc/v${lib.versions.majorMinor version}/downloads/hwloc-${version}.tar.bz2"; - sha256 = "sha256-IHDpY1lqJCG5r47KQ73sET7hEHqvfMtHXU03Z6iFaIc="; + sha256 = "sha256-fMSTGiD+9Ffgkzrz83W+bq+ncD/eIeE3v7loWxQJWZ4="; }; configureFlags = [ From 0a2d0991316db415f26bdde1d6fa8728bb90d48e Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Thu, 20 Apr 2023 14:08:59 +0100 Subject: [PATCH 063/213] wdisplays: fix icon in desktop file --- pkgs/tools/graphics/wdisplays/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/graphics/wdisplays/default.nix b/pkgs/tools/graphics/wdisplays/default.nix index a0803ff2132a..b05aa13ea601 100644 --- a/pkgs/tools/graphics/wdisplays/default.nix +++ b/pkgs/tools/graphics/wdisplays/default.nix @@ -15,6 +15,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-cOF3+T34zPro58maWUouGG+vlLm2C5NfcH7PZhSvApE="; }; + patchPhase = '' + substituteInPlace ./resources/wdisplays.desktop.in --replace "@app_id@" "wdisplays" + ''; + meta = with lib; { description = "A graphical application for configuring displays in Wayland compositors"; homepage = "https://github.com/luispabon/wdisplays"; From f03ace2716f5bf8853c84d238efe245dec8c5424 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 15:27:48 +0000 Subject: [PATCH 064/213] minio-client: 2023-03-23T20-03-04Z -> 2023-04-12T02-21-51Z --- pkgs/tools/networking/minio-client/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/minio-client/default.nix b/pkgs/tools/networking/minio-client/default.nix index 8f22faf27110..64649670fb31 100644 --- a/pkgs/tools/networking/minio-client/default.nix +++ b/pkgs/tools/networking/minio-client/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "minio-client"; - version = "2023-03-23T20-03-04Z"; + version = "2023-04-12T02-21-51Z"; src = fetchFromGitHub { owner = "minio"; repo = "mc"; rev = "RELEASE.${version}"; - sha256 = "sha256-wiYgLtFemdB7Cc/hJDvBbjvxH4I9QQkOIdyyPzWO8w0="; + sha256 = "sha256-jNgReeR4KNzB1LKbiAOLWiYeJJ61qgf3J9nMy97FVGU="; }; - vendorHash = "sha256-VtBrxsfi2CUGzXSiHKLvr3Iw1myWyf3uPEQEZahjDhw="; + vendorHash = "sha256-d8cC/exdM7OMGE24bN00BVE3jqE1tj6727JiON/aJkc="; subPackages = [ "." ]; From ef3aae1a63fe8905f18a5360cdee3e1da3a0fa95 Mon Sep 17 00:00:00 2001 From: Stef Dunlap Date: Thu, 20 Apr 2023 12:34:54 -0400 Subject: [PATCH 065/213] opera: add kindrowboat (myself) as maintainer --- pkgs/applications/networking/browsers/opera/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/browsers/opera/default.nix b/pkgs/applications/networking/browsers/opera/default.nix index 99ec447b6db7..be8a180b326f 100644 --- a/pkgs/applications/networking/browsers/opera/default.nix +++ b/pkgs/applications/networking/browsers/opera/default.nix @@ -137,5 +137,6 @@ stdenv.mkDerivation rec { platforms = [ "x86_64-linux" ]; license = licenses.unfree; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ kindrowboat ]; }; } From 8093c0935e9f3398a75188dda46f19a571babe2c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 18:09:49 +0000 Subject: [PATCH 066/213] k6: 0.42.0 -> 0.43.1 --- pkgs/development/tools/k6/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/k6/default.nix b/pkgs/development/tools/k6/default.nix index 82255b249ec7..f73d1dfdcaf4 100644 --- a/pkgs/development/tools/k6/default.nix +++ b/pkgs/development/tools/k6/default.nix @@ -2,18 +2,18 @@ buildGoModule rec { pname = "k6"; - version = "0.42.0"; + version = "0.43.1"; src = fetchFromGitHub { owner = "grafana"; repo = pname; rev = "v${version}"; - sha256 = "sha256-DlB1oTE5RkxSyNupZ2U+dmr7qNPq8xJU3R0pAjm5EFQ="; + sha256 = "sha256-JiXVDdCbXCsOSgYXIjJwXcgsbFPPoF/bY4nftaSgtdM="; }; subPackages = [ "./" ]; - vendorSha256 = null; + vendorHash = null; nativeBuildInputs = [ installShellFiles ]; From dbc701160d704126dc8b58bda09d8049acea570b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 18:18:15 +0000 Subject: [PATCH 067/213] libsolv: 0.7.23 -> 0.7.24 --- pkgs/development/libraries/libsolv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libsolv/default.nix b/pkgs/development/libraries/libsolv/default.nix index 99e1a35a80e4..2e5eccf5263b 100644 --- a/pkgs/development/libraries/libsolv/default.nix +++ b/pkgs/development/libraries/libsolv/default.nix @@ -6,14 +6,14 @@ }: stdenv.mkDerivation rec { - version = "0.7.23"; + version = "0.7.24"; pname = "libsolv"; src = fetchFromGitHub { owner = "openSUSE"; repo = "libsolv"; rev = version; - sha256 = "sha256-i1g4arr8rII9SzdyITD6xS9CAVN6zP73gFwnZdkc5os="; + sha256 = "sha256-UTVnGJO/9mQF9RwK75hh6IkoP1MwAlFaLCtdYU8uS34="; }; cmakeFlags = [ From 98a12d5f897f1ab63294cc66054c02c97d3da3d9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 18:41:59 +0000 Subject: [PATCH 068/213] jags: 4.3.1 -> 4.3.2 --- pkgs/applications/science/math/jags/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/math/jags/default.nix b/pkgs/applications/science/math/jags/default.nix index 1acc6a287ca5..087807013694 100644 --- a/pkgs/applications/science/math/jags/default.nix +++ b/pkgs/applications/science/math/jags/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "JAGS"; - version = "4.3.1"; + version = "4.3.2"; src = fetchurl { url = "mirror://sourceforge/mcmc-jags/JAGS-${version}.tar.gz"; - sha256 = "sha256-+SWDVbXp6xO9M8X6cg8MvrrOp9CkpCtxsPsUUB7hQik="; + sha256 = "sha256-hx9VavQDp8LOag8C8Vz4WlcnY+CT0mZY66xVxKtHL8g="; }; nativeBuildInputs = [ gfortran ]; From 3a2a54468aeabbe02fc1547e9ed4c6bdc03af7dd Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 18:52:07 +0000 Subject: [PATCH 069/213] orbiton: 2.60.5 -> 2.60.6 --- pkgs/applications/editors/orbiton/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/orbiton/default.nix b/pkgs/applications/editors/orbiton/default.nix index ec8eb24073c2..321bd1358e2f 100644 --- a/pkgs/applications/editors/orbiton/default.nix +++ b/pkgs/applications/editors/orbiton/default.nix @@ -4,13 +4,13 @@ buildGoModule rec { pname = "orbiton"; - version = "2.60.5"; + version = "2.60.6"; src = fetchFromGitHub { owner = "xyproto"; repo = "orbiton"; rev = "v${version}"; - hash = "sha256-gCE4mrZXLFteZKUPDsAc1hS1I/WTns9I9oZE5bAF7fU="; + hash = "sha256-uDxdv7HlswGsuM4UewZOO45/P9jIOo4bb0T1RrQqtpg="; }; vendorHash = null; From 686c1020a25d8998608b7fb0db0e8dc429357828 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 19:04:06 +0000 Subject: [PATCH 070/213] intel-gmmlib: 22.3.4 -> 22.3.5 --- pkgs/development/libraries/intel-gmmlib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/intel-gmmlib/default.nix b/pkgs/development/libraries/intel-gmmlib/default.nix index d4aeaa8f2a73..9f40598d14c9 100644 --- a/pkgs/development/libraries/intel-gmmlib/default.nix +++ b/pkgs/development/libraries/intel-gmmlib/default.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation rec { pname = "intel-gmmlib"; - version = "22.3.4"; + version = "22.3.5"; src = fetchFromGitHub { owner = "intel"; repo = "gmmlib"; rev = "intel-gmmlib-${version}"; - sha256 = "sha256-V8mimy4yB7BO5YdbUh8byN9K6ylQ3lOLynQbXxiOUok="; + sha256 = "sha256-txh0HGtWc39bWesTfyUjG4n560w8iRLyiHec6JA7FJQ="; }; nativeBuildInputs = [ cmake ]; From b4841b7bda83492072aabca7cc93780a33ccf230 Mon Sep 17 00:00:00 2001 From: aleksana Date: Fri, 21 Apr 2023 03:15:34 +0800 Subject: [PATCH 071/213] speedtest-go: 1.5.2 -> 1.6.0 --- pkgs/tools/networking/speedtest-go/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/speedtest-go/default.nix b/pkgs/tools/networking/speedtest-go/default.nix index c2ebe7077562..8337e62a0dc7 100644 --- a/pkgs/tools/networking/speedtest-go/default.nix +++ b/pkgs/tools/networking/speedtest-go/default.nix @@ -5,18 +5,18 @@ buildGoModule rec { pname = "speedtest-go"; - version = "1.5.2"; + version = "1.6.0"; src = fetchFromGitHub { owner = "showwin"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-9jLreb3tEw5bCVka6/BzGbsd5V3+9OHNzENe/IxL1YM="; + hash = "sha256-LpsesUC0Cj9pkc/6c0wDEl6X9Y6GqwACwVv7J31TTg0="; }; - vendorHash = "sha256-A54G3fvs1bXSwPHVUNFC9VJqydqYR5t4I2fIBvrVoRE="; + vendorHash = "sha256-wQqAX7YuxxTiMWmV9LRoXunGMMzs12UyHbf4VvbQF1E="; - subPackages = [ "speedtest.go" ]; + excludedPackages = [ "example" ]; # test suite requires network doCheck = false; @@ -27,6 +27,5 @@ buildGoModule rec { changelog = "https://github.com/showwin/speedtest-go/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ aleksana ]; - mainProgram = "speedtest"; }; } From 5ef2a2bfc9c2b9e36e4f4cbea6aea432a2058f7c Mon Sep 17 00:00:00 2001 From: Evangelos Paterakis Date: Thu, 20 Apr 2023 22:18:09 +0300 Subject: [PATCH 072/213] crystal_1_8: 1.8.0 -> 1.8.1 --- pkgs/development/compilers/crystal/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/crystal/default.nix b/pkgs/development/compilers/crystal/default.nix index d35869b4a78a..f418d7a7af93 100644 --- a/pkgs/development/compilers/crystal/default.nix +++ b/pkgs/development/compilers/crystal/default.nix @@ -274,8 +274,8 @@ rec { }; crystal_1_8 = generic { - version = "1.8.0"; - sha256 = "sha256-oTvBKrfDkrpJg4gaOVrrKWfsqZC+Z9Lp/jt4ye+Iw/M="; + version = "1.8.1"; + sha256 = "sha256-t+1vM1m62UftCvfa90Dg6nqt6Zseh/GP/Gc1VfOa4+c="; binary = binaryCrystal_1_2; }; From e14c31bb5f52182e9c94235dada8bf59f997855c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 19:45:21 +0000 Subject: [PATCH 073/213] konstraint: 0.27.0 -> 0.27.1 --- pkgs/development/tools/konstraint/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/konstraint/default.nix b/pkgs/development/tools/konstraint/default.nix index d08aee214a96..2a3eb62f4e98 100644 --- a/pkgs/development/tools/konstraint/default.nix +++ b/pkgs/development/tools/konstraint/default.nix @@ -2,15 +2,15 @@ buildGoModule rec { pname = "konstraint"; - version = "0.27.0"; + version = "0.27.1"; src = fetchFromGitHub { owner = "plexsystems"; repo = pname; rev = "v${version}"; - sha256 = "sha256-8n9VDFDpadbToHeefZLsqlRMwKPxDbQtjuDiOpts3qc="; + sha256 = "sha256-Ax85ePUzwzOP0dFtNxNj7/UvoyijuCnlqZokl4rGRZk="; }; - vendorHash = "sha256-fQZNQiyDpkPqwZXGEFPsUbEK7qvTObfDeA4PbS0TxAo="; + vendorHash = "sha256-9CDond0OMnqvsLipEqnxbXZD6v/w+CJkPophBUchb7s="; # Exclude go within .github folder excludedPackages = ".github"; From 388490789d9eaf771089660b9411718d62693146 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 20 Apr 2023 21:57:48 +0200 Subject: [PATCH 074/213] gitleaks: 8.16.2 -> 8.16.3 Changelog: https://github.com/zricethezav/gitleaks/releases/tag/v8.16.3 --- pkgs/tools/security/gitleaks/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/gitleaks/default.nix b/pkgs/tools/security/gitleaks/default.nix index 87764f320a14..bffe163dbf2e 100644 --- a/pkgs/tools/security/gitleaks/default.nix +++ b/pkgs/tools/security/gitleaks/default.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "gitleaks"; - version = "8.16.2"; + version = "8.16.3"; src = fetchFromGitHub { owner = "zricethezav"; repo = pname; rev = "v${version}"; - hash = "sha256-AR/08O0wUp3clbIF+2Kw0klMQ6UorFkIRsnqfX4Q3SY="; + hash = "sha256-WukTYi7iqagOLpx8KATEittlM6OvIfxDYiNTdsotjTY="; }; vendorHash = "sha256-Ev0/CSpwJDmc+Dvu/bFDzsgsq80rWImJWXNAUqYHgoE="; From c188116f4d414bd2ce4e231929ada79e838eff4a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 20:16:42 +0000 Subject: [PATCH 075/213] topicctl: 1.7.0 -> 1.9.1 --- pkgs/tools/misc/topicctl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/topicctl/default.nix b/pkgs/tools/misc/topicctl/default.nix index 26d7ac3971d7..fced21eb79c7 100644 --- a/pkgs/tools/misc/topicctl/default.nix +++ b/pkgs/tools/misc/topicctl/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "topicctl"; - version = "1.7.0"; + version = "1.9.1"; src = fetchFromGitHub { owner = "segmentio"; repo = "topicctl"; rev = "v${version}"; - sha256 = "sha256-eHFqczZtJWcZ4ZVOzpCUlVoCJ7wjyWNpFfiZ9MaJHOI="; + sha256 = "sha256-R6Dw6/pgXUmQrq8iD93h64VVEvB4TBEcGb2Rbg6kTp0="; }; - vendorSha256 = "sha256-50UDRf8S9Yl0zwGOrFLa5L1TmSKF4RQ/ju0tnFzs56M="; + vendorHash = "sha256-UJ7U9CfQHKgK7wfb8zqLZ7na4OBBZBYiGayII3RTaiQ="; ldflags = [ "-X main.BuildVersion=${version}" From 490dc110824f834522b05e7e4bf8b88dc9824ad8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 20:49:47 +0000 Subject: [PATCH 076/213] elfinfo: 1.2.1 -> 1.2.2 --- pkgs/development/tools/misc/elfinfo/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/elfinfo/default.nix b/pkgs/development/tools/misc/elfinfo/default.nix index c29a4cdccf9b..5ea97b77eeb8 100644 --- a/pkgs/development/tools/misc/elfinfo/default.nix +++ b/pkgs/development/tools/misc/elfinfo/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "elfinfo"; - version = "1.2.1"; + version = "1.2.2"; src = fetchFromGitHub { owner = "xyproto"; repo = "elfinfo"; rev = version; - sha256 = "sha256-vnlPSNyabFjucxHU1w5EPIO9UmTiuCKEzGMC+EZRTtM="; + sha256 = "sha256-HnjHOjanStqmDXnc6Z9w0beCMJFf/ndWbYxoDEaOws4="; }; - vendorSha256 = null; + vendorHash = null; meta = with lib; { description = "Small utility for showing information about ELF files"; From 9443aa287214a3ccd49d565912f6604dd6149d84 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 21:00:03 +0000 Subject: [PATCH 077/213] blightmud-tts: 5.1.0 -> 5.2.0 --- pkgs/games/blightmud/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/blightmud/default.nix b/pkgs/games/blightmud/default.nix index 87eac661c890..d536aa7b8ea6 100644 --- a/pkgs/games/blightmud/default.nix +++ b/pkgs/games/blightmud/default.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage rec { pname = "blightmud"; - version = "5.1.0"; + version = "5.2.0"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "sha256-0cvMROnblt9c4d6Kbr5iY/Qobf3hOKIhWHvOVQONhO4="; + sha256 = "sha256-sLqkDuohCgHJTMte1WIa2Yu43oWXVvnIpeiDBoQpKY8="; }; - cargoSha256 = "sha256-7jSuadpAZXtlYVw4/NBATTIAFO8M6I11FuxfGFQx51Y="; + cargoHash = "sha256-ffADKoMysYY2vwX3asHnjR2EiND4RJsf/W334PWvkGs="; buildFeatures = lib.optional withTTS "tts"; From d2104fcca1d537995d5d2749615ce08d3d798813 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 21:11:23 +0000 Subject: [PATCH 078/213] jbang: 0.106.1 -> 0.106.3 --- pkgs/development/tools/jbang/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/jbang/default.nix b/pkgs/development/tools/jbang/default.nix index 7c191cbdf747..33ef240f281d 100644 --- a/pkgs/development/tools/jbang/default.nix +++ b/pkgs/development/tools/jbang/default.nix @@ -1,12 +1,12 @@ { stdenv, lib, fetchzip, jdk, makeWrapper, coreutils, curl }: stdenv.mkDerivation rec { - version = "0.106.1"; + version = "0.106.3"; pname = "jbang"; src = fetchzip { url = "https://github.com/jbangdev/jbang/releases/download/v${version}/${pname}-${version}.tar"; - sha256 = "sha256-XHrJvHX0fw/T00bJJaX4X3elr19zBJg2V7E01DEFdxs="; + sha256 = "sha256-54yXQ3E10dlU/UqHyl3fxzQsawBTgNpIaq6XPmwXmD8="; }; nativeBuildInputs = [ makeWrapper ]; From e41c5694290160d02ad776b1e4c446683f93225a Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Thu, 20 Apr 2023 23:48:58 +0200 Subject: [PATCH 079/213] nixos/authelia: Allow using Unix sockets --- nixos/modules/services/security/authelia.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/security/authelia.nix b/nixos/modules/services/security/authelia.nix index 143c441c7e15..28c5fd0a1df5 100644 --- a/nixos/modules/services/security/authelia.nix +++ b/nixos/modules/services/security/authelia.nix @@ -336,7 +336,7 @@ in ProtectProc = "noaccess"; ProtectSystem = "strict"; - RestrictAddressFamilies = [ "AF_INET" "AF_INET6" ]; + RestrictAddressFamilies = [ "AF_INET" "AF_INET6" "AF_UNIX" ]; RestrictNamespaces = true; RestrictRealtime = true; RestrictSUIDSGID = true; From 7ad7b570e96a3fd877e5fb08b843d66a30428f12 Mon Sep 17 00:00:00 2001 From: Ilan Joselevich Date: Fri, 21 Apr 2023 01:04:33 +0300 Subject: [PATCH 080/213] nextcloud-client: 3.8.0 -> 3.8.1 Diff: https://github.com/nextcloud/desktop/compare/v3.8.0...v3.8.1 --- pkgs/applications/networking/nextcloud-client/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/nextcloud-client/default.nix b/pkgs/applications/networking/nextcloud-client/default.nix index 373bcc363b59..701fc6f7b834 100644 --- a/pkgs/applications/networking/nextcloud-client/default.nix +++ b/pkgs/applications/networking/nextcloud-client/default.nix @@ -26,7 +26,7 @@ mkDerivation rec { pname = "nextcloud-client"; - version = "3.8.0"; + version = "3.8.1"; outputs = [ "out" "dev" ]; @@ -34,7 +34,7 @@ mkDerivation rec { owner = "nextcloud"; repo = "desktop"; rev = "v${version}"; - sha256 = "sha256-kwSETOz/0/LMypbTmwvMMrGzZdquBjkXfoSrLgTfPiQ="; + sha256 = "sha256-BTve1dq+OiUwh/Kiy20iSAyALolkdOX7FHwxvVAdS4U="; }; patches = [ From 6fc1a1c91af4fe3b33abcbc78140005f720233eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 20 Apr 2023 15:23:29 -0700 Subject: [PATCH 081/213] rapidfuzz-cpp: 1.11.2 -> 1.11.3 Diff: https://github.com/maxbachmann/rapidfuzz-cpp/compare/v1.11.2...v1.11.3 Changelog: https://github.com/maxbachmann/rapidfuzz-cpp/blob/v1.11.3/CHANGELOG.md --- pkgs/development/libraries/rapidfuzz-cpp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/rapidfuzz-cpp/default.nix b/pkgs/development/libraries/rapidfuzz-cpp/default.nix index 227d6ab10af4..2333b63057e2 100644 --- a/pkgs/development/libraries/rapidfuzz-cpp/default.nix +++ b/pkgs/development/libraries/rapidfuzz-cpp/default.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "rapidfuzz-cpp"; - version = "1.11.2"; + version = "1.11.3"; src = fetchFromGitHub { owner = "maxbachmann"; repo = "rapidfuzz-cpp"; rev = "v${finalAttrs.version}"; - hash = "sha256-1TO0CVq/b9odiwnfOQAcPiSM4EuxIAUPs+zS3F0caHg="; + hash = "sha256-Qqdw5dy+JUBSDpbWEh3Ap3+3h+CcNdfBL+rloRzWGEQ="; }; nativeBuildInputs = [ From 8d82c860a45e20a0d567b20d0d2afa70a32c2414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Thu, 20 Apr 2023 16:10:46 -0600 Subject: [PATCH 082/213] linux: 4.14.312 -> 4.14.313 --- pkgs/os-specific/linux/kernel/linux-4.14.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix index 555539eafcf4..f13198ce00df 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "4.14.312"; + version = "4.14.313"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "03bwrnm7z8jxxn681dd5jffrj76l14ngkcccfgbg1p4a0471q436"; + sha256 = "0k2j856niappvkp9m1wxr87xvbwdzdy03mbcj827kmpjd9gdca76"; }; } // (args.argsOverride or {})) From b3b414f3cbfdac8fb780ac54c31940f18475accf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Thu, 20 Apr 2023 16:10:48 -0600 Subject: [PATCH 083/213] linux: 4.19.280 -> 4.19.281 --- pkgs/os-specific/linux/kernel/linux-4.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index 1cc372fb3dbf..c6a13a9378f6 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "4.19.280"; + version = "4.19.281"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1xmg9p3ky75n5q894f522s8nwcmbd5c15nmjr0n96m6xzag3kd7w"; + sha256 = "13nwzsh3h634450k37pxdca5j8vr3qswx7k79bs2999xp2js9pf0"; }; } // (args.argsOverride or {})) From 8c8861f5fbdc088471f7e94661df25f49d86a245 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Thu, 20 Apr 2023 16:10:50 -0600 Subject: [PATCH 084/213] linux: 5.10.177 -> 5.10.178 --- pkgs/os-specific/linux/kernel/linux-5.10.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix index 30b5abf9a496..9a82437cecaa 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.10.177"; + version = "5.10.178"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "0waml6svj07b7f8yb1kzrflqlf61x4kcqbgsr372s484m3z628lz"; + sha256 = "1bx8wws9gvksg1c1af29nm03jjz2f5a5sq9hzc00ymjyf7isvkqs"; }; } // (args.argsOverride or {})) From d300db394abba6089555914684987359be226d27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Thu, 20 Apr 2023 16:10:52 -0600 Subject: [PATCH 085/213] linux: 5.15.107 -> 5.15.108 --- pkgs/os-specific/linux/kernel/linux-5.15.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.15.nix b/pkgs/os-specific/linux/kernel/linux-5.15.nix index 65f6d589c7d4..548693211864 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.15.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.15.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.15.107"; + version = "5.15.108"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1a5gqpxmzls5mp4a0cw10ldrps4pvbn19nzfri91ys25j1v0wdqr"; + sha256 = "1fj38bvsyr9g89qr8pcjrp0kaq44g301x46gyjibq73gljnnkswb"; }; } // (args.argsOverride or { })) From a99a62f75431477d63ce6fc5400be9a3551a9d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Thu, 20 Apr 2023 16:10:54 -0600 Subject: [PATCH 086/213] linux: 5.4.240 -> 5.4.241 --- pkgs/os-specific/linux/kernel/linux-5.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix index be2ee59f1584..6ffd5ae0db26 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.4.240"; + version = "5.4.241"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "0ihf0rqhx7dav3k3igk29962sscb1xyniy2gx8chyllprr0z126w"; + sha256 = "0z7api3qcjrd6w7fva7k6fj4zx17mg5ibn28a6qbgy27dyny1h7z"; }; } // (args.argsOverride or {})) From b888e9904b6dadb2db2ad54985af700c0d4b49da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Thu, 20 Apr 2023 16:10:57 -0600 Subject: [PATCH 087/213] linux: 6.1.24 -> 6.1.25 --- pkgs/os-specific/linux/kernel/linux-6.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-6.1.nix b/pkgs/os-specific/linux/kernel/linux-6.1.nix index 2e692c70211a..0149c6061175 100644 --- a/pkgs/os-specific/linux/kernel/linux-6.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-6.1.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "6.1.24"; + version = "6.1.25"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz"; - sha256 = "0135aj8asplpxqr48hwdmwynx8n8hzhdgh55yl8r0n1kivisgrma"; + sha256 = "149h95r5msvqah868zd36y92ls9h41cr1rb5vzinl20mxdn46wnb"; }; } // (args.argsOverride or { })) From fdcc3c4b954f5ead17d3c47fee77ae0be95d6119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Thu, 20 Apr 2023 16:10:59 -0600 Subject: [PATCH 088/213] linux: 6.2.11 -> 6.2.12 --- pkgs/os-specific/linux/kernel/linux-6.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-6.2.nix b/pkgs/os-specific/linux/kernel/linux-6.2.nix index 665350b45307..3141e37b237f 100644 --- a/pkgs/os-specific/linux/kernel/linux-6.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-6.2.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "6.2.11"; + version = "6.2.12"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz"; - sha256 = "0iyx03z58pv1d5nrryjx94k3nxwyvm4b3bim6nawg1qbws26f8qd"; + sha256 = "1j6cn1ifmcqfqvxp9h10y8yfxi918yzl3yjbf96gmb9p4ysldqf7"; }; } // (args.argsOverride or { })) From adcc9746aedb0e742ed06b7f3d54ac1640faa561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Thu, 20 Apr 2023 16:11:51 -0600 Subject: [PATCH 089/213] linux-rt_5_15: 5.15.96-rt61 -> 5.15.107-rt62 --- pkgs/os-specific/linux/kernel/linux-rt-5.15.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix b/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix index 834de5057ced..d5d83fb23707 100644 --- a/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix +++ b/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix @@ -6,7 +6,7 @@ , ... } @ args: let - version = "5.15.96-rt61"; # updated by ./update-rt.sh + version = "5.15.107-rt62"; # updated by ./update-rt.sh branch = lib.versions.majorMinor version; kversion = builtins.elemAt (lib.splitString "-" version) 0; in buildLinux (args // { @@ -18,14 +18,14 @@ in buildLinux (args // { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz"; - sha256 = "167g34xjbqxr5klqp127j2j15pms4jmgs0y7gr8zipiz2i69g39l"; + sha256 = "1a5gqpxmzls5mp4a0cw10ldrps4pvbn19nzfri91ys25j1v0wdqr"; }; kernelPatches = let rt-patch = { name = "rt"; patch = fetchurl { url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz"; - sha256 = "1s6h80q4sddnsxjx4ilc52j4kvxwbzj638rbh7wwxvknh21vkwvl"; + sha256 = "0w7ksdv3xpzqiwfxc007k496ghklblb7kglswxhn7y1yqn6pgqzs"; }; }; in [ rt-patch ] ++ kernelPatches; From c717b15f18f3a2f6dd28aa0304c6746de3920817 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Thu, 20 Apr 2023 16:12:37 -0600 Subject: [PATCH 090/213] linux/hardened/patches/6.1: 6.1.24-hardened1 -> 6.1.24-hardened2 --- pkgs/os-specific/linux/kernel/hardened/patches.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json index dc2cc0b5cbf7..d821d72dae00 100644 --- a/pkgs/os-specific/linux/kernel/hardened/patches.json +++ b/pkgs/os-specific/linux/kernel/hardened/patches.json @@ -51,10 +51,10 @@ }, "6.1": { "patch": { - "extra": "-hardened1", - "name": "linux-hardened-6.1.24-hardened1.patch", - "sha256": "1fzgf50qj2i12v3wm0zg5bx2kpd5zsvk3zwfnzzm0mg9cap5mpla", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.1.24-hardened1/linux-hardened-6.1.24-hardened1.patch" + "extra": "-hardened2", + "name": "linux-hardened-6.1.24-hardened2.patch", + "sha256": "1bjcjq0gqvhknryq97qj1a6q3fi71pql23knvs0c42k4vknfih9q", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.1.24-hardened2/linux-hardened-6.1.24-hardened2.patch" }, "sha256": "0135aj8asplpxqr48hwdmwynx8n8hzhdgh55yl8r0n1kivisgrma", "version": "6.1.24" From f1a55a6c3f9d301c6a0142527422c05f624acb42 Mon Sep 17 00:00:00 2001 From: Austin Butler Date: Thu, 20 Apr 2023 16:28:03 -0700 Subject: [PATCH 091/213] authenticator: 4.2.0 -> 4.3.0 --- pkgs/applications/misc/authenticator/default.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/misc/authenticator/default.nix b/pkgs/applications/misc/authenticator/default.nix index 5f6d1c419567..34f75268cf42 100644 --- a/pkgs/applications/misc/authenticator/default.nix +++ b/pkgs/applications/misc/authenticator/default.nix @@ -22,20 +22,20 @@ stdenv.mkDerivation rec { pname = "authenticator"; - version = "4.2.0"; + version = "4.3.0"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "World"; repo = "Authenticator"; rev = version; - hash = "sha256-Nv4QE6gyh42Na/stAgTIapV8GQuUHCdL6IEO//J8dV8="; + hash = "sha256-WR5gXGry4wti2M4D/IQvwI7OSak1p+O+XAhr01hdv2Q="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; - hash = "sha256-IS9jdr19VvgX6M1OqM6rjE8veujZcwBuOTuDm5mDXso="; + hash = "sha256-ZVDKTJojblVCbbdtnqcL+UVW1vkmu99AXCbgyCGNHCM="; }; nativeBuildInputs = [ @@ -67,11 +67,6 @@ stdenv.mkDerivation rec { zbar ]; - # https://gitlab.gnome.org/World/Authenticator/-/issues/362 - preBuild = '' - export BINDGEN_EXTRA_CLANG_ARGS="$BINDGEN_EXTRA_CLANG_ARGS -DPW_ENABLE_DEPRECATED" - ''; - meta = { description = "Two-factor authentication code generator for GNOME"; homepage = "https://gitlab.gnome.org/World/Authenticator"; From bf1ecad5b6d82347d3b7dc8d66f3930ca4f16a3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 20 Apr 2023 16:31:33 -0700 Subject: [PATCH 092/213] python310Packages.cleo: relax rapidfuzz version contraint --- pkgs/development/python-modules/cleo/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/cleo/default.nix b/pkgs/development/python-modules/cleo/default.nix index ce4b9237745a..ab3eb9514d15 100644 --- a/pkgs/development/python-modules/cleo/default.nix +++ b/pkgs/development/python-modules/cleo/default.nix @@ -5,6 +5,7 @@ , poetry-core , pytest-mock , pytestCheckHook +, pythonRelaxDepsHook , rapidfuzz }: @@ -22,6 +23,11 @@ buildPythonPackage rec { nativeBuildInputs = [ poetry-core + pythonRelaxDepsHook + ]; + + pythonRelaxDeps = [ + "rapidfuzz" ]; propagatedBuildInputs = [ From 82f1d64ed196117af4d7bbb9da31000381efcd2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 20 Apr 2023 16:32:39 -0700 Subject: [PATCH 093/213] python310Packages.syncedlyrics: relax rapidfuzz version contraint --- pkgs/development/python-modules/syncedlyrics/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/syncedlyrics/default.nix b/pkgs/development/python-modules/syncedlyrics/default.nix index 661fd29a288c..f69ce5fe83e6 100644 --- a/pkgs/development/python-modules/syncedlyrics/default.nix +++ b/pkgs/development/python-modules/syncedlyrics/default.nix @@ -5,6 +5,7 @@ , poetry-core , pytestCheckHook , pythonOlder +, pythonRelaxDepsHook , rapidfuzz , requests }: @@ -25,6 +26,11 @@ buildPythonPackage rec { nativeBuildInputs = [ poetry-core + pythonRelaxDepsHook + ]; + + pythonRelaxDeps = [ + "rapidfuzz" ]; propagatedBuildInputs = [ From 0c12a37179d4392c98c5ca16f6752d3c91189981 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 00:59:20 +0000 Subject: [PATCH 094/213] termscp: 0.11.0 -> 0.11.2 --- pkgs/tools/networking/termscp/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/termscp/default.nix b/pkgs/tools/networking/termscp/default.nix index 9602e197cbfe..e0f0a46bdf5a 100644 --- a/pkgs/tools/networking/termscp/default.nix +++ b/pkgs/tools/networking/termscp/default.nix @@ -13,16 +13,16 @@ rustPlatform.buildRustPackage rec { pname = "termscp"; - version = "0.11.0"; + version = "0.11.2"; src = fetchFromGitHub { owner = "veeso"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-+5ljnCVbaiqqfXCJjMMInoLjLmZjCIoDkQi9pS6VKpc="; + hash = "sha256-bQvoTy48eYK369Ei6B8l6F5/pfQGYiHdz3KsQV7Bi9Y="; }; - cargoHash = "sha256-GoWVDU1XVjbzZlGPEuHucnxcvhf4Rqx/nSEVygD9gCo="; + cargoHash = "sha256-/nadstDHzLOrimL+xK7/ldOozz7ZS1nRQmkIhGHK8p8="; nativeBuildInputs = [ pkg-config From 15b308284216bbdb747e84648f2548370e05eaa7 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Thu, 20 Apr 2023 19:04:03 -0600 Subject: [PATCH 095/213] python3Packages.pyqt6: 6.4.2 -> 6.5.0 --- pkgs/development/python-modules/pyqt/6.x.nix | 4 ++-- pkgs/development/python-modules/pyqt6-charts.nix | 4 ++-- pkgs/development/python-modules/pyqt6-webengine.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pyqt/6.x.nix b/pkgs/development/python-modules/pyqt/6.x.nix index efd47df61da1..cac7d2915035 100644 --- a/pkgs/development/python-modules/pyqt/6.x.nix +++ b/pkgs/development/python-modules/pyqt/6.x.nix @@ -26,14 +26,14 @@ buildPythonPackage rec { pname = "PyQt6"; - version = "6.4.2"; + version = "6.5.0"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-dAJE9gj+Fe4diWlcQ/MaFMrspBxPAqw2yG37pKXVgT0="; + hash = "sha256-uXy0vpssiZeQTqZozzsKSuWCIZb3eSWQ0F7N5iFqn7w="; }; patches = [ diff --git a/pkgs/development/python-modules/pyqt6-charts.nix b/pkgs/development/python-modules/pyqt6-charts.nix index 66df9bbf0fbc..6d2a110c8890 100644 --- a/pkgs/development/python-modules/pyqt6-charts.nix +++ b/pkgs/development/python-modules/pyqt6-charts.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "PyQt6_Charts"; - version = "6.4.0"; + version = "6.5.0"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-tG6xKEBRagOcNvcLs/hCMzf5j94ma1gs6tQEm3e0P2Q="; + sha256 = "sha256-b/APZbJRf5m/EG3dKMdvPKNE+R7PW6aBkeIKLZACSWI="; }; # fix include path and increase verbosity diff --git a/pkgs/development/python-modules/pyqt6-webengine.nix b/pkgs/development/python-modules/pyqt6-webengine.nix index b53714ca322d..d3b70a02f77d 100644 --- a/pkgs/development/python-modules/pyqt6-webengine.nix +++ b/pkgs/development/python-modules/pyqt6-webengine.nix @@ -13,14 +13,14 @@ buildPythonPackage rec { pname = "PyQt6_WebEngine"; - version = "6.4.0"; + version = "6.5.0"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-THHBMIYKvNEeBMr7IuM5g/qaOu6DI8UZCbFaFwGCjiE="; + hash = "sha256-i6nbVsTBgaKi+rFnPKNeW2PcaRE/CFAn3cQ8cQttbuk="; }; # fix include path and increase verbosity From e910b5d5f15a05edc9512baf3844a0a7cec21775 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Fri, 21 Apr 2023 01:06:05 +0000 Subject: [PATCH 096/213] artyFX: unstable-2020-04-28 -> 1.3.1 (#227029) --- pkgs/applications/audio/artyFX/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/artyFX/default.nix b/pkgs/applications/audio/artyFX/default.nix index 2bf6b2a8046f..f68c6fa5c7dc 100644 --- a/pkgs/applications/audio/artyFX/default.nix +++ b/pkgs/applications/audio/artyFX/default.nix @@ -2,14 +2,13 @@ stdenv.mkDerivation rec { pname = "artyFX"; - # Fix build with lv2 1.18: https://github.com/openAVproductions/openAV-ArtyFX/pull/41/commits/492587461b50d140455aa3c98d915eb8673bebf0 - version = "unstable-2020-04-28"; + version = "1.3.1"; src = fetchFromGitHub { owner = "openAVproductions"; repo = "openAV-ArtyFX"; - rev = "8c542627d936a01b1d97825e7f26a8e95633f7aa"; - sha256 = "0wwg8ivnpyy0235bapjy4g0ij85zq355jwi6c1nkrac79p4z9ail"; + rev = "release-${version}"; + hash = "sha256-GD9nwXdXSJX5OvAMxEAnngkvRW+E1jrNfWXK122bsTM="; }; nativeBuildInputs = [ cmake pkg-config ]; From 6d068eb4bbea88f488ab500e7297b6f3bd9fc290 Mon Sep 17 00:00:00 2001 From: Vladimir Serov Date: Fri, 21 Apr 2023 03:19:10 +0400 Subject: [PATCH 097/213] paperwm: 2022-12-14 -> 2023-04-20 --- pkgs/desktops/gnome/extensions/paperwm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome/extensions/paperwm/default.nix b/pkgs/desktops/gnome/extensions/paperwm/default.nix index 7c63248dfee4..b90a363581e1 100644 --- a/pkgs/desktops/gnome/extensions/paperwm/default.nix +++ b/pkgs/desktops/gnome/extensions/paperwm/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation { pname = "gnome-shell-extension-paperwm"; - version = "unstable-2022-12-14"; + version = "unstable-2023-04-20"; src = fetchFromGitHub { owner = "paperwm"; repo = "PaperWM"; - rev = "7c0863c944a02d4e8095034403bff6ade3579091"; - hash = "sha256-EN0sWW/NymRNKrApeFnqg8ax7Et4hr0gKZuvMF4kJYU="; + rev = "1130b663806d6daba1c8355c4b99c287d237e918"; + hash = "sha256-JlamW5DznVZ8G0REqXcxEt/IlHa3GMN184WFpeclhd4="; }; dontConfigure = true; From 574ad5d1e852fd1cb956fe64e8af37ec3781c59a Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:01:28 -0300 Subject: [PATCH 098/213] tap-plugins: change self to finalAttrs --- pkgs/applications/audio/tap-plugins/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/tap-plugins/default.nix b/pkgs/applications/audio/tap-plugins/default.nix index cde74ae96ca0..7cd64eb42086 100644 --- a/pkgs/applications/audio/tap-plugins/default.nix +++ b/pkgs/applications/audio/tap-plugins/default.nix @@ -4,7 +4,7 @@ , ladspa-sdk }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "tap-plugins"; version = "unstable-2020-12-09"; From 7f5ff5eeeb1b6289637767a4b25346c79ca7e718 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:01:54 -0300 Subject: [PATCH 099/213] moe: change self to finalAttrs --- pkgs/applications/editors/moe/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/moe/default.nix b/pkgs/applications/editors/moe/default.nix index 197cccd43c3f..71449a0b8a80 100644 --- a/pkgs/applications/editors/moe/default.nix +++ b/pkgs/applications/editors/moe/default.nix @@ -5,12 +5,12 @@ , ncurses }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "moe"; version = "1.13"; src = fetchurl { - url = "mirror://gnu/moe/moe-${self.version}.tar.lz"; + url = "mirror://gnu/moe/moe-${finalAttrs.version}.tar.lz"; hash = "sha256-Q6VXvFEvidbHGOX0ECnP46BVaCYg642+zmMC80omFGs="; }; From 5243957ed34fc4983ec49431ab0c7d2ec7d70467 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:03:06 -0300 Subject: [PATCH 100/213] ppsspp: change self to finalAttrs --- pkgs/applications/emulators/ppsspp/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/ppsspp/default.nix b/pkgs/applications/emulators/ppsspp/default.nix index 29b64ebb6bd8..afa361903f51 100644 --- a/pkgs/applications/emulators/ppsspp/default.nix +++ b/pkgs/applications/emulators/ppsspp/default.nix @@ -29,7 +29,7 @@ let in # Only SDL frontend needs to specify whether to use Wayland assert forceWayland -> !enableQt; -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "ppsspp" + lib.optionalString enableQt "-qt" + lib.optionalString (!enableQt) "-sdl" @@ -39,13 +39,13 @@ stdenv.mkDerivation (self: { src = fetchFromGitHub { owner = "hrydgard"; repo = "ppsspp"; - rev = "v${self.version}"; + rev = "v${finalAttrs.version}"; fetchSubmodules = true; sha256 = "sha256-7xzhN8JIQD4LZg8sQ8rLNYZrW0nCNBfZFgzoKdoWbKc="; }; postPatch = '' - substituteInPlace git-version.cmake --replace unknown ${self.src.rev} + substituteInPlace git-version.cmake --replace unknown ${finalAttrs.src.rev} substituteInPlace UI/NativeApp.cpp --replace /usr/share $out/share ''; From 96baf95cfeac39c2bb1a7c05071fcbbfe9b35ecf Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:08:15 -0300 Subject: [PATCH 101/213] dosbox-staging: change self to finalAttrs --- pkgs/applications/emulators/dosbox-staging/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/emulators/dosbox-staging/default.nix b/pkgs/applications/emulators/dosbox-staging/default.nix index e7154aa3b5a9..fca2cf421044 100644 --- a/pkgs/applications/emulators/dosbox-staging/default.nix +++ b/pkgs/applications/emulators/dosbox-staging/default.nix @@ -29,14 +29,14 @@ , speexdsp }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "dosbox-staging"; version = "0.80.1"; src = fetchFromGitHub { owner = "dosbox-staging"; repo = "dosbox-staging"; - rev = "v${self.version}"; + rev = "v${finalAttrs.version}"; hash = "sha256-I90poBeLSq1c8PXyjrx7/UcbfqFNnnNiXfJdWhLPGMc="; }; From ecde7e476236a323ea00ced82d9665a5affc8dd7 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:08:49 -0300 Subject: [PATCH 102/213] rpcemu: change self to finalAttrs --- pkgs/applications/emulators/rpcemu/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/emulators/rpcemu/default.nix b/pkgs/applications/emulators/rpcemu/default.nix index 9befb172fe4b..9fad3725203f 100644 --- a/pkgs/applications/emulators/rpcemu/default.nix +++ b/pkgs/applications/emulators/rpcemu/default.nix @@ -7,13 +7,13 @@ let inherit (qt5) qtbase qtmultimedia wrapQtAppsHook; in -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "rpcemu"; version = "0.9.4"; src = fetchhg { url = "http://www.home.marutan.net/hg/rpcemu"; - rev = "release_${self.version}"; + rev = "release_${finalAttrs.version}"; sha256 = "sha256-UyjfTfUpSvJNFPkQWPKppxp/kO0hVGo5cE9RuCU8GJI="; }; From 8577d50d0dfb807bc2d885d3f38f4079aee9c3d2 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:09:01 -0300 Subject: [PATCH 103/213] xemu: change self to finalAttrs --- pkgs/applications/emulators/xemu/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/emulators/xemu/default.nix b/pkgs/applications/emulators/xemu/default.nix index 099fc5acca22..50f2b57f887a 100644 --- a/pkgs/applications/emulators/xemu/default.nix +++ b/pkgs/applications/emulators/xemu/default.nix @@ -25,14 +25,14 @@ , wrapGAppsHook }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "xemu"; version = "0.7.85"; src = fetchFromGitHub { owner = "xemu-project"; repo = "xemu"; - rev = "v${self.version}"; + rev = "v${finalAttrs.version}"; hash = "sha256-sVUkB2KegdKlHlqMvSwB1nLdJGun2x2x9HxtNHnpp1s="; fetchSubmodules = true; }; @@ -94,7 +94,7 @@ stdenv.mkDerivation (self: { # to run `XEMU_COMMIT=$(cat XEMU_COMMIT)` (and similar) branch = "master"; commit = "d8fa50e524c22f85ecb2e43108fd6a5501744351"; - inherit (self) version; + inherit (finalAttrs) version; in '' patchShebangs . configureFlagsArray+=("--extra-cflags=-DXBOX=1 -Wno-error=redundant-decls") @@ -133,7 +133,7 @@ stdenv.mkDerivation (self: { Xbox game console, enabling people to play their original Xbox games on Windows, macOS, and Linux systems. ''; - changelog = "https://github.com/xemu-project/xemu/releases/tag/v${self.version}"; + changelog = "https://github.com/xemu-project/xemu/releases/tag/v${finalAttrs.version}"; license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ AndersonTorres genericnerdyusername ]; platforms = with lib.platforms; linux; From aa16ab8a04567793f3253b73ab0f70653fc04fc5 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:09:42 -0300 Subject: [PATCH 104/213] yapesdl: change self to finalAttrs --- pkgs/applications/emulators/yapesdl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/emulators/yapesdl/default.nix b/pkgs/applications/emulators/yapesdl/default.nix index 2ea3583edd76..136e6ce4eb89 100644 --- a/pkgs/applications/emulators/yapesdl/default.nix +++ b/pkgs/applications/emulators/yapesdl/default.nix @@ -5,14 +5,14 @@ , SDL2 }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "yapesdl"; version = "0.71.2"; src = fetchFromGitHub { owner = "calmopyrin"; repo = "yapesdl"; - rev = "v${self.version}"; + rev = "v${finalAttrs.version}"; hash = "sha256-QGF3aS/YSzdGxHONKyA/iTewEVYsjBAsKARVMXkFV2k="; }; From bc28e20568bbe617c85f3fb214b18dccbb6f0f6c Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:09:53 -0300 Subject: [PATCH 105/213] mpv: change self to finalAttrs --- pkgs/applications/video/mpv/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix index d36e2b677444..5fdb7d24f387 100644 --- a/pkgs/applications/video/mpv/default.nix +++ b/pkgs/applications/video/mpv/default.nix @@ -82,7 +82,7 @@ let inherit (darwin.apple_sdk_11_0.frameworks) AVFoundation CoreFoundation CoreMedia Cocoa CoreAudio MediaPlayer Accelerate; luaEnv = lua.withPackages (ps: with ps; [ luasocket ]); -in stdenv.mkDerivation (self: { +in stdenv.mkDerivation (finalAttrs: { pname = "mpv"; version = "0.35.1"; @@ -91,7 +91,7 @@ in stdenv.mkDerivation (self: { src = fetchFromGitHub { owner = "mpv-player"; repo = "mpv"; - rev = "v${self.version}"; + rev = "v${finalAttrs.version}"; sha256 = "sha256-CoYTX9hgxLo72YdMoa0sEywg4kybHbFsypHk1rCM6tM="; }; @@ -233,7 +233,7 @@ in stdenv.mkDerivation (self: { mpv is a free and open-source general-purpose video player, based on the MPlayer and mplayer2 projects, with great improvements above both. ''; - changelog = "https://github.com/mpv-player/mpv/releases/tag/v${self.version}"; + changelog = "https://github.com/mpv-player/mpv/releases/tag/v${finalAttrs.version}"; license = licenses.gpl2Plus; maintainers = with maintainers; [ AndersonTorres fpletz globin ma27 tadeokondrak ]; platforms = platforms.unix; From 794ee20683f34faad02db780ca0bccc007644eea Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:10:09 -0300 Subject: [PATCH 106/213] qmplay2: change self to finalAttrs --- pkgs/applications/video/qmplay2/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/qmplay2/default.nix b/pkgs/applications/video/qmplay2/default.nix index d4da46cfc887..72dd59613444 100644 --- a/pkgs/applications/video/qmplay2/default.nix +++ b/pkgs/applications/video/qmplay2/default.nix @@ -21,14 +21,14 @@ , wrapQtAppsHook }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "qmplay2"; version = "23.02.05"; src = fetchFromGitHub { owner = "zaps166"; repo = "QMPlay2"; - rev = self.version; + rev = finalAttrs.version; sha256 = "sha256-ZDpUgD9qTvjopGFVrwTBSEmrXn+4aKq2zeqoTnXwmI8="; fetchSubmodules = true; }; @@ -71,7 +71,7 @@ stdenv.mkDerivation (self: { files, Rayman 2 music and chiptunes. It contains YouTube and MyFreeMP3 browser. ''; - changelog = "https://github.com/zaps166/QMPlay2/releases/tag/${self.version}"; + changelog = "https://github.com/zaps166/QMPlay2/releases/tag/${finalAttrs.version}"; license = lib.licenses.lgpl3Plus; maintainers = with lib.maintainers; [ AndersonTorres ]; platforms = lib.platforms.linux; From b181983d3fdb648d9bf594716fa533cf4a254eea Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:12:31 -0300 Subject: [PATCH 107/213] 2048-cli: change self to finalAttrs --- pkgs/games/2048-cli/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/2048-cli/default.nix b/pkgs/games/2048-cli/default.nix index bc93d51b10fd..7ef923215d6d 100644 --- a/pkgs/games/2048-cli/default.nix +++ b/pkgs/games/2048-cli/default.nix @@ -8,7 +8,7 @@ }: assert lib.elem ui [ "terminal" "curses" ]; -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "2048-cli"; version = "unstable-2019-12-10"; From f7ad06567ba9548817a7b7780bb463d515d14bcf Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:12:46 -0300 Subject: [PATCH 108/213] lbreakouthd: change self to finalAttrs --- pkgs/games/lgames/lbreakouthd/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/lgames/lbreakouthd/default.nix b/pkgs/games/lgames/lbreakouthd/default.nix index 33c219a5f526..d9177c8fb2b2 100644 --- a/pkgs/games/lgames/lbreakouthd/default.nix +++ b/pkgs/games/lgames/lbreakouthd/default.nix @@ -8,12 +8,12 @@ , SDL2_ttf }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "lbreakouthd"; version = "1.1.2"; src = fetchurl { - url = "mirror://sourceforge/lgames/lbreakouthd-${self.version}.tar.gz"; + url = "mirror://sourceforge/lgames/lbreakouthd-${finalAttrs.version}.tar.gz"; hash = "sha256-fK7w5uS7zPJnbEmY3YpxoA9cGuooQbVlDB9Mu6yB8hw="; }; @@ -27,7 +27,7 @@ stdenv.mkDerivation (self: { hardeningDisable = [ "format" ]; passthru.updateScript = directoryListingUpdater { - inherit (self) pname version; + inherit (finalAttrs) pname version; url = "https://lgames.sourceforge.io/LBreakoutHD/"; extraRegex = "(?!.*-win(32|64)).*"; }; From f1965939513792045f607648c278a7204b90b814 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:14:36 -0300 Subject: [PATCH 109/213] alsa-tools: change self to finalAttrs --- pkgs/os-specific/linux/alsa-project/alsa-tools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/alsa-project/alsa-tools/default.nix b/pkgs/os-specific/linux/alsa-project/alsa-tools/default.nix index e0170042027b..10f7f2e64d04 100644 --- a/pkgs/os-specific/linux/alsa-project/alsa-tools/default.nix +++ b/pkgs/os-specific/linux/alsa-project/alsa-tools/default.nix @@ -8,12 +8,12 @@ , pkg-config }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "alsa-tools"; version = "1.2.5"; src = fetchurl { - url = "mirror://alsa/tools/alsa-tools-${self.version}.tar.bz2"; + url = "mirror://alsa/tools/alsa-tools-${finalAttrs.version}.tar.bz2"; hash = "sha256-NacQJ6AfTX3kci4iNSDpQN5os8VwtsZxaRVnrij5iT4="; }; From ffef4e31487f238de140020b60914c74df0f437e Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:16:11 -0300 Subject: [PATCH 110/213] hid-nintendo: change self to finalAttrs --- pkgs/os-specific/linux/hid-nintendo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/hid-nintendo/default.nix b/pkgs/os-specific/linux/hid-nintendo/default.nix index e21fdf58fdf3..7b8c73fc0ccd 100644 --- a/pkgs/os-specific/linux/hid-nintendo/default.nix +++ b/pkgs/os-specific/linux/hid-nintendo/default.nix @@ -4,14 +4,14 @@ , kernel }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "hid-nintendo"; version = "3.2"; src = fetchFromGitHub { owner = "nicman23"; repo = "dkms-hid-nintendo"; - rev = self.version; + rev = finalAttrs.version; hash = "sha256-2a+95zwyhJsF/KSo/Pm/JZ7ktDG02UZjsixSnVUXRrA="; }; From 0845ec7275f20aea2d71071cc56a5217e61ed857 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:16:28 -0300 Subject: [PATCH 111/213] nas: change self to finalAttrs --- pkgs/servers/nas/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nas/default.nix b/pkgs/servers/nas/default.nix index e9355f489027..d7f71ff185f5 100644 --- a/pkgs/servers/nas/default.nix +++ b/pkgs/servers/nas/default.nix @@ -14,12 +14,12 @@ , xorgproto }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "nas"; version = "1.9.5"; src = fetchurl { - url = "mirror://sourceforge/nas/nas-${self.version}.tar.gz"; + url = "mirror://sourceforge/nas/nas-${finalAttrs.version}.tar.gz"; hash = "sha256-t4hK+zj+7AOhlr07fpxHuAPIMOzRDXRV6cl+Eiw3lEw="; }; From 9f4d408fcabb5f1d4bd9f9ca9b92d6f93e590115 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:35:57 -0300 Subject: [PATCH 112/213] podman-desktop: change self to finalAttrs --- .../virtualization/podman-desktop/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/virtualization/podman-desktop/default.nix b/pkgs/applications/virtualization/podman-desktop/default.nix index e574bb32bad1..30dd54ba85ce 100644 --- a/pkgs/applications/virtualization/podman-desktop/default.nix +++ b/pkgs/applications/virtualization/podman-desktop/default.nix @@ -12,19 +12,19 @@ , makeDesktopItem }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "podman-desktop"; version = "0.12.0"; src = fetchFromGitHub { owner = "containers"; repo = "podman-desktop"; - rev = "v${self.version}"; + rev = "v${finalAttrs.version}"; sha256 = "sha256-gEjcI+bfETYZB/pHDXRcNxNVDsbwuqQL1E22fMkIJHI="; }; offlineCache = fetchYarnDeps { - yarnLock = "${self.src}/yarn.lock"; + yarnLock = "${finalAttrs.src}/yarn.lock"; sha256 = "sha256-x0hqNxi6r1i3vBe1tJQl+Oht2St9VIH3Eq27MZLkojA="; }; @@ -103,7 +103,7 @@ stdenv.mkDerivation (self: { icon = "podman-desktop"; desktopName = "Podman Desktop"; genericName = "Desktop client for podman"; - comment = self.meta.description; + comment = finalAttrs.meta.description; categories = [ "Utility" ]; startupWMClass = "Podman Desktop"; }) @@ -112,7 +112,7 @@ stdenv.mkDerivation (self: { meta = with lib; { description = "A graphical tool for developing on containers and Kubernetes"; homepage = "https://podman-desktop.io"; - changelog = "https://github.com/containers/podman-desktop/releases/tag/v${self.version}"; + changelog = "https://github.com/containers/podman-desktop/releases/tag/v${finalAttrs.version}"; license = licenses.asl20; maintainers = with maintainers; [ panda2134 ]; inherit (electron.meta) platforms; From 768dce7a0d881c2e7fa1617fc3dc360bb630cfee Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:47:20 -0300 Subject: [PATCH 113/213] dwl: change self to finalAttrs --- pkgs/applications/window-managers/dwl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/window-managers/dwl/default.nix b/pkgs/applications/window-managers/dwl/default.nix index 6e2e45e8b9a6..7bab957da046 100644 --- a/pkgs/applications/window-managers/dwl/default.nix +++ b/pkgs/applications/window-managers/dwl/default.nix @@ -22,14 +22,14 @@ let wlroots = wlroots_0_16; in -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "dwl"; version = "0.4"; src = fetchFromGitHub { owner = "djpohly"; repo = "dwl"; - rev = "v${self.version}"; + rev = "v${finalAttrs.version}"; hash = "sha256-OW7K7yMYSzqZWpQ9Vmpy8EgdWvyv3q1uh8A40f6AQF4="; }; @@ -87,7 +87,7 @@ stdenv.mkDerivation (self: { - Limited to 2000 SLOC to promote hackability - Tied to as few external dependencies as possible ''; - changelog = "https://github.com/djpohly/dwl/releases/tag/v${self.version}"; + changelog = "https://github.com/djpohly/dwl/releases/tag/v${finalAttrs.version}"; license = lib.licenses.gpl3Only; maintainers = [ lib.maintainers.AndersonTorres ]; inherit (wayland.meta) platforms; From d18b9182ffb332192adbacb1d4552ea0b716db21 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:48:07 -0300 Subject: [PATCH 114/213] hypr: change self to finalAttrs --- pkgs/applications/window-managers/hyprwm/hypr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/hyprwm/hypr/default.nix b/pkgs/applications/window-managers/hyprwm/hypr/default.nix index 292894b47a01..18aa5e32261f 100644 --- a/pkgs/applications/window-managers/hyprwm/hypr/default.nix +++ b/pkgs/applications/window-managers/hyprwm/hypr/default.nix @@ -20,7 +20,7 @@ , xmodmap }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "hypr"; version = "unstable-2023-01-26"; @@ -72,7 +72,7 @@ stdenv.mkDerivation (self: { ''; meta = with lib; { - inherit (self.src.meta) homepage; + inherit (finalAttrs.src.meta) homepage; description = "A tiling X11 window manager written in modern C++"; license = licenses.bsd3; maintainers = with maintainers; [ AndersonTorres ]; From b14126f2a8c5d4d789fd033857f7e6972e43032c Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:48:25 -0300 Subject: [PATCH 115/213] katriawm: change self to finalAttrs --- pkgs/applications/window-managers/katriawm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/window-managers/katriawm/default.nix b/pkgs/applications/window-managers/katriawm/default.nix index 4c75b082506d..27ac9d75e8ae 100644 --- a/pkgs/applications/window-managers/katriawm/default.nix +++ b/pkgs/applications/window-managers/katriawm/default.nix @@ -7,13 +7,13 @@ , pkg-config }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "katriawm"; version = "22.12"; src = fetchzip { - name = self.pname + "-" + self.version; - url = "https://www.uninformativ.de/git/katriawm/archives/katriawm-v${self.version}.tar.gz"; + name = finalAttrs.pname + "-" + finalAttrs.version; + url = "https://www.uninformativ.de/git/katriawm/archives/katriawm-v${finalAttrs.version}.tar.gz"; hash = "sha256-xFKr4PxqvnQEAWplhRsaL5rhmSJpnImpk1eXFX0N1tc="; }; From ee65bb73eea6dfe5c7cb28005bab3d08f950535b Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:48:46 -0300 Subject: [PATCH 116/213] labwc: change self to finalAttrs --- pkgs/applications/window-managers/labwc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/window-managers/labwc/default.nix b/pkgs/applications/window-managers/labwc/default.nix index db8230e41c5e..4182eb2c6667 100644 --- a/pkgs/applications/window-managers/labwc/default.nix +++ b/pkgs/applications/window-managers/labwc/default.nix @@ -23,14 +23,14 @@ let wlroots = wlroots_0_16; in -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "labwc"; version = "0.6.2"; src = fetchFromGitHub { owner = "labwc"; repo = "labwc"; - rev = self.version; + rev = finalAttrs.version; hash = "sha256-yZ1tXx7AA9pFc5C6c/J3B03/TfXw1PsAunNNiee3BGU="; }; @@ -64,7 +64,7 @@ stdenv.mkDerivation (self: { meta = with lib; { homepage = "https://github.com/labwc/labwc"; description = "A Wayland stacking compositor, similar to Openbox"; - changelog = "https://raw.githubusercontent.com/labwc/labwc/${self.version}/NEWS.md"; + changelog = "https://raw.githubusercontent.com/labwc/labwc/${finalAttrs.version}/NEWS.md"; license = licenses.gpl2Plus; maintainers = with maintainers; [ AndersonTorres ]; inherit (wayland.meta) platforms; From 0b6dff5b3ec97d9e56070004ec53dd3dd6a22e18 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:49:04 -0300 Subject: [PATCH 117/213] pekwm: change self to finalAttrs --- pkgs/applications/window-managers/pekwm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/window-managers/pekwm/default.nix b/pkgs/applications/window-managers/pekwm/default.nix index f2d0e1d484d7..dcd2bb27a71d 100644 --- a/pkgs/applications/window-managers/pekwm/default.nix +++ b/pkgs/applications/window-managers/pekwm/default.nix @@ -16,14 +16,14 @@ , pkg-config }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "pekwm"; version = "0.3.0"; src = fetchFromGitHub { owner = "pekdon"; repo = "pekwm"; - rev = "release-${self.version}"; + rev = "release-${finalAttrs.version}"; hash= "sha256-hA+TBAs9NMcc5DKIkzyUHWck3Xht+yeCO54xJ6oXXuQ="; }; @@ -65,7 +65,7 @@ stdenv.mkDerivation (self: { they should when starting applications. - Chainable Keygrabber, usability for everyone. ''; - changelog = "https://raw.githubusercontent.com/pekwm/pekwm/release-${self.version}/NEWS.md"; + changelog = "https://raw.githubusercontent.com/pekwm/pekwm/release-${finalAttrs.version}/NEWS.md"; license = lib.licenses.gpl2Plus; maintainers = [ lib.maintainers.AndersonTorres ]; platforms = lib.platforms.linux; From 4961a108af05ded165c14b8ed2597cc92ba085d7 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:49:29 -0300 Subject: [PATCH 118/213] hare: change self to finalAttrs --- pkgs/development/compilers/hare/hare/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/hare/hare/default.nix b/pkgs/development/compilers/hare/hare/default.nix index 297e5e6c82ca..684baf629ef0 100644 --- a/pkgs/development/compilers/hare/hare/default.nix +++ b/pkgs/development/compilers/hare/hare/default.nix @@ -12,7 +12,7 @@ let inherit (harePackages) harec; in -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "hare"; version = "unstable-2023-03-15"; From 072e17f8f2469a33eb4f3747e1343ebd23f35d9a Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:49:38 -0300 Subject: [PATCH 119/213] harec: change self to finalAttrs --- pkgs/development/compilers/hare/harec/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/hare/harec/default.nix b/pkgs/development/compilers/hare/harec/default.nix index e7902f6c29a5..ef5fae31b364 100644 --- a/pkgs/development/compilers/hare/harec/default.nix +++ b/pkgs/development/compilers/hare/harec/default.nix @@ -4,7 +4,7 @@ , qbe }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "harec"; version = "unstable-2023-02-18"; From cb1c86036fd1d28281cbe1f9d570a815e4b0cba5 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:52:47 -0300 Subject: [PATCH 120/213] byacc: change self to finalAttrs --- pkgs/development/tools/parsing/byacc/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/parsing/byacc/default.nix b/pkgs/development/tools/parsing/byacc/default.nix index adb8c7bd0422..a04527063a83 100644 --- a/pkgs/development/tools/parsing/byacc/default.nix +++ b/pkgs/development/tools/parsing/byacc/default.nix @@ -3,16 +3,14 @@ , fetchurl }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "byacc"; version = "20230219"; src = fetchurl { - urls = let - inherit (self) pname version; - in [ - "https://invisible-mirror.net/archives/byacc/${pname}-${version}.tgz" - "ftp://ftp.invisible-island.net/byacc/${pname}-${version}.tgz" + urls = [ + "https://invisible-mirror.net/archives/byacc/byacc-${finalAttrs.version}.tgz" + "ftp://ftp.invisible-island.net/byacc/byacc-${finalAttrs.version}.tgz" ]; hash = "sha256-NrlyptSul1hN0YaSX7vDl9JssgYyp2wvUqx2U80IG1g="; }; From c910d4628a7fddd6413e096d4460e4a4a986b133 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:53:09 -0300 Subject: [PATCH 121/213] luarocks: change self to finalAttrs --- pkgs/development/tools/misc/luarocks/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/luarocks/default.nix b/pkgs/development/tools/misc/luarocks/default.nix index 581b4eaeb892..c8d36a1e3313 100644 --- a/pkgs/development/tools/misc/luarocks/default.nix +++ b/pkgs/development/tools/misc/luarocks/default.nix @@ -17,14 +17,14 @@ , installShellFiles }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "luarocks"; version = "3.9.1"; src = fetchFromGitHub { owner = "luarocks"; repo = "luarocks"; - rev = "v${self.version}"; + rev = "v${finalAttrs.version}"; sha256 = "sha256-G6HDap3pspeQtGDBq+ukN7kftDaT/CozMVdYM60F6HI="; }; @@ -76,7 +76,7 @@ stdenv.mkDerivation (self: { --suffix LUA_CPATH ";" "$(echo "$out"/lib/lua/*/)?.so" \ --suffix LUA_CPATH ";" "$(echo "$out"/share/lua/*/)?/init.lua" \ --suffix PATH : ${lib.makeBinPath ([ unzip ] ++ - lib.optionals (self.pname == "luarocks-nix") [ file nix-prefetch-git ])} + lib.optionals (finalAttrs.pname == "luarocks-nix") [ file nix-prefetch-git ])} } done '' + lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' From 68148c702430921c44307ae6a7583cf541b81dc0 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:53:23 -0300 Subject: [PATCH 122/213] argbash: change self to finalAttrs --- pkgs/development/tools/misc/argbash/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/argbash/default.nix b/pkgs/development/tools/misc/argbash/default.nix index 1b157702b299..bf33e788633e 100644 --- a/pkgs/development/tools/misc/argbash/default.nix +++ b/pkgs/development/tools/misc/argbash/default.nix @@ -7,14 +7,14 @@ , runtimeShell }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "argbash"; version = "2.10.0"; src = fetchFromGitHub { owner = "matejak"; repo = "argbash"; - rev = self.version; + rev = finalAttrs.version; hash = "sha256-G739q6OhsXEldpIxiyOU51AmG4RChMqaN1t2wOy6sPU="; }; From a6fb545d93c87fea851eb2db5afea66162576207 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 17:53:37 -0300 Subject: [PATCH 123/213] acr: change self to finalAttrs --- pkgs/development/tools/misc/acr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/acr/default.nix b/pkgs/development/tools/misc/acr/default.nix index 14884f22af80..cfe15ac52150 100644 --- a/pkgs/development/tools/misc/acr/default.nix +++ b/pkgs/development/tools/misc/acr/default.nix @@ -3,14 +3,14 @@ , fetchFromGitHub }: -stdenv.mkDerivation (self: { +stdenv.mkDerivation (finalAttrs: { pname = "acr"; version = "2.1.1"; src = fetchFromGitHub { owner = "radareorg"; repo = "acr"; - rev = self.version; + rev = finalAttrs.version; hash = "sha256-JReYgIqQISQuLPd4pUbqbKtBOXT0/YJCn9czz2VTVBs="; }; From ae21df36c52818ba82c69f6ee43b8d21014a9552 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 16 Apr 2023 18:00:56 -0300 Subject: [PATCH 124/213] build-lua-package.nix: change self to finalAttrs --- pkgs/development/interpreters/lua-5/build-lua-package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/interpreters/lua-5/build-lua-package.nix b/pkgs/development/interpreters/lua-5/build-lua-package.nix index 0ae950216d8d..d29468df3b4d 100644 --- a/pkgs/development/interpreters/lua-5/build-lua-package.nix +++ b/pkgs/development/interpreters/lua-5/build-lua-package.nix @@ -93,9 +93,9 @@ let ); externalDeps' = lib.filter (dep: !lib.isDerivation dep) externalDeps; - luarocksDrv = luaLib.toLuaModule ( lua.stdenv.mkDerivation (self: let + luarocksDrv = luaLib.toLuaModule ( lua.stdenv.mkDerivation (finalAttrs: let - rocksSubdir = "${self.pname}-${self.version}-rocks"; + rocksSubdir = "${finalAttrs.pname}-${finalAttrs.version}-rocks"; luarocks_content = let generatedConfig = luaLib.generateLuarocksConfig { externalDeps = externalDeps ++ externalDepsGenerated; @@ -108,13 +108,13 @@ let ''; in builtins.removeAttrs attrs ["disabled" "externalDeps" "extraVariables"] // { - name = namePrefix + pname + "-" + self.version; + name = namePrefix + pname + "-" + finalAttrs.version; inherit rockspecVersion; nativeBuildInputs = [ wrapLua luarocks - ] ++ lib.optionals doCheck ([ luarocksCheckHook ] ++ self.nativeCheckInputs); + ] ++ lib.optionals doCheck ([ luarocksCheckHook ] ++ finalAttrs.nativeCheckInputs); buildInputs = buildInputs ++ (map (d: d.dep) externalDeps'); From dc24509e1d2709537a4bec00b48fcda2f7f88d77 Mon Sep 17 00:00:00 2001 From: Ted Reed Date: Wed, 19 Apr 2023 15:09:18 -0700 Subject: [PATCH 125/213] emacs.pkgs.jinx: use platform-specific library extension --- .../editors/emacs/elisp-packages/elpa-packages.nix | 8 +++++--- .../editors/emacs/elisp-packages/melpa-packages.nix | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/elpa-packages.nix b/pkgs/applications/editors/emacs/elisp-packages/elpa-packages.nix index d1f9dbd3a4a5..08d96268e7aa 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/elpa-packages.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/elpa-packages.nix @@ -106,7 +106,9 @@ self: let }; }); - jinx = super.jinx.overrideAttrs (old: { + jinx = super.jinx.overrideAttrs (old: let + libExt = pkgs.stdenv.targetPlatform.extensions.sharedLibrary; + in { dontUnpack = false; nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ @@ -117,12 +119,12 @@ self: let postBuild = '' NIX_CFLAGS_COMPILE="$($PKG_CONFIG --cflags enchant-2) $NIX_CFLAGS_COMPILE" - $CC -shared -o jinx-mod.so jinx-mod.c -lenchant-2 + $CC -shared -o jinx-mod${libExt} jinx-mod.c -lenchant-2 ''; postInstall = (old.postInstall or "") + "\n" + '' outd=$out/share/emacs/site-lisp/elpa/jinx-* - install -m444 -t $outd jinx-mod.so + install -m444 -t $outd jinx-mod${libExt} rm $outd/jinx-mod.c $outd/emacs-module.h ''; diff --git a/pkgs/applications/editors/emacs/elisp-packages/melpa-packages.nix b/pkgs/applications/editors/emacs/elisp-packages/melpa-packages.nix index 48234dc1189c..d91a3e7d8edb 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/melpa-packages.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/melpa-packages.nix @@ -314,7 +314,9 @@ let ivy-rtags = fix-rtags super.ivy-rtags; - jinx = super.jinx.overrideAttrs (old: { + jinx = super.jinx.overrideAttrs (old: let + libExt = pkgs.stdenv.targetPlatform.extensions.sharedLibrary; + in { nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkg-config ]; @@ -324,14 +326,14 @@ let postBuild = '' pushd working/jinx NIX_CFLAGS_COMPILE="$($PKG_CONFIG --cflags enchant-2) $NIX_CFLAGS_COMPILE" - $CC -shared -o jinx-mod.so jinx-mod.c -lenchant-2 + $CC -shared -o jinx-mod${libExt} jinx-mod.c -lenchant-2 popd ''; postInstall = (old.postInstall or "") + "\n" + '' pushd source outd=$(echo $out/share/emacs/site-lisp/elpa/jinx-*) - install -m444 --target-directory=$outd jinx-mod.so + install -m444 --target-directory=$outd jinx-mod${libExt} rm $outd/jinx-mod.c $outd/emacs-module.h popd ''; From 7fd9a81fc6500773a9706834164967d66c2020af Mon Sep 17 00:00:00 2001 From: rewine Date: Tue, 18 Apr 2023 11:35:22 +0800 Subject: [PATCH 126/213] deepin.deepin-editor: 5.10.35 -> 6.0.7 --- .../deepin/apps/deepin-editor/default.nix | 33 +++++-------------- 1 file changed, 9 insertions(+), 24 deletions(-) diff --git a/pkgs/desktops/deepin/apps/deepin-editor/default.nix b/pkgs/desktops/deepin/apps/deepin-editor/default.nix index b83ee544ab63..8724eec96850 100644 --- a/pkgs/desktops/deepin/apps/deepin-editor/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-editor/default.nix @@ -1,48 +1,34 @@ { stdenv , lib , fetchFromGitHub -, fetchpatch -, dtkwidget -, qt5integration -, qt5platform-plugins -, dde-qt-dbus-factory , cmake , pkg-config , qttools +, wrapQtAppsHook +, dtkwidget +, qt5integration +, qt5platform-plugins , qtbase , qtsvg -, wrapQtAppsHook +, dde-qt-dbus-factory , kcodecs , syntax-highlighting , libchardet , libuchardet , libiconv -, gtest }: stdenv.mkDerivation rec { pname = "deepin-editor"; - version = "5.10.35"; + version = "6.0.7"; src = fetchFromGitHub { owner = "linuxdeepin"; repo = pname; rev = version; - sha256 = "sha256-X3tsmtqMUSpYQZqCmgtCLCSGwzSmCZagF7TUWQYJsqU="; + sha256 = "sha256-7dHSybjoWZ1alcMsMm4BEEQJjQgNmhC7Eskeo3ZmoS8="; }; - patches = [ - (fetchpatch { - name = "chore-use-GNUInstallDirs-in-CmakeLists.patch"; - url = "https://github.com/linuxdeepin/deepin-editor/commit/7f4314f386a3c8f5cdea3618591b8eb027d034c3.patch"; - sha256 = "sha256-/aSBa2nILc/YrFchUyhBHHs2c7Mv6N1juwD5Sdc39Uo="; - }) - ]; - - postPatch = '' - substituteInPlace src/common/utils.h --replace "/usr/share" "$out/share" - ''; - nativeBuildInputs = [ cmake pkg-config @@ -51,18 +37,17 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - qtbase - qtsvg dtkwidget qt5integration qt5platform-plugins + qtbase + qtsvg dde-qt-dbus-factory kcodecs syntax-highlighting libchardet libuchardet libiconv - gtest ]; strictDeps = true; From c3608febe787b3947189ca2c5c4acd784341c28f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 03:11:34 +0000 Subject: [PATCH 127/213] gomplate: 3.11.4 -> 3.11.5 --- pkgs/development/tools/gomplate/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/gomplate/default.nix b/pkgs/development/tools/gomplate/default.nix index 0587a3e1d912..e6a99d1eeae6 100644 --- a/pkgs/development/tools/gomplate/default.nix +++ b/pkgs/development/tools/gomplate/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "gomplate"; - version = "3.11.4"; + version = "3.11.5"; src = fetchFromGitHub { owner = "hairyhenderson"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-3WTscK2nmjd7+cUKGaAi9i+C3HFpuxb7eRCn0fOHFV4="; + hash = "sha256-cBSOfjU7A6B7+5zQLGtGLx9kORsjH/IzGgkjwjjTcYY="; }; - vendorHash = "sha256-X3o00WATVlWoc1Axug5ErPtLDQ+BL3CtO/QyNtavIpg="; + vendorHash = "sha256-thsa15CDD7+gCSPSU4xDbovETREeuL4gV6TjdcImj9w="; postPatch = '' # some tests require network access From c6382f654490d6993291d662becce6111df8c24f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Apr 2023 22:17:15 +0000 Subject: [PATCH 128/213] cri-tools: 1.26.1 -> 1.27.0 --- pkgs/tools/virtualization/cri-tools/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/virtualization/cri-tools/default.nix b/pkgs/tools/virtualization/cri-tools/default.nix index e7fe212863aa..254352b1a9bc 100644 --- a/pkgs/tools/virtualization/cri-tools/default.nix +++ b/pkgs/tools/virtualization/cri-tools/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "cri-tools"; - version = "1.26.1"; + version = "1.27.0"; src = fetchFromGitHub { owner = "kubernetes-sigs"; repo = pname; rev = "v${version}"; - sha256 = "sha256-jJhHlqnc7wDsc6nn5CTZMnaZpUJrEDkGzyvQ2EoX4GE="; + sha256 = "sha256-5fBQkujOmxdiLkNuHL8y4QmuKQVGJuFlC7bRu+xElyk="; }; - vendorSha256 = null; + vendorHash = null; doCheck = false; From e6c5c87682781937fed55ef433bb1e719650f5b2 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 21 Apr 2023 11:32:02 +0800 Subject: [PATCH 129/213] torrential: 2.0.1 -> 3.0.0 https://github.com/davidmhewitt/torrential/compare/2.0.1...3.0.0 --- .../networking/p2p/torrential/default.nix | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/p2p/torrential/default.nix b/pkgs/applications/networking/p2p/torrential/default.nix index 4cf4e1becf05..cfc10c3f7466 100644 --- a/pkgs/applications/networking/p2p/torrential/default.nix +++ b/pkgs/applications/networking/p2p/torrential/default.nix @@ -1,4 +1,5 @@ -{ lib, stdenv +{ stdenv +, lib , fetchFromGitHub , nix-update-script , desktop-file-utils @@ -7,11 +8,11 @@ , pkg-config , python3 , vala -, wrapGAppsHook +, wrapGAppsHook4 , curl , dht , glib -, gtk3 +, gtk4 , libb64 , libevent , libgee @@ -25,13 +26,13 @@ stdenv.mkDerivation rec { pname = "torrential"; - version = "2.0.1"; + version = "3.0.0"; src = fetchFromGitHub { owner = "davidmhewitt"; repo = "torrential"; rev = version; - sha256 = "sha256-W9Is6l8y5XSlPER2BLlf+cyMPPdEQuaP4xM59VhfDE0="; + sha256 = "sha256-uHc/VNtbhetmGyuhynZH1TvxJscVX17eWO6dzX6Ft3A="; }; nativeBuildInputs = [ @@ -41,14 +42,14 @@ stdenv.mkDerivation rec { pkg-config python3 vala - wrapGAppsHook + wrapGAppsHook4 ]; buildInputs = [ curl dht glib - gtk3 + gtk4 libb64 libevent libgee @@ -57,12 +58,15 @@ stdenv.mkDerivation rec { libutp miniupnpc openssl - pantheon.granite + pantheon.granite7 ]; postPatch = '' chmod +x meson/post_install.py patchShebangs meson/post_install.py + + substituteInPlace meson/post_install.py \ + --replace "gtk-update-icon-cache" "gtk4-update-icon-cache" ''; passthru = { From 48bfb6645953491bb5e887e589d8292979fd6f99 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 03:42:57 +0000 Subject: [PATCH 130/213] mangareader: 2.0.4 -> 2.1.0 --- pkgs/applications/graphics/mangareader/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/mangareader/default.nix b/pkgs/applications/graphics/mangareader/default.nix index 81073c051152..37a58ea0ba45 100644 --- a/pkgs/applications/graphics/mangareader/default.nix +++ b/pkgs/applications/graphics/mangareader/default.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation rec { pname = "mangareader"; - version = "2.0.4"; + version = "2.1.0"; src = fetchFromGitHub { owner = "g-fb"; repo = pname; rev = version; - hash = "sha256-j5b2O5OgDRaaxNssknTTgVscudk1+mFlGQN5KE6CwcU="; + hash = "sha256-YZZcp+HS/P/GxWYyOpO35nByJSzv4HahzzrZSVRcCRs="; }; nativeBuildInputs = [ From a774478c0a206a0715dffed6a20ad89411cd6854 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 04:44:45 +0000 Subject: [PATCH 131/213] python310Packages.google-cloud-securitycenter: 1.20.0 -> 1.21.0 --- .../python-modules/google-cloud-securitycenter/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-cloud-securitycenter/default.nix b/pkgs/development/python-modules/google-cloud-securitycenter/default.nix index 809108160b94..4118f7040b5f 100644 --- a/pkgs/development/python-modules/google-cloud-securitycenter/default.nix +++ b/pkgs/development/python-modules/google-cloud-securitycenter/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "google-cloud-securitycenter"; - version = "1.20.0"; + version = "1.21.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-r6HulAsKLJvL6jS/cKiMgdbYHeiChje4a7PCz6qA2yM="; + hash = "sha256-zk5yZYevzpWmTOAAJgdNx9lnoTxjaq5XFJ+2hDQOBuc="; }; propagatedBuildInputs = [ From da26831c44c29dda72be5ddf260b740a6bcc8c22 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Apr 2023 03:19:03 +0000 Subject: [PATCH 132/213] terraform-providers.azurerm: 3.52.0 -> 3.53.0 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 83d0c2c38ffa..32fa4db04579 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -128,11 +128,11 @@ "vendorHash": null }, "azurerm": { - "hash": "sha256-MSglw8EylPaAoMFz3S7pUeedNROeNAPTSXWN+NiIXN8=", + "hash": "sha256-tStlnMSlkkL+X/DP0SBmnm7xL6dH8HfyiaKY/McuMQE=", "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", "owner": "hashicorp", "repo": "terraform-provider-azurerm", - "rev": "v3.52.0", + "rev": "v3.53.0", "spdx": "MPL-2.0", "vendorHash": null }, From 4b1f46b783101d5df7cdcc7406458bef8914dc8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Apr 2023 03:21:47 +0000 Subject: [PATCH 133/213] terraform-providers.dns: 3.3.0 -> 3.3.1 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 32fa4db04579..d58c64a6803d 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -318,11 +318,11 @@ "vendorHash": null }, "dns": { - "hash": "sha256-pTBPSiPO84L9vhBv4mJIMJP0UNVwrz/MX0YCZODwb7s=", + "hash": "sha256-Bzj1rLTzWJuqKEq5mz0UAbYMWMp4JoRhedfC2lORocE=", "homepage": "https://registry.terraform.io/providers/hashicorp/dns", "owner": "hashicorp", "repo": "terraform-provider-dns", - "rev": "v3.3.0", + "rev": "v3.3.1", "spdx": "MPL-2.0", "vendorHash": "sha256-wx8BXlobu86Nk9D8o5loKhbO14ANI+shFQ2i7jswKgE=" }, From 0eeb356fd256c04ecd32be0e0627050862eb6daa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Apr 2023 03:23:41 +0000 Subject: [PATCH 134/213] terraform-providers.equinix: 1.14.0 -> 1.14.1 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index d58c64a6803d..cb4e9e4445bb 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -354,11 +354,11 @@ "vendorHash": "sha256-oVTanZpCWs05HwyIKW2ajiBPz1HXOFzBAt5Us+EtTRw=" }, "equinix": { - "hash": "sha256-GGJNfHizFc+wXNo7u/mqtonIs5D/S8RydBsIkftNcjc=", + "hash": "sha256-wuOgnliqwA8huZHmFuegbtuFbpTpe1VgQ53Z+XcgHjw=", "homepage": "https://registry.terraform.io/providers/equinix/equinix", "owner": "equinix", "repo": "terraform-provider-equinix", - "rev": "v1.14.0", + "rev": "v1.14.1", "spdx": "MIT", "vendorHash": "sha256-rJev48aS0nd8DRWmUN4i0LgDYvfjdfoO67N6AiWeg+k=" }, From 4cadff60a07470c01118cf392b05c3c536dbd24f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Apr 2023 03:28:14 +0000 Subject: [PATCH 135/213] terraform-providers.kubernetes: 2.19.0 -> 2.20.0 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index cb4e9e4445bb..26b9ffb01f4b 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -638,11 +638,11 @@ "vendorHash": "sha256-lXQHo66b9X0jZhoF+5Ix5qewQGyI82VPJ7gGzc2CHao=" }, "kubernetes": { - "hash": "sha256-FV5FoEd0zjXa8x77r/z8Tn/I1lZI1NZ4a8yisAuAhNQ=", + "hash": "sha256-B13jQTZqFb5o/GRTf4iQWUbOPhbb4uYKUy35nQrKGLI=", "homepage": "https://registry.terraform.io/providers/hashicorp/kubernetes", "owner": "hashicorp", "repo": "terraform-provider-kubernetes", - "rev": "v2.19.0", + "rev": "v2.20.0", "spdx": "MPL-2.0", "vendorHash": null }, From 63632f0424a8ff6a03efa634e4932498ceb994f3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Apr 2023 03:31:27 +0000 Subject: [PATCH 136/213] terraform-providers.nomad: 1.4.19 -> 1.4.20 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 26b9ffb01f4b..24a71c15d480 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -773,13 +773,13 @@ "vendorHash": "sha256-WF4AdTu6lxoNSCsFKLMeQbHgH6j+hM0VNBRsue+azJA=" }, "nomad": { - "hash": "sha256-oHY+jM4JQgLlE1wd+/H9H8H2g0e9ZuxI6OMlz3Izfjg=", + "hash": "sha256-1TmcFS+ul7xpSGqQohcCdeQ2zuDD429xGI0X2Add5HQ=", "homepage": "https://registry.terraform.io/providers/hashicorp/nomad", "owner": "hashicorp", "repo": "terraform-provider-nomad", - "rev": "v1.4.19", + "rev": "v1.4.20", "spdx": "MPL-2.0", - "vendorHash": "sha256-3t8pUAwuVeZN5cYGs72YsdRvJunudSmKSldFWEFVA/4=" + "vendorHash": "sha256-jnZ7LzKgyPVCnYoWp+nDeQy2w91sBVX43KjInzqRWqc=" }, "ns1": { "hash": "sha256-F7nKtDlVnW7jDPTeszYv9aYMAnHo2/k+MxsXdjghS88=", From fbb9beb4c76807a8601f72d92a7528c0d7bce831 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Apr 2023 03:34:08 +0000 Subject: [PATCH 137/213] terraform-providers.opentelekomcloud: 1.34.1 -> 1.34.2 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 24a71c15d480..5c9d87a5c900 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -855,13 +855,13 @@ "vendorHash": "sha256-62q67aaOZA3fQmyL8bEHB+W497bcx9Xy7kKrbkjkbaI=" }, "opentelekomcloud": { - "hash": "sha256-QcpA7FreTgITmnt0fQHUmUK6FZMP0QCeQK2MN2Y9tFQ=", + "hash": "sha256-bRvs4IxnUObX/ChPdCn97VUQSxTjV2tfnmBmWmgAXUA=", "homepage": "https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud", "owner": "opentelekomcloud", "repo": "terraform-provider-opentelekomcloud", - "rev": "v1.34.1", + "rev": "v1.34.2", "spdx": "MPL-2.0", - "vendorHash": "sha256-4tJe8v31txzLBbruicOI6WUdDk38CqfLniFyc3hWVxg=" + "vendorHash": "sha256-VEreMBvqvBGUZz5EY5+0jbNDOVbmhYerfLYGa1rl+aw=" }, "opsgenie": { "hash": "sha256-Wbe+DyK5wKuZZX8yd3DJN+2wT8KZt+YsBwJYKnZnfcI=", From abb78acf5b864352a4c13e3b0f38ffd8287360ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Apr 2023 03:35:12 +0000 Subject: [PATCH 138/213] terraform-providers.pagerduty: 2.14.2 -> 2.14.3 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 5c9d87a5c900..077882acd9c5 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -882,11 +882,11 @@ "vendorHash": null }, "pagerduty": { - "hash": "sha256-1OmHEWpilZH+wIY9d9J2JvTgTXw5AzKXbt0JLSVL9/I=", + "hash": "sha256-NWrE6DFyoI1RQnxLThenGeFNGj8AFiVWhXysk8U7RpI=", "homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty", "owner": "PagerDuty", "repo": "terraform-provider-pagerduty", - "rev": "v2.14.2", + "rev": "v2.14.3", "spdx": "MPL-2.0", "vendorHash": null }, From e201ba4fbcd15e340208bfd39cfee2fa974a50f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Apr 2023 03:35:25 +0000 Subject: [PATCH 139/213] terraform-providers.aws: 4.63.0 -> 4.64.0 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 077882acd9c5..a2dcc1f14efd 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -110,13 +110,13 @@ "vendorHash": null }, "aws": { - "hash": "sha256-XCGMoa/x8hkf+7gL0qYBX7jMx4wnMXxpyx/wH9ff+m4=", + "hash": "sha256-gI53y6/cbgXnWmFqihVPOZEtq4ZbpLtv1dgLiSxnYo4=", "homepage": "https://registry.terraform.io/providers/hashicorp/aws", "owner": "hashicorp", "repo": "terraform-provider-aws", - "rev": "v4.63.0", + "rev": "v4.64.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-t6Hg1FLCd4dh6d3J0uNsNKKnz5T8/yoIXFo7bRO+XHM=" + "vendorHash": "sha256-1eIJCtcrod6MUragxcx2qoTJO9OVbD3n+VErL6xnvmw=" }, "azuread": { "hash": "sha256-bCnCj2pEd29aQVePGeaTbVhH6sF/Y+lj94SEw1+tROc=", From dae32f5930693299d8a6e4cfae7534a8a286cd0a Mon Sep 17 00:00:00 2001 From: David Hamelin Date: Wed, 19 Apr 2023 19:19:32 +0200 Subject: [PATCH 140/213] ocamlPackages.unisim_archisec: init at 0.0.5 --- maintainers/maintainer-list.nix | 6 ++++++ .../ocaml-modules/unisim_archisec/default.nix | 21 +++++++++++++++++++ pkgs/top-level/ocaml-packages.nix | 2 ++ 3 files changed, 29 insertions(+) create mode 100644 pkgs/development/ocaml-modules/unisim_archisec/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index cce68256a6a1..fa3f2990b9f6 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3522,6 +3522,12 @@ githubId = 10701143; name = "David Crompton"; }; + david-hamelin = { + email = "david.hamelin@outlook.fr"; + github = "HamelinDavid"; + githubId = 118536343; + name = "David Hamelin"; + }; davidrusu = { email = "davidrusu.me@gmail.com"; github = "davidrusu"; diff --git a/pkgs/development/ocaml-modules/unisim_archisec/default.nix b/pkgs/development/ocaml-modules/unisim_archisec/default.nix new file mode 100644 index 000000000000..a5b364312d41 --- /dev/null +++ b/pkgs/development/ocaml-modules/unisim_archisec/default.nix @@ -0,0 +1,21 @@ +{ lib, buildDunePackage, fetchurl }: + +buildDunePackage rec { + pname = "unisim_archisec"; + version = "0.0.5"; + + src = fetchurl { + url = "https://github.com/binsec/unisim_archisec/releases/download/0.0.5/unisim_archisec-0.0.5.tbz"; + sha256 = "sha256-94Ky7rtR8oFTtWshTYaY6gyJdqrY3QKMF7qTkZQweXQ="; + }; + + duneVersion = "3"; + + meta = { + homepage = "https://binsec.github.io"; + downloadPage = "https://github.com/binsec/unisim_archisec"; + description = "UNISIM-VP DBA decoder"; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.david-hamelin ]; + }; +} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index b03e77d20011..06c982d7e5d7 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -1628,6 +1628,8 @@ let unionFind = callPackage ../development/ocaml-modules/unionFind { }; + unisim_archisec = callPackage ../development/ocaml-modules/unisim_archisec { }; + unix-errno = callPackage ../development/ocaml-modules/unix-errno { }; unstrctrd = callPackage ../development/ocaml-modules/unstrctrd { }; From 8a38fc4be6ee187a851409a27de8324977858832 Mon Sep 17 00:00:00 2001 From: natsukium Date: Wed, 12 Apr 2023 14:26:00 +0900 Subject: [PATCH 141/213] docker-compose-language-service: init at 0.1.3 --- .../default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/tools/language-servers/docker-compose-language-service/default.nix diff --git a/pkgs/development/tools/language-servers/docker-compose-language-service/default.nix b/pkgs/development/tools/language-servers/docker-compose-language-service/default.nix new file mode 100644 index 000000000000..98375eef01ca --- /dev/null +++ b/pkgs/development/tools/language-servers/docker-compose-language-service/default.nix @@ -0,0 +1,30 @@ +{ lib +, buildNpmPackage +, nodejs-16_x +, fetchFromGitHub +}: +let + buildNpmPackage' = buildNpmPackage.override { nodejs = nodejs-16_x; }; +in +buildNpmPackage' rec { + pname = "docker-compose-language-service"; + version = "0.1.3"; + + src = fetchFromGitHub { + owner = "microsoft"; + repo = "compose-language-service"; + rev = "v${version}"; + hash = "sha256-faQvUHzqtCipceGnamVQIlAWCDpo7oX01/zGz9RLjMY="; + }; + + npmDepsHash = "sha256-gWaZMsI1HVIXKZInfgzfH8syzOwU2C6kcKvB2M6KLX4="; + + meta = with lib; { + description = "Language service for Docker Compose documents"; + homepage = "https://github.com/microsoft/compose-language-service"; + changelog = "https://github.com/microsoft/compose-language-service/releases/tag/v${version}"; + license = licenses.mit; + maintainers = with maintainers; [ natsukium ]; + mainProgram = "docker-compose-langserver"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a9cae64ed9a9..4c05439d3484 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17315,6 +17315,8 @@ with pkgs; llvmPackages = llvmPackages_latest; }; + docker-compose-language-service = callPackage ../development/tools/language-servers/docker-compose-language-service { }; + dot-language-server = callPackage ../development/tools/language-servers/dot-language-server { }; fortls = python3.pkgs.callPackage ../development/tools/language-servers/fortls { }; From 2e2f19a70c5e677c908d2790d7c4a9f258bdc735 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 06:16:16 +0000 Subject: [PATCH 142/213] ser2net: 4.3.11 -> 4.3.12 --- pkgs/servers/ser2net/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/ser2net/default.nix b/pkgs/servers/ser2net/default.nix index f2486b0635c6..f75e9465acc3 100644 --- a/pkgs/servers/ser2net/default.nix +++ b/pkgs/servers/ser2net/default.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { pname = "ser2net"; - version = "4.3.11"; + version = "4.3.12"; src = fetchFromGitHub { owner = "cminyard"; repo = pname; rev = "v${version}"; - hash = "sha256-5Jo6wwxRwf6JbpG7vEGpEBFA9b0v7DqbfpvgETHHhpY="; + hash = "sha256-jF1tk/JeZ3RGHol+itwtkTF/cn5FHm/vhUgXJzi9J9E="; }; passthru = { From 96face35e46cd1a5573904585d295bb10ad1f71a Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 18 Apr 2023 08:23:29 +0200 Subject: [PATCH 143/213] advi: use Dune 3 Co-authored-by: Ulrik Strid --- pkgs/tools/typesetting/tex/advi/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/typesetting/tex/advi/default.nix b/pkgs/tools/typesetting/tex/advi/default.nix index 0be4d4a9574c..8fb8702213c3 100644 --- a/pkgs/tools/typesetting/tex/advi/default.nix +++ b/pkgs/tools/typesetting/tex/advi/default.nix @@ -34,8 +34,6 @@ ocamlPackages.buildDunePackage rec { pname = "advi"; version = "2.0.0"; - useDune2 = true; - minimalOCamlVersion = "4.11"; src = fetchurl { @@ -43,6 +41,14 @@ ocamlPackages.buildDunePackage rec { hash = "sha256-c0DQHlvdekJyXCxmR4+Ut/njtoCzmqX6hNazNv8PpBQ="; }; + postPatch = '' + substituteInPlace ./Makefile \ + --replace "\$(DUNE) install \$(DUNEROOT) --display=short" \ + "\$(DUNE) install \$(DUNEROOT) --prefix $out --docdir $out/share/doc --mandir $out/share/man" + ''; + + duneVersion = "3"; + nativeBuildInputs = [ fake-opam kpsexpand makeWrapper texlive.combined.scheme-medium which ]; buildInputs = with ocamlPackages; [ camlimages ghostscriptX graphics ]; From d578a2cb318dd35e72ecae9f7bde6136bacd520f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 06:28:33 +0000 Subject: [PATCH 144/213] python310Packages.asana: 3.2.0 -> 3.2.1 --- pkgs/development/python-modules/asana/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/asana/default.nix b/pkgs/development/python-modules/asana/default.nix index c4d78a275a6d..410c8d6a24f1 100644 --- a/pkgs/development/python-modules/asana/default.nix +++ b/pkgs/development/python-modules/asana/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "asana"; - version = "3.2.0"; + version = "3.2.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "asana"; repo = "python-asana"; rev = "refs/tags/v${version}"; - hash = "sha256-qxoGi7UByHEuDKsELEjwzf01/JNEiUgUs88536TGFKo="; + hash = "sha256-hvAyKGoNkX3bs7Mz2h7SnOa5T6J88c0YiTR/L8fgfi8="; }; propagatedBuildInputs = [ From 4c273c98fdb8c1c2c29f1b17092c098bf8a94d98 Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle Date: Fri, 21 Apr 2023 08:50:21 +0200 Subject: [PATCH 145/213] maintainers: add pbek --- maintainers/maintainer-list.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index fa3f2990b9f6..fca35a582d96 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -11906,6 +11906,16 @@ githubId = 26949935; name = "Pierce Bartine"; }; + pbek = { + email = "patrizio@bekerle.com"; + matrix = "@patrizio:bekerle.com"; + github = "pbek"; + githubId = 1798101; + name = "Patrizio Bekerle"; + keys = [{ + fingerprint = "E005 48D5 D6AC 812C AAD2 AFFA 9C42 B05E 5913 60DC"; + }]; + }; pblkt = { email = "pebblekite@gmail.com"; github = "pblkt"; From 222cfb501b8731d5592a5dcc5f8b95290f53a222 Mon Sep 17 00:00:00 2001 From: rewine Date: Thu, 12 Jan 2023 17:53:14 +0800 Subject: [PATCH 146/213] deepin.deepin-system-monitor: init at 5.9.32 --- .../apps/deepin-system-monitor/default.nix | 93 +++++++++++++++++++ pkgs/desktops/deepin/default.nix | 1 + 2 files changed, 94 insertions(+) create mode 100644 pkgs/desktops/deepin/apps/deepin-system-monitor/default.nix diff --git a/pkgs/desktops/deepin/apps/deepin-system-monitor/default.nix b/pkgs/desktops/deepin/apps/deepin-system-monitor/default.nix new file mode 100644 index 000000000000..2a499b428898 --- /dev/null +++ b/pkgs/desktops/deepin/apps/deepin-system-monitor/default.nix @@ -0,0 +1,93 @@ +{ stdenv +, lib +, fetchFromGitHub +, cmake +, pkg-config +, qttools +, deepin-gettext-tools +, wrapQtAppsHook +, dtkwidget +, qt5integration +, qt5platform-plugins +, qtbase +, qtsvg +, qtx11extras +, dde-qt-dbus-factory +, dde-dock +, gsettings-qt +, procps +, libpcap +, libnl +, util-linux +, systemd +, polkit +}: + +stdenv.mkDerivation rec { + pname = "deepin-system-monitor"; + version = "5.9.32"; + + src = fetchFromGitHub { + owner = "linuxdeepin"; + repo = pname; + rev = version; + sha256 = "sha256-jze5Pigk4edjojmpNNwaVVfcpk5Aed/S0y9YE0HdC0A"; + }; + + postPatch = '' + substituteInPlace deepin-system-monitor-main/process/process_controller.cpp \ + deepin-system-monitor-main/process/priority_controller.cpp \ + deepin-system-monitor-main/service/service_manager.cpp \ + deepin-system-monitor-main/translations/policy/com.deepin.pkexec.deepin-system-monitor.policy \ + --replace "/usr/bin/kill" "${util-linux}/bin/kill" \ + --replace "/usr/bin/renice" "${util-linux}/bin/renice" \ + --replace '/usr/bin/systemctl' '${lib.getBin systemd}/systemctl' + + substituteInPlace deepin-system-monitor-main/{service/service_manager.cpp,process/{priority_controller.cpp,process_controller.cpp}} \ + --replace "/usr/bin/pkexec" "${lib.getBin polkit}/bin/pkexec" + + for file in $(grep -rl "/usr") + do + substituteInPlace $file \ + --replace "/usr" "$out" + done + ''; + + nativeBuildInputs = [ + cmake + pkg-config + qttools + deepin-gettext-tools + wrapQtAppsHook + ]; + + buildInputs = [ + dtkwidget + qt5integration + qt5platform-plugins + qtbase + qtsvg + qtx11extras + dde-qt-dbus-factory + dde-dock + gsettings-qt + procps + libpcap + libnl + ]; + + cmakeFlags = [ + "-DVERSION=${version}" + "-DUSE_DEEPIN_WAYLAND=OFF" + ]; + + strictDeps = true; + + meta = with lib; { + description = "A more user-friendly system monitor"; + homepage = "https://github.com/linuxdeepin/deepin-system-monitor"; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; + }; +} diff --git a/pkgs/desktops/deepin/default.nix b/pkgs/desktops/deepin/default.nix index fd9af904d15c..59f051a66215 100644 --- a/pkgs/desktops/deepin/default.nix +++ b/pkgs/desktops/deepin/default.nix @@ -49,6 +49,7 @@ let deepin-music = callPackage ./apps/deepin-music { }; deepin-picker = callPackage ./apps/deepin-picker { }; deepin-shortcut-viewer = callPackage ./apps/deepin-shortcut-viewer { }; + deepin-system-monitor = callPackage ./apps/deepin-system-monitor { }; deepin-terminal = callPackage ./apps/deepin-terminal { }; deepin-reader = callPackage ./apps/deepin-reader { }; deepin-voice-note = callPackage ./apps/deepin-voice-note { }; From fe35d034046871233c74b9f247e27ba6d244f291 Mon Sep 17 00:00:00 2001 From: Sean Borg Date: Wed, 19 Apr 2023 06:55:40 +0100 Subject: [PATCH 147/213] spectacle: add wrapGAppsHook Fixes no Gsettings error when clicking saveAs. Following method mentioned in https://github.com/NixOS/nixpkgs/issues/16285 --- pkgs/applications/kde/spectacle.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/kde/spectacle.nix b/pkgs/applications/kde/spectacle.nix index db819ba41f97..93e3f8563980 100644 --- a/pkgs/applications/kde/spectacle.nix +++ b/pkgs/applications/kde/spectacle.nix @@ -5,11 +5,12 @@ , knotifications, kscreen, kwidgetsaddons, kwindowsystem, kxmlgui, libkipi , qtx11extras, knewstuff, kwayland, qttools, kcolorpicker, kimageannotator , qcoro, qtquickcontrols2, wayland, plasma-wayland-protocols, kpurpose, kpipewire +, wrapGAppsHook }: mkDerivation { pname = "spectacle"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ]; buildInputs = [ kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi qtx11extras xcb-util-cursor @@ -20,6 +21,13 @@ mkDerivation { substituteInPlace desktop/org.kde.spectacle.desktop.cmake \ --replace "Exec=@QtBinariesDir@/qdbus" "Exec=${lib.getBin qttools}/bin/qdbus" ''; + + dontWrapGApps = true; + + preFixup = '' + qtWrapperArgs+=("''${gappsWrapperArgs[@]}") + ''; + propagatedUserEnvPkgs = [ kipi-plugins libkipi ]; meta = with lib; { homepage = "https://apps.kde.org/spectacle/"; From 50d922a5aeaf5e7af113ead88a153f02edd4e98f Mon Sep 17 00:00:00 2001 From: Sean Borg Date: Wed, 19 Apr 2023 07:06:25 +0100 Subject: [PATCH 148/213] texmaker: add wrapGAppsHook Fixes no Gsettings error when clicking Open or SaveAs. Following method mentioned in https://github.com/NixOS/nixpkgs/issues/16285 --- pkgs/applications/editors/texmaker/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/texmaker/default.nix b/pkgs/applications/editors/texmaker/default.nix index d4bfdebd6a55..01c2e8e74ae1 100644 --- a/pkgs/applications/editors/texmaker/default.nix +++ b/pkgs/applications/editors/texmaker/default.nix @@ -1,4 +1,4 @@ -{ lib, mkDerivation, fetchurl, qtbase, qtscript, qtwebengine, qmake, zlib, pkg-config, poppler }: +{ lib, mkDerivation, fetchurl, qtbase, qtscript, qtwebengine, qmake, zlib, pkg-config, poppler, wrapGAppsHook }: mkDerivation rec { pname = "texmaker"; @@ -10,7 +10,7 @@ mkDerivation rec { }; buildInputs = [ qtbase qtscript poppler zlib qtwebengine ]; - nativeBuildInputs = [ pkg-config poppler qmake ]; + nativeBuildInputs = [ pkg-config poppler qmake wrapGAppsHook ]; env.NIX_CFLAGS_COMPILE = "-I${poppler.dev}/include/poppler"; qmakeFlags = [ @@ -19,6 +19,12 @@ mkDerivation rec { "METAINFODIR=${placeholder "out"}/share/metainfo" ]; + dontWrapGApps = true; + + preFixup = '' + qtWrapperArgs+=("''${gappsWrapperArgs[@]}") + ''; + meta = with lib; { description = "TeX and LaTeX editor"; longDescription='' From e797a476c62a21320739e73df48b0e1a6d18e374 Mon Sep 17 00:00:00 2001 From: Sean Borg Date: Wed, 19 Apr 2023 07:15:05 +0100 Subject: [PATCH 149/213] vlc: add wrapGAppsHook Fixes no Gsettings error when trying to open file picker. Following method mentioned in https://github.com/NixOS/nixpkgs/issues/16285 --- pkgs/applications/video/vlc/default.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/video/vlc/default.nix b/pkgs/applications/video/vlc/default.nix index 457aa7a0da5d..fd263557d48a 100644 --- a/pkgs/applications/video/vlc/default.nix +++ b/pkgs/applications/video/vlc/default.nix @@ -71,7 +71,7 @@ , onlyLibVLC ? false , skins2Support ? !onlyLibVLC, freetype , waylandSupport ? true, wayland, wayland-protocols -, withQt5 ? true, qtbase, qtsvg, qtwayland, qtx11extras, wrapQtAppsHook +, withQt5 ? true, qtbase, qtsvg, qtwayland, qtx11extras, wrapQtAppsHook, wrapGAppsHook }: # chromecastSupport requires TCP port 8010 to be open for it to work. @@ -177,6 +177,7 @@ stdenv.mkDerivation rec { pkg-config removeReferencesTo unzip + wrapGAppsHook ] ++ optionals withQt5 [ wrapQtAppsHook ] ++ optionals waylandSupport [ wayland wayland-protocols ]; @@ -209,6 +210,14 @@ stdenv.mkDerivation rec { /usr/share/fonts/truetype/freefont ${freefont_ttf}/share/fonts/truetype ''; + + # to prevent double wrapping of Qtwrap and Gwrap + dontWrapGApps = true; + + preFixup = '' + qtWrapperArgs+=("''${gappsWrapperArgs[@]}") + ''; + # - Touch plugins (plugins cache keyed off mtime and file size: # https://github.com/NixOS/nixpkgs/pull/35124#issuecomment-370552830 # - Remove references to the Qt development headers (used in error messages) From c78b94421357e9afc76dd11a08779b606101674e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 07:37:02 +0000 Subject: [PATCH 150/213] k3s: 1.26.3+k3s1 -> 1.26.4+k3s1 --- pkgs/applications/networking/cluster/k3s/1_26/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/cluster/k3s/1_26/default.nix b/pkgs/applications/networking/cluster/k3s/1_26/default.nix index 558e800cedf1..f7dbe7e6839e 100644 --- a/pkgs/applications/networking/cluster/k3s/1_26/default.nix +++ b/pkgs/applications/networking/cluster/k3s/1_26/default.nix @@ -47,10 +47,10 @@ # Those pieces of software we entirely ignore upstream's handling of, and just # make sure they're in the path if desired. let - k3sVersion = "1.26.3+k3s1"; # k3s git tag - k3sCommit = "01ea3ff27be0b04f945179171cec5a8e11a14f7b"; # k3s git commit at the above version - k3sRepoSha256 = "1wpciikmr4l2nw92i3wlz301vxjiyz8rlzkn8jhzcaiifykc565s"; - k3sVendorSha256 = "sha256-1HFLj3zSHV7RvA0fsQ/dPzwnkSRqE9TXXDA4m8OhwZE="; + k3sVersion = "1.26.4+k3s1"; # k3s git tag + k3sCommit = "8d0255af07e95b841952563253d27b0d10bd72f0"; # k3s git commit at the above version + k3sRepoSha256 = "0qlszdnlsvj3hzx2p0wl3zhaw908w8a62z6vlf2g69a3c75f55cs"; + k3sVendorSha256 = "sha256-JXTsZYtTspu/pWMRSS2BcegktawBJ6BK7YEKbz1J/ao="; # nix generated by update.sh # Based on the traefik charts here: https://github.com/k3s-io/k3s/blob/d71ab6317e22dd34673faa307a412a37a16767f6/scripts/download#L29-L32 From 424e7248cf4ba34ba872e603d56ad56ee1a81805 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 08:15:36 +0000 Subject: [PATCH 151/213] numix-icon-theme-square: 23.04.05 -> 23.04.20 --- pkgs/data/icons/numix-icon-theme-square/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/icons/numix-icon-theme-square/default.nix b/pkgs/data/icons/numix-icon-theme-square/default.nix index 0c64d55f0618..2dce715b6885 100644 --- a/pkgs/data/icons/numix-icon-theme-square/default.nix +++ b/pkgs/data/icons/numix-icon-theme-square/default.nix @@ -2,13 +2,13 @@ stdenvNoCC.mkDerivation rec { pname = "numix-icon-theme-square"; - version = "23.04.05"; + version = "23.04.20"; src = fetchFromGitHub { owner = "numixproject"; repo = pname; rev = version; - sha256 = "sha256-fyb0qHmZev7kH8/q6mk2WPT30Szx1/jLIweq12eAIaw="; + sha256 = "sha256-O9itWigot15qljmPx4msBa7ucb4j+Wb08q5UTsF2sB8="; }; nativeBuildInputs = [ gtk3 ]; From 63a73a2e802a723be2919cbaade1644dc8d1c338 Mon Sep 17 00:00:00 2001 From: Joachim Breitner Date: Fri, 21 Apr 2023 10:21:28 +0200 Subject: [PATCH 152/213] lhs2tex: distribute again (#227406) --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b166dd14de73..1ef33cc5cc8c 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -745,9 +745,6 @@ self: super: { inline-c-win32 = dontDistribute super.inline-c-win32; Southpaw = dontDistribute super.Southpaw; - # Hydra no longer allows building texlive packages. - lhs2tex = dontDistribute super.lhs2tex; - # https://ghc.haskell.org/trac/ghc/ticket/9825 vimus = overrideCabal (drv: { broken = pkgs.stdenv.isLinux && pkgs.stdenv.isi686; }) super.vimus; From 6cd3397a5ad077418b3f87a2ca2311d247893ac9 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Fri, 21 Apr 2023 09:44:09 +0200 Subject: [PATCH 153/213] maintainer-list: fix a few changed github usernames --- maintainers/maintainer-list.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index fa3f2990b9f6..068269395d87 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3518,7 +3518,7 @@ }; davidcromp = { email = "davidcrompton1192@gmail.com"; - github = "DavidCromp"; + github = "CyborgPotato"; githubId = 10701143; name = "David Crompton"; }; @@ -8417,7 +8417,7 @@ }; kristian-brucaj = { email = "kbrucaj@gmail.com"; - github = "Kristian-Brucaj"; + github = "Flameslice"; githubId = 8893110; name = "Kristian Brucaj"; }; @@ -14367,7 +14367,7 @@ name = "Smitty van Bodegom"; email = "me@smitop.com"; matrix = "@smitop:kde.org"; - github = "Smittyvb"; + github = "syvb"; githubId = 10530973; }; sna = { @@ -17333,7 +17333,7 @@ zseri = { name = "zseri"; email = "zseri.devel@ytrizja.de"; - github = "zseri"; + github = "fogti"; githubId = 1618343; keys = [{ fingerprint = "7AFB C595 0D3A 77BD B00F 947B 229E 63AE 5644 A96D"; From 13bb674e9548760bb707aaeef1b035d86d5e713b Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Fri, 21 Apr 2023 10:26:13 +0200 Subject: [PATCH 154/213] maintainer-list: fix mateodd25's github id --- maintainers/maintainer-list.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 068269395d87..eaa7e93f3f05 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -9590,7 +9590,7 @@ mateodd25 = { email = "mateodd@icloud.com"; github = "mateodd25"; - githubId = 854770; + githubId = 7878181; name = "Mateo Diaz"; }; math-42 = { From 485cceedacbed013a05451cd924b336bfe39eab0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 08:42:25 +0000 Subject: [PATCH 155/213] python310Packages.azure-mgmt-web: 7.0.0 -> 7.1.0 --- pkgs/development/python-modules/azure-mgmt-web/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-web/default.nix b/pkgs/development/python-modules/azure-mgmt-web/default.nix index ce4caf8e41e2..56a38ca05d95 100644 --- a/pkgs/development/python-modules/azure-mgmt-web/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-web/default.nix @@ -11,12 +11,12 @@ buildPythonPackage rec { pname = "azure-mgmt-web"; - version = "7.0.0"; + version = "7.1.0"; src = fetchPypi { inherit pname version; extension = "zip"; - hash = "sha256-WvyNgfiliEt6qawqy8Le8eifhxusMkoZbf6YcyY1SBA="; + hash = "sha256-WxbN5+MNwgRmuRH/vEmlcljH7ylYRyxNz2Ev8aAS8Vw="; }; propagatedBuildInputs = [ From fae6cd0126e08515175f225d1201280a85f87da1 Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Sat, 8 Apr 2023 14:27:09 +0200 Subject: [PATCH 156/213] kodiPackages.certifi: add support for system-wide cacert analog to 8d7cc9cac9ecdf95f554c5ea7ca15118baa06c39 Signed-off-by: Florian Brandes Co-authored-by: Sandro --- .../video/kodi/addons/certifi/default.nix | 17 +++- .../video/kodi/addons/certifi/env.patch | 86 +++++++++++++++++++ 2 files changed, 102 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/video/kodi/addons/certifi/env.patch diff --git a/pkgs/applications/video/kodi/addons/certifi/default.nix b/pkgs/applications/video/kodi/addons/certifi/default.nix index 0e0699752a91..8dd9c5702a2d 100644 --- a/pkgs/applications/video/kodi/addons/certifi/default.nix +++ b/pkgs/applications/video/kodi/addons/certifi/default.nix @@ -1,4 +1,4 @@ -{ lib, buildKodiAddon, fetchzip, addonUpdateScript }: +{ lib, buildKodiAddon, fetchzip, addonUpdateScript, cacert }: buildKodiAddon rec { pname = "certifi"; namespace = "script.module.certifi"; @@ -9,6 +9,21 @@ buildKodiAddon rec { sha256 = "sha256-kIPGEjmnHlgVb11W2RKBlrMy3/+kUOcQZiLCcnHCcno="; }; + patches = [ + # Add support for NIX_SSL_CERT_FILE + ./env.patch + ]; + + postPatch = '' + # Use our system-wide ca-bundle instead of the bundled one + ln -snvf "${cacert}/etc/ssl/certs/ca-bundle.crt" "lib/certifi/cacert.pem" + ''; + + propagatedNativeBuildInputs = [ + # propagate cacerts setup-hook to set up `NIX_SSL_CERT_FILE` + cacert + ]; + passthru = { pythonPath = "lib"; updateScript = addonUpdateScript { diff --git a/pkgs/applications/video/kodi/addons/certifi/env.patch b/pkgs/applications/video/kodi/addons/certifi/env.patch new file mode 100644 index 000000000000..087ab58e4414 --- /dev/null +++ b/pkgs/applications/video/kodi/addons/certifi/env.patch @@ -0,0 +1,86 @@ +diff --git a/lib/certifi/core.py b/lib/certifi/core.py +index de02898..c033d20 100644 +--- a/lib/certifi/core.py ++++ b/lib/certifi/core.py +@@ -4,15 +4,25 @@ certifi.py + + This module returns the installation location of cacert.pem or its contents. + """ ++import os + import sys + + ++def get_cacert_path_from_environ(): ++ path = os.environ.get("NIX_SSL_CERT_FILE", None) ++ ++ if path == "/no-cert-file.crt": ++ return None ++ ++ return path ++ ++ + if sys.version_info >= (3, 11): + + from importlib.resources import as_file, files + + _CACERT_CTX = None +- _CACERT_PATH = None ++ _CACERT_PATH = get_cacert_path_from_environ() + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the file +@@ -39,14 +49,16 @@ if sys.version_info >= (3, 11): + return _CACERT_PATH + + def contents() -> str: +- return files("certifi").joinpath("cacert.pem").read_text(encoding="ascii") ++ if _CACERT_PATH is not None: ++ return open(_CACERT_PATH, encoding="utf-8").read() ++ return files("certifi").joinpath("cacert.pem").read_text(encoding="utf-8") + + elif sys.version_info >= (3, 7): + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None +- _CACERT_PATH = None ++ _CACERT_PATH = get_cacert_path_from_environ() + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the +@@ -74,7 +86,9 @@ elif sys.version_info >= (3, 7): + return _CACERT_PATH + + def contents() -> str: +- return read_text("certifi", "cacert.pem", encoding="ascii") ++ if _CACERT_PATH is not None: ++ return open(_CACERT_PATH, encoding="utf-8").read() ++ return read_text("certifi", "cacert.pem", encoding="utf-8") + + else: + import os +@@ -84,6 +98,8 @@ else: + Package = Union[types.ModuleType, str] + Resource = Union[str, "os.PathLike"] + ++ _CACERT_PATH = get_cacert_path_from_environ() ++ + # This fallback will work for Python versions prior to 3.7 that lack the + # importlib.resources module but relies on the existing `where` function + # so won't address issues with environments like PyOxidizer that don't set +@@ -102,7 +118,14 @@ else: + def where() -> str: + f = os.path.dirname(__file__) + ++ if _CACERT_PATH is not None: ++ return _CACERT_PATH ++ + return os.path.join(f, "cacert.pem") + + def contents() -> str: +- return read_text("certifi", "cacert.pem", encoding="ascii") ++ if _CACERT_PATH is not None: ++ with open(_CACERT_PATH, encoding="utf-8") as data: ++ return data.read() ++ ++ return read_text("certifi", "cacert.pem", encoding="utf-8") From ee6a0a3fd90693c44c14ed551edfaf9f7dd2ce71 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Fri, 21 Apr 2023 11:38:42 +0300 Subject: [PATCH 157/213] gnuradio: Remove unsused fetchpatch and rec from main expressions --- pkgs/applications/radio/gnuradio/3.8.nix | 2 +- pkgs/applications/radio/gnuradio/3.9.nix | 3 +-- pkgs/applications/radio/gnuradio/default.nix | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/radio/gnuradio/3.8.nix b/pkgs/applications/radio/gnuradio/3.8.nix index 1c53482143e6..d8c53d2badfe 100644 --- a/pkgs/applications/radio/gnuradio/3.8.nix +++ b/pkgs/applications/radio/gnuradio/3.8.nix @@ -225,7 +225,7 @@ let inherit (shared) hasFeature; # function in -stdenv.mkDerivation rec { +stdenv.mkDerivation { inherit pname; inherit (shared) version diff --git a/pkgs/applications/radio/gnuradio/3.9.nix b/pkgs/applications/radio/gnuradio/3.9.nix index 170aa554e99d..7658b32be655 100644 --- a/pkgs/applications/radio/gnuradio/3.9.nix +++ b/pkgs/applications/radio/gnuradio/3.9.nix @@ -1,6 +1,5 @@ { lib, stdenv , fetchFromGitHub -, fetchpatch , cmake # Remove gcc and python references , removeReferencesTo @@ -259,7 +258,7 @@ let inherit (shared) hasFeature; # function in -stdenv.mkDerivation rec { +stdenv.mkDerivation { inherit pname; inherit (shared) version diff --git a/pkgs/applications/radio/gnuradio/default.nix b/pkgs/applications/radio/gnuradio/default.nix index 4a98fc0ddf8d..3233df7e37c5 100644 --- a/pkgs/applications/radio/gnuradio/default.nix +++ b/pkgs/applications/radio/gnuradio/default.nix @@ -1,6 +1,5 @@ { lib, stdenv , fetchFromGitHub -, fetchpatch , cmake # Remove gcc and python references , removeReferencesTo @@ -278,7 +277,7 @@ let inherit (shared) hasFeature; # function in -stdenv.mkDerivation rec { +stdenv.mkDerivation { inherit pname; inherit (shared) version From 73640c6fbaed78b530450a64674485dc934614d8 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sun, 16 Apr 2023 14:54:30 +0300 Subject: [PATCH 158/213] gnuradio3_9: Add libsndfile for gr-blocks --- pkgs/applications/radio/gnuradio/3.9.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/radio/gnuradio/3.9.nix b/pkgs/applications/radio/gnuradio/3.9.nix index 7658b32be655..263440f79c4b 100644 --- a/pkgs/applications/radio/gnuradio/3.9.nix +++ b/pkgs/applications/radio/gnuradio/3.9.nix @@ -140,6 +140,9 @@ let }; gr-blocks = { cmakeEnableFlag = "GR_BLOCKS"; + runtime = [ + libsndfile + ]; }; gr-fec = { cmakeEnableFlag = "GR_FEC"; From 1dd64003d29e611cebe98d10d52293270a539073 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sat, 15 Apr 2023 20:13:20 +0300 Subject: [PATCH 159/213] gnuradio: Add libsndfile for gr-blocks --- pkgs/applications/radio/gnuradio/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/radio/gnuradio/default.nix b/pkgs/applications/radio/gnuradio/default.nix index 3233df7e37c5..1c12454e21a3 100644 --- a/pkgs/applications/radio/gnuradio/default.nix +++ b/pkgs/applications/radio/gnuradio/default.nix @@ -142,6 +142,10 @@ let }; gr-blocks = { cmakeEnableFlag = "GR_BLOCKS"; + runtime = [ + # Required to compile wavfile blocks. + libsndfile + ]; }; gr-fec = { cmakeEnableFlag = "GR_FEC"; From 66d6ebe593b7c14b0f071979057347b43bfdf5e3 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Fri, 14 Apr 2023 22:49:24 +0300 Subject: [PATCH 160/213] mlterm: enable to configure many build features declaratively --- .../terminal-emulators/mlterm/default.nix | 171 ++++++++++++++---- 1 file changed, 137 insertions(+), 34 deletions(-) diff --git a/pkgs/applications/terminal-emulators/mlterm/default.nix b/pkgs/applications/terminal-emulators/mlterm/default.nix index bc93f167e85d..217c6552efdd 100644 --- a/pkgs/applications/terminal-emulators/mlterm/default.nix +++ b/pkgs/applications/terminal-emulators/mlterm/default.nix @@ -1,13 +1,98 @@ -{ stdenv, lib, fetchFromGitHub, pkg-config, autoconf, makeDesktopItem, nixosTests -, libX11, gdk-pixbuf, cairo, libXft, gtk3, vte -, harfbuzz #substituting glyphs with opentype fonts -, fribidi, m17n_lib #bidi and encoding +{ stdenv +, lib +, fetchFromGitHub +, pkg-config +, autoconf +, makeDesktopItem +, nixosTests +, vte +, harfbuzz # can be replaced with libotf +, fribidi +, m17n_lib , libssh2 #build-in ssh -, fcitx5, fcitx5-gtk, ibus, uim #IME +, fcitx5 +, fcitx5-gtk +, ibus +, uim #IME , wrapGAppsHook #color picker in mlconfig +, gdk-pixbuf +, gtk3 +, gtk ? gtk3 +# List of gui libraries to use. According to `./configure --help` ran on +# release 3.9.3, options are: (xlib|win32|fb|quartz|console|wayland|sdl2|beos) +, enableGuis ? { + xlib = enableX11; + fb = stdenv.isLinux; + quartz = stdenv.isDarwin; + wayland = stdenv.isLinux; + sdl2 = true; +} +, libxkbcommon +, wayland # for the "wayland" --with-gui option +, SDL2 # for the "sdl" --with-gui option +# List of typing engines, the default list enables compiling all of the +# available ones, as recorded on release 3.9.3 +, enableTypeEngines ? { + xcore = false; # Considered legacy + xft = enableX11; + cairo = true; +} +, libX11 +, libXft +, cairo +# List of external tools to create, this default list includes all default +# tools, as recorded on release 3.9.3. +, enableTools ? { + mlclient = true; + mlconfig = true; + mlcc = true; + mlterm-menu = true; + # Note that according to upstream's ./configure script, to disable + # mlimgloader you have to disable _all_ tools. See: + # https://github.com/arakiken/mlterm/issues/69 + mlimgloader = true; + registobmp = true; + mlfc = true; +} +# Whether to enable the X window system +, enableX11 ? stdenv.isLinux +# Most of the input methods and other build features are enabled by default, +# the following attribute set can be used to disable some of them. It's parsed +# when we set `configureFlags`. If you find other configure Flags that require +# dependencies, it'd be nice to make that contribution here. +, enableFeatures ? { + uim = !stdenv.isDarwin; + ibus = !stdenv.isDarwin; + fcitx = !stdenv.isDarwin; + m17n = !stdenv.isDarwin; + ssh2 = true; + bidi = true; + # Open Type layout support, (substituting glyphs with opentype fonts) + otl = true; +} +# Configure the Exec directive in the generated .desktop file +, desktopBinary ? ( + if enableGuis.xlib then + "mlterm" + else if enableGuis.wayland then + "mlterm-wl" + else if enableGuis.sdl2 then + "mlterm-sdl2" + else + throw "mlterm: couldn't figure out what desktopBinary to use." + ) }: -stdenv.mkDerivation rec { +let + # Returns a --with-feature=, or `--without-feature` if all attributes are false or don't + # exist. Used later in configureFlags + withFeaturesList = featureName: attrset: let + commaSepList = lib.concatStringsSep "," (builtins.attrNames (lib.filterAttrs (n: v: v) attrset)); + in + lib.withFeatureAs (commaSepList != "") featureName commaSepList + ; +in stdenv.mkDerivation rec { pname = "mlterm"; version = "3.9.3"; @@ -18,25 +103,41 @@ stdenv.mkDerivation rec { sha256 = "sha256-gfs5cdwUUwSBWwJJSaxrQGWJvLkI27RMlk5QvDALEDg="; }; - nativeBuildInputs = [ pkg-config autoconf wrapGAppsHook ]; + nativeBuildInputs = [ + pkg-config + autoconf + ] ++ lib.optionals enableTools.mlconfig [ + wrapGAppsHook + ]; buildInputs = [ - libX11 - gdk-pixbuf.dev - cairo - libXft - gtk3 - harfbuzz - fribidi + gtk vte - + gdk-pixbuf + ] ++ lib.optionals enableTypeEngines.xcore [ + libX11 + ] ++ lib.optionals enableTypeEngines.xft [ + libXft + ] ++ lib.optionals enableTypeEngines.cairo [ + cairo + ] ++ lib.optionals enableGuis.wayland [ + libxkbcommon + wayland + ] ++ lib.optionals enableGuis.sdl2 [ + SDL2 + ] ++ lib.optionals enableFeatures.otl [ + harfbuzz + ] ++ lib.optionals enableFeatures.bidi [ + fribidi + ] ++ lib.optionals enableFeatures.ssh2 [ libssh2 - ] ++ lib.optionals (!stdenv.isDarwin) [ - # Not supported on Darwin + ] ++ lib.optionals enableFeatures.m17n [ m17n_lib - + ] ++ lib.optionals enableFeatures.fcitx [ fcitx5 fcitx5-gtk + ] ++ lib.optionals enableFeatures.ibus [ ibus + ] ++ lib.optionals enableFeatures.uim [ uim ]; @@ -61,20 +162,13 @@ stdenv.mkDerivation rec { ''; configureFlags = [ - "--with-imagelib=gdk-pixbuf" #or mlimgloader depending on your bugs of choice - "--with-type-engines=cairo,xft,xcore" - "--with-gtk=3.0" - "--enable-ind" #indic scripts - "--enable-fribidi" #bidi scripts - "--with-tools=mlclient,mlconfig,mlcc,mlterm-menu,mlimgloader,registobmp,mlfc" - #mlterm-menu and mlconfig depend on enabling gnome.at-spi2-core - #and configuring ~/.mlterm/key correctly. - ] ++ lib.optionals (!stdenv.isDarwin) [ - "--with-x=yes" - "--with-gui=xlib,fb" - "--enable-m17nlib" #character encodings - ] ++ lib.optionals stdenv.isDarwin [ - "--with-gui=quartz" + (withFeaturesList "type-engines" enableTypeEngines) + (withFeaturesList "tools" enableTools) + (withFeaturesList "gui" enableGuis) + (lib.withFeature enableX11 "x") + ] ++ lib.optionals (gtk != null) [ + "--with-gtk=${lib.versions.major gtk.version}.0" + ] ++ (lib.mapAttrsToList (n: v: lib.enableFeature v n) enableFeatures) ++ [ ]; enableParallelBuilding = true; @@ -91,7 +185,7 @@ stdenv.mkDerivation rec { desktopItem = makeDesktopItem { name = "mlterm"; - exec = "mlterm %U"; + exec = "${desktopBinary} %U"; icon = "mlterm"; type = "Application"; comment = "Multi Lingual TERMinal emulator"; @@ -101,7 +195,15 @@ stdenv.mkDerivation rec { startupNotify = false; }; - passthru.tests.test = nixosTests.terminal-emulators.mlterm; + passthru = { + tests.test = nixosTests.terminal-emulators.mlterm; + inherit + enableTypeEngines + enableTools + enableGuis + enableFeatures + ; + }; meta = with lib; { description = "Multi Lingual TERMinal emulator"; @@ -109,5 +211,6 @@ stdenv.mkDerivation rec { license = licenses.bsd3; maintainers = with maintainers; [ ramkromberg atemu doronbehar ]; platforms = platforms.all; + mainProgram = desktopBinary; }; } From 52016d5cf70bdf0950349f64f9176a8113dc8904 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Tue, 18 Apr 2023 16:45:55 +0300 Subject: [PATCH 161/213] mlterm-wayland: init --- pkgs/top-level/all-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b89a588ea051..daccf835f94d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2572,6 +2572,9 @@ with pkgs; microcom = callPackage ../applications/terminal-emulators/microcom { }; mlterm = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/mlterm { }; + mlterm-wayland = mlterm.override { + enableX11 = false; + }; mrxvt = callPackage ../applications/terminal-emulators/mrxvt { }; From 088fe8674beeb34f1074f5d7790f086d4a17e262 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 21 Apr 2023 18:11:42 +0800 Subject: [PATCH 162/213] qogir-theme: 2022-11-09 -> 2023-02-27 https://github.com/vinceliuice/Qogir-theme/releases/tag/2023-02-27 --- pkgs/data/themes/qogir/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/themes/qogir/default.nix b/pkgs/data/themes/qogir/default.nix index 0685c55a5486..efbe4ac122c0 100644 --- a/pkgs/data/themes/qogir/default.nix +++ b/pkgs/data/themes/qogir/default.nix @@ -24,13 +24,13 @@ lib.checkListOfEnum "${pname}: tweaks" [ "image" "square" "round" ] tweaks stdenv.mkDerivation rec { inherit pname; - version = "2022-11-09"; + version = "2023-02-27"; src = fetchFromGitHub { owner = "vinceliuice"; repo = pname; rev = version; - sha256 = "VmMlebERe6LDyfD/lo8o4TvNrJ37m2OHC25JkUc6sig="; + sha256 = "oBUBSPlOCBEaRRFK5ZyoGlk+gwcE8LtdwxvL+iTfuMA="; }; nativeBuildInputs = [ @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Flat Design theme for GTK based desktop environments"; - homepage = "https://vinceliuice.github.io/Qogir-theme"; + homepage = "https://github.com/vinceliuice/Qogir-theme"; license = licenses.gpl3Only; platforms = platforms.unix; maintainers = [ maintainers.romildo ]; From 2634268fa65a862f44bc9353e041bbcabebd01f4 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Fri, 21 Apr 2023 12:48:49 +0300 Subject: [PATCH 163/213] gnuradio: Define a common logLib attribute Use it in all gnuradio modules. --- pkgs/applications/radio/gnss-sdr/default.nix | 7 ++----- pkgs/applications/radio/gnuradio/3.8.nix | 4 +++- pkgs/applications/radio/gnuradio/3.9.nix | 4 +++- pkgs/applications/radio/gnuradio/default.nix | 4 +++- pkgs/applications/radio/gqrx/default.nix | 2 +- pkgs/applications/radio/qradiolink/default.nix | 2 +- pkgs/development/gnuradio-modules/ais/default.nix | 4 ++-- pkgs/development/gnuradio-modules/grnet/default.nix | 4 ++-- pkgs/development/gnuradio-modules/gsm/default.nix | 4 ++-- pkgs/development/gnuradio-modules/limesdr/default.nix | 4 ++-- pkgs/development/gnuradio-modules/nacl/default.nix | 4 ++-- pkgs/development/gnuradio-modules/osmosdr/default.nix | 4 ++-- pkgs/development/gnuradio-modules/rds/default.nix | 4 ++-- pkgs/top-level/gnuradio-packages.nix | 7 ++----- 14 files changed, 29 insertions(+), 29 deletions(-) diff --git a/pkgs/applications/radio/gnss-sdr/default.nix b/pkgs/applications/radio/gnss-sdr/default.nix index 725f531dd072..c1d3950bed01 100644 --- a/pkgs/applications/radio/gnss-sdr/default.nix +++ b/pkgs/applications/radio/gnss-sdr/default.nix @@ -60,13 +60,10 @@ gnuradio.pkgs.mkDerivation rec { pugixml protobuf gnuradio.unwrapped.boost + gnuradio.unwrapped.logLib ] ++ lib.optionals (gnuradio.hasFeature "gr-uhd") [ gnuradio.unwrapped.uhd - ] ++ (if (lib.versionAtLeast gnuradio.unwrapped.versionAttr.major "3.10") then [ - gnuradio.unwrapped.spdlog - ] else [ - gnuradio.unwrapped.log4cpp - ]) ++ lib.optionals (enableRawUdp) [ + ] ++ lib.optionals (enableRawUdp) [ libpcap ] ++ lib.optionals (gnuradio.hasFeature "gr-ctrlport") [ thrift diff --git a/pkgs/applications/radio/gnuradio/3.8.nix b/pkgs/applications/radio/gnuradio/3.8.nix index d8c53d2badfe..e10d3df374e2 100644 --- a/pkgs/applications/radio/gnuradio/3.8.nix +++ b/pkgs/applications/radio/gnuradio/3.8.nix @@ -253,8 +253,10 @@ stdenv.mkDerivation { inherit boost volk - log4cpp ; + # Used by many gnuradio modules, the same attribute is present in + # gnuradio3.10 where there it's spdlog. + logLib = log4cpp; } // lib.optionalAttrs (hasFeature "gr-uhd") { inherit uhd; } // lib.optionalAttrs (hasFeature "gr-qtgui") { diff --git a/pkgs/applications/radio/gnuradio/3.9.nix b/pkgs/applications/radio/gnuradio/3.9.nix index 263440f79c4b..a393cd5528d5 100644 --- a/pkgs/applications/radio/gnuradio/3.9.nix +++ b/pkgs/applications/radio/gnuradio/3.9.nix @@ -285,8 +285,10 @@ stdenv.mkDerivation { inherit boost volk - log4cpp ; + # Used by many gnuradio modules, the same attribute is present in + # gnuradio3.10 where there it's spdlog. + logLib = log4cpp; } // lib.optionalAttrs (hasFeature "gr-uhd") { inherit uhd; } // lib.optionalAttrs (hasFeature "gr-qtgui") { diff --git a/pkgs/applications/radio/gnuradio/default.nix b/pkgs/applications/radio/gnuradio/default.nix index 1c12454e21a3..ca0f7fb97eac 100644 --- a/pkgs/applications/radio/gnuradio/default.nix +++ b/pkgs/applications/radio/gnuradio/default.nix @@ -305,8 +305,10 @@ stdenv.mkDerivation { inherit boost volk - spdlog ; + # Used by many gnuradio modules, the same attribute is present in + # previous gnuradio versions where there it's log4cpp. + logLib = spdlog; } // lib.optionalAttrs (hasFeature "gr-uhd") { inherit uhd; } // lib.optionalAttrs (hasFeature "gr-pdu") { diff --git a/pkgs/applications/radio/gqrx/default.nix b/pkgs/applications/radio/gqrx/default.nix index c011e5a4d0a7..3e3c3f6bef95 100644 --- a/pkgs/applications/radio/gqrx/default.nix +++ b/pkgs/applications/radio/gqrx/default.nix @@ -43,7 +43,7 @@ gnuradio3_8Minimal.pkgs.mkDerivation rec { wrapGAppsHook ]; buildInputs = [ - gnuradio3_8Minimal.unwrapped.log4cpp + gnuradio3_8Minimal.unwrapped.logLib mpir fftwFloat alsa-lib diff --git a/pkgs/applications/radio/qradiolink/default.nix b/pkgs/applications/radio/qradiolink/default.nix index 02542e503192..1bfb4c74f633 100644 --- a/pkgs/applications/radio/qradiolink/default.nix +++ b/pkgs/applications/radio/qradiolink/default.nix @@ -49,7 +49,7 @@ gnuradio3_8.pkgs.mkDerivation rec { buildInputs = [ gnuradio3_8.unwrapped.boost codec2 - gnuradio3_8.unwrapped.log4cpp + gnuradio3_8.unwrapped.logLib gmp libpulseaudio libconfig diff --git a/pkgs/development/gnuradio-modules/ais/default.nix b/pkgs/development/gnuradio-modules/ais/default.nix index 98b8229bc1ae..92abb23a5c57 100644 --- a/pkgs/development/gnuradio-modules/ais/default.nix +++ b/pkgs/development/gnuradio-modules/ais/default.nix @@ -6,7 +6,7 @@ , python , boost , cppunit -, log4cpp +, logLib , osmosdr , gmp , mpir @@ -41,7 +41,7 @@ mkDerivation rec { cppunit osmosdr boost - log4cpp + logLib gmp mpir fftwFloat diff --git a/pkgs/development/gnuradio-modules/grnet/default.nix b/pkgs/development/gnuradio-modules/grnet/default.nix index fc12abd8cfa5..817205cc0ca6 100644 --- a/pkgs/development/gnuradio-modules/grnet/default.nix +++ b/pkgs/development/gnuradio-modules/grnet/default.nix @@ -6,7 +6,7 @@ , cmake , pkg-config , boost -, log4cpp +, logLib , python , swig , mpir @@ -67,7 +67,7 @@ mkDerivation { buildInputs = [ boost - log4cpp + logLib doxygen mpir gmp diff --git a/pkgs/development/gnuradio-modules/gsm/default.nix b/pkgs/development/gnuradio-modules/gsm/default.nix index 835c5456668c..aef853943123 100644 --- a/pkgs/development/gnuradio-modules/gsm/default.nix +++ b/pkgs/development/gnuradio-modules/gsm/default.nix @@ -6,7 +6,7 @@ , cppunit , swig , boost -, log4cpp +, logLib , python , libosmocore , osmosdr @@ -32,7 +32,7 @@ mkDerivation { buildInputs = [ cppunit - log4cpp + logLib boost libosmocore osmosdr diff --git a/pkgs/development/gnuradio-modules/limesdr/default.nix b/pkgs/development/gnuradio-modules/limesdr/default.nix index 48bbc68c80a3..a9ed621cdf11 100644 --- a/pkgs/development/gnuradio-modules/limesdr/default.nix +++ b/pkgs/development/gnuradio-modules/limesdr/default.nix @@ -8,7 +8,7 @@ , doxygen , swig , python -, log4cpp +, logLib , mpir , boost , gmp @@ -42,7 +42,7 @@ in mkDerivation { python ]; buildInputs = [ - log4cpp + logLib mpir boost gmp diff --git a/pkgs/development/gnuradio-modules/nacl/default.nix b/pkgs/development/gnuradio-modules/nacl/default.nix index 1ffb0afee07e..9f9175eae058 100644 --- a/pkgs/development/gnuradio-modules/nacl/default.nix +++ b/pkgs/development/gnuradio-modules/nacl/default.nix @@ -6,7 +6,7 @@ , cppunit , swig , boost -, log4cpp +, logLib , python , libsodium }: @@ -31,7 +31,7 @@ mkDerivation { buildInputs = [ cppunit - log4cpp + logLib boost libsodium ]; diff --git a/pkgs/development/gnuradio-modules/osmosdr/default.nix b/pkgs/development/gnuradio-modules/osmosdr/default.nix index a9a47e4d50a4..07a353daa447 100644 --- a/pkgs/development/gnuradio-modules/osmosdr/default.nix +++ b/pkgs/development/gnuradio-modules/osmosdr/default.nix @@ -6,7 +6,7 @@ , gnuradio , cmake , pkg-config -, log4cpp +, logLib , mpir , boost , gmp @@ -44,7 +44,7 @@ in mkDerivation { outputs = [ "out" "dev" ]; buildInputs = [ - log4cpp + logLib mpir boost fftwFloat diff --git a/pkgs/development/gnuradio-modules/rds/default.nix b/pkgs/development/gnuradio-modules/rds/default.nix index 6e651cdd7e0c..7ffdd206474a 100644 --- a/pkgs/development/gnuradio-modules/rds/default.nix +++ b/pkgs/development/gnuradio-modules/rds/default.nix @@ -6,7 +6,7 @@ , pkg-config , swig , python -, log4cpp +, logLib , mpir , thrift , boost @@ -36,7 +36,7 @@ in mkDerivation { disabledForGRafter = "3.9"; buildInputs = [ - log4cpp + logLib mpir boost gmp diff --git a/pkgs/top-level/gnuradio-packages.nix b/pkgs/top-level/gnuradio-packages.nix index 7fc3c4860655..324a061c703e 100644 --- a/pkgs/top-level/gnuradio-packages.nix +++ b/pkgs/top-level/gnuradio-packages.nix @@ -19,15 +19,12 @@ let # Packages that are potentially overridden and used as deps here. boost volk + logLib ; inherit mkDerivationWith mkDerivation; } // lib.optionalAttrs (gnuradio.hasFeature "gr-uhd") { inherit (gnuradio) uhd; - } // (if (lib.versionAtLeast gnuradio.versionAttr.major "3.10") then { - inherit (gnuradio) spdlog; - } else { - inherit (gnuradio) log4cpp; - })); + }); in { inherit callPackage mkDerivation mkDerivationWith; From a1fb8a399cf4248828f6f05d064dba0b0dbc80b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sat, 15 Apr 2023 17:33:54 +0200 Subject: [PATCH 164/213] gnuradioPackages.osmosdr: enable for gnuradio 3.9 and 3.10 Add the latest gr-osmosdr version, 0.2.4, for use with gnuradio 3.9 and 3.10. Add new deps as needed. Closes https://github.com/NixOS/nixpkgs/issues/226296. --- .../development/gnuradio-modules/osmosdr/default.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pkgs/development/gnuradio-modules/osmosdr/default.nix b/pkgs/development/gnuradio-modules/osmosdr/default.nix index 07a353daa447..18b8229cebcc 100644 --- a/pkgs/development/gnuradio-modules/osmosdr/default.nix +++ b/pkgs/development/gnuradio-modules/osmosdr/default.nix @@ -7,6 +7,7 @@ , cmake , pkg-config , logLib +, libsndfile , mpir , boost , gmp @@ -27,6 +28,8 @@ let version = { "3.7" = "0.1.5"; "3.8" = "0.2.3"; + "3.9" = "0.2.4"; + "3.10" = "0.2.4"; }.${gnuradio.versionAttr.major}; src = fetchgit { url = "git://git.osmocom.org/gr-osmosdr"; @@ -34,12 +37,14 @@ let sha256 = { "3.7" = "0bf9bnc1c3c4yqqqgmg3nhygj6rcfmyk6pybi27f7461d2cw1drv"; "3.8" = "sha256-ZfI8MshhZOdJ1U5FlnZKXsg2Rsvb6oKg943ZVYd/IWo="; + "3.9" = "sha256-d0hbiJ44lEu8V4XX7JpZVSTQwwykwKPUfiqetRBI6uI="; + "3.10" = "sha256-d0hbiJ44lEu8V4XX7JpZVSTQwwykwKPUfiqetRBI6uI="; }.${gnuradio.versionAttr.major}; }; in mkDerivation { pname = "gr-osmosdr"; inherit version src; - disabledForGRafter = "3.9"; + disabledForGRafter = "3.11"; outputs = [ "out" "dev" ]; @@ -55,11 +60,16 @@ in mkDerivation { libbladeRF rtl-sdr soapysdr-with-plugins + ] ++ lib.optionals (gnuradio.hasFeature "gr-blocks") [ + libsndfile ] ++ lib.optionals (gnuradio.hasFeature "gr-uhd") [ uhd ] ++ lib.optionals (gnuradio.hasFeature "gr-ctrlport") [ thrift python.pkgs.thrift + ] ++ lib.optionals (gnuradio.hasFeature "python-support") [ + python.pkgs.numpy + python.pkgs.pybind11 ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.IOKit darwin.apple_sdk.frameworks.Security From cf7db74bf4f9bb11137d3639feb3161c1ca173ed Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sat, 15 Apr 2023 19:49:41 +0300 Subject: [PATCH 165/213] gqrx: Use latest gnuradio --- pkgs/applications/radio/gqrx/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/radio/gqrx/default.nix b/pkgs/applications/radio/gqrx/default.nix index 3e3c3f6bef95..e6bcffda2651 100644 --- a/pkgs/applications/radio/gqrx/default.nix +++ b/pkgs/applications/radio/gqrx/default.nix @@ -5,7 +5,7 @@ , qtbase , qtsvg , qtwayland -, gnuradio3_8Minimal +, gnuradioMinimal , thrift , mpir , fftwFloat @@ -25,7 +25,7 @@ assert portaudioSupport -> portaudio != null; # audio backends are mutually exclusive assert !(pulseaudioSupport && portaudioSupport); -gnuradio3_8Minimal.pkgs.mkDerivation rec { +gnuradioMinimal.pkgs.mkDerivation rec { pname = "gqrx"; version = "2.15.10"; @@ -43,21 +43,21 @@ gnuradio3_8Minimal.pkgs.mkDerivation rec { wrapGAppsHook ]; buildInputs = [ - gnuradio3_8Minimal.unwrapped.logLib + gnuradioMinimal.unwrapped.logLib mpir fftwFloat alsa-lib libjack2 - gnuradio3_8Minimal.unwrapped.boost + gnuradioMinimal.unwrapped.boost qtbase qtsvg qtwayland - gnuradio3_8Minimal.pkgs.osmosdr + gnuradioMinimal.pkgs.osmosdr rtl-sdr hackrf - ] ++ lib.optionals (gnuradio3_8Minimal.hasFeature "gr-ctrlport") [ + ] ++ lib.optionals (gnuradioMinimal.hasFeature "gr-ctrlport") [ thrift - gnuradio3_8Minimal.unwrapped.python.pkgs.thrift + gnuradioMinimal.unwrapped.python.pkgs.thrift ] ++ lib.optionals pulseaudioSupport [ libpulseaudio ] ++ lib.optionals portaudioSupport [ portaudio ]; From fed21bcd891a66a0aed21f4feb634900533800a9 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Thu, 20 Apr 2023 01:37:23 +0000 Subject: [PATCH 166/213] =?UTF-8?q?gnome.cheese:=2044.0=20=E2=86=92=2044.0?= =?UTF-8?q?.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/cheese/-/compare/44.0...44.0.1 --- pkgs/desktops/gnome/apps/cheese/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome/apps/cheese/default.nix b/pkgs/desktops/gnome/apps/cheese/default.nix index df031db88d06..ae17226a09fe 100644 --- a/pkgs/desktops/gnome/apps/cheese/default.nix +++ b/pkgs/desktops/gnome/apps/cheese/default.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { pname = "cheese"; - version = "44.0"; + version = "44.0.1"; outputs = [ "out" "man" "devdoc" ]; src = fetchurl { url = "mirror://gnome/sources/cheese/${lib.versions.major version}/${pname}-${version}.tar.xz"; - sha256 = "3yf/abII9Nz7fYb/YgqT+ThP3G/hBaP0rpO0OO+r9Fw="; + sha256 = "2SJAEnLN1BXCknA+UsazZEZqCyDuHbMgJRZEwoNgb9Q="; }; nativeBuildInputs = [ From b4c47512f08c1caf7028be97e6109d5db4b2300c Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Thu, 20 Apr 2023 01:39:17 +0000 Subject: [PATCH 167/213] =?UTF-8?q?gnome.aisleriot:=203.22.28=20=E2=86=92?= =?UTF-8?q?=203.22.29?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/aisleriot/-/compare/3.22.28...3.22.29 --- pkgs/desktops/gnome/games/aisleriot/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome/games/aisleriot/default.nix b/pkgs/desktops/gnome/games/aisleriot/default.nix index 0dcb7f9f0476..2455b04343a8 100644 --- a/pkgs/desktops/gnome/games/aisleriot/default.nix +++ b/pkgs/desktops/gnome/games/aisleriot/default.nix @@ -19,14 +19,14 @@ stdenv.mkDerivation rec { pname = "aisleriot"; - version = "3.22.28"; + version = "3.22.29"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "GNOME"; repo = "aisleriot"; rev = version; - sha256 = "sha256-/yxItJu8He6Zx7hDK5VaApqm9FJ6uK8KHIDj4adwb2Q="; + sha256 = "sha256-U6PQEGZkin2kAh6pjQK/R9mGlcCWMb1aUwN9yt2nxXM="; }; nativeBuildInputs = [ From 9ad519f5b6a9deaf4be31ef39bc96c8546a3c2ec Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 21 Apr 2023 10:48:21 +0000 Subject: [PATCH 168/213] =?UTF-8?q?gnome.gucharmap:=2015.0.3=20=E2=86=92?= =?UTF-8?q?=2015.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/gucharmap/-/compare/15.0.3...15.0.4 --- pkgs/desktops/gnome/core/gucharmap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome/core/gucharmap/default.nix b/pkgs/desktops/gnome/core/gucharmap/default.nix index 778d74d4160c..0b2484c7cb40 100644 --- a/pkgs/desktops/gnome/core/gucharmap/default.nix +++ b/pkgs/desktops/gnome/core/gucharmap/default.nix @@ -45,7 +45,7 @@ let }; in stdenv.mkDerivation rec { pname = "gucharmap"; - version = "15.0.3"; + version = "15.0.4"; outputs = [ "out" "lib" "dev" "devdoc" ]; @@ -54,7 +54,7 @@ in stdenv.mkDerivation rec { owner = "GNOME"; repo = "gucharmap"; rev = version; - sha256 = "sha256-Rdi48IJdiZy8Dt8hQCkQW2VFWBX1P2CtPPfowCcAEq0="; + sha256 = "sha256-lfWIaAr5FGWvDkNLOPe19hVQiFarbYVXwM78jZc5FFk="; }; strictDeps = true; From faab6c9fe333a54689a084029de2ced7fbab24d9 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 21 Apr 2023 10:41:16 +0000 Subject: [PATCH 169/213] =?UTF-8?q?gnome.gnome-terminal:=203.48.0=20?= =?UTF-8?q?=E2=86=92=203.48.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/gnome-terminal/-/compare/3.48.0...3.48.1 --- pkgs/desktops/gnome/core/gnome-terminal/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome/core/gnome-terminal/default.nix b/pkgs/desktops/gnome/core/gnome-terminal/default.nix index b1db819e1c2b..11b9606908fc 100644 --- a/pkgs/desktops/gnome/core/gnome-terminal/default.nix +++ b/pkgs/desktops/gnome/core/gnome-terminal/default.nix @@ -29,14 +29,14 @@ stdenv.mkDerivation rec { pname = "gnome-terminal"; - version = "3.48.0"; + version = "3.48.1"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "GNOME"; repo = "gnome-terminal"; rev = version; - sha256 = "sha256-Co0RnDprY1eJhXdOzs43nniXzpaFtBpnr13StMDw4+8="; + sha256 = "sha256-1t48JRESjAQubOmyK+QOhlp57iE5Ml0cqgy/2wjrLjE="; }; nativeBuildInputs = [ From f4fb71c8b150501cce3c1735a340356b327a88df Mon Sep 17 00:00:00 2001 From: Matthias Thym Date: Thu, 20 Apr 2023 19:15:49 +0200 Subject: [PATCH 170/213] qownnotes: add pbek as maintainer (cherry picked from commit fa94b1dfce307999e2f33af8892e6a6519117b45) --- pkgs/applications/office/qownnotes/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/office/qownnotes/default.nix b/pkgs/applications/office/qownnotes/default.nix index c7bc47a9f045..e00af4d56f98 100644 --- a/pkgs/applications/office/qownnotes/default.nix +++ b/pkgs/applications/office/qownnotes/default.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation { changelog = "https://www.qownnotes.org/changelog.html"; downloadPage = "https://github.com/pbek/QOwnNotes/releases/tag/v${version}"; license = licenses.gpl2Only; - maintainers = with maintainers; [ totoroot ]; + maintainers = with maintainers; [ pbek totoroot ]; platforms = platforms.unix; }; } From 2fd522fb62366dd5ca1aa5072a765041c1f2edf4 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 21 Apr 2023 13:54:33 +0300 Subject: [PATCH 171/213] treewide: fix darwin-specific callPackage combinations --- pkgs/top-level/all-packages.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a9cae64ed9a9..ca4aec2a569b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11526,16 +11526,16 @@ with pkgs; qovery-cli = callPackage ../tools/admin/qovery-cli { }; - qownnotes = darwin.apple_sdk_11_0.callPackage ../applications/office/qownnotes { - inherit (libsForQt5) qmake qtbase qtdeclarative qtsvg qttools qtwayland qtwebsockets qtx11extras qtxmlpatterns wrapQtAppsHook; + qownnotes = libsForQt5.callPackage ../applications/office/qownnotes { + stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; }; qpdf = callPackage ../development/libraries/qpdf { }; qprint = callPackage ../tools/text/qprint { }; - qscintilla = darwin.apple_sdk_11_0.callPackage ../development/libraries/qscintilla { - inherit (libsForQt5) qmake qtbase qtmacextras; + qscintilla = libsForQt5.callPackage ../development/libraries/qscintilla { + stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; }; qscintilla-qt4 = callPackage ../development/libraries/qscintilla-qt4 { }; @@ -33283,8 +33283,8 @@ with pkgs; quantomatic = callPackage ../applications/science/physics/quantomatic { }; - quassel = darwin.apple_sdk_11_0.callPackage ../applications/networking/irc/quassel { - inherit (libsForQt5) kconfigwidgets kcoreaddons knotifications knotifyconfig ktextwidgets kwidgetsaddons kxmlgui phonon qtbase qtscript mkDerivation qca-qt5; + quassel = libsForQt5.callPackage ../applications/networking/irc/quassel { + stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; }; quasselClient = quassel.override { From 76c7b656bfa9b20a4172f7901285560db4c2c695 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Tue, 20 Dec 2022 21:18:10 +0100 Subject: [PATCH 172/213] nixos/qemu-vm: refactor bootDisk generation using make-disk-image --- nixos/modules/virtualisation/qemu-vm.nix | 294 +++++++++++------------ 1 file changed, 144 insertions(+), 150 deletions(-) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 1619c0d9410f..2aa8a36a1cfc 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -55,6 +55,11 @@ let }; + selectPartitionTableLayout = { useEFIBoot, useDefaultFilesystems }: + if useDefaultFilesystems then + if useEFIBoot then "efi" else "legacy" + else "none"; + driveCmdline = idx: { file, driveExtraOpts, deviceExtraOpts, ... }: let drvId = "drive${toString idx}"; @@ -98,7 +103,6 @@ let addDeviceNames = imap1 (idx: drive: drive // { device = driveDeviceName idx; }); - # Shell script to start the VM. startVM = '' @@ -111,8 +115,23 @@ let NIX_DISK_IMAGE=$(readlink -f "''${NIX_DISK_IMAGE:-${toString config.virtualisation.diskImage}}") || test -z "$NIX_DISK_IMAGE" if test -n "$NIX_DISK_IMAGE" && ! test -e "$NIX_DISK_IMAGE"; then - ${qemu}/bin/qemu-img create -f qcow2 "$NIX_DISK_IMAGE" \ - ${toString config.virtualisation.diskSize}M + echo "Disk image do not exist, creating the virtualisation disk image..." + # If we are using a bootloader and default filesystems layout. + # We have to reuse the system image layout as a backing image format (CoW) + # So we can write on the top of it. + + # If we are not using the default FS layout, potentially, we are interested into + # performing operations in postDeviceCommands or at early boot on the raw device. + # We can still boot through QEMU direct kernel boot feature. + + # CoW prevent size to be attributed to an image. + # FIXME: raise this issue to upstream. + ${qemu}/bin/qemu-img create \ + ${concatStringsSep " \\\n" ([ "-f qcow2" ] + ++ optional (cfg.useBootLoader && cfg.useDefaultFilesystems) "-F qcow2 -b ${systemImage}/nixos.qcow2" + ++ optional (!(cfg.useBootLoader && cfg.useDefaultFilesystems)) "-o size=${toString config.virtualisation.diskSize}M" + ++ [ "$NIX_DISK_IMAGE" ])} + echo "Virtualisation disk image created." fi # Create a directory for storing temporary data of the running VM. @@ -158,13 +177,13 @@ let ${qemu}/bin/qemu-img create -f qcow2 -F qcow2 -b ${bootDisk}/disk.img "$TMPDIR/disk.img" fi - NIX_EFI_VARS=$(readlink -f "''${NIX_EFI_VARS:-${cfg.efiVars}}") + NIX_EFI_VARS=$(readlink -f "''${NIX_EFI_VARS:-${config.system.name}-efi-vars.fd}") ${lib.optionalString cfg.useEFIBoot '' # VM needs writable EFI vars if ! test -e "$NIX_EFI_VARS"; then - cp ${bootDisk}/efi-vars.fd "$NIX_EFI_VARS" + cp ${systemImage}/efi-vars.fd "$NIX_EFI_VARS" chmod 0644 "$NIX_EFI_VARS" fi ''} @@ -200,95 +219,29 @@ let regInfo = pkgs.closureInfo { rootPaths = config.virtualisation.additionalPaths; }; - - # Generate a hard disk image containing a /boot partition and GRUB - # in the MBR. Used when the `useBootLoader' option is set. - # Uses `runInLinuxVM` to create the image in a throwaway VM. - # See note [Disk layout with `useBootLoader`]. - # FIXME: use nixos/lib/make-disk-image.nix. - bootDisk = - pkgs.vmTools.runInLinuxVM ( - pkgs.runCommand "nixos-boot-disk" - { preVM = - '' - mkdir $out - diskImage=$out/disk.img - ${qemu}/bin/qemu-img create -f qcow2 $diskImage "120M" - ${lib.optionalString cfg.useEFIBoot '' - efiVars=$out/efi-vars.fd - cp ${cfg.efi.variables} $efiVars - chmod 0644 $efiVars - ''} - ''; - buildInputs = [ pkgs.util-linux ]; - QEMU_OPTS = "-nographic -serial stdio -monitor none" - + lib.optionalString cfg.useEFIBoot ( - " -drive if=pflash,format=raw,unit=0,readonly=on,file=${cfg.efi.firmware}" - + " -drive if=pflash,format=raw,unit=1,file=$efiVars"); - } - '' - # Create a /boot EFI partition with 120M and arbitrary but fixed GUIDs for reproducibility - ${pkgs.gptfdisk}/bin/sgdisk \ - --set-alignment=1 --new=1:34:2047 --change-name=1:BIOSBootPartition --typecode=1:ef02 \ - --set-alignment=512 --largest-new=2 --change-name=2:EFISystem --typecode=2:ef00 \ - --attributes=1:set:1 \ - --attributes=2:set:2 \ - --disk-guid=97FD5997-D90B-4AA3-8D16-C1723AEA73C1 \ - --partition-guid=1:1C06F03B-704E-4657-B9CD-681A087A2FDC \ - --partition-guid=2:970C694F-AFD0-4B99-B750-CDB7A329AB6F \ - --hybrid 2 \ - --recompute-chs /dev/vda - - ${optionalString (config.boot.loader.grub.device != "/dev/vda") - # In this throwaway VM, we only have the /dev/vda disk, but the - # actual VM described by `config` (used by `switch-to-configuration` - # below) may set `boot.loader.grub.device` to a different device - # that's nonexistent in the throwaway VM. - # Create a symlink for that device, so that the `grub-install` - # by `switch-to-configuration` will hit /dev/vda anyway. - '' - ln -s /dev/vda ${config.boot.loader.grub.device} - '' - } - - ${pkgs.dosfstools}/bin/mkfs.fat -F16 /dev/vda2 - export MTOOLS_SKIP_CHECK=1 - ${pkgs.mtools}/bin/mlabel -i /dev/vda2 ::boot - - # Mount /boot; load necessary modules first. - ${pkgs.kmod}/bin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/nls/nls_cp437.ko.xz || true - ${pkgs.kmod}/bin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/nls/nls_iso8859-1.ko.xz || true - ${pkgs.kmod}/bin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/fat/fat.ko.xz || true - ${pkgs.kmod}/bin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/fat/vfat.ko.xz || true - ${pkgs.kmod}/bin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/efivarfs/efivarfs.ko.xz || true - mkdir /boot - mount /dev/vda2 /boot - - ${optionalString config.boot.loader.efi.canTouchEfiVariables '' - mount -t efivarfs efivarfs /sys/firmware/efi/efivars - ''} - - # This is needed for GRUB 0.97, which doesn't know about virtio devices. - mkdir /boot/grub - echo '(hd0) /dev/vda' > /boot/grub/device.map - - # This is needed for systemd-boot to find ESP, and udev is not available here to create this - mkdir -p /dev/block - ln -s /dev/vda2 /dev/block/254:2 - - # Set up system profile (normally done by nixos-rebuild / nix-env --set) - mkdir -p /nix/var/nix/profiles - ln -s ${config.system.build.toplevel} /nix/var/nix/profiles/system-1-link - ln -s /nix/var/nix/profiles/system-1-link /nix/var/nix/profiles/system - - # Install bootloader - touch /etc/NIXOS - export NIXOS_INSTALL_BOOTLOADER=1 - ${config.system.build.toplevel}/bin/switch-to-configuration boot - - umount /boot - '' # */ - ); + # System image is akin to a complete NixOS install with + # a boot partition and root partition. + systemImage = import ../../lib/make-disk-image.nix { + inherit pkgs config lib; + additionalPaths = [ regInfo ]; + format = "qcow2"; + onlyNixStore = false; + partitionTableType = selectPartitionTableLayout { inherit (cfg) useDefaultFilesystems useEFIBoot; }; + # Bootloader should be installed on the system image only if we are booting through bootloaders. + # Though, if a user is not using our default filesystems, it is possible to not have any ESP + # or a strange partition table that's incompatible with GRUB configuration. + # As a consequence, this may lead to disk image creation failures. + # To avoid this, we prefer to let the user find out about how to install the bootloader on its ESP/disk. + # Usually, this can be through building your own disk image. + # TODO: If a user is interested into a more fine grained heuristic for `installBootLoader` + # by examining the actual contents of `cfg.fileSystems`, please send a PR. + installBootLoader = cfg.useBootLoader && cfg.useDefaultFilesystems; + touchEFIVars = cfg.useEFIBoot; + diskSize = "auto"; + additionalSpace = "0M"; + copyChannel = false; + OVMF = cfg.efi.OVMF; + }; storeImage = import ../../lib/make-disk-image.nix { inherit pkgs config lib; @@ -297,17 +250,42 @@ let onlyNixStore = true; partitionTableType = "none"; installBootLoader = false; + touchEFIVars = false; diskSize = "auto"; additionalSpace = "0M"; copyChannel = false; }; + bootConfiguration = + if cfg.useDefaultFilesystems + then + if cfg.useBootLoader + then + if cfg.useEFIBoot then "efi_bootloading_with_default_fs" + else "legacy_bootloading_with_default_fs" + else + "direct_boot_with_default_fs" + else + "custom"; + suggestedRootDevice = { + "efi_bootloading_with_default_fs" = "${cfg.bootLoaderDevice}2"; + "legacy_bootloading_with_default_fs" = "${cfg.bootLoaderDevice}1"; + "direct_boot_with_default_fs" = cfg.bootLoaderDevice; + # This will enforce a NixOS module type checking error + # to ask explicitly the user to set a rootDevice. + # As it will look like `rootDevice = lib.mkDefault null;` after + # all "computations". + "custom" = null; + }.${bootConfiguration}; in { imports = [ ../profiles/qemu-guest.nix (mkRenamedOptionModule [ "virtualisation" "pathsInNixDB" ] [ "virtualisation" "additionalPaths" ]) + (mkRemovedOptionModule [ "virtualisation" "bootDevice" ] "This option was renamed to `virtualisation.rootDevice`, as it was incorrectly named and misleading. Take the time to review what you want to do and look at the new options like `virtualisation.{bootLoaderDevice, bootPartition}`, open an issue in case of issues.") + (mkRemovedOptionModule [ "virtualisation" "efiVars" ] "This option was removed, it is possible to provide a template UEFI variable with `virtualisation.efi.variables` ; if this option is important to you, open an issue") + (mkRemovedOptionModule [ "virtualisation" "persistBootDevice" ] "Boot device is always persisted if you use a bootloader through the root disk image ; if this does not work for your usecase, please examine carefully what `virtualisation.{bootLoaderDevice, rootDevice, bootPartition}` options offers you and open an issue explaining your need.`") ]; options = { @@ -362,13 +340,47 @@ in ''; }; - virtualisation.bootDevice = + virtualisation.bootLoaderDevice = mkOption { type = types.path; + default = lookupDriveDeviceName "root" cfg.qemu.drives; + defaultText = literalExpression ''lookupDriveDeviceName "root" cfg.qemu.drives''; example = "/dev/vda"; description = lib.mdDoc '' - The disk to be used for the root filesystem. + The disk to be used for the boot filesystem. + By default, it is the same disk as the root filesystem. + ''; + }; + + virtualisation.bootPartition = + mkOption { + type = types.nullOr types.path; + default = if cfg.useEFIBoot then "${cfg.bootLoaderDevice}1" else null; + defaultText = literalExpression ''if cfg.useEFIBoot then "''${cfg.bootLoaderDevice}1" else null''; + example = "/dev/vda1"; + description = + lib.mdDoc '' + The boot partition to be used to mount /boot filesystem. + In legacy boots, this should be null. + By default, in EFI boot, it is the first partition of the boot device. + ''; + }; + + virtualisation.rootDevice = + mkOption { + type = types.nullOr types.path; + example = "/dev/vda2"; + description = + lib.mdDoc '' + The disk or partition to be used for the root filesystem. + By default (read the source code for more details): + + - under EFI with a bootloader: 2nd partition of the boot disk + - in legacy boot with a bootloader: 1st partition of the boot disk + - in direct boot (i.e. without a bootloader): whole disk + + In case you are not using a default boot device or a default filesystem, you have to set explicitly your root device. ''; }; @@ -749,10 +761,22 @@ in }; virtualisation.efi = { + OVMF = mkOption { + type = types.package; + default = (pkgs.OVMF.override { + secureBoot = cfg.useSecureBoot; + }).fd; + defaultText = ''(pkgs.OVMF.override { + secureBoot = cfg.useSecureBoot; + }).fd''; + description = + lib.mdDoc "OVMF firmware package, defaults to OVMF configured with secure boot if needed."; + }; + firmware = mkOption { type = types.path; - default = pkgs.OVMF.firmware; - defaultText = literalExpression "pkgs.OVMF.firmware"; + default = cfg.efi.OVMF.firmware; + defaultText = literalExpression "cfg.efi.OVMF.firmware"; description = lib.mdDoc '' Firmware binary for EFI implementation, defaults to OVMF. @@ -761,8 +785,8 @@ in variables = mkOption { type = types.path; - default = pkgs.OVMF.variables; - defaultText = literalExpression "pkgs.OVMF.variables"; + default = cfg.efi.OVMF.variables; + defaultText = literalExpression "cfg.efi.OVMF.variables"; description = lib.mdDoc '' Platform-specific flash binary for EFI variables, implementation-dependent to the EFI firmware. @@ -786,18 +810,17 @@ in ''; }; - virtualisation.efiVars = + virtualisation.useSecureBoot = mkOption { - type = types.str; - default = "./${config.system.name}-efi-vars.fd"; - defaultText = literalExpression ''"./''${config.system.name}-efi-vars.fd"''; + type = types.bool; + default = false; description = lib.mdDoc '' - Path to nvram image containing UEFI variables. The will be created - on startup if it does not exist. + Enable Secure Boot support in the EFI firmware. ''; }; + virtualisation.bios = mkOption { type = types.nullOr types.package; @@ -853,30 +876,13 @@ in ${opt.writableStore} = false; ''; - # Note [Disk layout with `useBootLoader`] - # - # If `useBootLoader = true`, we configure 2 drives: - # `/dev/?da` for the root disk, and `/dev/?db` for the boot disk - # which has the `/boot` partition and the boot loader. - # Concretely: - # - # * The second drive's image `disk.img` is created in `bootDisk = ...` - # using a throwaway VM. Note that there the disk is always `/dev/vda`, - # even though in the final VM it will be at `/dev/*b`. - # * The disks are attached in `virtualisation.qemu.drives`. - # Their order makes them appear as devices `a`, `b`, etc. - # * `fileSystems."/boot"` is adjusted to be on device `b`. - # * The disk.img is recreated each time the VM is booted unless - # virtualisation.persistBootDevice is set. - - # If `useBootLoader`, GRUB goes to the second disk, see - # note [Disk layout with `useBootLoader`]. - boot.loader.grub.device = mkVMOverride ( - if cfg.useBootLoader - then driveDeviceName 2 # second disk - else cfg.bootDevice - ); + # In UEFI boot, we use a EFI-only partition table layout, thus GRUB will fail when trying to install + # legacy and UEFI. In order to avoid this, we have to put "nodev" to force UEFI-only installs. + # Otherwise, we set the proper bootloader device for this. + # FIXME: make a sense of this mess wrt to multiple ESP present in the system, probably use boot.efiSysMountpoint? + boot.loader.grub.device = mkVMOverride (if cfg.useEFIBoot then "nodev" else cfg.bootLoaderDevice); boot.loader.grub.gfxmodeBios = with cfg.resolution; "${toString x}x${toString y}"; + virtualisation.rootDevice = mkDefault suggestedRootDevice; boot.initrd.kernelModules = optionals (cfg.useNixStoreImage && !cfg.writableStore) [ "erofs" ]; @@ -890,10 +896,10 @@ in '' # If the disk image appears to be empty, run mke2fs to # initialise. - FSTYPE=$(blkid -o value -s TYPE ${cfg.bootDevice} || true) - PARTTYPE=$(blkid -o value -s PTTYPE ${cfg.bootDevice} || true) + FSTYPE=$(blkid -o value -s TYPE ${cfg.rootDevice} || true) + PARTTYPE=$(blkid -o value -s PTTYPE ${cfg.rootDevice} || true) if test -z "$FSTYPE" -a -z "$PARTTYPE"; then - mke2fs -t ext4 ${cfg.bootDevice} + mke2fs -t ext4 ${cfg.rootDevice} fi ''; @@ -939,8 +945,6 @@ in optional cfg.writableStore "overlay" ++ optional (cfg.qemu.diskInterface == "scsi") "sym53c8xx"; - virtualisation.bootDevice = mkDefault (driveDeviceName 1); - virtualisation.additionalPaths = [ config.system.build.toplevel ]; virtualisation.sharedDirectories = { @@ -997,7 +1001,7 @@ in ]) (mkIf cfg.useEFIBoot [ "-drive if=pflash,format=raw,unit=0,readonly=on,file=${cfg.efi.firmware}" - "-drive if=pflash,format=raw,unit=1,file=$NIX_EFI_VARS" + "-drive if=pflash,format=raw,unit=1,readonly=off,file=$NIX_EFI_VARS" ]) (mkIf (cfg.bios != null) [ "-bios ${cfg.bios}/bios.bin" @@ -1013,23 +1017,14 @@ in file = ''"$NIX_DISK_IMAGE"''; driveExtraOpts.cache = "writeback"; driveExtraOpts.werror = "report"; + deviceExtraOpts.bootindex = "1"; }]) (mkIf cfg.useNixStoreImage [{ name = "nix-store"; file = ''"$TMPDIR"/store.img''; - deviceExtraOpts.bootindex = if cfg.useBootLoader then "3" else "2"; + deviceExtraOpts.bootindex = "2"; driveExtraOpts.format = if cfg.writableStore then "qcow2" else "raw"; }]) - (mkIf cfg.useBootLoader [ - # The order of this list determines the device names, see - # note [Disk layout with `useBootLoader`]. - { - name = "boot"; - file = ''"$TMPDIR"/disk.img''; - driveExtraOpts.media = "disk"; - deviceExtraOpts.bootindex = "1"; - } - ]) (imap0 (idx: _: { file = "$(pwd)/empty${toString idx}.qcow2"; driveExtraOpts.werror = "report"; @@ -1065,7 +1060,7 @@ in device = "tmpfs"; fsType = "tmpfs"; } else { - device = cfg.bootDevice; + device = cfg.rootDevice; fsType = "ext4"; autoFormat = true; }); @@ -1086,9 +1081,8 @@ in options = [ "mode=0755" ]; neededForBoot = true; }; - # see note [Disk layout with `useBootLoader`] - "/boot" = lib.mkIf cfg.useBootLoader { - device = "${lookupDriveDeviceName "boot" cfg.qemu.drives}2"; # 2 for e.g. `vdb2`, as created in `bootDisk` + "/boot" = lib.mkIf (cfg.useBootLoader && cfg.bootPartition != null) { + device = cfg.bootPartition; # 1 for e.g. `vda1`, as created in `systemImage` fsType = "vfat"; noCheck = true; # fsck fails on a r/o filesystem }; From 58f4c3944db804bd28d35ceb4687961683052a91 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sun, 16 Oct 2022 00:18:03 +0200 Subject: [PATCH 173/213] =?UTF-8?q?nixos/tests(treewide):=20vdb=20?= =?UTF-8?q?=E2=86=92=20vda,=20vdc=20=E2=86=92=20vdb,=20vdd=20=E2=86=92=20v?= =?UTF-8?q?dc,=20=E2=80=A6=20/=20bootDevice=20=E2=86=92=20rootDevice?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nixos/tests/hibernate.nix | 2 +- nixos/tests/initrd-luks-empty-passphrase.nix | 10 +++++----- nixos/tests/installer.nix | 3 ++- nixos/tests/luks.nix | 8 ++++---- nixos/tests/lvm2/systemd-stage-1.nix | 8 ++++---- nixos/tests/non-default-filesystems.nix | 3 ++- nixos/tests/swap-file-btrfs.nix | 2 +- nixos/tests/swap-partition.nix | 2 +- nixos/tests/systemd-initrd-btrfs-raid.nix | 8 ++++---- nixos/tests/systemd-initrd-luks-fido2.nix | 8 ++++---- nixos/tests/systemd-initrd-luks-keyfile.nix | 6 +++--- nixos/tests/systemd-initrd-luks-password.nix | 12 ++++++------ nixos/tests/systemd-initrd-luks-tpm2.nix | 8 ++++---- nixos/tests/systemd-initrd-swraid.nix | 6 +++--- nixos/tests/zfs.nix | 12 ++++++------ 15 files changed, 50 insertions(+), 48 deletions(-) diff --git a/nixos/tests/hibernate.nix b/nixos/tests/hibernate.nix index cb75322ca5f9..4d0b53e95b32 100644 --- a/nixos/tests/hibernate.nix +++ b/nixos/tests/hibernate.nix @@ -63,7 +63,7 @@ in makeTest { # Small root disk for installer 512 ]; - virtualisation.bootDevice = "/dev/vdb"; + virtualisation.rootDevice = "/dev/vdb"; }; }; diff --git a/nixos/tests/initrd-luks-empty-passphrase.nix b/nixos/tests/initrd-luks-empty-passphrase.nix index 41765a395ec6..d2805f2f1734 100644 --- a/nixos/tests/initrd-luks-empty-passphrase.nix +++ b/nixos/tests/initrd-luks-empty-passphrase.nix @@ -30,26 +30,26 @@ in { specialisation.boot-luks-wrong-keyfile.configuration = { boot.initrd.luks.devices = lib.mkVMOverride { cryptroot = { - device = "/dev/vdc"; + device = "/dev/vdb"; keyFile = "/etc/cryptroot.key"; tryEmptyPassphrase = true; fallbackToPassword = !systemdStage1; }; }; - virtualisation.bootDevice = "/dev/mapper/cryptroot"; + virtualisation.rootDevice = "/dev/mapper/cryptroot"; boot.initrd.secrets."/etc/cryptroot.key" = keyfile; }; specialisation.boot-luks-missing-keyfile.configuration = { boot.initrd.luks.devices = lib.mkVMOverride { cryptroot = { - device = "/dev/vdc"; + device = "/dev/vdb"; keyFile = "/etc/cryptroot.key"; tryEmptyPassphrase = true; fallbackToPassword = !systemdStage1; }; }; - virtualisation.bootDevice = "/dev/mapper/cryptroot"; + virtualisation.rootDevice = "/dev/mapper/cryptroot"; }; }; @@ -76,7 +76,7 @@ in { # Create encrypted volume machine.wait_for_unit("multi-user.target") - machine.succeed("echo "" | cryptsetup luksFormat /dev/vdc --batch-mode") + machine.succeed("echo "" | cryptsetup luksFormat /dev/vdb --batch-mode") machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-luks-wrong-keyfile.conf") machine.succeed("sync") machine.crash() diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index d441765fe194..f385a99ce652 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -316,8 +316,9 @@ let # installer. This ensures the target disk (/dev/vda) is # the same during and after installation. virtualisation.emptyDiskImages = [ 512 ]; - virtualisation.bootDevice = + virtualisation.rootDevice = if grubVersion == 1 then "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_drive2" else "/dev/vdb"; + virtualisation.bootLoaderDevice = "/dev/vda"; virtualisation.qemu.diskInterface = if grubVersion == 1 then "scsi" else "virtio"; diff --git a/nixos/tests/luks.nix b/nixos/tests/luks.nix index 82f5095cb260..c2b95c6a95fb 100644 --- a/nixos/tests/luks.nix +++ b/nixos/tests/luks.nix @@ -18,10 +18,10 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { boot-luks.configuration = { boot.initrd.luks.devices = lib.mkVMOverride { # We have two disks and only type one password - key reuse is in place - cryptroot.device = "/dev/vdc"; - cryptroot2.device = "/dev/vdd"; + cryptroot.device = "/dev/vdb"; + cryptroot2.device = "/dev/vdc"; }; - virtualisation.bootDevice = "/dev/mapper/cryptroot"; + virtualisation.rootDevice = "/dev/mapper/cryptroot"; }; boot-luks-custom-keymap.configuration = lib.mkMerge [ boot-luks.configuration @@ -37,8 +37,8 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { testScript = '' # Create encrypted volume machine.wait_for_unit("multi-user.target") + machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdb -") machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdc -") - machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdd -") # Boot from the encrypted disk machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-luks.conf") diff --git a/nixos/tests/lvm2/systemd-stage-1.nix b/nixos/tests/lvm2/systemd-stage-1.nix index 617ba77b1796..b711cd22d7f4 100644 --- a/nixos/tests/lvm2/systemd-stage-1.nix +++ b/nixos/tests/lvm2/systemd-stage-1.nix @@ -1,18 +1,18 @@ { kernelPackages ? null, flavour }: let preparationCode = { raid = '' - machine.succeed("vgcreate test_vg /dev/vdc /dev/vdd") + machine.succeed("vgcreate test_vg /dev/vdb /dev/vdc") machine.succeed("lvcreate -L 512M --type raid0 test_vg -n test_lv") ''; thinpool = '' - machine.succeed("vgcreate test_vg /dev/vdc") + machine.succeed("vgcreate test_vg /dev/vdb") machine.succeed("lvcreate -L 512M -T test_vg/test_thin_pool") machine.succeed("lvcreate -n test_lv -V 16G --thinpool test_thin_pool test_vg") ''; vdo = '' - machine.succeed("vgcreate test_vg /dev/vdc") + machine.succeed("vgcreate test_vg /dev/vdb") machine.succeed("lvcreate --type vdo -n test_lv -L 6G -V 12G test_vg/vdo_pool_lv") ''; }.${flavour}; @@ -79,7 +79,7 @@ in import ../make-test-python.nix ({ pkgs, ... }: { kernelPackages = lib.mkIf (kernelPackages != null) kernelPackages; }; - specialisation.boot-lvm.configuration.virtualisation.bootDevice = "/dev/test_vg/test_lv"; + specialisation.boot-lvm.configuration.virtualisation.rootDevice = "/dev/test_vg/test_lv"; }; testScript = '' diff --git a/nixos/tests/non-default-filesystems.nix b/nixos/tests/non-default-filesystems.nix index 7fa75aaad724..d4e8bfbc65e9 100644 --- a/nixos/tests/non-default-filesystems.nix +++ b/nixos/tests/non-default-filesystems.nix @@ -5,9 +5,10 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: nodes.machine = { config, pkgs, lib, ... }: let - disk = config.virtualisation.bootDevice; + disk = config.virtualisation.rootDevice; in { + virtualisation.rootDevice = "/dev/vda"; virtualisation.useDefaultFilesystems = false; boot.initrd.availableKernelModules = [ "btrfs" ]; diff --git a/nixos/tests/swap-file-btrfs.nix b/nixos/tests/swap-file-btrfs.nix index 4f73942b5f32..d9fcd2be1160 100644 --- a/nixos/tests/swap-file-btrfs.nix +++ b/nixos/tests/swap-file-btrfs.nix @@ -9,7 +9,7 @@ import ./make-test-python.nix ({ lib, ... }: { virtualisation.useDefaultFilesystems = false; - virtualisation.bootDevice = "/dev/vda"; + virtualisation.rootDevice = "/dev/vda"; boot.initrd.postDeviceCommands = '' ${pkgs.btrfs-progs}/bin/mkfs.btrfs --label root /dev/vda diff --git a/nixos/tests/swap-partition.nix b/nixos/tests/swap-partition.nix index 2279630b57b8..ddcaeb95453e 100644 --- a/nixos/tests/swap-partition.nix +++ b/nixos/tests/swap-partition.nix @@ -7,7 +7,7 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { virtualisation.useDefaultFilesystems = false; - virtualisation.bootDevice = "/dev/vda1"; + virtualisation.rootDevice = "/dev/vda1"; boot.initrd.postDeviceCommands = '' if ! test -b /dev/vda1; then diff --git a/nixos/tests/systemd-initrd-btrfs-raid.nix b/nixos/tests/systemd-initrd-btrfs-raid.nix index 40fd2d4dc611..c9cdf0060b1b 100644 --- a/nixos/tests/systemd-initrd-btrfs-raid.nix +++ b/nixos/tests/systemd-initrd-btrfs-raid.nix @@ -21,14 +21,14 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { fileSystems = lib.mkVMOverride { "/".fsType = lib.mkForce "btrfs"; }; - virtualisation.bootDevice = "/dev/vdc"; + virtualisation.rootDevice = "/dev/vdb"; }; }; testScript = '' # Create RAID - machine.succeed("mkfs.btrfs -d raid0 /dev/vdc /dev/vdd") - machine.succeed("mkdir -p /mnt && mount /dev/vdc /mnt && echo hello > /mnt/test && umount /mnt") + machine.succeed("mkfs.btrfs -d raid0 /dev/vdb /dev/vdc") + machine.succeed("mkdir -p /mnt && mount /dev/vdb /mnt && echo hello > /mnt/test && umount /mnt") # Boot from the RAID machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-btrfs-raid.conf") @@ -38,7 +38,7 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { # Ensure we have successfully booted from the RAID assert "(initrd)" in machine.succeed("systemd-analyze") # booted with systemd in stage 1 - assert "/dev/vdc on / type btrfs" in machine.succeed("mount") + assert "/dev/vdb on / type btrfs" in machine.succeed("mount") assert "hello" in machine.succeed("cat /test") assert "Total devices 2" in machine.succeed("btrfs filesystem show") ''; diff --git a/nixos/tests/systemd-initrd-luks-fido2.nix b/nixos/tests/systemd-initrd-luks-fido2.nix index 133e552a3dc9..e80d95f79c7e 100644 --- a/nixos/tests/systemd-initrd-luks-fido2.nix +++ b/nixos/tests/systemd-initrd-luks-fido2.nix @@ -19,19 +19,19 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { specialisation.boot-luks.configuration = { boot.initrd.luks.devices = lib.mkVMOverride { cryptroot = { - device = "/dev/vdc"; + device = "/dev/vdb"; crypttabExtraOpts = [ "fido2-device=auto" ]; }; }; - virtualisation.bootDevice = "/dev/mapper/cryptroot"; + virtualisation.rootDevice = "/dev/mapper/cryptroot"; }; }; testScript = '' # Create encrypted volume machine.wait_for_unit("multi-user.target") - machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdc -") - machine.succeed("PASSWORD=supersecret SYSTEMD_LOG_LEVEL=debug systemd-cryptenroll --fido2-device=auto /dev/vdc |& systemd-cat") + machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdb -") + machine.succeed("PASSWORD=supersecret SYSTEMD_LOG_LEVEL=debug systemd-cryptenroll --fido2-device=auto /dev/vdb |& systemd-cat") # Boot from the encrypted disk machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-luks.conf") diff --git a/nixos/tests/systemd-initrd-luks-keyfile.nix b/nixos/tests/systemd-initrd-luks-keyfile.nix index 25c0c5bd866d..257243d92a1d 100644 --- a/nixos/tests/systemd-initrd-luks-keyfile.nix +++ b/nixos/tests/systemd-initrd-luks-keyfile.nix @@ -27,11 +27,11 @@ in { specialisation.boot-luks.configuration = { boot.initrd.luks.devices = lib.mkVMOverride { cryptroot = { - device = "/dev/vdc"; + device = "/dev/vdb"; keyFile = "/etc/cryptroot.key"; }; }; - virtualisation.bootDevice = "/dev/mapper/cryptroot"; + virtualisation.rootDevice = "/dev/mapper/cryptroot"; boot.initrd.secrets."/etc/cryptroot.key" = keyfile; }; }; @@ -39,7 +39,7 @@ in { testScript = '' # Create encrypted volume machine.wait_for_unit("multi-user.target") - machine.succeed("cryptsetup luksFormat -q --iter-time=1 -d ${keyfile} /dev/vdc") + machine.succeed("cryptsetup luksFormat -q --iter-time=1 -d ${keyfile} /dev/vdb") # Boot from the encrypted disk machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-luks.conf") diff --git a/nixos/tests/systemd-initrd-luks-password.nix b/nixos/tests/systemd-initrd-luks-password.nix index 55d0b4324b40..2dd3f304e82a 100644 --- a/nixos/tests/systemd-initrd-luks-password.nix +++ b/nixos/tests/systemd-initrd-luks-password.nix @@ -19,10 +19,10 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { specialisation.boot-luks.configuration = { boot.initrd.luks.devices = lib.mkVMOverride { # We have two disks and only type one password - key reuse is in place - cryptroot.device = "/dev/vdc"; - cryptroot2.device = "/dev/vdd"; + cryptroot.device = "/dev/vdb"; + cryptroot2.device = "/dev/vdc"; }; - virtualisation.bootDevice = "/dev/mapper/cryptroot"; + virtualisation.rootDevice = "/dev/mapper/cryptroot"; # test mounting device unlocked in initrd after switching root virtualisation.fileSystems."/cryptroot2".device = "/dev/mapper/cryptroot2"; }; @@ -31,9 +31,9 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { testScript = '' # Create encrypted volume machine.wait_for_unit("multi-user.target") + machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdb -") machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdc -") - machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdd -") - machine.succeed("echo -n supersecret | cryptsetup luksOpen -q /dev/vdd cryptroot2") + machine.succeed("echo -n supersecret | cryptsetup luksOpen -q /dev/vdc cryptroot2") machine.succeed("mkfs.ext4 /dev/mapper/cryptroot2") # Boot from the encrypted disk @@ -47,7 +47,7 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { machine.send_console("supersecret\n") machine.wait_for_unit("multi-user.target") - assert "/dev/mapper/cryptroot on / type ext4" in machine.succeed("mount") + assert "/dev/mapper/cryptroot on / type ext4" in machine.succeed("mount"), "/dev/mapper/cryptroot do not appear in mountpoints list" assert "/dev/mapper/cryptroot2 on /cryptroot2 type ext4" in machine.succeed("mount") ''; }) diff --git a/nixos/tests/systemd-initrd-luks-tpm2.nix b/nixos/tests/systemd-initrd-luks-tpm2.nix index 085088d2ee25..734ef38579f0 100644 --- a/nixos/tests/systemd-initrd-luks-tpm2.nix +++ b/nixos/tests/systemd-initrd-luks-tpm2.nix @@ -21,11 +21,11 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { specialisation.boot-luks.configuration = { boot.initrd.luks.devices = lib.mkVMOverride { cryptroot = { - device = "/dev/vdc"; + device = "/dev/vdb"; crypttabExtraOpts = [ "tpm2-device=auto" ]; }; }; - virtualisation.bootDevice = "/dev/mapper/cryptroot"; + virtualisation.rootDevice = "/dev/mapper/cryptroot"; }; }; @@ -55,8 +55,8 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { # Create encrypted volume machine.wait_for_unit("multi-user.target") - machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdc -") - machine.succeed("PASSWORD=supersecret SYSTEMD_LOG_LEVEL=debug systemd-cryptenroll --tpm2-pcrs= --tpm2-device=auto /dev/vdc |& systemd-cat") + machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdb -") + machine.succeed("PASSWORD=supersecret SYSTEMD_LOG_LEVEL=debug systemd-cryptenroll --tpm2-pcrs= --tpm2-device=auto /dev/vdb |& systemd-cat") # Boot from the encrypted disk machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-luks.conf") diff --git a/nixos/tests/systemd-initrd-swraid.nix b/nixos/tests/systemd-initrd-swraid.nix index 28a0fb3192ae..d201ba99a204 100644 --- a/nixos/tests/systemd-initrd-swraid.nix +++ b/nixos/tests/systemd-initrd-swraid.nix @@ -20,18 +20,18 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { services.swraid = { enable = true; mdadmConf = '' - ARRAY /dev/md0 devices=/dev/vdc,/dev/vdd + ARRAY /dev/md0 devices=/dev/vdb,/dev/vdc ''; }; kernelModules = [ "raid0" ]; }; - specialisation.boot-swraid.configuration.virtualisation.bootDevice = "/dev/disk/by-label/testraid"; + specialisation.boot-swraid.configuration.virtualisation.rootDevice = "/dev/disk/by-label/testraid"; }; testScript = '' # Create RAID - machine.succeed("mdadm --create --force /dev/md0 -n 2 --level=raid0 /dev/vdc /dev/vdd") + machine.succeed("mdadm --create --force /dev/md0 -n 2 --level=raid0 /dev/vdb /dev/vdc") machine.succeed("mkfs.ext4 -L testraid /dev/md0") machine.succeed("mkdir -p /mnt && mount /dev/md0 /mnt && echo hello > /mnt/test && umount /mnt") diff --git a/nixos/tests/zfs.nix b/nixos/tests/zfs.nix index bcb9d9bcfd60..e86c53befd28 100644 --- a/nixos/tests/zfs.nix +++ b/nixos/tests/zfs.nix @@ -98,15 +98,15 @@ let machine.wait_for_unit("multi-user.target") machine.succeed( "zpool status", + "parted --script /dev/vdb mklabel msdos", + "parted --script /dev/vdb -- mkpart primary 1024M -1s", "parted --script /dev/vdc mklabel msdos", "parted --script /dev/vdc -- mkpart primary 1024M -1s", - "parted --script /dev/vdd mklabel msdos", - "parted --script /dev/vdd -- mkpart primary 1024M -1s", ) with subtest("sharesmb works"): machine.succeed( - "zpool create rpool /dev/vdc1", + "zpool create rpool /dev/vdb1", "zfs create -o mountpoint=legacy rpool/root", # shared datasets cannot have legacy mountpoint "zfs create rpool/shared_smb", @@ -126,8 +126,8 @@ let with subtest("encryption works"): machine.succeed( 'echo password | zpool create -O mountpoint=legacy ' - + "-O encryption=aes-256-gcm -O keyformat=passphrase automatic /dev/vdc1", - "zpool create -O mountpoint=legacy manual /dev/vdd1", + + "-O encryption=aes-256-gcm -O keyformat=passphrase automatic /dev/vdb1", + "zpool create -O mountpoint=legacy manual /dev/vdc1", "echo otherpass | zfs create " + "-o encryption=aes-256-gcm -o keyformat=passphrase manual/encrypted", "bootctl set-default nixos-generation-1-specialisation-encryption.conf", @@ -153,7 +153,7 @@ let machine.succeed( "rm /etc/hostid", "zgenhostid deadcafe", - "zpool create forcepool /dev/vdc1 -O mountpoint=legacy", + "zpool create forcepool /dev/vdb1 -O mountpoint=legacy", "bootctl set-default nixos-generation-1-specialisation-forcepool.conf", "rm /etc/hostid", "sync", From e3a41f3fec8ddfc9e20df2e10f49c464525defa3 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sun, 26 Mar 2023 00:44:41 +0100 Subject: [PATCH 174/213] nixos/tests/bootspec: assert for boot.json rather than bootspec/boot.json --- nixos/tests/bootspec.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/bootspec.nix b/nixos/tests/bootspec.nix index 077dff918e0d..f388a15ffa2d 100644 --- a/nixos/tests/bootspec.nix +++ b/nixos/tests/bootspec.nix @@ -108,9 +108,9 @@ in machine.start() machine.wait_for_unit("multi-user.target") - machine.succeed("test -e /run/current-system/bootspec/boot.json") + machine.succeed("test -e /run/current-system/boot.json") - bootspec = json.loads(machine.succeed("jq -r '.v1' /run/current-system/bootspec/boot.json")) + bootspec = json.loads(machine.succeed("jq -r '.v1' /run/current-system/boot.json")) assert all(key in bootspec for key in ('initrd', 'initrdSecrets')), "Bootspec should contain initrd or initrdSecrets field when initrd is enabled" ''; From 614b83a3285ca44650473e73f9777d7c41fe88a1 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Wed, 12 Apr 2023 19:55:43 +0200 Subject: [PATCH 175/213] nixos/virtualisation/qemu-vm: remove persistBootDevice option This option has been introduced in 678eed323ffd90117472cd432ebe85dddaff07f1 without realizing there was this PR inflight, unfortunately, it collide with what this PR does and make it irrelevant. Therefore, I remove it here. --- nixos/modules/virtualisation/qemu-vm.nix | 19 +------------------ nixos/tests/initrd-secrets-changing.nix | 1 - 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 2aa8a36a1cfc..0a682fff4103 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -171,12 +171,6 @@ let ${lib.optionalString cfg.useBootLoader '' - if ${if !cfg.persistBootDevice then "true" else "! test -e $TMPDIR/disk.img"}; then - # Create a writable copy/snapshot of the boot disk. - # A writable boot disk can be booted from automatically. - ${qemu}/bin/qemu-img create -f qcow2 -F qcow2 -b ${bootDisk}/disk.img "$TMPDIR/disk.img" - fi - NIX_EFI_VARS=$(readlink -f "''${NIX_EFI_VARS:-${config.system.name}-efi-vars.fd}") ${lib.optionalString cfg.useEFIBoot @@ -285,7 +279,7 @@ in (mkRenamedOptionModule [ "virtualisation" "pathsInNixDB" ] [ "virtualisation" "additionalPaths" ]) (mkRemovedOptionModule [ "virtualisation" "bootDevice" ] "This option was renamed to `virtualisation.rootDevice`, as it was incorrectly named and misleading. Take the time to review what you want to do and look at the new options like `virtualisation.{bootLoaderDevice, bootPartition}`, open an issue in case of issues.") (mkRemovedOptionModule [ "virtualisation" "efiVars" ] "This option was removed, it is possible to provide a template UEFI variable with `virtualisation.efi.variables` ; if this option is important to you, open an issue") - (mkRemovedOptionModule [ "virtualisation" "persistBootDevice" ] "Boot device is always persisted if you use a bootloader through the root disk image ; if this does not work for your usecase, please examine carefully what `virtualisation.{bootLoaderDevice, rootDevice, bootPartition}` options offers you and open an issue explaining your need.`") + (mkRemovedOptionModule [ "virtualisation" "persistBootDevice" ] "Boot device is always persisted if you use a bootloader through the root disk image ; if this does not work for your usecase, please examine carefully what `virtualisation.{bootDevice, rootDevice, bootPartition}` options offer you and open an issue explaining your need.`") ]; options = { @@ -384,17 +378,6 @@ in ''; }; - virtualisation.persistBootDevice = - mkOption { - type = types.bool; - default = false; - description = - lib.mdDoc '' - If useBootLoader is specified, whether to recreate the boot device - on each instantiaton or allow it to persist. - ''; - }; - virtualisation.emptyDiskImages = mkOption { type = types.listOf types.ints.positive; diff --git a/nixos/tests/initrd-secrets-changing.nix b/nixos/tests/initrd-secrets-changing.nix index 775c69d0142d..d6f9ef9ced83 100644 --- a/nixos/tests/initrd-secrets-changing.nix +++ b/nixos/tests/initrd-secrets-changing.nix @@ -15,7 +15,6 @@ testing.makeTest { nodes.machine = { ... }: { virtualisation.useBootLoader = true; - virtualisation.persistBootDevice = true; boot.loader.grub.device = "/dev/vda"; From 76f1b633ba8023ea789347a52dcf1e6c60ec5369 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Wed, 12 Apr 2023 20:00:44 +0200 Subject: [PATCH 176/213] CODEOWNERS: add raitobezarius to qemu-vm.nix I do a lot of work on QEMU VM and make-disk-image and I was bitten by an unnotified change recently, so I want to chime in the future changes of this file. --- .github/CODEOWNERS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 96bdccccf517..f3d4781dc531 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -90,6 +90,9 @@ # NixOS integration test driver /nixos/lib/test-driver @tfc +# NixOS QEMU virtualisation +/nixos/virtualisation/qemu-vm.nix @raitobezarius + # Systemd /nixos/modules/system/boot/systemd.nix @NixOS/systemd /nixos/modules/system/boot/systemd @NixOS/systemd From 2ffe1a455984d37db10729b197f6e820f3ccdb5a Mon Sep 17 00:00:00 2001 From: zendo Date: Fri, 21 Apr 2023 19:06:06 +0800 Subject: [PATCH 177/213] contrast: 0.0.5 -> 0.0.7 --- .../accessibility/contrast/default.nix | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/accessibility/contrast/default.nix b/pkgs/applications/accessibility/contrast/default.nix index d72c1043a975..9d3d568be2f6 100644 --- a/pkgs/applications/accessibility/contrast/default.nix +++ b/pkgs/applications/accessibility/contrast/default.nix @@ -11,14 +11,13 @@ , ninja , pango , pkg-config -, python3 , rustPlatform , wrapGAppsHook4 }: stdenv.mkDerivation rec { pname = "contrast"; - version = "0.0.5"; + version = "0.0.7"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; @@ -26,13 +25,13 @@ stdenv.mkDerivation rec { owner = "design"; repo = "contrast"; rev = version; - sha256 = "cypSbqLwSmauOoWOuppWpF3hvrxiqmkLspxAWzvlUC0="; + hash = "sha256-waoXv8dzqynkpfEPZSgZnS6fyo9+9+3Q2oy2fMtEsoE="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; - hash = "sha256-W4FyqwJpimf0isQRCq9TegpTQPQfsumx40AFQCFG5VQ="; + hash = "sha256-94QwPSiGjjPuskg5w6QfM5FuChFno7f9dh0Xr2wWKCI="; }; nativeBuildInputs = [ @@ -41,12 +40,10 @@ stdenv.mkDerivation rec { meson ninja pkg-config - python3 rustPlatform.rust.cargo rustPlatform.cargoSetupHook rustPlatform.rust.rustc wrapGAppsHook4 - glib # for glib-compile-resources ]; buildInputs = [ @@ -57,13 +54,6 @@ stdenv.mkDerivation rec { pango ]; - postPatch = '' - patchShebangs build-aux/meson_post_install.py - # https://gitlab.gnome.org/World/design/contrast/-/merge_requests/23 - substituteInPlace build-aux/meson_post_install.py \ - --replace "gtk-update-icon-cache" "gtk4-update-icon-cache" - ''; - meta = with lib; { description = "Checks whether the contrast between two colors meet the WCAG requirements"; homepage = "https://gitlab.gnome.org/World/design/contrast"; @@ -74,4 +64,3 @@ stdenv.mkDerivation rec { broken = stdenv.isDarwin; }; } - From eebc4d88645bf2311500c756105ac0002a1966d3 Mon Sep 17 00:00:00 2001 From: Adam Stephens Date: Wed, 19 Apr 2023 15:37:38 -0400 Subject: [PATCH 178/213] kitty: 0.27.1 -> 0.28.1 --- .../terminal-emulators/kitty/default.nix | 40 ++++++++----------- 1 file changed, 17 insertions(+), 23 deletions(-) diff --git a/pkgs/applications/terminal-emulators/kitty/default.nix b/pkgs/applications/terminal-emulators/kitty/default.nix index 07980f8375aa..e693e51c9360 100644 --- a/pkgs/applications/terminal-emulators/kitty/default.nix +++ b/pkgs/applications/terminal-emulators/kitty/default.nix @@ -23,21 +23,22 @@ , nixosTests , go , buildGoModule +, nix-update-script }: with python3Packages; buildPythonApplication rec { pname = "kitty"; - version = "0.27.1"; + version = "0.28.1"; format = "other"; src = fetchFromGitHub { owner = "kovidgoyal"; repo = "kitty"; rev = "refs/tags/v${version}"; - hash = "sha256-/K/5T15kULTQP1FCLnyrKfhlQjIStayutaxLjmHjHes="; + hash = "sha256-pAo+bT10rdQOf9j3imKWCCMFGm8KntUeTQUrEE1wYZc="; }; - vendorHash = "sha256-JLPPNOsoq+ErLhELsX3z3YehYfgp7OGXEXlP3IVcM5k="; + vendorHash = "sha256-vq19exqsEtXhN20mgC5GCpYGm8s9AC6nlfCfG1lUiI8="; buildInputs = [ harfbuzz @@ -99,16 +100,16 @@ buildPythonApplication rec { CGO_ENABLED = 0; GOFLAGS = "-trimpath"; - configurePhase = let - goModules = (buildGoModule { - pname = "kitty-go-modules"; - inherit src vendorHash version; - }).go-modules; - in '' + go-modules = (buildGoModule { + pname = "kitty-go-modules"; + inherit src vendorHash version; + }).go-modules; + + configurePhase = '' export GOCACHE=$TMPDIR/go-cache export GOPATH="$TMPDIR/go" export GOPROXY=off - cp -r --reflink=auto ${goModules} vendor + cp -r --reflink=auto ${go-modules} vendor ''; buildPhase = let @@ -161,6 +162,8 @@ buildPythonApplication rec { --replace test_ssh_connection_data dont_test_ssh_connection_data substituteInPlace kitty_tests/fonts.py \ --replace 'class Rendering(BaseTest)' 'class Rendering' + # theme collection test starts an http server + rm tools/themes/collection_test.go ''; checkPhase = '' @@ -216,19 +219,10 @@ buildPythonApplication rec { runHook postInstall ''; - # Patch shebangs that Nix can't automatically patch - preFixup = - let - pathComponent = if stdenv.isDarwin then "Applications/kitty.app/Contents/Resources" else "lib"; - in - '' - substituteInPlace $out/${pathComponent}/kitty/shell-integration/ssh/askpass.py \ - --replace '/usr/bin/env -S ' $out/bin/ - substituteInPlace $shell_integration/ssh/askpass.py \ - --replace '/usr/bin/env -S ' $out/bin/ - ''; - - passthru.tests.test = nixosTests.terminal-emulators.kitty; + passthru = { + updateScript = nix-update-script {}; + tests.test = nixosTests.terminal-emulators.kitty; + }; meta = with lib; { homepage = "https://github.com/kovidgoyal/kitty"; From 7f4751869acdaed3e35b005d768b9817ca6e77f0 Mon Sep 17 00:00:00 2001 From: Ruixi-rebirth Date: Fri, 21 Apr 2023 20:13:50 +0800 Subject: [PATCH 179/213] go-musicfox: 4.0.3 -> 4.0.4 --- pkgs/applications/audio/go-musicfox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/go-musicfox/default.nix b/pkgs/applications/audio/go-musicfox/default.nix index a2e3cbc44cf7..a1bb5bcef5c4 100644 --- a/pkgs/applications/audio/go-musicfox/default.nix +++ b/pkgs/applications/audio/go-musicfox/default.nix @@ -10,13 +10,13 @@ # gcc only supports objc on darwin buildGoModule.override { stdenv = clangStdenv; } rec { pname = "go-musicfox"; - version = "4.0.3"; + version = "4.0.4"; src = fetchFromGitHub { owner = "anhoder"; repo = pname; rev = "v${version}"; - hash = "sha256-6JOD0RsZY79jLYJqPrzc43jgR03XQEfa8B0mGvlIkF4="; + hash = "sha256-EPORD8jDmTnCm/ON1Vz2R7DpFVyAR8q7r2KZyKTiGr4="; }; deleteVendor = true; From 242702d262260cc987111b54539ef0969134ff3b Mon Sep 17 00:00:00 2001 From: linsui Date: Fri, 21 Apr 2023 20:30:20 +0800 Subject: [PATCH 180/213] vimPlugins.bigfile-nvim: init at 2022-12-01 --- pkgs/applications/editors/vim/plugins/generated.nix | 12 ++++++++++++ .../editors/vim/plugins/vim-plugin-names | 1 + 2 files changed, 13 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index 29e6ea603dac..a8cf04af71ce 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -941,6 +941,18 @@ final: prev: meta.homepage = "https://github.com/max397574/better-escape.nvim/"; }; + bigfile-nvim = buildVimPluginFrom2Nix { + pname = "bigfile.nvim"; + version = "2022-12-01"; + src = fetchFromGitHub { + owner = "LunarVim"; + repo = "bigfile.nvim"; + rev = "c1bad34ce742b4f360b67ca23c873fef998240fc"; + sha256 = "1jgjj0knyizwyvbv9ddg36hcpwbscy4p5fsqwzybnsjgxd32602j"; + }; + meta.homepage = "https://github.com/LunarVim/bigfile.nvim"; + }; + bitbake-vim = buildVimPluginFrom2Nix { pname = "bitbake.vim"; version = "2021-02-06"; diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 3a2f725e2746..933d2af2662a 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -77,6 +77,7 @@ https://github.com/jamespwilliams/bat.vim/,HEAD, https://github.com/vim-scripts/bats.vim/,, https://github.com/rbgrouleff/bclose.vim/,, https://github.com/max397574/better-escape.nvim/,, +https://github.com/LunarVim/bigfile.nvim/,, https://github.com/sblumentritt/bitbake.vim/,, https://github.com/APZelos/blamer.nvim/,HEAD, https://github.com/blueballs-theme/blueballs-neovim/,, From 052eabdcb15dff97a742b3a43fda1fe4ce305275 Mon Sep 17 00:00:00 2001 From: rewine Date: Fri, 21 Apr 2023 20:37:21 +0800 Subject: [PATCH 181/213] vte: 0.72.0 -> 0.72.1 https://gitlab.gnome.org/GNOME/vte/-/compare/0.72.0...0.72.1 --- pkgs/development/libraries/vte/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/vte/default.nix b/pkgs/development/libraries/vte/default.nix index a8fed065198b..284b7e700cc6 100644 --- a/pkgs/development/libraries/vte/default.nix +++ b/pkgs/development/libraries/vte/default.nix @@ -30,13 +30,13 @@ stdenv.mkDerivation rec { pname = "vte"; - version = "0.72.0"; + version = "0.72.1"; outputs = [ "out" "dev" "devdoc" ]; src = fetchurl { url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "sha256-QP6RTWxw2zQXbJInJbbG6hXV88sqm0TFfiAKX5UKZzY="; + sha256 = "sha256-BVT5+I1Wzi14OY/Mf2m8AOU7u8X2lOCuHcr1KG+J1+Q="; }; patches = [ From 9db6b0179ff0992c2b38f28bdfa100618a3ce920 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 12:40:16 +0000 Subject: [PATCH 182/213] oh-my-zsh: 2023-03-28 -> 2023-04-21 --- pkgs/shells/zsh/oh-my-zsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/zsh/oh-my-zsh/default.nix b/pkgs/shells/zsh/oh-my-zsh/default.nix index e61d400fbb8e..c91a3fd0ae64 100644 --- a/pkgs/shells/zsh/oh-my-zsh/default.nix +++ b/pkgs/shells/zsh/oh-my-zsh/default.nix @@ -5,15 +5,15 @@ , git, nix, nixfmt, jq, coreutils, gnused, curl, cacert, bash }: stdenv.mkDerivation rec { - version = "2023-03-28"; + version = "2023-04-21"; pname = "oh-my-zsh"; - rev = "fcbdc330ff50617c8b84d39ce069cc75df41108f"; + rev = "5d3e86e2a48adf7a308773f8f1b725d187c7c5ef"; src = fetchFromGitHub { inherit rev; owner = "ohmyzsh"; repo = "ohmyzsh"; - sha256 = "MadBDgV3a4jOB5vmUVT4WUDJavQEQVjSYTmGUOApQ/s="; + sha256 = "pJRe3UEpXpfop4huOzWwxivyCRJKIDN/y+Slv8bKcmk="; }; strictDeps = true; From da3c6f83747daed2b3d96b10040a044ee641dc30 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 13:32:13 +0000 Subject: [PATCH 183/213] zoom-us: 5.14.2.2046 -> 5.14.5.2430 --- .../instant-messengers/zoom-us/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix index 4a9ac6d8f74d..64b59c745429 100644 --- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix +++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix @@ -48,23 +48,23 @@ let # and often with different versions. We write them on three lines # like this (rather than using {}) so that the updater script can # find where to edit them. - versions.aarch64-darwin = "5.14.2.17213"; - versions.x86_64-darwin = "5.14.2.17213"; - versions.x86_64-linux = "5.14.2.2046"; + versions.aarch64-darwin = "5.14.5.17687"; + versions.x86_64-darwin = "5.14.5.17687"; + versions.x86_64-linux = "5.14.5.2430"; srcs = { aarch64-darwin = fetchurl { url = "https://zoom.us/client/${versions.aarch64-darwin}/zoomusInstallerFull.pkg?archType=arm64"; name = "zoomusInstallerFull.pkg"; - hash = "sha256-jXSjfPIQepSeG5B/CLBHiCbRP1ceczHt+Mu3KYLonkU="; + hash = "sha256-cklNvp6q/4yGWpLhDbruGiBHgaQrY5wHwhtsVapRxx4="; }; x86_64-darwin = fetchurl { url = "https://zoom.us/client/${versions.x86_64-darwin}/zoomusInstallerFull.pkg"; - hash = "sha256-F/k9NE2GVzn5etkPWCMX80kkyRzVznsKo3rgtztcYn8="; + hash = "sha256-1w41TGBqUl8lnl08PglQImSV7JM71khlshacxh1oTJo="; }; x86_64-linux = fetchurl { url = "https://zoom.us/client/${versions.x86_64-linux}/zoom_x86_64.pkg.tar.xz"; - hash = "sha256-k16JlqabzdNC/UXoPWM2yYzs66rOtJvhExHpjVka5M0="; + hash = "sha256-sf7w9P6Gajm8/D7DHo/u5d4kZwjxeJjAE96BUW/e4KE="; }; }; From a4807f566dab6aeb85e72aeb66a7006336148cfd Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Fri, 21 Apr 2023 15:35:00 +0200 Subject: [PATCH 184/213] nixosTests.ft2-clone: make OCR more robust --- nixos/tests/ft2-clone.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nixos/tests/ft2-clone.nix b/nixos/tests/ft2-clone.nix index 3c90b3d3fa20..a8395d4ebaa6 100644 --- a/nixos/tests/ft2-clone.nix +++ b/nixos/tests/ft2-clone.nix @@ -26,9 +26,7 @@ import ./make-test-python.nix ({ pkgs, ... }: { machine.wait_for_window(r"Fasttracker") machine.sleep(5) - # One of the few words that actually get recognized - if "Songlen" not in machine.get_screen_text(): - raise Exception("Program did not start successfully") + machine.wait_for_text(r"(Songlen|Repstart|Time|About|Nibbles|Help)") machine.screenshot("screen") ''; }) From 03e737930cf592de66e5c4ce0d436c17c4b12ed3 Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Fri, 21 Apr 2023 14:11:49 +0200 Subject: [PATCH 185/213] ft2-clone: 1.65 -> 1.66 --- pkgs/applications/audio/ft2-clone/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/ft2-clone/default.nix b/pkgs/applications/audio/ft2-clone/default.nix index e5d132ac6a69..814dbed3d8a4 100644 --- a/pkgs/applications/audio/ft2-clone/default.nix +++ b/pkgs/applications/audio/ft2-clone/default.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "ft2-clone"; - version = "1.65"; + version = "1.66"; src = fetchFromGitHub { owner = "8bitbubsy"; repo = "ft2-clone"; rev = "v${version}"; - sha256 = "sha256-Jo1qs0d8/o9FWR7jboWCJ7ntawBGTlm7yPzxxUnZLsI="; + sha256 = "sha256-glLgjZFWvz/bJe9R8KTDu4+778dueC9tw3nVKF3xcps="; }; # Adapt the linux-only CMakeLists to darwin (more reliable than make-macos.sh) From f4c66d55c460956e270775e8f3d582ca49787267 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 21 Apr 2023 13:05:25 +0000 Subject: [PATCH 186/213] =?UTF-8?q?evolution-data-server:=203.48.0=20?= =?UTF-8?q?=E2=86=92=203.48.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/evolution-data-server/-/compare/3.48.0...3.48.1 --- .../gnome/core/evolution-data-server/default.nix | 4 ++-- .../evolution-data-server/hardcode-gsettings.patch | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/gnome/core/evolution-data-server/default.nix b/pkgs/desktops/gnome/core/evolution-data-server/default.nix index aa78fb4d006f..22896c9bd99b 100644 --- a/pkgs/desktops/gnome/core/evolution-data-server/default.nix +++ b/pkgs/desktops/gnome/core/evolution-data-server/default.nix @@ -50,13 +50,13 @@ stdenv.mkDerivation rec { pname = "evolution-data-server"; - version = "3.48.0"; + version = "3.48.1"; outputs = [ "out" "dev" ]; src = fetchurl { url = "mirror://gnome/sources/evolution-data-server/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "DyX3MzHt9TkJvkD0ErKoaTknAydRdhYwPzIt4VcIPDU="; + sha256 = "XOYsHmfyeJNCp/SgNbEC905i7YX2DoGlt/PgQWVATf8="; }; patches = [ diff --git a/pkgs/desktops/gnome/core/evolution-data-server/hardcode-gsettings.patch b/pkgs/desktops/gnome/core/evolution-data-server/hardcode-gsettings.patch index 28a812493708..a1a9db13321e 100644 --- a/pkgs/desktops/gnome/core/evolution-data-server/hardcode-gsettings.patch +++ b/pkgs/desktops/gnome/core/evolution-data-server/hardcode-gsettings.patch @@ -128,10 +128,10 @@ index e85a56b..59d3fe2 100644 g_object_unref (settings); diff --git a/src/addressbook/libedata-book/e-book-meta-backend.c b/src/addressbook/libedata-book/e-book-meta-backend.c -index 127dcd1..5fa62f6 100644 +index 4aaabee..dd6ce6d 100644 --- a/src/addressbook/libedata-book/e-book-meta-backend.c +++ b/src/addressbook/libedata-book/e-book-meta-backend.c -@@ -136,7 +136,18 @@ ebmb_is_power_saver_enabled (void) +@@ -143,7 +143,18 @@ ebmb_is_power_saver_enabled (void) GSettings *settings; gboolean enabled = FALSE; @@ -201,10 +201,10 @@ index 5087de1..5c24b87 100644 watcher->priv->default_zone = e_cal_util_copy_timezone (zone); watcher->priv->timers_enabled = TRUE; diff --git a/src/calendar/libedata-cal/e-cal-meta-backend.c b/src/calendar/libedata-cal/e-cal-meta-backend.c -index 94a875f..1d2ed92 100644 +index cd91f07..79ede04 100644 --- a/src/calendar/libedata-cal/e-cal-meta-backend.c +++ b/src/calendar/libedata-cal/e-cal-meta-backend.c -@@ -149,7 +149,18 @@ ecmb_is_power_saver_enabled (void) +@@ -156,7 +156,18 @@ ecmb_is_power_saver_enabled (void) GSettings *settings; gboolean enabled = FALSE; @@ -298,7 +298,7 @@ index e61160c..b6553a4 100644 G_CALLBACK (mi_user_headers_settings_changed_cb), NULL); G_UNLOCK (mi_user_headers); diff --git a/src/camel/providers/imapx/camel-imapx-server.c b/src/camel/providers/imapx/camel-imapx-server.c -index 95918a0..a7fc669 100644 +index ce4a58c..2906228 100644 --- a/src/camel/providers/imapx/camel-imapx-server.c +++ b/src/camel/providers/imapx/camel-imapx-server.c @@ -5591,7 +5591,18 @@ camel_imapx_server_skip_old_flags_update (CamelStore *store) From 5779d314d901c71c5898d99106024c8ae4b62660 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 21 Apr 2023 13:04:23 +0000 Subject: [PATCH 187/213] =?UTF-8?q?evolution-ews:=203.48.0=20=E2=86=92=203?= =?UTF-8?q?.48.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/evolution-ews/-/compare/3.48.0...3.48.1 --- .../mailreaders/evolution/evolution-ews/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/evolution/evolution-ews/default.nix b/pkgs/applications/networking/mailreaders/evolution/evolution-ews/default.nix index fdec80717e74..57596342e22f 100644 --- a/pkgs/applications/networking/mailreaders/evolution/evolution-ews/default.nix +++ b/pkgs/applications/networking/mailreaders/evolution/evolution-ews/default.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { pname = "evolution-ews"; - version = "3.48.0"; + version = "3.48.1"; src = fetchurl { url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "FmFlu+oUQbuS8qk0jZp97EiCoNMTGc0lZlcdpnd+8t4="; + sha256 = "vqakEdZAHXOqTh3oHUN5LwPAQ54DBZxVSn+YTEptmtg="; }; patches = [ From 7f17c918d63bdb59e2c67a084d11c395ccac845a Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 21 Apr 2023 12:44:04 +0000 Subject: [PATCH 188/213] =?UTF-8?q?evolution:=203.48.0=20=E2=86=92=203.48.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/evolution/-/compare/3.48.0...3.48.1 --- .../networking/mailreaders/evolution/evolution/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix b/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix index a7d902b2d3f9..1e88f20e78a4 100644 --- a/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix +++ b/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { pname = "evolution"; - version = "3.48.0"; + version = "3.48.1"; src = fetchurl { url = "mirror://gnome/sources/evolution/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "LYRygZWJ6S78zk8tw70STpPTedMwCXj2mpZTxZKmDvY="; + sha256 = "tJpa3u3JGx0yVPAw9affjiYYLjNAzvd3Ecob9FU+5lA="; }; nativeBuildInputs = [ From aec122af561a5ed998a47e7d1f5194338eff44de Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Sat, 22 Apr 2023 00:32:33 +1000 Subject: [PATCH 189/213] dtrx: 8.4.0 -> 8.5.0 (#225953) Co-authored-by: Sandro --- pkgs/tools/compression/dtrx/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/compression/dtrx/default.nix b/pkgs/tools/compression/dtrx/default.nix index c99d40cbc92f..5a32db7c050e 100644 --- a/pkgs/tools/compression/dtrx/default.nix +++ b/pkgs/tools/compression/dtrx/default.nix @@ -21,15 +21,20 @@ python3Packages.buildPythonApplication rec { pname = "dtrx"; - version = "8.4.0"; + version = "8.5.0"; src = fetchFromGitHub { owner = "dtrx-py"; repo = "dtrx"; rev = "refs/tags/${version}"; - sha256 = "sha256-G+W0qY8s30cYSmOEy9Kkx+Wr48n7+6FuzL34GvwdKtg="; + sha256 = "sha256-jx2IHa7Ztg8Dbwgm8mSJQKtNpg0sg5axGssBMTAMDI0="; }; + # https://github.com/dtrx-py/dtrx/issues/45 + postPatch = '' + sed -i "s/platform==unsupported/# platform==unsupported/" setup.cfg + ''; + postInstall = let archivers = lib.makeBinPath ( @@ -41,7 +46,7 @@ python3Packages.buildPythonApplication rec { wrapProgram "$out/bin/dtrx" --prefix PATH : "${archivers}" ''; - buildInputs = [ python3Packages.twine ]; + nativeBuildInputs = [ python3Packages.invoke ]; meta = with lib; { description = "Do The Right Extraction: A tool for taking the hassle out of extracting archives"; From d3b42598eb10e586126bf8520f025ef2bc052d9a Mon Sep 17 00:00:00 2001 From: 0xMRTT <0xMRTT@proton.me> Date: Fri, 21 Apr 2023 16:34:37 +0200 Subject: [PATCH 190/213] elastic: init at 0.1.3 (#226428) Co-authored-by: Sandro --- maintainers/maintainer-list.nix | 7 +++ pkgs/applications/misc/elastic/default.nix | 58 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 67 insertions(+) create mode 100644 pkgs/applications/misc/elastic/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 98276dd4c4e3..d15322cf497f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -101,6 +101,13 @@ github = "0xd61"; githubId = 8351869; }; + _0xMRTT = { + email = "0xMRTT@proton.me"; + name = "0xMRTT"; + github = "0xMRTT"; + githubId = 105598867; + matrix = "@0xmrtt:envs.net"; + }; _1000101 = { email = "b1000101@pm.me"; github = "1000101"; diff --git a/pkgs/applications/misc/elastic/default.nix b/pkgs/applications/misc/elastic/default.nix new file mode 100644 index 000000000000..316df2e02d4a --- /dev/null +++ b/pkgs/applications/misc/elastic/default.nix @@ -0,0 +1,58 @@ +{ lib +, stdenv +, fetchFromGitLab +, meson +, ninja +, pkg-config +, vala +, gtk4 +, libgee +, libadwaita +, gtksourceview5 +, blueprint-compiler +, wrapGAppsHook4 +, appstream-glib +, desktop-file-utils +, template-glib +}: + +stdenv.mkDerivation rec { + pname = "elastic"; + version = "0.1.3"; + + src = fetchFromGitLab { + domain = "gitlab.gnome.org"; + owner = "World"; + repo = "elastic"; + rev = version; + hash = "sha256-CZ+EeGbCzkeNx4GD+2+n3jYwz/cQStjMV2+wm/JNsYU="; + }; + + nativeBuildInputs = [ + meson + ninja + vala + pkg-config + wrapGAppsHook4 + appstream-glib + desktop-file-utils + blueprint-compiler + ]; + + buildInputs = [ + gtk4 + libadwaita + libgee + gtksourceview5 + template-glib + ]; + + meta = with lib; { + description = "Design spring animations"; + homepage = "https://gitlab.gnome.org/World/elastic/"; + mainProgram = "app.drey.Elastic"; + license = licenses.gpl3Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ _0xMRTT ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 39e450342470..c6827e87d82f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7652,6 +7652,8 @@ with pkgs; texinfo = texinfo6_7; # Uses @setcontentsaftertitlepage, removed in 6.8. }; + elastic = callPackage ../applications/misc/elastic { }; + exfat = callPackage ../tools/filesystems/exfat { }; exfatprogs = callPackage ../tools/filesystems/exfatprogs { }; From 92a47311bede8848bfcc961d0bf1d6c826cd67c2 Mon Sep 17 00:00:00 2001 From: "\"Alexander Sieg\"" <"alex@xanderio.de"> Date: Fri, 21 Apr 2023 17:15:40 +0200 Subject: [PATCH 191/213] vimPlugins.elixir-tools-nvim: init at 2023-04-20 --- pkgs/applications/editors/vim/plugins/vim-plugin-names | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 933d2af2662a..d1fe57c41ddd 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -238,6 +238,7 @@ https://github.com/Shougo/echodoc.vim/,, https://github.com/sainnhe/edge/,, https://github.com/editorconfig/editorconfig-vim/,, https://github.com/gpanders/editorconfig.nvim/,, +https://github.com/elixir-tools/elixir-tools.nvim/,HEAD, https://github.com/elmcast/elm-vim/,, https://github.com/dmix/elvish.vim/,, https://github.com/mattn/emmet-vim/,, From e25dc4a95ed69f37ce443b8fcad00fb9337e6eed Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Fri, 21 Apr 2023 17:18:45 +0200 Subject: [PATCH 192/213] nixos/nginx: Fix listen string generation This regressed in 327b0cff7aedc20a148d245b1182f43800acc1f5 breaking nixosTests.php, among other things. --- nixos/modules/services/web-servers/nginx/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/web-servers/nginx/default.nix b/nixos/modules/services/web-servers/nginx/default.nix index 4f97fe752ef7..1e6cb0d37405 100644 --- a/nixos/modules/services/web-servers/nginx/default.nix +++ b/nixos/modules/services/web-servers/nginx/default.nix @@ -318,7 +318,7 @@ let listenString = { addr, port, ssl, extraParameters ? [], ... }: # UDP listener for QUIC transport protocol. - (optionalString (ssl && vhost.quic) " + (optionalString (ssl && vhost.quic) (" listen ${addr}:${toString port} quic " + optionalString vhost.default "default_server " + optionalString vhost.reuseport "reuseport " @@ -326,7 +326,7 @@ let let inCompatibleParameters = [ "ssl" "proxy_protocol" "http2" ]; isCompatibleParameter = param: !(any (p: p == param) inCompatibleParameters); in filter isCompatibleParameter extraParameters)) - + ";") + + ";")) + " listen ${addr}:${toString port} " From 51d0f9f821c0f9c056981e265ddf19a619793e19 Mon Sep 17 00:00:00 2001 From: kilianar Date: Fri, 21 Apr 2023 15:16:12 +0200 Subject: [PATCH 193/213] calibre: 6.15.1 -> 6.16.0 https://github.com/kovidgoyal/calibre/releases/tag/v6.16.0 --- pkgs/applications/misc/calibre/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 70f5f16f39c2..6e8f2b949ec5 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { pname = "calibre"; - version = "6.15.1"; + version = "6.16.0"; src = fetchurl { url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz"; - hash = "sha256-t9fG1hBlQmDh0i5ezBoqk9C9oliNNF0peKDz1YH7RBo="; + hash = "sha256-2Lhp9PBZ19svq26PoldJ1H8tmt95MwY0l7+g6mPUvFI="; }; # https://sources.debian.org/patches/calibre/${version}+dfsg-1 @@ -48,8 +48,8 @@ stdenv.mkDerivation rec { hash = "sha256-uL1mSjgCl5ZRLbSuKxJM6XTfvVwog70F7vgKtQzQNEQ="; }) (fetchpatch { - name = "0006-Hardening-Qt-code.patch"; - url = "https://raw.githubusercontent.com/debian-calibre/calibre/debian/${version}-1/debian/patches/0006-Hardening-Qt-code.patch"; + name = "0007-Hardening-Qt-code.patch"; + url = "https://raw.githubusercontent.com/debian-calibre/calibre/debian/${version}-1/debian/patches/0007-Hardening-Qt-code.patch"; hash = "sha256-9P1kGrQbWAWDzu5EUiQr7TiCPHRWUA8hxPpEvFpK20k="; }) ] From fd39851cc69ac678163f46cdfaee9e5232660702 Mon Sep 17 00:00:00 2001 From: LeixB Date: Fri, 21 Apr 2023 18:13:14 +0200 Subject: [PATCH 194/213] vimPlugins.sniprun: 1.3.0 -> 1.3.1 --- pkgs/applications/editors/vim/plugins/overrides.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index d480b97b0146..9a51542e514c 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -852,18 +852,18 @@ self: super: { sniprun = let - version = "1.3.0"; + version = "1.3.1"; src = fetchFromGitHub { owner = "michaelb"; repo = "sniprun"; rev = "v${version}"; - hash = "sha256-6UDjrrEtOuB+lrCZVBO4BcZm78qwq8YbQcXAdjNbicY="; + hash = "sha256-grrrqvdqoYTBtlU+HLrSQJsAmMA/+OHbuoVvOwHYPnk="; }; sniprun-bin = rustPlatform.buildRustPackage { pname = "sniprun-bin"; inherit version src; - cargoSha256 = "sha256-ghXYUgXqXvK9RySG/hQR5zpLsyk6L9Htb/UYgMPyWUk="; + cargoSha256 = "sha256-hmZXYJFIeKgYyhT6mSrmX+7M9GQQHHzliYHjsBoHgOc="; nativeBuildInputs = [ makeWrapper ]; @@ -884,11 +884,6 @@ self: super: { substituteInPlace lua/sniprun.lua --replace '@sniprun_bin@' ${sniprun-bin} ''; - postInstall = '' - mkdir $out/doc - ln -s $out/docs/sniprun.txt $out/doc/sniprun.txt - ''; - propagatedBuildInputs = [ sniprun-bin ]; }; From c9dea1196e54e0f2c8eaf93d12a5737b7715663f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 17:21:54 +0000 Subject: [PATCH 195/213] discord-canary: 0.0.150 -> 0.0.151 --- .../networking/instant-messengers/discord/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/discord/default.nix b/pkgs/applications/networking/instant-messengers/discord/default.nix index 349c2e10cbcf..0a5afe093cd1 100644 --- a/pkgs/applications/networking/instant-messengers/discord/default.nix +++ b/pkgs/applications/networking/instant-messengers/discord/default.nix @@ -3,7 +3,7 @@ let versions = if stdenv.isLinux then { stable = "0.0.26"; ptb = "0.0.41"; - canary = "0.0.150"; + canary = "0.0.151"; } else { stable = "0.0.273"; ptb = "0.0.59"; @@ -22,7 +22,7 @@ let }; canary = fetchurl { url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz"; - sha256 = "sha256-8huDp1u0t9/kZbeB7bPqQUw8+HQ6rIyzKYUVN02gQfo="; + sha256 = "sha256-ZN+lEGtSajgYsyMoGRmyTZCpUGVmb9LKgVv89NA4m7U="; }; }; x86_64-darwin = { From e7ee2f526f99ed94e240933cabc5b75856571b67 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Fri, 21 Apr 2023 08:50:10 -0700 Subject: [PATCH 196/213] nodePackages: update all --- .../node-packages/node-packages.nix | 5940 +++++++++++------ 1 file changed, 3828 insertions(+), 2112 deletions(-) diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index f18d8cec849d..a716dd2f49a5 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -580,13 +580,13 @@ let sha512 = "xV/3r+Hrfpr4ECfJjRjeaMkJvU73KiOADowHjhkqidfNPVAWPzbqw1KePXuMK1TjzMvoAVE7E163oqfH3lDwSw=="; }; }; - "@asyncapi/specs-4.2.0" = { + "@asyncapi/specs-4.2.1" = { name = "_at_asyncapi_slash_specs"; packageName = "@asyncapi/specs"; - version = "4.2.0"; + version = "4.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@asyncapi/specs/-/specs-4.2.0.tgz"; - sha512 = "V9bFzUGNXrpsyennEXNZaPvdoFYYoeUYYAGiQVYsGsUsF/IL/G40NpE9u6nPeXGj8sZgjKlUG6iP39T0DYtSlQ=="; + url = "https://registry.npmjs.org/@asyncapi/specs/-/specs-4.2.1.tgz"; + sha512 = "NeOgMxl1J00PbsmStbDFE6OVA6rE5S3xv0Twm70MwMigsE28hdG9iH/+2SrMBeD/NFKVlryHcEuLtAPoqiCCFg=="; }; }; "@aws-crypto/crc32-2.0.0" = { @@ -1543,13 +1543,13 @@ let sha512 = "ye5554gnVnXdfZ64hptUtETgacXoRWxYv1JF5MctoAzTSH5dXhDPZd9gOjDPyWMcLIk58pnP5+p5vGX6PYn1ag=="; }; }; - "@azure/core-http-2.3.1" = { + "@azure/core-http-2.3.2" = { name = "_at_azure_slash_core-http"; packageName = "@azure/core-http"; - version = "2.3.1"; + version = "2.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-http/-/core-http-2.3.1.tgz"; - sha512 = "cur03BUwV0Tbv81bQBOLafFB02B6G++K6F2O3IMl8pSE2QlXm3cu11bfyBNlDUKi5U+xnB3GC63ae3athhkx6Q=="; + url = "https://registry.npmjs.org/@azure/core-http/-/core-http-2.3.2.tgz"; + sha512 = "Z4dfbglV9kNZO177CNx4bo5ekFuYwwsvjLiKdZI4r84bYGv3irrbQz7JC3/rUfFH2l4T/W6OFleJaa2X0IaQqw=="; }; }; "@azure/core-http-compat-1.3.0" = { @@ -1606,13 +1606,13 @@ let sha512 = "I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw=="; }; }; - "@azure/core-util-1.3.0" = { + "@azure/core-util-1.3.1" = { name = "_at_azure_slash_core-util"; packageName = "@azure/core-util"; - version = "1.3.0"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.3.0.tgz"; - sha512 = "ANP0Er7R2KHHHjwmKzPF9wbd0gXvOX7yRRHeYL1eNd/OaNrMLyfZH/FQasHRVAf6rMXX+EAUpvYwLMFDHDI5Gw=="; + url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.3.1.tgz"; + sha512 = "pjfOUAb+MPLODhGuXot/Hy8wUgPD0UTqYkY3BiYcwEETrLcUCVM1t0roIvlQMgvn1lc48TGy5bsonsFpF862Jw=="; }; }; "@azure/identity-2.1.0" = { @@ -1642,22 +1642,22 @@ let sha512 = "ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg=="; }; }; - "@azure/msal-browser-2.35.0" = { + "@azure/msal-browser-2.36.0" = { name = "_at_azure_slash_msal-browser"; packageName = "@azure/msal-browser"; - version = "2.35.0"; + version = "2.36.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.35.0.tgz"; - sha512 = "L+gSBbJfU3H81Bnj+VIVjO7jRpt2Ex+4i2YVOPE50ykfQ5W9mtBFMRCHb1K+8FzTeyQH/KkQv6bC+MdaU+3LEw=="; + url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.36.0.tgz"; + sha512 = "OrVDZ9ftO7ExqZVHripAt+doKg6G14YbP2LoSygiWQoSqoO4CejoXLRLqANc/HGg18N0p/oaRETw4IHZvwsxZw=="; }; }; - "@azure/msal-common-12.0.0" = { + "@azure/msal-common-12.1.0" = { name = "_at_azure_slash_msal-common"; packageName = "@azure/msal-common"; - version = "12.0.0"; + version = "12.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-12.0.0.tgz"; - sha512 = "SvQl4JWy1yZnxyq0xng/urf103wz68UJG0K9Dq2NM2to7ePA+R1hMisKnXELJvZrEGYANGbh/Hc0T9piGqOteQ=="; + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-12.1.0.tgz"; + sha512 = "9RUiv0evSHvYtvF7r9ksShw9FgCeT6Rf6JB/SOMbMzI0VySZDUBSE+0b9e7DgL2Ph8wSARIh3m8c5pCK9TRY3w=="; }; }; "@azure/msal-common-7.6.0" = { @@ -1669,13 +1669,13 @@ let sha512 = "XqfbglUTVLdkHQ8F9UQJtKseRr3sSnr9ysboxtoswvaMVaEfvyLtMoHv9XdKUfOc0qKGzNgRFd9yRjIWVepl6Q=="; }; }; - "@azure/msal-node-1.17.0" = { + "@azure/msal-node-1.17.1" = { name = "_at_azure_slash_msal-node"; packageName = "@azure/msal-node"; - version = "1.17.0"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.17.0.tgz"; - sha512 = "aOKykKxDc+Kf5vcdOUPdKlJ96YAIyrHyl4W8RyfMqw0iApDckOuhejNwlZr6/M7U40wo1Wj4PwxRVx7d8OFBFg=="; + url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.17.1.tgz"; + sha512 = "1lC80yV+Y/gHqkYJ21Qy1Ej/cI/Kt1JcdY0xiM7/+mcEuBAkArR9B1YMY538PMZ5GfyVlYkCHYh/N0CBD5FJlQ=="; }; }; "@azure/opentelemetry-instrumentation-azure-sdk-1.0.0-beta.2" = { @@ -2254,6 +2254,15 @@ let sha512 = "tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="; }; }; + "@babel/plugin-syntax-bigint-7.8.3" = { + name = "_at_babel_slash_plugin-syntax-bigint"; + packageName = "@babel/plugin-syntax-bigint"; + version = "7.8.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"; + sha512 = "wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="; + }; + }; "@babel/plugin-syntax-class-properties-7.12.13" = { name = "_at_babel_slash_plugin-syntax-class-properties"; packageName = "@babel/plugin-syntax-class-properties"; @@ -2335,6 +2344,15 @@ let sha512 = "IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ=="; }; }; + "@babel/plugin-syntax-import-meta-7.10.4" = { + name = "_at_babel_slash_plugin-syntax-import-meta"; + packageName = "@babel/plugin-syntax-import-meta"; + version = "7.10.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"; + sha512 = "Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="; + }; + }; "@babel/plugin-syntax-json-strings-7.8.3" = { name = "_at_babel_slash_plugin-syntax-json-strings"; packageName = "@babel/plugin-syntax-json-strings"; @@ -3001,6 +3019,15 @@ let sha512 = "rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA=="; }; }; + "@bcoe/v8-coverage-0.2.3" = { + name = "_at_bcoe_slash_v8-coverage"; + packageName = "@bcoe/v8-coverage"; + version = "0.2.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"; + sha512 = "0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="; + }; + }; "@bmewburn/js-beautify-1.14.7" = { name = "_at_bmewburn_slash_js-beautify"; packageName = "@bmewburn/js-beautify"; @@ -3028,40 +3055,40 @@ let sha512 = "Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg=="; }; }; - "@cdktf/cli-core-0.15.5" = { + "@cdktf/cli-core-0.16.0" = { name = "_at_cdktf_slash_cli-core"; packageName = "@cdktf/cli-core"; - version = "0.15.5"; + version = "0.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/cli-core/-/cli-core-0.15.5.tgz"; - sha512 = "9RdxpWrswkd6mvpjePYfQU+9C41Pm9Ikx87TKmZ7UmmY1sgB7jMySqOnCUatghEuzvBiuez2qyqrOU+LUCQG+Q=="; + url = "https://registry.npmjs.org/@cdktf/cli-core/-/cli-core-0.16.0.tgz"; + sha512 = "8Vf0uw4xt2jH2j0CxHkORvaNeP2AaW/nVA6hRbOQgbnxc7PmIzIv8v4DsjrQGDtH8JGX/irqyof8x9jDMTeFvQ=="; }; }; - "@cdktf/commons-0.15.5" = { + "@cdktf/commons-0.16.0" = { name = "_at_cdktf_slash_commons"; packageName = "@cdktf/commons"; - version = "0.15.5"; + version = "0.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/commons/-/commons-0.15.5.tgz"; - sha512 = "rwmQARfqxFDmAFQbCFsE6uYr5FPNcur6U5TOLa03/ruQecoq4tjKlPiB4tOEHp8FAk86V6K38JQ6a81+/3VVtQ=="; + url = "https://registry.npmjs.org/@cdktf/commons/-/commons-0.16.0.tgz"; + sha512 = "zpU+AzzaNuSY+Fi2LA1r9FE9oR01FOXVYIl7r9x4+H/luwffyK/7HqdjfjhHGEPHX1UBUd20dNE61wAbP3D66g=="; }; }; - "@cdktf/hcl2cdk-0.15.5" = { + "@cdktf/hcl2cdk-0.16.0" = { name = "_at_cdktf_slash_hcl2cdk"; packageName = "@cdktf/hcl2cdk"; - version = "0.15.5"; + version = "0.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.15.5.tgz"; - sha512 = "Aqf7cKeozoiaCzyHd3dUE0/9uyd3xHavdsbkah/1+u1I3vo3Oav1aidbSrOOhOgOewTgmokDfyo2wX/I4JwX0g=="; + url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.16.0.tgz"; + sha512 = "qRPsp/SxZu62FdzqbpqFSuYwAyDMxXJhtD8NrIOqPPvWqMOfv+og5onca/4vAWQ5VrJn9YCoJN18nCpOeOIcTw=="; }; }; - "@cdktf/hcl2json-0.15.5" = { + "@cdktf/hcl2json-0.16.0" = { name = "_at_cdktf_slash_hcl2json"; packageName = "@cdktf/hcl2json"; - version = "0.15.5"; + version = "0.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.15.5.tgz"; - sha512 = "bnQ8OMrycCadjfkU9AzG/7RRZgOpuLnFg5GDgnM+rckySR3JedGAUm0BItXYH4Oyyuk+BbLmEU88fJUS5TYgZg=="; + url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.16.0.tgz"; + sha512 = "SYWkXv+wEYUwueu+e6UXRyapOfTzUPiKa14a9GJQQEdxfPBNvrp92fvxZ+zn6eWRg3fzbZXr054/QIG17+KYJg=="; }; }; "@cdktf/node-pty-prebuilt-multiarch-0.10.1-pre.10" = { @@ -3073,13 +3100,13 @@ let sha512 = "5ysQrHJvqYLYg407KvaDNu+xx68ZGaqeF0SohXe5e4yNqJhPFPUQ536rkReQcPc2yZiF5PDmmvf5T9MOacHpSQ=="; }; }; - "@cdktf/provider-generator-0.15.5" = { + "@cdktf/provider-generator-0.16.0" = { name = "_at_cdktf_slash_provider-generator"; packageName = "@cdktf/provider-generator"; - version = "0.15.5"; + version = "0.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.15.5.tgz"; - sha512 = "UVHWEG7P+TN9eMhGaJNYkivoZcj2U571ylOGnmwuiloa7qs/8jTptO8VKOLSzk6ePQQaZ8lhM95GsFfDUEjUWA=="; + url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.16.0.tgz"; + sha512 = "B+2bJWr4yjl91G+j5YbN8hh5vlcD3YseiwxhcNpx4Des4Bm9VDkTVqQTzBmcrXFYWY9SZLyLCXgqehZssgHPJw=="; }; }; "@chemzqm/msgpack-lite-0.1.29" = { @@ -3172,13 +3199,13 @@ let sha512 = "Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw=="; }; }; - "@commitlint/lint-17.6.0" = { + "@commitlint/lint-17.6.1" = { name = "_at_commitlint_slash_lint"; packageName = "@commitlint/lint"; - version = "17.6.0"; + version = "17.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.6.0.tgz"; - sha512 = "6cEXxpxZd7fbtYMxeosOum/Nnwu3VdSuZcrFSqP9lWNsrHRv4ijVsnLeomvo6WHPchGOeEWAazAI7Q6Ap22fJw=="; + url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.6.1.tgz"; + sha512 = "VARJ9kxH64isgwVnC+ABPafCYzqxpsWJIpDaTuI0gh8aX4GQ0i7cn9tvxtFNfJj4ER2BAJeWJ0vURdNYjK2RQQ=="; }; }; "@commitlint/load-17.5.0" = { @@ -3226,13 +3253,13 @@ let sha512 = "znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A=="; }; }; - "@commitlint/rules-17.6.0" = { + "@commitlint/rules-17.6.1" = { name = "_at_commitlint_slash_rules"; packageName = "@commitlint/rules"; - version = "17.6.0"; + version = "17.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.6.0.tgz"; - sha512 = "Ka7AsRFvkKMYYE7itgo7hddRGCiV+0BgbTIAq4PWmnkHAECxYpdqMVzW5jaATmXZfwfRRTB57e7KZWj6EPmK1A=="; + url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.6.1.tgz"; + sha512 = "lUdHw6lYQ1RywExXDdLOKxhpp6857/4c95Dc/1BikrHgdysVUXz26yV0vp1GL7Gv+avx9WqZWTIVB7pNouxlfw=="; }; }; "@commitlint/to-lines-17.4.0" = { @@ -3505,13 +3532,13 @@ let sha512 = "hz1yETUiRJM7yjN3mITSnxcmZaEyaBbyJhpZPpg+cKUil+xhHeZ2wwfbRc83QHGmlqEuDWbdCFqKSpCDJYpYhg=="; }; }; - "@cspell/dict-elixir-4.0.2" = { + "@cspell/dict-elixir-4.0.3" = { name = "_at_cspell_slash_dict-elixir"; packageName = "@cspell/dict-elixir"; - version = "4.0.2"; + version = "4.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.2.tgz"; - sha512 = "/YeHlpZ1pE9VAyxp3V0xyUPapNyC61WwFuw2RByeoMqqYaIfS3Hw+JxtimOsAKVhUvgUH58zyKl5K5Q6FqgCpw=="; + url = "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.3.tgz"; + sha512 = "g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q=="; }; }; "@cspell/dict-en-common-misspellings-1.0.2" = { @@ -3865,13 +3892,13 @@ let sha512 = "KuyOQaby9NID/pn7EkXilpUxjVIvvyLzhr7BPsDS6FcvUE8Yhss6bJowEDHSv6pa+W2387phoqbDf2rTicquAA=="; }; }; - "@cspell/dict-python-4.0.2" = { + "@cspell/dict-python-4.0.3" = { name = "_at_cspell_slash_dict-python"; packageName = "@cspell/dict-python"; - version = "4.0.2"; + version = "4.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.0.2.tgz"; - sha512 = "w1jSWDR1CkO23cZFbSYgnD/ZqknDZSVCI1AOE6sSszOJR8shmBkV3lMBYd+vpLsWhmkLLBcZTXDkiqFLXDGowQ=="; + url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.0.3.tgz"; + sha512 = "tUEMEbtV5kjuiX//K1SFo4ayO6q+bY9ghqTAo3bdlraZy59MFx8KVLYHnRndVqGwM8rRwRhp9Kmb6boAnBl+Kw=="; }; }; "@cspell/dict-r-2.0.1" = { @@ -4216,13 +4243,13 @@ let sha512 = "dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw=="; }; }; - "@edge-runtime/format-1.1.0" = { + "@edge-runtime/format-2.0.1" = { name = "_at_edge-runtime_slash_format"; packageName = "@edge-runtime/format"; - version = "1.1.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@edge-runtime/format/-/format-1.1.0.tgz"; - sha512 = "MkLDDtPhXZIMx83NykdFmOpF7gVWIdd6GBHYb8V/E+PKWvD2pK/qWx9B30oN1iDJ2XBm0SGDjz02S8nDHI9lMQ=="; + url = "https://registry.npmjs.org/@edge-runtime/format/-/format-2.0.1.tgz"; + sha512 = "aE+9DtBvQyg349srixtXEUNauWtIv5HTKPy8Q9dvG1NvpldVIvvhcDBI+SuvDVM8kQl8phbYnp2NTNloBCn/Yg=="; }; }; "@edge-runtime/primitives-2.0.0" = { @@ -4234,6 +4261,15 @@ let sha512 = "AXqUq1zruTJAICrllUvZcgciIcEGHdF6KJ3r6FM0n4k8LpFxZ62tPWVIJ9HKm+xt+ncTBUZxwgUaQ73QMUQEKw=="; }; }; + "@edge-runtime/primitives-2.1.2" = { + name = "_at_edge-runtime_slash_primitives"; + packageName = "@edge-runtime/primitives"; + version = "2.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz"; + sha512 = "SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg=="; + }; + }; "@edge-runtime/vm-2.0.0" = { name = "_at_edge-runtime_slash_vm"; packageName = "@edge-runtime/vm"; @@ -4243,6 +4279,15 @@ let sha512 = "BOLrAX8IWHRXu1siZocwLguKJPEUv7cr+rG8tI4hvHgMdIsBWHJlLeB8EjuUVnIURFrUiM49lVKn8DRrECmngw=="; }; }; + "@edge-runtime/vm-2.1.2" = { + name = "_at_edge-runtime_slash_vm"; + packageName = "@edge-runtime/vm"; + version = "2.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@edge-runtime/vm/-/vm-2.1.2.tgz"; + sha512 = "j4H5S26NJhYOyjVMN8T/YJuwwslfnEX1P0j6N2Rq1FaubgNowdYunA9nlO7lg8Rgjv6dqJ2zKuM7GD1HFtNSGw=="; + }; + }; "@electron-forge/core-6.1.1" = { name = "_at_electron-forge_slash_core"; packageName = "@electron-forge/core"; @@ -4513,13 +4558,13 @@ let sha512 = "mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA=="; }; }; - "@esbuild/android-arm-0.17.16" = { + "@esbuild/android-arm-0.17.17" = { name = "_at_esbuild_slash_android-arm"; packageName = "@esbuild/android-arm"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.16.tgz"; - sha512 = "baLqRpLe4JnKrUXLJChoTN0iXZH7El/mu58GE3WIA6/H834k0XWvLRmGLG8y8arTRS9hJJibPnF0tiGhmWeZgw=="; + url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.17.tgz"; + sha512 = "E6VAZwN7diCa3labs0GYvhEPL2M94WLF8A+czO8hfjREXxba8Ng7nM5VxV+9ihNXIY1iQO1XxUU4P7hbqbICxg=="; }; }; "@esbuild/android-arm-0.17.6" = { @@ -4540,13 +4585,13 @@ let sha512 = "RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg=="; }; }; - "@esbuild/android-arm64-0.17.16" = { + "@esbuild/android-arm64-0.17.17" = { name = "_at_esbuild_slash_android-arm64"; packageName = "@esbuild/android-arm64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.16.tgz"; - sha512 = "QX48qmsEZW+gcHgTmAj+x21mwTz8MlYQBnzF6861cNdQGvj2jzzFjqH0EBabrIa/WVZ2CHolwMoqxVryqKt8+Q=="; + url = "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.17.tgz"; + sha512 = "jaJ5IlmaDLFPNttv0ofcwy/cfeY4bh/n705Tgh+eLObbGtQBK3EPAu+CzL95JVE4nFAliyrnEu0d32Q5foavqg=="; }; }; "@esbuild/android-arm64-0.17.6" = { @@ -4567,13 +4612,13 @@ let sha512 = "SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ=="; }; }; - "@esbuild/android-x64-0.17.16" = { + "@esbuild/android-x64-0.17.17" = { name = "_at_esbuild_slash_android-x64"; packageName = "@esbuild/android-x64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.16.tgz"; - sha512 = "G4wfHhrrz99XJgHnzFvB4UwwPxAWZaZBOFXh+JH1Duf1I4vIVfuYY9uVLpx4eiV2D/Jix8LJY+TAdZ3i40tDow=="; + url = "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.17.tgz"; + sha512 = "446zpfJ3nioMC7ASvJB1pszHVskkw4u/9Eu8s5yvvsSDTzYh4p4ZIRj0DznSl3FBF0Z/mZfrKXTtt0QCoFmoHA=="; }; }; "@esbuild/android-x64-0.17.6" = { @@ -4594,13 +4639,13 @@ let sha512 = "DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw=="; }; }; - "@esbuild/darwin-arm64-0.17.16" = { + "@esbuild/darwin-arm64-0.17.17" = { name = "_at_esbuild_slash_darwin-arm64"; packageName = "@esbuild/darwin-arm64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.16.tgz"; - sha512 = "/Ofw8UXZxuzTLsNFmz1+lmarQI6ztMZ9XktvXedTbt3SNWDn0+ODTwxExLYQ/Hod91EZB4vZPQJLoqLF0jvEzA=="; + url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.17.tgz"; + sha512 = "m/gwyiBwH3jqfUabtq3GH31otL/0sE0l34XKpSIqR7NjQ/XHQ3lpmQHLHbG8AHTGCw8Ao059GvV08MS0bhFIJQ=="; }; }; "@esbuild/darwin-arm64-0.17.6" = { @@ -4621,13 +4666,13 @@ let sha512 = "uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ=="; }; }; - "@esbuild/darwin-x64-0.17.16" = { + "@esbuild/darwin-x64-0.17.17" = { name = "_at_esbuild_slash_darwin-x64"; packageName = "@esbuild/darwin-x64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.16.tgz"; - sha512 = "SzBQtCV3Pdc9kyizh36Ol+dNVhkDyIrGb/JXZqFq8WL37LIyrXU0gUpADcNV311sCOhvY+f2ivMhb5Tuv8nMOQ=="; + url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.17.tgz"; + sha512 = "4utIrsX9IykrqYaXR8ob9Ha2hAY2qLc6ohJ8c0CN1DR8yWeMrTgYFjgdeQ9LIoTOfLetXjuCu5TRPHT9yKYJVg=="; }; }; "@esbuild/darwin-x64-0.17.6" = { @@ -4648,13 +4693,13 @@ let sha512 = "nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw=="; }; }; - "@esbuild/freebsd-arm64-0.17.16" = { + "@esbuild/freebsd-arm64-0.17.17" = { name = "_at_esbuild_slash_freebsd-arm64"; packageName = "@esbuild/freebsd-arm64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.16.tgz"; - sha512 = "ZqftdfS1UlLiH1DnS2u3It7l4Bc3AskKeu+paJSfk7RNOMrOxmeFDhLTMQqMxycP1C3oj8vgkAT6xfAuq7ZPRA=="; + url = "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.17.tgz"; + sha512 = "4PxjQII/9ppOrpEwzQ1b0pXCsFLqy77i0GaHodrmzH9zq2/NEhHMAMJkJ635Ns4fyJPFOlHMz4AsklIyRqFZWA=="; }; }; "@esbuild/freebsd-arm64-0.17.6" = { @@ -4675,13 +4720,13 @@ let sha512 = "TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug=="; }; }; - "@esbuild/freebsd-x64-0.17.16" = { + "@esbuild/freebsd-x64-0.17.17" = { name = "_at_esbuild_slash_freebsd-x64"; packageName = "@esbuild/freebsd-x64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.16.tgz"; - sha512 = "rHV6zNWW1tjgsu0dKQTX9L0ByiJHHLvQKrWtnz8r0YYJI27FU3Xu48gpK2IBj1uCSYhJ+pEk6Y0Um7U3rIvV8g=="; + url = "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.17.tgz"; + sha512 = "lQRS+4sW5S3P1sv0z2Ym807qMDfkmdhUYX30GRBURtLTrJOPDpoU0kI6pVz1hz3U0+YQ0tXGS9YWveQjUewAJw=="; }; }; "@esbuild/freebsd-x64-0.17.6" = { @@ -4702,13 +4747,13 @@ let sha512 = "VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ=="; }; }; - "@esbuild/linux-arm-0.17.16" = { + "@esbuild/linux-arm-0.17.17" = { name = "_at_esbuild_slash_linux-arm"; packageName = "@esbuild/linux-arm"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.16.tgz"; - sha512 = "n4O8oVxbn7nl4+m+ISb0a68/lcJClIbaGAoXwqeubj/D1/oMMuaAXmJVfFlRjJLu/ZvHkxoiFJnmbfp4n8cdSw=="; + url = "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.17.tgz"; + sha512 = "biDs7bjGdOdcmIk6xU426VgdRUpGg39Yz6sT9Xp23aq+IEHDb/u5cbmu/pAANpDB4rZpY/2USPhCA+w9t3roQg=="; }; }; "@esbuild/linux-arm-0.17.6" = { @@ -4729,13 +4774,13 @@ let sha512 = "7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ=="; }; }; - "@esbuild/linux-arm64-0.17.16" = { + "@esbuild/linux-arm64-0.17.17" = { name = "_at_esbuild_slash_linux-arm64"; packageName = "@esbuild/linux-arm64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.16.tgz"; - sha512 = "8yoZhGkU6aHu38WpaM4HrRLTFc7/VVD9Q2SvPcmIQIipQt2I/GMTZNdEHXoypbbGao5kggLcxg0iBKjo0SQYKA=="; + url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.17.tgz"; + sha512 = "2+pwLx0whKY1/Vqt8lyzStyda1v0qjJ5INWIe+d8+1onqQxHLLi3yr5bAa4gvbzhZqBztifYEu8hh1La5+7sUw=="; }; }; "@esbuild/linux-arm64-0.17.6" = { @@ -4756,13 +4801,13 @@ let sha512 = "X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA=="; }; }; - "@esbuild/linux-ia32-0.17.16" = { + "@esbuild/linux-ia32-0.17.17" = { name = "_at_esbuild_slash_linux-ia32"; packageName = "@esbuild/linux-ia32"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.16.tgz"; - sha512 = "9ZBjlkdaVYxPNO8a7OmzDbOH9FMQ1a58j7Xb21UfRU29KcEEU3VTHk+Cvrft/BNv0gpWJMiiZ/f4w0TqSP0gLA=="; + url = "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.17.tgz"; + sha512 = "IBTTv8X60dYo6P2t23sSUYym8fGfMAiuv7PzJ+0LcdAndZRzvke+wTVxJeCq4WgjppkOpndL04gMZIFvwoU34Q=="; }; }; "@esbuild/linux-ia32-0.17.6" = { @@ -4792,13 +4837,13 @@ let sha512 = "hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw=="; }; }; - "@esbuild/linux-loong64-0.17.16" = { + "@esbuild/linux-loong64-0.17.17" = { name = "_at_esbuild_slash_linux-loong64"; packageName = "@esbuild/linux-loong64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.16.tgz"; - sha512 = "TIZTRojVBBzdgChY3UOG7BlPhqJz08AL7jdgeeu+kiObWMFzGnQD7BgBBkWRwOtKR1i2TNlO7YK6m4zxVjjPRQ=="; + url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.17.tgz"; + sha512 = "WVMBtcDpATjaGfWfp6u9dANIqmU9r37SY8wgAivuKmgKHE+bWSuv0qXEFt/p3qXQYxJIGXQQv6hHcm7iWhWjiw=="; }; }; "@esbuild/linux-loong64-0.17.6" = { @@ -4819,13 +4864,13 @@ let sha512 = "znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw=="; }; }; - "@esbuild/linux-mips64el-0.17.16" = { + "@esbuild/linux-mips64el-0.17.17" = { name = "_at_esbuild_slash_linux-mips64el"; packageName = "@esbuild/linux-mips64el"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.16.tgz"; - sha512 = "UPeRuFKCCJYpBbIdczKyHLAIU31GEm0dZl1eMrdYeXDH+SJZh/i+2cAmD3A1Wip9pIc5Sc6Kc5cFUrPXtR0XHA=="; + url = "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.17.tgz"; + sha512 = "2kYCGh8589ZYnY031FgMLy0kmE4VoGdvfJkxLdxP4HJvWNXpyLhjOvxVsYjYZ6awqY4bgLR9tpdYyStgZZhi2A=="; }; }; "@esbuild/linux-mips64el-0.17.6" = { @@ -4846,13 +4891,13 @@ let sha512 = "EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q=="; }; }; - "@esbuild/linux-ppc64-0.17.16" = { + "@esbuild/linux-ppc64-0.17.17" = { name = "_at_esbuild_slash_linux-ppc64"; packageName = "@esbuild/linux-ppc64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.16.tgz"; - sha512 = "io6yShgIEgVUhExJejJ21xvO5QtrbiSeI7vYUnr7l+v/O9t6IowyhdiYnyivX2X5ysOVHAuyHW+Wyi7DNhdw6Q=="; + url = "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.17.tgz"; + sha512 = "KIdG5jdAEeAKogfyMTcszRxy3OPbZhq0PPsW4iKKcdlbk3YE4miKznxV2YOSmiK/hfOZ+lqHri3v8eecT2ATwQ=="; }; }; "@esbuild/linux-ppc64-0.17.6" = { @@ -4873,13 +4918,13 @@ let sha512 = "uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ=="; }; }; - "@esbuild/linux-riscv64-0.17.16" = { + "@esbuild/linux-riscv64-0.17.17" = { name = "_at_esbuild_slash_linux-riscv64"; packageName = "@esbuild/linux-riscv64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.16.tgz"; - sha512 = "WhlGeAHNbSdG/I2gqX2RK2gfgSNwyJuCiFHMc8s3GNEMMHUI109+VMBfhVqRb0ZGzEeRiibi8dItR3ws3Lk+cA=="; + url = "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.17.tgz"; + sha512 = "Cj6uWLBR5LWhcD/2Lkfg2NrkVsNb2sFM5aVEfumKB2vYetkA/9Uyc1jVoxLZ0a38sUhFk4JOVKH0aVdPbjZQeA=="; }; }; "@esbuild/linux-riscv64-0.17.6" = { @@ -4900,13 +4945,13 @@ let sha512 = "NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ=="; }; }; - "@esbuild/linux-s390x-0.17.16" = { + "@esbuild/linux-s390x-0.17.17" = { name = "_at_esbuild_slash_linux-s390x"; packageName = "@esbuild/linux-s390x"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.16.tgz"; - sha512 = "gHRReYsJtViir63bXKoFaQ4pgTyah4ruiMRQ6im9YZuv+gp3UFJkNTY4sFA73YDynmXZA6hi45en4BGhNOJUsw=="; + url = "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.17.tgz"; + sha512 = "lK+SffWIr0XsFf7E0srBjhpkdFVJf3HEgXCwzkm69kNbRar8MhezFpkIwpk0qo2IOQL4JE4mJPJI8AbRPLbuOQ=="; }; }; "@esbuild/linux-s390x-0.17.6" = { @@ -4927,13 +4972,13 @@ let sha512 = "SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w=="; }; }; - "@esbuild/linux-x64-0.17.16" = { + "@esbuild/linux-x64-0.17.17" = { name = "_at_esbuild_slash_linux-x64"; packageName = "@esbuild/linux-x64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.16.tgz"; - sha512 = "mfiiBkxEbUHvi+v0P+TS7UnA9TeGXR48aK4XHkTj0ZwOijxexgMF01UDFaBX7Q6CQsB0d+MFNv9IiXbIHTNd4g=="; + url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.17.tgz"; + sha512 = "XcSGTQcWFQS2jx3lZtQi7cQmDYLrpLRyz1Ns1DzZCtn898cWfm5Icx/DEWNcTU+T+tyPV89RQtDnI7qL2PObPg=="; }; }; "@esbuild/linux-x64-0.17.6" = { @@ -4954,13 +4999,13 @@ let sha512 = "AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA=="; }; }; - "@esbuild/netbsd-x64-0.17.16" = { + "@esbuild/netbsd-x64-0.17.17" = { name = "_at_esbuild_slash_netbsd-x64"; packageName = "@esbuild/netbsd-x64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.16.tgz"; - sha512 = "n8zK1YRDGLRZfVcswcDMDM0j2xKYLNXqei217a4GyBxHIuPMGrrVuJ+Ijfpr0Kufcm7C1k/qaIrGy6eG7wvgmA=="; + url = "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.17.tgz"; + sha512 = "RNLCDmLP5kCWAJR+ItLM3cHxzXRTe4N00TQyQiimq+lyqVqZWGPAvcyfUBM0isE79eEZhIuGN09rAz8EL5KdLA=="; }; }; "@esbuild/netbsd-x64-0.17.6" = { @@ -4981,13 +5026,13 @@ let sha512 = "gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg=="; }; }; - "@esbuild/openbsd-x64-0.17.16" = { + "@esbuild/openbsd-x64-0.17.17" = { name = "_at_esbuild_slash_openbsd-x64"; packageName = "@esbuild/openbsd-x64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.16.tgz"; - sha512 = "lEEfkfsUbo0xC47eSTBqsItXDSzwzwhKUSsVaVjVji07t8+6KA5INp2rN890dHZeueXJAI8q0tEIfbwVRYf6Ew=="; + url = "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.17.tgz"; + sha512 = "PAXswI5+cQq3Pann7FNdcpSUrhrql3wKjj3gVkmuz6OHhqqYxKvi6GgRBoaHjaG22HV/ZZEgF9TlS+9ftHVigA=="; }; }; "@esbuild/openbsd-x64-0.17.6" = { @@ -5008,13 +5053,13 @@ let sha512 = "SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw=="; }; }; - "@esbuild/sunos-x64-0.17.16" = { + "@esbuild/sunos-x64-0.17.17" = { name = "_at_esbuild_slash_sunos-x64"; packageName = "@esbuild/sunos-x64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.16.tgz"; - sha512 = "jlRjsuvG1fgGwnE8Afs7xYDnGz0dBgTNZfgCK6TlvPH3Z13/P5pi6I57vyLE8qZYLrGVtwcm9UbUx1/mZ8Ukag=="; + url = "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.17.tgz"; + sha512 = "V63egsWKnx/4V0FMYkr9NXWrKTB5qFftKGKuZKFIrAkO/7EWLFnbBZNM1CvJ6Sis+XBdPws2YQSHF1Gqf1oj/Q=="; }; }; "@esbuild/sunos-x64-0.17.6" = { @@ -5035,13 +5080,13 @@ let sha512 = "u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg=="; }; }; - "@esbuild/win32-arm64-0.17.16" = { + "@esbuild/win32-arm64-0.17.17" = { name = "_at_esbuild_slash_win32-arm64"; packageName = "@esbuild/win32-arm64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.16.tgz"; - sha512 = "TzoU2qwVe2boOHl/3KNBUv2PNUc38U0TNnzqOAcgPiD/EZxT2s736xfC2dYQbszAwo4MKzzwBV0iHjhfjxMimg=="; + url = "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.17.tgz"; + sha512 = "YtUXLdVnd6YBSYlZODjWzH+KzbaubV0YVd6UxSfoFfa5PtNJNaW+1i+Hcmjpg2nEe0YXUCNF5bkKy1NnBv1y7Q=="; }; }; "@esbuild/win32-arm64-0.17.6" = { @@ -5062,13 +5107,13 @@ let sha512 = "GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ=="; }; }; - "@esbuild/win32-ia32-0.17.16" = { + "@esbuild/win32-ia32-0.17.17" = { name = "_at_esbuild_slash_win32-ia32"; packageName = "@esbuild/win32-ia32"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.16.tgz"; - sha512 = "B8b7W+oo2yb/3xmwk9Vc99hC9bNolvqjaTZYEfMQhzdpBsjTvZBlXQ/teUE55Ww6sg//wlcDjOaqldOKyigWdA=="; + url = "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.17.tgz"; + sha512 = "yczSLRbDdReCO74Yfc5tKG0izzm+lPMYyO1fFTcn0QNwnKmc3K+HdxZWLGKg4pZVte7XVgcFku7TIZNbWEJdeQ=="; }; }; "@esbuild/win32-ia32-0.17.6" = { @@ -5089,13 +5134,13 @@ let sha512 = "5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow=="; }; }; - "@esbuild/win32-x64-0.17.16" = { + "@esbuild/win32-x64-0.17.17" = { name = "_at_esbuild_slash_win32-x64"; packageName = "@esbuild/win32-x64"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.16.tgz"; - sha512 = "xJ7OH/nanouJO9pf03YsL9NAFQBHd8AqfrQd7Pf5laGyyTt/gToul6QYOA/i5i/q8y9iaM5DQFNTgpi995VkOg=="; + url = "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.17.tgz"; + sha512 = "FNZw7H3aqhF9OyRQbDDnzUApDXfC1N6fgBhkqEO2jvYCJ+DxMTfZVqg3AX0R1khg1wHTBRD5SdcibSJ+XF6bFg=="; }; }; "@esbuild/win32-x64-0.17.6" = { @@ -5881,13 +5926,13 @@ let sha512 = "t/mOQTigj51n7z6VPZ1nlb9getkzoLVhN0aUbOJUSD5qvu0gZqSBh7Y9xIP6QeYWF4q6wcZhEggo8HOgYqaWQw=="; }; }; - "@fluentui/react-8.107.5" = { + "@fluentui/react-8.108.1" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "8.107.5"; + version = "8.108.1"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.107.5.tgz"; - sha512 = "8sa4xclbC+5gh7TBInMi4X2g8jOUVsvfMJqM+gpEgvv52zOAVgZE2FfesBCZT7r9FD5KkCy4OVPu9ygFbznnnQ=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.108.1.tgz"; + sha512 = "tzHLK9pgyEp1PFHYynOWxk9VfindG5H5LCvrxwd+MKE+GRu2IQqPnXvi3ht5Z1QJQfwjWiPBpj/mjFKkEQC8Hg=="; }; }; "@fluentui/react-focus-8.8.19" = { @@ -6160,13 +6205,13 @@ let sha512 = "j8yRSSqswWi1QqUGKVEKOG03Q7qOoZP6/h2zN2YO+F5h2+DHU0bSrHCK9Y7lo2DI9fBd8qGAw795sf+3Jva4yA=="; }; }; - "@google-cloud/pubsub-3.4.1" = { + "@google-cloud/pubsub-3.5.0" = { name = "_at_google-cloud_slash_pubsub"; packageName = "@google-cloud/pubsub"; - version = "3.4.1"; + version = "3.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-3.4.1.tgz"; - sha512 = "6sTJAFQYeUeAEyBiz2hMvEku3fUvFwNHKrkHjM3w6hcnN37xCH60NDlnZvGuT2rRXG24QBq6Fx3Pe/3nkaybUQ=="; + url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-3.5.0.tgz"; + sha512 = "4Up5J0DUdUMOfu8I2TdO6pzz0Vtm++wMW7qopgCTgVyYu9zow2sXdA7J0pCnovtB9qizx4Sr8aiaKC0vdMA1cA=="; }; }; "@grammarly/sdk-1.11.0" = { @@ -6241,22 +6286,22 @@ let sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; }; }; - "@graphql-tools/delegate-9.0.31" = { + "@graphql-tools/delegate-9.0.32" = { name = "_at_graphql-tools_slash_delegate"; packageName = "@graphql-tools/delegate"; - version = "9.0.31"; + version = "9.0.32"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.31.tgz"; - sha512 = "kQ08ssI9RMC3ENBCcwR/vP+IAvi5oWiyLBlydlS62N/UoIEHi1AgjT4dPkIlCXy/U/f2l6ETbsWCcdoN/2SQ7A=="; + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.32.tgz"; + sha512 = "ZleId1mDSca4cjHQidIDv4HQR7B7B+nazF3nsWm2IIps40suR/hkADVgfJNegYbn8KhA3C9b1qEjcltP/Do3Ag=="; }; }; - "@graphql-tools/executor-0.0.17" = { + "@graphql-tools/executor-0.0.18" = { name = "_at_graphql-tools_slash_executor"; packageName = "@graphql-tools/executor"; - version = "0.0.17"; + version = "0.0.18"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.17.tgz"; - sha512 = "DVKyMclsNY8ei14FUrR4jn24VHB3EuFldD8yGWrcJ8cudSh47sknznvXN6q0ffqDeAf0IlZSaBCHrOTBqA7OfQ=="; + url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.18.tgz"; + sha512 = "xZC0C+/npXoSHBB5bsJdwxDLgtl1Gu4fL9J2TPQmXoZC3L2N506KJoppf9LgWdHU/xK04luJrhP6WjhfkIN0pQ=="; }; }; "@graphql-tools/executor-graphql-ws-0.0.14" = { @@ -6970,6 +7015,24 @@ let sha512 = "4z6p4jLGSthc8gQ7wu4nHfGYn/IgCKFr+7hjuf80VdXUs7sm029mZGGDpS8sb29PVZWUBvMMTBCVGFhH2nN4Vw=="; }; }; + "@jest/console-29.5.0" = { + name = "_at_jest_slash_console"; + packageName = "@jest/console"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz"; + sha512 = "NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ=="; + }; + }; + "@jest/core-29.5.0" = { + name = "_at_jest_slash_core"; + packageName = "@jest/core"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz"; + sha512 = "28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ=="; + }; + }; "@jest/environment-27.5.1" = { name = "_at_jest_slash_environment"; packageName = "@jest/environment"; @@ -6979,6 +7042,33 @@ let sha512 = "/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA=="; }; }; + "@jest/environment-29.5.0" = { + name = "_at_jest_slash_environment"; + packageName = "@jest/environment"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz"; + sha512 = "5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ=="; + }; + }; + "@jest/expect-29.5.0" = { + name = "_at_jest_slash_expect"; + packageName = "@jest/expect"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz"; + sha512 = "PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g=="; + }; + }; + "@jest/expect-utils-29.5.0" = { + name = "_at_jest_slash_expect-utils"; + packageName = "@jest/expect-utils"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz"; + sha512 = "fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg=="; + }; + }; "@jest/fake-timers-27.5.1" = { name = "_at_jest_slash_fake-timers"; packageName = "@jest/fake-timers"; @@ -6988,6 +7078,33 @@ let sha512 = "/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ=="; }; }; + "@jest/fake-timers-29.5.0" = { + name = "_at_jest_slash_fake-timers"; + packageName = "@jest/fake-timers"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz"; + sha512 = "9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg=="; + }; + }; + "@jest/globals-29.5.0" = { + name = "_at_jest_slash_globals"; + packageName = "@jest/globals"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz"; + sha512 = "S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ=="; + }; + }; + "@jest/reporters-29.5.0" = { + name = "_at_jest_slash_reporters"; + packageName = "@jest/reporters"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz"; + sha512 = "D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA=="; + }; + }; "@jest/schemas-29.4.3" = { name = "_at_jest_slash_schemas"; packageName = "@jest/schemas"; @@ -6997,6 +7114,42 @@ let sha512 = "VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg=="; }; }; + "@jest/source-map-29.4.3" = { + name = "_at_jest_slash_source-map"; + packageName = "@jest/source-map"; + version = "29.4.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz"; + sha512 = "qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w=="; + }; + }; + "@jest/test-result-29.5.0" = { + name = "_at_jest_slash_test-result"; + packageName = "@jest/test-result"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz"; + sha512 = "fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ=="; + }; + }; + "@jest/test-sequencer-29.5.0" = { + name = "_at_jest_slash_test-sequencer"; + packageName = "@jest/test-sequencer"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz"; + sha512 = "yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ=="; + }; + }; + "@jest/transform-29.5.0" = { + name = "_at_jest_slash_transform"; + packageName = "@jest/transform"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz"; + sha512 = "8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw=="; + }; + }; "@jest/types-26.6.2" = { name = "_at_jest_slash_types"; packageName = "@jest/types"; @@ -7015,6 +7168,15 @@ let sha512 = "Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw=="; }; }; + "@jest/types-29.5.0" = { + name = "_at_jest_slash_types"; + packageName = "@jest/types"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz"; + sha512 = "qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog=="; + }; + }; "@jimp/bmp-0.16.13" = { name = "_at_jimp_slash_bmp"; packageName = "@jimp/bmp"; @@ -8095,13 +8257,13 @@ let sha512 = "W+IzEBw8a6LOOfRJM02dTT7BDZijxm+Z7lhtOAz1+y9vQm1Kdz9jlAO+qCEKsfxtUOmKilW8DIRqFw2aUgKeGg=="; }; }; - "@microsoft/rush-lib-5.97.0" = { + "@microsoft/rush-lib-5.97.1" = { name = "_at_microsoft_slash_rush-lib"; packageName = "@microsoft/rush-lib"; - version = "5.97.0"; + version = "5.97.1"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.97.0.tgz"; - sha512 = "LL/MWihVY3Gy96LjUxhJ6vaJOR7mqrvH9V1c4mLBXgs8P8Ejr8XfacLYeCTc4f9uq7Tfh5Z7DYLkKXQPmFO1yw=="; + url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.97.1.tgz"; + sha512 = "Ufs1b1C9kDfEA2TMwgI0NNC53bRsfOehaA7YeOgOZKp8hDe9Kv/vTklJg1iJUyfCchyyaITGsuGfmswFqG19oQ=="; }; }; "@miniflare/cache-2.13.0" = { @@ -8653,13 +8815,13 @@ let sha512 = "3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q=="; }; }; - "@npmcli/config-6.1.5" = { + "@npmcli/config-6.1.6" = { name = "_at_npmcli_slash_config"; packageName = "@npmcli/config"; - version = "6.1.5"; + version = "6.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/config/-/config-6.1.5.tgz"; - sha512 = "nUjJ4+Xo2/XWoq5wsF9ajRtm5xADlLjtyBQGdGlWFRgHpYggZtxQP1XteM6SvEQsHI3P9vDyLGIYO0MlNrQZwQ=="; + url = "https://registry.npmjs.org/@npmcli/config/-/config-6.1.6.tgz"; + sha512 = "TM5dwgaz3Un2T5rdHQ6lX+Jj3TQxK6aV1U5OLByZiUS5qnA0NgC6U0aSESQVy80emToz8dtX3aniXD24wRnBaw=="; }; }; "@npmcli/fs-1.1.1" = { @@ -9049,13 +9211,13 @@ let sha512 = "5vwpq6kbvwkQwKqAoOU3L72GZ3Ta8RRrewKj9OJRolx28KLJJ8Dg9Rf7obRwt5jQA9bkYd8gqzMTrI7H3xLfaw=="; }; }; - "@oclif/command-1.8.22" = { + "@oclif/command-1.8.23" = { name = "_at_oclif_slash_command"; packageName = "@oclif/command"; - version = "1.8.22"; + version = "1.8.23"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.22.tgz"; - sha512 = "lystv7IKsWRmCv6K68jSvHrO/DILUPBDb5GZ3absTA5XTnNXTaMrcwVzTcMPfTf+gCrgIaPPD1bmbRStwfQxFw=="; + url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.23.tgz"; + sha512 = "H78+YbPKw9VankmlFizkHPP81UpoPC2x0MrTdU5/kzy0CCyTBmSGAxaUsiNi9tK7wKxMXOUbCYkk9MHr99zBaw=="; }; }; "@oclif/config-1.17.0" = { @@ -9310,13 +9472,13 @@ let sha512 = "HNWisMYlR8VCnNurDU6os2ikx0s0VyEjDYHNS/h4cgb8DeOxQ0n72HyinUtdDVxJhFy3FWLGl0DJhfEWk3P5Iw=="; }; }; - "@octokit/openapi-types-16.0.0" = { + "@octokit/openapi-types-17.0.0" = { name = "_at_octokit_slash_openapi-types"; packageName = "@octokit/openapi-types"; - version = "16.0.0"; + version = "17.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-16.0.0.tgz"; - sha512 = "JbFWOqTJVLHZSUUoF4FzAZKYtqdxWu9Z5m2QQnOyEa04fOFljvyh7D3GYKbfuaSWisqehImiVIMG4eyJeP5VEA=="; + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.0.0.tgz"; + sha512 = "V8BVJGN0ZmMlURF55VFHFd/L92XQQ43KvFjNmY1IYbCN3V/h/uUFV6iQi19WEHM395Nn+1qhUbViCAD/1czzog=="; }; }; "@octokit/plugin-enterprise-rest-6.0.1" = { @@ -9463,13 +9625,13 @@ let sha512 = "8oWMUji8be66q2B9PmEIUyQm00VPDPun07umUWSaCwxmeaquFBro4Hcc3ruVoDo3zkQyZBlRvhIMEYS3pBhanw=="; }; }; - "@octokit/types-9.0.0" = { + "@octokit/types-9.1.1" = { name = "_at_octokit_slash_types"; packageName = "@octokit/types"; - version = "9.0.0"; + version = "9.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/types/-/types-9.0.0.tgz"; - sha512 = "LUewfj94xCMH2rbD5YJ+6AQ4AVjFYTgpp6rboWM5T7N3IsIF65SBEOVcYMGAEzO/kKNiNaW4LoWtoThOhH06gw=="; + url = "https://registry.npmjs.org/@octokit/types/-/types-9.1.1.tgz"; + sha512 = "hFheiHJEZzE5qn/u4R2IeMLXqUzXgd1vSokHS5x4oq+klHhXNFLL69kanAtrlTqj3K9Dps9XhOqOtDhDmPdlxQ=="; }; }; "@opencensus/core-0.0.8" = { @@ -9589,67 +9751,67 @@ let sha512 = "wU5J8rUoo32oSef/rFpOT1HIjLjAv3qIDHkw1QIhODV3OpAVHi5oVzlouozg9obUmZKtbZ0qUe/m7FP0y0yBzA=="; }; }; - "@orval/angular-6.14.3" = { + "@orval/angular-6.14.4" = { name = "_at_orval_slash_angular"; packageName = "@orval/angular"; - version = "6.14.3"; + version = "6.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/angular/-/angular-6.14.3.tgz"; - sha512 = "az9tYr+nOE4Khtv1lIwulABRvbgGimykcHEKT67KSXgOBRaZ1X9mdCQwIgrdHTxcHW3lMN+Sss3bUR/a2S2IWw=="; + url = "https://registry.npmjs.org/@orval/angular/-/angular-6.14.4.tgz"; + sha512 = "NYc7Rh69AE+BaVS9EWZZpSQ/HmySghh8QdwKohQuQgLYWkdKa9ZY1lSKIOm03N44AepF/w1y5r4iezC7efztzg=="; }; }; - "@orval/axios-6.14.3" = { + "@orval/axios-6.14.4" = { name = "_at_orval_slash_axios"; packageName = "@orval/axios"; - version = "6.14.3"; + version = "6.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/axios/-/axios-6.14.3.tgz"; - sha512 = "3bV+CQ2OFD/1/jz6Jeg0UY7X8ZyaQRX95hLmssIbW84CHOwzG6wrYtLvgPgOk5OlNyYeJhfpq5nFOmh8eaJ+3A=="; + url = "https://registry.npmjs.org/@orval/axios/-/axios-6.14.4.tgz"; + sha512 = "B1tvN8+rD4YNG2ScqBxdDyO8IKtocVXQBIEB4FwevmPM3rzxF6B9ejzywiqy/TnwrrtzVIosp8PFvIPRZ7TSMg=="; }; }; - "@orval/core-6.14.3" = { + "@orval/core-6.14.4" = { name = "_at_orval_slash_core"; packageName = "@orval/core"; - version = "6.14.3"; + version = "6.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/core/-/core-6.14.3.tgz"; - sha512 = "L9pdkCyTiX7v/WwDPVc6ig7ntbSDQf6y/lNdgchFWFplprvMO3cleDC13AFGtSCrcZJklRWKTWoOf5roxDj7ow=="; + url = "https://registry.npmjs.org/@orval/core/-/core-6.14.4.tgz"; + sha512 = "ix1k5qx5tpTRQ06waQLyYNm2pljuZJ2TG8ViydSvug35lzdJKCjDSGUs4SN1LqhWX5k+6T5CiJgiWkWfctea7A=="; }; }; - "@orval/msw-6.14.3" = { + "@orval/msw-6.14.4" = { name = "_at_orval_slash_msw"; packageName = "@orval/msw"; - version = "6.14.3"; + version = "6.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/msw/-/msw-6.14.3.tgz"; - sha512 = "AKZTap3vy5TPlI+liiJckwEQKjDmKMwOsIU68YmFqRERqadwHmOBKprsF34mfEb97hXDPALQbPk8BJNIo++OvA=="; + url = "https://registry.npmjs.org/@orval/msw/-/msw-6.14.4.tgz"; + sha512 = "I6iX5V+SrkfTESUP9kdZrsci7jPE45TjQXds+cH+Mg6VDEvVCrF/+ESR5Q4eNgBWvcmBeUrNn6TACJGllf0IgQ=="; }; }; - "@orval/query-6.14.3" = { + "@orval/query-6.14.4" = { name = "_at_orval_slash_query"; packageName = "@orval/query"; - version = "6.14.3"; + version = "6.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/query/-/query-6.14.3.tgz"; - sha512 = "riO9WfFFE6xS5QIcuNYhEJbYAg6c+H9ostDdyMr3kHvhDh6Uai0uXeuF0XQDGtO2QHmlA0nqeHf5qUMS4yuBDA=="; + url = "https://registry.npmjs.org/@orval/query/-/query-6.14.4.tgz"; + sha512 = "EvmEMaA7X062NnIgLSR4CfBFcjFopvsFSLD7Zz3rMRx+gaYJLQtp5VTETGMrYhp6gmY/d5dC1JRF4PWg4Lvv2A=="; }; }; - "@orval/swr-6.14.3" = { + "@orval/swr-6.14.4" = { name = "_at_orval_slash_swr"; packageName = "@orval/swr"; - version = "6.14.3"; + version = "6.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/swr/-/swr-6.14.3.tgz"; - sha512 = "aG0B6X3JACkBx4ue7dZPS1odJqq8ZtQ3bA+JyL6i3Ebzcr593JcDQgeSRYQMCcj4Xik+ck7H7EeXeG808hMbBw=="; + url = "https://registry.npmjs.org/@orval/swr/-/swr-6.14.4.tgz"; + sha512 = "ixGG86PvPQ7f2kiU3Fu7ocJb4kyg1bobfNzWMakUg6uiTnxVVbu2Nkg87lXQRYu+vDZPKh3JGyS+dU4oU+EYGg=="; }; }; - "@orval/zod-6.14.3" = { + "@orval/zod-6.14.4" = { name = "_at_orval_slash_zod"; packageName = "@orval/zod"; - version = "6.14.3"; + version = "6.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/zod/-/zod-6.14.3.tgz"; - sha512 = "ZJWQTCIMbQfUgoxDvzO0MNpmwx5jTl0ldFStrYzeoIgoZ10BIR/Mm0HWc52OjevqbRu0h2xfwMF88rSzzy+N1Q=="; + url = "https://registry.npmjs.org/@orval/zod/-/zod-6.14.4.tgz"; + sha512 = "9WRmwCXYBAKx6zEh8vvcDiVQe3JwrdKm8f+2qw3sARI8CLCwiIreyVY3HGmm3nMNxBtjCXEeLVqup0xZGNIX9g=="; }; }; "@parcel/bundler-default-2.8.3" = { @@ -10201,6 +10363,15 @@ let sha512 = "m7X9U6BG2+J+R1lSOdCiITLLrxm+cWlNI3HUFA92oLO77ObGNzaKdh8pMLqdZcshtkKuV84olNNXDfMc4FezBQ=="; }; }; + "@pkgjs/parseargs-0.11.0" = { + name = "_at_pkgjs_slash_parseargs"; + packageName = "@pkgjs/parseargs"; + version = "0.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz"; + sha512 = "+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="; + }; + }; "@pkgr/utils-2.3.1" = { name = "_at_pkgr_slash_utils"; packageName = "@pkgr/utils"; @@ -10390,22 +10561,22 @@ let sha512 = "J/p2PcgT39Za4wpukbN6iUkEUvL5aE7Bs9kXBeEkrjEgc0Uu7J7B2ypwx9J0qM3m3lk2273RT5/4oGv8pfFLcg=="; }; }; - "@prisma/engines-4.12.0" = { + "@prisma/engines-4.13.0" = { name = "_at_prisma_slash_engines"; packageName = "@prisma/engines"; - version = "4.12.0"; + version = "4.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/engines/-/engines-4.12.0.tgz"; - sha512 = "0alKtnxhNB5hYU+ymESBlGI4b9XrGGSdv7Ud+8TE/fBNOEhIud0XQsAR+TrvUZgS4na5czubiMsODw0TUrgkIA=="; + url = "https://registry.npmjs.org/@prisma/engines/-/engines-4.13.0.tgz"; + sha512 = "HrniowHRZXHuGT9XRgoXEaP2gJLXM5RMoItaY2PkjvuZ+iHc0Zjbm/302MB8YsPdWozAPHHn+jpFEcEn71OgPw=="; }; }; - "@prisma/prisma-fmt-wasm-4.12.0-67.659ef412370fa3b41cd7bf6e94587c1dfb7f67e7" = { + "@prisma/prisma-fmt-wasm-4.13.0-50.1e7af066ee9cb95cf3a403c78d9aab3e6b04f37a" = { name = "_at_prisma_slash_prisma-fmt-wasm"; packageName = "@prisma/prisma-fmt-wasm"; - version = "4.12.0-67.659ef412370fa3b41cd7bf6e94587c1dfb7f67e7"; + version = "4.13.0-50.1e7af066ee9cb95cf3a403c78d9aab3e6b04f37a"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.12.0-67.659ef412370fa3b41cd7bf6e94587c1dfb7f67e7.tgz"; - sha512 = "jh9ajkGl3Lw9uTKEwlNBSh79a1v6C1JducqxakgkQyLev6kG1xxkuc2rDGrIDxUdpCOuuPRjuSCHhjnv7qLLgQ=="; + url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.13.0-50.1e7af066ee9cb95cf3a403c78d9aab3e6b04f37a.tgz"; + sha512 = "kEYSUa3XT1Oiu/MbdUkyjfVtAOQmZz69KGKFH/GWoQNLvkscrqy4J4XewEY80BrVuyC3vbV7un4kea0xklWhpA=="; }; }; "@protobufjs/aspromise-1.1.2" = { @@ -10498,13 +10669,13 @@ let sha512 = "Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw=="; }; }; - "@puppeteer/browsers-0.4.1" = { + "@puppeteer/browsers-0.5.0" = { name = "_at_puppeteer_slash_browsers"; packageName = "@puppeteer/browsers"; - version = "0.4.1"; + version = "0.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-0.4.1.tgz"; - sha512 = "4IICvy1McAkT/HyNZHIs7sp8ngBX1dmO0TPQ+FWq9ATQMqI8p+Ulm5A3kS2wYDh5HDHHkYrrETOu6rlj64VuTw=="; + url = "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-0.5.0.tgz"; + sha512 = "Uw6oB7VvmPRLE4iKsjuOh8zgDabhNX67dzo8U/BB0f9527qx+4eeUs+korU98OhG5C4ubg7ufBgVi63XYwS6TQ=="; }; }; "@putdotio/api-client-8.33.1" = { @@ -10723,13 +10894,13 @@ let sha512 = "AfegzZvSSDc+LwnXV+SwROTrDtoLiPxeFW+jxgvtDAnkuCX1rrzmVJ6CzqZ1Ai0bVfmJadkG5GxtAfYclpPmgw=="; }; }; - "@remix-run/web-fetch-4.3.3" = { + "@remix-run/web-fetch-4.3.4" = { name = "_at_remix-run_slash_web-fetch"; packageName = "@remix-run/web-fetch"; - version = "4.3.3"; + version = "4.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/web-fetch/-/web-fetch-4.3.3.tgz"; - sha512 = "DK9vA2tgsadcFPpxW4fvN198tiWpyPhwR0EYOuM4QjpDCz0G619c9RDMdyMy6a7Qb/jwiyx9SOPHWc65QAl+1g=="; + url = "https://registry.npmjs.org/@remix-run/web-fetch/-/web-fetch-4.3.4.tgz"; + sha512 = "AUM1XBa4hcgeNt2CD86OlB5aDLlqdMl0uJ+89R8dPGx07I5BwMXnbopCaPAkvSBIoHeT/IoLWIuZrLi7RvXS+Q=="; }; }; "@remix-run/web-file-3.0.2" = { @@ -10948,31 +11119,31 @@ let sha512 = "SGEwNTwNq9bI3pkdd01yCaH+gAsHqs0uxfGvtw9b0LJXH52qooWXnrFTRRLG1aL9pf+M2CARdrA9HLHJys3jiQ=="; }; }; - "@rushstack/rush-amazon-s3-build-cache-plugin-5.97.0" = { + "@rushstack/rush-amazon-s3-build-cache-plugin-5.97.1" = { name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin"; packageName = "@rushstack/rush-amazon-s3-build-cache-plugin"; - version = "5.97.0"; + version = "5.97.1"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.97.0.tgz"; - sha512 = "YniY2oeCx2ue3N6jFlFVBvGlpWrynJiWJCJ/XjEOxIUCU9vezi+fsEWRfToa1d6lxGJwfifTvW5JSuaI4oVrtg=="; + url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.97.1.tgz"; + sha512 = "GIA8oaVKR15TzApKGw/xdUYaY2B74/fbY+OHk2hFx73slHiYiA5azMG/BFIyK8e6QWaSpMM4MlAD1H0Cud9ogQ=="; }; }; - "@rushstack/rush-azure-storage-build-cache-plugin-5.97.0" = { + "@rushstack/rush-azure-storage-build-cache-plugin-5.97.1" = { name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin"; packageName = "@rushstack/rush-azure-storage-build-cache-plugin"; - version = "5.97.0"; + version = "5.97.1"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.97.0.tgz"; - sha512 = "PpZLGisNWMjlgGPYZwDljIJBfxqukTeIr/tYDBkUHTukBI6ZDge4OAAO8vuoDhc3OcDjndSHBnVc4V8cP1mh1A=="; + url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.97.1.tgz"; + sha512 = "+u41WJ5vwacCBbxeJJAKL4vzW5KXFM3P/QNwr7YBoRuZ9z9t2FL0fvtW0pFLHARghGCxcC5/mnojnprIEo2OJQ=="; }; }; - "@rushstack/rush-sdk-5.97.0" = { + "@rushstack/rush-sdk-5.97.1" = { name = "_at_rushstack_slash_rush-sdk"; packageName = "@rushstack/rush-sdk"; - version = "5.97.0"; + version = "5.97.1"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.97.0.tgz"; - sha512 = "HmU0izTjnyLlw2lu9tSdyb56jCbQjS1ALY6vGJAwmqGxypwpg+Jed7MlgFUSwPi42iHspOCfQptSAYGQYDvR+A=="; + url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.97.1.tgz"; + sha512 = "vXcvflSUAE6ADLQrcQX5MP4eYUqoIMQwj5ySSQqKsZtHpxawrX/IZXNanEdfUFKrmSfKv/ZPJ5TsSaEiHNc1ZA=="; }; }; "@rushstack/stream-collator-4.0.229" = { @@ -11083,13 +11254,13 @@ let sha512 = "P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ=="; }; }; - "@sentry-internal/tracing-7.47.0" = { + "@sentry-internal/tracing-7.49.0" = { name = "_at_sentry-internal_slash_tracing"; packageName = "@sentry-internal/tracing"; - version = "7.47.0"; + version = "7.49.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.47.0.tgz"; - sha512 = "udpHnCzF8DQsWf0gQwd0XFGp6Y8MOiwnl8vGt2ohqZGS3m1+IxoRLXsSkD8qmvN6KKDnwbaAvYnK0z0L+AW95g=="; + url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.49.0.tgz"; + sha512 = "ESh3+ZneQk/3HESTUmIPNrW5GVPu/HrRJU+eAJJto74vm+6vP7zDn2YV2gJ1w18O/37nc7W/bVCgZJlhZ3cwew=="; }; }; "@sentry/core-6.19.7" = { @@ -11101,13 +11272,13 @@ let sha512 = "tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw=="; }; }; - "@sentry/core-7.47.0" = { + "@sentry/core-7.49.0" = { name = "_at_sentry_slash_core"; packageName = "@sentry/core"; - version = "7.47.0"; + version = "7.49.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/core/-/core-7.47.0.tgz"; - sha512 = "EFhZhKdMu7wKmWYZwbgTi8FNZ7Fq+HdlXiZWNz51Bqe3pHmfAkdHtAEs0Buo0v623MKA0CA4EjXIazGUM34XTg=="; + url = "https://registry.npmjs.org/@sentry/core/-/core-7.49.0.tgz"; + sha512 = "AlSnCYgfEbvK8pkNluUkmdW/cD9UpvOVCa+ERQswXNRkAv5aDGCL6Ihv6fnIajE++BYuwZh0+HwZUBVKTFzoZg=="; }; }; "@sentry/hub-6.19.7" = { @@ -11119,13 +11290,13 @@ let sha512 = "y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA=="; }; }; - "@sentry/integrations-7.47.0" = { + "@sentry/integrations-7.49.0" = { name = "_at_sentry_slash_integrations"; packageName = "@sentry/integrations"; - version = "7.47.0"; + version = "7.49.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.47.0.tgz"; - sha512 = "PUSeBYI3fCOswn+K+PLjtl2epr8/ceqebWqVcxHclczSY3EOZE+osznDFgZmeVgrHavsgfE4oFVqJeFvDJwCog=="; + url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.49.0.tgz"; + sha512 = "qsEVkcZjw+toFGnzsVo+Cozz+hMK9LugzkfJyOFL+CyiEx9MfkEmsvRpZe1ETEWKe/VZylYU27NQzl6UNuAUjw=="; }; }; "@sentry/minimal-6.19.7" = { @@ -11146,13 +11317,13 @@ let sha512 = "gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg=="; }; }; - "@sentry/node-7.47.0" = { + "@sentry/node-7.49.0" = { name = "_at_sentry_slash_node"; packageName = "@sentry/node"; - version = "7.47.0"; + version = "7.49.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/node/-/node-7.47.0.tgz"; - sha512 = "LTg2r5EV9yh4GLYDF+ViSltR9LLj/pcvk8YhANJcMO3Fp//xh8njcdU0FC2yNthUREawYDzAsVzLyCYJfV0H1A=="; + url = "https://registry.npmjs.org/@sentry/node/-/node-7.49.0.tgz"; + sha512 = "KLIrqcbKk4yR3g8fjl87Eyv4M9j4YI6b7sqVAZYj3FrX3mC6JQyGdlDfUpSKy604n1iAdr6OuUp5f9x7jPJaeQ=="; }; }; "@sentry/types-6.19.7" = { @@ -11164,13 +11335,13 @@ let sha512 = "jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg=="; }; }; - "@sentry/types-7.47.0" = { + "@sentry/types-7.49.0" = { name = "_at_sentry_slash_types"; packageName = "@sentry/types"; - version = "7.47.0"; + version = "7.49.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/types/-/types-7.47.0.tgz"; - sha512 = "GxXocplN0j1+uczovHrfkykl9wvkamDtWxlPUQgyGlbLGZn+UH1Y79D4D58COaFWGEZdSNKr62gZAjfEYu9nQA=="; + url = "https://registry.npmjs.org/@sentry/types/-/types-7.49.0.tgz"; + sha512 = "9yXXh7iv76+O6h2ONUVx0wsL1auqJFWez62mTjWk4350SgMmWp/zUkBxnVXhmcYqscz/CepC+Loz9vITLXtgxg=="; }; }; "@sentry/utils-6.19.7" = { @@ -11182,13 +11353,13 @@ let sha512 = "z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA=="; }; }; - "@sentry/utils-7.47.0" = { + "@sentry/utils-7.49.0" = { name = "_at_sentry_slash_utils"; packageName = "@sentry/utils"; - version = "7.47.0"; + version = "7.49.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.47.0.tgz"; - sha512 = "A89SaOLp6XeZfByeYo2C8Ecye/YAtk/gENuyOUhQEdMulI6mZdjqtHAp7pTMVgkBc/YNARVuoa+kR/IdRrTPkQ=="; + url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.49.0.tgz"; + sha512 = "JdC9yGnOgev4ISJVwmIoFsk8Zx0psDZJAj2DV7x4wMZsO6QK+YjC7G3mUED/S5D5lsrkBZ/3uvQQhr8DQI4UcQ=="; }; }; "@serialport/binding-mock-10.2.2" = { @@ -11497,6 +11668,24 @@ let sha512 = "Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ=="; }; }; + "@sinonjs/commons-2.0.0" = { + name = "_at_sinonjs_slash_commons"; + packageName = "@sinonjs/commons"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz"; + sha512 = "uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg=="; + }; + }; + "@sinonjs/fake-timers-10.0.2" = { + name = "_at_sinonjs_slash_fake-timers"; + packageName = "@sinonjs/fake-timers"; + version = "10.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz"; + sha512 = "SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw=="; + }; + }; "@sinonjs/fake-timers-8.1.0" = { name = "_at_sinonjs_slash_fake-timers"; packageName = "@sinonjs/fake-timers"; @@ -11776,13 +11965,13 @@ let sha512 = "gvlBXkyxLBNdslN/5HEYvCqMr0dvKQwJbbJCKbOvvRTZhhPVzmLb7yavWXjOnRhYn6IAhGAs7u4yhxn7cX/FtQ=="; }; }; - "@stoplight/spectral-ruleset-migrator-1.9.2" = { + "@stoplight/spectral-ruleset-migrator-1.9.3" = { name = "_at_stoplight_slash_spectral-ruleset-migrator"; packageName = "@stoplight/spectral-ruleset-migrator"; - version = "1.9.2"; + version = "1.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-migrator/-/spectral-ruleset-migrator-1.9.2.tgz"; - sha512 = "FbXsPFt+nikggCF1x+kfaNXpE7Ol/0Um1eR0S1/mNyf/L5R0RBnyqZLvJwC6cU6O49CLAjYy7fCbxgrjNcZvbg=="; + url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-migrator/-/spectral-ruleset-migrator-1.9.3.tgz"; + sha512 = "lqdBW7pZT+V1DNbOxG2EkjqMIMC5YjQ4bFkgvziH6HFAnGLlvoa2chJHt+X22+DhuvBF8tzpaYrT51iL/BhxXg=="; }; }; "@stoplight/spectral-rulesets-1.15.0" = { @@ -11812,13 +12001,13 @@ let sha512 = "dwqYcDrGmEyUv5TWrDam5TGOxU72ufyQ7hnOIIDdmW5ezOwZaBFoR5XQ9AsH49w7wgvOqB2Bmo799pJPWnpCbg=="; }; }; - "@stoplight/types-13.11.0" = { + "@stoplight/types-13.12.0" = { name = "_at_stoplight_slash_types"; packageName = "@stoplight/types"; - version = "13.11.0"; + version = "13.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/types/-/types-13.11.0.tgz"; - sha512 = "jGojdysNoYytTDCmGEjxugIRllmZhYxMaOt+NtPRo/ZxjXY9mbQ6kzoNWyFiEDzjTVzYyr32ygJ/ex7/LAhvXw=="; + url = "https://registry.npmjs.org/@stoplight/types/-/types-13.12.0.tgz"; + sha512 = "lpyB8b5cNcg/CyQ9W7Q2BxPkHhBA8+9byviGT6uL2Ok/5iao0poCnFUH++Cd7VN1/RaXrv0LT9fyOg4fJIl0iA=="; }; }; "@stoplight/types-13.6.0" = { @@ -11911,103 +12100,103 @@ let sha512 = "gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA=="; }; }; - "@swc/core-1.3.50" = { + "@swc/core-1.3.53" = { name = "_at_swc_slash_core"; packageName = "@swc/core"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.3.50.tgz"; - sha512 = "soTAHlwkI8zukR9KftWZ0gZ7HKU99B/C3CtBxzSI3N23QG+EfSSOgrYARfuZk5g4yLWpsU0rEkojd78vixqkwg=="; + url = "https://registry.npmjs.org/@swc/core/-/core-1.3.53.tgz"; + sha512 = "OM5nCfKDZXr1HjxD072Jlx5463tPX7xeY7NDSRE3X4KFlkRDFdyMWAyV3pet1oouOfUNrzzoVTAR4XSU8ytO6Q=="; }; }; - "@swc/core-darwin-arm64-1.3.50" = { + "@swc/core-darwin-arm64-1.3.53" = { name = "_at_swc_slash_core-darwin-arm64"; packageName = "@swc/core-darwin-arm64"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.50.tgz"; - sha512 = "riJGLORCFOMeUccEV0hzua0iyJFks7kef+5GfcmC93SLno+LHFDnaJ4mKVXcCAmQ7GYhVTPJs9gSHIW2fO5anQ=="; + url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.53.tgz"; + sha512 = "JvWwV/duzdQ60iwWYceDhDk75LmdrLoPC7myX3Src3gl/bJtETMq7uHS9uY8m0GQOqbct7XGR3q5Ff21YxkSzg=="; }; }; - "@swc/core-darwin-x64-1.3.50" = { + "@swc/core-darwin-x64-1.3.53" = { name = "_at_swc_slash_core-darwin-x64"; packageName = "@swc/core-darwin-x64"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.50.tgz"; - sha512 = "XaAhpeUoAK8tOUYSXH/v35yEjIoSP6ClGV/EaqBmDuCzAPue6uJMlIAW+nTmdtqVm5ZNZy2cKtP4ZHhVlfl7xw=="; + url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.53.tgz"; + sha512 = "UuIGZtCfUPJM2Q01bRIFzmucOMg8UZ+mY3kh5xB8kl/VrLltBlraSWGjjJzYmUeUxiF8+CtMfeSYav5QfU2v3g=="; }; }; - "@swc/core-linux-arm-gnueabihf-1.3.50" = { + "@swc/core-linux-arm-gnueabihf-1.3.53" = { name = "_at_swc_slash_core-linux-arm-gnueabihf"; packageName = "@swc/core-linux-arm-gnueabihf"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.50.tgz"; - sha512 = "8hDtXs0T5biMtA3I21JQG1uxL+Hb/D2t0NZENuajVK5Vky3GXmf+ICVeQzwGzSXiyftaDgyNAvBidbKPBlNEtw=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.53.tgz"; + sha512 = "LupAjTErteyLmowYIfiQeTz3uVh7/SPYv/EuG1PYrajNoUYomt7WA0rQUoyglF9VtwVyNqxptWEO5So32ApTHA=="; }; }; - "@swc/core-linux-arm64-gnu-1.3.50" = { + "@swc/core-linux-arm64-gnu-1.3.53" = { name = "_at_swc_slash_core-linux-arm64-gnu"; packageName = "@swc/core-linux-arm64-gnu"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.50.tgz"; - sha512 = "iS908P5cNTHWus4QefSg2jn4lDYcl15sN1Fvx8fQgqYQra2O9CsR8lXBJYkvllykkzoKvWfcOLRCTquz3vsnVQ=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.53.tgz"; + sha512 = "kREfZdiJH/O8GtJJ22wVN9DVzz/+CPAkw5Mn5te2KQg0xJHMWaESU5XeYMWvtwyOQVmb31b6zCGFy3pnBWWfGw=="; }; }; - "@swc/core-linux-arm64-musl-1.3.50" = { + "@swc/core-linux-arm64-musl-1.3.53" = { name = "_at_swc_slash_core-linux-arm64-musl"; packageName = "@swc/core-linux-arm64-musl"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.50.tgz"; - sha512 = "ysh8MeaWjGqVwIPCDUhUOr4oczIx5qb8vFBoegI+SOUfcpWik22/+hG25LWzZY6PwAtqUGkhsJt/+5dY4IMhEA=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.53.tgz"; + sha512 = "VeAgomBr6BVuBRjZjRHmvp5gKp1nZgbbd441ca1AvsPd2c+ZyhyHLxTWeHOzBDa/vYnmi9BCwx3QJzFqbAFPVw=="; }; }; - "@swc/core-linux-x64-gnu-1.3.50" = { + "@swc/core-linux-x64-gnu-1.3.53" = { name = "_at_swc_slash_core-linux-x64-gnu"; packageName = "@swc/core-linux-x64-gnu"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.50.tgz"; - sha512 = "Ci4LQaGIPweWNVWgR2f47nrYEfq7002Pj6WWKGrnO6g+k5cwR3izxHMOnZhcKyAD3cWOS904i/GbfgXs2wBCDQ=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.53.tgz"; + sha512 = "LFX5+QpQkESPkmx860C40pIiYf1utEqoA+WDtmKnUz3DucYvw3eGlXCBdyklP7UBWwJktKIcPlIqr7yROY5VlQ=="; }; }; - "@swc/core-linux-x64-musl-1.3.50" = { + "@swc/core-linux-x64-musl-1.3.53" = { name = "_at_swc_slash_core-linux-x64-musl"; packageName = "@swc/core-linux-x64-musl"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.50.tgz"; - sha512 = "SEXOhGjmC4rdBeucCvNmtO2vflUEhkmWLfqvkalHYDbPMA/gwLSoYu3D85u5XqB8DatDi4TOCUx80IR1b/vDBQ=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.53.tgz"; + sha512 = "O0lbJgeaM0VEsG8wFYvpF+Iuf0IENv+LnXHoygkAsv67sVW54+gFxav2sEdkftD5qYe9ku4tmtTVYRZlFgC84Q=="; }; }; - "@swc/core-win32-arm64-msvc-1.3.50" = { + "@swc/core-win32-arm64-msvc-1.3.53" = { name = "_at_swc_slash_core-win32-arm64-msvc"; packageName = "@swc/core-win32-arm64-msvc"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.50.tgz"; - sha512 = "DPsJ2r9mYU8VzF9vhK323psyE8modj5be9M9diOsqF58Fu9ARtOfuulY+eiS5e41ya2XM/H2N/qOfsA+h2KRcg=="; + url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.53.tgz"; + sha512 = "7PgvPl0aNLaFZSK+rIi4DB1g0aW2qOsTIJQSJGRszsCP8pze/traXymyuSG2I3y9Hx7Z+bP5ycJydyAgCw88WA=="; }; }; - "@swc/core-win32-ia32-msvc-1.3.50" = { + "@swc/core-win32-ia32-msvc-1.3.53" = { name = "_at_swc_slash_core-win32-ia32-msvc"; packageName = "@swc/core-win32-ia32-msvc"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.50.tgz"; - sha512 = "2iyzHLat0C93S3XLp7QJ6RTA9Md+EcPl2fq1S/m2EZqofcq7wu5SuywaXoF89xOibOJBnWe6KwOnOFWFaXrPjQ=="; + url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.53.tgz"; + sha512 = "T+OacGm69t8+1mt1sHlwhREiFiFgSeIGL3h11FIs8o2zKnOr5z2H9myzR432X8WuHGVQAOCMvDu53LCMBD0ZzQ=="; }; }; - "@swc/core-win32-x64-msvc-1.3.50" = { + "@swc/core-win32-x64-msvc-1.3.53" = { name = "_at_swc_slash_core-win32-x64-msvc"; packageName = "@swc/core-win32-x64-msvc"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.50.tgz"; - sha512 = "iFRU2Y5DVIEdjaWnlLij8QQBM5Q91UJotNNgzuevPSIOhOyhF6V2AQS1QC4mfkPCy3Bw0GrZDChu3GcuBj9Rzw=="; + url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.53.tgz"; + sha512 = "uV1/GhROJ/SXzj+f+kKcVtR2GuAiggvbqepzZS46+G47okf6229hr2T1fjmiwYyA75w9R3Bj/wil4UhodohOLg=="; }; }; "@swc/helpers-0.4.14" = { @@ -12028,13 +12217,13 @@ let sha512 = "SjY/p4MmECVVEWspzSRpQEM3sjR17sP8PbGxELWrT+YZMBfiUyt1MRUNjMV23zohwlG2HYtCQOsCwsTHguXkyg=="; }; }; - "@swc/wasm-1.3.50" = { + "@swc/wasm-1.3.53" = { name = "_at_swc_slash_wasm"; packageName = "@swc/wasm"; - version = "1.3.50"; + version = "1.3.53"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.50.tgz"; - sha512 = "ZBPanlSV7luHeKdznx3DJGPNDjD2ApMfZ3Ah7QDvM+sR3vzebFqrk9jzc4esLE/2I1BC9xrNWPcwtbSAeBijtQ=="; + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.53.tgz"; + sha512 = "eGTsk17m3VvoFKQPgAzAAN/f0+ktd9i89IRH/1LqDouUYj4bX0ziz60HFt9IYDHWPBZziG2yXd1xyEeHxlqIKA=="; }; }; "@szmarczak/http-timer-1.1.2" = { @@ -12361,13 +12550,13 @@ let sha512 = "QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ=="; }; }; - "@tufjs/models-1.0.2" = { + "@tufjs/models-1.0.3" = { name = "_at_tufjs_slash_models"; packageName = "@tufjs/models"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@tufjs/models/-/models-1.0.2.tgz"; - sha512 = "uxarDtxTIK3f8hJS4yFhW/lvTa3tsiQU5iDCRut+NCnOXvNtEul0Ct58NIIcIx9Rkt7OFEK31Ndpqsd663nsew=="; + url = "https://registry.npmjs.org/@tufjs/models/-/models-1.0.3.tgz"; + sha512 = "mkFEqqRisi13DmR5pX4x+Zk97EiU8djTtpNW1GeuX410y/raAsq/T3ZCjwoRIZ8/cIBfW0olK/sywlAiWevDVw=="; }; }; "@turist/fetch-7.2.0" = { @@ -12433,6 +12622,42 @@ let sha512 = "pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A=="; }; }; + "@types/babel__core-7.20.0" = { + name = "_at_types_slash_babel__core"; + packageName = "@types/babel__core"; + version = "7.20.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz"; + sha512 = "+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ=="; + }; + }; + "@types/babel__generator-7.6.4" = { + name = "_at_types_slash_babel__generator"; + packageName = "@types/babel__generator"; + version = "7.6.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz"; + sha512 = "tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg=="; + }; + }; + "@types/babel__template-7.4.1" = { + name = "_at_types_slash_babel__template"; + packageName = "@types/babel__template"; + version = "7.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz"; + sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="; + }; + }; + "@types/babel__traverse-7.18.3" = { + name = "_at_types_slash_babel__traverse"; + packageName = "@types/babel__traverse"; + version = "7.18.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz"; + sha512 = "1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w=="; + }; + }; "@types/babylon-6.16.6" = { name = "_at_types_slash_babylon"; packageName = "@types/babylon"; @@ -12694,13 +12919,13 @@ let sha512 = "CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ=="; }; }; - "@types/estree-1.0.0" = { + "@types/estree-1.0.1" = { name = "_at_types_slash_estree"; packageName = "@types/estree"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz"; - sha512 = "WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ=="; + url = "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz"; + sha512 = "LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA=="; }; }; "@types/estree-jsx-0.0.1" = { @@ -12838,6 +13063,15 @@ let sha512 = "IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w=="; }; }; + "@types/graceful-fs-4.1.6" = { + name = "_at_types_slash_graceful-fs"; + packageName = "@types/graceful-fs"; + version = "4.1.6"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz"; + sha512 = "Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw=="; + }; + }; "@types/hast-2.3.4" = { name = "_at_types_slash_hast"; packageName = "@types/hast"; @@ -13063,13 +13297,13 @@ let sha512 = "0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw=="; }; }; - "@types/lodash-4.14.192" = { + "@types/lodash-4.14.194" = { name = "_at_types_slash_lodash"; packageName = "@types/lodash"; - version = "4.14.192"; + version = "4.14.194"; src = fetchurl { - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.192.tgz"; - sha512 = "km+Vyn3BYm5ytMO13k9KTp27O75rbQ0NFw+U//g+PX7VZyjCioXaRFisqSIJRECljcTv73G3i6BpglNGHgUQ5A=="; + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz"; + sha512 = "r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g=="; }; }; "@types/long-4.0.2" = { @@ -13288,6 +13522,15 @@ let sha512 = "XAMpaw1s1+6zM+jn2tmw8MyaRDIJfXxqmIQIS0HfoGYPuf7dUWeiUKopwq13KFX9lEp1+THGtlaaYx39Nxr58g=="; }; }; + "@types/node-16.18.24" = { + name = "_at_types_slash_node"; + packageName = "@types/node"; + version = "16.18.24"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/node/-/node-16.18.24.tgz"; + sha512 = "zvSN2Esek1aeLdKDYuntKAYjti9Z2oT4I8bfkLLhIxHlv3dwZ5vvATxOc31820iYm4hQRCwjUgDpwSMFjfTUnw=="; + }; + }; "@types/node-16.9.1" = { name = "_at_types_slash_node"; packageName = "@types/node"; @@ -13324,6 +13567,15 @@ let sha512 = "E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q=="; }; }; + "@types/node-18.15.13" = { + name = "_at_types_slash_node"; + packageName = "@types/node"; + version = "18.15.13"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/node/-/node-18.15.13.tgz"; + sha512 = "N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q=="; + }; + }; "@types/node-6.14.13" = { name = "_at_types_slash_node"; packageName = "@types/node"; @@ -13396,6 +13648,15 @@ let sha512 = "Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ=="; }; }; + "@types/prettier-2.7.2" = { + name = "_at_types_slash_prettier"; + packageName = "@types/prettier"; + version = "2.7.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz"; + sha512 = "KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg=="; + }; + }; "@types/prop-types-15.7.5" = { name = "_at_types_slash_prop-types"; packageName = "@types/prop-types"; @@ -13459,13 +13720,13 @@ let sha512 = "c1GzVY97P0fGxwGxhYq989j4XwlcHQoto6wQISOC2v6wm3h0PORRWJFHlkRjfGsiG3y1609WdQ+J+tKxvrEd6A=="; }; }; - "@types/react-18.0.35" = { + "@types/react-18.0.37" = { name = "_at_types_slash_react"; packageName = "@types/react"; - version = "18.0.35"; + version = "18.0.37"; src = fetchurl { - url = "https://registry.npmjs.org/@types/react/-/react-18.0.35.tgz"; - sha512 = "6Laome31HpetaIUGFWl1VQ3mdSImwxtFZ39rh059a1MNnKGqBpC88J6NJ8n/Is3Qx7CefDGLgf/KhN/sYCf7ag=="; + url = "https://registry.npmjs.org/@types/react/-/react-18.0.37.tgz"; + sha512 = "4yaZZtkRN3ZIQD3KSEwkfcik8s0SWV+82dlJot1AbGYHCzJkWP3ENBY6wYeDRmKZ6HkrgoGAmR2HqdwYGp6OEw=="; }; }; "@types/react-dom-18.0.11" = { @@ -13909,6 +14170,15 @@ let sha512 = "AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ=="; }; }; + "@types/yargs-17.0.24" = { + name = "_at_types_slash_yargs"; + packageName = "@types/yargs"; + version = "17.0.24"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz"; + sha512 = "6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw=="; + }; + }; "@types/yargs-parser-21.0.0" = { name = "_at_types_slash_yargs-parser"; packageName = "@types/yargs-parser"; @@ -13945,13 +14215,13 @@ let sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="; }; }; - "@typescript-eslint/eslint-plugin-5.58.0" = { + "@typescript-eslint/eslint-plugin-5.59.0" = { name = "_at_typescript-eslint_slash_eslint-plugin"; packageName = "@typescript-eslint/eslint-plugin"; - version = "5.58.0"; + version = "5.59.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.58.0.tgz"; - sha512 = "vxHvLhH0qgBd3/tW6/VccptSfc8FxPQIkmNTVLWcCOVqSBvqpnKkBTYrhcGlXfSnd78azwe+PsjYFj0X34/njA=="; + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.0.tgz"; + sha512 = "p0QgrEyrxAWBecR56gyn3wkG15TJdI//eetInP3zYRewDh0XS+DhB3VUAd3QqvziFsfaQIoIuZMxZRB7vXYaYw=="; }; }; "@typescript-eslint/experimental-utils-4.33.0" = { @@ -13972,13 +14242,13 @@ let sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="; }; }; - "@typescript-eslint/parser-5.58.0" = { + "@typescript-eslint/parser-5.59.0" = { name = "_at_typescript-eslint_slash_parser"; packageName = "@typescript-eslint/parser"; - version = "5.58.0"; + version = "5.59.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.58.0.tgz"; - sha512 = "ixaM3gRtlfrKzP8N6lRhBbjTow1t6ztfBvQNGuRM8qH1bjFFXIJ35XY+FC0RRBKn3C6cT+7VW1y8tNm7DwPHDQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.0.tgz"; + sha512 = "qK9TZ70eJtjojSUMrrEwA9ZDQ4N0e/AuoOIgXuNBorXYcBDk397D2r5MIe1B3cok/oCtdNC5j+lUUpVB+Dpb+w=="; }; }; "@typescript-eslint/scope-manager-4.33.0" = { @@ -13990,22 +14260,22 @@ let sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="; }; }; - "@typescript-eslint/scope-manager-5.58.0" = { + "@typescript-eslint/scope-manager-5.59.0" = { name = "_at_typescript-eslint_slash_scope-manager"; packageName = "@typescript-eslint/scope-manager"; - version = "5.58.0"; + version = "5.59.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.58.0.tgz"; - sha512 = "b+w8ypN5CFvrXWQb9Ow9T4/6LC2MikNf1viLkYTiTbkQl46CnR69w7lajz1icW0TBsYmlpg+mRzFJ4LEJ8X9NA=="; + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.0.tgz"; + sha512 = "tsoldKaMh7izN6BvkK6zRMINj4Z2d6gGhO2UsI8zGZY3XhLq1DndP3Ycjhi1JwdwPRwtLMW4EFPgpuKhbCGOvQ=="; }; }; - "@typescript-eslint/type-utils-5.58.0" = { + "@typescript-eslint/type-utils-5.59.0" = { name = "_at_typescript-eslint_slash_type-utils"; packageName = "@typescript-eslint/type-utils"; - version = "5.58.0"; + version = "5.59.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.58.0.tgz"; - sha512 = "FF5vP/SKAFJ+LmR9PENql7fQVVgGDOS+dq3j+cKl9iW/9VuZC/8CFmzIP0DLKXfWKpRHawJiG70rVH+xZZbp8w=="; + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.0.tgz"; + sha512 = "d/B6VSWnZwu70kcKQSCqjcXpVH+7ABKH8P1KNn4K7j5PXXuycZTPXF44Nui0TEm6rbWGi8kc78xRgOC4n7xFgA=="; }; }; "@typescript-eslint/types-4.33.0" = { @@ -14017,13 +14287,13 @@ let sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="; }; }; - "@typescript-eslint/types-5.58.0" = { + "@typescript-eslint/types-5.59.0" = { name = "_at_typescript-eslint_slash_types"; packageName = "@typescript-eslint/types"; - version = "5.58.0"; + version = "5.59.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.58.0.tgz"; - sha512 = "JYV4eITHPzVQMnHZcYJXl2ZloC7thuUHrcUmxtzvItyKPvQ50kb9QXBkgNAt90OYMqwaodQh2kHutWZl1fc+1g=="; + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.0.tgz"; + sha512 = "yR2h1NotF23xFFYKHZs17QJnB51J/s+ud4PYU4MqdZbzeNxpgUr05+dNeCN/bb6raslHvGdd6BFCkVhpPk/ZeA=="; }; }; "@typescript-eslint/typescript-estree-4.33.0" = { @@ -14035,22 +14305,22 @@ let sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="; }; }; - "@typescript-eslint/typescript-estree-5.58.0" = { + "@typescript-eslint/typescript-estree-5.59.0" = { name = "_at_typescript-eslint_slash_typescript-estree"; packageName = "@typescript-eslint/typescript-estree"; - version = "5.58.0"; + version = "5.59.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.58.0.tgz"; - sha512 = "cRACvGTodA+UxnYM2uwA2KCwRL7VAzo45syNysqlMyNyjw0Z35Icc9ihPJZjIYuA5bXJYiJ2YGUB59BqlOZT1Q=="; + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.0.tgz"; + sha512 = "sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg=="; }; }; - "@typescript-eslint/utils-5.58.0" = { + "@typescript-eslint/utils-5.59.0" = { name = "_at_typescript-eslint_slash_utils"; packageName = "@typescript-eslint/utils"; - version = "5.58.0"; + version = "5.59.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.58.0.tgz"; - sha512 = "gAmLOTFXMXOC+zP1fsqm3VceKSBQJNzV385Ok3+yzlavNHZoedajjS4UyS21gabJYcobuigQPs/z71A9MdJFqQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.0.tgz"; + sha512 = "GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA=="; }; }; "@typescript-eslint/visitor-keys-4.33.0" = { @@ -14062,13 +14332,13 @@ let sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; }; }; - "@typescript-eslint/visitor-keys-5.58.0" = { + "@typescript-eslint/visitor-keys-5.59.0" = { name = "_at_typescript-eslint_slash_visitor-keys"; packageName = "@typescript-eslint/visitor-keys"; - version = "5.58.0"; + version = "5.59.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.58.0.tgz"; - sha512 = "/fBraTlPj0jwdyTwLyrRTxv/3lnU2H96pNTVM6z3esTWLtA5MZ9ghSMJ7Rb+TtUAdtEw9EyJzJ0EydIMKxQ9gA=="; + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.0.tgz"; + sha512 = "qZ3iXxQhanchCeaExlKPV3gDQFxMUmU35xfd5eCXB6+kUw1TUAbIy2n7QIrwz9s98DQLzNWyHp61fY0da4ZcbA=="; }; }; "@uphold/request-logger-2.0.0" = { @@ -14161,49 +14431,58 @@ let sha512 = "Ecc9oQBSVwk1suENcRcj1L6gQrUt4+0XA9oPFxrUpoFEk04lP/ZV3qAQPk+ex08N+vfUulYdqb+cmVTnwqsmqw=="; }; }; - "@vercel/gatsby-plugin-vercel-analytics-1.0.9" = { + "@vercel/error-utils-1.0.8" = { + name = "_at_vercel_slash_error-utils"; + packageName = "@vercel/error-utils"; + version = "1.0.8"; + src = fetchurl { + url = "https://registry.npmjs.org/@vercel/error-utils/-/error-utils-1.0.8.tgz"; + sha512 = "s+f7jP2oH1koICbQ8e3K9hOpOeUct7rbCnF9qsNwXemq850wAh2e90tp9R6oYBM0BNpiLRRm+oG5zD2sCIm3HQ=="; + }; + }; + "@vercel/gatsby-plugin-vercel-analytics-1.0.10" = { name = "_at_vercel_slash_gatsby-plugin-vercel-analytics"; packageName = "@vercel/gatsby-plugin-vercel-analytics"; - version = "1.0.9"; + version = "1.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.9.tgz"; - sha512 = "JEzoLxjAVFZT1569dEZKKrhq9UvMjJZ13ACMAsGx33hf2QeH/okkVnIeAiy1yGQKFFRKyhFQ6N29JSdV7zD/Zg=="; + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz"; + sha512 = "v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ=="; }; }; - "@vercel/gatsby-plugin-vercel-builder-1.2.8" = { + "@vercel/gatsby-plugin-vercel-builder-1.2.10" = { name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; packageName = "@vercel/gatsby-plugin-vercel-builder"; - version = "1.2.8"; + version = "1.2.10"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.2.8.tgz"; - sha512 = "Z2HDeD/XzGxLIgaLEKBCwGKhI0aorzmY1gYccq8yaC2pXMKBJblZfU87QQwgQgXI+BWigXM0xmtIca6ijbyALg=="; + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.2.10.tgz"; + sha512 = "7iSCCOe5XyU8lJVcWd9dDxXq8qF91nEKkO6McxOOVRgiPsJU4T/x48o/+gIbUa35zIv7XltZojRQDRq3jzyfWQ=="; }; }; - "@vercel/go-2.4.4" = { + "@vercel/go-2.5.0" = { name = "_at_vercel_slash_go"; packageName = "@vercel/go"; - version = "2.4.4"; + version = "2.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/go/-/go-2.4.4.tgz"; - sha512 = "JXez+dQ6nXv68SnBor6FJqYy3X71FKnFc+OL4nxrsEsTzhCbqjLS/9hm4ztB0KQslWJvDp+2aRr++zLtyiCeQQ=="; + url = "https://registry.npmjs.org/@vercel/go/-/go-2.5.0.tgz"; + sha512 = "KUUuFpl65oxyCbc7gDWkhbRUg2ZcAa5bpUrhnqYW4ohDicPGe7F7mo/v4GCp/zsFGFNJf9msbmycJA1f9Sk9Ug=="; }; }; - "@vercel/hydrogen-0.0.62" = { + "@vercel/hydrogen-0.0.63" = { name = "_at_vercel_slash_hydrogen"; packageName = "@vercel/hydrogen"; - version = "0.0.62"; + version = "0.0.63"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.62.tgz"; - sha512 = "A1Ttgc4pBrLEK5CpeLuf4TQp0IsXjISDMZVnRrpWhu10hKUV/KfJ8r8df1w+dEq5Qd9LmJAwvVXlpX5vcJLDRQ=="; + url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.63.tgz"; + sha512 = "FxBjgX0Mt22eqvHGrMKDcfxt/81y9QrHM6md+hGIflkQ9DvrtyYmmFze588yXWAv/I04eCgVoE+/KsgETkRi3w=="; }; }; - "@vercel/next-3.7.4" = { + "@vercel/next-3.7.5" = { name = "_at_vercel_slash_next"; packageName = "@vercel/next"; - version = "3.7.4"; + version = "3.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/next/-/next-3.7.4.tgz"; - sha512 = "ADM6ZvAOldy0QZCmKP4pMad145bcO3bZK+pAS7SQ/68jFun50Boz7Ophb5J/CYvRyCybIraJ1TxDEf+dyo9GeA=="; + url = "https://registry.npmjs.org/@vercel/next/-/next-3.7.5.tgz"; + sha512 = "NonL8rt49EnwooMnAXYUDpz2B+e+yoQRdEZoekZlnFzP6VF1F1r14N2X9zUqxeRH7rY6X53MgiRNSHeZKqTXPA=="; }; }; "@vercel/nft-0.22.5" = { @@ -14215,13 +14494,13 @@ let sha512 = "mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw=="; }; }; - "@vercel/node-2.10.3" = { + "@vercel/node-2.12.0" = { name = "_at_vercel_slash_node"; packageName = "@vercel/node"; - version = "2.10.3"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node/-/node-2.10.3.tgz"; - sha512 = "R6YwD7YTV4OPEjXnthTP2Zn96ZF2TAjmBhGKfYC9ZuqlmFzSxqyuHn+RUSkknkKBO46b4OzaNdi5XVnAdJizLA=="; + url = "https://registry.npmjs.org/@vercel/node/-/node-2.12.0.tgz"; + sha512 = "QItQ4DjKrHqTMk/hmtX64V5RfDdp+fDoFzbSbPUICkIOHK3EBCJ5c/392Iv05AwSv+mJIALZUGRQz5o4HKvs6A=="; }; }; "@vercel/node-bridge-4.0.1" = { @@ -14233,13 +14512,13 @@ let sha512 = "XEfKfnLGzlIBpad7eGNPql1HnMhoSTv9q3uDNC4axdaAC/kI5yvl8kXjuCPAXYvpbJnVQPpcSUC5/r5ap8F3jA=="; }; }; - "@vercel/python-3.1.58" = { + "@vercel/python-3.1.59" = { name = "_at_vercel_slash_python"; packageName = "@vercel/python"; - version = "3.1.58"; + version = "3.1.59"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/python/-/python-3.1.58.tgz"; - sha512 = "RZJkNLyxZMuNcBwJMU589noyuNAq2pNxwAqrMs7bdBucWkNRTURiEh3/rWjUSADOq3eUx4vhfQDzwvaeZyRxoA=="; + url = "https://registry.npmjs.org/@vercel/python/-/python-3.1.59.tgz"; + sha512 = "38/KM33nJK5Jk+FiNhi3MTB7arWGGoCF8blejAexpw+NTL70nNy+4O7TN+y7qqx7Az4nygEgBBTgQVfkgIj0Yg=="; }; }; "@vercel/redwood-1.1.14" = { @@ -14251,13 +14530,13 @@ let sha512 = "QFIhLegvfVp2OLdv96krTyz6C5/cUncUg4CEEfx3U48+l31hWaWcnjI6+MhgN4PZC4YN+s21vKZNz/UWnGnTiA=="; }; }; - "@vercel/remix-builder-1.8.4" = { + "@vercel/remix-builder-1.8.5" = { name = "_at_vercel_slash_remix-builder"; packageName = "@vercel/remix-builder"; - version = "1.8.4"; + version = "1.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.8.4.tgz"; - sha512 = "bexJo+z0kCZf2nhlne5TBcxWHQ4/xGT2JgmOJ5SaJOhhuZXt0BUZ3B38+2MPScUnItNWPSmn86xzp/VMWNuzuw=="; + url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.8.5.tgz"; + sha512 = "nXUNsW6+gfHRqnZdXNm9Myx8G8nihbfRe/myAbvUHAXaym+9Bz+WHC3hXXr6YqAOVhjWvCfxAlA9eYqHbhlvKA=="; }; }; "@vercel/routing-utils-2.2.0" = { @@ -14278,22 +14557,22 @@ let sha512 = "sUmzJnd9O1N7StFEpKG9JvHJvHmJjgfrmhgQsQLEQ7OOQJkO9DYoLomlrIDW9qNdu7dNOeyj7gQY5B8y8RMntw=="; }; }; - "@vercel/static-build-1.3.23" = { + "@vercel/static-build-1.3.25" = { name = "_at_vercel_slash_static-build"; packageName = "@vercel/static-build"; - version = "1.3.23"; + version = "1.3.25"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.23.tgz"; - sha512 = "SjlOOqZRoe/10Af3iSWKEo2+pFpTwroZj6pwF1iP7I9Y3G5IDObzOfpxgdpsKCWSlmUIr1sGOjf1fgoPctbdLw=="; + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.25.tgz"; + sha512 = "yBb37pPGLlQEF/QPUezENo4Eu9gq7Ctzl56Dff/Kv6pApzYZ6Zj88OvRoNBTXhxDi0g4EGSYnP0uYtB7lBQcHA=="; }; }; - "@vercel/static-config-2.0.15" = { + "@vercel/static-config-2.0.16" = { name = "_at_vercel_slash_static-config"; packageName = "@vercel/static-config"; - version = "2.0.15"; + version = "2.0.16"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.15.tgz"; - sha512 = "A/N3ZGiOOMql9JArwBTIfhFngFtmVC7ndKQKp0FoFq8MO79AS5qBBtdpILS5QA71M5v+9CPjVkHxN6QweU55Xg=="; + url = "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.16.tgz"; + sha512 = "lULo+NWBMpTJb9kR4AwYYK/2e7wknTJO2iFxgYYOkG5i12WHgPhMnXDKrEOcotxctd0yPKx3TsWVGEXniNm63g=="; }; }; "@vscode/emmet-helper-2.8.6" = { @@ -14557,6 +14836,15 @@ let sha512 = "ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw=="; }; }; + "@webassemblyjs/ast-1.11.5" = { + name = "_at_webassemblyjs_slash_ast"; + packageName = "@webassemblyjs/ast"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.5.tgz"; + sha512 = "LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ=="; + }; + }; "@webassemblyjs/ast-1.7.8" = { name = "_at_webassemblyjs_slash_ast"; packageName = "@webassemblyjs/ast"; @@ -14593,6 +14881,15 @@ let sha512 = "iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ=="; }; }; + "@webassemblyjs/floating-point-hex-parser-1.11.5" = { + name = "_at_webassemblyjs_slash_floating-point-hex-parser"; + packageName = "@webassemblyjs/floating-point-hex-parser"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.5.tgz"; + sha512 = "1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ=="; + }; + }; "@webassemblyjs/floating-point-hex-parser-1.7.8" = { name = "_at_webassemblyjs_slash_floating-point-hex-parser"; packageName = "@webassemblyjs/floating-point-hex-parser"; @@ -14629,6 +14926,15 @@ let sha512 = "RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg=="; }; }; + "@webassemblyjs/helper-api-error-1.11.5" = { + name = "_at_webassemblyjs_slash_helper-api-error"; + packageName = "@webassemblyjs/helper-api-error"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.5.tgz"; + sha512 = "L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA=="; + }; + }; "@webassemblyjs/helper-api-error-1.7.8" = { name = "_at_webassemblyjs_slash_helper-api-error"; packageName = "@webassemblyjs/helper-api-error"; @@ -14665,6 +14971,15 @@ let sha512 = "gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA=="; }; }; + "@webassemblyjs/helper-buffer-1.11.5" = { + name = "_at_webassemblyjs_slash_helper-buffer"; + packageName = "@webassemblyjs/helper-buffer"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.5.tgz"; + sha512 = "fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg=="; + }; + }; "@webassemblyjs/helper-buffer-1.7.8" = { name = "_at_webassemblyjs_slash_helper-buffer"; packageName = "@webassemblyjs/helper-buffer"; @@ -14818,6 +15133,15 @@ let sha512 = "vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ=="; }; }; + "@webassemblyjs/helper-numbers-1.11.5" = { + name = "_at_webassemblyjs_slash_helper-numbers"; + packageName = "@webassemblyjs/helper-numbers"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.5.tgz"; + sha512 = "DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA=="; + }; + }; "@webassemblyjs/helper-wasm-bytecode-1.11.1" = { name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; packageName = "@webassemblyjs/helper-wasm-bytecode"; @@ -14827,6 +15151,15 @@ let sha512 = "PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q=="; }; }; + "@webassemblyjs/helper-wasm-bytecode-1.11.5" = { + name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; + packageName = "@webassemblyjs/helper-wasm-bytecode"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.5.tgz"; + sha512 = "oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA=="; + }; + }; "@webassemblyjs/helper-wasm-bytecode-1.7.8" = { name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; packageName = "@webassemblyjs/helper-wasm-bytecode"; @@ -14863,6 +15196,15 @@ let sha512 = "10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg=="; }; }; + "@webassemblyjs/helper-wasm-section-1.11.5" = { + name = "_at_webassemblyjs_slash_helper-wasm-section"; + packageName = "@webassemblyjs/helper-wasm-section"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.5.tgz"; + sha512 = "uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA=="; + }; + }; "@webassemblyjs/helper-wasm-section-1.7.8" = { name = "_at_webassemblyjs_slash_helper-wasm-section"; packageName = "@webassemblyjs/helper-wasm-section"; @@ -14899,6 +15241,15 @@ let sha512 = "hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ=="; }; }; + "@webassemblyjs/ieee754-1.11.5" = { + name = "_at_webassemblyjs_slash_ieee754"; + packageName = "@webassemblyjs/ieee754"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.5.tgz"; + sha512 = "37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg=="; + }; + }; "@webassemblyjs/ieee754-1.7.8" = { name = "_at_webassemblyjs_slash_ieee754"; packageName = "@webassemblyjs/ieee754"; @@ -14935,6 +15286,15 @@ let sha512 = "BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw=="; }; }; + "@webassemblyjs/leb128-1.11.5" = { + name = "_at_webassemblyjs_slash_leb128"; + packageName = "@webassemblyjs/leb128"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.5.tgz"; + sha512 = "ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ=="; + }; + }; "@webassemblyjs/leb128-1.7.8" = { name = "_at_webassemblyjs_slash_leb128"; packageName = "@webassemblyjs/leb128"; @@ -14971,6 +15331,15 @@ let sha512 = "9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ=="; }; }; + "@webassemblyjs/utf8-1.11.5" = { + name = "_at_webassemblyjs_slash_utf8"; + packageName = "@webassemblyjs/utf8"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.5.tgz"; + sha512 = "WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ=="; + }; + }; "@webassemblyjs/utf8-1.7.8" = { name = "_at_webassemblyjs_slash_utf8"; packageName = "@webassemblyjs/utf8"; @@ -15016,6 +15385,15 @@ let sha512 = "g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA=="; }; }; + "@webassemblyjs/wasm-edit-1.11.5" = { + name = "_at_webassemblyjs_slash_wasm-edit"; + packageName = "@webassemblyjs/wasm-edit"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.5.tgz"; + sha512 = "C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ=="; + }; + }; "@webassemblyjs/wasm-edit-1.7.8" = { name = "_at_webassemblyjs_slash_wasm-edit"; packageName = "@webassemblyjs/wasm-edit"; @@ -15043,6 +15421,15 @@ let sha512 = "F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA=="; }; }; + "@webassemblyjs/wasm-gen-1.11.5" = { + name = "_at_webassemblyjs_slash_wasm-gen"; + packageName = "@webassemblyjs/wasm-gen"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.5.tgz"; + sha512 = "14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA=="; + }; + }; "@webassemblyjs/wasm-gen-1.7.8" = { name = "_at_webassemblyjs_slash_wasm-gen"; packageName = "@webassemblyjs/wasm-gen"; @@ -15079,6 +15466,15 @@ let sha512 = "VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw=="; }; }; + "@webassemblyjs/wasm-opt-1.11.5" = { + name = "_at_webassemblyjs_slash_wasm-opt"; + packageName = "@webassemblyjs/wasm-opt"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.5.tgz"; + sha512 = "tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw=="; + }; + }; "@webassemblyjs/wasm-opt-1.7.8" = { name = "_at_webassemblyjs_slash_wasm-opt"; packageName = "@webassemblyjs/wasm-opt"; @@ -15106,6 +15502,15 @@ let sha512 = "rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA=="; }; }; + "@webassemblyjs/wasm-parser-1.11.5" = { + name = "_at_webassemblyjs_slash_wasm-parser"; + packageName = "@webassemblyjs/wasm-parser"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.5.tgz"; + sha512 = "SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew=="; + }; + }; "@webassemblyjs/wasm-parser-1.7.8" = { name = "_at_webassemblyjs_slash_wasm-parser"; packageName = "@webassemblyjs/wasm-parser"; @@ -15178,6 +15583,15 @@ let sha512 = "IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg=="; }; }; + "@webassemblyjs/wast-printer-1.11.5" = { + name = "_at_webassemblyjs_slash_wast-printer"; + packageName = "@webassemblyjs/wast-printer"; + version = "1.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.5.tgz"; + sha512 = "f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA=="; + }; + }; "@webassemblyjs/wast-printer-1.7.8" = { name = "_at_webassemblyjs_slash_wast-printer"; packageName = "@webassemblyjs/wast-printer"; @@ -15277,22 +15691,22 @@ let sha512 = "WKj/lI4QjnLuPrim0cfO7i+HsDSXHxNv1y0CrJhdntuO3hxWZmnXCwNDnwOvry11OjRin6cgWNF+j/9Pn8TN4w=="; }; }; - "@whatwg-node/fetch-0.8.4" = { + "@whatwg-node/fetch-0.8.5" = { name = "_at_whatwg-node_slash_fetch"; packageName = "@whatwg-node/fetch"; - version = "0.8.4"; + version = "0.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.8.4.tgz"; - sha512 = "xK0NGWt49P+JmsdfN+8zmHzZoscENrV0KL1SyyncvWkc6vbFmSqGSpvItEBuhj1PAfTGFEUpyiRMCsut2hLy/Q=="; + url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.8.5.tgz"; + sha512 = "pNvoYGPa0hjbVqs+r0blMjaWlrMeb0snwRCTAEdng5Jm00PY9wO4K8m99BmfLn6WED0FKOXTlF53+en/3xybqw=="; }; }; - "@whatwg-node/node-fetch-0.3.4" = { + "@whatwg-node/node-fetch-0.3.5" = { name = "_at_whatwg-node_slash_node-fetch"; packageName = "@whatwg-node/node-fetch"; - version = "0.3.4"; + version = "0.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.3.4.tgz"; - sha512 = "gP1MN6DiHVbhkLWH1eCELhE2ZtLRxb+HRKu4eYze1Tijxz0uT1T2kk3lseZp94txzxCfbxGFU0jsWkxNdH3EXA=="; + url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.3.5.tgz"; + sha512 = "96crxTZn6L+xFefEKkeAZrGmZ7WUXDYUzAfBf1VtrdS5YozLnFbj9/CNZ8S2LdRS2iL3pMSCvE1xD1wiIAXkAA=="; }; }; "@withgraphite/graphite-cli-routes-0.23.0" = { @@ -18472,6 +18886,24 @@ let sha512 = "csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="; }; }; + "async-listen-1.2.0" = { + name = "async-listen"; + packageName = "async-listen"; + version = "1.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/async-listen/-/async-listen-1.2.0.tgz"; + sha512 = "CcEtRh/oc9Jc4uWeUwdpG/+Mb2YUHKmdaTf0gUr7Wa+bfp4xx70HOb3RuSTJMvqKNB1TkdTfjLdrcz2X4rkkZA=="; + }; + }; + "async-listen-2.0.3" = { + name = "async-listen"; + packageName = "async-listen"; + version = "2.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/async-listen/-/async-listen-2.0.3.tgz"; + sha512 = "WVLi/FGIQaXyfYyNvmkwKT1RZbkzszLLnmW/gFCc5lbVvN/0QQCWpBwRBk2OWSdkkmKRBc8yD6BrKsjA3XKaSw=="; + }; + }; "async-listener-0.6.10" = { name = "async-listener"; packageName = "async-listener"; @@ -18796,13 +19228,13 @@ let sha512 = "qRrXLgK4FpkdxeagjrHuhtEEvYrvRbddTBg1I7KBuMCIhXHzSS3nEUmdZjdyMuQJEvt0BCJjwVkNh8e/5TauDQ=="; }; }; - "aws-sdk-2.1358.0" = { + "aws-sdk-2.1362.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.1358.0"; + version = "2.1362.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1358.0.tgz"; - sha512 = "ZolqFlnm0mDNgub7FGrVi7r5A1rw+58zZziKhlis3IxOtIpHdx4BQU5pH4htAMuD0Ct557p/dC/wmnZH/1Rc9Q=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1362.0.tgz"; + sha512 = "Cqv0khSv13xBGKOdErArCdyT0/W3cxQ3Xr9Oa0Lwt43xb24gbad+9lvtNMkbQGQusX3PSk95o+gcAaWreYAlYg=="; }; }; "aws-sign2-0.6.0" = { @@ -18832,13 +19264,13 @@ let sha512 = "NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg=="; }; }; - "axe-core-4.6.3" = { + "axe-core-4.7.0" = { name = "axe-core"; packageName = "axe-core"; - version = "4.6.3"; + version = "4.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz"; - sha512 = "/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg=="; + url = "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz"; + sha512 = "M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ=="; }; }; "axios-0.19.2" = { @@ -18904,13 +19336,13 @@ let sha512 = "t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ=="; }; }; - "axios-1.3.5" = { + "axios-1.3.6" = { name = "axios"; packageName = "axios"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/axios/-/axios-1.3.5.tgz"; - sha512 = "glL/PvG/E+xCWwV8S6nCHcrfg1exGx7vxyUIivIA1iL7BIh6bePylCfVHwp6k13ao7SATxB6imau2kqY+I67kw=="; + url = "https://registry.npmjs.org/axios/-/axios-1.3.6.tgz"; + sha512 = "PEcdkk7JcdPiMDkvM4K6ZBRYq9keuVJsToxm2zQIM70Qqo2WHTdJZMXcG9X+RmRp2VPNUQC8W1RAGbgt6b1yMg=="; }; }; "axios-cookiejar-support-0.5.1" = { @@ -18985,6 +19417,15 @@ let sha512 = "poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg=="; }; }; + "babel-jest-29.5.0" = { + name = "babel-jest"; + packageName = "babel-jest"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz"; + sha512 = "mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q=="; + }; + }; "babel-loader-8.0.2" = { name = "babel-loader"; packageName = "babel-loader"; @@ -19003,6 +19444,24 @@ let sha512 = "H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q=="; }; }; + "babel-plugin-istanbul-6.1.1" = { + name = "babel-plugin-istanbul"; + packageName = "babel-plugin-istanbul"; + version = "6.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz"; + sha512 = "Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA=="; + }; + }; + "babel-plugin-jest-hoist-29.5.0" = { + name = "babel-plugin-jest-hoist"; + packageName = "babel-plugin-jest-hoist"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz"; + sha512 = "zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w=="; + }; + }; "babel-plugin-jsx-pragmatic-1.0.2" = { name = "babel-plugin-jsx-pragmatic"; packageName = "babel-plugin-jsx-pragmatic"; @@ -19120,6 +19579,15 @@ let sha512 = "VTtHsmvwRBkX3yLK4e+pFwk88BC6iNFqS2J8CCx2ddQc7RjXoRhuXXIgYCng21DYNty9IicCwDdTDjdr+TM7eg=="; }; }; + "babel-preset-current-node-syntax-1.0.1" = { + name = "babel-preset-current-node-syntax"; + packageName = "babel-preset-current-node-syntax"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz"; + sha512 = "M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ=="; + }; + }; "babel-preset-expo-9.3.2" = { name = "babel-preset-expo"; packageName = "babel-preset-expo"; @@ -19129,6 +19597,15 @@ let sha512 = "BjyvjwjJG0MaaDBLP/esbXRrAItM76po9L9zfnLxeqgFsHCIPmD+6ir45coDLGAXwR8m9It3G1yqYM9JPyemsQ=="; }; }; + "babel-preset-jest-29.5.0" = { + name = "babel-preset-jest"; + packageName = "babel-preset-jest"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz"; + sha512 = "JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg=="; + }; + }; "babel-runtime-6.26.0" = { name = "babel-runtime"; packageName = "babel-runtime"; @@ -21181,6 +21658,15 @@ let sha512 = "6SDY1lJMKXgt5TZ6voJQMH2zV1XPWWtm203PSkx3DSg9AYNYuRfOPFSBDkNemabzgpzFW9/neR4YhTvyJml8rQ=="; }; }; + "bs-logger-0.2.6" = { + name = "bs-logger"; + packageName = "bs-logger"; + version = "0.2.6"; + src = fetchurl { + url = "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz"; + sha512 = "pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog=="; + }; + }; "bs-recipes-1.3.4" = { name = "bs-recipes"; packageName = "bs-recipes"; @@ -22388,13 +22874,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001478" = { + "caniuse-lite-1.0.30001481" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001478"; + version = "1.0.30001481"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001478.tgz"; - sha512 = "gMhDyXGItTHipJj2ApIvR+iVB5hd0KP3svMWWXDvZOmjzJJassGLMfxRkQCSYgGd2gtdL/ReeiyvMSFD1Ss6Mw=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001481.tgz"; + sha512 = "KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ=="; }; }; "canvas-2.11.2" = { @@ -22550,31 +23036,31 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-2.7.55" = { + "cdk8s-2.7.56" = { name = "cdk8s"; packageName = "cdk8s"; - version = "2.7.55"; + version = "2.7.56"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.7.55.tgz"; - sha512 = "N80LLZDirDfKcCr7vckNFi9D3WUbXMY8rCFaEL62fFx2macF6LamBnML8/UUZKofMga7N90HynvsETcaY3WQCg=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.7.56.tgz"; + sha512 = "GXmHxRdAPPCkD0jbD8QIhfry+EiHaLNAEToLh4snvgUhoYPuYd2qNKx6u7tyrw9Gpat8OxNMrX6J3Av3EjVmFw=="; }; }; - "cdk8s-plus-25-2.7.0" = { + "cdk8s-plus-25-2.7.4" = { name = "cdk8s-plus-25"; packageName = "cdk8s-plus-25"; - version = "2.7.0"; + version = "2.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.7.0.tgz"; - sha512 = "4TEsiTGZCRQQUG8sr6bahF2KrLnsXTfx/EnzdNpNkfn+Kj00N5aaNJOZZk4N/j5NzpqZ8JIQ0iaQMoyGB7L2Bw=="; + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.7.4.tgz"; + sha512 = "VqsskHYj6NFhKZ97SSKIBr8YsVsWKkOA4FOJDYQpz7l0s6BBSQs2+WUc/A1/F+1tG2s7d8N5gsbEbQmAGgYQJg=="; }; }; - "cdktf-0.15.5" = { + "cdktf-0.16.0" = { name = "cdktf"; packageName = "cdktf"; - version = "0.15.5"; + version = "0.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf/-/cdktf-0.15.5.tgz"; - sha512 = "fcamLs7SKz+kTbQFf+fOXDGvmwT5bH4bHwp+jkVKjGTRsu6C8z5oFVAjKYm+aP1tC7sSWG967+ihSx6+uPNAGw=="; + url = "https://registry.npmjs.org/cdktf/-/cdktf-0.16.0.tgz"; + sha512 = "PTU8DODmgv1U2FXKB/h4DPXE2IKB5ND9fpcaBUhEy7qFCgQVpOGdgf0w6GZVdbZ7Tiae76WSbAN10uaqrKs9wA=="; }; }; "center-align-0.1.3" = { @@ -23315,6 +23801,15 @@ let sha512 = "UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A=="; }; }; + "cjs-module-lexer-1.2.2" = { + name = "cjs-module-lexer"; + packageName = "cjs-module-lexer"; + version = "1.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz"; + sha512 = "cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA=="; + }; + }; "cjson-0.3.3" = { name = "cjson"; packageName = "cjson"; @@ -24287,6 +24782,15 @@ let sha512 = "jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ=="; }; }; + "collect-v8-coverage-1.0.1" = { + name = "collect-v8-coverage"; + packageName = "collect-v8-coverage"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz"; + sha512 = "iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg=="; + }; + }; "collection-map-1.0.0" = { name = "collection-map"; packageName = "collection-map"; @@ -24413,6 +24917,15 @@ let sha512 = "3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ=="; }; }; + "colorette-2.0.20" = { + name = "colorette"; + packageName = "colorette"; + version = "2.0.20"; + src = fetchurl { + url = "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz"; + sha512 = "IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w=="; + }; + }; "colors-0.6.2" = { name = "colors"; packageName = "colors"; @@ -24593,13 +25106,13 @@ let sha512 = "uoVVA5dchmxZeTMv2Qsd0vhn/RebJYsWo4all1qtrUL3BBhQFn4AQDF4PL+ZvOeK7gczXKEZaSCyMDMwFBlpBg=="; }; }; - "commander-10.0.0" = { + "commander-10.0.1" = { name = "commander"; packageName = "commander"; - version = "10.0.0"; + version = "10.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-10.0.0.tgz"; - sha512 = "zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA=="; + url = "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz"; + sha512 = "y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug=="; }; }; "commander-2.0.0" = { @@ -25349,13 +25862,13 @@ let sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; }; }; - "constructs-10.1.309" = { + "constructs-10.2.2" = { name = "constructs"; packageName = "constructs"; - version = "10.1.309"; + version = "10.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-10.1.309.tgz"; - sha512 = "8MABhqG/lEaOJ1ifRNZlghHNIxyOW48s4cZdLhbodvuAxy4Llre+UjqzduNi3DMtBPLnyythi01A3gnWOhE+aA=="; + url = "https://registry.npmjs.org/constructs/-/constructs-10.2.2.tgz"; + sha512 = "1mSuh0pwJUaGEYuxJH+oxtD5n6JlxX5yD3zmaiyZ7Olv0t1hlZCYZ/AAW0wNUbxpp04BakTTMOISo7Rvmdsw4g=="; }; }; "consume-http-header-1.0.0" = { @@ -25719,6 +26232,15 @@ let sha512 = "ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="; }; }; + "convert-source-map-2.0.0" = { + name = "convert-source-map"; + packageName = "convert-source-map"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz"; + sha512 = "Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="; + }; + }; "convert-to-ecmascript-compatible-varname-0.1.5" = { name = "convert-to-ecmascript-compatible-varname"; packageName = "convert-to-ecmascript-compatible-varname"; @@ -26295,13 +26817,13 @@ let sha512 = "gYTKKexFO3kh200H1Nit76sRwRtOY32vQd3jpAQKpLtZqyNsSQNfI4N7o3eP2wUjV35pTWKRYqFUDBvUha/Pkw=="; }; }; - "create-gatsby-3.8.0" = { + "create-gatsby-3.9.0" = { name = "create-gatsby"; packageName = "create-gatsby"; - version = "3.8.0"; + version = "3.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.8.0.tgz"; - sha512 = "hTz9ZZfIviinrQ2DMl2sl/0JQ8VHMCgC1Y1KLfogMUO4PRTOXBHemElXcJ9ssNAjhw8AufopAvUotW11x6/LSw=="; + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz"; + sha512 = "44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg=="; }; }; "create-graphback-1.0.1" = { @@ -27024,6 +27546,15 @@ let sha512 = "j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw=="; }; }; + "cssnano-6.0.0" = { + name = "cssnano"; + packageName = "cssnano"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/cssnano/-/cssnano-6.0.0.tgz"; + sha512 = "RGlcbzGhzEBCHuQe3k+Udyj5M00z0pm9S+VurHXFEOXxH+y0sVrJH2sMzoyz2d8N1EScazg+DVvmgyx0lurwwA=="; + }; + }; "cssnano-preset-default-4.0.8" = { name = "cssnano-preset-default"; packageName = "cssnano-preset-default"; @@ -27042,6 +27573,15 @@ let sha512 = "t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A=="; }; }; + "cssnano-preset-default-6.0.0" = { + name = "cssnano-preset-default"; + packageName = "cssnano-preset-default"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.0.tgz"; + sha512 = "BDxlaFzObRDXUiCCBQUNQcI+f1/aX2mgoNtXGjV6PG64POcHoDUoX+LgMWw+Q4609QhxwkcSnS65YFs42RA6qQ=="; + }; + }; "cssnano-util-get-arguments-4.0.0" = { name = "cssnano-util-get-arguments"; packageName = "cssnano-util-get-arguments"; @@ -27087,6 +27627,15 @@ let sha512 = "JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA=="; }; }; + "cssnano-utils-4.0.0" = { + name = "cssnano-utils"; + packageName = "cssnano-utils"; + version = "4.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz"; + sha512 = "Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw=="; + }; + }; "csso-2.0.0" = { name = "csso"; packageName = "csso"; @@ -27213,13 +27762,13 @@ let sha512 = "byxnDBxM1AVF3YfmsK7Smop9/usNz7gAZYSo9eYp61TGcNXraJby1rAiLyJSt1/8Iho2qaxZOtZCOvQMXogPtg=="; }; }; - "csv-parse-5.3.6" = { + "csv-parse-5.3.8" = { name = "csv-parse"; packageName = "csv-parse"; - version = "5.3.6"; + version = "5.3.8"; src = fetchurl { - url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.6.tgz"; - sha512 = "WI330GjCuEioK/ii8HM2YE/eV+ynpeLvU+RXw4R8bRU8R0laK5zO3fDsc4gH8s472e3Ga38rbIjCAiQh+tEHkw=="; + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.8.tgz"; + sha512 = "ird8lzMv9I64oqIVIHdaTbT7Yr55n2C/Nv6m1LxO7nddLEeI67468VQ9Ik+r6lwYbK9kTE1oSqAVcVKc/Uqx6g=="; }; }; "csv-stream-0.2.0" = { @@ -29616,13 +30165,22 @@ let sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw=="; }; }; - "diff2html-3.4.34" = { + "diff-sequences-29.4.3" = { + name = "diff-sequences"; + packageName = "diff-sequences"; + version = "29.4.3"; + src = fetchurl { + url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz"; + sha512 = "ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA=="; + }; + }; + "diff2html-3.4.35" = { name = "diff2html"; packageName = "diff2html"; - version = "3.4.34"; + version = "3.4.35"; src = fetchurl { - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.34.tgz"; - sha512 = "lHWZdusoYg/E9bT7BbmQKv6xGN7yCDx/OysZTQbtGBtHLu2y5SHlhO1zkzh1AjH7V909TXyPZGUeS6Ce9xPh/Q=="; + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.35.tgz"; + sha512 = "+pKs1BrA7l8DAwY33awHyznE3iuTIo58xmINmDBUwGsnou2KvBoSr6dAa6AvQAM7SH+nGtuOKNXmxumgbGp/Pw=="; }; }; "diff3-0.0.3" = { @@ -29661,13 +30219,13 @@ let sha512 = "zBiL4ALDmviHdoLC0g0G6wVme5bwAow9WfhcZLLopXCAWgg3AEf7RYTs2xugszIGulRHzEVDF/SHl9oyQU07Pw=="; }; }; - "dijkstrajs-1.0.2" = { + "dijkstrajs-1.0.3" = { name = "dijkstrajs"; packageName = "dijkstrajs"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.2.tgz"; - sha512 = "QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg=="; + url = "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz"; + sha512 = "qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA=="; }; }; "dir-compare-3.3.0" = { @@ -29814,13 +30372,13 @@ let sha512 = "BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA=="; }; }; - "dns-packet-5.5.0" = { + "dns-packet-5.6.0" = { name = "dns-packet"; packageName = "dns-packet"; - version = "5.5.0"; + version = "5.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.5.0.tgz"; - sha512 = "USawdAUzRkV6xrqTjiAEp6M9YagZEzWcSUaZTcIFAiyQWW1SoI6KyId8y2+/71wbgHKQAKd+iupLv4YvEwYWvA=="; + url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz"; + sha512 = "rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ=="; }; }; "dns-txt-2.0.2" = { @@ -30336,6 +30894,15 @@ let sha512 = "K/QnPfqybcxP6rriuM17fnaQ/zDnG0hh8ISbm9szzIqZSI4wtfaj4D5oL6WscT2xVFQ3kDISZrrgeUtd+rW8pQ=="; }; }; + "downlevel-dts-0.11.0" = { + name = "downlevel-dts"; + packageName = "downlevel-dts"; + version = "0.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/downlevel-dts/-/downlevel-dts-0.11.0.tgz"; + sha512 = "vo835pntK7kzYStk7xUHDifiYJvXxVhUapt85uk2AI94gUUAQX9HNRtrcMHNSc3YHJUEHGbYIGsM99uIbgAtxw=="; + }; + }; "download-5.0.3" = { name = "download"; packageName = "download"; @@ -30624,13 +31191,13 @@ let sha512 = "hDZWhCHZ1wu4P2g2RVsM2MjDmmJzhvcsXr5qHUSBJZXvuhJSunhbVsWoBXdIe0/yTa3RV4UaWpOmFmrVsKr0wA=="; }; }; - "edge-runtime-2.0.0" = { + "edge-runtime-2.1.4" = { name = "edge-runtime"; packageName = "edge-runtime"; - version = "2.0.0"; + version = "2.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.0.0.tgz"; - sha512 = "TmRJhKi4mlM1e+zgF4CSzVU5gJ1sWj7ia+XhVgZ8PYyYUxk4PPjJU8qScpSLsAbdSxoBghLxdMuwuCzdYLd1sQ=="; + url = "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.1.4.tgz"; + sha512 = "SertKByzAmjm+MkLbFl1q0ko+/90V24dhZgQM8fcdguQaDYVEVtb6okEBGeg8IQgL1/JUP8oSlUIxSI/bvsVRQ=="; }; }; "editor-1.0.0" = { @@ -30714,22 +31281,13 @@ let sha512 = "r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ=="; }; }; - "electron-to-chromium-1.4.361" = { + "electron-to-chromium-1.4.368" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.361"; + version = "1.4.368"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.361.tgz"; - sha512 = "VocVwjPp05HUXzf3xmL0boRn5b0iyqC7amtDww84Jb1QJNPBc7F69gJyEeXRoriLBC4a5pSyckdllrXAg4mmRA=="; - }; - }; - "electron-to-chromium-1.4.362" = { - name = "electron-to-chromium"; - packageName = "electron-to-chromium"; - version = "1.4.362"; - src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.362.tgz"; - sha512 = "PYzAoScDfUcAwZfJQvr6hK2xXzLsMocj/Wuz6LpW6TZQNVv9TflBSB+UoEPuFujc478BgAxCoCFarcVPmjzsog=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.368.tgz"; + sha512 = "e2aeCAixCj9M7nJxdB/wDjO6mbYX+lJJxSJCXDzlr5YPGYVofuJwGN9nKg2o6wWInjX6XmxRinn3AeJMK81ltw=="; }; }; "electrum-client-git+https://github.com/janoside/electrum-client" = { @@ -30824,6 +31382,15 @@ let sha512 = "AGvFfs+d0JKCJQ4o01ASQLGPmSCxgfU9RFXvzPvZdjKK8oscynksuJhWrSTSw7j7Ep/sZct5b5ZhYCi8S/t0HQ=="; }; }; + "emittery-0.13.1" = { + name = "emittery"; + packageName = "emittery"; + version = "0.13.1"; + src = fetchurl { + url = "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz"; + sha512 = "DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ=="; + }; + }; "emmet-2.4.2" = { name = "emmet"; packageName = "emmet"; @@ -31175,13 +31742,13 @@ let sha512 = "Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg=="; }; }; - "enhanced-resolve-5.12.0" = { + "enhanced-resolve-5.13.0" = { name = "enhanced-resolve"; packageName = "enhanced-resolve"; - version = "5.12.0"; + version = "5.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz"; - sha512 = "QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ=="; + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz"; + sha512 = "eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg=="; }; }; "enquirer-2.3.6" = { @@ -31689,13 +32256,13 @@ let sha512 = "71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg=="; }; }; - "esbuild-0.17.16" = { + "esbuild-0.17.17" = { name = "esbuild"; packageName = "esbuild"; - version = "0.17.16"; + version = "0.17.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.17.16.tgz"; - sha512 = "aeSuUKr9aFVY9Dc8ETVELGgkj4urg5isYx8pLf4wlGgB0vTFjxJQdHnNH6Shmx4vYYrOTLCHtRI5i1XZ9l2Zcg=="; + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.17.17.tgz"; + sha512 = "/jUywtAymR8jR4qsa2RujlAF7Krpt5VWi72Q2yuLD4e/hvtNcFQ0I1j8m/bxq238pf3/0KO5yuXNpuLx8BE1KA=="; }; }; "esbuild-0.17.6" = { @@ -32346,13 +32913,13 @@ let sha512 = "RLgV9hoCVsMLvOxCuNjdqOrUqIj9oJg8hF44vzJaYqsAHuY9G2YAeN3joQ9nxP0p5Th9iFSIpKo+SD8KISxXRg=="; }; }; - "eslint-module-utils-2.7.4" = { + "eslint-module-utils-2.8.0" = { name = "eslint-module-utils"; packageName = "eslint-module-utils"; - version = "2.7.4"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz"; - sha512 = "j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA=="; + url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz"; + sha512 = "aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw=="; }; }; "eslint-plugin-es-4.1.0" = { @@ -32454,13 +33021,13 @@ let sha512 = "oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw=="; }; }; - "eslint-plugin-vue-9.10.0" = { + "eslint-plugin-vue-9.11.0" = { name = "eslint-plugin-vue"; packageName = "eslint-plugin-vue"; - version = "9.10.0"; + version = "9.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.10.0.tgz"; - sha512 = "2MgP31OBf8YilUvtakdVMc8xVbcMp7z7/iQj8LHVpXrSXHPXSJRUIGSPFI6b6pyCx/buKaFJ45ycqfHvQRiW2g=="; + url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.11.0.tgz"; + sha512 = "bBCJAZnkBV7ATH4Z1E7CvN3nmtS4H7QUU3UBxPdo8WohRU+yHjnQRALpTbxMVcz0e4Mx3IyxIdP5HYODMxK9cQ=="; }; }; "eslint-rule-docs-1.1.235" = { @@ -33408,6 +33975,15 @@ let sha512 = "A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw=="; }; }; + "expect-29.5.0" = { + name = "expect"; + packageName = "expect"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz"; + sha512 = "yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg=="; + }; + }; "explain-error-1.0.4" = { name = "explain-error"; packageName = "explain-error"; @@ -33417,13 +33993,13 @@ let sha512 = "/wSgNMxFusiYRy1rd19LT2SQlIXDppHpumpWo06wxjflD1OYxDLbl6rMVw+U3bxD5Nuhex4TKqv9Aem4D0lVzQ=="; }; }; - "expo-48.0.11" = { + "expo-48.0.12" = { name = "expo"; packageName = "expo"; - version = "48.0.11"; + version = "48.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/expo/-/expo-48.0.11.tgz"; - sha512 = "KX1RCHhdhdT4DjCeRqYJpZXhdCTuqxHHdNIRoFkmCgkUARYlZbB+Y1U8/KMz8fBAlFoEq99cF/KyRr87VAxRCw=="; + url = "https://registry.npmjs.org/expo/-/expo-48.0.12.tgz"; + sha512 = "DjHYxIHOEvsM+yd2JFnRXtogTZKYWVhyT76Q8CKz91cdM7coXPtTAC23dj9nHx6aKP8RmHnpr902lY5uYPP83A=="; }; }; "expo-application-5.1.1" = { @@ -35370,13 +35946,13 @@ let sha512 = "d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA=="; }; }; - "flow-parser-0.203.1" = { + "flow-parser-0.204.0" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.203.1"; + version = "0.204.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.203.1.tgz"; - sha512 = "Nw2M8MPP/Zb+yhvmPDEjzkCXLtgyWGKXZjAYOVftm+wIf3xd4FKa7nRI9v67rODs0WzxMbPc8IPs/7o/dyxo/Q=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.204.0.tgz"; + sha512 = "cQhNPLOk5NFyDXBC8WE8dy2Gls+YqKI3FNqQbJ7UrbFyd30IdEX3t27u3VsnoVK22I872+PWeb1KhHxDgu7kAg=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -35631,6 +36207,15 @@ let sha512 = "dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA=="; }; }; + "foreground-child-3.1.1" = { + name = "foreground-child"; + packageName = "foreground-child"; + version = "3.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz"; + sha512 = "TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg=="; + }; + }; "forever-agent-0.6.1" = { name = "forever-agent"; packageName = "forever-agent"; @@ -35838,13 +36423,13 @@ let sha512 = "wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g=="; }; }; - "fp-ts-2.13.1" = { + "fp-ts-2.14.0" = { name = "fp-ts"; packageName = "fp-ts"; - version = "2.13.1"; + version = "2.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.13.1.tgz"; - sha512 = "0eu5ULPS2c/jsa1lGFneEFFEdTbembJv8e4QKXeVJ3lm/5hyve06dlKZrpxmMwJt6rYen7sxmHHK2CLaXvWuWQ=="; + url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.14.0.tgz"; + sha512 = "QLagLSYAgMA00pZzUzeksH/78Sd14y7+Gc2A8Yaja3/IpGOFMdm/gYBuDMxYqLsJ58iT5lz+bJb953RAeFfp1A=="; }; }; "fraction.js-4.2.0" = { @@ -36405,22 +36990,22 @@ let sha512 = "w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w=="; }; }; - "gatsby-core-utils-4.8.0" = { + "gatsby-core-utils-4.9.0" = { name = "gatsby-core-utils"; packageName = "gatsby-core-utils"; - version = "4.8.0"; + version = "4.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.8.0.tgz"; - sha512 = "C2uOZBd9j6AYIyiB+DdxRtbQgAa3kMDRsKR5eCwALp0Bkg3W5I/YiXhSF7zQxVckaqNXzXvmedJESKCJNIvO7w=="; + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz"; + sha512 = "diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg=="; }; }; - "gatsby-telemetry-4.8.0" = { + "gatsby-telemetry-4.9.0" = { name = "gatsby-telemetry"; packageName = "gatsby-telemetry"; - version = "4.8.0"; + version = "4.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.8.0.tgz"; - sha512 = "e0RMSGPCtsoOFoiM4nyyEm+pvaadYKZ3LvSg03Bn3B65EzFdjybOzLdHGQnSkR79tlkWzeCjtkX3KzN59vMdhg=="; + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz"; + sha512 = "sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A=="; }; }; "gauge-1.2.7" = { @@ -37179,13 +37764,13 @@ let sha512 = "0YCjVpE3pS5XWlN3J4X7AiAx65+nqAI54LndtVFnQZB6G/FVLkZH8y8V6R3cIoOQR4pUdfwQGd1iwyoXHJ4Qfw=="; }; }; - "glob-10.0.0" = { + "glob-10.2.1" = { name = "glob"; packageName = "glob"; - version = "10.0.0"; + version = "10.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-10.0.0.tgz"; - sha512 = "zmp9ZDC6NpDNLujV2W2n+3lH+BafIVZ4/ct+Yj3BMZTH/+bgm/eVjHzeFLwxJrrIGgjjS2eiQLlpurHsNlEAtQ=="; + url = "https://registry.npmjs.org/glob/-/glob-10.2.1.tgz"; + sha512 = "ngom3wq2UhjdbmRE/krgkD8BQyi1KZ5l+D2dVm4+Yj+jJIBp74/ZGunL6gNGc/CYuQmvUBiavWEXIotRiv5R6A=="; }; }; "glob-3.2.11" = { @@ -37323,6 +37908,15 @@ let sha512 = "EAZejC7JvnQINayvB/7BJbpZpNOJ8Lrw2OZNEvQxe0vaLn1SuwMcfV7/MNaX8L/T0wmptBFI4YMtDvSBxYDc7w=="; }; }; + "glob-9.3.4" = { + name = "glob"; + packageName = "glob"; + version = "9.3.4"; + src = fetchurl { + url = "https://registry.npmjs.org/glob/-/glob-9.3.4.tgz"; + sha512 = "qaSc49hojMOv1EPM4EuyITjDSgSKI0rthoHnvE81tcOi1SCVndHko7auqxdQ14eiQG2NDBJBE86+2xIrbIvrbA=="; + }; + }; "glob-9.3.5" = { name = "glob"; packageName = "glob"; @@ -37693,15 +38287,6 @@ let sha512 = "wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA=="; }; }; - "globby-13.1.3" = { - name = "globby"; - packageName = "globby"; - version = "13.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz"; - sha512 = "8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw=="; - }; - }; "globby-13.1.4" = { name = "globby"; packageName = "globby"; @@ -38170,15 +38755,6 @@ let sha512 = "yYA7BJCcXN2DrKNQQ9Qf22zBHm/yTbyBR71T1MYBbGtywNHsv0QZtk8zaR6zxNcp2hCCZayUkHp9DyMSZCpoxQ=="; }; }; - "graphology-types-0.21.2" = { - name = "graphology-types"; - packageName = "graphology-types"; - version = "0.21.2"; - src = fetchurl { - url = "https://registry.npmjs.org/graphology-types/-/graphology-types-0.21.2.tgz"; - sha512 = "KNdgwG0dbVjhJqRUw0OivJ5pkUHunbk4vDatwdfITfNvPugX0xR327ZKsaOcr3snbiBJfyGu7lCrXeYp4KF8YA=="; - }; - }; "graphology-types-0.24.7" = { name = "graphology-types"; packageName = "graphology-types"; @@ -39871,13 +40447,13 @@ let sha512 = "Br4ifmjQojUP4EmHnRBoUIYcZ9J7M4bTMcm7u6xoIAIuq2Nte4TzXX0533owvkQKQD1WeMTTTyD4Ni4QKxS0Bg=="; }; }; - "html-webpack-plugin-5.5.0" = { + "html-webpack-plugin-5.5.1" = { name = "html-webpack-plugin"; packageName = "html-webpack-plugin"; - version = "5.5.0"; + version = "5.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz"; - sha512 = "sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw=="; + url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.1.tgz"; + sha512 = "cTUzZ1+NqjGEKjmVgZKLMdiFg3m9MdRXkZW2OEe69WYVi5ONLMmlnSZdXzGGMOq0C8jGDrL6EWyEDDUioHO/pA=="; }; }; "html-whitespace-sensitive-tag-names-1.0.3" = { @@ -39907,13 +40483,13 @@ let sha512 = "jWTtP3dCd7R8x/tt9DK3pvpcQd7HDMcRPUqPxr/i9989q2k5RHIhmlRDFeyQ/LSd8IKrteG8Ce5g0Ig4eGIipg=="; }; }; - "htmlnano-2.0.3" = { + "htmlnano-2.0.4" = { name = "htmlnano"; packageName = "htmlnano"; - version = "2.0.3"; + version = "2.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.0.3.tgz"; - sha512 = "S4PGGj9RbdgW8LhbILNK7W9JhmYP8zmDY7KDV/8eCiJBQJlbmltp5I0gv8c5ntLljfdxxfmJ+UJVSqyH4mb41A=="; + url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.0.4.tgz"; + sha512 = "WGCkyGFwjKW1GeCBsPYacMvaMnZtFJ0zIRnC2NCddkA+IOEhTqskXrS7lep+3yYZw/nQ3dW1UAX4yA/GJyR8BA=="; }; }; "htmlparser2-3.10.1" = { @@ -40231,15 +40807,6 @@ let sha512 = "J7J9wu9SpJvsOZHzqMQOzJjbuX1OqW3R35Z++z14H91o7VyUWH5YkW5FMExGFrjuBQ5C+54vF9tK3Gny0SgsSA=="; }; }; - "http-status-1.5.3" = { - name = "http-status"; - packageName = "http-status"; - version = "1.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/http-status/-/http-status-1.5.3.tgz"; - sha512 = "jCClqdnnwigYslmtfb28vPplOgoiZ0siP2Z8C5Ua+3UKbx410v+c+jT+jh1bbI4TvcEySuX0vd/CfFZFbDkJeQ=="; - }; - }; "http-status-1.6.2" = { name = "http-status"; packageName = "http-status"; @@ -41203,15 +41770,6 @@ let sha512 = "it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ=="; }; }; - "ini-4.0.0" = { - name = "ini"; - packageName = "ini"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ini/-/ini-4.0.0.tgz"; - sha512 = "t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg=="; - }; - }; "ini-4.1.0" = { name = "ini"; packageName = "ini"; @@ -41806,13 +42364,13 @@ let sha512 = "3GYo0GJtLqgNXj4YhrisLaNNvWSNwSS2wS4OELGfGxH8I69+XfNdnmV1AyN+ZqMh0i7eX+SWjrwFKDBDgfBC1A=="; }; }; - "ioredis-5.3.1" = { + "ioredis-5.3.2" = { name = "ioredis"; packageName = "ioredis"; - version = "5.3.1"; + version = "5.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/ioredis/-/ioredis-5.3.1.tgz"; - sha512 = "C+IBcMysM6v52pTLItYMeV4Hz7uriGtoJdz7SSBDX6u+zwSYGirLdQh3L7t/OItWITcw3gTFMjJReYUwS4zihg=="; + url = "https://registry.npmjs.org/ioredis/-/ioredis-5.3.2.tgz"; + sha512 = "1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA=="; }; }; "iota-array-1.0.0" = { @@ -42598,6 +43156,15 @@ let sha512 = "lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ=="; }; }; + "is-generator-fn-2.1.0" = { + name = "is-generator-fn"; + packageName = "is-generator-fn"; + version = "2.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz"; + sha512 = "cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ=="; + }; + }; "is-generator-function-1.0.10" = { name = "is-generator-function"; packageName = "is-generator-function"; @@ -43912,6 +44479,15 @@ let sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ=="; }; }; + "istanbul-lib-instrument-5.2.1" = { + name = "istanbul-lib-instrument"; + packageName = "istanbul-lib-instrument"; + version = "5.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz"; + sha512 = "pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg=="; + }; + }; "istanbul-lib-processinfo-2.0.3" = { name = "istanbul-lib-processinfo"; packageName = "istanbul-lib-processinfo"; @@ -44020,6 +44596,15 @@ let sha512 = "R2SE/AQrE4IhlyRbBp7ASIjFO+Wlpfra2Q7GMZkOjQb890MLtKyINPawJ7fr+Z7CPgHoXj2J3BNyebBIbVn8PQ=="; }; }; + "jackspeak-2.0.3" = { + name = "jackspeak"; + packageName = "jackspeak"; + version = "2.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/jackspeak/-/jackspeak-2.0.3.tgz"; + sha512 = "0Jud3OMUdMbrlr3PyUMKESq51LXVAB+a239Ywdvd+Kgxj3MaBRml/nVRxf8tQFyfthMjuRkxkv7Vg58pmIMfuQ=="; + }; + }; "jade-0.26.3" = { name = "jade"; packageName = "jade"; @@ -44074,6 +44659,78 @@ let sha512 = "z35ZSEcXHxLW4yumw0dF6L464NT36vmx3wxJw8MDpraBcWuNVgUPZgPJKcu1HekNgwlMFNqol7i/IpSbjhqwqA=="; }; }; + "jest-29.5.0" = { + name = "jest"; + packageName = "jest"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz"; + sha512 = "juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ=="; + }; + }; + "jest-changed-files-29.5.0" = { + name = "jest-changed-files"; + packageName = "jest-changed-files"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz"; + sha512 = "IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag=="; + }; + }; + "jest-circus-29.5.0" = { + name = "jest-circus"; + packageName = "jest-circus"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz"; + sha512 = "gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA=="; + }; + }; + "jest-cli-29.5.0" = { + name = "jest-cli"; + packageName = "jest-cli"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz"; + sha512 = "L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw=="; + }; + }; + "jest-config-29.5.0" = { + name = "jest-config"; + packageName = "jest-config"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz"; + sha512 = "kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA=="; + }; + }; + "jest-diff-29.5.0" = { + name = "jest-diff"; + packageName = "jest-diff"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz"; + sha512 = "LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw=="; + }; + }; + "jest-docblock-29.4.3" = { + name = "jest-docblock"; + packageName = "jest-docblock"; + version = "29.4.3"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz"; + sha512 = "fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg=="; + }; + }; + "jest-each-29.5.0" = { + name = "jest-each"; + packageName = "jest-each"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz"; + sha512 = "HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA=="; + }; + }; "jest-environment-node-27.5.1" = { name = "jest-environment-node"; packageName = "jest-environment-node"; @@ -44083,6 +44740,51 @@ let sha512 = "Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw=="; }; }; + "jest-environment-node-29.5.0" = { + name = "jest-environment-node"; + packageName = "jest-environment-node"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz"; + sha512 = "ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw=="; + }; + }; + "jest-get-type-29.4.3" = { + name = "jest-get-type"; + packageName = "jest-get-type"; + version = "29.4.3"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz"; + sha512 = "J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg=="; + }; + }; + "jest-haste-map-29.5.0" = { + name = "jest-haste-map"; + packageName = "jest-haste-map"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz"; + sha512 = "IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA=="; + }; + }; + "jest-leak-detector-29.5.0" = { + name = "jest-leak-detector"; + packageName = "jest-leak-detector"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz"; + sha512 = "u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow=="; + }; + }; + "jest-matcher-utils-29.5.0" = { + name = "jest-matcher-utils"; + packageName = "jest-matcher-utils"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz"; + sha512 = "lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw=="; + }; + }; "jest-message-util-27.5.1" = { name = "jest-message-util"; packageName = "jest-message-util"; @@ -44092,6 +44794,15 @@ let sha512 = "rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g=="; }; }; + "jest-message-util-29.5.0" = { + name = "jest-message-util"; + packageName = "jest-message-util"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz"; + sha512 = "Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA=="; + }; + }; "jest-mock-27.5.1" = { name = "jest-mock"; packageName = "jest-mock"; @@ -44101,6 +44812,78 @@ let sha512 = "K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og=="; }; }; + "jest-mock-29.5.0" = { + name = "jest-mock"; + packageName = "jest-mock"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz"; + sha512 = "GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw=="; + }; + }; + "jest-pnp-resolver-1.2.3" = { + name = "jest-pnp-resolver"; + packageName = "jest-pnp-resolver"; + version = "1.2.3"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz"; + sha512 = "+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w=="; + }; + }; + "jest-regex-util-29.4.3" = { + name = "jest-regex-util"; + packageName = "jest-regex-util"; + version = "29.4.3"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz"; + sha512 = "O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg=="; + }; + }; + "jest-resolve-29.5.0" = { + name = "jest-resolve"; + packageName = "jest-resolve"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz"; + sha512 = "1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w=="; + }; + }; + "jest-resolve-dependencies-29.5.0" = { + name = "jest-resolve-dependencies"; + packageName = "jest-resolve-dependencies"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz"; + sha512 = "sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg=="; + }; + }; + "jest-runner-29.5.0" = { + name = "jest-runner"; + packageName = "jest-runner"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz"; + sha512 = "m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ=="; + }; + }; + "jest-runtime-29.5.0" = { + name = "jest-runtime"; + packageName = "jest-runtime"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz"; + sha512 = "1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw=="; + }; + }; + "jest-snapshot-29.5.0" = { + name = "jest-snapshot"; + packageName = "jest-snapshot"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz"; + sha512 = "x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g=="; + }; + }; "jest-util-27.5.1" = { name = "jest-util"; packageName = "jest-util"; @@ -44110,6 +44893,33 @@ let sha512 = "Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw=="; }; }; + "jest-util-29.5.0" = { + name = "jest-util"; + packageName = "jest-util"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz"; + sha512 = "RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ=="; + }; + }; + "jest-validate-29.5.0" = { + name = "jest-validate"; + packageName = "jest-validate"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz"; + sha512 = "pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ=="; + }; + }; + "jest-watcher-29.5.0" = { + name = "jest-watcher"; + packageName = "jest-watcher"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz"; + sha512 = "KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA=="; + }; + }; "jest-worker-27.5.1" = { name = "jest-worker"; packageName = "jest-worker"; @@ -44119,6 +44929,15 @@ let sha512 = "7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg=="; }; }; + "jest-worker-29.5.0" = { + name = "jest-worker"; + packageName = "jest-worker"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz"; + sha512 = "NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA=="; + }; + }; "jimp-0.16.13" = { name = "jimp"; packageName = "jimp"; @@ -44732,6 +45551,15 @@ let sha512 = "mw2xlpnGszpQMYZoHaKFx0TuxAuEW+tIMMVj5xXOsEBFnsc0bdVGkFPytg5VOjOiKK2PA2fAZO/3Y0Vtn3GY+Q=="; }; }; + "jsii-5.0.6" = { + name = "jsii"; + packageName = "jsii"; + version = "5.0.6"; + src = fetchurl { + url = "https://registry.npmjs.org/jsii/-/jsii-5.0.6.tgz"; + sha512 = "sRcffOl2eCeLTvAu5MK9kmD2cU6nInFOqUaQazd7Prssvx7Qpxk+zXjUEilQktDL7akr+Ws6ea7WPGNjeYr+4A=="; + }; + }; "jsii-pacmak-1.80.0" = { name = "jsii-pacmak"; packageName = "jsii-pacmak"; @@ -44759,13 +45587,22 @@ let sha512 = "7sziqogIHg6TQpMWR9eI8tDj8C+L/tSmsnbc+lASPlzkpHkukuETsgojnP/5Zg1tng8YW1+zvjuGbqVgiEXfzA=="; }; }; - "jsii-srcmak-0.1.881" = { + "jsii-rosetta-5.0.4" = { + name = "jsii-rosetta"; + packageName = "jsii-rosetta"; + version = "5.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.0.4.tgz"; + sha512 = "umO/UF+UY4VRIJ8zO8Wa2klWofmegtgora0IfhEkVJi4BtpcrtnMQxURY9oF4IJERmje8PSGi2j952BdYc/ATA=="; + }; + }; + "jsii-srcmak-0.1.889" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.881"; + version = "0.1.889"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.881.tgz"; - sha512 = "RzGR7X+yiLTh0M+0RuAahfaXtkeyvaAS7z6cA0rigQYLCy8sH6ZiifnEki572lnzMjn+KBuvsW1p77i06z50aA=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.889.tgz"; + sha512 = "gnCnyCKByOUIKmlZgqXCfE9W7p16DSCsPPROyDufXYPdozhUbw0NlcFYObTSB8rlob9H+2GyMwvSF5GT5sLJPg=="; }; }; "json-bigint-1.0.0" = { @@ -44813,13 +45650,13 @@ let sha512 = "56oZtwV1piXrQnRNTtJeqRv+B9Y/dXAYLqBBaYl/COcUdoZxgLBLAO88+CnkbT6MxNs0c5E9mPBIb2sFcNz3vw=="; }; }; - "json-cycle-1.4.0" = { + "json-cycle-1.5.0" = { name = "json-cycle"; packageName = "json-cycle"; - version = "1.4.0"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/json-cycle/-/json-cycle-1.4.0.tgz"; - sha512 = "rU9PIQLyR7sSoefX9OjU8eoTOg0Ulzx5mVvNzplTe6WZTSvEYurxtC+Ar1wGC4Busiq+1vL6g42GproF4HQcEQ=="; + url = "https://registry.npmjs.org/json-cycle/-/json-cycle-1.5.0.tgz"; + sha512 = "GOehvd5PO2FeZ5T4c+RxobeT5a1PiGpF4u9/3+UvrMU4bhnVqzJY7hm39wg8PDCqkU91fWGH8qjWR4bn+wgq9w=="; }; }; "json-dup-key-validator-1.0.3" = { @@ -45560,13 +46397,13 @@ let sha512 = "pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ=="; }; }; - "junk-4.0.0" = { + "junk-4.0.1" = { name = "junk"; packageName = "junk"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/junk/-/junk-4.0.0.tgz"; - sha512 = "ojtSU++zLJ3jQG9bAYjg94w+/DOJtRyD7nPaerMFrBhmdVmiV5/exYH5t4uHga4G/95nT6hr1OJoKIFbYbrW5w=="; + url = "https://registry.npmjs.org/junk/-/junk-4.0.1.tgz"; + sha512 = "Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ=="; }; }; "just-debounce-1.1.0" = { @@ -46838,94 +47675,94 @@ let sha512 = "qcMnxsKAkn5eWdFCZGP1mwW/6zBTTtGJPMt1BW6056bmB6kTAnP8A3+MWp1bQpdcfMzUKhl18am8uLu00w/FoA=="; }; }; - "lightning-7.1.9" = { + "lightning-8.0.0" = { name = "lightning"; packageName = "lightning"; - version = "7.1.9"; + version = "8.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-7.1.9.tgz"; - sha512 = "p5VreRPpRAPQ66LFANuvhWCutipuly07qterFjbzxJGwkgfaWw6L+K25UipfB0kYJvsZNTEfzCszQBO07Y1Ujw=="; + url = "https://registry.npmjs.org/lightning/-/lightning-8.0.0.tgz"; + sha512 = "3XMngXzqm2DrV0oVg1J3qyyuKcrg+10Ll6thjyFTxyC7XSZia3U6f/gDsO3fjdcQhticzK5zuW1MD1u6sviSwg=="; }; }; - "lightningcss-1.19.0" = { + "lightningcss-1.20.0" = { name = "lightningcss"; packageName = "lightningcss"; - version = "1.19.0"; + version = "1.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.19.0.tgz"; - sha512 = "yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA=="; + url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.20.0.tgz"; + sha512 = "4bj8aP+Vi+or8Gwq/hknmicr4PmA8D9uL/3qY0N0daX5vYBMYERGI6Y93nzoeRgQMULq+gtrN/FvJYtH0xNN8g=="; }; }; - "lightningcss-darwin-arm64-1.19.0" = { + "lightningcss-darwin-arm64-1.20.0" = { name = "lightningcss-darwin-arm64"; packageName = "lightningcss-darwin-arm64"; - version = "1.19.0"; + version = "1.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.19.0.tgz"; - sha512 = "wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg=="; + url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.20.0.tgz"; + sha512 = "aYEohJTlzwB8URJaNiS57tMbjyLub0mYvxlxKQk8SZv+irXx6MoBWpDNQKKTS9gg1pGf/eAwjpa3BLAoCBsh1A=="; }; }; - "lightningcss-darwin-x64-1.19.0" = { + "lightningcss-darwin-x64-1.20.0" = { name = "lightningcss-darwin-x64"; packageName = "lightningcss-darwin-x64"; - version = "1.19.0"; + version = "1.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.19.0.tgz"; - sha512 = "Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw=="; + url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.20.0.tgz"; + sha512 = "cmMgY8FFWVaGgtift7eKKkHMqlz9O09/yTdlCXEDOeDP9yeo6vHOBTRP7ojb368kjw8Ew3l0L2uT1Gtx56eNkg=="; }; }; - "lightningcss-linux-arm-gnueabihf-1.19.0" = { + "lightningcss-linux-arm-gnueabihf-1.20.0" = { name = "lightningcss-linux-arm-gnueabihf"; packageName = "lightningcss-linux-arm-gnueabihf"; - version = "1.19.0"; + version = "1.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.19.0.tgz"; - sha512 = "P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig=="; + url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.20.0.tgz"; + sha512 = "/m+NDO1O6JCv7R9F0XWlXcintQHx4MPNU+kt8jZJO07LLdGwCfvjN31GVcwVPlStnnx/cU8uTTmax6g/Qu/whg=="; }; }; - "lightningcss-linux-arm64-gnu-1.19.0" = { + "lightningcss-linux-arm64-gnu-1.20.0" = { name = "lightningcss-linux-arm64-gnu"; packageName = "lightningcss-linux-arm64-gnu"; - version = "1.19.0"; + version = "1.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.19.0.tgz"; - sha512 = "zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww=="; + url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.20.0.tgz"; + sha512 = "gtXoa6v0HvMRLbev6Hsef0+Q5He7NslB+Rs7G49Y5LUSdJeGIATEN+j8JzHC0DnxCsOGbEgGRmvtJzzYDkkluw=="; }; }; - "lightningcss-linux-arm64-musl-1.19.0" = { + "lightningcss-linux-arm64-musl-1.20.0" = { name = "lightningcss-linux-arm64-musl"; packageName = "lightningcss-linux-arm64-musl"; - version = "1.19.0"; + version = "1.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.19.0.tgz"; - sha512 = "vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA=="; + url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.20.0.tgz"; + sha512 = "Po7XpucM1kZnkiyd2BNwTExSDcZ8jm8uB9u+Sq44qjpkf5f75jreQwn3DQm9I1t5C6tB9HGt30HExMju9umJBQ=="; }; }; - "lightningcss-linux-x64-gnu-1.19.0" = { + "lightningcss-linux-x64-gnu-1.20.0" = { name = "lightningcss-linux-x64-gnu"; packageName = "lightningcss-linux-x64-gnu"; - version = "1.19.0"; + version = "1.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.19.0.tgz"; - sha512 = "0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ=="; + url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.20.0.tgz"; + sha512 = "8yR/fGNn/P0I+Lc3PK+VWPET/zdSpBfHFIG0DJ38TywMbItVKvnFvoTBwnIm4LqBz7g2G2dDexnNP95za2Ll8g=="; }; }; - "lightningcss-linux-x64-musl-1.19.0" = { + "lightningcss-linux-x64-musl-1.20.0" = { name = "lightningcss-linux-x64-musl"; packageName = "lightningcss-linux-x64-musl"; - version = "1.19.0"; + version = "1.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.19.0.tgz"; - sha512 = "SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg=="; + url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.20.0.tgz"; + sha512 = "EmpJ+VkPZ8RACiB4m+l8TmapmE1W2UvJKDHE+ML/3Ihr9tRKUs3CibfnQTFZC8aSsrxgXagDAN+PgCDDhIyriA=="; }; }; - "lightningcss-win32-x64-msvc-1.19.0" = { + "lightningcss-win32-x64-msvc-1.20.0" = { name = "lightningcss-win32-x64-msvc"; packageName = "lightningcss-win32-x64-msvc"; - version = "1.19.0"; + version = "1.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.19.0.tgz"; - sha512 = "C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg=="; + url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.20.0.tgz"; + sha512 = "BRdPvbq7Cc1qxAzp2emqWJHrqsEkf4ggxS29VOnxT7jhkdHKU+a26OVMjvm/OL0NH0ToNOZNAPvHMSexiEgBeA=="; }; }; "lilconfig-2.1.0" = { @@ -47162,15 +47999,6 @@ let sha512 = "dMT803JdsQgWUYid1n3nIZYmRU+Yd4FL3GcezEye5u1c6ab9f9/VcCvAwVL86FuhR4PB1+xajs2PHtNreejNRA=="; }; }; - "ln-service-54.10.7" = { - name = "ln-service"; - packageName = "ln-service"; - version = "54.10.7"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-54.10.7.tgz"; - sha512 = "YRPqvyaEJPsR+ljizoSwYueHPVWmND32PLsL9JSb3CnLmVUvXcqQh0zl4Q7TVR31qeW7Vh/Q0ldbXu0vtSMsWA=="; - }; - }; "ln-service-54.9.0" = { name = "ln-service"; packageName = "ln-service"; @@ -47180,6 +48008,15 @@ let sha512 = "aeuRa5B3EhCJf6RL2m2oTK7luClU90Evhqp9RRWcfxngQZc2BSbw47fav63WaoXwA/o7/3tgy6y/1bCZ5UfzgA=="; }; }; + "ln-service-55.0.0" = { + name = "ln-service"; + packageName = "ln-service"; + version = "55.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/ln-service/-/ln-service-55.0.0.tgz"; + sha512 = "b7eEHO24y9COYpX/8RDo67OdvsSegfGruRDOGNx+RSI3obz5wJtF8v7mMKlxaAgkhmXODc4ZZbX2Tujmgh+eiQ=="; + }; + }; "ln-sync-4.2.0" = { name = "ln-sync"; packageName = "ln-sync"; @@ -48962,13 +49799,13 @@ let sha512 = "XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA=="; }; }; - "long-5.2.1" = { + "long-5.2.3" = { name = "long"; packageName = "long"; - version = "5.2.1"; + version = "5.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/long/-/long-5.2.1.tgz"; - sha512 = "GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A=="; + url = "https://registry.npmjs.org/long/-/long-5.2.3.tgz"; + sha512 = "lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q=="; }; }; "long-timeout-0.1.1" = { @@ -49268,13 +50105,22 @@ let sha512 = "jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="; }; }; - "lru-cache-9.0.2" = { + "lru-cache-8.0.5" = { name = "lru-cache"; packageName = "lru-cache"; - version = "9.0.2"; + version = "8.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-9.0.2.tgz"; - sha512 = "7zYMKApzQ9qQE13xQUzbXVY3p2C5lh+9V+bs8M9fRf1TF59id+8jkljRWtIPfBfNP4yQAol5cqh/e8clxatdXw=="; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-8.0.5.tgz"; + sha512 = "MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA=="; + }; + }; + "lru-cache-9.1.0" = { + name = "lru-cache"; + packageName = "lru-cache"; + version = "9.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.0.tgz"; + sha512 = "qFXQEwchrZcMVen2uIDceR8Tii6kCJak5rzDStfEM0qA3YLMswaxIEZO0DhIbJ3aqaJiDjt+3crlplOb0tDtKQ=="; }; }; "lru-queue-0.1.0" = { @@ -49566,15 +50412,6 @@ let sha512 = "NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w=="; }; }; - "make-fetch-happen-11.0.3" = { - name = "make-fetch-happen"; - packageName = "make-fetch-happen"; - version = "11.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.0.3.tgz"; - sha512 = "oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA=="; - }; - }; "make-fetch-happen-11.1.0" = { name = "make-fetch-happen"; packageName = "make-fetch-happen"; @@ -49602,6 +50439,15 @@ let sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw=="; }; }; + "makeerror-1.0.12" = { + name = "makeerror"; + packageName = "makeerror"; + version = "1.0.12"; + src = fetchurl { + url = "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz"; + sha512 = "JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="; + }; + }; "map-age-cleaner-0.1.3" = { name = "map-age-cleaner"; packageName = "map-age-cleaner"; @@ -49980,22 +50826,40 @@ let sha512 = "HtfVr/hzJJmE0C198F99JLaeada+646B5SaG2pVoEakLFI6iRGsvMqrnnrflq8hm1zQgwskEgqSnhDW11JBp0w=="; }; }; - "markdownlint-cli2-0.6.0" = { - name = "markdownlint-cli2"; - packageName = "markdownlint-cli2"; - version = "0.6.0"; + "markdownlint-0.28.1" = { + name = "markdownlint"; + packageName = "markdownlint"; + version = "0.28.1"; src = fetchurl { - url = "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.6.0.tgz"; - sha512 = "Bv20r6WGdcHMWi8QvAFZ3CBunf4i4aYmVdTfpAvXODI/1k3f09DZZ0i0LcX9ZMhlVxjoOzbVDz1NWyKc5hwTqg=="; + url = "https://registry.npmjs.org/markdownlint/-/markdownlint-0.28.1.tgz"; + sha512 = "8At2DbgGKT/RVBinkqIPqLETopPXyQFGWSiTCJSr9Y6wVVyY70cDJ9dw3FXePn4AkytIUclgrsgI6KVeqeHFoA=="; }; }; - "markdownlint-cli2-formatter-default-0.0.3" = { + "markdownlint-cli2-0.7.0" = { + name = "markdownlint-cli2"; + packageName = "markdownlint-cli2"; + version = "0.7.0"; + src = fetchurl { + url = "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.7.0.tgz"; + sha512 = "67r1t9ep+z0fa6g9TgL3tiPQeWo297ip165Et2u54UquJAkXWnq6e+dXFBjSPft/iLaGJfU0fUHXhXueqNUkGQ=="; + }; + }; + "markdownlint-cli2-formatter-default-0.0.4" = { name = "markdownlint-cli2-formatter-default"; packageName = "markdownlint-cli2-formatter-default"; - version = "0.0.3"; + version = "0.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/markdownlint-cli2-formatter-default/-/markdownlint-cli2-formatter-default-0.0.3.tgz"; - sha512 = "QEAJitT5eqX1SNboOD+SO/LNBpu4P4je8JlR02ug2cLQAqmIhh8IJnSK7AcaHBHhNADqdGydnPpQOpsNcEEqCw=="; + url = "https://registry.npmjs.org/markdownlint-cli2-formatter-default/-/markdownlint-cli2-formatter-default-0.0.4.tgz"; + sha512 = "xm2rM0E+sWgjpPn1EesPXx5hIyrN2ddUnUwnbCsD/ONxYtw3PX6LydvdH6dciWAoFDpwzbHM1TO7uHfcMd6IYg=="; + }; + }; + "markdownlint-micromark-0.1.2" = { + name = "markdownlint-micromark"; + packageName = "markdownlint-micromark"; + version = "0.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.2.tgz"; + sha512 = "jRxlQg8KpOfM2IbCL9RXM8ZiYWz2rv6DlZAnGv8ASJQpUh6byTBnEsbuMZ6T2/uIgntyf7SKg/mEaEBo1164fQ=="; }; }; "marked-0.3.19" = { @@ -50736,13 +51600,13 @@ let sha512 = "ReB3YD24GNykmu4WeUL/FDIQtkoyGB6zfJv60yfCo3QjKeimNcTqv2FT83bP0ccs6uu+sm5zyoBlspAzigmsdg=="; }; }; - "memfs-3.5.0" = { + "memfs-3.5.1" = { name = "memfs"; packageName = "memfs"; - version = "3.5.0"; + version = "3.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/memfs/-/memfs-3.5.0.tgz"; - sha512 = "yK6o8xVJlQerz57kvPROwTMgx5WtGwC2ZxDtOUsnGl49rHjYkfQoPNZPCKH73VdLE1BwBu/+Fx/NL8NYMUw2aA=="; + url = "https://registry.npmjs.org/memfs/-/memfs-3.5.1.tgz"; + sha512 = "UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA=="; }; }; "memoizee-0.4.15" = { @@ -53247,13 +54111,13 @@ let sha512 = "Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig=="; }; }; - "mysql2-3.2.0" = { + "mysql2-3.2.3" = { name = "mysql2"; packageName = "mysql2"; - version = "3.2.0"; + version = "3.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/mysql2/-/mysql2-3.2.0.tgz"; - sha512 = "0Vn6a9WSrq6fWwvPgrvIwnOCldiEcgbzapVRDAtDZ4cMTxN7pnGqCTx8EG32S/NYXl6AXkdO+9hV1tSIi/LigA=="; + url = "https://registry.npmjs.org/mysql2/-/mysql2-3.2.3.tgz"; + sha512 = "aethLO9cSAGba9gOXzNayuyq2GAVTKc3vwr+uETOX1yjUuH6MS6D5ewhUqkaukmtjzrb5C9ML7YmmmRBjQ3r3Q=="; }; }; "mz-2.7.0" = { @@ -54121,13 +54985,13 @@ let sha512 = "/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w=="; }; }; - "node-abi-3.35.0" = { + "node-abi-3.40.0" = { name = "node-abi"; packageName = "node-abi"; - version = "3.35.0"; + version = "3.40.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-abi/-/node-abi-3.35.0.tgz"; - sha512 = "jAlSOFR1Bls963NmFwxeQkNTzqjUF0NThm8Le7eRIRGzFUVJuMOFZDLv5Y30W/Oaw+KEebEJLAigwO9gQHoEmw=="; + url = "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz"; + sha512 = "zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA=="; }; }; "node-abort-controller-3.1.1" = { @@ -56048,13 +56912,13 @@ let sha512 = "VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg=="; }; }; - "object.getownpropertydescriptors-2.1.5" = { + "object.getownpropertydescriptors-2.1.6" = { name = "object.getownpropertydescriptors"; packageName = "object.getownpropertydescriptors"; - version = "2.1.5"; + version = "2.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz"; - sha512 = "yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw=="; + url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz"; + sha512 = "lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ=="; }; }; "object.hasown-1.1.2" = { @@ -56732,13 +57596,13 @@ let sha512 = "EFTQ61/OUVhCeq78Y3rBpdKSuvgb0lwkU8nN4QTdcv0afc5MT7e4IVuZwgkMsgE993dmhbIhkxHFP3iTVJXWmw=="; }; }; - "openpgp-5.7.0" = { + "openpgp-5.8.0" = { name = "openpgp"; packageName = "openpgp"; - version = "5.7.0"; + version = "5.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/openpgp/-/openpgp-5.7.0.tgz"; - sha512 = "wchYJQfFbSaocUvUIYqNrWD+lRSmFSG1d3Ak2CHeXFocDSEsf7Uc1zUzHjSdlZPTvGeeXPQ+MJrwVtalL4QCBg=="; + url = "https://registry.npmjs.org/openpgp/-/openpgp-5.8.0.tgz"; + sha512 = "hq4+4s/vpjuwGgZSjplGp4j5FzSz+KwiFRiqMx+ZXr7VCK3CvTkktYilMTZMrf2vHsFH8aQ0596Lmn07HeKRmQ=="; }; }; "opentracing-0.14.7" = { @@ -57803,6 +58667,15 @@ let sha512 = "eeqEe77QrA6auZxNHIp+1TzHQ0HBKf5V6c8zcaYZ134EJe1lCi+fjXATkNiEEfbG+e50nu02GLvUtmZcGOYabQ=="; }; }; + "pacote-15.1.2" = { + name = "pacote"; + packageName = "pacote"; + version = "15.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/pacote/-/pacote-15.1.2.tgz"; + sha512 = "EAGJrMiIjBTBB6tWGrx9hFJTOo14B3HSAoa/W9SawFEBhUqjxN7qqaFlGVF9jfY/mIri8Mb2xafmkRgWxYXxIQ=="; + }; + }; "pad-0.0.5" = { name = "pad"; packageName = "pad"; @@ -58748,13 +59621,13 @@ let sha512 = "4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ=="; }; }; - "path-scurry-1.6.4" = { + "path-scurry-1.7.0" = { name = "path-scurry"; packageName = "path-scurry"; - version = "1.6.4"; + version = "1.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/path-scurry/-/path-scurry-1.6.4.tgz"; - sha512 = "Qp/9IHkdNiXJ3/Kon++At2nVpnhRiPq/aSvQN+H3U1WZbvNRK0RIQK/o4HMqPoXjpuGJUEWpHSs6Mnjxqh3TQg=="; + url = "https://registry.npmjs.org/path-scurry/-/path-scurry-1.7.0.tgz"; + sha512 = "UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg=="; }; }; "path-to-glob-pattern-1.0.2" = { @@ -59855,6 +60728,15 @@ let sha512 = "tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg=="; }; }; + "postcss-8.4.23" = { + name = "postcss"; + packageName = "postcss"; + version = "8.4.23"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz"; + sha512 = "bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA=="; + }; + }; "postcss-calc-7.0.5" = { name = "postcss-calc"; packageName = "postcss-calc"; @@ -59891,6 +60773,15 @@ let sha512 = "UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ=="; }; }; + "postcss-colormin-6.0.0" = { + name = "postcss-colormin"; + packageName = "postcss-colormin"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.0.tgz"; + sha512 = "EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw=="; + }; + }; "postcss-convert-values-4.0.1" = { name = "postcss-convert-values"; packageName = "postcss-convert-values"; @@ -59909,6 +60800,15 @@ let sha512 = "82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA=="; }; }; + "postcss-convert-values-6.0.0" = { + name = "postcss-convert-values"; + packageName = "postcss-convert-values"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz"; + sha512 = "U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw=="; + }; + }; "postcss-discard-comments-4.0.2" = { name = "postcss-discard-comments"; packageName = "postcss-discard-comments"; @@ -59927,6 +60827,15 @@ let sha512 = "+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ=="; }; }; + "postcss-discard-comments-6.0.0" = { + name = "postcss-discard-comments"; + packageName = "postcss-discard-comments"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz"; + sha512 = "p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw=="; + }; + }; "postcss-discard-duplicates-4.0.2" = { name = "postcss-discard-duplicates"; packageName = "postcss-discard-duplicates"; @@ -59945,6 +60854,15 @@ let sha512 = "zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw=="; }; }; + "postcss-discard-duplicates-6.0.0" = { + name = "postcss-discard-duplicates"; + packageName = "postcss-discard-duplicates"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz"; + sha512 = "bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA=="; + }; + }; "postcss-discard-empty-4.0.1" = { name = "postcss-discard-empty"; packageName = "postcss-discard-empty"; @@ -59963,6 +60881,15 @@ let sha512 = "zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A=="; }; }; + "postcss-discard-empty-6.0.0" = { + name = "postcss-discard-empty"; + packageName = "postcss-discard-empty"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz"; + sha512 = "b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ=="; + }; + }; "postcss-discard-overridden-4.0.1" = { name = "postcss-discard-overridden"; packageName = "postcss-discard-overridden"; @@ -59981,6 +60908,15 @@ let sha512 = "21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw=="; }; }; + "postcss-discard-overridden-6.0.0" = { + name = "postcss-discard-overridden"; + packageName = "postcss-discard-overridden"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz"; + sha512 = "4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw=="; + }; + }; "postcss-flexbugs-fixes-4.2.1" = { name = "postcss-flexbugs-fixes"; packageName = "postcss-flexbugs-fixes"; @@ -60089,6 +61025,15 @@ let sha512 = "YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ=="; }; }; + "postcss-merge-longhand-6.0.0" = { + name = "postcss-merge-longhand"; + packageName = "postcss-merge-longhand"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz"; + sha512 = "4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg=="; + }; + }; "postcss-merge-rules-4.0.3" = { name = "postcss-merge-rules"; packageName = "postcss-merge-rules"; @@ -60107,6 +61052,15 @@ let sha512 = "0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g=="; }; }; + "postcss-merge-rules-6.0.0" = { + name = "postcss-merge-rules"; + packageName = "postcss-merge-rules"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.0.tgz"; + sha512 = "rCXkklftzEkniyv3f4mRCQzxD6oE4Quyh61uyWTUbCJ26Pv2hoz+fivJSsSBWxDBeScR4fKCfF3HHTcD7Ybqnw=="; + }; + }; "postcss-minify-font-values-4.0.2" = { name = "postcss-minify-font-values"; packageName = "postcss-minify-font-values"; @@ -60125,6 +61079,15 @@ let sha512 = "el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA=="; }; }; + "postcss-minify-font-values-6.0.0" = { + name = "postcss-minify-font-values"; + packageName = "postcss-minify-font-values"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz"; + sha512 = "zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA=="; + }; + }; "postcss-minify-gradients-4.0.2" = { name = "postcss-minify-gradients"; packageName = "postcss-minify-gradients"; @@ -60143,6 +61106,15 @@ let sha512 = "VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw=="; }; }; + "postcss-minify-gradients-6.0.0" = { + name = "postcss-minify-gradients"; + packageName = "postcss-minify-gradients"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz"; + sha512 = "wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA=="; + }; + }; "postcss-minify-params-4.0.2" = { name = "postcss-minify-params"; packageName = "postcss-minify-params"; @@ -60161,6 +61133,15 @@ let sha512 = "+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw=="; }; }; + "postcss-minify-params-6.0.0" = { + name = "postcss-minify-params"; + packageName = "postcss-minify-params"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz"; + sha512 = "Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ=="; + }; + }; "postcss-minify-selectors-4.0.2" = { name = "postcss-minify-selectors"; packageName = "postcss-minify-selectors"; @@ -60179,6 +61160,15 @@ let sha512 = "nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg=="; }; }; + "postcss-minify-selectors-6.0.0" = { + name = "postcss-minify-selectors"; + packageName = "postcss-minify-selectors"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz"; + sha512 = "ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g=="; + }; + }; "postcss-modules-6.0.0" = { name = "postcss-modules"; packageName = "postcss-modules"; @@ -60341,6 +61331,15 @@ let sha512 = "mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg=="; }; }; + "postcss-normalize-charset-6.0.0" = { + name = "postcss-normalize-charset"; + packageName = "postcss-normalize-charset"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz"; + sha512 = "cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ=="; + }; + }; "postcss-normalize-display-values-4.0.2" = { name = "postcss-normalize-display-values"; packageName = "postcss-normalize-display-values"; @@ -60359,6 +61358,15 @@ let sha512 = "WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA=="; }; }; + "postcss-normalize-display-values-6.0.0" = { + name = "postcss-normalize-display-values"; + packageName = "postcss-normalize-display-values"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz"; + sha512 = "Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw=="; + }; + }; "postcss-normalize-positions-4.0.2" = { name = "postcss-normalize-positions"; packageName = "postcss-normalize-positions"; @@ -60377,6 +61385,15 @@ let sha512 = "6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg=="; }; }; + "postcss-normalize-positions-6.0.0" = { + name = "postcss-normalize-positions"; + packageName = "postcss-normalize-positions"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz"; + sha512 = "mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg=="; + }; + }; "postcss-normalize-repeat-style-4.0.2" = { name = "postcss-normalize-repeat-style"; packageName = "postcss-normalize-repeat-style"; @@ -60395,6 +61412,15 @@ let sha512 = "mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g=="; }; }; + "postcss-normalize-repeat-style-6.0.0" = { + name = "postcss-normalize-repeat-style"; + packageName = "postcss-normalize-repeat-style"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz"; + sha512 = "50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A=="; + }; + }; "postcss-normalize-string-4.0.2" = { name = "postcss-normalize-string"; packageName = "postcss-normalize-string"; @@ -60413,6 +61439,15 @@ let sha512 = "oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w=="; }; }; + "postcss-normalize-string-6.0.0" = { + name = "postcss-normalize-string"; + packageName = "postcss-normalize-string"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz"; + sha512 = "KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w=="; + }; + }; "postcss-normalize-timing-functions-4.0.2" = { name = "postcss-normalize-timing-functions"; packageName = "postcss-normalize-timing-functions"; @@ -60431,6 +61466,15 @@ let sha512 = "DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg=="; }; }; + "postcss-normalize-timing-functions-6.0.0" = { + name = "postcss-normalize-timing-functions"; + packageName = "postcss-normalize-timing-functions"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz"; + sha512 = "tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg=="; + }; + }; "postcss-normalize-unicode-4.0.1" = { name = "postcss-normalize-unicode"; packageName = "postcss-normalize-unicode"; @@ -60449,6 +61493,15 @@ let sha512 = "qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA=="; }; }; + "postcss-normalize-unicode-6.0.0" = { + name = "postcss-normalize-unicode"; + packageName = "postcss-normalize-unicode"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz"; + sha512 = "ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg=="; + }; + }; "postcss-normalize-url-4.0.1" = { name = "postcss-normalize-url"; packageName = "postcss-normalize-url"; @@ -60467,6 +61520,15 @@ let sha512 = "5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew=="; }; }; + "postcss-normalize-url-6.0.0" = { + name = "postcss-normalize-url"; + packageName = "postcss-normalize-url"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz"; + sha512 = "98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw=="; + }; + }; "postcss-normalize-whitespace-4.0.2" = { name = "postcss-normalize-whitespace"; packageName = "postcss-normalize-whitespace"; @@ -60485,6 +61547,15 @@ let sha512 = "83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA=="; }; }; + "postcss-normalize-whitespace-6.0.0" = { + name = "postcss-normalize-whitespace"; + packageName = "postcss-normalize-whitespace"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz"; + sha512 = "7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw=="; + }; + }; "postcss-ordered-values-4.1.2" = { name = "postcss-ordered-values"; packageName = "postcss-ordered-values"; @@ -60503,6 +61574,15 @@ let sha512 = "9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ=="; }; }; + "postcss-ordered-values-6.0.0" = { + name = "postcss-ordered-values"; + packageName = "postcss-ordered-values"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz"; + sha512 = "K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg=="; + }; + }; "postcss-reduce-initial-4.0.3" = { name = "postcss-reduce-initial"; packageName = "postcss-reduce-initial"; @@ -60521,6 +61601,15 @@ let sha512 = "dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg=="; }; }; + "postcss-reduce-initial-6.0.0" = { + name = "postcss-reduce-initial"; + packageName = "postcss-reduce-initial"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz"; + sha512 = "s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA=="; + }; + }; "postcss-reduce-transforms-4.0.2" = { name = "postcss-reduce-transforms"; packageName = "postcss-reduce-transforms"; @@ -60539,6 +61628,15 @@ let sha512 = "2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ=="; }; }; + "postcss-reduce-transforms-6.0.0" = { + name = "postcss-reduce-transforms"; + packageName = "postcss-reduce-transforms"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz"; + sha512 = "FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w=="; + }; + }; "postcss-reporter-7.0.5" = { name = "postcss-reporter"; packageName = "postcss-reporter"; @@ -60647,6 +61745,15 @@ let sha512 = "D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA=="; }; }; + "postcss-svgo-6.0.0" = { + name = "postcss-svgo"; + packageName = "postcss-svgo"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.0.tgz"; + sha512 = "r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw=="; + }; + }; "postcss-syntax-0.36.2" = { name = "postcss-syntax"; packageName = "postcss-syntax"; @@ -60674,6 +61781,15 @@ let sha512 = "5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA=="; }; }; + "postcss-unique-selectors-6.0.0" = { + name = "postcss-unique-selectors"; + packageName = "postcss-unique-selectors"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz"; + sha512 = "EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw=="; + }; + }; "postcss-value-parser-3.3.1" = { name = "postcss-value-parser"; packageName = "postcss-value-parser"; @@ -61331,6 +62447,15 @@ let sha512 = "cvpcHTc42lcsvOOAzd3XuNWTcvk1Jmnzqeu+WsOuiPmxUJTnkbAcFNsRKvEpBEUFVUgy/GTZLulZDcDEi+CIlA=="; }; }; + "pretty-format-29.5.0" = { + name = "pretty-format"; + packageName = "pretty-format"; + version = "29.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz"; + sha512 = "V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw=="; + }; + }; "pretty-hash-1.0.1" = { name = "pretty-hash"; packageName = "pretty-hash"; @@ -63014,22 +64139,31 @@ let sha512 = "U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA=="; }; }; - "puppeteer-19.9.0" = { + "puppeteer-19.10.1" = { name = "puppeteer"; packageName = "puppeteer"; - version = "19.9.0"; + version = "19.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-19.9.0.tgz"; - sha512 = "JDx8WwGlkdQYTaa3OMYDF+uFWimiwNnacg5FGEC5J6+VxDsLK30wHKU/Db2LqEhtAoIu4RwS+BRH4zRPlCsFpA=="; + url = "https://registry.npmjs.org/puppeteer/-/puppeteer-19.10.1.tgz"; + sha512 = "HqpY8sWqz28JfyZE8cGG9kBPgASD7iRHn/ryWLvVLXE10poR5AyU/mMsLmL175qoYl/chwMTN2pxKSz7HobaCg=="; }; }; - "puppeteer-core-19.9.0" = { + "puppeteer-core-19.10.1" = { name = "puppeteer-core"; packageName = "puppeteer-core"; - version = "19.9.0"; + version = "19.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-19.9.0.tgz"; - sha512 = "IJYfCE0oFpi5dTvNFqOwo8Dey6zzx7hANy7z6K2bjpCux9oPOSOIubq40awNhaHlfi8soYtgU4qabnzMXB7xBQ=="; + url = "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-19.10.1.tgz"; + sha512 = "vD4ojslBtnIWd56IQIEADIcAWrNel/Qt7YGlAxcSNB0b33U3tYe0A+0FLmPNgSa7UTlCOCCVEmzXi5QlDtLGjQ=="; + }; + }; + "pure-rand-6.0.1" = { + name = "pure-rand"; + packageName = "pure-rand"; + version = "6.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.1.tgz"; + sha512 = "t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg=="; }; }; "purgecss-2.3.0" = { @@ -63104,13 +64238,13 @@ let sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; }; }; - "pyright-1.1.303" = { + "pyright-1.1.304" = { name = "pyright"; packageName = "pyright"; - version = "1.1.303"; + version = "1.1.304"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.303.tgz"; - sha512 = "uwJdp3KRidmpIgKKQtNL17F2noF2PsK6bxqd7WWrQE1AfCHI0j53B9lro63S/9oWWu18xfgTI4IqKO5S1srxhA=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.304.tgz"; + sha512 = "b7q53RytKcu/JIzBDfT4po1Uj1eyjXP4wHcWEOXNkWt8+fS8X6lZhRjPe5yzfPvh/2heTKcIEwY+J/VuMobuyw=="; }; }; "q-1.1.2" = { @@ -63986,13 +65120,13 @@ let sha512 = "gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA=="; }; }; - "react-devtools-core-4.27.4" = { + "react-devtools-core-4.27.6" = { name = "react-devtools-core"; packageName = "react-devtools-core"; - version = "4.27.4"; + version = "4.27.6"; src = fetchurl { - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.27.4.tgz"; - sha512 = "dvZjrAJjahd6NNl7dDwEk5TyHsWJxDpYL7VnD9jdEr98EEEsVhw9G8JDX54Nrb3XIIOBlJDpjo3AuBuychX9zg=="; + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.27.6.tgz"; + sha512 = "jeFNhEzcSwpiqmw+zix5IFibNEPmUodICN7ClrlRKGktzO/3FMteMb52l1NRUiz/ABSYt9hOZ9IPgVDrg5pyUw=="; }; }; "react-dom-16.14.0" = { @@ -65066,13 +66200,13 @@ let sha512 = "1CJygtdvsfNFwiyjaMLBWtg2tfEqx/jSZ8S6TV+GlNL8kiH8rb4cm5Pb7A/C2BpyM/fA8ZJEudlCwi/jvAY+Ow=="; }; }; - "regexp.prototype.flags-1.4.3" = { + "regexp.prototype.flags-1.5.0" = { name = "regexp.prototype.flags"; packageName = "regexp.prototype.flags"; - version = "1.4.3"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"; - sha512 = "fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="; + url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz"; + sha512 = "0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA=="; }; }; "regexpp-1.1.0" = { @@ -66407,6 +67541,15 @@ let sha512 = "Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A=="; }; }; + "reselect-4.1.8" = { + name = "reselect"; + packageName = "reselect"; + version = "4.1.8"; + src = fetchurl { + url = "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz"; + sha512 = "ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ=="; + }; + }; "reserved-0.1.2" = { name = "reserved"; packageName = "reserved"; @@ -66443,13 +67586,13 @@ let sha512 = "nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="; }; }; - "resolve-1.22.2" = { + "resolve-1.22.3" = { name = "resolve"; packageName = "resolve"; - version = "1.22.2"; + version = "1.22.3"; src = fetchurl { - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz"; - sha512 = "Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g=="; + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz"; + sha512 = "P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw=="; }; }; "resolve-1.5.0" = { @@ -66605,6 +67748,15 @@ let sha512 = "ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg=="; }; }; + "resolve.exports-2.0.2" = { + name = "resolve.exports"; + packageName = "resolve.exports"; + version = "2.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz"; + sha512 = "X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg=="; + }; + }; "resp-modifier-6.0.2" = { name = "resp-modifier"; packageName = "resp-modifier"; @@ -67109,13 +68261,13 @@ let sha512 = "uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw=="; }; }; - "rollup-3.20.2" = { + "rollup-3.20.7" = { name = "rollup"; packageName = "rollup"; - version = "3.20.2"; + version = "3.20.7"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.20.2.tgz"; - sha512 = "3zwkBQl7Ai7MFYQE0y1MeQ15+9jsi7XxfrqwTb/9EK8D9C9+//EBR4M+CuA1KODRaNbFez/lWxA5vhEGZp4MUg=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.20.7.tgz"; + sha512 = "P7E2zezKSLhWnTz46XxjSmInrbOCiul1yf+kJccMxT56vxjHwCbDfoLbiqFgu+WQoo9ij2PkraYaBstgB2prBA=="; }; }; "rollup-plugin-inject-3.0.2" = { @@ -67460,6 +68612,15 @@ let sha512 = "eBNFLob4PMq8JA1dGyFn6G97q3/WzNtFK4RnzT1fnLq+9RyrGknzYiM/9B12MnKAxuj1IXr7UKYtTNtjyKMBog=="; }; }; + "safe-array-concat-1.0.0" = { + name = "safe-array-concat"; + packageName = "safe-array-concat"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz"; + sha512 = "9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ=="; + }; + }; "safe-buffer-5.0.1" = { name = "safe-buffer"; packageName = "safe-buffer"; @@ -67802,22 +68963,22 @@ let sha512 = "SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg=="; }; }; - "schema-utils-3.1.1" = { + "schema-utils-3.1.2" = { name = "schema-utils"; packageName = "schema-utils"; - version = "3.1.1"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz"; - sha512 = "Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw=="; + url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz"; + sha512 = "pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg=="; }; }; - "schema-utils-4.0.0" = { + "schema-utils-4.0.1" = { name = "schema-utils"; packageName = "schema-utils"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz"; - sha512 = "1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg=="; + url = "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz"; + sha512 = "lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ=="; }; }; "scoped-regex-2.1.0" = { @@ -68144,13 +69305,13 @@ let sha512 = "NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="; }; }; - "semver-7.4.0" = { + "semver-7.5.0" = { name = "semver"; packageName = "semver"; - version = "7.4.0"; + version = "7.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz"; - sha512 = "RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw=="; + url = "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz"; + sha512 = "+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA=="; }; }; "semver-compare-1.0.0" = { @@ -68981,6 +70142,15 @@ let sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; }; }; + "signal-exit-4.0.1" = { + name = "signal-exit"; + packageName = "signal-exit"; + version = "4.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz"; + sha512 = "uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw=="; + }; + }; "signals-1.0.0" = { name = "signals"; packageName = "signals"; @@ -68999,13 +70169,13 @@ let sha512 = "abgDPg1106vuZZOvw7cFwdCABddfJRz5akcCcchzTbhyhYnsG31y4AlZEgp315T7W3nQq5P4xeOm186ZiPVFzw=="; }; }; - "sigstore-1.2.0" = { + "sigstore-1.3.2" = { name = "sigstore"; packageName = "sigstore"; - version = "1.2.0"; + version = "1.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/sigstore/-/sigstore-1.2.0.tgz"; - sha512 = "Fr9+W1nkBSIZCkJQR7jDn/zI0UXNsVpp+7mDQkCnZOIxG9p6yNXBx9xntHsfUyYHE55XDkkVV3+rYbrkzAeesA=="; + url = "https://registry.npmjs.org/sigstore/-/sigstore-1.3.2.tgz"; + sha512 = "0KT1DjpVB11FK15ep7BIsZQV6j1jBm4SnXIInbBCRvql6II39IKONOMO+j036sGsArU/+2xqa1NDJwJkic0neA=="; }; }; "simple-concat-1.0.1" = { @@ -70178,6 +71348,15 @@ let sha512 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA=="; }; }; + "source-map-support-0.5.13" = { + name = "source-map-support"; + packageName = "source-map-support"; + version = "0.5.13"; + src = fetchurl { + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz"; + sha512 = "SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w=="; + }; + }; "source-map-support-0.5.20" = { name = "source-map-support"; packageName = "source-map-support"; @@ -72789,6 +73968,15 @@ let sha512 = "sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw=="; }; }; + "stylehacks-6.0.0" = { + name = "stylehacks"; + packageName = "stylehacks"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.0.tgz"; + sha512 = "+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw=="; + }; + }; "stylelint-13.13.1" = { name = "stylelint"; packageName = "stylelint"; @@ -73275,6 +74463,15 @@ let sha512 = "+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg=="; }; }; + "svgo-3.0.2" = { + name = "svgo"; + packageName = "svgo"; + version = "3.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz"; + sha512 = "Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ=="; + }; + }; "swagger-converter-0.1.7" = { name = "swagger-converter"; packageName = "swagger-converter"; @@ -74059,13 +75256,13 @@ let sha512 = "4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw=="; }; }; - "terser-5.16.9" = { + "terser-5.17.1" = { name = "terser"; packageName = "terser"; - version = "5.16.9"; + version = "5.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-5.16.9.tgz"; - sha512 = "HPa/FdTB9XGI2H1/keLFZHxl6WNvAI4YalHGtDQTlMnJcoqSab1UwL4l1hGEhs6/GmLHBZIg/YgB++jcbzoOEg=="; + url = "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz"; + sha512 = "hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw=="; }; }; "terser-webpack-plugin-1.4.5" = { @@ -74770,6 +75967,15 @@ let sha512 = "76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ=="; }; }; + "tmpl-1.0.5" = { + name = "tmpl"; + packageName = "tmpl"; + version = "1.0.5"; + src = fetchurl { + url = "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz"; + sha512 = "3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="; + }; + }; "to-absolute-glob-2.0.2" = { name = "to-absolute-glob"; packageName = "to-absolute-glob"; @@ -75526,6 +76732,15 @@ let sha512 = "Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="; }; }; + "ts-jest-29.1.0" = { + name = "ts-jest"; + packageName = "ts-jest"; + version = "29.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz"; + sha512 = "ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA=="; + }; + }; "ts-loader-6.2.2" = { name = "ts-loader"; packageName = "ts-loader"; @@ -75832,13 +77047,13 @@ let sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="; }; }; - "tuf-js-1.1.3" = { + "tuf-js-1.1.4" = { name = "tuf-js"; packageName = "tuf-js"; - version = "1.1.3"; + version = "1.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.3.tgz"; - sha512 = "jGYi5nG/kqgfTFQSdoN6PW9eIn+XRZqdXku+fSwNk6UpWIsWaV7pzAqPgFr85edOPhoyJDyBqCS+DCnHroMvrw=="; + url = "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.4.tgz"; + sha512 = "Lw2JRM3HTYhEtQJM2Th3aNCPbnXirtWMl065BawwmM2pX6XStH/ZO9e8T2hh0zk/HUa+1i6j+Lv6eDitKTau6A=="; }; }; "tumblr-0.4.1" = { @@ -76390,6 +77605,15 @@ let sha512 = "cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw=="; }; }; + "typescript-5.1.0-dev.20230421" = { + name = "typescript"; + packageName = "typescript"; + version = "5.1.0-dev.20230421"; + src = fetchurl { + url = "https://registry.npmjs.org/typescript/-/typescript-5.1.0-dev.20230421.tgz"; + sha512 = "/1iQqWMPGKPeLDDo7yRXIf7b1pisezXm0gvVI9t4UrtD6j3itaV/WzB7CNWJjhi4oElPFjkY1KzDOqqsTZD+TQ=="; + }; + }; "typescript-eslint-parser-16.0.1" = { name = "typescript-eslint-parser"; packageName = "typescript-eslint-parser"; @@ -77830,13 +79054,13 @@ let sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; }; }; - "update-browserslist-db-1.0.10" = { + "update-browserslist-db-1.0.11" = { name = "update-browserslist-db"; packageName = "update-browserslist-db"; - version = "1.0.10"; + version = "1.0.11"; src = fetchurl { - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz"; - sha512 = "OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ=="; + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz"; + sha512 = "dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA=="; }; }; "update-check-1.5.2" = { @@ -78145,13 +79369,13 @@ let sha512 = "DOE84vZT2fEcl9gqCUTcnAw5ZY5Id55ikUcziSUntuEFL3pRvavg5kwDmTEUJkeCHInTlV/HexFomgYnzO5kdQ=="; }; }; - "urlpattern-polyfill-6.0.2" = { + "urlpattern-polyfill-7.0.0" = { name = "urlpattern-polyfill"; packageName = "urlpattern-polyfill"; - version = "6.0.2"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-6.0.2.tgz"; - sha512 = "5vZjFlH9ofROmuWmXM9yj2wljYKgWstGwe8YTyiqM7hVum/g9LyCizPZtb3UqsuppVwety9QJmfc42VggLpTgg=="; + url = "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-7.0.0.tgz"; + sha512 = "fErMjbZwveQIk+EY4vxM5GKDuInBOigxmjM6WT2R/cV2ETVyFtDHeU+VmbnfuJ5sp0qNbyUBelTO/60/d+/SSQ=="; }; }; "urlsafe-base64-1.0.0" = { @@ -78406,13 +79630,13 @@ let sha512 = "g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA=="; }; }; - "util.promisify-1.1.1" = { + "util.promisify-1.1.2" = { name = "util.promisify"; packageName = "util.promisify"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.1.tgz"; - sha512 = "/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw=="; + url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.2.tgz"; + sha512 = "PBdZ03m1kBnQ5cjjO0ZvJMJS+QsbyIcFwi4hY4U76OQsCO9JrOYjbCFgIF76ccFg9xnJo7ZHPkqyj1GqmdS7MA=="; }; }; "utila-0.4.0" = { @@ -78622,6 +79846,15 @@ let sha512 = "n9Mvkk3qlv5hpQ9WHDCNn7uGR8k8kNLpVj37fS8qTPK053ZFJ34Ei9CAbDqmsk/p4AGsV/2bfDdobctC1RaZFg=="; }; }; + "v8-to-istanbul-9.1.0" = { + name = "v8-to-istanbul"; + packageName = "v8-to-istanbul"; + version = "9.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz"; + sha512 = "6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA=="; + }; + }; "v8flags-3.2.0" = { name = "v8flags"; packageName = "v8flags"; @@ -79468,13 +80701,13 @@ let sha512 = "NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA=="; }; }; - "vite-4.2.1" = { + "vite-4.3.1" = { name = "vite"; packageName = "vite"; - version = "4.2.1"; + version = "4.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/vite/-/vite-4.2.1.tgz"; - sha512 = "7MKhqdy0ISo4wnvwtqZkjke6XN4taqQ2TBaTccLIpOKv7Vp2h4Y+NpmWCnGDeSvvn45KxvWgGyb0MkHvY1vgbg=="; + url = "https://registry.npmjs.org/vite/-/vite-4.3.1.tgz"; + sha512 = "EPmfPLAI79Z/RofuMvkIS0Yr091T2ReUoXQqc5ppBX/sjFRhHKiPPF/R46cTdoci/XgeQpB23diiJxq5w30vdg=="; }; }; "vite-node-0.28.5" = { @@ -79531,13 +80764,13 @@ let sha512 = "2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="; }; }; - "vm2-3.9.16" = { + "vm2-3.9.17" = { name = "vm2"; packageName = "vm2"; - version = "3.9.16"; + version = "3.9.17"; src = fetchurl { - url = "https://registry.npmjs.org/vm2/-/vm2-3.9.16.tgz"; - sha512 = "3T9LscojNTxdOyG+e8gFeyBXkMlOBYDoF6dqZbj+MPVHi9x10UfiTAJIobuchRCp3QvC+inybTbMJIUrLsig0w=="; + url = "https://registry.npmjs.org/vm2/-/vm2-3.9.17.tgz"; + sha512 = "AqwtCnZ/ERcX+AVj9vUsphY56YANXxRuqMb7GsDtAr0m0PcQX3u0Aj3KWiXM0YAHy7i6JEeHrwOnwXbGYgRpAw=="; }; }; "voc-1.2.0" = { @@ -79927,6 +81160,15 @@ let sha512 = "N8bOS8i0xuQMn/y0bijyefDbOsMl6hiH6LDREYWavTLTM5jbj44EiQfStsbmAv/0eaFKkL/jf5hW7nWwBy2HBw=="; }; }; + "vscode-languageserver-textdocument-1.0.10" = { + name = "vscode-languageserver-textdocument"; + packageName = "vscode-languageserver-textdocument"; + version = "1.0.10"; + src = fetchurl { + url = "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.10.tgz"; + sha512 = "dPA6WqtAQJ/Iopm0Hrj11VvaKxsEcm62jpqyaYbY0xuvUffeWAn77f3VKr2SCsJphSyEw4Fjkjqm2gQ24KQfrA=="; + }; + }; "vscode-languageserver-textdocument-1.0.8" = { name = "vscode-languageserver-textdocument"; packageName = "vscode-languageserver-textdocument"; @@ -79936,15 +81178,6 @@ let sha512 = "1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q=="; }; }; - "vscode-languageserver-textdocument-1.0.9" = { - name = "vscode-languageserver-textdocument"; - packageName = "vscode-languageserver-textdocument"; - version = "1.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.9.tgz"; - sha512 = "NPfHVGFW2/fQEWHspr8x3PXhRgtFbuDZdl7p6ifuN3M7nk2Yjf5POr/NfDBuAiQG88DehDyJ7nGOT+p+edEtbw=="; - }; - }; "vscode-languageserver-types-3.14.0" = { name = "vscode-languageserver-types"; packageName = "vscode-languageserver-types"; @@ -80395,6 +81628,24 @@ let sha512 = "hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg=="; }; }; + "walk-up-path-3.0.1" = { + name = "walk-up-path"; + packageName = "walk-up-path"; + version = "3.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/walk-up-path/-/walk-up-path-3.0.1.tgz"; + sha512 = "9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA=="; + }; + }; + "walker-1.0.8" = { + name = "walker"; + packageName = "walker"; + version = "1.0.8"; + src = fetchurl { + url = "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz"; + sha512 = "ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ=="; + }; + }; "ware-1.3.0" = { name = "ware"; packageName = "ware"; @@ -80719,6 +81970,15 @@ let sha512 = "3mN4rR2Xq+INd6NnYuL9RC9GAmc1ROPKJoHhrZ4pAjdMFEkJJWrsPw8o2JjCIyQyTu7rTXYn4VG6OpyB3CobZg=="; }; }; + "webpack-5.80.0" = { + name = "webpack"; + packageName = "webpack"; + version = "5.80.0"; + src = fetchurl { + url = "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz"; + sha512 = "OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA=="; + }; + }; "webpack-bundle-analyzer-3.9.0" = { name = "webpack-bundle-analyzer"; packageName = "webpack-bundle-analyzer"; @@ -80800,13 +82060,13 @@ let sha512 = "3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA=="; }; }; - "webpack-dev-server-4.13.2" = { + "webpack-dev-server-4.13.3" = { name = "webpack-dev-server"; packageName = "webpack-dev-server"; - version = "4.13.2"; + version = "4.13.3"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz"; - sha512 = "5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw=="; + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.3.tgz"; + sha512 = "KqqzrzMRSRy5ePz10VhjyL27K2dxqwXQLP5rAKwRJBPUahe7Z2bBWzHw37jeb8GCPKxZRO79ZdQUAPesMh/Nug=="; }; }; "webpack-flush-chunks-2.0.3" = { @@ -81169,13 +82429,13 @@ let sha512 = "F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ=="; }; }; - "which-module-2.0.0" = { + "which-module-2.0.1" = { name = "which-module"; packageName = "which-module"; - version = "2.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; - sha512 = "B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q=="; + url = "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz"; + sha512 = "iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ=="; }; }; "which-pm-2.0.0" = { @@ -83367,10 +84627,10 @@ in sources."@sigstore/protobuf-specs-0.1.0" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" - (sources."@tufjs/models-1.0.2" // { + (sources."@tufjs/models-1.0.3" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-8.0.4" + sources."minimatch-7.4.6" ]; }) sources."@yarnpkg/lockfile-1.1.0" @@ -83566,7 +84826,7 @@ in sources."npm-pick-manifest-8.0.1" (sources."npm-registry-fetch-14.0.4" // { dependencies = [ - sources."make-fetch-happen-11.0.3" + sources."make-fetch-happen-11.1.0" sources."minipass-fetch-3.0.2" ]; }) @@ -83580,9 +84840,9 @@ in sources."pacote-15.1.0" sources."path-is-absolute-1.0.1" sources."path-parse-1.0.7" - (sources."path-scurry-1.6.4" // { + (sources."path-scurry-1.7.0" // { dependencies = [ - sources."lru-cache-9.0.2" + sources."lru-cache-9.1.0" sources."minipass-5.0.0" ]; }) @@ -83618,9 +84878,9 @@ in }) sources."set-blocking-2.0.0" sources."signal-exit-3.0.7" - (sources."sigstore-1.2.0" // { + (sources."sigstore-1.3.2" // { dependencies = [ - sources."make-fetch-happen-11.0.3" + sources."make-fetch-happen-11.1.0" sources."minipass-fetch-3.0.2" ]; }) @@ -83652,9 +84912,9 @@ in sources."tmp-0.0.33" sources."to-regex-range-5.0.1" sources."tslib-1.14.1" - (sources."tuf-js-1.1.3" // { + (sources."tuf-js-1.1.4" // { dependencies = [ - sources."make-fetch-happen-11.0.3" + sources."make-fetch-happen-11.1.0" sources."minipass-fetch-3.0.2" ]; }) @@ -83724,7 +84984,7 @@ in sources."base64-js-1.5.1" sources."brace-expansion-2.0.1" sources."buffer-6.0.3" - sources."colorette-2.0.19" + sources."colorette-2.0.20" sources."commander-9.4.1" sources."convict-6.2.4" sources."dateformat-4.6.3" @@ -83835,7 +85095,7 @@ in sources."readable-stream-2.3.8" ]; }) - sources."colorette-2.0.19" + sources."colorette-2.0.20" sources."concat-map-0.0.1" sources."convert-source-map-1.9.0" sources."convict-6.2.4" @@ -84084,7 +85344,7 @@ in sources."vscode-jsonrpc-8.1.0" sources."vscode-languageserver-8.1.0" sources."vscode-languageserver-protocol-3.17.3" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" sources."vscode-uri-3.0.7" sources."which-2.0.2" @@ -84155,7 +85415,7 @@ in (sources."@mapbox/node-pre-gyp-1.0.10" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yallist-4.0.0" ]; }) @@ -84198,7 +85458,7 @@ in sources."bytes-3.1.2" sources."cache-content-type-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."canvas-2.11.2" (sources."chalk-4.1.2" // { dependencies = [ @@ -84268,7 +85528,7 @@ in ]; }) sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -84495,7 +85755,7 @@ in sources."typedarray-0.0.6" sources."universalify-0.2.0" sources."unpipe-1.0.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."url-parse-1.5.10" sources."utf-8-validate-5.0.10" sources."util-deprecate-1.0.2" @@ -84530,10 +85790,10 @@ in "@commitlint/cli" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_cli"; packageName = "@commitlint/cli"; - version = "17.6.0"; + version = "17.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.6.0.tgz"; - sha512 = "JaZeZ1p6kfkSiZlDoQjK09AuiI9zYQMiIUJzTOM8qNRHFOXOPmiTM56nI67yzeUSNTFu6M/DRqjmdjtA5q3hEg=="; + url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.6.1.tgz"; + sha512 = "kCnDD9LE2ySiTnj/VPaxy4/oRayRcdv4aCuVxtoum8SxIU7OADHc0nJPQfheE8bHcs3zZdWzDMWltRosuT13bg=="; }; dependencies = [ sources."@babel/code-frame-7.21.4" @@ -84553,13 +85813,13 @@ in sources."@commitlint/execute-rule-17.4.0" sources."@commitlint/format-17.4.4" sources."@commitlint/is-ignored-17.4.4" - sources."@commitlint/lint-17.6.0" + sources."@commitlint/lint-17.6.1" sources."@commitlint/load-17.5.0" sources."@commitlint/message-17.4.2" sources."@commitlint/parse-17.4.4" sources."@commitlint/read-17.5.1" sources."@commitlint/resolve-extends-17.4.4" - sources."@commitlint/rules-17.6.0" + sources."@commitlint/rules-17.6.1" sources."@commitlint/to-lines-17.4.0" (sources."@commitlint/top-level-17.4.0" // { dependencies = [ @@ -84574,25 +85834,25 @@ in sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" sources."@types/minimist-1.2.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/normalize-package-data-2.4.1" sources."JSONStream-1.3.5" sources."acorn-8.8.2" @@ -84723,7 +85983,7 @@ in sources."redent-3.0.0" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-5.0.0" sources."resolve-global-1.0.0" sources."safe-buffer-5.2.1" @@ -84782,10 +86042,10 @@ in "@commitlint/config-conventional" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_config-conventional"; packageName = "@commitlint/config-conventional"; - version = "17.6.0"; + version = "17.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.6.0.tgz"; - sha512 = "2Y9M7MN942bTK5h70fJGknhXA02+OtWCkKeIzTSwsdwz1V7y6bxYv24x052E9XHKtZHJfvM3iLuTOsjRvLqWtA=="; + url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.6.1.tgz"; + sha512 = "ng/ybaSLuTCH9F+7uavSOnEQ9EFMl7lHEjfAEgRh1hwmEe8SpLKpQeMo2aT1IWvHaGMuTb+gjfbzoRf2IR23NQ=="; }; dependencies = [ sources."array-ify-1.0.0" @@ -84941,24 +86201,24 @@ in sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@polka/url-1.0.0-next.21" - (sources."@sentry-internal/tracing-7.47.0" // { + (sources."@sentry-internal/tracing-7.49.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/core-7.47.0" // { + (sources."@sentry/core-7.49.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/node-7.47.0" // { + (sources."@sentry/node-7.49.0" // { dependencies = [ sources."cookie-0.4.2" sources."tslib-1.14.1" ]; }) - sources."@sentry/types-7.47.0" - (sources."@sentry/utils-7.47.0" // { + sources."@sentry/types-7.49.0" + (sources."@sentry/utils-7.49.0" // { dependencies = [ sources."tslib-1.14.1" ]; @@ -84981,7 +86241,7 @@ in sources."@types/json-schema-7.0.11" sources."@types/keyv-3.1.4" sources."@types/mime-3.0.1" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/node-fetch-2.6.3" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -84992,15 +86252,15 @@ in sources."@types/sockjs-0.3.33" sources."@types/ws-8.5.4" sources."@types/yauzl-2.10.0" - sources."@typescript-eslint/types-5.58.0" - (sources."@typescript-eslint/typescript-estree-5.58.0" // { + sources."@typescript-eslint/types-5.59.0" + (sources."@typescript-eslint/typescript-estree-5.59.0" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yallist-4.0.0" ]; }) - sources."@typescript-eslint/visitor-keys-5.58.0" + sources."@typescript-eslint/visitor-keys-5.59.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -85134,7 +86394,7 @@ in sources."call-bind-1.0.2" sources."call-me-maybe-1.0.2" sources."camel-case-4.1.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."case-1.6.3" sources."chai-4.3.7" sources."chainsaw-0.1.0" @@ -85182,7 +86442,7 @@ in }) sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."colorette-2.0.19" + sources."colorette-2.0.20" sources."combined-stream-1.0.8" sources."command-exists-1.2.9" sources."commander-7.2.0" @@ -85249,7 +86509,7 @@ in }) sources."dir-glob-3.0.1" sources."dns-equal-1.0.0" - sources."dns-packet-5.5.0" + sources."dns-packet-5.6.0" sources."dom-converter-0.2.0" sources."dom-serializer-1.4.1" sources."domelementtype-2.3.0" @@ -85269,7 +86529,7 @@ in }) sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -85285,7 +86545,7 @@ in ]; }) sources."end-of-stream-1.4.4" - sources."enhanced-resolve-5.12.0" + sources."enhanced-resolve-5.13.0" sources."entities-2.2.0" sources."env-paths-2.2.1" sources."envinfo-7.8.1" @@ -85362,7 +86622,7 @@ in sources."for-each-0.3.3" sources."form-data-3.0.1" sources."forwarded-0.2.0" - sources."fp-ts-2.13.1" + sources."fp-ts-2.14.0" sources."fresh-0.5.2" sources."fs-constants-1.0.0" sources."fs-extra-8.1.0" @@ -85438,7 +86698,7 @@ in sources."commander-8.3.0" ]; }) - sources."html-webpack-plugin-5.5.0" + sources."html-webpack-plugin-5.5.1" sources."htmlparser2-6.1.0" sources."http-cache-semantics-4.1.1" sources."http-deceiver-1.2.7" @@ -85586,7 +86846,7 @@ in sources."make-dir-3.1.0" sources."md5.js-1.3.5" sources."media-typer-0.3.0" - sources."memfs-3.5.0" + sources."memfs-3.5.1" sources."memoizee-0.4.15" sources."merge-descriptors-1.0.1" sources."merge-stream-2.0.0" @@ -85639,10 +86899,10 @@ in sources."semver-5.7.1" ]; }) - (sources."node-abi-3.35.0" // { + (sources."node-abi-3.40.0" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yallist-4.0.0" ]; }) @@ -85804,7 +87064,7 @@ in sources."readdirp-3.6.0" sources."rechoir-0.7.1" sources."recursive-readdir-2.2.3" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" sources."relateurl-0.2.7" @@ -85812,7 +87072,7 @@ in sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."requires-port-1.0.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-alpn-1.2.1" sources."resolve-cwd-3.0.0" sources."resolve-from-5.0.0" @@ -85902,14 +87162,14 @@ in ]; }) sources."terminal-link-2.1.1" - (sources."terser-5.16.9" // { + (sources."terser-5.17.1" // { dependencies = [ sources."commander-2.20.3" ]; }) (sources."terser-webpack-plugin-5.3.7" // { dependencies = [ - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" ]; }) sources."text-encoder-lite-2.0.0" @@ -85942,7 +87202,7 @@ in dependencies = [ sources."chalk-4.1.2" sources."lru-cache-6.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yallist-4.0.0" ]; }) @@ -85976,7 +87236,7 @@ in sources."string_decoder-1.1.1" ]; }) - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" (sources."uri-js-4.4.1" // { dependencies = [ sources."punycode-2.3.0" @@ -86008,7 +87268,7 @@ in sources."webidl-conversions-4.0.2" (sources."webpack-5.78.0" // { dependencies = [ - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" ]; }) (sources."webpack-bundle-analyzer-4.8.0" // { @@ -86022,10 +87282,10 @@ in sources."ajv-8.12.0" sources."ajv-keywords-5.1.0" sources."fast-deep-equal-3.1.3" - sources."schema-utils-4.0.0" + sources."schema-utils-4.0.1" ]; }) - (sources."webpack-dev-server-4.13.2" // { + (sources."webpack-dev-server-4.13.3" // { dependencies = [ sources."ajv-8.12.0" sources."ajv-keywords-5.1.0" @@ -86034,7 +87294,7 @@ in sources."http-proxy-middleware-2.0.6" sources."ipaddr.js-2.0.1" sources."rimraf-3.0.2" - sources."schema-utils-4.0.0" + sources."schema-utils-4.0.1" sources."ws-8.13.0" ]; }) @@ -86097,7 +87357,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/minimatch-3.0.5" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/normalize-package-data-2.4.1" sources."@types/responselike-1.0.0" sources."abort-controller-3.0.0" @@ -86263,7 +87523,7 @@ in sources."normalize-newline-4.1.0" (sources."normalize-package-data-3.0.3" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."normalize-path-3.0.0" @@ -86447,7 +87707,7 @@ in sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" sources."@types/minimatch-5.1.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/tough-cookie-2.3.8" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" @@ -87105,7 +88365,7 @@ in sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" sources."requizzle-0.2.4" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-url-0.2.1" sources."restore-cursor-2.0.0" sources."ret-0.1.15" @@ -87303,7 +88563,7 @@ in }) sources."whatwg-url-5.0.0" sources."which-1.3.1" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."which-pm-runs-1.1.0" sources."wide-align-1.1.5" sources."word-wrap-1.2.3" @@ -87337,10 +88597,10 @@ in "@microsoft/rush" = nodeEnv.buildNodePackage { name = "_at_microsoft_slash_rush"; packageName = "@microsoft/rush"; - version = "5.97.0"; + version = "5.97.1"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.97.0.tgz"; - sha512 = "5hJ4IGizzYdiQSkrTdIZy7pRsu1KXkIU4FptGoRZ+jzLJhH1a4JoPLjMCPcT3g+4WoZiiOEhps6ik4Q7jUvamQ=="; + url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.97.1.tgz"; + sha512 = "aqrUtJggMKWQ+HW/e5u2kjuxY3biNIGHJvNC3FsqjGB5Z+zYsGXQcduc28B4zrYEh2GQaHXIHExim+Qkd4cnVA=="; }; dependencies = [ (sources."@azure/abort-controller-1.1.0" // { @@ -87358,7 +88618,7 @@ in sources."tslib-2.5.0" ]; }) - (sources."@azure/core-http-2.3.1" // { + (sources."@azure/core-http-2.3.2" // { dependencies = [ sources."@azure/core-tracing-1.0.0-preview.13" sources."form-data-4.0.0" @@ -87386,7 +88646,7 @@ in sources."tslib-2.5.0" ]; }) - (sources."@azure/core-util-1.3.0" // { + (sources."@azure/core-util-1.3.1" // { dependencies = [ sources."tslib-2.5.0" ]; @@ -87401,15 +88661,15 @@ in sources."tslib-2.5.0" ]; }) - (sources."@azure/msal-browser-2.35.0" // { + (sources."@azure/msal-browser-2.36.0" // { dependencies = [ - sources."@azure/msal-common-12.0.0" + sources."@azure/msal-common-12.1.0" ]; }) sources."@azure/msal-common-7.6.0" - (sources."@azure/msal-node-1.17.0" // { + (sources."@azure/msal-node-1.17.1" // { dependencies = [ - sources."@azure/msal-common-12.0.0" + sources."@azure/msal-common-12.1.0" ]; }) (sources."@azure/storage-blob-12.11.0" // { @@ -87449,7 +88709,7 @@ in sources."@jridgewell/sourcemap-codec-1.4.14" ]; }) - sources."@microsoft/rush-lib-5.97.0" + sources."@microsoft/rush-lib-5.97.1" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -87479,9 +88739,9 @@ in sources."strip-json-comments-3.1.1" ]; }) - sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.97.0" - sources."@rushstack/rush-azure-storage-build-cache-plugin-5.97.0" - sources."@rushstack/rush-sdk-5.97.0" + sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.97.1" + sources."@rushstack/rush-azure-storage-build-cache-plugin-5.97.1" + sources."@rushstack/rush-sdk-5.97.1" sources."@rushstack/stream-collator-4.0.229" sources."@rushstack/terminal-0.5.4" (sources."@rushstack/ts-command-line-4.13.2" // { @@ -87493,10 +88753,10 @@ in sources."@szmarczak/http-timer-1.1.2" sources."@tootallnate/once-2.0.0" sources."@types/argparse-1.0.38" - sources."@types/lodash-4.14.192" + sources."@types/lodash-4.14.194" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/node-fetch-2.6.2" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" @@ -87590,7 +88850,7 @@ in sources."color-name-1.1.3" sources."colors-1.2.5" sources."combined-stream-1.0.8" - sources."commander-10.0.0" + sources."commander-10.0.1" sources."concat-map-0.0.1" sources."configstore-5.0.1" sources."core-util-is-1.0.3" @@ -87935,7 +89195,7 @@ in ]; }) sources."please-upgrade-node-3.2.0" - sources."postcss-8.4.21" + sources."postcss-8.4.23" (sources."preferred-pm-3.0.3" // { dependencies = [ sources."find-up-5.0.0" @@ -87998,7 +89258,7 @@ in sources."require-from-string-2.0.2" sources."require-package-name-2.0.1" sources."requires-port-1.0.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-4.0.0" sources."responselike-1.0.2" sources."restore-cursor-3.1.0" @@ -88111,7 +89371,7 @@ in ]; }) sources."xdg-basedir-4.0.0" - sources."xml2js-0.4.23" + sources."xml2js-0.5.0" sources."xmlbuilder-11.0.1" sources."xtend-4.0.2" sources."y18n-5.0.8" @@ -88248,10 +89508,10 @@ in "@nestjs/cli" = nodeEnv.buildNodePackage { name = "_at_nestjs_slash_cli"; packageName = "@nestjs/cli"; - version = "9.4.0"; + version = "9.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@nestjs/cli/-/cli-9.4.0.tgz"; - sha512 = "mATM41qS/YYzYbpAeyWnrhtfmIevmlBvvppP5h0i1w0uRWewRbtOZ+Ow8MmcvrfdnYGHMjLmhMjReV77YXBa8w=="; + url = "https://registry.npmjs.org/@nestjs/cli/-/cli-9.4.1.tgz"; + sha512 = "m58dYogFRjFqxe0/U6J9J877z/9opdtrRlxrjcsv1mEO9ZlQ07hEuub9um1Vleu+i6iG11lW+G464kn85rUsNw=="; }; dependencies = [ sources."@angular-devkit/core-15.2.6" @@ -88294,9 +89554,9 @@ in }) sources."@types/eslint-8.37.0" sources."@types/eslint-scope-3.7.4" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.11" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/parse-json-4.0.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" @@ -88340,7 +89600,7 @@ in sources."buffer-5.7.1" sources."buffer-from-1.1.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chalk-4.1.2" sources."chardet-0.7.0" sources."chokidar-3.5.3" @@ -88358,10 +89618,10 @@ in sources."cross-spawn-7.0.3" sources."deepmerge-4.3.1" sources."defaults-1.0.4" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" - sources."enhanced-resolve-5.12.0" + sources."enhanced-resolve-5.13.0" sources."error-ex-1.3.2" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" @@ -88440,7 +89700,7 @@ in sources."lru-cache-6.0.0" sources."macos-release-2.5.1" sources."magic-string-0.29.0" - sources."memfs-3.5.0" + sources."memfs-3.5.1" sources."merge-stream-2.0.0" sources."mime-db-1.52.0" sources."mime-types-2.1.35" @@ -88465,9 +89725,9 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" - (sources."path-scurry-1.6.4" // { + (sources."path-scurry-1.7.0" // { dependencies = [ - sources."lru-cache-9.0.2" + sources."lru-cache-9.1.0" sources."minipass-5.0.0" ]; }) @@ -88482,7 +89742,7 @@ in sources."readdirp-3.6.0" sources."rechoir-0.6.2" sources."require-from-string-2.0.2" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-4.0.0" sources."restore-cursor-3.1.0" sources."rimraf-4.4.1" @@ -88490,13 +89750,13 @@ in sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."schema-utils-3.1.1" // { + (sources."schema-utils-3.1.2" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" ]; }) - sources."semver-7.4.0" + sources."semver-7.5.0" sources."serialize-javascript-6.0.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -88521,7 +89781,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" sources."symbol-observable-4.0.0" sources."tapable-2.2.1" - (sources."terser-5.16.9" // { + (sources."terser-5.17.1" // { dependencies = [ sources."commander-2.20.3" ]; @@ -88537,7 +89797,7 @@ in sources."type-fest-0.21.3" sources."typescript-4.9.5" sources."universalify-2.0.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."watchpack-2.4.0" @@ -88637,24 +89897,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -88717,7 +89977,7 @@ in sources."picomatch-2.3.1" sources."pify-2.3.0" sources."pirates-4.0.5" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-import-14.1.0" sources."postcss-js-4.0.1" sources."postcss-load-config-3.1.4" @@ -88728,7 +89988,7 @@ in sources."quick-lru-5.1.1" sources."read-cache-1.0.0" sources."readdirp-3.6.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" @@ -88780,24 +90040,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -88861,7 +90121,7 @@ in sources."picomatch-2.3.1" sources."pify-2.3.0" sources."pirates-4.0.5" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-import-14.1.0" sources."postcss-js-4.0.1" sources."postcss-load-config-3.1.4" @@ -88872,7 +90132,7 @@ in sources."quick-lru-5.1.1" sources."read-cache-1.0.0" sources."readdirp-3.6.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" @@ -88942,24 +90202,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -89022,7 +90282,7 @@ in sources."picomatch-2.3.1" sources."pify-2.3.0" sources."pirates-4.0.5" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-import-14.1.0" sources."postcss-js-4.0.1" sources."postcss-load-config-3.1.4" @@ -89033,7 +90293,7 @@ in sources."quick-lru-5.1.1" sources."read-cache-1.0.0" sources."readdirp-3.6.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" @@ -89085,24 +90345,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -89168,7 +90428,7 @@ in sources."picomatch-2.3.1" sources."pify-2.3.0" sources."pirates-4.0.5" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-import-14.1.0" sources."postcss-js-4.0.1" sources."postcss-load-config-3.1.4" @@ -89179,7 +90439,7 @@ in sources."quick-lru-5.1.1" sources."read-cache-1.0.0" sources."readdirp-3.6.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" @@ -89220,10 +90480,10 @@ in "@uppy/companion" = nodeEnv.buildNodePackage { name = "_at_uppy_slash_companion"; packageName = "@uppy/companion"; - version = "4.4.0"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@uppy/companion/-/companion-4.4.0.tgz"; - sha512 = "7bCAhfzGrY2S8GORG8csroO4gUJ5KrhHJltXwQGvLmEBYy0/wu8qfY/t2honCzV7gucmFzemD6ECfHxK0WZvdQ=="; + url = "https://registry.npmjs.org/@uppy/companion/-/companion-4.5.0.tgz"; + sha512 = "LU9Q4aIxxYSWrcbpB2Vr87uF24T5Og8jfKmVTa3Ed11p0qLnkx2WSIF7CPOPMYAsmuOhbrgzpVOeSAAEVbWW+A=="; }; dependencies = [ sources."@redis/bloom-1.0.2" @@ -89237,7 +90497,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/responselike-1.0.0" sources."accepts-1.3.8" sources."ansi-styles-4.3.0" @@ -89246,7 +90506,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1358.0" + sources."aws-sdk-2.1362.0" sources."base64-js-1.5.1" (sources."basic-auth-2.0.1" // { dependencies = [ @@ -89731,7 +90991,7 @@ in }) sources."@types/long-4.0.2" sources."@types/mime-3.0.1" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/normalize-package-data-2.4.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -89840,7 +91100,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -89950,7 +91210,7 @@ in sources."easy-stack-1.0.1" sources."ee-first-1.1.1" sources."ejs-3.1.9" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -90061,7 +91321,7 @@ in sources."which-2.0.2" ]; }) - sources."flow-parser-0.203.1" + sources."flow-parser-0.204.0" sources."for-in-1.0.2" sources."forwarded-0.2.0" sources."fragment-cache-0.2.1" @@ -90342,7 +91602,7 @@ in ]; }) sources."posix-character-classes-0.1.1" - (sources."postcss-8.4.21" // { + (sources."postcss-8.4.23" // { dependencies = [ sources."nanoid-3.3.6" ]; @@ -90386,7 +91646,7 @@ in sources."repeat-element-1.1.4" sources."repeat-string-1.6.1" sources."require-directory-2.1.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-url-0.2.1" sources."responselike-1.0.2" sources."restore-cursor-3.1.0" @@ -90407,7 +91667,7 @@ in sources."commander-2.20.3" ]; }) - sources."semver-7.4.0" + sources."semver-7.5.0" (sources."send-0.18.0" // { dependencies = [ (sources."debug-2.6.9" // { @@ -90575,7 +91835,7 @@ in sources."has-values-0.1.4" ]; }) - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."urix-0.1.0" sources."url-parse-lax-3.0.0" sources."url-to-options-1.0.1" @@ -90854,7 +92114,7 @@ in sources."@babel/code-frame-7.21.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@npmcli/config-6.1.5" + sources."@npmcli/config-6.1.6" (sources."@npmcli/map-workspaces-3.0.3" // { dependencies = [ (sources."glob-9.3.5" // { @@ -90878,7 +92138,7 @@ in sources."@types/acorn-4.0.6" sources."@types/concat-stream-2.0.0" sources."@types/debug-4.1.7" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/estree-jsx-1.0.0" sources."@types/hast-2.3.4" sources."@types/http-cache-semantics-4.0.1" @@ -90887,7 +92147,7 @@ in sources."@types/minimist-1.2.2" sources."@types/ms-0.7.31" sources."@types/nlcst-1.0.0" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/normalize-package-data-2.4.1" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" @@ -91029,7 +92289,7 @@ in sources."indent-string-5.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-3.0.1" + sources."ini-4.1.0" sources."is-alphabetical-2.0.1" sources."is-alphanumerical-2.0.1" sources."is-arrayish-0.2.1" @@ -91161,9 +92421,9 @@ in }) sources."parse5-6.0.1" sources."path-exists-5.0.0" - (sources."path-scurry-1.6.4" // { + (sources."path-scurry-1.7.0" // { dependencies = [ - sources."lru-cache-9.0.2" + sources."lru-cache-9.1.0" sources."minipass-5.0.0" ]; }) @@ -91220,7 +92480,7 @@ in sources."retext-profanities-7.2.2" sources."sade-1.8.1" sources."safe-buffer-5.2.1" - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -91327,7 +92587,7 @@ in }) sources."vfile-sort-3.0.1" sources."vfile-statistics-2.0.1" - sources."walk-up-path-1.0.0" + sources."walk-up-path-3.0.1" sources."web-namespaces-2.0.1" sources."widest-line-4.0.1" (sources."wrap-ansi-8.1.0" // { @@ -91405,7 +92665,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."browserslist-4.21.5" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -91415,7 +92675,7 @@ in sources."convert-source-map-1.9.0" sources."debug-4.3.4" sources."ejs-3.1.6" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -91486,7 +92746,7 @@ in sources."path-parse-1.0.7" sources."picocolors-1.0.0" sources."pkginfo-0.4.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."sax-0.5.8" sources."semver-6.3.0" sources."source-map-0.7.4" @@ -91496,7 +92756,7 @@ in sources."to-fast-properties-2.0.0" sources."underscore-1.6.0" sources."universalify-0.1.2" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."walk-sync-0.3.4" sources."which-1.3.1" sources."xml2js-0.2.8" @@ -91718,7 +92978,7 @@ in dependencies = [ sources."@types/glob-7.2.0" sources."@types/minimatch-5.1.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."chromium-pickle-js-0.2.0" @@ -91803,18 +93063,18 @@ in }; dependencies = [ sources."browserslist-4.21.5" - sources."caniuse-lite-1.0.30001478" - sources."electron-to-chromium-1.4.361" + sources."caniuse-lite-1.0.30001481" + sources."electron-to-chromium-1.4.368" sources."escalade-3.1.1" sources."fraction.js-4.2.0" sources."nanoid-3.3.6" sources."node-releases-2.0.10" sources."normalize-range-0.1.2" sources."picocolors-1.0.0" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-value-parser-4.2.0" sources."source-map-js-1.0.2" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" ]; buildInputs = globalBuildInputs; meta = { @@ -91845,7 +93105,7 @@ in sources."node-fetch-2.6.9" sources."parse-github-url-1.0.2" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."source-map-0.6.1" sources."tr46-0.0.3" sources."uglify-js-3.17.4" @@ -91874,7 +93134,7 @@ in }; dependencies = [ sources."@tootallnate/once-1.1.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/yauzl-2.10.0" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" @@ -91884,7 +93144,7 @@ in sources."ansi-styles-4.3.0" sources."ast-types-0.13.4" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1358.0" // { + (sources."aws-sdk-2.1362.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -92080,7 +93340,7 @@ in sources."util-0.12.5" sources."util-deprecate-1.0.2" sources."uuid-8.3.2" - sources."vm2-3.9.16" + sources."vm2-3.9.17" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -92108,10 +93368,10 @@ in aws-cdk = nodeEnv.buildNodePackage { name = "aws-cdk"; packageName = "aws-cdk"; - version = "2.74.0"; + version = "2.76.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.74.0.tgz"; - sha512 = "pc6QO9uR7Ii0qQ74nujskkFqPCGoWTTMyt03CFaGW0CwxMfpduGC0+bvlLBbJISAe5ZGuRuYIIxxDMkNi3AIcw=="; + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.76.0.tgz"; + sha512 = "y6VHtqUpYenn6mGIBFbcGGXIoXfKA3o0eGL/eeD/gUJ9TcPrgMLQM1NxSMb5JVsOk5BPPXzGmvB0gBu40utGqg=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -92153,7 +93413,7 @@ in sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/eslint-7.29.0" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.11" sources."@types/mdast-3.0.11" sources."@types/minimist-1.2.2" @@ -92322,7 +93582,7 @@ in sources."nice-try-1.0.5" (sources."normalize-package-data-3.0.3" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."normalize-url-4.5.1" @@ -92428,7 +93688,7 @@ in sources."remark-parse-9.0.0" sources."remark-stringify-9.0.1" sources."repeat-string-1.6.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."responselike-1.0.2" sources."restore-cursor-3.1.0" sources."reusify-1.0.4" @@ -92547,10 +93807,10 @@ in balanceofsatoshis = nodeEnv.buildNodePackage { name = "balanceofsatoshis"; packageName = "balanceofsatoshis"; - version = "13.31.6"; + version = "14.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-13.31.6.tgz"; - sha512 = "GsagKpq9gTHj9gjpuGD3Smbr2Ikx+tADrKXZ9YGdhcwj2rczVW+VHNeQHVJdpS6nKcm244hcKX8oHn5HxAzgjw=="; + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-14.0.0.tgz"; + sha512 = "8UdUTBeUuroODrU9+Rd1WW/2G+bDO4YeNAB8snBEElJAh60h5Rw8kax9tCPM0Sn/MjxhSm1loG3SDrd9RH2D7w=="; }; dependencies = [ (sources."@alexbosworth/caporal-1.4.4" // { @@ -92602,7 +93862,7 @@ in sources."@types/express-serve-static-core-4.17.33" sources."@types/long-4.0.2" sources."@types/mime-3.0.1" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/request-2.48.8" @@ -92679,7 +93939,7 @@ in sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."color-string-1.9.1" - sources."colorette-2.0.19" + sources."colorette-2.0.20" sources."colors-1.4.0" sources."colorspace-1.1.4" sources."combined-stream-1.0.8" @@ -92696,7 +93956,7 @@ in sources."cors-2.8.5" sources."create-hash-1.2.0" sources."crypto-js-4.1.1" - sources."csv-parse-5.3.6" + sources."csv-parse-5.3.8" sources."debug-2.6.9" sources."defaults-1.0.4" sources."define-property-1.0.0" @@ -92774,7 +94034,7 @@ in sources."ieee754-1.2.1" sources."import-lazy-4.0.0" sources."inherits-2.0.4" - sources."ini-4.0.0" + sources."ini-4.1.0" (sources."inquirer-9.1.5" // { dependencies = [ sources."ansi-escapes-6.1.0" @@ -92832,6 +94092,7 @@ in sources."@types/express-4.17.15" sources."@types/node-18.11.18" sources."body-parser-1.20.1" + sources."colorette-2.0.19" sources."goldengate-12.0.2" (sources."lightning-7.0.3" // { dependencies = [ @@ -92846,14 +94107,17 @@ in sources."ws-8.11.0" ]; }) - (sources."ln-service-54.10.7" // { + (sources."ln-service-55.0.0" // { dependencies = [ - sources."lightning-7.1.9" + sources."@grpc/grpc-js-1.8.14" + sources."@types/node-18.15.11" + sources."lightning-8.0.0" sources."type-fest-3.8.0" ]; }) (sources."ln-sync-4.3.2" // { dependencies = [ + sources."colorette-2.0.19" sources."ln-service-54.10.5" ]; }) @@ -92865,6 +94129,7 @@ in sources."@types/express-4.17.15" sources."@types/node-18.11.18" sources."body-parser-1.20.1" + sources."colorette-2.0.19" sources."debug-4.3.4" (sources."goldengate-12.0.2" // { dependencies = [ @@ -92984,7 +94249,7 @@ in sources."process-nextick-args-2.0.1" (sources."protobufjs-7.2.3" // { dependencies = [ - sources."long-5.2.1" + sources."long-5.2.3" ]; }) sources."proxy-addr-2.0.7" @@ -93303,7 +94568,7 @@ in sources."read-pkg-up-1.0.1" sources."redent-1.0.0" sources."repeating-2.0.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" (sources."rimraf-2.7.1" // { dependencies = [ sources."glob-7.2.3" @@ -93500,7 +94765,7 @@ in sources."string_decoder-1.1.1" ]; }) - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."ripemd160-2.0.2" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" @@ -93566,7 +94831,7 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -93901,7 +95166,7 @@ in sources."denque-1.5.1" sources."depd-2.0.0" sources."destroy-1.2.0" - sources."dijkstrajs-1.0.2" + sources."dijkstrajs-1.0.3" sources."doctypes-1.1.0" sources."dotenv-10.0.0" sources."dtrace-provider-0.8.8" @@ -94121,14 +95386,14 @@ in }) sources."require-directory-2.1.1" sources."require-main-filename-2.0.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."rimraf-2.4.5" sources."ripemd160-2.0.2" sources."rndm-1.2.0" sources."safe-buffer-5.1.2" sources."safe-json-stringify-1.2.0" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" (sources."send-0.18.0" // { dependencies = [ (sources."debug-2.6.9" // { @@ -94193,7 +95458,7 @@ in sources."vary-1.1.2" sources."verror-1.10.0" sources."void-elements-3.1.0" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."wif-2.0.6" sources."with-7.0.2" (sources."wrap-ansi-6.2.0" // { @@ -94243,7 +95508,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.2.16" sources."ajv-6.12.6" @@ -94305,7 +95570,7 @@ in sources."co-3.1.0" sources."codepage-1.4.0" sources."combined-stream-1.0.8" - sources."commander-10.0.0" + sources."commander-10.0.1" sources."compact2string-1.4.1" sources."concat-map-0.0.1" (sources."concat-stream-2.0.0" // { @@ -94531,7 +95796,7 @@ in sources."redent-1.0.0" sources."repeating-2.0.1" sources."request-2.88.2" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."rimraf-2.7.1" sources."router-0.6.2" sources."run-parallel-1.2.0" @@ -95073,7 +96338,7 @@ in sources."registry-url-3.1.0" sources."repeat-element-1.1.4" sources."repeat-string-1.6.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-url-0.2.1" sources."restore-cursor-2.0.0" sources."ret-0.1.15" @@ -95313,7 +96578,7 @@ in sources."strip-ansi-4.0.0" sources."strip-eof-1.0.0" sources."which-1.3.1" - sources."which-module-2.0.0" + sources."which-module-2.0.1" (sources."wrap-ansi-2.1.0" // { dependencies = [ sources."ansi-regex-2.1.1" @@ -95339,10 +96604,10 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.2.12"; + version = "2.2.15"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.2.12.tgz"; - sha512 = "Yn8e1uc4Kq0df81ESgMV4cgxZMHmjhkr2fWHJriKNOyAxL3VVvUyTdhnbcWqSFrQGoDo5v8xcr4ynZ7dArxIxA=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.2.15.tgz"; + sha512 = "R2jVhHxgSUqjX85QK3uhmxxBjWMZV9Jgf78LYMUuPqyLMkzBWlkSwN8TmgvJmPWCcjg7TAySq3xs3UCHFEOhDg=="; }; dependencies = [ sources."@colors/colors-1.5.0" @@ -95398,8 +96663,8 @@ in sources."buffer-5.7.1" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-2.7.55" - sources."cdk8s-plus-25-2.7.0" + sources."cdk8s-2.7.56" + sources."cdk8s-plus-25-2.7.4" sources."chalk-4.1.2" sources."chardet-0.7.0" sources."clean-stack-2.2.0" @@ -95427,7 +96692,7 @@ in sources."combined-stream-1.0.8" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.1.309" + sources."constructs-10.2.2" sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-5.0.1" @@ -95527,7 +96792,7 @@ in sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.881" // { + (sources."jsii-srcmak-0.1.889" // { dependencies = [ sources."fs-extra-9.1.0" ]; @@ -95594,7 +96859,7 @@ in sources."safe-json-stringify-1.2.0" sources."safe-stable-stringify-2.4.3" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" (sources."semver-intersect-1.4.0" // { dependencies = [ sources."semver-5.7.1" @@ -95639,7 +96904,7 @@ in sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."winston-3.8.2" sources."winston-transport-4.5.0" sources."workerpool-6.4.0" @@ -95675,140 +96940,323 @@ in cdktf-cli = nodeEnv.buildNodePackage { name = "cdktf-cli"; packageName = "cdktf-cli"; - version = "0.15.5"; + version = "0.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.15.5.tgz"; - sha512 = "FofWVVT/2oANEvtk91yWSlgelxJWQfXglvVBRgN1AJHTArQf54slJAROsk4m74cAF5Da8IizG5HiSuSHpjKvuA=="; + url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.16.0.tgz"; + sha512 = "PVV57yl47875GvKkoX1K68VGOQ/2n9tavxmqtW5Vp5d1rauCj8FJNJvOxJoecsi4Q020U0HMh760fsH6YuA8Ag=="; }; dependencies = [ + sources."@ampproject/remapping-2.2.1" sources."@babel/code-frame-7.21.4" + sources."@babel/compat-data-7.21.4" + (sources."@babel/core-7.21.4" // { + dependencies = [ + sources."semver-6.3.0" + ]; + }) sources."@babel/generator-7.21.4" + (sources."@babel/helper-compilation-targets-7.21.4" // { + dependencies = [ + sources."lru-cache-5.1.1" + sources."semver-6.3.0" + sources."yallist-3.1.1" + ]; + }) + sources."@babel/helper-environment-visitor-7.18.9" + sources."@babel/helper-function-name-7.21.0" + sources."@babel/helper-hoist-variables-7.18.6" + sources."@babel/helper-module-imports-7.21.4" + sources."@babel/helper-module-transforms-7.21.2" + sources."@babel/helper-plugin-utils-7.20.2" + sources."@babel/helper-simple-access-7.20.2" + sources."@babel/helper-split-export-declaration-7.18.6" sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" - sources."@babel/highlight-7.18.6" + sources."@babel/helper-validator-option-7.21.0" + sources."@babel/helpers-7.21.0" + (sources."@babel/highlight-7.18.6" // { + dependencies = [ + sources."chalk-2.4.2" + ]; + }) sources."@babel/parser-7.21.4" + sources."@babel/plugin-syntax-async-generators-7.8.4" + sources."@babel/plugin-syntax-bigint-7.8.3" + sources."@babel/plugin-syntax-class-properties-7.12.13" + sources."@babel/plugin-syntax-import-meta-7.10.4" + sources."@babel/plugin-syntax-json-strings-7.8.3" + sources."@babel/plugin-syntax-jsx-7.21.4" + sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" + sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" + sources."@babel/plugin-syntax-numeric-separator-7.10.4" + sources."@babel/plugin-syntax-object-rest-spread-7.8.3" + sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" + sources."@babel/plugin-syntax-optional-chaining-7.8.3" + sources."@babel/plugin-syntax-top-level-await-7.14.5" + sources."@babel/plugin-syntax-typescript-7.21.4" sources."@babel/template-7.20.7" + sources."@babel/traverse-7.21.4" sources."@babel/types-7.21.4" - sources."@cdktf/cli-core-0.15.5" - sources."@cdktf/commons-0.15.5" - sources."@cdktf/hcl2cdk-0.15.5" - sources."@cdktf/hcl2json-0.15.5" + sources."@bcoe/v8-coverage-0.2.3" + sources."@cdktf/cli-core-0.16.0" + sources."@cdktf/commons-0.16.0" + (sources."@cdktf/hcl2cdk-0.16.0" // { + dependencies = [ + sources."brace-expansion-2.0.1" + sources."camelcase-6.3.0" + sources."glob-9.3.4" + sources."minimatch-8.0.4" + sources."zod-3.21.4" + ]; + }) + (sources."@cdktf/hcl2json-0.16.0" // { + dependencies = [ + sources."fs-extra-11.1.1" + sources."jsonfile-6.1.0" + sources."universalify-2.0.0" + ]; + }) sources."@cdktf/node-pty-prebuilt-multiarch-0.10.1-pre.10" - sources."@cdktf/provider-generator-0.15.5" + (sources."@cdktf/provider-generator-0.16.0" // { + dependencies = [ + sources."@types/node-16.18.23" + ]; + }) + (sources."@cspotcode/source-map-support-0.8.1" // { + dependencies = [ + sources."@jridgewell/trace-mapping-0.3.9" + ]; + }) + sources."@istanbuljs/load-nyc-config-1.1.0" + sources."@istanbuljs/schema-0.1.3" + sources."@jest/console-29.5.0" + sources."@jest/core-29.5.0" + sources."@jest/environment-29.5.0" + sources."@jest/expect-29.5.0" + sources."@jest/expect-utils-29.5.0" + sources."@jest/fake-timers-29.5.0" + sources."@jest/globals-29.5.0" + sources."@jest/reporters-29.5.0" + sources."@jest/schemas-29.4.3" + sources."@jest/source-map-29.4.3" + sources."@jest/test-result-29.5.0" + sources."@jest/test-sequencer-29.5.0" + (sources."@jest/transform-29.5.0" // { + dependencies = [ + sources."convert-source-map-2.0.0" + ]; + }) + sources."@jest/types-29.5.0" sources."@jridgewell/gen-mapping-0.3.3" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { + sources."@jridgewell/sourcemap-codec-1.4.14" + sources."@jridgewell/trace-mapping-0.3.18" + sources."@jsii/check-node-1.80.0" + sources."@jsii/spec-1.80.0" + sources."@nodelib/fs.scandir-2.1.5" + sources."@nodelib/fs.stat-2.0.5" + sources."@nodelib/fs.walk-1.2.8" + sources."@npmcli/ci-detect-1.4.0" + (sources."@sentry/core-6.19.7" // { dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" + sources."tslib-1.14.1" ]; }) - (sources."@jsii/check-node-1.80.0" // { + (sources."@sentry/hub-6.19.7" // { + dependencies = [ + sources."tslib-1.14.1" + ]; + }) + (sources."@sentry/minimal-6.19.7" // { + dependencies = [ + sources."tslib-1.14.1" + ]; + }) + (sources."@sentry/node-6.19.7" // { + dependencies = [ + sources."tslib-1.14.1" + ]; + }) + sources."@sentry/types-6.19.7" + (sources."@sentry/utils-6.19.7" // { + dependencies = [ + sources."tslib-1.14.1" + ]; + }) + sources."@sinclair/typebox-0.25.24" + sources."@sinonjs/commons-2.0.0" + sources."@sinonjs/fake-timers-10.0.2" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" + sources."@swc/helpers-0.5.0" + sources."@swc/wasm-1.3.53" + sources."@tsconfig/node10-1.0.9" + sources."@tsconfig/node12-1.0.11" + sources."@tsconfig/node14-1.0.3" + sources."@tsconfig/node16-1.0.3" + sources."@types/babel__core-7.20.0" + sources."@types/babel__generator-7.6.4" + sources."@types/babel__template-7.4.1" + sources."@types/babel__traverse-7.18.3" + sources."@types/graceful-fs-4.1.6" + sources."@types/istanbul-lib-coverage-2.0.4" + sources."@types/istanbul-lib-report-3.0.0" + sources."@types/istanbul-reports-3.0.1" + sources."@types/node-18.15.13" + sources."@types/prettier-2.7.2" + sources."@types/prop-types-15.7.5" + sources."@types/react-18.0.37" + sources."@types/scheduler-0.16.3" + sources."@types/stack-utils-2.0.1" + sources."@types/yargs-17.0.24" + sources."@types/yargs-parser-21.0.0" + sources."@types/yoga-layout-1.9.2" + sources."@xmldom/xmldom-0.8.7" + sources."acorn-8.8.2" + sources."acorn-walk-8.2.0" + sources."agent-base-6.0.2" + sources."ajv-8.12.0" + sources."ansi-escapes-4.3.2" + sources."ansi-regex-5.0.1" + sources."ansi-styles-3.2.1" + sources."anymatch-3.1.3" + sources."arg-4.1.3" + sources."argparse-1.0.10" + sources."arr-rotate-1.0.0" + sources."astral-regex-2.0.0" + sources."at-least-node-1.0.0" + sources."auto-bind-4.0.0" + sources."available-typed-arrays-1.0.5" + sources."babel-jest-29.5.0" + sources."babel-plugin-istanbul-6.1.1" + sources."babel-plugin-jest-hoist-29.5.0" + sources."babel-preset-current-node-syntax-1.0.1" + sources."babel-preset-jest-29.5.0" + sources."balanced-match-1.0.2" + sources."base64-js-1.5.1" + sources."bl-4.1.0" + sources."brace-expansion-1.1.11" + sources."braces-3.0.2" + sources."browserslist-4.21.5" + sources."bs-logger-0.2.6" + sources."bser-2.1.1" + sources."buffer-5.7.1" + sources."buffer-from-1.1.2" + sources."bufferutil-4.0.7" + sources."call-bind-1.0.2" + sources."callsites-3.1.0" + sources."camelcase-5.3.1" + sources."caniuse-lite-1.0.30001481" + sources."case-1.6.3" + sources."cdktf-0.16.0" + (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."has-flag-4.0.0" sources."supports-color-7.2.0" ]; }) - sources."@jsii/spec-1.80.0" - sources."@nodelib/fs.scandir-2.1.5" - sources."@nodelib/fs.stat-2.0.5" - sources."@nodelib/fs.walk-1.2.8" - sources."@npmcli/ci-detect-1.4.0" - sources."@sentry/core-6.19.7" - sources."@sentry/hub-6.19.7" - sources."@sentry/minimal-6.19.7" - sources."@sentry/node-6.19.7" - sources."@sentry/types-6.19.7" - sources."@sentry/utils-6.19.7" - sources."@types/node-14.18.33" - sources."@types/prop-types-15.7.5" - sources."@types/react-18.0.35" - sources."@types/scheduler-0.16.3" - sources."@types/yoga-layout-1.9.2" - sources."@xmldom/xmldom-0.8.7" - sources."agent-base-6.0.2" - sources."ajv-8.12.0" - (sources."ansi-escapes-4.3.2" // { - dependencies = [ - sources."type-fest-0.21.3" - ]; - }) - sources."ansi-regex-5.0.1" - sources."ansi-styles-3.2.1" - sources."arr-rotate-1.0.0" - sources."astral-regex-2.0.0" - sources."at-least-node-1.0.0" - sources."auto-bind-4.0.0" - sources."balanced-match-1.0.2" - sources."base64-js-1.5.1" - sources."bl-4.1.0" - sources."brace-expansion-1.1.11" - sources."braces-3.0.2" - sources."buffer-5.7.1" - sources."bufferutil-4.0.7" - sources."camelcase-6.3.0" - sources."case-1.6.3" - sources."cdktf-0.15.5" - sources."chalk-2.4.2" + sources."char-regex-1.0.2" sources."chownr-1.1.4" - sources."ci-info-2.0.0" + sources."ci-info-3.8.0" + sources."cjs-module-lexer-1.2.2" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" sources."cli-truncate-2.1.0" - sources."cliui-6.0.0" + sources."cliui-7.0.4" sources."clone-2.1.2" + sources."co-4.6.0" sources."code-excerpt-3.0.0" (sources."codemaker-1.80.0" // { dependencies = [ + sources."camelcase-6.3.0" sources."decamelize-5.0.1" sources."fs-extra-10.1.0" sources."jsonfile-6.1.0" sources."universalify-2.0.0" ]; }) + sources."collect-v8-coverage-1.0.1" sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.1.309" + sources."constructs-10.2.2" + sources."convert-source-map-1.9.0" sources."convert-to-spaces-1.0.2" sources."cookie-0.4.2" + sources."create-require-1.1.1" sources."cross-spawn-7.0.3" sources."csstype-3.1.2" sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-1.2.0" sources."decompress-response-6.0.0" + sources."dedent-0.7.0" + sources."deep-equal-2.2.0" sources."deep-extend-0.6.0" sources."deepmerge-4.3.1" + sources."define-properties-1.2.0" sources."detect-indent-5.0.0" sources."detect-libc-2.0.1" - sources."detect-newline-2.1.0" + sources."detect-newline-3.1.0" + sources."diff-4.0.2" + sources."diff-sequences-29.4.3" + (sources."downlevel-dts-0.11.0" // { + dependencies = [ + sources."typescript-5.1.0-dev.20230421" + ]; + }) + sources."electron-to-chromium-1.4.368" + sources."emittery-0.13.1" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" sources."entities-2.0.3" + sources."error-ex-1.3.2" + sources."es-get-iterator-1.1.3" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" + sources."esprima-4.0.1" sources."events-3.3.0" + sources."execa-5.1.1" + sources."exit-0.1.2" sources."expand-template-2.0.3" + sources."expect-29.5.0" sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" + sources."fast-json-stable-stringify-2.1.0" sources."fastq-1.15.0" + sources."fb-watchman-2.0.2" sources."figures-3.2.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."flatted-3.2.7" sources."follow-redirects-1.15.2" + sources."for-each-0.3.3" sources."fs-constants-1.0.0" sources."fs-extra-8.1.0" sources."fs.realpath-1.0.0" + sources."fsevents-2.3.2" + sources."function-bind-1.1.1" + sources."functions-have-names-1.2.3" + sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" + sources."get-intrinsic-1.2.0" + sources."get-package-type-0.1.0" + sources."get-stream-6.0.1" sources."github-from-package-0.0.0" (sources."glob-7.2.3" // { dependencies = [ @@ -95816,17 +97264,25 @@ in ]; }) sources."glob-parent-5.1.2" + sources."globals-11.12.0" + sources."gopd-1.0.1" sources."graceful-fs-4.2.11" - (sources."graphology-0.25.1" // { - dependencies = [ - sources."graphology-types-0.24.7" - ]; - }) - sources."graphology-types-0.21.2" + sources."graphology-0.25.1" + sources."graphology-types-0.24.7" + sources."growly-1.3.0" + sources."has-1.0.3" + sources."has-bigints-1.0.2" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" + sources."has-symbols-1.0.3" + sources."has-tostringtag-1.0.0" + sources."html-escaper-2.0.2" sources."https-proxy-agent-5.0.1" + sources."human-signals-2.1.0" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" + sources."import-local-3.1.0" + sources."imurmurhash-0.1.4" sources."indent-string-4.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -95834,106 +97290,192 @@ in (sources."ink-3.2.0" // { dependencies = [ sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" + sources."type-fest-0.12.0" + sources."wrap-ansi-6.2.0" ]; }) sources."ink-select-input-4.2.2" sources."ink-table-3.0.0" - sources."is-ci-2.0.0" - sources."is-extglob-2.1.1" - sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.3" - sources."is-number-7.0.0" - sources."is-valid-domain-0.1.6" - sources."isexe-2.0.0" - sources."js-tokens-4.0.0" - sources."jsesc-2.5.2" - (sources."jsii-1.80.0" // { + sources."internal-slot-1.0.5" + sources."interpret-1.4.0" + sources."is-arguments-1.1.1" + sources."is-array-buffer-3.0.2" + sources."is-arrayish-0.2.1" + sources."is-bigint-1.0.4" + sources."is-boolean-object-1.1.2" + sources."is-callable-1.2.7" + (sources."is-ci-2.0.0" // { dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."cliui-7.0.4" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."fs-extra-10.1.0" - sources."has-flag-4.0.0" - sources."jsonfile-6.1.0" - sources."supports-color-7.2.0" - sources."universalify-2.0.0" - sources."wrap-ansi-7.0.0" - sources."y18n-5.0.8" - sources."yargs-16.2.0" - sources."yargs-parser-20.2.9" + sources."ci-info-2.0.0" ]; }) + sources."is-core-module-2.12.0" + sources."is-date-object-1.0.5" + sources."is-docker-2.2.1" + sources."is-extglob-2.1.1" + sources."is-fullwidth-code-point-3.0.0" + sources."is-generator-fn-2.1.0" + sources."is-glob-4.0.3" + sources."is-map-2.0.2" + sources."is-number-7.0.0" + sources."is-number-object-1.0.7" + sources."is-regex-1.1.4" + sources."is-set-2.0.2" + sources."is-shared-array-buffer-1.0.2" + sources."is-stream-2.0.1" + sources."is-string-1.0.7" + sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" + sources."is-valid-domain-0.1.6" + sources."is-weakmap-2.0.1" + sources."is-weakset-2.0.2" + sources."is-wsl-2.2.0" + sources."isarray-2.0.5" + sources."isexe-2.0.0" + sources."istanbul-lib-coverage-3.2.0" + (sources."istanbul-lib-instrument-5.2.1" // { + dependencies = [ + sources."semver-6.3.0" + ]; + }) + (sources."istanbul-lib-report-3.0.0" // { + dependencies = [ + sources."has-flag-4.0.0" + sources."supports-color-7.2.0" + ]; + }) + sources."istanbul-lib-source-maps-4.0.1" + sources."istanbul-reports-3.1.5" + sources."jest-29.5.0" + (sources."jest-changed-files-29.5.0" // { + dependencies = [ + sources."p-limit-3.1.0" + ]; + }) + (sources."jest-circus-29.5.0" // { + dependencies = [ + sources."p-limit-3.1.0" + ]; + }) + sources."jest-cli-29.5.0" + (sources."jest-config-29.5.0" // { + dependencies = [ + sources."strip-json-comments-3.1.1" + ]; + }) + sources."jest-diff-29.5.0" + sources."jest-docblock-29.4.3" + sources."jest-each-29.5.0" + sources."jest-environment-node-29.5.0" + sources."jest-get-type-29.4.3" + sources."jest-haste-map-29.5.0" + sources."jest-leak-detector-29.5.0" + sources."jest-matcher-utils-29.5.0" + sources."jest-message-util-29.5.0" + sources."jest-mock-29.5.0" + sources."jest-pnp-resolver-1.2.3" + sources."jest-regex-util-29.4.3" + sources."jest-resolve-29.5.0" + sources."jest-resolve-dependencies-29.5.0" + (sources."jest-runner-29.5.0" // { + dependencies = [ + sources."p-limit-3.1.0" + ]; + }) + sources."jest-runtime-29.5.0" + sources."jest-snapshot-29.5.0" + sources."jest-util-29.5.0" + (sources."jest-validate-29.5.0" // { + dependencies = [ + sources."camelcase-6.3.0" + ]; + }) + sources."jest-watcher-29.5.0" + (sources."jest-worker-29.5.0" // { + dependencies = [ + sources."has-flag-4.0.0" + sources."supports-color-8.1.1" + ]; + }) + sources."js-tokens-4.0.0" + sources."js-yaml-3.14.1" + sources."jsesc-2.5.2" + sources."jsii-5.0.6" (sources."jsii-pacmak-1.80.0" // { dependencies = [ - sources."ansi-styles-4.3.0" - sources."cliui-7.0.4" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" sources."escape-string-regexp-4.0.0" sources."fs-extra-10.1.0" + sources."jsii-1.80.0" + sources."jsii-rosetta-1.80.0" sources."jsonfile-6.1.0" + sources."typescript-3.9.10" sources."universalify-2.0.0" - sources."wrap-ansi-7.0.0" - sources."y18n-5.0.8" sources."yargs-16.2.0" sources."yargs-parser-20.2.9" ]; }) (sources."jsii-reflect-1.80.0" // { dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."cliui-7.0.4" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" sources."fs-extra-10.1.0" - sources."has-flag-4.0.0" sources."jsonfile-6.1.0" - sources."supports-color-7.2.0" sources."universalify-2.0.0" - sources."wrap-ansi-7.0.0" - sources."y18n-5.0.8" sources."yargs-16.2.0" sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-rosetta-1.80.0" // { + sources."jsii-rosetta-5.0.4" + (sources."jsii-srcmak-0.1.889" // { dependencies = [ sources."ansi-styles-4.3.0" - sources."cliui-7.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."wrap-ansi-7.0.0" - sources."y18n-5.0.8" - sources."yargs-16.2.0" + sources."fs-extra-9.1.0" + (sources."jsii-1.80.0" // { + dependencies = [ + sources."fs-extra-10.1.0" + sources."yargs-16.2.0" + ]; + }) + sources."jsonfile-6.1.0" + sources."typescript-3.9.10" + sources."universalify-2.0.0" + sources."wrap-ansi-6.2.0" + (sources."yargs-15.4.1" // { + dependencies = [ + sources."cliui-6.0.0" + sources."y18n-4.0.3" + sources."yargs-parser-18.1.3" + ]; + }) sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-srcmak-0.1.881" // { - dependencies = [ - sources."fs-extra-9.1.0" - sources."jsonfile-6.1.0" - sources."universalify-2.0.0" - sources."yargs-15.4.1" - ]; - }) + sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-1.0.0" + sources."json5-2.2.3" sources."jsonfile-4.0.0" + sources."kleur-3.0.3" + sources."leven-3.1.0" + sources."lines-and-columns-1.2.4" sources."locate-path-5.0.0" sources."lodash-4.17.21" sources."lodash.isequal-4.5.0" + sources."lodash.memoize-4.1.2" sources."log4js-6.9.1" sources."loose-envify-1.4.0" sources."lru-cache-6.0.0" sources."lru_map-0.3.3" + (sources."make-dir-3.1.0" // { + dependencies = [ + sources."semver-6.3.0" + ]; + }) + sources."make-error-1.3.6" + sources."makeerror-1.0.12" sources."mdurl-1.0.1" + sources."merge-stream-2.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."mimic-fn-2.1.0" @@ -95944,17 +97486,27 @@ in ]; }) sources."minimist-1.2.8" + sources."minipass-4.2.8" sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" sources."nan-2.17.0" sources."napi-build-utils-1.0.2" + sources."natural-compare-1.4.0" sources."ncp-2.0.0" - sources."node-abi-3.35.0" - sources."node-abort-controller-3.1.1" + sources."node-abi-3.40.0" sources."node-fetch-2.6.9" sources."node-gyp-build-4.6.0" + sources."node-int64-0.4.0" + sources."node-notifier-10.0.1" + sources."node-releases-2.0.10" + sources."normalize-path-3.0.0" + sources."npm-run-path-4.0.1" sources."object-assign-4.1.1" sources."object-hash-2.2.0" + sources."object-inspect-1.12.3" + sources."object-is-1.1.5" + sources."object-keys-1.1.1" + sources."object.assign-4.1.4" sources."obliterator-2.0.4" sources."once-1.4.0" sources."onetime-5.1.2" @@ -95962,25 +97514,50 @@ in sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" + sources."parse-json-5.2.0" sources."patch-console-1.0.0" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" + sources."path-parse-1.0.7" + (sources."path-scurry-1.7.0" // { + dependencies = [ + sources."lru-cache-9.1.0" + sources."minipass-5.0.0" + ]; + }) + sources."picocolors-1.0.0" sources."picomatch-2.3.1" + sources."pirates-4.0.5" + sources."pkg-dir-4.2.0" sources."prebuild-install-7.1.1" sources."prettier-2.8.7" + (sources."pretty-format-29.5.0" // { + dependencies = [ + sources."ansi-styles-5.2.0" + ]; + }) + sources."prompts-2.4.2" sources."pump-3.0.0" sources."punycode-2.3.0" + sources."pure-rand-6.0.1" sources."queue-microtask-1.2.3" sources."rc-1.2.8" sources."react-17.0.2" - sources."react-devtools-core-4.27.4" + sources."react-devtools-core-4.27.6" + sources."react-is-18.2.0" sources."react-reconciler-0.26.2" sources."readable-stream-3.6.2" + sources."rechoir-0.6.2" + sources."regexp.prototype.flags-1.5.0" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."require-main-filename-2.0.0" sources."reserved-words-0.1.2" + sources."resolve-1.22.3" + sources."resolve-cwd-3.0.0" + sources."resolve-from-5.0.0" + sources."resolve.exports-2.0.2" sources."restore-cursor-3.1.0" sources."reusify-1.0.4" sources."rfdc-1.3.0" @@ -95989,7 +97566,7 @@ in sources."safer-buffer-2.1.2" sources."sax-1.2.4" sources."scheduler-0.20.2" - sources."semver-7.4.0" + sources."semver-7.5.0" (sources."semver-intersect-1.4.0" // { dependencies = [ sources."semver-5.7.1" @@ -95999,9 +97576,14 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."shell-quote-1.8.1" + sources."shelljs-0.8.5" + sources."shellwords-0.1.1" + sources."side-channel-1.0.4" sources."signal-exit-3.0.7" sources."simple-concat-1.0.1" sources."simple-get-4.0.1" + sources."sisteransi-1.0.5" + sources."slash-3.0.0" (sources."slice-ansi-3.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -96009,43 +97591,71 @@ in sources."color-name-1.1.4" ]; }) - sources."sort-json-2.0.1" + (sources."sort-json-2.0.1" // { + dependencies = [ + sources."detect-newline-2.1.0" + ]; + }) + sources."source-map-0.6.1" + sources."source-map-support-0.5.13" sources."spdx-license-list-6.6.0" + sources."sprintf-js-1.0.3" (sources."stack-utils-2.0.6" // { dependencies = [ sources."escape-string-regexp-2.0.0" ]; }) + sources."stop-iteration-iterator-1.0.0" sources."stream-chain-2.2.5" sources."stream-json-1.7.5" sources."streamroller-3.1.5" + sources."string-length-4.0.2" sources."string-width-4.2.3" sources."string.prototype.repeat-0.2.0" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" + sources."strip-bom-4.0.0" + sources."strip-final-newline-2.0.0" sources."strip-json-comments-2.0.1" sources."supports-color-5.5.0" + sources."supports-preserve-symlinks-flag-1.0.0" sources."tar-fs-2.1.1" sources."tar-stream-2.2.0" + (sources."test-exclude-6.0.0" // { + dependencies = [ + sources."minimatch-3.1.2" + ]; + }) + sources."tmpl-1.0.5" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" - sources."tslib-1.14.1" + sources."ts-jest-29.1.0" + sources."ts-node-10.9.1" + sources."tslib-2.5.0" sources."tunnel-agent-0.6.0" - sources."type-fest-0.12.0" - sources."typescript-3.9.10" + sources."type-detect-4.0.8" + sources."type-fest-0.21.3" + sources."typescript-5.0.4" sources."universalify-0.1.2" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."utf-8-validate-5.0.10" sources."util-deprecate-1.0.2" sources."uuid-8.3.2" + sources."v8-compile-cache-lib-3.0.1" + sources."v8-to-istanbul-9.1.0" + sources."walker-1.0.8" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-2.0.2" - sources."which-module-2.0.0" + sources."which-boxed-primitive-1.0.2" + sources."which-collection-1.0.1" + sources."which-module-2.0.1" + sources."which-typed-array-1.1.9" sources."widest-line-3.1.0" sources."workerpool-6.4.0" - (sources."wrap-ansi-6.2.0" // { + (sources."wrap-ansi-7.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."color-convert-2.0.1" @@ -96053,28 +97663,21 @@ in ]; }) sources."wrappy-1.0.2" + sources."write-file-atomic-4.0.2" sources."ws-7.5.9" sources."xml-js-1.6.11" sources."xmlbuilder-15.1.1" sources."xstate-4.37.1" - sources."y18n-4.0.3" + sources."y18n-5.0.8" sources."yallist-4.0.0" (sources."yargs-17.7.1" // { dependencies = [ - sources."ansi-styles-4.3.0" sources."cliui-8.0.1" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."wrap-ansi-7.0.0" - sources."y18n-5.0.8" - sources."yargs-parser-21.1.1" - ]; - }) - (sources."yargs-parser-18.1.3" // { - dependencies = [ - sources."camelcase-5.3.1" ]; }) + sources."yargs-parser-21.1.1" + sources."yn-3.1.1" + sources."yocto-queue-0.1.0" sources."yoga-layout-prebuilt-1.10.0" sources."zod-1.11.17" ]; @@ -96212,7 +97815,7 @@ in sources."read-pkg-6.0.0" sources."read-pkg-up-8.0.0" sources."redent-4.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" @@ -96401,7 +98004,7 @@ in sources."vscode-languageserver-types-3.17.3" ]; }) - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.0-next.3" ]; buildInputs = globalBuildInputs; @@ -96575,15 +98178,15 @@ in coc-go = nodeEnv.buildNodePackage { name = "coc-go"; packageName = "coc-go"; - version = "1.3.13"; + version = "1.3.14"; src = fetchurl { - url = "https://registry.npmjs.org/coc-go/-/coc-go-1.3.13.tgz"; - sha512 = "u4HGWCsIEU6KhnKGj42nZgUA2ZlbQC2iaYBD1oh2mjTTEHejxgA04bH76yGBPwIgnHj8n4gRl9ptoJRUsdj4/A=="; + url = "https://registry.npmjs.org/coc-go/-/coc-go-1.3.14.tgz"; + sha512 = "a8K4d1i44LpZEKHZ9Hfw3CAoY50VUgnlZDa/TDjBBuzYOsx87tIyGQRoZJT9FiX8O4nkAoVr4RDZIVkK4yMIuA=="; }; dependencies = [ sources."isexe-2.0.0" sources."tslib-2.5.0" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-uri-3.0.7" sources."which-3.0.0" ]; @@ -96852,7 +98455,7 @@ in sources."flatted-3.2.7" sources."follow-redirects-1.15.2" sources."for-each-0.3.3" - sources."fp-ts-2.13.1" + sources."fp-ts-2.14.0" sources."fs-extra-8.1.0" (sources."fs-minipass-2.1.0" // { dependencies = [ @@ -96961,14 +98564,14 @@ in sources."safe-buffer-5.1.2" ]; }) - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."rfc-3986-1.0.1" sources."rfdc-1.3.0" sources."rimraf-3.0.2" sources."safe-buffer-5.2.1" sources."safe-regex-test-1.0.0" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."setimmediate-1.0.5" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" @@ -97002,7 +98605,7 @@ in sources."vscode-languageserver-types-3.15.1" ]; }) - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" sources."vscode-uri-2.1.2" sources."webidl-conversions-3.0.1" @@ -97064,13 +98667,13 @@ in coc-pyright = nodeEnv.buildNodePackage { name = "coc-pyright"; packageName = "coc-pyright"; - version = "1.1.303"; + version = "1.1.304"; src = fetchurl { - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.303.tgz"; - sha512 = "xB0nIgJYU/gJzmhi6jfzEX4ThKuYryl0o36cIPGgaGi4CG01lkqhoc/wu+HPnvtvNFpVwCqwSGAraI8FDLFsZg=="; + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.304.tgz"; + sha512 = "LMQiltjyBElPXtxmv59p7ID7h3DtSogpYva8GTABwDjknOSxK3HpzGHTn2XKf4C6chxqnOxk2m0CKEzU911XvA=="; }; dependencies = [ - sources."pyright-1.1.303" + sources."pyright-1.1.304" ]; buildInputs = globalBuildInputs; meta = { @@ -97111,7 +98714,7 @@ in dependencies = [ sources."vscode-jsonrpc-8.1.0" sources."vscode-languageserver-protocol-3.17.3" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" ]; buildInputs = globalBuildInputs; @@ -97480,7 +99083,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -97517,7 +99120,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -97622,7 +99225,7 @@ in (sources."normalize-package-data-3.0.3" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yallist-4.0.0" ]; }) @@ -97681,7 +99284,7 @@ in sources."remark-stringify-9.0.1" sources."repeat-string-1.6.1" sources."require-from-string-2.0.2" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-5.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" @@ -97724,7 +99327,7 @@ in sources."unist-util-find-all-after-3.0.2" sources."unist-util-is-4.1.0" sources."unist-util-stringify-position-2.0.3" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."v8-compile-cache-2.3.0" @@ -97738,7 +99341,7 @@ in sources."vscode-languageserver-types-3.16.0-next.1" ]; }) - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" sources."vscode-uri-2.1.2" sources."which-1.3.1" @@ -97778,14 +99381,14 @@ in coc-sqlfluff = nodeEnv.buildNodePackage { name = "coc-sqlfluff"; packageName = "coc-sqlfluff"; - version = "0.11.1"; + version = "0.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.11.1.tgz"; - sha512 = "eFq5hQh1Q+5Jd6yQKUSPaVUdorZCgF+Qso5y9Is+KUDkiSblzF78jEMdgwBti+sIP+wlJFTU43Xdzf1T2L8oCA=="; + url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.11.2.tgz"; + sha512 = "Lp5alEdBeusfzMryOnOxvLgYWSlBXPoYyrB1wwJ4EV0jWtk4d5YEaRoASi5qnzgD1dNt08KEsCEnZakNqgoFxg=="; }; dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yallist-4.0.0" ]; buildInputs = globalBuildInputs; @@ -97902,7 +99505,7 @@ in sources."once-1.4.0" sources."path-is-absolute-1.0.1" sources."path-parse-1.0.7" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."semver-5.7.1" sources."sprintf-js-1.0.3" sources."supports-color-5.5.0" @@ -98139,10 +99742,10 @@ in sources."punycode-2.3.0" sources."regexpp-3.2.0" sources."require-from-string-2.0.2" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-4.0.0" sources."rimraf-3.0.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" (sources."slice-ansi-4.0.0" // { @@ -98779,7 +100382,7 @@ in sources."neo-async-2.6.2" (sources."normalize-package-data-3.0.3" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."p-limit-1.3.0" @@ -98808,7 +100411,7 @@ in sources."readable-stream-3.6.2" sources."redent-3.0.0" sources."require-directory-2.1.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."safe-buffer-5.2.1" sources."semver-6.3.0" sources."source-map-0.6.1" @@ -99329,7 +100932,7 @@ in sources."request-2.88.2" sources."require-from-string-2.0.2" sources."requires-port-1.0.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-4.0.0" sources."responselike-1.0.2" (sources."restore-cursor-2.0.0" // { @@ -99347,7 +100950,7 @@ in sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."sax-1.1.4" - sources."semver-7.4.0" + sources."semver-7.5.0" (sources."semver-diff-3.1.1" // { dependencies = [ sources."semver-6.3.0" @@ -99541,7 +101144,7 @@ in sources."is-plain-obj-1.1.0" sources."js-tokens-4.0.0" sources."json-parse-even-better-errors-2.3.1" - sources."junk-4.0.0" + sources."junk-4.0.1" sources."kind-of-6.0.3" sources."lines-and-columns-1.2.4" sources."locate-path-6.0.0" @@ -99560,7 +101163,7 @@ in sources."nested-error-stacks-2.1.1" (sources."normalize-package-data-3.0.3" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."p-event-4.2.0" @@ -99626,7 +101229,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -99827,7 +101430,7 @@ in sources."readable-stream-1.1.14" sources."rimraf-2.7.1" sources."safe-buffer-5.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."sisteransi-1.0.5" @@ -99925,7 +101528,7 @@ in sources."@cspell/dict-django-4.0.2" sources."@cspell/dict-docker-1.1.6" sources."@cspell/dict-dotnet-5.0.0" - sources."@cspell/dict-elixir-4.0.2" + sources."@cspell/dict-elixir-4.0.3" sources."@cspell/dict-en-common-misspellings-1.0.2" sources."@cspell/dict-en-gb-1.1.33" sources."@cspell/dict-en_us-4.3.2" @@ -99948,7 +101551,7 @@ in sources."@cspell/dict-php-4.0.1" sources."@cspell/dict-powershell-5.0.1" sources."@cspell/dict-public-licenses-2.0.2" - sources."@cspell/dict-python-4.0.2" + sources."@cspell/dict-python-4.0.3" sources."@cspell/dict-r-2.0.1" sources."@cspell/dict-ruby-5.0.0" sources."@cspell/dict-rust-4.0.1" @@ -99976,7 +101579,7 @@ in sources."clear-module-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commander-10.0.0" + sources."commander-10.0.1" sources."comment-json-4.2.3" sources."concat-map-0.0.1" sources."configstore-5.0.1" @@ -100063,7 +101666,7 @@ in sources."rimraf-3.0.2" sources."run-parallel-1.2.0" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."signal-exit-3.0.7" sources."strip-ansi-6.0.1" sources."supports-color-7.2.0" @@ -100071,7 +101674,7 @@ in sources."tr46-0.0.3" sources."typedarray-to-buffer-3.1.5" sources."unique-string-2.0.0" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-uri-3.0.7" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -100285,7 +101888,7 @@ in }) sources."diffy-2.1.0" sources."directory-index-html-2.1.0" - sources."dns-packet-5.5.0" + sources."dns-packet-5.6.0" sources."dom-walk-0.1.2" sources."dot-prop-4.2.1" sources."duplexer3-0.1.5" @@ -100849,7 +102452,7 @@ in sources."vscode-jsonrpc-8.1.0" sources."vscode-languageserver-6.1.1" sources."vscode-languageserver-protocol-3.17.3" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" sources."vscode-uri-2.1.2" sources."wrappy-1.0.2" @@ -100884,7 +102487,7 @@ in sources."cross-spawn-6.0.5" sources."define-lazy-prop-2.0.0" sources."diff-5.1.0" - sources."diff2html-3.4.34" + sources."diff2html-3.4.35" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -100957,7 +102560,7 @@ in sources."vscode-languageserver-types-3.17.3" ]; }) - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.0-next.3" ]; buildInputs = globalBuildInputs; @@ -101173,7 +102776,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/responselike-1.0.0" sources."@types/yauzl-2.10.0" sources."abbrev-1.1.1" @@ -101226,7 +102829,7 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."color-support-1.1.3" - sources."colorette-2.0.19" + sources."colorette-2.0.20" sources."commander-4.1.1" sources."compare-version-0.1.2" sources."concat-map-0.0.1" @@ -101416,7 +103019,7 @@ in sources."ms-2.1.3" sources."negotiator-0.6.3" sources."nice-try-1.0.5" - sources."node-abi-3.35.0" + sources."node-abi-3.40.0" sources."node-api-version-0.1.4" sources."node-fetch-2.6.9" sources."node-gyp-9.3.1" @@ -101483,7 +103086,7 @@ in sources."readable-stream-3.6.2" sources."rechoir-0.8.0" sources."require-directory-2.1.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-alpn-1.2.1" sources."resolve-dir-1.0.1" sources."resolve-package-1.0.1" @@ -101498,7 +103101,7 @@ in sources."rxjs-7.8.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -101586,10 +103189,10 @@ in eas-cli = nodeEnv.buildNodePackage { name = "eas-cli"; packageName = "eas-cli"; - version = "3.9.2"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/eas-cli/-/eas-cli-3.9.2.tgz"; - sha512 = "S04mKXdjzHjnZ5MEEf+5WYuJVGUJifUxqlHnJON32HkHLtP4SIr0nQRFMbQcZd1v4S5IYkkhMlFUPPHduV6L8w=="; + url = "https://registry.npmjs.org/eas-cli/-/eas-cli-3.10.0.tgz"; + sha512 = "FpYHXPFdYY2KKsjLswkvRb3tYAtL2LysPeeLgpIj7oxfch0ET7DYqrzISLJ2nvC0XRLjHtzbJaX/AV6Wsb1D8Q=="; }; dependencies = [ sources."@babel/code-frame-7.10.4" @@ -102229,7 +103832,7 @@ in sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" sources."@types/prop-types-15.7.5" - sources."@types/react-18.0.35" + sources."@types/react-18.0.37" sources."@types/scheduler-0.16.3" sources."@types/yoga-layout-1.9.2" sources."ajv-6.12.6" @@ -102254,7 +103857,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -102268,7 +103871,7 @@ in sources."concat-map-0.0.1" (sources."conf-7.1.2" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."convert-source-map-1.9.0" @@ -102284,7 +103887,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -102410,7 +104013,7 @@ in sources."punycode-2.3.0" sources."quick-lru-4.0.1" sources."react-16.14.0" - sources."react-devtools-core-4.27.4" + sources."react-devtools-core-4.27.6" sources."react-is-16.13.1" (sources."react-reconciler-0.26.2" // { dependencies = [ @@ -102432,7 +104035,7 @@ in ]; }) sources."redent-3.0.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-3.0.0" sources."restore-cursor-3.1.0" sources."rimraf-3.0.2" @@ -102469,7 +104072,7 @@ in sources."trim-newlines-3.0.1" sources."type-fest-0.12.0" sources."unicode-emoji-modifier-base-1.0.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."utf-8-validate-5.0.10" sources."validate-npm-package-license-3.0.4" @@ -102536,7 +104139,7 @@ in ]; }) sources."@azure/core-tracing-1.0.1" - sources."@azure/core-util-1.3.0" + sources."@azure/core-util-1.3.1" (sources."@azure/identity-2.1.0" // { dependencies = [ sources."uuid-8.3.2" @@ -102544,15 +104147,15 @@ in }) sources."@azure/keyvault-keys-4.7.0" sources."@azure/logger-1.0.4" - (sources."@azure/msal-browser-2.35.0" // { + (sources."@azure/msal-browser-2.36.0" // { dependencies = [ - sources."@azure/msal-common-12.0.0" + sources."@azure/msal-common-12.1.0" ]; }) sources."@azure/msal-common-7.6.0" - (sources."@azure/msal-node-1.17.0" // { + (sources."@azure/msal-node-1.17.1" // { dependencies = [ - sources."@azure/msal-common-12.0.0" + sources."@azure/msal-common-12.1.0" sources."uuid-8.3.2" ]; }) @@ -102594,7 +104197,7 @@ in sources."@fluentui/foundation-legacy-8.2.33" sources."@fluentui/keyboard-key-0.4.6" sources."@fluentui/merge-styles-8.5.7" - sources."@fluentui/react-8.107.5" + sources."@fluentui/react-8.108.1" sources."@fluentui/react-focus-8.8.19" sources."@fluentui/react-hooks-8.6.20" sources."@fluentui/react-portal-compat-context-9.0.5" @@ -102654,6 +104257,7 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@npmcli/fs-1.1.1" sources."@npmcli/move-file-1.1.2" + sources."@pkgjs/parseargs-0.11.0" sources."@redis/bloom-1.2.0" sources."@redis/client-1.5.6" sources."@redis/graph-1.1.0" @@ -102667,23 +104271,23 @@ in }) sources."@sindresorhus/is-0.14.0" sources."@sqltools/formatter-1.2.5" - (sources."@swc/core-1.3.50" // { + (sources."@swc/core-1.3.53" // { dependencies = [ sources."@swc/helpers-0.5.0" ]; }) - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.4.14" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@szmarczak/http-timer-1.1.2" sources."@tediousjs/connection-string-0.4.2" sources."@tokenizer/token-0.3.0" @@ -102699,7 +104303,7 @@ in sources."@types/cors-2.8.13" sources."@types/eslint-8.37.0" sources."@types/eslint-scope-3.7.4" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/express-4.17.13" sources."@types/express-serve-static-core-4.17.33" sources."@types/file-type-10.9.1" @@ -102715,7 +104319,7 @@ in sources."@types/prop-types-15.7.5" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" - sources."@types/react-18.0.35" + sources."@types/react-18.0.37" sources."@types/react-dom-18.0.11" sources."@types/scheduler-0.16.3" sources."@types/serve-static-1.15.1" @@ -102747,21 +104351,21 @@ in ]; }) sources."@typescript-eslint/visitor-keys-4.33.0" - sources."@webassemblyjs/ast-1.11.1" - sources."@webassemblyjs/floating-point-hex-parser-1.11.1" - sources."@webassemblyjs/helper-api-error-1.11.1" - sources."@webassemblyjs/helper-buffer-1.11.1" - sources."@webassemblyjs/helper-numbers-1.11.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" - sources."@webassemblyjs/helper-wasm-section-1.11.1" - sources."@webassemblyjs/ieee754-1.11.1" - sources."@webassemblyjs/leb128-1.11.1" - sources."@webassemblyjs/utf8-1.11.1" - sources."@webassemblyjs/wasm-edit-1.11.1" - sources."@webassemblyjs/wasm-gen-1.11.1" - sources."@webassemblyjs/wasm-opt-1.11.1" - sources."@webassemblyjs/wasm-parser-1.11.1" - sources."@webassemblyjs/wast-printer-1.11.1" + sources."@webassemblyjs/ast-1.11.5" + sources."@webassemblyjs/floating-point-hex-parser-1.11.5" + sources."@webassemblyjs/helper-api-error-1.11.5" + sources."@webassemblyjs/helper-buffer-1.11.5" + sources."@webassemblyjs/helper-numbers-1.11.5" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.5" + sources."@webassemblyjs/helper-wasm-section-1.11.5" + sources."@webassemblyjs/ieee754-1.11.5" + sources."@webassemblyjs/leb128-1.11.5" + sources."@webassemblyjs/utf8-1.11.5" + sources."@webassemblyjs/wasm-edit-1.11.5" + sources."@webassemblyjs/wasm-gen-1.11.5" + sources."@webassemblyjs/wasm-opt-1.11.5" + sources."@webassemblyjs/wasm-parser-1.11.5" + sources."@webassemblyjs/wast-printer-1.11.5" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."abbrev-1.1.1" @@ -102935,7 +104539,7 @@ in sources."call-bind-1.0.2" sources."callsites-3.1.0" sources."camelcase-3.0.0" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chalk-4.1.2" sources."chardet-0.7.0" (sources."chokidar-2.1.8" // { @@ -103095,7 +104699,7 @@ in sources."each-props-1.3.2" sources."ecdsa-sig-formatter-1.0.11" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -103113,7 +104717,7 @@ in ]; }) sources."engine.io-parser-5.0.6" - sources."enhanced-resolve-5.12.0" + sources."enhanced-resolve-5.13.0" sources."enquirer-2.3.6" sources."env-paths-2.2.1" sources."err-code-2.0.3" @@ -103262,6 +104866,7 @@ in sources."for-each-0.3.3" sources."for-in-1.0.2" sources."for-own-1.0.0" + sources."foreground-child-3.1.1" sources."form-data-4.0.0" sources."forwarded-0.2.0" sources."fragment-cache-0.2.1" @@ -103281,7 +104886,11 @@ in sources."function.prototype.name-1.1.5" sources."functional-red-black-tree-1.0.1" sources."functions-have-names-1.2.3" - sources."gauge-3.0.2" + (sources."gauge-3.0.2" // { + dependencies = [ + sources."signal-exit-3.0.7" + ]; + }) sources."generate-function-2.3.1" sources."generic-pool-3.9.0" sources."get-caller-file-2.0.5" @@ -103290,7 +104899,7 @@ in sources."get-symbol-description-1.0.0" sources."get-value-2.0.6" sources."github-from-package-0.0.0" - sources."glob-10.0.0" + sources."glob-10.2.1" sources."glob-parent-5.1.2" (sources."glob-stream-6.1.0" // { dependencies = [ @@ -103476,7 +105085,7 @@ in sources."interpret-1.4.0" sources."inversify-5.1.1" sources."invert-kv-1.0.0" - (sources."ioredis-5.3.1" // { + (sources."ioredis-5.3.2" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -103530,6 +105139,7 @@ in sources."isexe-2.0.0" sources."isobject-3.0.1" sources."isomorphic-ws-4.0.1" + sources."jackspeak-2.0.3" (sources."jest-worker-27.5.1" // { dependencies = [ sources."supports-color-8.1.1" @@ -103595,10 +105205,10 @@ in sources."ms-2.1.2" ]; }) - sources."long-5.2.1" + sources."long-5.2.3" sources."loose-envify-1.4.0" sources."lowercase-keys-1.0.1" - sources."lru-cache-9.0.2" + sources."lru-cache-9.1.0" sources."lru-queue-0.1.0" (sources."make-dir-3.1.0" // { dependencies = [ @@ -103777,10 +105387,10 @@ in sources."string_decoder-1.1.1" ]; }) - (sources."mysql2-3.2.0" // { + (sources."mysql2-3.2.3" // { dependencies = [ sources."iconv-lite-0.6.3" - sources."lru-cache-7.18.3" + sources."lru-cache-8.0.5" sources."sqlstring-2.3.3" ]; }) @@ -103799,7 +105409,7 @@ in sources."neo-async-2.6.2" sources."next-tick-1.1.0" sources."nice-try-1.0.5" - sources."node-abi-3.35.0" + sources."node-abi-3.40.0" sources."node-abort-controller-3.1.1" sources."node-addon-api-4.3.0" sources."node-fetch-2.6.9" @@ -103811,6 +105421,7 @@ in sources."glob-7.2.3" sources."minimatch-3.1.2" sources."npmlog-6.0.2" + sources."signal-exit-3.0.7" ]; }) sources."node-gyp-build-4.6.0" @@ -103936,7 +105547,7 @@ in sources."path-parse-1.0.7" sources."path-root-0.1.1" sources."path-root-regex-0.1.2" - sources."path-scurry-1.6.4" + sources."path-scurry-1.7.0" sources."path-to-regexp-0.1.7" sources."path-type-4.0.0" sources."peek-readable-4.1.0" @@ -104028,7 +105639,7 @@ in sources."redis-parser-3.0.0" sources."reflect-metadata-0.1.13" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."regexpp-3.2.0" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" @@ -104043,13 +105654,17 @@ in sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."require-main-filename-1.0.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-dir-1.0.1" sources."resolve-from-4.0.0" sources."resolve-options-1.1.0" sources."resolve-url-0.2.1" sources."responselike-1.0.2" - sources."restore-cursor-3.1.0" + (sources."restore-cursor-3.1.0" // { + dependencies = [ + sources."signal-exit-3.0.7" + ]; + }) sources."ret-0.1.15" sources."retry-0.12.0" sources."reusify-1.0.4" @@ -104075,13 +105690,13 @@ in sources."saslprep-1.0.3" sources."sax-1.2.4" sources."scheduler-0.20.2" - (sources."schema-utils-3.1.1" // { + (sources."schema-utils-3.1.2" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" ]; }) - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -104107,7 +105722,7 @@ in sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" sources."sift-7.0.1" - sources."signal-exit-3.0.7" + sources."signal-exit-4.0.1" sources."simple-concat-1.0.1" (sources."simple-get-4.0.1" // { dependencies = [ @@ -104262,7 +105877,7 @@ in sources."sprintf-js-1.1.2" ]; }) - (sources."terser-5.16.9" // { + (sources."terser-5.17.1" // { dependencies = [ sources."acorn-8.8.2" sources."commander-2.20.3" @@ -104355,7 +105970,7 @@ in ]; }) sources."upath-1.2.0" - (sources."update-browserslist-db-1.0.10" // { + (sources."update-browserslist-db-1.0.11" // { dependencies = [ sources."picocolors-1.0.0" ]; @@ -104390,7 +106005,7 @@ in }) sources."watchpack-2.4.0" sources."webidl-conversions-3.0.1" - (sources."webpack-5.79.0" // { + (sources."webpack-5.80.0" // { dependencies = [ sources."acorn-8.8.2" ]; @@ -104516,7 +106131,7 @@ in sources."@types/mime-3.0.1" sources."@types/minimatch-5.1.2" sources."@types/minimist-1.2.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/q-1.5.5" @@ -104869,7 +106484,7 @@ in sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caseless-0.12.0" sources."chalk-2.4.2" @@ -105146,7 +106761,7 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -105669,7 +107284,7 @@ in sources."md5.js-1.3.5" sources."mdn-data-2.0.4" sources."media-typer-0.3.0" - sources."memfs-3.5.0" + sources."memfs-3.5.1" sources."memory-fs-0.4.1" (sources."meow-9.0.0" // { dependencies = [ @@ -105782,7 +107397,7 @@ in dependencies = [ sources."json5-2.2.3" sources."loader-utils-2.0.4" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" ]; }) sources."num2fraction-1.2.2" @@ -105808,7 +107423,7 @@ in sources."object-keys-1.1.1" sources."object-visit-1.0.1" sources."object.assign-4.1.4" - sources."object.getownpropertydescriptors-2.1.5" + sources."object.getownpropertydescriptors-2.1.6" sources."object.pick-1.3.0" sources."object.values-1.1.6" sources."obuf-1.1.2" @@ -105873,7 +107488,7 @@ in ]; }) sources."posix-character-classes-0.1.1" - sources."postcss-8.4.21" + sources."postcss-8.4.23" (sources."postcss-calc-7.0.5" // { dependencies = [ sources."picocolors-0.2.1" @@ -106188,7 +107803,7 @@ in }) sources."reflect-metadata-0.1.13" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."regexpp-3.2.0" sources."relateurl-0.2.7" sources."remove-trailing-separator-1.1.0" @@ -106212,7 +107827,7 @@ in sources."require-main-filename-2.0.0" sources."requires-port-1.0.0" sources."resize-observer-polyfill-1.5.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" (sources."resolve-cwd-2.0.0" // { dependencies = [ sources."resolve-from-3.0.0" @@ -106233,6 +107848,11 @@ in sources."run-parallel-1.2.0" sources."run-queue-1.0.3" sources."rxjs-6.6.7" + (sources."safe-array-concat-1.0.0" // { + dependencies = [ + sources."isarray-2.0.5" + ]; + }) sources."safe-buffer-5.2.1" sources."safe-regex-1.1.0" sources."safe-regex-test-1.0.0" @@ -106252,7 +107872,7 @@ in dependencies = [ sources."json5-2.2.3" sources."loader-utils-2.0.4" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" ]; }) sources."sax-1.2.4" @@ -106264,7 +107884,7 @@ in }) sources."select-hose-2.0.0" sources."selfsigned-1.10.14" - sources."semver-7.4.0" + sources."semver-7.5.0" (sources."send-0.18.0" // { dependencies = [ (sources."debug-2.6.9" // { @@ -106540,7 +108160,7 @@ in ]; }) sources."upath-1.2.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."upper-case-1.1.3" sources."uri-js-4.4.1" sources."urix-0.1.0" @@ -106616,7 +108236,7 @@ in sources."file-loader-6.2.0" sources."json5-2.2.3" sources."loader-utils-2.0.4" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" ]; }) sources."watchpack-1.7.5" @@ -106724,7 +108344,7 @@ in sources."webworkify-webpack-2.1.5" sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."which-typed-array-1.1.9" sources."wide-align-1.1.5" sources."word-wrap-1.2.3" @@ -107227,7 +108847,7 @@ in }) (sources."@expo/config-plugins-6.0.1" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."@expo/config-types-48.0.0" @@ -107287,7 +108907,7 @@ in dependencies = [ sources."@expo/json-file-8.2.36" sources."@expo/plist-0.0.18" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."@expo/config-types-45.0.0" @@ -107316,7 +108936,7 @@ in sources."@expo/config-8.0.2" sources."@expo/config-plugins-6.0.1" sources."@expo/config-types-48.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."@expo/osascript-2.0.33" @@ -107348,7 +108968,7 @@ in sources."@expo/config-6.0.20" (sources."@expo/config-plugins-4.1.1" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."@expo/config-types-44.0.0" @@ -107382,7 +109002,7 @@ in sources."@nodelib/fs.walk-1.2.8" (sources."@npmcli/fs-1.1.1" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."@npmcli/move-file-1.1.2" // { @@ -107406,7 +109026,7 @@ in sources."@types/connect-history-api-fallback-1.3.5" sources."@types/eslint-8.37.0" sources."@types/eslint-scope-3.7.4" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/express-4.17.17" sources."@types/express-serve-static-core-4.17.33" sources."@types/glob-7.2.0" @@ -107420,7 +109040,7 @@ in sources."@types/keyv-3.1.4" sources."@types/mime-3.0.1" sources."@types/minimatch-5.1.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/responselike-1.0.0" @@ -107433,21 +109053,21 @@ in sources."@types/yargs-parser-21.0.0" sources."@urql/core-2.3.6" sources."@urql/exchange-retry-0.3.0" - sources."@webassemblyjs/ast-1.11.1" - sources."@webassemblyjs/floating-point-hex-parser-1.11.1" - sources."@webassemblyjs/helper-api-error-1.11.1" - sources."@webassemblyjs/helper-buffer-1.11.1" - sources."@webassemblyjs/helper-numbers-1.11.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" - sources."@webassemblyjs/helper-wasm-section-1.11.1" - sources."@webassemblyjs/ieee754-1.11.1" - sources."@webassemblyjs/leb128-1.11.1" - sources."@webassemblyjs/utf8-1.11.1" - sources."@webassemblyjs/wasm-edit-1.11.1" - sources."@webassemblyjs/wasm-gen-1.11.1" - sources."@webassemblyjs/wasm-opt-1.11.1" - sources."@webassemblyjs/wasm-parser-1.11.1" - sources."@webassemblyjs/wast-printer-1.11.1" + sources."@webassemblyjs/ast-1.11.5" + sources."@webassemblyjs/floating-point-hex-parser-1.11.5" + sources."@webassemblyjs/helper-api-error-1.11.5" + sources."@webassemblyjs/helper-buffer-1.11.5" + sources."@webassemblyjs/helper-numbers-1.11.5" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.5" + sources."@webassemblyjs/helper-wasm-section-1.11.5" + sources."@webassemblyjs/ieee754-1.11.5" + sources."@webassemblyjs/leb128-1.11.5" + sources."@webassemblyjs/utf8-1.11.5" + sources."@webassemblyjs/wasm-edit-1.11.5" + sources."@webassemblyjs/wasm-gen-1.11.5" + sources."@webassemblyjs/wasm-opt-1.11.5" + sources."@webassemblyjs/wasm-parser-1.11.5" + sources."@webassemblyjs/wast-printer-1.11.5" sources."@xmldom/xmldom-0.7.10" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" @@ -107549,7 +109169,7 @@ in sources."camel-case-4.1.2" sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -107585,7 +109205,7 @@ in sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."colord-2.9.3" - sources."colorette-2.0.19" + sources."colorette-2.0.20" sources."combined-stream-1.0.8" sources."command-exists-1.2.9" sources."commander-2.17.1" @@ -107621,7 +109241,7 @@ in sources."array-union-3.0.1" sources."glob-parent-6.0.2" sources."globby-12.2.0" - sources."schema-utils-4.0.0" + sources."schema-utils-4.0.1" sources."slash-4.0.0" ]; }) @@ -107642,13 +109262,13 @@ in sources."css-declaration-sorter-6.4.0" (sources."css-loader-6.7.3" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."css-minimizer-webpack-plugin-3.4.1" // { dependencies = [ sources."ajv-keywords-5.1.0" - sources."schema-utils-4.0.0" + sources."schema-utils-4.0.1" ]; }) sources."css-select-4.3.0" @@ -107685,7 +109305,7 @@ in sources."detect-node-2.1.0" sources."dir-glob-3.0.1" sources."dns-equal-1.0.0" - sources."dns-packet-5.5.0" + sources."dns-packet-5.6.0" sources."dom-converter-0.2.0" sources."dom-serializer-1.4.1" sources."domelementtype-2.3.0" @@ -107695,7 +109315,7 @@ in sources."dot-case-3.0.4" sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -107705,7 +109325,7 @@ in ]; }) sources."end-of-stream-1.4.4" - sources."enhanced-resolve-5.12.0" + sources."enhanced-resolve-5.13.0" sources."entities-2.2.0" sources."env-editor-0.4.2" sources."eol-0.9.1" @@ -107732,7 +109352,7 @@ in sources."is-stream-1.1.0" ]; }) - (sources."expo-48.0.11" // { + (sources."expo-48.0.12" // { dependencies = [ sources."@babel/runtime-7.21.0" (sources."@expo/config-8.0.2" // { @@ -107745,7 +109365,7 @@ in sources."commander-7.2.0" sources."expo-modules-autolinking-1.2.0" sources."fs-extra-9.1.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."uuid-3.4.0" ]; }) @@ -107756,7 +109376,7 @@ in sources."@expo/config-8.0.2" sources."@expo/config-plugins-6.0.1" sources."@expo/config-types-48.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."uuid-3.4.0" ]; }) @@ -107877,7 +109497,7 @@ in sources."commander-8.3.0" ]; }) - sources."html-webpack-plugin-5.5.0" + sources."html-webpack-plugin-5.5.1" sources."htmlparser2-6.1.0" sources."http-cache-semantics-4.1.1" sources."http-deceiver-1.2.7" @@ -108019,7 +109639,7 @@ in sources."md5hex-1.0.0" sources."mdn-data-2.0.14" sources."media-typer-0.3.0" - sources."memfs-3.5.0" + sources."memfs-3.5.1" sources."memory-cache-0.2.0" sources."merge-descriptors-1.0.1" sources."merge-stream-2.0.0" @@ -108035,7 +109655,7 @@ in (sources."mini-css-extract-plugin-2.7.5" // { dependencies = [ sources."ajv-keywords-5.1.0" - sources."schema-utils-4.0.0" + sources."schema-utils-4.0.1" ]; }) sources."minimalistic-assert-1.0.1" @@ -108182,7 +109802,7 @@ in ]; }) sources."pngjs-3.4.0" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-calc-8.2.4" sources."postcss-colormin-5.3.1" sources."postcss-convert-values-5.1.3" @@ -108276,8 +109896,8 @@ in ]; }) sources."requires-port-1.0.0" - sources."reselect-4.1.7" - sources."resolve-1.22.2" + sources."reselect-4.1.8" + sources."resolve-1.22.3" sources."resolve-alpn-1.2.1" sources."resolve-from-5.0.0" sources."responselike-2.0.1" @@ -108442,7 +110062,7 @@ in ]; }) sources."terminal-link-2.1.1" - (sources."terser-5.16.9" // { + (sources."terser-5.17.1" // { dependencies = [ sources."commander-2.20.3" sources."source-map-support-0.5.21" @@ -108452,7 +110072,7 @@ in dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" ]; }) sources."text-table-0.2.0" @@ -108485,7 +110105,7 @@ in sources."universalify-2.0.0" sources."unpipe-1.0.0" sources."untildify-3.0.3" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."update-check-1.5.3" sources."uri-js-4.4.1" sources."url-join-4.0.0" @@ -108507,21 +110127,21 @@ in sources."wbuf-1.7.3" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" - (sources."webpack-5.79.0" // { + (sources."webpack-5.80.0" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" sources."webpack-sources-3.2.3" ]; }) (sources."webpack-dev-middleware-5.3.3" // { dependencies = [ sources."ajv-keywords-5.1.0" - sources."schema-utils-4.0.0" + sources."schema-utils-4.0.1" ]; }) - (sources."webpack-dev-server-4.13.2" // { + (sources."webpack-dev-server-4.13.3" // { dependencies = [ sources."@types/retry-0.12.0" sources."ajv-keywords-5.1.0" @@ -108545,7 +110165,7 @@ in sources."raw-body-2.5.1" sources."retry-0.13.1" sources."rimraf-3.0.2" - sources."schema-utils-4.0.0" + sources."schema-utils-4.0.1" sources."serve-static-1.15.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -108652,10 +110272,10 @@ in ]; }) sources."@types/minimist-1.2.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/normalize-package-data-2.4.1" sources."@types/prop-types-15.7.5" - sources."@types/react-18.0.35" + sources."@types/react-18.0.37" sources."@types/scheduler-0.16.3" sources."@types/yauzl-2.10.0" sources."@types/yoga-layout-1.9.2" @@ -108683,7 +110303,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -108709,7 +110329,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.981744" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -108788,7 +110408,7 @@ in (sources."normalize-package-data-3.0.3" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yallist-4.0.0" ]; }) @@ -108816,7 +110436,7 @@ in }) sources."quick-lru-4.0.1" sources."react-17.0.2" - sources."react-devtools-core-4.27.4" + sources."react-devtools-core-4.27.6" sources."react-reconciler-0.26.2" (sources."read-pkg-5.2.0" // { dependencies = [ @@ -108833,7 +110453,7 @@ in }) sources."readable-stream-3.6.2" sources."redent-3.0.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-3.0.0" sources."restore-cursor-3.1.0" sources."rimraf-3.0.2" @@ -108873,7 +110493,7 @@ in sources."trim-newlines-3.0.1" sources."type-fest-0.12.0" sources."unbzip2-stream-1.4.3" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."utf-8-validate-5.0.10" sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" @@ -108929,7 +110549,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/command-1.8.22" + sources."@oclif/command-1.8.23" sources."@oclif/config-1.18.8" sources."@oclif/errors-1.3.6" (sources."@oclif/help-1.0.5" // { @@ -109049,7 +110669,7 @@ in sources."semver-5.7.1" ]; }) - sources."csv-parse-5.3.6" + sources."csv-parse-5.3.8" sources."csv-stream-0.2.0" sources."dashdash-1.14.1" sources."debug-4.3.4" @@ -109233,7 +110853,7 @@ in sources."rxjs-7.8.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."signal-exit-3.0.7" @@ -109304,10 +110924,10 @@ in firebase-tools = nodeEnv.buildNodePackage { name = "firebase-tools"; packageName = "firebase-tools"; - version = "11.26.0"; + version = "11.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.26.0.tgz"; - sha512 = "IR+hBEaaAlFCXxT6xvu6cqCszo6658TI4eGgzU9mAcihZTDN3c+3NV5PZqu+QU7Nds/Ak7SUUK/Sfjtu0BBriw=="; + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.28.0.tgz"; + sha512 = "rDRzByyUD9RKZ4xPmvOCYsy1qvUIl/c+KPfO1i1a616lEnAlxoReb9GT6GIDujKcJa0CpgR9iDxqLfkxYfRE5A=="; }; dependencies = [ (sources."@apidevtools/json-schema-ref-parser-9.1.2" // { @@ -109323,7 +110943,7 @@ in sources."@google-cloud/precise-date-3.0.1" sources."@google-cloud/projectify-3.0.0" sources."@google-cloud/promisify-2.0.4" - (sources."@google-cloud/pubsub-3.4.1" // { + (sources."@google-cloud/pubsub-3.5.0" // { dependencies = [ sources."google-auth-library-8.7.0" ]; @@ -109334,7 +110954,7 @@ in sources."@jsdoc/salty-0.2.5" (sources."@npmcli/fs-2.1.2" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."@npmcli/move-file-2.0.1" @@ -109366,7 +110986,7 @@ in sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" sources."@types/minimatch-5.1.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/rimraf-3.0.2" sources."@types/triple-beam-1.3.2" sources."abbrev-1.1.1" @@ -109487,7 +111107,7 @@ in sources."color-name-1.1.4" sources."color-string-1.9.1" sources."color-support-1.1.3" - sources."colorette-2.0.19" + sources."colorette-2.0.20" sources."colors-1.0.3" sources."colorspace-1.1.4" sources."combined-stream-1.0.8" @@ -109541,7 +111161,7 @@ in ]; }) sources."crypto-random-string-2.0.0" - sources."csv-parse-5.3.6" + sources."csv-parse-5.3.8" sources."dashdash-1.14.1" sources."data-uri-to-buffer-3.0.1" sources."debug-4.3.4" @@ -109599,7 +111219,7 @@ in dependencies = [ sources."ajv-8.12.0" sources."json-schema-traverse-1.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."exegesis-express-4.0.0" @@ -109774,7 +111394,7 @@ in dependencies = [ sources."jwa-1.4.1" sources."jws-3.2.2" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."jsprim-1.4.2" @@ -109872,7 +111492,7 @@ in sources."node-forge-1.3.1" (sources."node-gyp-9.3.1" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" sources."which-2.0.2" ]; }) @@ -109926,14 +111546,14 @@ in sources."proto3-json-serializer-1.1.0" (sources."protobufjs-7.2.3" // { dependencies = [ - sources."long-5.2.1" + sources."long-5.2.3" ]; }) (sources."protobufjs-cli-1.1.1" // { dependencies = [ sources."glob-8.1.0" sources."minimatch-5.1.6" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."proxy-addr-2.0.7" @@ -110042,7 +111662,7 @@ in sources."strip-json-comments-3.1.1" (sources."superstatic-9.0.3" // { dependencies = [ - sources."commander-10.0.0" + sources."commander-10.0.1" sources."isarray-0.0.1" sources."minimatch-6.2.0" sources."path-to-regexp-1.8.0" @@ -110097,7 +111717,7 @@ in }) (sources."update-notifier-cjs-5.1.6" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."uri-js-4.4.1" @@ -110113,7 +111733,7 @@ in sources."core-util-is-1.0.2" ]; }) - sources."vm2-3.9.16" + sources."vm2-3.9.17" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-fetch-3.6.2" @@ -110368,7 +111988,7 @@ in sources."rxjs-7.8.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" @@ -110432,7 +112052,7 @@ in sources."@types/atob-2.1.2" sources."@types/bn.js-5.1.1" sources."@types/inquirer-6.5.0" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/pbkdf2-3.1.0" sources."@types/secp256k1-4.0.3" sources."@types/through-0.0.30" @@ -110628,7 +112248,7 @@ in sources."web3-utils-1.9.0" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."wrap-ansi-6.2.0" sources."y18n-4.0.3" sources."yargs-15.4.1" @@ -110970,7 +112590,7 @@ in }) sources."readdirp-2.2.1" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."remove-trailing-separator-1.1.0" sources."repeat-element-1.1.4" sources."repeat-string-1.6.1" @@ -111115,10 +112735,10 @@ in fx = nodeEnv.buildNodePackage { name = "fx"; packageName = "fx"; - version = "26.0.0"; + version = "27.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/fx/-/fx-26.0.0.tgz"; - sha512 = "xdxZpc6OXcUoem0EDDvtWsnFeYroBYg6v97FuGESKM217sIxpCGnb/MQ+O8m1Jpd4TafWyU+7pT5tNX3TwT44w=="; + url = "https://registry.npmjs.org/fx/-/fx-27.0.0.tgz"; + sha512 = "am6jTZW1vTfdc42QH63qqtN5QoNb7JiD+DH40SokzVKSofKCcqSAq1V6ASCR/d3R2YyLFD68h6nWaSVt/BZqDA=="; }; buildInputs = globalBuildInputs; meta = { @@ -111142,7 +112762,7 @@ in sources."@trufflesuite/uws-js-unofficial-20.10.0-unofficial.2" sources."@types/bn.js-5.1.1" sources."@types/lru-cache-5.1.1" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/seedrandom-3.0.1" sources."abstract-level-1.0.3" (sources."abstract-leveldown-7.2.0" // { @@ -111182,10 +112802,10 @@ in gatsby-cli = nodeEnv.buildNodePackage { name = "gatsby-cli"; packageName = "gatsby-cli"; - version = "5.8.0"; + version = "5.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.8.0.tgz"; - sha512 = "lkNPaY5O/u004+8b0ayqORSiV7aGW4MtSCc1lHMWv0kflJqN8gxtiynUUgPmYo6ppfvtO3ddDQzO91z0nNLlXQ=="; + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz"; + sha512 = "yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA=="; }; dependencies = [ sources."@ampproject/remapping-2.2.1" @@ -111270,7 +112890,7 @@ in sources."@types/common-tags-1.8.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/node-fetch-2.6.3" sources."@types/responselike-1.0.0" sources."@types/yoga-layout-1.9.2" @@ -111297,7 +112917,7 @@ in ]; }) sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -111334,7 +112954,7 @@ in sources."configstore-5.0.1" sources."convert-hrtime-3.0.0" sources."convert-source-map-1.9.0" - sources."create-gatsby-3.8.0" + sources."create-gatsby-3.9.0" (sources."cross-spawn-6.0.5" // { dependencies = [ sources."semver-5.7.1" @@ -111358,7 +112978,7 @@ in sources."domhandler-4.3.1" sources."domutils-2.8.0" sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -111392,8 +113012,8 @@ in sources."fs-exists-cached-1.0.0" sources."fs-extra-11.1.1" sources."fs.realpath-1.0.0" - sources."gatsby-core-utils-4.8.0" - sources."gatsby-telemetry-4.8.0" + sources."gatsby-core-utils-4.9.0" + sources."gatsby-telemetry-4.9.0" sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" sources."get-stream-4.1.0" @@ -111525,7 +113145,7 @@ in sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" sources."yallist-4.0.0" @@ -111558,14 +113178,14 @@ in sources."typedarray-to-buffer-3.1.5" sources."unique-string-2.0.0" sources."universalify-2.0.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."util-deprecate-1.0.2" sources."utila-0.4.0" sources."weak-lru-cache-1.2.2" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-1.3.1" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."widest-line-3.1.0" (sources."wrap-ansi-7.0.0" // { dependencies = [ @@ -112012,7 +113632,7 @@ in sources."remove-trailing-separator-1.1.0" sources."replace-ext-1.0.1" sources."request-light-0.7.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."restore-cursor-3.1.0" sources."retry-0.12.0" sources."reusify-1.0.4" @@ -112024,7 +113644,7 @@ in sources."safer-buffer-2.1.2" sources."sanitize-filename-1.6.3" sources."scoped-regex-2.1.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."set-blocking-2.0.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -112438,7 +114058,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/responselike-1.0.0" sources."ansi-regex-6.0.1" sources."ansi-styles-4.3.0" @@ -112543,17 +114163,17 @@ in "@githubnext/github-copilot-cli" = nodeEnv.buildNodePackage { name = "_at_githubnext_slash_github-copilot-cli"; packageName = "@githubnext/github-copilot-cli"; - version = "0.1.32"; + version = "0.1.33"; src = fetchurl { - url = "https://registry.npmjs.org/@githubnext/github-copilot-cli/-/github-copilot-cli-0.1.32.tgz"; - sha512 = "+hSxj8IrcQCyGYe8uWMYni90dZNHCWQpmNe+woXFOXB6SYVJ0aHhr3TE9lxNgx0+oh9aYox3bSBq2o8Pd1YBRA=="; + url = "https://registry.npmjs.org/@githubnext/github-copilot-cli/-/github-copilot-cli-0.1.33.tgz"; + sha512 = "/UU2qQ/k9bPzf1aN3zJallDT6JwfQIgBX6O5z62SfyGpPZaDrgNoYF7M2G2MIKnYb+hlyosiWZ/nrmOG8XRwsg=="; }; dependencies = [ sources."@azure/abort-controller-1.1.0" sources."@azure/core-auth-1.4.0" sources."@azure/core-rest-pipeline-1.10.3" sources."@azure/core-tracing-1.0.1" - sources."@azure/core-util-1.3.0" + sources."@azure/core-util-1.3.1" sources."@azure/logger-1.0.4" sources."@azure/opentelemetry-instrumentation-azure-sdk-1.0.0-beta.2" sources."@babel/runtime-7.21.0" @@ -112569,7 +114189,7 @@ in sources."@opentelemetry/semantic-conventions-1.12.0" sources."@tootallnate/once-2.0.0" sources."@types/prop-types-15.7.5" - sources."@types/react-18.0.35" + sources."@types/react-18.0.37" sources."@types/scheduler-0.16.3" sources."@types/yoga-layout-1.9.2" sources."abbrev-1.1.1" @@ -112597,7 +114217,7 @@ in }) sources."asynckit-0.4.0" sources."auto-bind-4.0.0" - sources."axios-1.3.5" + sources."axios-1.3.6" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."big-integer-1.6.51" @@ -112799,7 +114419,7 @@ in sources."proxy-from-env-1.1.0" sources."radash-9.5.0" sources."react-17.0.2" - sources."react-devtools-core-4.27.4" + sources."react-devtools-core-4.27.6" sources."react-dom-17.0.2" sources."react-is-16.13.1" sources."react-query-3.39.3" @@ -112810,7 +114430,7 @@ in sources."remove-accents-0.4.2" sources."require-directory-2.1.1" sources."require-in-the-middle-5.2.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."restore-cursor-3.1.0" sources."rimraf-3.0.2" sources."run-async-2.4.1" @@ -112818,7 +114438,7 @@ in sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."scheduler-0.20.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."set-blocking-2.0.0" sources."shell-quote-1.8.1" sources."shimmer-1.2.1" @@ -113169,7 +114789,7 @@ in sources."rxjs-7.8.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."semver-diff-4.0.0" sources."setprototypeof-1.2.0" sources."shebang-command-2.0.0" @@ -113213,7 +114833,7 @@ in sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" sources."validator-13.9.0" - sources."vm2-3.9.16" + sources."vm2-3.9.17" sources."wcwidth-1.0.1" sources."web-streams-polyfill-3.2.1" sources."when-exit-2.1.0" @@ -113241,19 +114861,39 @@ in glob = nodeEnv.buildNodePackage { name = "glob"; packageName = "glob"; - version = "10.0.0"; + version = "10.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-10.0.0.tgz"; - sha512 = "zmp9ZDC6NpDNLujV2W2n+3lH+BafIVZ4/ct+Yj3BMZTH/+bgm/eVjHzeFLwxJrrIGgjjS2eiQLlpurHsNlEAtQ=="; + url = "https://registry.npmjs.org/glob/-/glob-10.2.1.tgz"; + sha512 = "ngom3wq2UhjdbmRE/krgkD8BQyi1KZ5l+D2dVm4+Yj+jJIBp74/ZGunL6gNGc/CYuQmvUBiavWEXIotRiv5R6A=="; }; dependencies = [ + sources."@pkgjs/parseargs-0.11.0" + sources."ansi-regex-5.0.1" + sources."ansi-styles-4.3.0" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" + sources."cliui-7.0.4" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."cross-spawn-7.0.3" + sources."emoji-regex-8.0.0" + sources."foreground-child-3.1.1" sources."fs.realpath-1.0.0" - sources."lru-cache-9.0.2" + sources."is-fullwidth-code-point-3.0.0" + sources."isexe-2.0.0" + sources."jackspeak-2.0.3" + sources."lru-cache-9.1.0" sources."minimatch-9.0.0" sources."minipass-5.0.0" - sources."path-scurry-1.6.4" + sources."path-key-3.1.1" + sources."path-scurry-1.7.0" + sources."shebang-command-2.0.0" + sources."shebang-regex-3.0.0" + sources."signal-exit-4.0.1" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + sources."which-2.0.2" + sources."wrap-ansi-7.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -113456,7 +115096,7 @@ in sources."vscode-jsonrpc-6.0.0" sources."vscode-languageserver-7.0.0" sources."vscode-languageserver-protocol-3.16.0" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.16.0" sources."web-tree-sitter-0.20.5" sources."webidl-conversions-3.0.1" @@ -113609,7 +115249,7 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/parse-json-4.0.0" sources."@types/websocket-1.0.2" sources."abort-controller-3.0.0" @@ -113968,7 +115608,7 @@ in sources."queue-microtask-1.2.3" sources."rc-1.2.8" sources."reftools-1.1.9" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" sources."remove-trailing-separator-1.1.0" @@ -114097,8 +115737,8 @@ in sources."@babel/types-7.21.4" sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" sources."@graphql-tools/batch-execute-8.5.19" - sources."@graphql-tools/delegate-9.0.31" - sources."@graphql-tools/executor-0.0.17" + sources."@graphql-tools/delegate-9.0.32" + sources."@graphql-tools/executor-0.0.18" sources."@graphql-tools/executor-graphql-ws-0.0.14" sources."@graphql-tools/executor-http-0.1.9" sources."@graphql-tools/executor-legacy-ws-0.0.11" @@ -114120,7 +115760,7 @@ in sources."@peculiar/json-schema-1.1.12" sources."@peculiar/webcrypto-1.4.3" sources."@repeaterjs/repeater-3.0.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/parse-json-4.0.0" sources."@types/ws-8.5.4" sources."@vue/compiler-core-3.2.47" @@ -114130,8 +115770,8 @@ in sources."@vue/reactivity-transform-3.2.47" sources."@vue/shared-3.2.47" sources."@whatwg-node/events-0.0.2" - sources."@whatwg-node/fetch-0.8.4" - sources."@whatwg-node/node-fetch-0.3.4" + sources."@whatwg-node/fetch-0.8.5" + sources."@whatwg-node/node-fetch-0.3.5" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."arg-4.1.3" @@ -114227,7 +115867,7 @@ in sources."path-type-4.0.0" sources."picocolors-1.0.0" sources."picomatch-2.3.1" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."punycode-1.4.1" sources."pvtsutils-1.3.2" sources."pvutils-1.1.3" @@ -114256,7 +115896,7 @@ in sources."tslib-2.5.0" sources."typescript-5.0.4" sources."unixify-1.0.0" - sources."urlpattern-polyfill-6.0.2" + sources."urlpattern-polyfill-7.0.0" sources."utf-8-validate-6.0.3" sources."value-or-promise-1.0.12" sources."vscode-jsonrpc-8.1.0" @@ -114319,8 +115959,8 @@ in }) sources."@cronvel/get-pixels-3.4.1" sources."@graphql-tools/batch-execute-8.5.19" - sources."@graphql-tools/delegate-9.0.31" - sources."@graphql-tools/executor-0.0.17" + sources."@graphql-tools/delegate-9.0.32" + sources."@graphql-tools/executor-0.0.18" (sources."@graphql-tools/executor-graphql-ws-0.0.14" // { dependencies = [ sources."isomorphic-ws-5.0.0" @@ -114387,11 +116027,11 @@ in sources."@peculiar/webcrypto-1.4.3" sources."@repeaterjs/repeater-3.0.4" sources."@types/json-schema-7.0.9" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/ws-8.5.4" sources."@whatwg-node/events-0.0.2" - sources."@whatwg-node/fetch-0.8.4" - sources."@whatwg-node/node-fetch-0.3.4" + sources."@whatwg-node/fetch-0.8.5" + sources."@whatwg-node/node-fetch-0.3.5" sources."accepts-1.3.8" sources."ansi-escapes-3.2.0" sources."ansi-regex-5.0.1" @@ -114614,7 +116254,7 @@ in sources."run-parallel-1.2.0" sources."safe-buffer-5.1.1" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" (sources."send-0.16.2" // { dependencies = [ sources."debug-2.6.9" @@ -114662,7 +116302,7 @@ in sources."universalify-0.1.2" sources."unixify-1.0.0" sources."unpipe-1.0.0" - sources."urlpattern-polyfill-6.0.2" + sources."urlpattern-polyfill-7.0.0" sources."utf-8-validate-6.0.3" sources."utils-merge-1.0.1" sources."value-or-promise-1.0.12" @@ -114754,7 +116394,7 @@ in sources."path-root-regex-0.1.2" sources."picomatch-2.3.1" sources."rechoir-0.7.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-dir-1.0.1" sources."supports-preserve-symlinks-flag-1.0.0" sources."to-regex-range-5.0.1" @@ -115347,7 +116987,7 @@ in sources."replace-homedir-1.0.0" sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-dir-1.0.1" sources."resolve-options-1.1.0" sources."resolve-url-0.2.1" @@ -115754,7 +117394,7 @@ in sources."replace-homedir-1.0.0" sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-dir-1.0.1" sources."resolve-url-0.2.1" sources."ret-0.1.15" @@ -116215,7 +117855,7 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1358.0" + sources."aws-sdk-2.1362.0" sources."aws-sign2-0.7.0" sources."aws4-1.12.0" sources."base64-js-1.5.1" @@ -116885,9 +118525,9 @@ in dependencies = [ sources."@azure/abort-controller-1.1.0" sources."@azure/core-auth-1.4.0" - sources."@azure/core-http-2.3.1" + sources."@azure/core-http-2.3.2" sources."@azure/core-tracing-1.0.0-preview.13" - sources."@azure/core-util-1.3.0" + sources."@azure/core-util-1.3.1" sources."@azure/logger-1.0.4" sources."@bmewburn/js-beautify-1.14.7" sources."@bmewburn/vscode-html-languageserver-1.9.0" @@ -116916,7 +118556,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@selderee/plugin-htmlparser2-0.11.0" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" (sources."@types/node-fetch-2.6.3" // { dependencies = [ sources."form-data-3.0.1" @@ -117044,7 +118684,7 @@ in }) sources."jsprim-1.4.2" sources."leac-0.6.0" - sources."long-5.2.1" + sources."long-5.2.3" sources."lru-cache-7.14.1" (sources."make-dir-3.1.0" // { dependencies = [ @@ -117162,7 +118802,7 @@ in sources."vscode-languageserver-types-3.17.3" ]; }) - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.2" sources."vscode-nls-5.2.0" sources."vscode-uri-3.0.7" @@ -117170,7 +118810,7 @@ in sources."whatwg-url-5.0.0" sources."wide-align-1.1.5" sources."wrappy-1.0.2" - sources."xml2js-0.4.23" + sources."xml2js-0.5.0" sources."xmlbuilder-11.0.1" sources."yallist-2.1.2" ]; @@ -117816,13 +119456,13 @@ in sources."npmlog-5.0.1" sources."readable-stream-3.6.2" sources."rimraf-3.0.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."string-width-4.2.3" ]; }) (sources."@npmcli/fs-1.1.1" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."@npmcli/move-file-1.1.2" // { @@ -117833,7 +119473,7 @@ in }) sources."@tootallnate/once-2.0.0" sources."@types/nanoid-3.0.0" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/ws-8.5.4" sources."abab-2.0.6" sources."abbrev-1.1.1" @@ -118406,9 +120046,9 @@ in sources."negotiator-0.6.3" sources."nextgen-events-1.5.3" sources."no-case-2.3.2" - (sources."node-abi-3.35.0" // { + (sources."node-abi-3.40.0" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."node-addon-api-4.3.0" @@ -118429,7 +120069,7 @@ in sources."npmlog-6.0.2" sources."readable-stream-3.6.2" sources."rimraf-3.0.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."string-width-4.2.3" sources."which-2.0.2" ]; @@ -118437,7 +120077,7 @@ in sources."node-gyp-build-4.6.0" (sources."node-notifier-10.0.1" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" sources."uuid-8.3.2" sources."which-2.0.2" ]; @@ -118551,7 +120191,7 @@ in sources."decompress-response-6.0.0" sources."mimic-response-3.1.0" sources."node-addon-api-5.1.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."simple-get-4.0.1" ]; }) @@ -119011,7 +120651,7 @@ in sources."qs-6.11.1" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."side-channel-1.0.4" sources."slash-3.0.0" sources."sprintf-js-1.0.3" @@ -119082,7 +120722,7 @@ in sources."brace-expansion-1.1.11" (sources."builtins-5.0.1" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."bytes-3.1.2" @@ -119142,7 +120782,7 @@ in sources."ms-2.1.3" ]; }) - (sources."eslint-module-utils-2.7.4" // { + (sources."eslint-module-utils-2.8.0" // { dependencies = [ sources."debug-3.2.7" sources."ms-2.1.3" @@ -119163,7 +120803,7 @@ in }) (sources."eslint-plugin-n-15.7.0" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."eslint-plugin-promise-6.1.1" @@ -119353,10 +120993,10 @@ in sources."range-parser-1.2.1" sources."raw-body-2.5.2" sources."react-is-16.13.1" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."regexpp-3.2.0" sources."require-directory-2.1.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" @@ -119883,7 +121523,7 @@ in }) sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-url-0.2.1" sources."ret-0.1.15" sources."safe-buffer-5.1.2" @@ -120046,7 +121686,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/command-1.8.22" + sources."@oclif/command-1.8.23" sources."@oclif/config-1.18.8" sources."@oclif/errors-1.3.6" (sources."@oclif/help-1.0.5" // { @@ -120231,7 +121871,7 @@ in ]; }) sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" @@ -120272,10 +121912,10 @@ in katex = nodeEnv.buildNodePackage { name = "katex"; packageName = "katex"; - version = "0.16.4"; + version = "0.16.6"; src = fetchurl { - url = "https://registry.npmjs.org/katex/-/katex-0.16.4.tgz"; - sha512 = "WudRKUj8yyBeVDI4aYMNxhx5Vhh2PjpzQw1GRu/LVGqL4m1AxwD1GcUp0IMbdJaf5zsjtj8ghP0DOQRYhroNkw=="; + url = "https://registry.npmjs.org/katex/-/katex-0.16.6.tgz"; + sha512 = "XVB7X8jEogjJ+OY+a9JdE+VOk9i7znela0HP6WaDbpB4sUh8ghrG0Ccluu2MA2tcJbFAViBC9aVXus2UvkEr8A=="; }; dependencies = [ sources."commander-8.3.0" @@ -120303,7 +121943,7 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -120527,7 +122167,7 @@ in sources."semver-6.3.0" ]; }) - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yallist-4.0.0" ]; }) @@ -120618,7 +122258,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."canvas-2.11.2" sources."chalk-2.4.2" sources."chardet-1.5.1" @@ -120678,7 +122318,7 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -120725,6 +122365,7 @@ in sources."fresh-0.5.2" (sources."from2-2.3.0" // { dependencies = [ + sources."isarray-1.0.0" sources."readable-stream-2.3.8" sources."safe-buffer-5.1.2" sources."string_decoder-1.1.1" @@ -120813,7 +122454,7 @@ in sources."is-typed-array-1.1.10" sources."is-weakref-1.0.2" sources."is-wsl-2.2.0" - sources."isarray-1.0.0" + sources."isarray-2.0.5" sources."isexe-2.0.0" sources."isobject-3.0.1" sources."js-tokens-4.0.0" @@ -120869,10 +122510,10 @@ in sources."nan-2.17.0" sources."napi-build-utils-1.0.2" sources."negotiator-0.6.3" - (sources."node-abi-3.35.0" // { + (sources."node-abi-3.40.0" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yallist-4.0.0" ]; }) @@ -120882,7 +122523,7 @@ in (sources."node-notifier-10.0.1" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yallist-4.0.0" ]; }) @@ -120894,10 +122535,10 @@ in sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."object.assign-4.1.4" - sources."object.getownpropertydescriptors-2.1.5" + sources."object.getownpropertydescriptors-2.1.6" sources."on-finished-2.4.1" sources."once-1.4.0" - sources."openpgp-5.7.0" + sources."openpgp-5.8.0" sources."optionator-0.8.3" sources."p-is-promise-3.0.0" sources."p-limit-2.3.0" @@ -120937,7 +122578,7 @@ in sources."color-name-1.1.4" sources."has-flag-4.0.0" sources."lru-cache-6.0.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."supports-color-7.2.0" sources."yallist-4.0.0" ]; @@ -120972,10 +122613,10 @@ in sources."rc-1.2.8" sources."readable-stream-3.6.2" sources."regenerator-runtime-0.13.11" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."require-directory-2.1.1" sources."requires-port-1.0.0" - (sources."resolve-1.22.2" // { + (sources."resolve-1.22.3" // { dependencies = [ sources."is-core-module-2.12.0" ]; @@ -120984,6 +122625,7 @@ in sources."rimraf-3.0.2" sources."ripemd160-2.0.2" sources."run-parallel-1.2.0" + sources."safe-array-concat-1.0.0" sources."safe-buffer-5.2.1" sources."safe-regex-test-1.0.0" sources."safer-buffer-2.1.2" @@ -121020,6 +122662,7 @@ in sources."statuses-2.0.1" (sources."stream-meter-1.0.4" // { dependencies = [ + sources."isarray-1.0.0" sources."readable-stream-2.3.8" sources."safe-buffer-5.1.2" sources."string_decoder-1.1.1" @@ -121060,7 +122703,7 @@ in sources."unbox-primitive-1.0.2" sources."universalify-0.2.0" sources."unpipe-1.0.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."url-parse-1.5.10" sources."utf-8-validate-6.0.3" sources."util-deprecate-1.0.2" @@ -121394,7 +123037,7 @@ in sources."webidl-conversions-2.0.1" sources."whatwg-url-compat-0.6.5" sources."which-1.3.1" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."window-size-0.1.4" (sources."winston-2.1.1" // { dependencies = [ @@ -121629,7 +123272,7 @@ in sources."wcwidth-1.0.1" sources."webidl-conversions-2.0.1" sources."whatwg-url-compat-0.6.5" - sources."which-module-2.0.0" + sources."which-module-2.0.1" (sources."winston-2.1.1" // { dependencies = [ sources."async-1.0.0" @@ -121726,7 +123369,7 @@ in sources."npm-package-arg-10.1.0" sources."npm-packlist-7.0.4" sources."npmlog-7.0.1" - sources."pacote-15.1.1" + sources."pacote-15.1.2" sources."read-package-json-6.0.1" sources."ssri-10.0.3" sources."validate-npm-package-name-5.0.0" @@ -121745,7 +123388,7 @@ in sources."@npmcli/run-script-6.0.0" sources."npm-package-arg-10.1.0" sources."npm-packlist-7.0.4" - sources."pacote-15.1.1" + sources."pacote-15.1.2" sources."read-package-json-6.0.1" sources."ssri-10.0.3" sources."validate-npm-package-name-5.0.0" @@ -121800,7 +123443,7 @@ in sources."@octokit/core-4.2.0" sources."@octokit/endpoint-7.0.5" sources."@octokit/graphql-5.0.5" - sources."@octokit/openapi-types-16.0.0" + sources."@octokit/openapi-types-17.0.0" sources."@octokit/plugin-enterprise-rest-6.0.1" (sources."@octokit/plugin-paginate-rest-3.1.0" // { dependencies = [ @@ -121818,30 +123461,30 @@ in sources."@octokit/request-6.2.3" sources."@octokit/request-error-3.0.3" sources."@octokit/rest-19.0.3" - sources."@octokit/types-9.0.0" + sources."@octokit/types-9.1.1" sources."@parcel/watcher-2.0.4" sources."@sigstore/protobuf-specs-0.1.0" sources."@sinclair/typebox-0.25.24" sources."@swc-node/core-1.10.3" sources."@swc-node/register-1.6.4" sources."@swc-node/sourcemap-support-0.3.0" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" - (sources."@tufjs/models-1.0.2" // { + (sources."@tufjs/models-1.0.3" // { dependencies = [ - sources."minimatch-8.0.4" + sources."minimatch-7.4.6" ]; }) sources."@types/minimatch-3.0.5" @@ -121882,7 +123525,7 @@ in sources."async-3.2.4" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - sources."axios-1.3.5" + sources."axios-1.3.6" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."before-after-hook-2.2.3" @@ -121927,7 +123570,7 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."color-support-1.1.3" - sources."colorette-2.0.19" + sources."colorette-2.0.20" sources."columnify-1.6.0" sources."combined-stream-1.0.8" sources."common-ancestor-path-1.0.1" @@ -122476,9 +124119,9 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" - (sources."path-scurry-1.6.4" // { + (sources."path-scurry-1.7.0" // { dependencies = [ - sources."lru-cache-9.0.2" + sources."lru-cache-9.1.0" sources."minipass-5.0.0" ]; }) @@ -122555,7 +124198,7 @@ in sources."readable-stream-3.6.2" sources."redent-3.0.0" sources."require-directory-2.1.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-cwd-3.0.0" sources."resolve-from-5.0.0" sources."restore-cursor-3.1.0" @@ -122567,7 +124210,7 @@ in sources."rxjs-7.8.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -122577,7 +124220,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - sources."sigstore-1.2.0" + sources."sigstore-1.3.2" sources."slash-3.0.0" sources."smart-buffer-4.2.0" sources."socks-2.7.1" @@ -122630,7 +124273,7 @@ in sources."trim-newlines-3.0.1" sources."tsconfig-paths-4.2.0" sources."tslib-2.5.0" - sources."tuf-js-1.1.3" + sources."tuf-js-1.1.4" sources."type-fest-0.21.3" sources."typedarray-0.0.6" sources."typescript-4.9.5" @@ -123673,7 +125316,7 @@ in sources."@types/commander-2.12.2" sources."@types/diff-3.5.5" sources."@types/get-stdin-5.0.1" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."commander-2.20.3" sources."diff-3.5.0" sources."get-stdin-5.0.1" @@ -123915,7 +125558,7 @@ in sources."readable-stream-1.0.2" ]; }) - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."wrap-ansi-5.1.0" sources."wrappy-1.0.2" sources."y18n-4.0.3" @@ -123982,10 +125625,10 @@ in markdownlint-cli2 = nodeEnv.buildNodePackage { name = "markdownlint-cli2"; packageName = "markdownlint-cli2"; - version = "0.6.0"; + version = "0.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.6.0.tgz"; - sha512 = "Bv20r6WGdcHMWi8QvAFZ3CBunf4i4aYmVdTfpAvXODI/1k3f09DZZ0i0LcX9ZMhlVxjoOzbVDz1NWyKc5hwTqg=="; + url = "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.7.0.tgz"; + sha512 = "67r1t9ep+z0fa6g9TgL3tiPQeWo297ip165Et2u54UquJAkXWnq6e+dXFBjSPft/iLaGJfU0fUHXhXueqNUkGQ=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.5" @@ -123999,16 +125642,17 @@ in sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."glob-parent-5.1.2" - sources."globby-13.1.3" + sources."globby-13.1.4" sources."ignore-5.2.4" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."linkify-it-4.0.1" sources."markdown-it-13.0.1" - sources."markdownlint-0.27.0" - sources."markdownlint-cli2-0.6.0" - sources."markdownlint-cli2-formatter-default-0.0.3" + sources."markdownlint-0.28.1" + sources."markdownlint-cli2-0.7.0" + sources."markdownlint-cli2-formatter-default-0.0.4" + sources."markdownlint-micromark-0.1.2" sources."mdurl-1.0.1" sources."merge2-1.4.1" sources."micromatch-4.0.5" @@ -124047,7 +125691,7 @@ in sources."chalk-5.2.0" sources."cheerio-1.0.0-rc.12" sources."cheerio-select-2.1.0" - sources."commander-10.0.0" + sources."commander-10.0.1" sources."css-select-5.1.0" sources."css-what-6.1.0" sources."debug-3.2.7" @@ -124193,7 +125837,7 @@ in sources."@babel/plugin-transform-regenerator-7.20.5" (sources."@babel/plugin-transform-runtime-7.0.0" // { dependencies = [ - sources."resolve-1.22.2" + sources."resolve-1.22.3" ]; }) sources."@babel/plugin-transform-shorthand-properties-7.18.6" @@ -124365,7 +126009,7 @@ in }) sources."cache-base-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."case-sensitive-paths-webpack-plugin-2.1.2" sources."chalk-2.4.2" sources."chart.js-2.9.4" @@ -124452,7 +126096,7 @@ in sources."domain-browser-1.2.0" sources."duplexify-3.7.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -124767,7 +126411,7 @@ in sources."node-releases-2.0.10" (sources."normalize-package-data-2.5.0" // { dependencies = [ - sources."resolve-1.22.2" + sources."resolve-1.22.3" ]; }) sources."normalize-path-3.0.0" @@ -124789,7 +126433,7 @@ in sources."object-keys-1.1.1" sources."object-visit-1.0.1" sources."object.assign-4.1.4" - sources."object.getownpropertydescriptors-2.1.5" + sources."object.getownpropertydescriptors-2.1.6" sources."object.pick-1.3.0" sources."on-finished-2.3.0" sources."once-1.4.0" @@ -124880,7 +126524,7 @@ in ]; }) sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."regexpu-core-5.3.2" (sources."regjsparser-0.9.1" // { dependencies = [ @@ -124902,6 +126546,11 @@ in }) sources."ripemd160-2.0.2" sources."run-queue-1.0.3" + (sources."safe-array-concat-1.0.0" // { + dependencies = [ + sources."isarray-2.0.5" + ]; + }) sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" sources."safe-regex-test-1.0.0" @@ -125112,7 +126761,7 @@ in ]; }) sources."upath-1.2.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."urix-0.1.0" (sources."url-0.11.0" // { @@ -125128,7 +126777,7 @@ in ]; }) sources."util-deprecate-1.0.2" - sources."util.promisify-1.1.1" + sources."util.promisify-1.1.2" sources."uuid-3.4.0" sources."validate-npm-package-license-3.0.4" sources."vm-browserify-1.1.2" @@ -125427,7 +127076,7 @@ in sources."replace-ext-0.0.1" sources."request-2.88.0" sources."require-uncached-1.0.3" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-1.0.1" sources."restore-cursor-1.0.1" sources."rimraf-2.6.3" @@ -125571,8 +127220,8 @@ in sources."chalk-2.4.2" ]; }) - sources."@puppeteer/browsers-0.4.1" - sources."@types/node-18.15.11" + sources."@puppeteer/browsers-0.5.0" + sources."@types/node-18.15.13" sources."@types/yauzl-2.10.0" sources."agent-base-6.0.2" sources."ansi-regex-5.0.1" @@ -125590,7 +127239,7 @@ in sources."cliui-8.0.1" sources."color-convert-1.9.3" sources."color-name-1.1.3" - sources."commander-10.0.0" + sources."commander-10.0.1" sources."cosmiconfig-8.1.3" sources."cross-fetch-3.1.5" sources."debug-4.3.4" @@ -125631,8 +127280,8 @@ in sources."progress-2.0.3" sources."proxy-from-env-1.1.0" sources."pump-3.0.0" - sources."puppeteer-19.9.0" - sources."puppeteer-core-19.9.0" + sources."puppeteer-19.10.1" + sources."puppeteer-core-19.10.1" sources."readable-stream-3.6.2" sources."require-directory-2.1.1" sources."resolve-from-4.0.0" @@ -125837,7 +127486,7 @@ in sources."qs-6.11.1" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."side-channel-1.0.4" sources."slash-3.0.0" sources."sprintf-js-1.0.3" @@ -126003,7 +127652,7 @@ in sources."@types/istanbul-lib-coverage-2.0.4" sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-3.0.1" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/stack-utils-2.0.1" sources."@types/yargs-16.0.5" sources."@types/yargs-parser-21.0.0" @@ -126174,7 +127823,7 @@ in sources."near-hd-key-1.2.1" sources."near-ledger-js-0.2.1" sources."near-seed-phrase-0.2.0" - sources."node-abi-3.35.0" + sources."node-abi-3.40.0" sources."node-addon-api-3.2.1" sources."node-fetch-2.6.9" sources."node-gyp-build-4.6.0" @@ -126221,7 +127870,7 @@ in sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" (sources."semver-diff-3.1.1" // { dependencies = [ sources."semver-6.3.0" @@ -126332,7 +127981,7 @@ in sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" sources."safe-stable-stringify-2.4.3" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."simple-swizzle-0.2.2" sources."stack-trace-0.0.10" sources."string_decoder-1.3.0" @@ -126461,7 +128110,7 @@ in sources."rimraf-3.0.2" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -126721,7 +128370,7 @@ in sources."qs-6.4.1" ]; }) - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."rimraf-2.2.8" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" @@ -126947,7 +128596,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."accepts-1.3.8" @@ -127459,7 +129108,7 @@ in ]; }) sources."request-2.88.2" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."retry-0.10.1" sources."rimraf-2.2.8" sources."safe-buffer-5.2.1" @@ -127615,7 +129264,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/minimist-1.2.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/responselike-1.0.0" @@ -128016,7 +129665,7 @@ in sources."redent-3.0.0" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" (sources."resolve-cwd-3.0.0" // { dependencies = [ sources."resolve-from-5.0.0" @@ -128032,7 +129681,7 @@ in sources."rxjs-6.6.7" sources."safer-buffer-2.1.2" sources."scoped-regex-2.1.0" - sources."semver-7.4.0" + sources."semver-7.5.0" (sources."semver-diff-3.1.1" // { dependencies = [ sources."semver-6.3.0" @@ -128109,10 +129758,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "9.6.4"; + version = "9.6.5"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-9.6.4.tgz"; - sha512 = "8/Mct0X/w77PmgIpSlXfNIOlrZBfT+8966zLCxOhwi1qZ2Ueyy99uWPSDW6bt2OKw1NzrvHJBSgkzAvn1iWuhw=="; + url = "https://registry.npmjs.org/npm/-/npm-9.6.5.tgz"; + sha512 = "0SYs9lz1ND7V3+Lz6EbsnUdZ4OxjQOHbaIKdWd8OgsbZ2hCC2ZeiXMEaBEPEVBaILW+huFA0pJ1YME+52iZI5g=="; }; buildInputs = globalBuildInputs; meta = { @@ -128127,10 +129776,10 @@ in npm-check-updates = nodeEnv.buildNodePackage { name = "npm-check-updates"; packageName = "npm-check-updates"; - version = "16.10.8"; + version = "16.10.9"; src = fetchurl { - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.10.8.tgz"; - sha512 = "e+p3rUCvaU0iKOvi+/Xiyx+mLe9/aRTu9Zrc7+TR6H2q+uFgmXEwqbXYN9Ngqsta8gdTjpn751UD5MEOogO5cA=="; + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.10.9.tgz"; + sha512 = "J3ggasYJIFB+XqAT9qQcAAOKehpCXGRoZWlK4/u5YAOZB6hmM4CxdrxCA7A34hBK5zaPIEBnMqWBSV7mU6nixg=="; }; dependencies = [ sources."@colors/colors-1.5.0" @@ -128161,7 +129810,11 @@ in sources."@szmarczak/http-timer-5.0.1" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" - sources."@tufjs/models-1.0.2" + (sources."@tufjs/models-1.0.3" // { + dependencies = [ + sources."minimatch-7.4.6" + ]; + }) sources."@types/http-cache-semantics-4.0.1" sources."abbrev-1.1.1" sources."agent-base-6.0.2" @@ -128205,7 +129858,7 @@ in sources."cli-boxes-3.0.0" sources."cli-table3-0.6.3" sources."color-support-1.1.3" - sources."commander-10.0.0" + sources."commander-10.0.1" sources."concat-map-0.0.1" (sources."config-chain-1.1.13" // { dependencies = [ @@ -128425,9 +130078,9 @@ in sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" - (sources."path-scurry-1.6.4" // { + (sources."path-scurry-1.7.0" // { dependencies = [ - sources."lru-cache-9.0.2" + sources."lru-cache-9.1.0" sources."minipass-5.0.0" ]; }) @@ -128472,7 +130125,7 @@ in sources."run-parallel-1.2.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -128483,7 +130136,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - (sources."sigstore-1.2.0" // { + (sources."sigstore-1.3.2" // { dependencies = [ sources."make-fetch-happen-11.1.0" sources."minipass-fetch-3.0.2" @@ -128516,7 +130169,7 @@ in ]; }) sources."to-regex-range-5.0.1" - (sources."tuf-js-1.1.3" // { + (sources."tuf-js-1.1.4" // { dependencies = [ sources."make-fetch-happen-11.1.0" sources."minipass-fetch-3.0.2" @@ -128749,17 +130402,17 @@ in orval = nodeEnv.buildNodePackage { name = "orval"; packageName = "orval"; - version = "6.14.3"; + version = "6.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/orval/-/orval-6.14.3.tgz"; - sha512 = "9jPBfK7/G5X5OIhRYPCCJ6gOFx2Q+tpnTF/6qwE1VY56/h1r6gleRFEkQBPSzsksXo3S9gxb9guTari7dB/+lg=="; + url = "https://registry.npmjs.org/orval/-/orval-6.14.4.tgz"; + sha512 = "kMFZsSjetAPang7bcitcxtdiQe8ImNCKl4U3tIRex9DrZsTWI0DHJvKjN1hRtDx/4Ya26jV9Wn7JZQWsreKbtg=="; }; dependencies = [ sources."@apidevtools/json-schema-ref-parser-9.0.6" sources."@apidevtools/openapi-schemas-2.1.0" sources."@apidevtools/swagger-methods-3.0.2" sources."@apidevtools/swagger-parser-10.1.0" - sources."@asyncapi/specs-4.2.0" + sources."@asyncapi/specs-4.2.1" sources."@esbuild/android-arm-0.15.18" sources."@esbuild/linux-loong64-0.15.18" sources."@exodus/schemasafe-1.0.0" @@ -128771,13 +130424,13 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@orval/angular-6.14.3" - sources."@orval/axios-6.14.3" - sources."@orval/core-6.14.3" - sources."@orval/msw-6.14.3" - sources."@orval/query-6.14.3" - sources."@orval/swr-6.14.3" - sources."@orval/zod-6.14.3" + sources."@orval/angular-6.14.4" + sources."@orval/axios-6.14.4" + sources."@orval/core-6.14.4" + sources."@orval/msw-6.14.4" + sources."@orval/query-6.14.4" + sources."@orval/swr-6.14.4" + sources."@orval/zod-6.14.4" sources."@rollup/plugin-commonjs-22.0.2" (sources."@rollup/pluginutils-3.1.0" // { dependencies = [ @@ -128809,21 +130462,21 @@ in sources."@stoplight/spectral-parsers-1.0.2" sources."@stoplight/spectral-ref-resolver-1.0.2" sources."@stoplight/spectral-ruleset-bundler-1.5.1" - sources."@stoplight/spectral-ruleset-migrator-1.9.2" + sources."@stoplight/spectral-ruleset-migrator-1.9.3" sources."@stoplight/spectral-rulesets-1.15.0" (sources."@stoplight/spectral-runtime-1.1.2" // { dependencies = [ sources."@stoplight/types-12.5.0" ]; }) - sources."@stoplight/types-13.11.0" + sources."@stoplight/types-13.12.0" sources."@stoplight/yaml-4.2.3" sources."@stoplight/yaml-ast-parser-0.0.48" sources."@tootallnate/once-1.1.2" sources."@types/es-aggregate-error-1.0.2" sources."@types/estree-0.0.39" sources."@types/json-schema-7.0.11" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/urijs-1.19.19" sources."abort-controller-3.0.0" sources."acorn-8.8.2" @@ -129108,12 +130761,12 @@ in sources."readable-stream-1.1.14" sources."readdirp-3.6.0" sources."reftools-1.1.9" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."require-all-3.0.0" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."reserved-0.1.2" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."reusify-1.0.4" sources."rollup-2.79.1" sources."run-parallel-1.2.0" @@ -129174,7 +130827,7 @@ in sources."utility-types-3.10.0" sources."validate-npm-package-name-3.0.0" sources."validator-13.9.0" - sources."vm2-3.9.16" + sources."vm2-3.9.17" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -129469,7 +131122,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -129602,7 +131255,7 @@ in sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.361" + sources."electron-to-chromium-1.4.368" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -129720,7 +131373,7 @@ in sources."acorn-8.8.2" sources."posthtml-0.15.2" sources."posthtml-parser-0.7.2" - sources."terser-5.16.9" + sources."terser-5.17.1" ]; }) (sources."htmlparser2-6.1.0" // { @@ -129892,7 +131545,7 @@ in sources."object-keys-1.1.1" sources."object-visit-1.0.1" sources."object.assign-4.1.4" - sources."object.getownpropertydescriptors-2.1.5" + sources."object.getownpropertydescriptors-2.1.6" sources."object.pick-1.3.0" sources."object.values-1.1.6" sources."on-finished-2.4.1" @@ -130036,7 +131689,7 @@ in sources."is-extendable-1.0.1" ]; }) - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."regexpu-core-5.3.2" (sources."regjsparser-0.9.1" // { dependencies = [ @@ -130050,7 +131703,7 @@ in sources."request-2.88.2" sources."request-promise-core-1.1.4" sources."request-promise-native-1.0.9" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-3.0.0" sources."resolve-url-0.2.1" sources."restore-cursor-2.0.0" @@ -130059,6 +131712,7 @@ in sources."rgba-regex-1.0.0" sources."rimraf-2.7.1" sources."ripemd160-2.0.2" + sources."safe-array-concat-1.0.0" sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" sources."safe-regex-test-1.0.0" @@ -130202,7 +131856,7 @@ in ]; }) sources."upath-1.2.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."urix-0.1.0" (sources."url-0.11.0" // { @@ -130366,7 +132020,6 @@ in sources."@parcel/workers-2.8.3" sources."@swc/helpers-0.4.14" sources."@trysound/sax-0.2.0" - sources."@types/parse-json-4.0.0" sources."abab-2.0.6" sources."abortcontroller-polyfill-1.7.5" sources."acorn-8.8.2" @@ -130378,6 +132031,7 @@ in sources."acorn-walk-6.2.0" sources."ajv-6.12.6" sources."ansi-styles-3.2.1" + sources."argparse-2.0.1" sources."array-equal-1.0.0" sources."asn1-0.2.6" sources."assert-plus-1.0.0" @@ -130396,7 +132050,7 @@ in sources."buffer-from-1.1.2" sources."callsites-3.1.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."caseless-0.12.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -130416,16 +132070,21 @@ in sources."commander-7.2.0" sources."concat-map-0.0.1" sources."core-util-is-1.0.2" - sources."cosmiconfig-7.1.0" + sources."cosmiconfig-8.1.3" sources."css-declaration-sorter-6.4.0" - sources."css-select-4.3.0" - sources."css-tree-1.1.3" + sources."css-select-5.1.0" + sources."css-tree-2.3.1" sources."css-what-6.1.0" sources."cssesc-3.0.0" - sources."cssnano-5.1.15" - sources."cssnano-preset-default-5.2.14" - sources."cssnano-utils-3.1.0" - sources."csso-4.2.0" + sources."cssnano-6.0.0" + sources."cssnano-preset-default-6.0.0" + sources."cssnano-utils-4.0.0" + (sources."csso-5.0.5" // { + dependencies = [ + sources."css-tree-2.2.1" + sources."mdn-data-2.0.28" + ]; + }) sources."cssom-0.3.8" sources."cssstyle-1.4.0" sources."dashdash-1.14.1" @@ -130433,20 +132092,16 @@ in sources."deep-is-0.1.4" sources."delayed-stream-1.0.0" sources."detect-libc-1.0.3" - (sources."dom-serializer-1.4.1" // { - dependencies = [ - sources."entities-2.2.0" - ]; - }) + sources."dom-serializer-2.0.0" sources."domelementtype-2.3.0" sources."domexception-1.0.1" - sources."domhandler-4.3.1" - sources."domutils-2.8.0" + sources."domhandler-5.0.3" + sources."domutils-3.0.1" sources."dotenv-7.0.0" sources."dotenv-expand-5.1.0" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.4.362" - sources."entities-3.0.1" + sources."electron-to-chromium-1.4.368" + sources."entities-4.5.0" sources."error-ex-1.3.2" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -130472,8 +132127,23 @@ in sources."has-flag-3.0.0" sources."html-encoding-sniffer-1.0.2" sources."html-tags-1.2.0" - sources."htmlnano-2.0.3" - sources."htmlparser2-7.2.0" + (sources."htmlnano-2.0.4" // { + dependencies = [ + sources."svgo-3.0.2" + ]; + }) + (sources."htmlparser2-7.2.0" // { + dependencies = [ + (sources."dom-serializer-1.4.1" // { + dependencies = [ + sources."entities-2.2.0" + ]; + }) + sources."domhandler-4.3.1" + sources."domutils-2.8.0" + sources."entities-3.0.1" + ]; + }) sources."http-signature-1.2.0" sources."iconv-lite-0.4.24" sources."import-fresh-3.3.0" @@ -130490,6 +132160,7 @@ in sources."is-typedarray-1.0.0" sources."isstream-0.1.2" sources."js-tokens-4.0.0" + sources."js-yaml-4.1.0" sources."jsbn-0.1.1" (sources."jsdom-14.1.0" // { dependencies = [ @@ -130503,15 +132174,15 @@ in sources."json5-2.2.3" sources."jsprim-1.4.2" sources."levn-0.3.0" - sources."lightningcss-1.19.0" - sources."lightningcss-darwin-arm64-1.19.0" - sources."lightningcss-darwin-x64-1.19.0" - sources."lightningcss-linux-arm-gnueabihf-1.19.0" - sources."lightningcss-linux-arm64-gnu-1.19.0" - sources."lightningcss-linux-arm64-musl-1.19.0" - sources."lightningcss-linux-x64-gnu-1.19.0" - sources."lightningcss-linux-x64-musl-1.19.0" - sources."lightningcss-win32-x64-msvc-1.19.0" + sources."lightningcss-1.20.0" + sources."lightningcss-darwin-arm64-1.20.0" + sources."lightningcss-darwin-x64-1.20.0" + sources."lightningcss-linux-arm-gnueabihf-1.20.0" + sources."lightningcss-linux-arm64-gnu-1.20.0" + sources."lightningcss-linux-arm64-musl-1.20.0" + sources."lightningcss-linux-x64-gnu-1.20.0" + sources."lightningcss-linux-x64-musl-1.20.0" + sources."lightningcss-win32-x64-msvc-1.20.0" sources."lilconfig-2.1.0" sources."lines-and-columns-1.2.4" sources."lmdb-2.5.2" @@ -130519,7 +132190,7 @@ in sources."lodash.memoize-4.1.2" sources."lodash.sortby-4.7.0" sources."lodash.uniq-4.5.0" - sources."mdn-data-2.0.14" + sources."mdn-data-2.0.30" sources."micromatch-4.0.5" sources."mime-db-1.52.0" sources."mime-types-2.1.35" @@ -130535,7 +132206,6 @@ in sources."node-gyp-build-4.6.0" sources."node-gyp-build-optional-packages-5.0.3" sources."node-releases-2.0.10" - sources."normalize-url-6.1.0" sources."nth-check-2.1.1" sources."nullthrows-1.1.1" sources."nwsapi-2.2.4" @@ -130552,35 +132222,39 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pn-1.1.0" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-calc-8.2.4" - sources."postcss-colormin-5.3.1" - sources."postcss-convert-values-5.1.3" - sources."postcss-discard-comments-5.1.2" - sources."postcss-discard-duplicates-5.1.0" - sources."postcss-discard-empty-5.1.1" - sources."postcss-discard-overridden-5.1.0" - sources."postcss-merge-longhand-5.1.7" - sources."postcss-merge-rules-5.1.4" - sources."postcss-minify-font-values-5.1.0" - sources."postcss-minify-gradients-5.1.1" - sources."postcss-minify-params-5.1.4" - sources."postcss-minify-selectors-5.2.1" - sources."postcss-normalize-charset-5.1.0" - sources."postcss-normalize-display-values-5.1.0" - sources."postcss-normalize-positions-5.1.1" - sources."postcss-normalize-repeat-style-5.1.1" - sources."postcss-normalize-string-5.1.0" - sources."postcss-normalize-timing-functions-5.1.0" - sources."postcss-normalize-unicode-5.1.1" - sources."postcss-normalize-url-5.1.0" - sources."postcss-normalize-whitespace-5.1.1" - sources."postcss-ordered-values-5.1.3" - sources."postcss-reduce-initial-5.1.2" - sources."postcss-reduce-transforms-5.1.0" + sources."postcss-colormin-6.0.0" + sources."postcss-convert-values-6.0.0" + sources."postcss-discard-comments-6.0.0" + sources."postcss-discard-duplicates-6.0.0" + sources."postcss-discard-empty-6.0.0" + sources."postcss-discard-overridden-6.0.0" + sources."postcss-merge-longhand-6.0.0" + sources."postcss-merge-rules-6.0.0" + sources."postcss-minify-font-values-6.0.0" + sources."postcss-minify-gradients-6.0.0" + sources."postcss-minify-params-6.0.0" + sources."postcss-minify-selectors-6.0.0" + sources."postcss-normalize-charset-6.0.0" + sources."postcss-normalize-display-values-6.0.0" + sources."postcss-normalize-positions-6.0.0" + sources."postcss-normalize-repeat-style-6.0.0" + sources."postcss-normalize-string-6.0.0" + sources."postcss-normalize-timing-functions-6.0.0" + sources."postcss-normalize-unicode-6.0.0" + sources."postcss-normalize-url-6.0.0" + sources."postcss-normalize-whitespace-6.0.0" + sources."postcss-ordered-values-6.0.0" + sources."postcss-reduce-initial-6.0.0" + sources."postcss-reduce-transforms-6.0.0" sources."postcss-selector-parser-6.0.11" - sources."postcss-svgo-5.1.0" - sources."postcss-unique-selectors-5.1.1" + (sources."postcss-svgo-6.0.0" // { + dependencies = [ + sources."svgo-3.0.2" + ]; + }) + sources."postcss-unique-selectors-6.0.0" sources."postcss-value-parser-4.2.0" sources."posthtml-0.16.6" sources."posthtml-parser-0.11.0" @@ -130613,12 +132287,23 @@ in sources."sshpk-1.17.0" sources."stable-0.1.8" sources."stealthy-require-1.1.1" - sources."stylehacks-5.1.1" + sources."stylehacks-6.0.0" sources."supports-color-5.5.0" - sources."svgo-2.8.0" + (sources."svgo-2.8.0" // { + dependencies = [ + sources."css-select-4.3.0" + sources."css-tree-1.1.3" + sources."csso-4.2.0" + sources."dom-serializer-1.4.1" + sources."domhandler-4.3.1" + sources."domutils-2.8.0" + sources."entities-2.2.0" + sources."mdn-data-2.0.14" + ]; + }) sources."symbol-tree-3.2.4" sources."term-size-2.2.1" - (sources."terser-5.16.9" // { + (sources."terser-5.17.1" // { dependencies = [ sources."commander-2.20.3" ]; @@ -130644,7 +132329,7 @@ in ]; }) sources."uniq-1.0.1" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."utility-types-3.10.0" @@ -130664,7 +132349,6 @@ in sources."xml-name-validator-3.0.0" sources."xmlchars-2.2.0" sources."xxhash-wasm-0.4.2" - sources."yaml-1.10.2" ]; buildInputs = globalBuildInputs; meta = { @@ -130907,7 +132591,7 @@ in sources."serve-static-1.15.0" (sources."service-runner-2.9.0" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" sources."yargs-14.2.3" ]; }) @@ -130938,7 +132622,7 @@ in sources."uuid-3.4.0" sources."vary-1.1.2" sources."verror-1.10.0" - sources."which-module-2.0.0" + sources."which-module-2.0.1" (sources."wikimedia-kad-fork-1.3.6" // { dependencies = [ sources."ms-0.7.3" @@ -131270,9 +132954,9 @@ in sources."read-pkg-up-1.0.1" sources."readable-stream-2.3.8" sources."redent-1.0.0" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."repeating-2.0.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."restore-cursor-2.0.0" sources."reverse-http-1.3.0" sources."rimraf-2.7.1" @@ -131856,7 +133540,7 @@ in ]; }) sources."napi-build-utils-1.0.2" - sources."node-abi-3.35.0" + sources."node-abi-3.40.0" sources."node-fetch-2.6.9" sources."node-notifier-10.0.1" sources."once-1.4.0" @@ -131873,7 +133557,7 @@ in sources."rc-1.2.8" sources."readable-stream-2.3.8" sources."require-directory-2.1.1" - (sources."resolve-1.22.2" // { + (sources."resolve-1.22.3" // { dependencies = [ sources."is-core-module-2.12.0" ]; @@ -131882,7 +133566,7 @@ in sources."run-parallel-1.2.0" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."shellwords-0.1.1" sources."simple-concat-1.0.1" sources."simple-get-4.0.1" @@ -132111,12 +133795,12 @@ in sources."readable-stream-1.1.14" sources."readdirp-3.6.0" sources."require-in-the-middle-5.2.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."run-series-1.1.9" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."sax-1.2.4" - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" sources."yallist-4.0.0" @@ -132155,7 +133839,7 @@ in sources."async-2.6.4" ]; }) - sources."vm2-3.9.16" + sources."vm2-3.9.17" sources."word-wrap-1.2.3" sources."wrappy-1.0.2" sources."ws-7.4.6" @@ -132176,10 +133860,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "8.2.0"; + version = "8.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-8.2.0.tgz"; - sha512 = "f2/abl6GycxLgVZQtWA2zBJKMXcv2L86HGRwJ4qnS02gVzLgtFegC25qWKFtUunCY74GUwxq2A7yGAJEyOuCYg=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-8.3.1.tgz"; + sha512 = "0mT2ZAv08J3nz8xUdWhRW88GE89IWgPo/xZhb6acQXK2+aCikl7kT7Bg31ZcnJqOrwYXSed68xjLd/ZoSnBR8w=="; }; buildInputs = globalBuildInputs; meta = { @@ -132222,10 +133906,10 @@ in postcss = nodeEnv.buildNodePackage { name = "postcss"; packageName = "postcss"; - version = "8.4.21"; + version = "8.4.23"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz"; - sha512 = "tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg=="; + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz"; + sha512 = "bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA=="; }; dependencies = [ sources."nanoid-3.3.6" @@ -132258,24 +133942,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."ansi-regex-5.0.1" @@ -132325,7 +134009,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-load-config-4.0.1" sources."postcss-reporter-7.0.5" sources."pretty-hrtime-1.0.3" @@ -132391,13 +134075,13 @@ in sources."minimist-1.2.8" sources."mkdirp-classic-0.5.3" sources."napi-build-utils-1.0.2" - sources."node-abi-3.35.0" + sources."node-abi-3.40.0" sources."once-1.4.0" sources."pump-3.0.0" sources."rc-1.2.8" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."simple-concat-1.0.1" sources."simple-get-4.0.1" sources."string_decoder-1.3.0" @@ -132456,7 +134140,7 @@ in sources."nanolru-1.0.0" sources."path-parse-1.0.7" sources."prettier-2.8.7" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."supports-color-8.1.1" sources."supports-preserve-symlinks-flag-1.0.0" ]; @@ -132497,13 +134181,13 @@ in prisma = nodeEnv.buildNodePackage { name = "prisma"; packageName = "prisma"; - version = "4.12.0"; + version = "4.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/prisma/-/prisma-4.12.0.tgz"; - sha512 = "xqVper4mbwl32BWzLpdznHAYvYDWQQWK2tBfXjdUD397XaveRyAP7SkBZ6kFlIg8kKayF4hvuaVtYwXd9BodAg=="; + url = "https://registry.npmjs.org/prisma/-/prisma-4.13.0.tgz"; + sha512 = "L9mqjnSmvWIRCYJ9mQkwCtj4+JDYYTdhoyo8hlsHNDXaZLh/b4hR0IoKIBbTKxZuyHQzLopb/+0Rvb69uGV7uA=="; }; dependencies = [ - sources."@prisma/engines-4.12.0" + sources."@prisma/engines-4.13.0" ]; buildInputs = globalBuildInputs; meta = { @@ -132518,10 +134202,10 @@ in "@prisma/language-server" = nodeEnv.buildNodePackage { name = "_at_prisma_slash_language-server"; packageName = "@prisma/language-server"; - version = "4.12.0"; + version = "4.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-4.12.0.tgz"; - sha512 = "V6OV4vZ0zxzMOoIWeO+K1tYqqyGlzTfjvGTaD3rDrCK6icail/sjiud0Gs09y7qHZm4eydvL2vj80PdAyBVKAQ=="; + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-4.13.0.tgz"; + sha512 = "Tm+w73mS0zhDuXZb3CwnCIQtcLuXh4L0Wplh4/g3/kwU/uRzvnalDqxFCd+6bn8q2YTKFbISIwNaLOE8RZkvAA=="; }; dependencies = [ sources."@ampproject/remapping-2.2.1" @@ -132557,7 +134241,7 @@ in sources."@jridgewell/sourcemap-codec-1.4.14" ]; }) - sources."@prisma/prisma-fmt-wasm-4.12.0-67.659ef412370fa3b41cd7bf6e94587c1dfb7f67e7" + sources."@prisma/prisma-fmt-wasm-4.13.0-50.1e7af066ee9cb95cf3a403c78d9aab3e6b04f37a" sources."@types/js-levenshtein-1.1.1" sources."aggregate-error-3.1.0" sources."ansi-regex-5.0.1" @@ -132570,7 +134254,7 @@ in sources."browserslist-4.21.5" sources."caching-transform-4.0.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chalk-2.4.2" sources."clean-stack-2.2.0" sources."cliui-6.0.0" @@ -132583,7 +134267,7 @@ in sources."debug-4.3.4" sources."decamelize-1.2.0" sources."default-require-extensions-3.0.1" - sources."electron-to-chromium-1.4.362" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."es6-error-4.1.1" sources."escalade-3.1.1" @@ -132672,7 +134356,7 @@ in sources."to-fast-properties-2.0.0" sources."type-fest-0.8.1" sources."typedarray-to-buffer-3.1.5" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uuid-8.3.2" sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-8.0.2" @@ -132680,7 +134364,7 @@ in sources."vscode-languageserver-textdocument-1.0.8" sources."vscode-languageserver-types-3.17.2" sources."which-2.0.2" - sources."which-module-2.0.0" + sources."which-module-2.0.1" (sources."wrap-ansi-6.2.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -132958,7 +134642,7 @@ in sources."string_decoder-1.1.1" ]; }) - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."rimraf-2.7.1" sources."ripemd160-2.0.2" sources."safe-buffer-5.2.1" @@ -133039,7 +134723,7 @@ in sources."vscode-jsonrpc-8.1.0" sources."vscode-languageserver-8.1.0" sources."vscode-languageserver-protocol-3.17.3" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" sources."vscode-uri-2.1.2" sources."which-2.0.2" @@ -133216,10 +134900,10 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.303"; + version = "1.1.304"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.303.tgz"; - sha512 = "uwJdp3KRidmpIgKKQtNL17F2noF2PsK6bxqd7WWrQE1AfCHI0j53B9lro63S/9oWWu18xfgTI4IqKO5S1srxhA=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.304.tgz"; + sha512 = "b7q53RytKcu/JIzBDfT4po1Uj1eyjXP4wHcWEOXNkWt8+fS8X6lZhRjPe5yzfPvh/2heTKcIEwY+J/VuMobuyw=="; }; buildInputs = globalBuildInputs; meta = { @@ -133255,25 +134939,25 @@ in sources."typescript-4.9.4" ]; }) - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" sources."@types/json-schema-7.0.11" - sources."@types/node-16.18.23" + sources."@types/node-16.18.24" sources."@types/urijs-1.19.19" sources."abort-controller-3.0.0" sources."acorn-8.8.2" @@ -133473,7 +135157,7 @@ in sources."pkginfo-0.4.1" sources."prompt-0.2.14" sources."read-1.0.7" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."revalidator-0.1.8" sources."rimraf-2.7.1" sources."semver-5.7.1" @@ -133657,7 +135341,7 @@ in sources."@types/glob-7.2.0" sources."@types/json-schema-7.0.11" sources."@types/minimatch-5.1.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/parse-json-4.0.0" sources."@types/prop-types-15.7.5" sources."@types/q-1.5.5" @@ -133849,7 +135533,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -134070,7 +135754,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.362" + sources."electron-to-chromium-1.4.368" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -134555,7 +136239,7 @@ in sources."object-keys-1.1.1" sources."object-visit-1.0.1" sources."object.assign-4.1.4" - sources."object.getownpropertydescriptors-2.1.5" + sources."object.getownpropertydescriptors-2.1.6" sources."object.pick-1.3.0" sources."object.values-1.1.6" sources."obuf-1.1.2" @@ -134814,7 +136498,7 @@ in sources."regenerator-runtime-0.13.11" sources."regenerator-transform-0.15.1" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."regexpu-core-5.3.2" sources."registry-auth-token-3.3.2" sources."registry-url-3.1.0" @@ -134842,7 +136526,7 @@ in sources."require-directory-2.1.1" sources."require-main-filename-2.0.0" sources."requires-port-1.0.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" (sources."resolve-cwd-2.0.0" // { dependencies = [ sources."resolve-from-3.0.0" @@ -134861,6 +136545,11 @@ in sources."run-async-2.4.1" sources."run-queue-1.0.3" sources."rxjs-6.6.7" + (sources."safe-array-concat-1.0.0" // { + dependencies = [ + sources."isarray-2.0.5" + ]; + }) sources."safe-buffer-5.2.1" sources."safe-regex-1.1.0" sources."safe-regex-test-1.0.0" @@ -135154,7 +136843,7 @@ in ]; }) sources."upath-1.2.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."update-check-1.5.2" sources."upper-case-1.1.3" sources."uri-js-4.4.1" @@ -135274,7 +136963,7 @@ in sources."websocket-extensions-0.1.4" sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."which-typed-array-1.1.9" sources."widest-line-2.0.1" sources."worker-farm-1.7.0" @@ -135498,7 +137187,7 @@ in sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."saxes-5.0.1" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."set-blocking-2.0.0" sources."signal-exit-3.0.7" sources."simple-concat-1.0.1" @@ -135593,24 +137282,24 @@ in sources."@redocly/openapi-core-1.0.0-beta.125" sources."@types/eslint-8.37.0" sources."@types/eslint-scope-3.7.4" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.11" sources."@types/node-14.18.42" - sources."@webassemblyjs/ast-1.11.1" - sources."@webassemblyjs/floating-point-hex-parser-1.11.1" - sources."@webassemblyjs/helper-api-error-1.11.1" - sources."@webassemblyjs/helper-buffer-1.11.1" - sources."@webassemblyjs/helper-numbers-1.11.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" - sources."@webassemblyjs/helper-wasm-section-1.11.1" - sources."@webassemblyjs/ieee754-1.11.1" - sources."@webassemblyjs/leb128-1.11.1" - sources."@webassemblyjs/utf8-1.11.1" - sources."@webassemblyjs/wasm-edit-1.11.1" - sources."@webassemblyjs/wasm-gen-1.11.1" - sources."@webassemblyjs/wasm-opt-1.11.1" - sources."@webassemblyjs/wasm-parser-1.11.1" - sources."@webassemblyjs/wast-printer-1.11.1" + sources."@webassemblyjs/ast-1.11.5" + sources."@webassemblyjs/floating-point-hex-parser-1.11.5" + sources."@webassemblyjs/helper-api-error-1.11.5" + sources."@webassemblyjs/helper-buffer-1.11.5" + sources."@webassemblyjs/helper-numbers-1.11.5" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.5" + sources."@webassemblyjs/helper-wasm-section-1.11.5" + sources."@webassemblyjs/ieee754-1.11.5" + sources."@webassemblyjs/leb128-1.11.5" + sources."@webassemblyjs/utf8-1.11.5" + sources."@webassemblyjs/wasm-edit-1.11.5" + sources."@webassemblyjs/wasm-gen-1.11.5" + sources."@webassemblyjs/wasm-opt-1.11.5" + sources."@webassemblyjs/wasm-parser-1.11.5" + sources."@webassemblyjs/wast-printer-1.11.5" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."acorn-8.8.2" @@ -135665,7 +137354,7 @@ in sources."call-me-maybe-1.0.2" sources."camelcase-6.3.0" sources."camelize-1.0.1" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chalk-4.1.2" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" @@ -135702,7 +137391,7 @@ in }) sources."domain-browser-1.2.0" sources."dompurify-2.4.5" - sources."electron-to-chromium-1.4.362" + sources."electron-to-chromium-1.4.368" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -135711,7 +137400,7 @@ in }) sources."emoji-regex-8.0.0" sources."encoding-0.1.13" - sources."enhanced-resolve-5.12.0" + sources."enhanced-resolve-5.13.0" sources."es-module-lexer-1.2.1" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -135864,7 +137553,7 @@ in sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."scheduler-0.20.2" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" sources."serialize-javascript-6.0.1" sources."setimmediate-1.0.5" sources."sha.js-2.4.11" @@ -135894,7 +137583,7 @@ in sources."supports-color-7.2.0" sources."swagger2openapi-7.0.8" sources."tapable-2.2.1" - sources."terser-5.16.9" + sources."terser-5.17.1" sources."terser-webpack-plugin-5.3.7" sources."timers-browserify-2.0.12" sources."to-arraybuffer-1.0.1" @@ -135904,7 +137593,7 @@ in sources."tty-browserify-0.0.0" sources."type-fest-0.20.2" sources."uglify-js-3.17.4" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" (sources."uri-js-4.4.1" // { dependencies = [ sources."punycode-2.3.0" @@ -135925,7 +137614,7 @@ in sources."vm-browserify-1.1.2" sources."watchpack-2.4.0" sources."webidl-conversions-3.0.1" - sources."webpack-5.79.0" + sources."webpack-5.80.0" sources."webpack-sources-3.2.3" sources."whatwg-url-5.0.0" sources."widest-line-3.1.0" @@ -135958,7 +137647,7 @@ in }; dependencies = [ sources."@types/prop-types-15.7.5" - sources."@types/react-18.0.35" + sources."@types/react-18.0.37" sources."@types/scheduler-0.16.3" sources."@types/yoga-layout-1.9.2" sources."ansi-escapes-4.3.2" @@ -136053,7 +137742,7 @@ in sources."read-pkg-3.0.0" sources."read-pkg-up-3.0.0" sources."redent-2.0.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."restore-cursor-3.1.0" sources."scheduler-0.18.0" sources."semver-5.7.1" @@ -136344,7 +138033,7 @@ in }) sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" (sources."semver-diff-3.1.1" // { dependencies = [ sources."semver-6.3.0" @@ -136428,14 +138117,34 @@ in sha512 = "Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g=="; }; dependencies = [ + sources."@pkgjs/parseargs-0.11.0" + sources."ansi-regex-5.0.1" + sources."ansi-styles-4.3.0" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" + sources."cliui-7.0.4" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."cross-spawn-7.0.3" + sources."emoji-regex-8.0.0" + sources."foreground-child-3.1.1" sources."fs.realpath-1.0.0" - sources."glob-10.0.0" - sources."lru-cache-9.0.2" + sources."glob-10.2.1" + sources."is-fullwidth-code-point-3.0.0" + sources."isexe-2.0.0" + sources."jackspeak-2.0.3" + sources."lru-cache-9.1.0" sources."minimatch-9.0.0" sources."minipass-5.0.0" - sources."path-scurry-1.6.4" + sources."path-key-3.1.1" + sources."path-scurry-1.7.0" + sources."shebang-command-2.0.0" + sources."shebang-regex-3.0.0" + sources."signal-exit-4.0.1" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + sources."which-2.0.2" + sources."wrap-ansi-7.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -136450,10 +138159,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "3.20.2"; + version = "3.20.7"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.20.2.tgz"; - sha512 = "3zwkBQl7Ai7MFYQE0y1MeQ15+9jsi7XxfrqwTb/9EK8D9C9+//EBR4M+CuA1KODRaNbFez/lWxA5vhEGZp4MUg=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.20.7.tgz"; + sha512 = "P7E2zezKSLhWnTz46XxjSmInrbOCiul1yf+kJccMxT56vxjHwCbDfoLbiqFgu+WQoo9ij2PkraYaBstgB2prBA=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -136500,14 +138209,14 @@ in sources."@types/node-16.11.68" sources."@types/semver-7.3.13" sources."@types/vscode-1.66.0" - sources."@typescript-eslint/eslint-plugin-5.58.0" - sources."@typescript-eslint/parser-5.58.0" - sources."@typescript-eslint/scope-manager-5.58.0" - sources."@typescript-eslint/type-utils-5.58.0" - sources."@typescript-eslint/types-5.58.0" - sources."@typescript-eslint/typescript-estree-5.58.0" - sources."@typescript-eslint/utils-5.58.0" - sources."@typescript-eslint/visitor-keys-5.58.0" + sources."@typescript-eslint/eslint-plugin-5.59.0" + sources."@typescript-eslint/parser-5.59.0" + sources."@typescript-eslint/scope-manager-5.59.0" + sources."@typescript-eslint/type-utils-5.59.0" + sources."@typescript-eslint/types-5.59.0" + sources."@typescript-eslint/typescript-estree-5.59.0" + sources."@typescript-eslint/utils-5.59.0" + sources."@typescript-eslint/visitor-keys-5.59.0" sources."@vscode/test-electron-2.3.0" sources."acorn-8.8.2" sources."acorn-jsx-5.3.2" @@ -136707,7 +138416,7 @@ in sources."napi-build-utils-1.0.2" sources."natural-compare-1.4.0" sources."natural-compare-lite-1.4.0" - sources."node-abi-3.35.0" + sources."node-abi-3.40.0" sources."node-addon-api-4.3.0" sources."nth-check-2.1.1" sources."object-inspect-1.12.3" @@ -136760,7 +138469,7 @@ in sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."sax-1.2.4" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."setimmediate-1.0.5" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -136851,7 +138560,7 @@ in sources."escalade-3.1.1" sources."nanoid-3.3.6" sources."picocolors-1.0.0" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."source-map-js-1.0.2" sources."strip-json-comments-3.1.1" ]; @@ -137001,10 +138710,10 @@ in semver = nodeEnv.buildNodePackage { name = "semver"; packageName = "semver"; - version = "7.4.0"; + version = "7.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz"; - sha512 = "RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw=="; + url = "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz"; + sha512 = "+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA=="; }; dependencies = [ sources."lru-cache-6.0.0" @@ -137189,8 +138898,8 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/lodash-4.14.192" - sources."@types/node-18.15.11" + sources."@types/lodash-4.14.194" + sources."@types/node-18.15.13" sources."@types/responselike-1.0.0" sources."adm-zip-0.5.10" sources."agent-base-6.0.2" @@ -137218,7 +138927,7 @@ in sources."asynckit-0.4.0" sources."at-least-node-1.0.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1358.0" // { + (sources."aws-sdk-2.1362.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -137473,7 +139182,7 @@ in sources."supports-color-5.5.0" ]; }) - sources."json-cycle-1.4.0" + sources."json-cycle-1.5.0" (sources."json-refs-3.0.15" // { dependencies = [ sources."commander-4.1.1" @@ -137593,7 +139302,7 @@ in sources."safer-buffer-2.1.2" sources."sax-1.2.1" sources."seek-bzip-1.0.6" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."setimmediate-1.0.5" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" @@ -138330,17 +140039,17 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.1142.0"; + version = "1.1143.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.1142.0.tgz"; - sha512 = "8Zoy3GqBC/itu4tvMxylz2OL1xGnoYJmpt8x3tgL+fs06FF2oSLocM2M+Bc7mgHBhhM1YTOSpbEFc/2yM+qgPA=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.1143.0.tgz"; + sha512 = "NxPv6281FUUDZuqHEWLgXtYsRg47WfNc98ojjQrxDx6aQ//oMdyXnsF0Q2eDyhDiIQNSCIwCFQ8U64YocxXVGw=="; }; dependencies = [ - sources."@sentry-internal/tracing-7.47.0" - sources."@sentry/core-7.47.0" - sources."@sentry/node-7.47.0" - sources."@sentry/types-7.47.0" - sources."@sentry/utils-7.47.0" + sources."@sentry-internal/tracing-7.49.0" + sources."@sentry/core-7.49.0" + sources."@sentry/node-7.49.0" + sources."@sentry/types-7.49.0" + sources."@sentry/utils-7.49.0" sources."agent-base-6.0.2" sources."boolean-3.2.0" sources."cookie-0.4.2" @@ -138364,7 +140073,7 @@ in sources."ms-2.1.2" sources."object-keys-1.1.1" sources."roarr-2.15.4" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."semver-compare-1.0.0" sources."serialize-error-7.0.1" sources."sprintf-js-1.1.2" @@ -138394,7 +140103,7 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."accepts-1.3.8" sources."base64id-2.0.0" sources."bufferutil-4.0.7" @@ -138535,7 +140244,7 @@ in sources."round-to-6.0.0" sources."safe-buffer-5.2.1" sources."sax-1.2.4" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."signal-exit-3.0.7" (sources."slice-ansi-5.0.0" // { dependencies = [ @@ -139303,7 +141012,7 @@ in }) sources."regex-cache-0.4.4" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."relative-url-1.0.2" (sources."remark-3.2.3" // { dependencies = [ @@ -139315,7 +141024,7 @@ in sources."remove-trailing-separator-1.1.0" sources."repeat-element-1.1.4" sources."repeat-string-1.6.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-url-0.2.1" sources."restore-cursor-1.0.1" sources."resumer-0.0.0" @@ -139700,7 +141409,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1358.0" // { + (sources."aws-sdk-2.1362.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -140223,7 +141932,7 @@ in sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" sources."requires-port-1.0.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."ret-0.2.2" sources."rethinkdb-2.4.2" sources."retry-0.9.0" @@ -140325,7 +142034,7 @@ in sources."qs-6.11.1" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."string_decoder-1.3.0" sources."yallist-4.0.0" ]; @@ -140421,7 +142130,7 @@ in }) sources."void-elements-2.0.1" sources."which-1.3.1" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."which-typed-array-1.1.9" sources."window-size-0.1.0" (sources."winston-2.4.7" // { @@ -140506,10 +142215,10 @@ in stylelint = nodeEnv.buildNodePackage { name = "stylelint"; packageName = "stylelint"; - version = "15.4.0"; + version = "15.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/stylelint/-/stylelint-15.4.0.tgz"; - sha512 = "TlOvpG3MbcFwHmK0q2ykhmpKo7Dq892beJit0NPdpyY9b1tFah/hGhqnAz/bRm2PDhDbJLKvjzkEYYBEz7Dxcg=="; + url = "https://registry.npmjs.org/stylelint/-/stylelint-15.5.0.tgz"; + sha512 = "jyMO3R1QtE5mUS4v40+Gg+sIQBqe7CF1xPslxycDzNVkIBCUD4O+5F1vLPq16VmunUTv4qG9o2rUKLnU5KkVeQ=="; }; dependencies = [ sources."@babel/code-frame-7.21.4" @@ -140639,7 +142348,7 @@ in sources."path-type-4.0.0" sources."picocolors-1.0.0" sources."picomatch-2.3.1" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-media-query-parser-0.2.3" sources."postcss-resolve-nested-selector-0.1.1" sources."postcss-safe-parser-6.0.0" @@ -140663,12 +142372,12 @@ in }) sources."redent-3.0.0" sources."require-from-string-2.0.2" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-5.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" sources."run-parallel-1.2.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."signal-exit-3.0.7" sources."slash-3.0.0" (sources."slice-ansi-4.0.0" // { @@ -140901,24 +142610,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/pug-2.0.6" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" @@ -140937,7 +142646,7 @@ in sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -140955,7 +142664,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.362" + sources."electron-to-chromium-1.4.368" sources."errno-0.1.8" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -141036,7 +142745,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-4.0.1" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-load-config-4.0.1" sources."promise-7.3.1" sources."prr-1.0.1" @@ -141054,7 +142763,7 @@ in sources."pug-walk-2.0.0" sources."queue-microtask-1.2.3" sources."readdirp-3.6.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-2.7.1" @@ -141089,7 +142798,7 @@ in sources."ts-node-10.9.1" sources."tslib-2.5.0" sources."typescript-5.0.4" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."v8-compile-cache-lib-3.0.1" sources."void-elements-3.1.0" sources."with-7.0.2" @@ -141155,24 +142864,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/pug-2.0.6" (sources."@vscode/emmet-helper-2.8.6" // { dependencies = [ @@ -141196,7 +142905,7 @@ in sources."browserslist-4.21.5" sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -141215,7 +142924,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.362" + sources."electron-to-chromium-1.4.368" sources."emmet-2.4.2" sources."errno-0.1.8" sources."es6-promise-3.3.1" @@ -141300,7 +143009,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-4.0.1" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-load-config-4.0.1" sources."prettier-2.8.6" sources."prettier-plugin-svelte-2.10.0" @@ -141320,7 +143029,7 @@ in sources."pug-walk-2.0.0" sources."queue-microtask-1.2.3" sources."readdirp-3.6.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."reusify-1.0.4" sources."rimraf-2.7.1" sources."run-parallel-1.2.0" @@ -141354,7 +143063,7 @@ in sources."ts-node-10.9.1" sources."tslib-2.5.0" sources."typescript-5.0.4" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."v8-compile-cache-lib-3.0.1" sources."void-elements-3.1.0" (sources."vscode-css-languageservice-6.2.4" // { @@ -141366,7 +143075,7 @@ in sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-8.0.2" sources."vscode-languageserver-protocol-3.17.2" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.2" sources."vscode-uri-3.0.7" sources."with-7.0.2" @@ -141848,7 +143557,7 @@ in sources."ms-2.1.2" sources."qs-6.11.1" sources."readable-stream-3.6.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."superagent-7.1.6" sources."yallist-4.0.0" ]; @@ -142103,24 +143812,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -142183,7 +143892,7 @@ in sources."picomatch-2.3.1" sources."pify-2.3.0" sources."pirates-4.0.5" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-import-14.1.0" sources."postcss-js-4.0.1" sources."postcss-load-config-3.1.4" @@ -142194,7 +143903,7 @@ in sources."quick-lru-5.1.1" sources."read-cache-1.0.0" sources."readdirp-3.6.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" @@ -142446,7 +144155,7 @@ in }) sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."wide-align-1.1.5" (sources."wrap-ansi-5.1.0" // { dependencies = [ @@ -142555,10 +144264,10 @@ in terser = nodeEnv.buildNodePackage { name = "terser"; packageName = "terser"; - version = "5.16.9"; + version = "5.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-5.16.9.tgz"; - sha512 = "HPa/FdTB9XGI2H1/keLFZHxl6WNvAI4YalHGtDQTlMnJcoqSab1UwL4l1hGEhs6/GmLHBZIg/YgB++jcbzoOEg=="; + url = "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz"; + sha512 = "hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw=="; }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.3" @@ -142755,7 +144464,7 @@ in sources."remark-parse-9.0.0" sources."repeat-string-1.6.1" sources."require-from-string-2.0.2" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."rimraf-2.6.3" sources."semver-5.7.1" sources."slice-ansi-4.0.0" @@ -142841,7 +144550,7 @@ in sources."has-symbols-1.0.3" sources."match-index-1.0.3" sources."object-keys-1.1.1" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" ]; buildInputs = globalBuildInputs; meta = { @@ -143120,7 +144829,7 @@ in sources."remark-retext-4.0.0" sources."remark-stringify-8.1.1" sources."repeat-string-1.6.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-5.0.0" sources."responselike-1.0.2" sources."retext-english-3.0.4" @@ -143566,7 +145275,7 @@ in sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."object.assign-4.1.4" - sources."regexp.prototype.flags-1.4.3" + sources."regexp.prototype.flags-1.5.0" sources."safe-regex-test-1.0.0" sources."side-channel-1.0.4" sources."string.prototype.trim-1.2.7" @@ -143635,7 +145344,7 @@ in sources."array.prototype.tosorted-1.1.1" sources."ast-types-flow-0.0.7" sources."available-typed-arrays-1.0.5" - sources."axe-core-4.6.3" + sources."axe-core-4.7.0" sources."axobject-query-3.1.1" sources."balanced-match-1.0.2" sources."boundary-2.0.0" @@ -143670,7 +145379,7 @@ in ]; }) sources."eslint-import-resolver-node-0.3.7" - sources."eslint-module-utils-2.7.4" + sources."eslint-module-utils-2.8.0" sources."eslint-plugin-import-2.27.5" sources."eslint-plugin-jsx-a11y-6.7.1" (sources."eslint-plugin-react-7.32.2" // { @@ -143787,8 +145496,8 @@ in sources."queue-microtask-1.2.3" sources."react-is-16.13.1" sources."regenerator-runtime-0.13.11" - sources."regexp.prototype.flags-1.4.3" - sources."resolve-1.22.2" + sources."regexp.prototype.flags-1.5.0" + sources."resolve-1.22.3" sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" @@ -143861,7 +145570,7 @@ in sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -144263,7 +145972,7 @@ in sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -145335,7 +147044,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -145803,7 +147512,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -146702,7 +148411,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/responselike-1.0.0" sources."@xmldom/xmldom-0.8.7" sources."ajv-6.12.6" @@ -147107,24 +148816,24 @@ in sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."arg-4.1.3" @@ -147188,10 +148897,10 @@ in typescript-language-server = nodeEnv.buildNodePackage { name = "typescript-language-server"; packageName = "typescript-language-server"; - version = "3.3.1"; + version = "3.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-3.3.1.tgz"; - sha512 = "sm9KNsjYMxzXTNhkNK05K3BN1NkYlOFF4TgqVvzk8l9E2I5SBE7Odrhe3LzCA/78MASO1nWfXx3u96wAhLIhsw=="; + url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-3.3.2.tgz"; + sha512 = "jzun53CIkTbpAki0nP+hk5baGW+86SNNlVhyIj2ZUy45zUkCnmoetWuAtfRRQYrlIr8x4QB3ymGJPuwDQSd/ew=="; }; buildInputs = globalBuildInputs; meta = { @@ -147259,7 +148968,7 @@ in sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" - sources."@types/node-16.18.23" + sources."@types/node-16.18.24" sources."@types/triple-beam-1.3.2" sources."JSONStream-1.3.5" sources."abbrev-1.1.1" @@ -147373,7 +149082,7 @@ in sources."destroy-1.2.0" sources."detective-5.2.1" sources."diff-5.1.0" - sources."diff2html-3.4.34" + sources."diff2html-3.4.35" (sources."diffie-hellman-5.0.3" // { dependencies = [ sources."bn.js-4.12.0" @@ -147590,7 +149299,7 @@ in sources."registry-auth-token-5.0.2" sources."registry-url-6.0.1" sources."require-directory-2.1.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-alpn-1.2.1" sources."responselike-3.0.0" sources."rimraf-4.1.4" @@ -147743,14 +149452,14 @@ in sources."@babel/code-frame-7.21.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@npmcli/config-6.1.5" + sources."@npmcli/config-6.1.6" sources."@npmcli/map-workspaces-3.0.3" sources."@npmcli/name-from-folder-2.0.0" sources."@types/concat-stream-2.0.0" sources."@types/debug-4.1.7" sources."@types/is-empty-1.2.1" sources."@types/ms-0.7.31" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" sources."abbrev-2.0.0" @@ -147782,7 +149491,7 @@ in sources."import-meta-resolve-2.2.2" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-3.0.1" + sources."ini-4.1.0" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" sources."is-empty-1.2.0" @@ -147792,7 +149501,7 @@ in sources."lines-and-columns-2.0.3" sources."load-plugin-5.1.0" sources."locate-path-7.2.0" - sources."lru-cache-9.0.2" + sources."lru-cache-9.1.0" sources."minimatch-7.4.6" sources."minipass-4.2.8" sources."ms-2.1.2" @@ -147807,7 +149516,7 @@ in ]; }) sources."path-exists-5.0.0" - (sources."path-scurry-1.6.4" // { + (sources."path-scurry-1.7.0" // { dependencies = [ sources."minipass-5.0.0" ]; @@ -147816,7 +149525,7 @@ in sources."read-package-json-fast-3.0.2" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -147849,9 +149558,9 @@ in sources."vscode-jsonrpc-8.1.0" sources."vscode-languageserver-8.1.0" sources."vscode-languageserver-protocol-3.17.3" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" - sources."walk-up-path-1.0.0" + sources."walk-up-path-3.0.1" sources."wrappy-1.0.2" sources."yallist-4.0.0" sources."yaml-2.2.1" @@ -147877,7 +149586,7 @@ in }; dependencies = [ sources."@mapbox/node-pre-gyp-1.0.10" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/geojson-7946.0.10" sources."abbrev-1.1.1" sources."agent-base-6.0.2" @@ -147968,7 +149677,7 @@ in sources."rw-1.3.3" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."set-blocking-2.0.0" sources."signal-exit-3.0.7" sources."simple-concat-1.0.1" @@ -148041,14 +149750,14 @@ in vega-lite = nodeEnv.buildNodePackage { name = "vega-lite"; packageName = "vega-lite"; - version = "5.6.1"; + version = "5.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.6.1.tgz"; - sha512 = "Dij2OkJcmK+/2pIcLambjV/vWmhP11ypL3YqDVryBfJxP1m+ZgZU+8/SOEP3B2R1MhmmT7JDYQUtiNcGi1/2ig=="; + url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.7.1.tgz"; + sha512 = "EhFMH2yo5MvrHAK/KSWgA9jnsJIv4/nrMgAbjkGTjalfsEkxvGnsO1EOlbDWXKF4Vud+4lDmEYuCs7VvZk9nSg=="; }; dependencies = [ sources."@types/clone-2.1.1" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/geojson-7946.0.10" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -148138,7 +149847,7 @@ in sources."whatwg-url-5.0.0" sources."wrap-ansi-7.0.0" sources."y18n-5.0.8" - sources."yargs-17.6.2" + sources."yargs-17.7.1" sources."yargs-parser-21.1.1" ]; buildInputs = globalBuildInputs; @@ -148154,10 +149863,10 @@ in vercel = nodeEnv.buildNodePackage { name = "vercel"; packageName = "vercel"; - version = "28.18.5"; + version = "28.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/vercel/-/vercel-28.18.5.tgz"; - sha512 = "WdW5s7w2eGmvKwrIyG32BR/N0hKz9iiZe/INyqopW2Ql+E768ROSP+r+SFpWLMpkGGw14QnmZsFutZ5r7IbpJg=="; + url = "https://registry.npmjs.org/vercel/-/vercel-28.20.0.tgz"; + sha512 = "U+ZDKVVgxJyUJ26l/B7o53EeocP4PnbCt7D6Qyt/bI/eJ9BXpBtsWtMJf1CvgH3Iv/QRXFYlCvjHQJLs1BC7qw=="; }; dependencies = [ sources."@adobe/css-tools-4.2.0" @@ -148298,7 +150007,7 @@ in sources."@babel/traverse-7.21.4" sources."@babel/types-7.21.4" sources."@cspotcode/source-map-support-0.8.1" - sources."@edge-runtime/format-1.1.0" + sources."@edge-runtime/format-2.0.1" sources."@edge-runtime/primitives-2.0.0" sources."@edge-runtime/vm-2.0.0" sources."@emotion/hash-0.9.0" @@ -148338,7 +150047,7 @@ in sources."@jridgewell/trace-mapping-0.3.9" (sources."@mapbox/node-pre-gyp-1.0.10" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."@nodelib/fs.scandir-2.1.5" @@ -148346,7 +150055,7 @@ in sources."@nodelib/fs.walk-1.2.8" (sources."@npmcli/fs-1.1.1" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."@npmcli/move-file-1.1.2" @@ -148379,7 +150088,7 @@ in sources."esbuild-0.16.3" sources."fast-glob-3.2.11" sources."lru-cache-7.18.3" - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -148396,26 +150105,26 @@ in sources."@remix-run/serve-1.15.0" sources."@remix-run/server-runtime-1.15.0" sources."@remix-run/web-blob-3.0.4" - sources."@remix-run/web-fetch-4.3.3" + sources."@remix-run/web-fetch-4.3.4" sources."@remix-run/web-file-3.0.2" sources."@remix-run/web-form-data-3.0.4" sources."@remix-run/web-stream-1.0.3" sources."@rollup/pluginutils-4.2.1" sources."@sinclair/typebox-0.25.24" sources."@sindresorhus/is-4.6.0" - sources."@swc/core-1.3.50" - sources."@swc/core-darwin-arm64-1.3.50" - sources."@swc/core-darwin-x64-1.3.50" - sources."@swc/core-linux-arm-gnueabihf-1.3.50" - sources."@swc/core-linux-arm64-gnu-1.3.50" - sources."@swc/core-linux-arm64-musl-1.3.50" - sources."@swc/core-linux-x64-gnu-1.3.50" - sources."@swc/core-linux-x64-musl-1.3.50" - sources."@swc/core-win32-arm64-msvc-1.3.50" - sources."@swc/core-win32-ia32-msvc-1.3.50" - sources."@swc/core-win32-x64-msvc-1.3.50" + sources."@swc/core-1.3.53" + sources."@swc/core-darwin-arm64-1.3.53" + sources."@swc/core-darwin-x64-1.3.53" + sources."@swc/core-linux-arm-gnueabihf-1.3.53" + sources."@swc/core-linux-arm64-gnu-1.3.53" + sources."@swc/core-linux-arm64-musl-1.3.53" + sources."@swc/core-linux-x64-gnu-1.3.53" + sources."@swc/core-linux-x64-musl-1.3.53" + sources."@swc/core-win32-arm64-msvc-1.3.53" + sources."@swc/core-win32-ia32-msvc-1.3.53" + sources."@swc/core-win32-x64-msvc-1.3.53" sources."@swc/helpers-0.5.0" - sources."@swc/wasm-1.3.50" + sources."@swc/wasm-1.3.53" sources."@szmarczak/http-timer-4.0.6" sources."@tootallnate/once-1.1.2" sources."@ts-morph/common-0.11.1" @@ -148427,7 +150136,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/cookie-0.4.1" sources."@types/debug-4.1.7" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/estree-jsx-0.0.1" sources."@types/glob-7.2.0" sources."@types/hast-2.3.4" @@ -148440,7 +150149,7 @@ in sources."@types/ms-0.7.31" sources."@types/node-14.18.33" sources."@types/prop-types-15.7.5" - sources."@types/react-18.0.35" + sources."@types/react-18.0.37" sources."@types/responselike-1.0.0" sources."@types/scheduler-0.16.3" sources."@types/unist-2.0.6" @@ -148453,27 +150162,27 @@ in }) sources."@vanilla-extract/private-1.0.3" sources."@vercel/build-utils-6.7.1" - (sources."@vercel/gatsby-plugin-vercel-analytics-1.0.9" // { + sources."@vercel/error-utils-1.0.8" + (sources."@vercel/gatsby-plugin-vercel-analytics-1.0.10" // { dependencies = [ sources."@babel/runtime-7.12.1" ]; }) - (sources."@vercel/gatsby-plugin-vercel-builder-1.2.8" // { + (sources."@vercel/gatsby-plugin-vercel-builder-1.2.10" // { dependencies = [ sources."fs-extra-11.1.0" ]; }) - sources."@vercel/go-2.4.4" - sources."@vercel/hydrogen-0.0.62" - sources."@vercel/next-3.7.4" + sources."@vercel/go-2.5.0" + sources."@vercel/hydrogen-0.0.63" + sources."@vercel/next-3.7.5" sources."@vercel/nft-0.22.5" - sources."@vercel/node-2.10.3" + sources."@vercel/node-2.12.0" sources."@vercel/node-bridge-4.0.1" - sources."@vercel/python-3.1.58" + sources."@vercel/python-3.1.59" sources."@vercel/redwood-1.1.14" - (sources."@vercel/remix-builder-1.8.4" // { + (sources."@vercel/remix-builder-1.8.5" // { dependencies = [ - sources."path-to-regexp-6.2.1" sources."semver-7.3.8" ]; }) @@ -148481,11 +150190,12 @@ in dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" + sources."path-to-regexp-6.1.0" ]; }) sources."@vercel/ruby-1.3.75" - sources."@vercel/static-build-1.3.23" - sources."@vercel/static-config-2.0.15" + sources."@vercel/static-build-1.3.25" + sources."@vercel/static-config-2.0.16" sources."@web3-storage/multipart-parser-1.0.0" sources."@zxing/text-encoding-0.9.0" sources."abbrev-1.1.1" @@ -148510,6 +150220,7 @@ in sources."array-union-2.1.0" sources."ast-types-0.13.4" sources."astring-1.8.4" + sources."async-listen-1.2.0" sources."async-sema-3.1.1" sources."available-typed-arrays-1.0.5" sources."babel-plugin-polyfill-corejs2-0.3.3" @@ -148556,7 +150267,7 @@ in ]; }) sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -148642,9 +150353,15 @@ in sources."string_decoder-1.1.1" ]; }) - sources."edge-runtime-2.0.0" + (sources."edge-runtime-2.1.4" // { + dependencies = [ + sources."@edge-runtime/primitives-2.1.2" + sources."@edge-runtime/vm-2.1.2" + sources."async-listen-2.0.3" + ]; + }) sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.362" + sources."electron-to-chromium-1.4.368" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -148798,7 +150515,6 @@ in sources."http-cache-semantics-4.1.1" sources."http-errors-2.0.0" sources."http-proxy-agent-4.0.1" - sources."http-status-1.5.3" sources."http2-wrapper-1.0.3" sources."https-proxy-agent-5.0.1" sources."human-signals-2.1.0" @@ -149022,7 +150738,7 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" - sources."path-to-regexp-6.1.0" + sources."path-to-regexp-6.2.1" sources."path-type-4.0.0" sources."pathe-1.1.0" sources."peek-stream-1.1.3" @@ -149035,7 +150751,7 @@ in sources."picomatch-2.3.1" sources."pify-4.0.1" sources."pkg-types-1.0.2" - sources."postcss-8.4.21" + sources."postcss-8.4.23" sources."postcss-discard-duplicates-5.1.0" sources."postcss-load-config-4.0.1" sources."postcss-modules-6.0.0" @@ -149098,14 +150814,14 @@ in sources."remark-rehype-9.1.0" sources."require-from-string-2.0.2" sources."require-like-0.1.2" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-alpn-1.2.1" sources."resolve-from-5.0.0" sources."responselike-2.0.1" sources."restore-cursor-3.1.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" - sources."rollup-3.20.2" + sources."rollup-3.20.7" (sources."rollup-plugin-inject-3.0.2" // { dependencies = [ sources."estree-walker-0.6.1" @@ -149195,7 +150911,7 @@ in ]; }) sources."tar-stream-2.2.0" - sources."terser-5.16.9" + sources."terser-5.17.1" sources."through-2.3.8" (sources."through2-2.0.5" // { dependencies = [ @@ -149240,7 +150956,7 @@ in sources."unist-util-visit-parents-5.1.3" sources."universalify-2.0.0" sources."unpipe-1.0.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."utf-8-validate-5.0.10" sources."util-0.12.5" @@ -149256,31 +150972,31 @@ in sources."vfile-5.3.7" sources."vfile-location-4.1.0" sources."vfile-message-3.1.4" - (sources."vite-4.2.1" // { + (sources."vite-4.3.1" // { dependencies = [ - sources."@esbuild/android-arm-0.17.16" - sources."@esbuild/android-arm64-0.17.16" - sources."@esbuild/android-x64-0.17.16" - sources."@esbuild/darwin-arm64-0.17.16" - sources."@esbuild/darwin-x64-0.17.16" - sources."@esbuild/freebsd-arm64-0.17.16" - sources."@esbuild/freebsd-x64-0.17.16" - sources."@esbuild/linux-arm-0.17.16" - sources."@esbuild/linux-arm64-0.17.16" - sources."@esbuild/linux-ia32-0.17.16" - sources."@esbuild/linux-loong64-0.17.16" - sources."@esbuild/linux-mips64el-0.17.16" - sources."@esbuild/linux-ppc64-0.17.16" - sources."@esbuild/linux-riscv64-0.17.16" - sources."@esbuild/linux-s390x-0.17.16" - sources."@esbuild/linux-x64-0.17.16" - sources."@esbuild/netbsd-x64-0.17.16" - sources."@esbuild/openbsd-x64-0.17.16" - sources."@esbuild/sunos-x64-0.17.16" - sources."@esbuild/win32-arm64-0.17.16" - sources."@esbuild/win32-ia32-0.17.16" - sources."@esbuild/win32-x64-0.17.16" - sources."esbuild-0.17.16" + sources."@esbuild/android-arm-0.17.17" + sources."@esbuild/android-arm64-0.17.17" + sources."@esbuild/android-x64-0.17.17" + sources."@esbuild/darwin-arm64-0.17.17" + sources."@esbuild/darwin-x64-0.17.17" + sources."@esbuild/freebsd-arm64-0.17.17" + sources."@esbuild/freebsd-x64-0.17.17" + sources."@esbuild/linux-arm-0.17.17" + sources."@esbuild/linux-arm64-0.17.17" + sources."@esbuild/linux-ia32-0.17.17" + sources."@esbuild/linux-loong64-0.17.17" + sources."@esbuild/linux-mips64el-0.17.17" + sources."@esbuild/linux-ppc64-0.17.17" + sources."@esbuild/linux-riscv64-0.17.17" + sources."@esbuild/linux-s390x-0.17.17" + sources."@esbuild/linux-x64-0.17.17" + sources."@esbuild/netbsd-x64-0.17.17" + sources."@esbuild/openbsd-x64-0.17.17" + sources."@esbuild/sunos-x64-0.17.17" + sources."@esbuild/win32-arm64-0.17.17" + sources."@esbuild/win32-ia32-0.17.17" + sources."@esbuild/win32-x64-0.17.17" + sources."esbuild-0.17.17" ]; }) (sources."vite-node-0.28.5" // { @@ -149288,7 +151004,7 @@ in sources."source-map-0.6.1" ]; }) - sources."vm2-3.9.16" + sources."vm2-3.9.17" sources."wcwidth-1.0.1" sources."web-encoding-1.1.5" sources."web-streams-polyfill-3.2.1" @@ -149409,7 +151125,7 @@ in sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" sources."eslint-8.38.0" - sources."eslint-plugin-vue-9.10.0" + sources."eslint-plugin-vue-9.11.0" sources."eslint-scope-7.2.0" sources."eslint-visitor-keys-3.4.0" sources."espree-9.5.1" @@ -149486,12 +151202,12 @@ in sources."pug-lexer-5.0.1" sources."punycode-2.3.0" sources."queue-microtask-1.2.3" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" sources."run-parallel-1.2.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."sprintf-js-1.0.3" @@ -149635,7 +151351,7 @@ in sources."vscode-languageserver-types-3.16.0" ]; }) - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" sources."vscode-nls-4.1.2" sources."vscode-uri-3.0.7" @@ -149685,7 +151401,7 @@ in sources."vscode-languageserver-types-3.5.0" ]; }) - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.16.0-next.2" sources."vscode-nls-2.0.2" sources."vscode-uri-1.0.8" @@ -149722,7 +151438,7 @@ in sources."vscode-jsonrpc-8.1.0" sources."vscode-languageserver-8.1.0" sources."vscode-languageserver-protocol-3.17.3" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" (sources."vscode-markdown-languageservice-0.3.0" // { dependencies = [ @@ -150049,7 +151765,7 @@ in sources."@starptech/rehype-webparser-0.10.0" sources."@starptech/webparser-0.10.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/unist-2.0.6" sources."@types/vfile-3.0.2" sources."@types/vfile-message-2.0.0" @@ -150668,7 +152384,7 @@ in sources."resolve-from-1.0.1" ]; }) - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-from-5.0.0" sources."resolve-url-0.2.1" sources."responselike-1.0.2" @@ -150944,7 +152660,7 @@ in sources."vscode-jsonrpc-8.1.0" sources."vscode-languageserver-5.3.0-next.10" sources."vscode-languageserver-protocol-3.17.3" - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" sources."vscode-nls-5.2.0" sources."vscode-textbuffer-1.0.0" @@ -150958,7 +152674,7 @@ in sources."vue-onsenui-helper-json-1.0.2" sources."wcwidth-1.0.1" sources."which-1.3.1" - sources."which-module-2.0.0" + sources."which-module-2.0.1" sources."widest-line-2.0.1" sources."window-size-0.2.0" sources."word-wrap-1.2.3" @@ -151203,7 +152919,7 @@ in sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/minimatch-3.0.5" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/yauzl-2.10.0" sources."abort-controller-3.0.0" sources."accepts-1.3.8" @@ -151561,7 +153277,7 @@ in sources."lodash-4.17.21" sources."lodash.merge-4.6.2" sources."lowercase-keys-3.0.0" - sources."lru-cache-9.0.2" + sources."lru-cache-9.1.0" sources."make-error-1.3.6" sources."map-age-cleaner-0.1.3" sources."marky-1.2.5" @@ -151629,7 +153345,7 @@ in sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" - (sources."path-scurry-1.6.4" // { + (sources."path-scurry-1.7.0" // { dependencies = [ sources."minipass-5.0.0" ]; @@ -151850,10 +153566,10 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "5.79.0"; + version = "5.80.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.79.0.tgz"; - sha512 = "3mN4rR2Xq+INd6NnYuL9RC9GAmc1ROPKJoHhrZ4pAjdMFEkJJWrsPw8o2JjCIyQyTu7rTXYn4VG6OpyB3CobZg=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz"; + sha512 = "OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA=="; }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.3" @@ -151864,24 +153580,24 @@ in sources."@jridgewell/trace-mapping-0.3.18" sources."@types/eslint-8.37.0" sources."@types/eslint-scope-3.7.4" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.11" - sources."@types/node-18.15.11" - sources."@webassemblyjs/ast-1.11.1" - sources."@webassemblyjs/floating-point-hex-parser-1.11.1" - sources."@webassemblyjs/helper-api-error-1.11.1" - sources."@webassemblyjs/helper-buffer-1.11.1" - sources."@webassemblyjs/helper-numbers-1.11.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" - sources."@webassemblyjs/helper-wasm-section-1.11.1" - sources."@webassemblyjs/ieee754-1.11.1" - sources."@webassemblyjs/leb128-1.11.1" - sources."@webassemblyjs/utf8-1.11.1" - sources."@webassemblyjs/wasm-edit-1.11.1" - sources."@webassemblyjs/wasm-gen-1.11.1" - sources."@webassemblyjs/wasm-opt-1.11.1" - sources."@webassemblyjs/wasm-parser-1.11.1" - sources."@webassemblyjs/wast-printer-1.11.1" + sources."@types/node-18.15.13" + sources."@webassemblyjs/ast-1.11.5" + sources."@webassemblyjs/floating-point-hex-parser-1.11.5" + sources."@webassemblyjs/helper-api-error-1.11.5" + sources."@webassemblyjs/helper-buffer-1.11.5" + sources."@webassemblyjs/helper-numbers-1.11.5" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.5" + sources."@webassemblyjs/helper-wasm-section-1.11.5" + sources."@webassemblyjs/ieee754-1.11.5" + sources."@webassemblyjs/leb128-1.11.5" + sources."@webassemblyjs/utf8-1.11.5" + sources."@webassemblyjs/wasm-edit-1.11.5" + sources."@webassemblyjs/wasm-gen-1.11.5" + sources."@webassemblyjs/wasm-opt-1.11.5" + sources."@webassemblyjs/wasm-parser-1.11.5" + sources."@webassemblyjs/wast-printer-1.11.5" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."acorn-8.8.2" @@ -151890,11 +153606,11 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.362" - sources."enhanced-resolve-5.12.0" + sources."electron-to-chromium-1.4.368" + sources."enhanced-resolve-5.13.0" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" sources."eslint-scope-5.1.1" @@ -151923,18 +153639,18 @@ in sources."punycode-2.3.0" sources."randombytes-2.1.0" sources."safe-buffer-5.2.1" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" sources."serialize-javascript-6.0.1" sources."source-map-0.6.1" sources."source-map-support-0.5.21" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.16.9" + sources."terser-5.17.1" sources."terser-webpack-plugin-5.3.7" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - sources."webpack-5.79.0" + sources."webpack-5.80.0" sources."webpack-sources-3.2.3" ]; buildInputs = globalBuildInputs; @@ -151965,24 +153681,24 @@ in sources."@jridgewell/trace-mapping-0.3.18" sources."@types/eslint-8.37.0" sources."@types/eslint-scope-3.7.4" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.11" - sources."@types/node-18.15.11" - sources."@webassemblyjs/ast-1.11.1" - sources."@webassemblyjs/floating-point-hex-parser-1.11.1" - sources."@webassemblyjs/helper-api-error-1.11.1" - sources."@webassemblyjs/helper-buffer-1.11.1" - sources."@webassemblyjs/helper-numbers-1.11.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" - sources."@webassemblyjs/helper-wasm-section-1.11.1" - sources."@webassemblyjs/ieee754-1.11.1" - sources."@webassemblyjs/leb128-1.11.1" - sources."@webassemblyjs/utf8-1.11.1" - sources."@webassemblyjs/wasm-edit-1.11.1" - sources."@webassemblyjs/wasm-gen-1.11.1" - sources."@webassemblyjs/wasm-opt-1.11.1" - sources."@webassemblyjs/wasm-parser-1.11.1" - sources."@webassemblyjs/wast-printer-1.11.1" + sources."@types/node-18.15.13" + sources."@webassemblyjs/ast-1.11.5" + sources."@webassemblyjs/floating-point-hex-parser-1.11.5" + sources."@webassemblyjs/helper-api-error-1.11.5" + sources."@webassemblyjs/helper-buffer-1.11.5" + sources."@webassemblyjs/helper-numbers-1.11.5" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.5" + sources."@webassemblyjs/helper-wasm-section-1.11.5" + sources."@webassemblyjs/ieee754-1.11.5" + sources."@webassemblyjs/leb128-1.11.5" + sources."@webassemblyjs/utf8-1.11.5" + sources."@webassemblyjs/wasm-edit-1.11.5" + sources."@webassemblyjs/wasm-gen-1.11.5" + sources."@webassemblyjs/wasm-opt-1.11.5" + sources."@webassemblyjs/wasm-parser-1.11.5" + sources."@webassemblyjs/wast-printer-1.11.5" sources."@webpack-cli/configtest-2.0.1" sources."@webpack-cli/info-2.0.1" sources."@webpack-cli/serve-2.0.1" @@ -151994,14 +153710,14 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chrome-trace-event-1.0.3" sources."clone-deep-4.0.1" - sources."colorette-2.0.19" + sources."colorette-2.0.20" sources."commander-9.5.0" sources."cross-spawn-7.0.3" - sources."electron-to-chromium-1.4.362" - sources."enhanced-resolve-5.12.0" + sources."electron-to-chromium-1.4.368" + sources."enhanced-resolve-5.13.0" sources."envinfo-7.8.1" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" @@ -152050,11 +153766,11 @@ in sources."punycode-2.3.0" sources."randombytes-2.1.0" sources."rechoir-0.8.0" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-cwd-3.0.0" sources."resolve-from-5.0.0" sources."safe-buffer-5.2.1" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" sources."serialize-javascript-6.0.1" sources."shallow-clone-3.0.1" sources."shebang-command-2.0.0" @@ -152064,16 +153780,16 @@ in sources."supports-color-8.1.1" sources."supports-preserve-symlinks-flag-1.0.0" sources."tapable-2.2.1" - (sources."terser-5.16.9" // { + (sources."terser-5.17.1" // { dependencies = [ sources."commander-2.20.3" ]; }) sources."terser-webpack-plugin-5.3.7" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - sources."webpack-5.79.0" + sources."webpack-5.80.0" sources."webpack-cli-5.0.1" sources."webpack-merge-5.8.0" sources."webpack-sources-3.2.3" @@ -152093,10 +153809,10 @@ in webpack-dev-server = nodeEnv.buildNodePackage { name = "webpack-dev-server"; packageName = "webpack-dev-server"; - version = "4.13.2"; + version = "4.13.3"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz"; - sha512 = "5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw=="; + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.3.tgz"; + sha512 = "KqqzrzMRSRy5ePz10VhjyL27K2dxqwXQLP5rAKwRJBPUahe7Z2bBWzHw37jeb8GCPKxZRO79ZdQUAPesMh/Nug=="; }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.3" @@ -152112,13 +153828,13 @@ in sources."@types/connect-history-api-fallback-1.3.5" sources."@types/eslint-8.37.0" sources."@types/eslint-scope-3.7.4" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/express-4.17.17" sources."@types/express-serve-static-core-4.17.33" sources."@types/http-proxy-1.17.10" sources."@types/json-schema-7.0.11" sources."@types/mime-3.0.1" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/retry-0.12.0" @@ -152126,21 +153842,21 @@ in sources."@types/serve-static-1.15.1" sources."@types/sockjs-0.3.33" sources."@types/ws-8.5.4" - sources."@webassemblyjs/ast-1.11.1" - sources."@webassemblyjs/floating-point-hex-parser-1.11.1" - sources."@webassemblyjs/helper-api-error-1.11.1" - sources."@webassemblyjs/helper-buffer-1.11.1" - sources."@webassemblyjs/helper-numbers-1.11.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" - sources."@webassemblyjs/helper-wasm-section-1.11.1" - sources."@webassemblyjs/ieee754-1.11.1" - sources."@webassemblyjs/leb128-1.11.1" - sources."@webassemblyjs/utf8-1.11.1" - sources."@webassemblyjs/wasm-edit-1.11.1" - sources."@webassemblyjs/wasm-gen-1.11.1" - sources."@webassemblyjs/wasm-opt-1.11.1" - sources."@webassemblyjs/wasm-parser-1.11.1" - sources."@webassemblyjs/wast-printer-1.11.1" + sources."@webassemblyjs/ast-1.11.5" + sources."@webassemblyjs/floating-point-hex-parser-1.11.5" + sources."@webassemblyjs/helper-api-error-1.11.5" + sources."@webassemblyjs/helper-buffer-1.11.5" + sources."@webassemblyjs/helper-numbers-1.11.5" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.5" + sources."@webassemblyjs/helper-wasm-section-1.11.5" + sources."@webassemblyjs/ieee754-1.11.5" + sources."@webassemblyjs/leb128-1.11.5" + sources."@webassemblyjs/utf8-1.11.5" + sources."@webassemblyjs/wasm-edit-1.11.5" + sources."@webassemblyjs/wasm-gen-1.11.5" + sources."@webassemblyjs/wasm-opt-1.11.5" + sources."@webassemblyjs/wasm-parser-1.11.5" + sources."@webassemblyjs/wast-printer-1.11.5" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."accepts-1.3.8" @@ -152168,10 +153884,10 @@ in sources."bufferutil-4.0.7" sources."bytes-3.0.0" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" - sources."colorette-2.0.19" + sources."colorette-2.0.20" sources."commander-2.20.3" sources."compressible-2.0.18" sources."compression-1.7.4" @@ -152194,11 +153910,11 @@ in sources."destroy-1.2.0" sources."detect-node-2.1.0" sources."dns-equal-1.0.0" - sources."dns-packet-5.5.0" + sources."dns-packet-5.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.362" + sources."electron-to-chromium-1.4.368" sources."encodeurl-1.0.2" - sources."enhanced-resolve-5.12.0" + sources."enhanced-resolve-5.13.0" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -152273,7 +153989,7 @@ in sources."launch-editor-2.6.0" sources."loader-runner-4.3.0" sources."media-typer-0.3.0" - sources."memfs-3.5.0" + sources."memfs-3.5.1" sources."merge-descriptors-1.0.1" sources."merge-stream-2.0.0" sources."methods-1.1.2" @@ -152330,7 +154046,7 @@ in sources."rimraf-3.0.2" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" - sources."schema-utils-4.0.0" + sources."schema-utils-4.0.1" sources."select-hose-2.0.0" sources."selfsigned-2.1.1" (sources."send-0.18.0" // { @@ -152375,13 +154091,13 @@ in sources."strip-final-newline-2.0.0" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.16.9" + sources."terser-5.17.1" (sources."terser-webpack-plugin-5.3.7" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" sources."json-schema-traverse-0.4.1" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" ]; }) sources."thunky-1.1.0" @@ -152389,7 +154105,7 @@ in sources."toidentifier-1.0.1" sources."type-is-1.6.18" sources."unpipe-1.0.0" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."utf-8-validate-6.0.3" sources."util-deprecate-1.0.2" @@ -152398,12 +154114,12 @@ in sources."vary-1.1.2" sources."watchpack-2.4.0" sources."wbuf-1.7.3" - (sources."webpack-5.79.0" // { + (sources."webpack-5.80.0" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" sources."json-schema-traverse-0.4.1" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" ]; }) sources."webpack-dev-middleware-5.3.3" @@ -152444,24 +154160,24 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@types/eslint-8.37.0" sources."@types/eslint-scope-3.7.4" - sources."@types/estree-1.0.0" + sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.11" - sources."@types/node-18.15.11" - sources."@webassemblyjs/ast-1.11.1" - sources."@webassemblyjs/floating-point-hex-parser-1.11.1" - sources."@webassemblyjs/helper-api-error-1.11.1" - sources."@webassemblyjs/helper-buffer-1.11.1" - sources."@webassemblyjs/helper-numbers-1.11.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" - sources."@webassemblyjs/helper-wasm-section-1.11.1" - sources."@webassemblyjs/ieee754-1.11.1" - sources."@webassemblyjs/leb128-1.11.1" - sources."@webassemblyjs/utf8-1.11.1" - sources."@webassemblyjs/wasm-edit-1.11.1" - sources."@webassemblyjs/wasm-gen-1.11.1" - sources."@webassemblyjs/wasm-opt-1.11.1" - sources."@webassemblyjs/wasm-parser-1.11.1" - sources."@webassemblyjs/wast-printer-1.11.1" + sources."@types/node-18.15.13" + sources."@webassemblyjs/ast-1.11.5" + sources."@webassemblyjs/floating-point-hex-parser-1.11.5" + sources."@webassemblyjs/helper-api-error-1.11.5" + sources."@webassemblyjs/helper-buffer-1.11.5" + sources."@webassemblyjs/helper-numbers-1.11.5" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.5" + sources."@webassemblyjs/helper-wasm-section-1.11.5" + sources."@webassemblyjs/ieee754-1.11.5" + sources."@webassemblyjs/leb128-1.11.5" + sources."@webassemblyjs/utf8-1.11.5" + sources."@webassemblyjs/wasm-edit-1.11.5" + sources."@webassemblyjs/wasm-gen-1.11.5" + sources."@webassemblyjs/wasm-opt-1.11.5" + sources."@webassemblyjs/wasm-parser-1.11.5" + sources."@webassemblyjs/wast-printer-1.11.5" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."acorn-8.8.2" @@ -152472,12 +154188,12 @@ in sources."braces-3.0.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001478" + sources."caniuse-lite-1.0.30001481" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."dir-glob-3.0.1" - sources."electron-to-chromium-1.4.362" - sources."enhanced-resolve-5.12.0" + sources."electron-to-chromium-1.4.368" + sources."enhanced-resolve-5.13.0" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" sources."eslint-scope-5.1.1" @@ -152528,32 +154244,32 @@ in sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."safe-buffer-5.2.1" - sources."schema-utils-4.0.0" + sources."schema-utils-4.0.1" sources."serialize-javascript-6.0.1" sources."slash-4.0.0" sources."source-map-0.6.1" sources."source-map-support-0.5.21" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.16.9" + sources."terser-5.17.1" (sources."terser-webpack-plugin-5.3.7" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" sources."json-schema-traverse-0.4.1" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" ]; }) sources."to-regex-range-5.0.1" - sources."update-browserslist-db-1.0.10" + sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - (sources."webpack-5.79.0" // { + (sources."webpack-5.80.0" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" sources."json-schema-traverse-0.4.1" - sources."schema-utils-3.1.1" + sources."schema-utils-3.1.2" ]; }) sources."webpack-sources-3.2.3" @@ -152589,7 +154305,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@webtorrent/http-node-1.3.0" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.3.0" @@ -152699,7 +154415,7 @@ in sources."mime-1.6.0" ]; }) - sources."dns-packet-5.5.0" + sources."dns-packet-5.6.0" sources."dns-txt-2.0.2" (sources."ecstatic-4.1.4" // { dependencies = [ @@ -153023,7 +154739,7 @@ in sources."require-directory-2.1.1" sources."rimraf-3.0.2" sources."safer-buffer-2.1.2" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."sisteransi-1.0.5" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" @@ -153054,10 +154770,10 @@ in wrangler = nodeEnv.buildNodePackage { name = "wrangler"; packageName = "wrangler"; - version = "2.15.1"; + version = "2.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/wrangler/-/wrangler-2.15.1.tgz"; - sha512 = "nGcvyE6rStlPFiK8Uz2sB+Z6DyaVfThLYvKa6LfCsM5rN1C/3+flb3qp3DeEkFs09lLdSW0nAeaZavGkZSczvA=="; + url = "https://registry.npmjs.org/wrangler/-/wrangler-2.16.0.tgz"; + sha512 = "jhkOmEAF7jH58VvnGx7Uqjs2u2T17e/5r9W3OsqESyBjc/8ALUYuwqQ2gr8JsXFny/cE0ysJas0fdY9wggWMCw=="; }; dependencies = [ sources."@cloudflare/kv-asset-handler-0.2.0" @@ -153106,7 +154822,7 @@ in sources."@miniflare/watcher-2.13.0" sources."@miniflare/web-sockets-2.13.0" sources."@types/better-sqlite3-7.6.4" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/stack-trace-0.0.29" sources."anymatch-3.1.3" sources."binary-extensions-2.2.0" @@ -153179,7 +154895,7 @@ in sources."rollup-pluginutils-2.8.2" sources."selfsigned-2.1.1" sources."semiver-1.1.0" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."set-cookie-parser-2.6.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -153280,7 +154996,7 @@ in sources."array.prototype.tosorted-1.1.1" sources."ast-types-flow-0.0.7" sources."available-typed-arrays-1.0.5" - sources."axe-core-4.6.3" + sources."axe-core-4.7.0" sources."axobject-query-3.1.1" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" @@ -153314,7 +155030,7 @@ in ]; }) sources."eslint-import-resolver-node-0.3.7" - sources."eslint-module-utils-2.7.4" + sources."eslint-module-utils-2.8.0" sources."eslint-plugin-import-2.27.5" sources."eslint-plugin-jsx-a11y-6.7.1" (sources."eslint-plugin-react-7.32.2" // { @@ -153431,8 +155147,8 @@ in sources."queue-microtask-1.2.3" sources."react-is-16.13.1" sources."regenerator-runtime-0.13.11" - sources."regexp.prototype.flags-1.4.3" - sources."resolve-1.22.2" + sources."regexp.prototype.flags-1.5.0" + sources."resolve-1.22.3" sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" @@ -153523,7 +155239,7 @@ in sources."vscode-languageserver-types-3.16.0" ]; }) - sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-languageserver-types-3.17.3" sources."vscode-nls-5.2.0" sources."vscode-uri-3.0.7" @@ -153646,18 +155362,18 @@ in (sources."@npmcli/arborist-4.3.1" // { dependencies = [ sources."mkdirp-1.0.4" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."@npmcli/fs-1.1.1" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."@npmcli/git-2.1.0" // { dependencies = [ sources."mkdirp-1.0.4" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."@npmcli/installed-package-contents-1.0.7" @@ -153668,7 +155384,7 @@ in }) (sources."@npmcli/metavuln-calculator-2.0.0" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."@npmcli/move-file-1.1.2" // { @@ -153908,7 +155624,7 @@ in sources."glob-parent-5.1.2" (sources."global-agent-3.0.0" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."global-dirs-3.0.1" // { @@ -154135,7 +155851,7 @@ in sources."minimatch-3.1.2" sources."npmlog-6.0.2" sources."readable-stream-3.6.2" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."nopt-5.0.0" @@ -154150,7 +155866,7 @@ in sources."npm-conf-1.1.3" (sources."npm-install-checks-4.0.0" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."npm-keyword-6.1.0" // { @@ -154169,7 +155885,7 @@ in (sources."npm-package-arg-8.1.5" // { dependencies = [ sources."hosted-git-info-4.1.0" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."npm-packlist-3.0.0" // { @@ -154181,7 +155897,7 @@ in }) (sources."npm-pick-manifest-6.1.1" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."npm-registry-fetch-12.0.2" // { @@ -154201,7 +155917,7 @@ in }) sources."mkdirp-1.0.4" sources."ms-2.1.2" - (sources."semver-7.4.0" // { + (sources."semver-7.5.0" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -154266,7 +155982,7 @@ in sources."mimic-response-3.1.0" sources."normalize-url-6.1.0" sources."responselike-2.0.1" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) (sources."pacote-12.0.3" // { @@ -154362,7 +156078,7 @@ in sources."registry-url-5.1.0" sources."remove-trailing-separator-1.1.0" sources."replace-ext-1.0.1" - sources."resolve-1.22.2" + sources."resolve-1.22.3" sources."resolve-alpn-1.2.1" sources."responselike-1.0.2" sources."restore-cursor-3.1.0" @@ -154504,7 +156220,7 @@ in sources."unzip-response-2.0.1" (sources."update-notifier-5.1.0" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."url-parse-lax-3.0.0" @@ -154556,7 +156272,7 @@ in sources."get-stream-3.0.0" (sources."global-agent-2.2.0" // { dependencies = [ - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."got-6.7.1" @@ -154593,7 +156309,7 @@ in sources."p-locate-5.0.0" sources."path-exists-4.0.0" sources."readable-stream-3.6.2" - sources."semver-7.4.0" + sources."semver-7.5.0" ]; }) sources."yocto-queue-0.1.0" @@ -154640,10 +156356,10 @@ in "@zwave-js/server" = nodeEnv.buildNodePackage { name = "_at_zwave-js_slash_server"; packageName = "@zwave-js/server"; - version = "1.27.0"; + version = "1.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/server/-/server-1.27.0.tgz"; - sha512 = "f6J6CsS4UrIMdNtug2P8d/1ELi0iBp2uJnsl/9AIgPS7ikDUOzebFrCsqUHy/2WvRMKbk3DSSpgkKmV+T9WfLw=="; + url = "https://registry.npmjs.org/@zwave-js/server/-/server-1.28.0.tgz"; + sha512 = "9vW1BVYGtutIozTr6+tb7upDJIGuW17ovcJPpKZ57+R74pqirBWuEnepVBXQCCNsrxjTZp7BLuQTUDgczye9Fw=="; }; dependencies = [ sources."@alcalzone/jsonl-db-3.1.0" @@ -154665,28 +156381,28 @@ in sources."@esm2cjs/p-timeout-5.1.0" sources."@esm2cjs/responselike-3.0.0" sources."@homebridge/ciao-1.1.5" - (sources."@sentry-internal/tracing-7.47.0" // { + (sources."@sentry-internal/tracing-7.49.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/core-7.47.0" // { + (sources."@sentry/core-7.49.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/integrations-7.47.0" // { + (sources."@sentry/integrations-7.49.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/node-7.47.0" // { + (sources."@sentry/node-7.49.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - sources."@sentry/types-7.47.0" - (sources."@sentry/utils-7.47.0" // { + sources."@sentry/types-7.49.0" + (sources."@sentry/utils-7.49.0" // { dependencies = [ sources."tslib-1.14.1" ]; @@ -154801,7 +156517,7 @@ in sources."retry-0.12.0" sources."safe-buffer-5.2.1" sources."safe-stable-stringify-2.4.3" - sources."semver-7.4.0" + sources."semver-7.5.0" sources."serialport-10.5.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -154858,7 +156574,7 @@ in sources."@types/fs-extra-11.0.1" sources."@types/jsonfile-6.1.1" sources."@types/minimist-1.2.2" - sources."@types/node-18.15.11" + sources."@types/node-18.15.13" sources."@types/ps-tree-1.1.2" sources."@types/which-2.0.2" sources."braces-3.0.2" From a7e41cdde3d7b9b5147393cec7953e5ed666a830 Mon Sep 17 00:00:00 2001 From: datafoo <34766150+datafoo@users.noreply.github.com> Date: Fri, 21 Apr 2023 15:40:22 +0200 Subject: [PATCH 197/213] vscode-extensions.esbenp.prettier-vscode: 9.10.4 -> 9.12.0 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 76bc3fb3b13c..8aa1b09ae6e2 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -1079,8 +1079,8 @@ let mktplcRef = { name = "prettier-vscode"; publisher = "esbenp"; - version = "9.10.4"; - sha256 = "sha256-khtyB0Qbm+iuM1GsAaF32YRv1VBTIy7daeCKdgwCIC8="; + version = "9.12.0"; + sha256 = "sha256-b7EaYYJNZQBqhyKJ04tytmD9DDRcvA68HTo5JHTr9Fo="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/esbenp.prettier-vscode/changelog"; From d76fb26a8ea76d584a692255e8099880cf1e31d8 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 21 Apr 2023 20:48:49 +0300 Subject: [PATCH 198/213] python310Packages.levenshtein: fix hash --- pkgs/development/python-modules/levenshtein/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/levenshtein/default.nix b/pkgs/development/python-modules/levenshtein/default.nix index c3c3cc0f2a2b..61da9ab75910 100644 --- a/pkgs/development/python-modules/levenshtein/default.nix +++ b/pkgs/development/python-modules/levenshtein/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "maxbachmann"; repo = "Levenshtein"; rev = "refs/tags/v${version}"; - hash = "sha256-YmgNxFChKn1P6FrJx2ybucJP9WP0J9h8bskwDNy+snE="; + hash = "sha256-j28OQkJymkh6tIGYLoZLad7OUUImjZqXdqM2zU3haac="; }; nativeBuildInputs = [ From c7819905fb2c54724c61ea387da59b5377817fbb Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 21 Apr 2023 20:52:25 +0300 Subject: [PATCH 199/213] srvc: 0.17.0 -> 0.17.1 --- pkgs/applications/version-management/srvc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/srvc/default.nix b/pkgs/applications/version-management/srvc/default.nix index 532e046713a6..cb01990b60f9 100644 --- a/pkgs/applications/version-management/srvc/default.nix +++ b/pkgs/applications/version-management/srvc/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "srvc"; - version = "0.17.0"; + version = "0.17.1"; src = fetchFromGitHub { owner = "insilica"; repo = "rs-srvc"; rev = "v${version}"; - hash = "sha256-6cullXcSnFlGM5O/g/J5WwBBUPfg1cbvjyPcIZ6yjRE="; + hash = "sha256-WpzJzjGzYX1IxC9Vz//JhRYCPZyLchv+iv+kuKkw2Os="; }; - cargoHash = "sha256-xmHCm4kH4y0ph0ssMXZn+TvLAciYrsggyjmar85zF74="; + cargoHash = "sha256-WhmcJQRh2x6DZRXwzy/KtK81XXIDmNMnUtq7ylCpwTw="; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.CoreServices From 4d6451237e65c413b1bdbb001161bfb9f131af71 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 18:28:56 +0000 Subject: [PATCH 200/213] ktextaddons: 1.1.0 -> 1.2.0 --- pkgs/development/libraries/ktextaddons/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/ktextaddons/default.nix b/pkgs/development/libraries/ktextaddons/default.nix index b7286e7bea29..4a4d7af21803 100644 --- a/pkgs/development/libraries/ktextaddons/default.nix +++ b/pkgs/development/libraries/ktextaddons/default.nix @@ -1,11 +1,11 @@ { lib, mkDerivation, fetchurl, cmake, extra-cmake-modules, karchive, kconfigwidgets, kcoreaddons, ki18n, kxmlgui, qtkeychain }: mkDerivation rec { pname = "ktextaddons"; - version = "1.1.0"; + version = "1.2.0"; src = fetchurl { url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz"; - hash = "sha256-BV1tHCD6kGI5Zj8PRZcEanLi1O7huS+qUijjtePDvik="; + hash = "sha256-iBJs7MWSvkxezAxmQUdKTKhG3RhmBWziS62p610IAYM="; }; nativeBuildInputs = [ cmake extra-cmake-modules ]; From eec1ba45f1dd1ff38a48cdee5b8f9e32af5142c8 Mon Sep 17 00:00:00 2001 From: "\"Alexander Sieg\"" <"alex@xanderio.de"> Date: Fri, 21 Apr 2023 21:05:34 +0200 Subject: [PATCH 201/213] vimPlugins: update --- .../editors/vim/plugins/generated.nix | 452 +++++++++--------- 1 file changed, 238 insertions(+), 214 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index a8cf04af71ce..fca149b7f46c 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -29,12 +29,12 @@ final: prev: ChatGPT-nvim = buildVimPluginFrom2Nix { pname = "ChatGPT.nvim"; - version = "2023-04-18"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "jackMort"; repo = "ChatGPT.nvim"; - rev = "1ca4211880375dbd7be888da0f50dd2bf7c93a30"; - sha256 = "05cnbv2bpls9pmqafv8vyaag7kmh0bcibrgh1gzsaqv4xl95mkzl"; + rev = "5a0fdf6c408a53924081aff0b7379e765c7edc1b"; + sha256 = "06pjcsbg4kmxily4ggnc7sx06kas0v5vqch2jzkazds2icbnpnk3"; }; meta.homepage = "https://github.com/jackMort/ChatGPT.nvim/"; }; @@ -173,12 +173,12 @@ final: prev: LazyVim = buildVimPluginFrom2Nix { pname = "LazyVim"; - version = "2023-04-17"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "LazyVim"; repo = "LazyVim"; - rev = "77efbe8bcf76675ba83257a376001e0e86dbd2c4"; - sha256 = "0pxhx9jg04jc0vqxbaa7jzd27n77axgsl15n9d86qqd1f25sh9hb"; + rev = "2f93f69171e6203d79b2aaf1798be71ae1137bda"; + sha256 = "0qmwixccxjcfi3d6mk1h488y0nkv3d7csspn9m5mnp8qw1m617di"; }; meta.homepage = "https://github.com/LazyVim/LazyVim/"; }; @@ -305,12 +305,12 @@ final: prev: SchemaStore-nvim = buildVimPluginFrom2Nix { pname = "SchemaStore.nvim"; - version = "2023-04-17"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "b0o"; repo = "SchemaStore.nvim"; - rev = "5e1225507dbc46710e7f2bec86f2444e578a959e"; - sha256 = "1iy4my98nl6cy4svq7wch2vyhv88j5cxbn40irxhjk9gprxqal35"; + rev = "bff3297b0c1dba18907c9e5a8eb433e8b2add045"; + sha256 = "05vzrmylh84wz4248kwn0nfp0q1sw6k69lkx3ssr7w4yxpf92986"; }; meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; }; @@ -369,8 +369,8 @@ final: prev: src = fetchFromGitHub { owner = "SpaceVim"; repo = "SpaceVim"; - rev = "2d28abac50675c74001289d85b37e7d498d4b40d"; - sha256 = "1lrvbhz4s5dxa8kyrvsk4wknj50ljnf4jlpbsgrngkcycyqzliy1"; + rev = "07ef56b433dabe259687cb2a2d603aaab82753ed"; + sha256 = "1n7ycr5wj3ad8i79z4g5l8b5d6qiz5crzvpimj9nzlmi0r2az7yr"; }; meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; }; @@ -437,12 +437,12 @@ final: prev: YouCompleteMe = buildVimPluginFrom2Nix { pname = "YouCompleteMe"; - version = "2023-04-17"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "ycm-core"; repo = "YouCompleteMe"; - rev = "0d387ad5b68052788364f700a60c1a30dfd0144d"; - sha256 = "1s802af9bwq88l0jcwcmb9sybcmlf22zvv4bissbk0v461i2k5rx"; + rev = "78ba06ef21bfab9835ced9f4ba8ffdac1b975c40"; + sha256 = "0wr3d5ziwnb2v3fwh5asl1jq9js159qz8q1l8p0y4wx1jbfvryll"; fetchSubmodules = true; }; meta.homepage = "https://github.com/ycm-core/YouCompleteMe/"; @@ -486,12 +486,12 @@ final: prev: aerial-nvim = buildVimPluginFrom2Nix { pname = "aerial.nvim"; - version = "2023-04-17"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "stevearc"; repo = "aerial.nvim"; - rev = "a2beef7cd6b93c1681442c2410c76b98a81166b1"; - sha256 = "1nzx3xsgvrbv4m68vh1nsyvibagdgw7ygffp6ql1bdz30ab10pnx"; + rev = "00cac8e96f932dca8f559849cbea3f0812621d0d"; + sha256 = "1i57k301va0c1kgxblz4cyq6s38g6z54xzklddyhrvvq4pvn31mi"; fetchSubmodules = true; }; meta.homepage = "https://github.com/stevearc/aerial.nvim/"; @@ -950,7 +950,7 @@ final: prev: rev = "c1bad34ce742b4f360b67ca23c873fef998240fc"; sha256 = "1jgjj0knyizwyvbv9ddg36hcpwbscy4p5fsqwzybnsjgxd32602j"; }; - meta.homepage = "https://github.com/LunarVim/bigfile.nvim"; + meta.homepage = "https://github.com/LunarVim/bigfile.nvim/"; }; bitbake-vim = buildVimPluginFrom2Nix { @@ -1063,12 +1063,12 @@ final: prev: bufferline-nvim = buildVimPluginFrom2Nix { pname = "bufferline.nvim"; - version = "2023-04-15"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "akinsho"; repo = "bufferline.nvim"; - rev = "243893ba9d5d1049dd451a25cab32ec7f8f67bcf"; - sha256 = "1kjl33lz1q6jx6mkpgf5b2zyff6yykffskcb9fyv9vmv7640k42r"; + rev = "8b32447f1ba00f71ec2ebb413249d1d84228d9fb"; + sha256 = "1i46lgd2w1zwi08zkfs4xfq2gzz7s58hw1mm6s76avbp4fqjrr7q"; }; meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; }; @@ -1123,12 +1123,12 @@ final: prev: ccc-nvim = buildVimPluginFrom2Nix { pname = "ccc.nvim"; - version = "2023-04-18"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "uga-rosa"; repo = "ccc.nvim"; - rev = "fd39a3afedfcccb63ff396b677523d935824ea44"; - sha256 = "1drxyr49l0cp6w3508rkxj190g548dxvwrv1x1ikx0vf2vhqqws1"; + rev = "985c4a25ad610c6dc3294f1f8d52384440e2b600"; + sha256 = "0akwmz8vfa5wy6wdvammq1hrmkxb07d7i9kn3hvhikzld2s82kgy"; }; meta.homepage = "https://github.com/uga-rosa/ccc.nvim/"; }; @@ -2143,12 +2143,12 @@ final: prev: copilot-lua = buildVimPluginFrom2Nix { pname = "copilot.lua"; - version = "2023-04-11"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "zbirenbaum"; repo = "copilot.lua"; - rev = "a4a37dda9e48986e5d2a90d6a3cbc88fca241dbb"; - sha256 = "1f5jzjih3bq7nlhvlrw8ndzvknmaaih4z10m0hzsjd4gdqnpvldn"; + rev = "decc8d43bcd73a288fa689690c20faf0485da217"; + sha256 = "18wsjan43mj8iwm2g5l3bkzcrwxcsinpwlwvbsylsfj5yxqjmvyy"; }; meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; }; @@ -2733,12 +2733,12 @@ final: prev: diffview-nvim = buildVimPluginFrom2Nix { pname = "diffview.nvim"; - version = "2023-04-11"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "sindrets"; repo = "diffview.nvim"; - rev = "63720aa5a70ce4aa386be407d0e612cd9e63861a"; - sha256 = "0a8n7kv3b7qwzn435vnq0wxprfcypi86c2jsn7w07b9f0mymmlmf"; + rev = "f9ddbe798cb92854a383e2377482a49139a52c3d"; + sha256 = "05a0a4521vba35aa9gy1j3r70y3pqy0rirq7cnzmla654n0d7ddl"; }; meta.homepage = "https://github.com/sindrets/diffview.nvim/"; }; @@ -2781,12 +2781,12 @@ final: prev: dracula-nvim = buildVimPluginFrom2Nix { pname = "dracula.nvim"; - version = "2023-04-18"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "Mofiqul"; repo = "dracula.nvim"; - rev = "4f78909715d96ac7eccb2356a8b2387d7bacc3db"; - sha256 = "041qldd0clbg1x77yy9h73l3j8r9rsaxidqgi9hrkrv3g5mpx559"; + rev = "26d04c8ced02f02207e7aec1d5730c3a9ebadeeb"; + sha256 = "16z6rzay9sn011pl1ljjqs2f2k7igzzyqg9k6dyzzxjb3k1037rl"; }; meta.homepage = "https://github.com/Mofiqul/dracula.nvim/"; }; @@ -2852,6 +2852,18 @@ final: prev: meta.homepage = "https://github.com/gpanders/editorconfig.nvim/"; }; + elixir-tools-nvim = buildVimPluginFrom2Nix { + pname = "elixir-tools.nvim"; + version = "2023-04-21"; + src = fetchFromGitHub { + owner = "elixir-tools"; + repo = "elixir-tools.nvim"; + rev = "a9bb505891b2d6eda659b33f69f5e65c9849785d"; + sha256 = "0ks90kvssckqpd2aifp5bg6xlvb4jjiy6aq4xwjiriln3npgd477"; + }; + meta.homepage = "https://github.com/elixir-tools/elixir-tools.nvim/"; + }; + elm-vim = buildVimPluginFrom2Nix { pname = "elm-vim"; version = "2020-09-23"; @@ -2903,12 +2915,12 @@ final: prev: everforest = buildVimPluginFrom2Nix { pname = "everforest"; - version = "2023-04-16"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "sainnhe"; repo = "everforest"; - rev = "83a4361d0797ff8e0c96dd750e60947bfab936e4"; - sha256 = "1jc9d0xc8wpkq64vi0r68wcxp2s6dxk2yqb5kpn7mny55nlihfm1"; + rev = "61693d7b90056b90e2f482d36301b485f6c815fa"; + sha256 = "0s7m7gipc248dka7a6w6v5zsp8660isajnd844swkhsyfzby4010"; }; meta.homepage = "https://github.com/sainnhe/everforest/"; }; @@ -3132,12 +3144,12 @@ final: prev: flutter-tools-nvim = buildVimPluginFrom2Nix { pname = "flutter-tools.nvim"; - version = "2023-04-15"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "akinsho"; repo = "flutter-tools.nvim"; - rev = "dedb571b15e6639792fea528b8c3040558f4ef0d"; - sha256 = "0bhwg7fc4l439yhdhb0pw6xfyy8s2k3ap35inr3aafgw5fhwgasq"; + rev = "bd82eed8ed710e538fb0752c4c8ec36089d5d239"; + sha256 = "087am755knhk8jr5kq9cy4i5i0900kdjj844w347iiv55rsvw7d3"; }; meta.homepage = "https://github.com/akinsho/flutter-tools.nvim/"; }; @@ -3276,12 +3288,12 @@ final: prev: fzf-lua = buildVimPluginFrom2Nix { pname = "fzf-lua"; - version = "2023-04-12"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "ibhagwan"; repo = "fzf-lua"; - rev = "08f57e9a3c58c4ebef4c96de271d674d12e77607"; - sha256 = "1x9pv8pf7cs1iyqw5f2aqrpp8wlzkkizxq1pbm2hjfp14k6gjvl4"; + rev = "8cee7f542885cb78abef4e2cb6515470aea78564"; + sha256 = "18q477avcrgsmb6nndrbrx0aamjbpqp0ws17pa6fj8mgwg3mgg1w"; }; meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; }; @@ -3432,12 +3444,12 @@ final: prev: gitsigns-nvim = buildNeovimPluginFrom2Nix { pname = "gitsigns.nvim"; - version = "2023-04-04"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "lewis6991"; repo = "gitsigns.nvim"; - rev = "372d5cb485f2062ac74abc5b33054abac21d8b58"; - sha256 = "0wck04ja0i77g1acidfrb3b44zvd8yiywlqwa64ji0isxl85aicx"; + rev = "7dfe4be94b4f84a9931098f0f0f618d055e50bd5"; + sha256 = "1jpiiyv6b2dcswjjd1c8p7d65040ik0cx862kp8f7f21xz0salzb"; }; meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; }; @@ -3492,12 +3504,12 @@ final: prev: go-nvim = buildVimPluginFrom2Nix { pname = "go.nvim"; - version = "2023-04-18"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "ray-x"; repo = "go.nvim"; - rev = "37d226ca7444a3950a133acc205aaba7a2339f69"; - sha256 = "1kp44dnnf4hddhl5fj08yvi6qjcqvz8wp800dvx723l9qxv3bb08"; + rev = "e7e914cdc3538a9f4e8843d63310b95641245984"; + sha256 = "03rkv3kcnll5bx3an20x4sjb7y9bffk602790yv2b6ysgn5a623d"; }; meta.homepage = "https://github.com/ray-x/go.nvim/"; }; @@ -3612,24 +3624,24 @@ final: prev: gruvbox-material = buildVimPluginFrom2Nix { pname = "gruvbox-material"; - version = "2023-04-16"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "sainnhe"; repo = "gruvbox-material"; - rev = "53592367dc073cd5b5cbe5b6fae56ad82d0c29f6"; - sha256 = "072h4q2zliqpzihyhjym9wi87d0rsxry4m4yvkk1yf68j3148sj8"; + rev = "9956b910882009e6a70feb66229ae47a8c592d80"; + sha256 = "1999liw5dr6wcsay31q2hcxn2fjkgcpy5m494glmsc64dia3rdv0"; }; meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; }; gruvbox-nvim = buildVimPluginFrom2Nix { pname = "gruvbox.nvim"; - version = "2023-04-17"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "ellisonleao"; repo = "gruvbox.nvim"; - rev = "9e57e796fe7b3c9a12d795ebb35ff45e4d0cb630"; - sha256 = "015l8qr2zs38kn8lz3lw9aiv9qylhw41fwkfk36gm1ivza6wdv6m"; + rev = "487598d979868224aff92cf8818195c1a60e5dfe"; + sha256 = "11imfkvxk84r63h7rp5w71131anr83difwab3y5jrv9cprijl20j"; }; meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; }; @@ -3743,12 +3755,12 @@ final: prev: heirline-nvim = buildVimPluginFrom2Nix { pname = "heirline.nvim"; - version = "2023-04-12"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "rebelot"; repo = "heirline.nvim"; - rev = "b5bbb8b4e4e24dccd4a2f20e38a2be0b58fb7fc5"; - sha256 = "0gm2khmr5jlj9idij9baw5jcpc7wiib84vsqd36rbz8byw1l7a4r"; + rev = "2aed06a3a04c877dc64834e9b9dabf6ad3491bc8"; + sha256 = "1sqhnhc749hm1bpy6s49w8jb3zpzj2azpj2hszn13ml1g1ps5iv7"; }; meta.homepage = "https://github.com/rebelot/heirline.nvim/"; }; @@ -4187,12 +4199,12 @@ final: prev: kanagawa-nvim = buildVimPluginFrom2Nix { pname = "kanagawa.nvim"; - version = "2023-04-18"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "rebelot"; repo = "kanagawa.nvim"; - rev = "9d9733ca8ec0c7f413df80fd7f55e802a9c2f8d7"; - sha256 = "1anrr04sp415id13bmdqsprw0ay9nvx30df74rgk6439lsjmngcj"; + rev = "963824e979f33bf2b39838d9ea7a59467d34ec9b"; + sha256 = "1mkm7klmn5qsj3mznhvndvsv03vy8fbzfd3bf27xmi7hk5z8ibmn"; }; meta.homepage = "https://github.com/rebelot/kanagawa.nvim/"; }; @@ -4283,12 +4295,12 @@ final: prev: lazy-nvim = buildVimPluginFrom2Nix { pname = "lazy.nvim"; - version = "2023-04-18"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "folke"; repo = "lazy.nvim"; - rev = "5f13f69851d2b244891d77590db9e3370197facc"; - sha256 = "0wz2hzr2cxfj9xzifai0kssvzyhgav20gdvqlv61w8f70bax9668"; + rev = "5c89dc52f42e5058a46b0912d7d9042f564e44e0"; + sha256 = "1wn2r05rxxsi64ssnaryby7v293maf5k986bkngaki45lag3ghp8"; }; meta.homepage = "https://github.com/folke/lazy.nvim/"; }; @@ -4343,24 +4355,24 @@ final: prev: leap-nvim = buildVimPluginFrom2Nix { pname = "leap.nvim"; - version = "2023-04-09"; + version = "2023-04-18"; src = fetchFromGitHub { owner = "ggandor"; repo = "leap.nvim"; - rev = "98a72ad93c629c49bd7127d342960cc1b159b620"; - sha256 = "1zb0k6d57z8pp4nzmqvk041gqhpsswxz642jj8398hf44r05lcq8"; + rev = "0eb3611593e135150e2f7880ec67568ccb51c17a"; + sha256 = "1kz843qj8d766x43ys3q9bi6ahjcyw1c063x1kj6dhv3c85l911q"; }; meta.homepage = "https://github.com/ggandor/leap.nvim/"; }; legendary-nvim = buildVimPluginFrom2Nix { pname = "legendary.nvim"; - version = "2023-04-17"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "mrjones2014"; repo = "legendary.nvim"; - rev = "ccb9927537c15f9d03532171fad99189d9499ffb"; - sha256 = "09q0vv1kzpb7svv9zhgzqfig6jx9iv05lx3cds9jb2fklkk0fjh4"; + rev = "4fc7d11d03df874ecd7a8cfa6055d7a4ce2cff87"; + sha256 = "0y4wgla8w2b8yc7bynchaiq1vcv9i9yvvzgia1zdfky7ph47r1jk"; }; meta.homepage = "https://github.com/mrjones2014/legendary.nvim/"; }; @@ -4655,12 +4667,12 @@ final: prev: lsp-overloads-nvim = buildVimPluginFrom2Nix { pname = "lsp-overloads.nvim"; - version = "2023-04-11"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "Issafalcon"; repo = "lsp-overloads.nvim"; - rev = "91a933b024b39aaef42cb03db3edbce516ac0b0b"; - sha256 = "14454n8mfa9ngccanrj3dnh9cii64xpp9g4wbgymzwycl1dgwxl0"; + rev = "939bf42421a31dfe021a47720763602d54e1b165"; + sha256 = "1gs96pc2hyvrnzax0lisi1n05ws3vf13fjr6lm1jz76s0gawqx1z"; }; meta.homepage = "https://github.com/Issafalcon/lsp-overloads.nvim/"; }; @@ -4931,12 +4943,12 @@ final: prev: mason-nvim = buildVimPluginFrom2Nix { pname = "mason.nvim"; - version = "2023-04-18"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "williamboman"; repo = "mason.nvim"; - rev = "5a26b2f6906615475a4fd82506ccf8642b81d84e"; - sha256 = "1arf7s506bzha063vv31jsql3zrvlmsiaw4jjb9kmbwqfz3wywas"; + rev = "7f364a3c9b3f77ead3dc5316cf6918d944fc3621"; + sha256 = "18a8bljq3yqgdvgmdrqbiw8rmgrlx4wn9rzv69hwap4i2rf8lw97"; }; meta.homepage = "https://github.com/williamboman/mason.nvim/"; }; @@ -5003,24 +5015,24 @@ final: prev: mini-nvim = buildVimPluginFrom2Nix { pname = "mini.nvim"; - version = "2023-04-16"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "echasnovski"; repo = "mini.nvim"; - rev = "54ee812e34d4c1c073417b354cb2ba207eb9f10a"; - sha256 = "0imjrnj9x617vn4jy6n2nv9004x6ay1h2w64k0lx3pz8i3c9cfi2"; + rev = "590ac69a6c249ee94c390ab4b46147480409b646"; + sha256 = "1vkjh7jzj8c4pfwwi3qbkpwc1mssiqgyvbral489ls94j9fncad4"; }; meta.homepage = "https://github.com/echasnovski/mini.nvim/"; }; minimap-vim = buildVimPluginFrom2Nix { pname = "minimap.vim"; - version = "2023-04-11"; + version = "2023-04-18"; src = fetchFromGitHub { owner = "wfxr"; repo = "minimap.vim"; - rev = "868a809302f9f5d4c408ef8aef7eb9bd5893f801"; - sha256 = "1j7p33did6c0xnxq96541fw07fq25ss9784sf33ak6by8xhmpqdw"; + rev = "726746ed02eab2eef137a7ecceda7214fbeeec41"; + sha256 = "1p8bpa7g349zhx7z78gyxrhfrhibihd9v7p4224qzddk0pd4ibkz"; }; meta.homepage = "https://github.com/wfxr/minimap.vim/"; }; @@ -5363,12 +5375,12 @@ final: prev: neoconf-nvim = buildVimPluginFrom2Nix { pname = "neoconf.nvim"; - version = "2023-04-18"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "folke"; repo = "neoconf.nvim"; - rev = "e5ae2a83e061de5c8e409e1a3e6d6ed183d2fcfd"; - sha256 = "0y8ncls9dz51hg0snm0l1kal1r8q0jnsnqwaak8yl12422x39rrd"; + rev = "62c8d706fafed90c95aa6b5846f296d3b28db75a"; + sha256 = "1i5r1j3sbqmijvhla1mldrmpki5ymvi1h2qcs63gypmxj4xpy6hz"; }; meta.homepage = "https://github.com/folke/neoconf.nvim/"; }; @@ -5387,12 +5399,12 @@ final: prev: neodev-nvim = buildVimPluginFrom2Nix { pname = "neodev.nvim"; - version = "2023-04-18"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "folke"; repo = "neodev.nvim"; - rev = "b7feac47ef2e0d3994a05ee60ca761dc80dae38a"; - sha256 = "19ncq8q14hdy46av4dcwcxd0qq205z2mc97nfw18f5n997z1n4d1"; + rev = "e812f3d0e62e21a164b70f90f642cf30129503e4"; + sha256 = "17w17gpk85w8zkqpkvrr2kg90p39wz2l57czphc52ybzirkpij30"; }; meta.homepage = "https://github.com/folke/neodev.nvim/"; }; @@ -5483,12 +5495,12 @@ final: prev: neorg = buildVimPluginFrom2Nix { pname = "neorg"; - version = "2023-04-15"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "nvim-neorg"; repo = "neorg"; - rev = "1fecaab548161abd0238b3d16c81e69c7d14252a"; - sha256 = "1dggjqidciwf85xzbqimi5883d7zpr5lwasqkk285cdh5xyjx7nd"; + rev = "f742e90d6d8ec831f0bce939c37a3c04407c0e9f"; + sha256 = "11nc74vpx7ws733x5ksymd6jdry3vj04jx08wi6gdwsikhvz8jhq"; }; meta.homepage = "https://github.com/nvim-neorg/neorg/"; }; @@ -5543,12 +5555,12 @@ final: prev: neotest = buildVimPluginFrom2Nix { pname = "neotest"; - version = "2023-04-15"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "nvim-neotest"; repo = "neotest"; - rev = "3dbac1ebda49861956e3c53f37a9d14de6dffb9b"; - sha256 = "0q0l579v0zpmmrl68xn14bmc5s6sljnmy62cw7wq4sh9qc57bjgv"; + rev = "8d279ac31542553461f5377db1596ae52e042d00"; + sha256 = "0mfh332nh1c5g0abywcjng23wz4z1571dgxyc4f6nlvyikziaghc"; }; meta.homepage = "https://github.com/nvim-neotest/neotest/"; }; @@ -5579,12 +5591,12 @@ final: prev: neotest-dotnet = buildVimPluginFrom2Nix { pname = "neotest-dotnet"; - version = "2023-04-17"; + version = "2023-04-18"; src = fetchFromGitHub { owner = "Issafalcon"; repo = "neotest-dotnet"; - rev = "0ac4bfb7236f9792ff7a5e3ab4631e112204f61e"; - sha256 = "1pxrs4jax0yqaswlk1klr30c0fdd0q1lnsjqk4gfkk3g07sjjjf9"; + rev = "85ffa30ec8a1feb1126f3057361850edf7d94e3f"; + sha256 = "0f31rwn93qkigx47444lmkp9fmappzbm62rgnxjwjz3gkipm0vca"; }; meta.homepage = "https://github.com/Issafalcon/neotest-dotnet/"; }; @@ -5629,12 +5641,12 @@ final: prev: pname = "neotest-jest"; version = "2023-04-16"; src = fetchFromGitHub { - owner = "haydenmeade"; + owner = "nvim-neotest"; repo = "neotest-jest"; rev = "22b1050dda3ebd401780ec4b8e193cf52523a4da"; sha256 = "0vg433x68c9h0nzws6lwb4xcgqzm8ss5dkmi8df4fa55m2ll8iaw"; }; - meta.homepage = "https://github.com/haydenmeade/neotest-jest/"; + meta.homepage = "https://github.com/nvim-neotest/neotest-jest/"; }; neotest-pest = buildVimPluginFrom2Nix { @@ -5651,24 +5663,24 @@ final: prev: neotest-phpunit = buildVimPluginFrom2Nix { pname = "neotest-phpunit"; - version = "2023-04-10"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "olimorris"; repo = "neotest-phpunit"; - rev = "bf414a6dd2ddbe69f6c7b96e345cfe28afd577db"; - sha256 = "0ss6qlh6cs1bidn7j2m7565pnx2sfclqik1x123dw6ibmasc9zrb"; + rev = "6c4f1def7d4d0ff5d410022b71078468ab96273b"; + sha256 = "1hx5c99b57s1z9hf1f45l4fgvvc5ndh300s347xpi9zbw19ym8fl"; }; meta.homepage = "https://github.com/olimorris/neotest-phpunit/"; }; neotest-plenary = buildVimPluginFrom2Nix { pname = "neotest-plenary"; - version = "2022-12-30"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "nvim-neotest"; repo = "neotest-plenary"; - rev = "d49bfd9470f791e7c29149e75d56b6f925bb391b"; - sha256 = "055k0q1zgi42hf8lcgi2fmfbs3yc4fhbfjy34p3p2k90i1izxy5q"; + rev = "65f57c41ffb7bf1c34938b61683fe833ad3be8fb"; + sha256 = "0m4hhl4rcbkvpfs9azaarya9zyfbcxhrsc2ij797myfggiz5s28v"; }; meta.homepage = "https://github.com/nvim-neotest/neotest-plenary/"; }; @@ -5795,12 +5807,12 @@ final: prev: nerdcommenter = buildVimPluginFrom2Nix { pname = "nerdcommenter"; - version = "2023-02-05"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "preservim"; repo = "nerdcommenter"; - rev = "d069f7fb562fb9eb6911fe23cda7aca2a387043e"; - sha256 = "0ir2cghjcz3wr1sp1fzvdjnwqrjy82n3zlhrcz7cs41n8f2wich7"; + rev = "91499c76a7358b10945c50173fa8c64dc3c909c8"; + sha256 = "1xv2nb0jpxmmgchjh2j7dpam0xzrslc4qfbv02fdhmj1f7ybf018"; }; meta.homepage = "https://github.com/preservim/nerdcommenter/"; }; @@ -5831,12 +5843,12 @@ final: prev: netman-nvim = buildVimPluginFrom2Nix { pname = "netman.nvim"; - version = "2023-04-18"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "miversen33"; repo = "netman.nvim"; - rev = "0b08d88e6c9f4158dfd500eedf13114308df071b"; - sha256 = "1pi42r7h63hc1zxxvjzib4j040n74s2fnnxl31wr38x90c9cpjj9"; + rev = "cd5b2c4802d2014df1bc1d07c37aa2271e6ba725"; + sha256 = "1kwxy0ccwjji4gc76n0lv7zd4maldxddhrahmfwxana1aqwyc8sc"; }; meta.homepage = "https://github.com/miversen33/netman.nvim/"; }; @@ -5879,12 +5891,12 @@ final: prev: nightfox-nvim = buildVimPluginFrom2Nix { pname = "nightfox.nvim"; - version = "2023-04-12"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "EdenEast"; repo = "nightfox.nvim"; - rev = "669b0ce7d02d511c06ceae6201392dc29906dfc0"; - sha256 = "1698j3jrk0rl64q97013hj3lvlrdq6ndfz8k395kkfiaplg31xwh"; + rev = "e54427a1bfea55c9ab0c21ac7e9d07b22156d0f0"; + sha256 = "0fwn5hhw9fy9g0h62zqlx5iiar77m5ryd8mvahybhdjk8ygjkmg4"; }; meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; }; @@ -5915,12 +5927,12 @@ final: prev: nlsp-settings-nvim = buildVimPluginFrom2Nix { pname = "nlsp-settings.nvim"; - version = "2023-04-18"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "tamago324"; repo = "nlsp-settings.nvim"; - rev = "da21470f371f11e331db0ebf4fe53610df29c861"; - sha256 = "0bmfzpdrgyyvyspvqkrvl2iqi6smi5zwx7s1vb4z6mykwpbqpfk3"; + rev = "32f39128c96baf5482c6a775f437be116d0adf4f"; + sha256 = "00l8akyihpimvkxy8yxdvwc3iafjkyyx66scfqj9drm4flsbbqc8"; }; meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; }; @@ -6059,12 +6071,12 @@ final: prev: nvim-FeMaco-lua = buildVimPluginFrom2Nix { pname = "nvim-FeMaco.lua"; - version = "2022-10-10"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "AckslD"; repo = "nvim-FeMaco.lua"; - rev = "469465fc1adf8bddc2c9bbe549d38304de95e9f7"; - sha256 = "1rv3ppjfndi27dbg7dsapxacbal1mj2a9dx2vq0yvi2v1gb97b3x"; + rev = "7f18adaa2e62dcfdce3cce9677eeb9371e584f85"; + sha256 = "0ramhcrn1crbsj29c9dx0fx2kp97wzvp1i0h8shjzzsa9pyqd8h4"; }; meta.homepage = "https://github.com/AckslD/nvim-FeMaco.lua/"; }; @@ -6083,12 +6095,12 @@ final: prev: nvim-autopairs = buildVimPluginFrom2Nix { pname = "nvim-autopairs"; - version = "2023-04-17"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "windwp"; repo = "nvim-autopairs"; - rev = "58985de5eeab159462bc262de5cc1b9c9b375595"; - sha256 = "115cgkkb44q3vbz282iv30734a10ng59p96sx3iqk8sz88iz4720"; + rev = "7566a86f44bb72ba2b1a609f528a27d93241502d"; + sha256 = "0hxaqhvqd4446zvwbfs2l6akqbki2sag2vlxqfxbn1a9pdin1329"; }; meta.homepage = "https://github.com/windwp/nvim-autopairs/"; }; @@ -6263,12 +6275,12 @@ final: prev: nvim-dap = buildVimPluginFrom2Nix { pname = "nvim-dap"; - version = "2023-04-07"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "mfussenegger"; repo = "nvim-dap"; - rev = "debd7c2f80eaf20c5f5df25db8d8c1b9b18f4421"; - sha256 = "0h4vcdy7zrbrx29r2bw5nk01q1y983ffh59sl35rq5aa9xdwr4zf"; + rev = "6cedcb527e264c8f25e86afa8dae74c6692dee51"; + sha256 = "1vapds2p17k3h4llh0p6mxk4qrdik8sjp09l7fnl1mwnybl0k6wp"; }; meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; }; @@ -6491,12 +6503,12 @@ final: prev: nvim-lint = buildVimPluginFrom2Nix { pname = "nvim-lint"; - version = "2023-04-17"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "mfussenegger"; repo = "nvim-lint"; - rev = "7451d1893872530a5291994d11f44b77806a1d9f"; - sha256 = "0ak3fi0x4rpssc2ipzqpcl9hp07kkv4ygf0znd2cihb6c4ksimm6"; + rev = "f27ba536d9363d216dcf1996f42d55756e977522"; + sha256 = "1km9ch467q613pf50xa1bhrp9zd47c21g990aqczw4s6787fk2fb"; }; meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; }; @@ -6587,12 +6599,12 @@ final: prev: nvim-navic = buildVimPluginFrom2Nix { pname = "nvim-navic"; - version = "2023-04-16"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "smiteshp"; repo = "nvim-navic"; - rev = "226c1c0c0bf67e103b609f18907c778acc9095c2"; - sha256 = "1nc5a7lmzrcv65pa4z0mchqwbb3m314sp8isk9j7kbp600kkw7bq"; + rev = "63a5d2d6af20d7818b94b4bdc2133107a88107e2"; + sha256 = "1gj28wiimizgxyqshxlbk0l9afxsakjhjfsx35pg0j0znaybj9m4"; }; meta.homepage = "https://github.com/smiteshp/nvim-navic/"; }; @@ -6623,12 +6635,12 @@ final: prev: nvim-notify = buildVimPluginFrom2Nix { pname = "nvim-notify"; - version = "2023-03-22"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "rcarriga"; repo = "nvim-notify"; - rev = "50d037041ada0895aeba4c0215cde6d11b7729c4"; - sha256 = "0nzqj6j9j0cvi0mckqggfgyc8a6cdyr6z2qwkzk30yqjs39fnh66"; + rev = "159c6cf1be25a933f35e97499314c9faab55c98f"; + sha256 = "02v5n53397x9kyvgzky2kmzpmiq040ahk9d9k5j03l9ai7jdsj2c"; }; meta.homepage = "https://github.com/rcarriga/nvim-notify/"; }; @@ -6803,24 +6815,24 @@ final: prev: nvim-treesitter = buildVimPluginFrom2Nix { pname = "nvim-treesitter"; - version = "2023-04-18"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter"; - rev = "cdc45ac6bad52d95802b54e8a6d4f7aaa163edc5"; - sha256 = "1gv4xmns61dhiv1kpip9bxd4jqsas7p09qdlxz23dif6fx52glla"; + rev = "654216eb04f3fdf0f847ff2d410319fba6cee847"; + sha256 = "0rk925xmgh7nil8dmps109h0zr36x36j6l537zs66kjcvafmy0rs"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; }; nvim-treesitter-context = buildVimPluginFrom2Nix { pname = "nvim-treesitter-context"; - version = "2023-04-12"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter-context"; - rev = "0d730df898f3dc27fd88f03cfa6d26d2405554b4"; - sha256 = "0jf2643hv5b9hbjvjkzscsafi0p75ar29gcfayvaz0n7002hkmi0"; + rev = "8b6861ebf0ba88e5f57796372eb194787705d25a"; + sha256 = "08dn0c673i91ql14ls8ackmda3l7mx4y4gl5hlyr0030c6ziv1qf"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; }; @@ -6875,24 +6887,24 @@ final: prev: nvim-ts-autotag = buildVimPluginFrom2Nix { pname = "nvim-ts-autotag"; - version = "2023-04-13"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "windwp"; repo = "nvim-ts-autotag"; - rev = "cac97f3b47bcb927db6d1d784c0c323056506ef3"; - sha256 = "0fl804msvrhykw6haskn9n0f1yxmjxy8mv0b3hja0ya7pqblybda"; + rev = "26761ba6848d814605a629bc8d2694eeb1e48007"; + sha256 = "1g3ss0mhbwv08y8kpgzqk65d5v4vl9mdl21ya2c7irvsnm23l25r"; }; meta.homepage = "https://github.com/windwp/nvim-ts-autotag/"; }; nvim-ts-context-commentstring = buildVimPluginFrom2Nix { pname = "nvim-ts-context-commentstring"; - version = "2023-04-16"; + version = "2023-04-18"; src = fetchFromGitHub { owner = "joosepalviste"; repo = "nvim-ts-context-commentstring"; - rev = "ada15e97d7d48b409f8b135ced104e00e8479fb9"; - sha256 = "113zhc2ysqhljvg1z25909yc7vl4d4mbcfqbisj89di1ziijpc55"; + rev = "0bf8fbc2ca8f8cdb6efbd0a9e32740d7a991e4c3"; + sha256 = "194v4vp3fjwmhiyy6gf7465m9c7yhhyvwvyih6gxls0bq5jmdzjs"; }; meta.homepage = "https://github.com/joosepalviste/nvim-ts-context-commentstring/"; }; @@ -7030,12 +7042,12 @@ final: prev: oil-nvim = buildVimPluginFrom2Nix { pname = "oil.nvim"; - version = "2023-04-11"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "stevearc"; repo = "oil.nvim"; - rev = "fb8b101d7cb4727d8719ab6ed141330eca997d3f"; - sha256 = "1vhrmiws4k65v5mzvxy2f93f5y8dxcpchsxwrqfmp9imzkcm081z"; + rev = "3ac035e5ac448ce898c9aad7158a47378be4e85a"; + sha256 = "01znzj38mhnh80w7n101ysq4vsd651lsbk6rr8d1g2nc61m1c2bc"; fetchSubmodules = true; }; meta.homepage = "https://github.com/stevearc/oil.nvim/"; @@ -7067,12 +7079,12 @@ final: prev: onedark-nvim = buildVimPluginFrom2Nix { pname = "onedark.nvim"; - version = "2023-03-22"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "navarasu"; repo = "onedark.nvim"; - rev = "dd640f6cfb0e370cfd3db389f04b172508848bd3"; - sha256 = "1ymv9mjbjhmmsyh5pm2jh883mvhh8rlcy3d7513vvdifriyxy2mz"; + rev = "d20f23c0d6810c8754737428771eef40bd1056a7"; + sha256 = "0xb50bz86dmlnsqnpl7b29glpx84i4m1c2sm9q03sf6xdizdpk2a"; }; meta.homepage = "https://github.com/navarasu/onedark.nvim/"; }; @@ -7813,12 +7825,12 @@ final: prev: satellite-nvim = buildVimPluginFrom2Nix { pname = "satellite.nvim"; - version = "2023-04-03"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "lewis6991"; repo = "satellite.nvim"; - rev = "d77b40a730f3036a3290d07bc32af7fc935cd031"; - sha256 = "1i8445whk6vndinn05n2ss2vz37hlf30qyqfl1gspky3sz861jda"; + rev = "223fd56405993175f60dbc0ee6bdda0582b78b19"; + sha256 = "03bqfvfxwz94hiigmahahdqvpxhgrfvmr2k4kd1zy9zmszyfgnwb"; }; meta.homepage = "https://github.com/lewis6991/satellite.nvim/"; }; @@ -8006,12 +8018,12 @@ final: prev: smart-splits-nvim = buildVimPluginFrom2Nix { pname = "smart-splits.nvim"; - version = "2023-04-17"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "mrjones2014"; repo = "smart-splits.nvim"; - rev = "cd8eb8b931a75f71f6ae4440f07a40c01b1699ef"; - sha256 = "1cy3bjxcx2ic22fgms0hnh7csm615xkdj178wdgkxaj6dj12fmy4"; + rev = "e1dbc83510616df73a645f616431cfe1348898f8"; + sha256 = "1yyz16hb9h76gnilim6mwsyim3arkki7raaa53nxndr7gmjgkywd"; }; meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; }; @@ -8088,6 +8100,18 @@ final: prev: meta.homepage = "https://github.com/sainnhe/sonokai/"; }; + sort-nvim = buildVimPluginFrom2Nix { + pname = "sort.nvim"; + version = "2023-04-12"; + src = fetchFromGitHub { + owner = "sQVe"; + repo = "sort.nvim"; + rev = "c789da6968337d2a61104a929880b5f144e02855"; + sha256 = "0d9i0vhqp7axls2xs1fgz9g762g7a5j0p5452v2158wjzgb2yxy6"; + }; + meta.homepage = "https://github.com/sQVe/sort.nvim/"; + }; + sourcemap-vim = buildVimPluginFrom2Nix { pname = "sourcemap.vim"; version = "2012-09-19"; @@ -8211,12 +8235,12 @@ final: prev: sqlite-lua = buildVimPluginFrom2Nix { pname = "sqlite.lua"; - version = "2023-03-18"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "kkharji"; repo = "sqlite.lua"; - rev = "376e4735c48e07dade3e6ff5f09a654a04f5d4ba"; - sha256 = "1l6c9z72kfnj4pzhipnscprvlmbw44jhrvbi14pplvj7wk9x9c85"; + rev = "b7e28c8463254c46a8e61c52d27d6a2040492fc3"; + sha256 = "0dx4d29zfp7psp2x42lpag0midadk51fcjiyw4hq570sd0j44jaw"; }; meta.homepage = "https://github.com/kkharji/sqlite.lua/"; }; @@ -9128,12 +9152,12 @@ final: prev: tokyonight-nvim = buildVimPluginFrom2Nix { pname = "tokyonight.nvim"; - version = "2023-04-18"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "folke"; repo = "tokyonight.nvim"; - rev = "3d2f79cd1f3cea7520d5cc4d06c8010fe2592db8"; - sha256 = "01hwxqgm8ak12gylhbjkg445qjpzgx2m70f4svb2nqlxkzl3f3ss"; + rev = "ff81eac0ecf85db235dfc4c9d54f2d07d662a423"; + sha256 = "1zccj9jff1cyi5z1cg2dy7ly42z2zxr1csd22akrlxf2956v3nb1"; }; meta.homepage = "https://github.com/folke/tokyonight.nvim/"; }; @@ -9164,12 +9188,12 @@ final: prev: treesj = buildVimPluginFrom2Nix { pname = "treesj"; - version = "2023-04-18"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "Wansmer"; repo = "treesj"; - rev = "6afad1fe91c93ae6175009f9a3de63713237401a"; - sha256 = "1fbgq3mimc688379j2y8wgjfanc58l3y9cry2nq6yqxjb9sncj3p"; + rev = "61830dd2ba196e3e62557386607928889741ab3d"; + sha256 = "046ggamsbss9am5qs0ggp7dp8izqzyxc5sk9sagiy4nzl2j1mzz6"; }; meta.homepage = "https://github.com/Wansmer/treesj/"; }; @@ -9308,12 +9332,12 @@ final: prev: unison = buildVimPluginFrom2Nix { pname = "unison"; - version = "2023-04-13"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "unisonweb"; repo = "unison"; - rev = "c2b920e12263cdea4604e4938eccef88f0a813a0"; - sha256 = "0lcxp66j9b77ss7jjv55gyyib5wbpkijz4j6h6i9ii261h064l61"; + rev = "c32964f6fb35a7ad2bc74320bb7032477965881b"; + sha256 = "19bpf235rv3gdyx94ancwmg9an0zjlkf0k0i75vmx6y01kb0an55"; }; meta.homepage = "https://github.com/unisonweb/unison/"; }; @@ -11903,12 +11927,12 @@ final: prev: vim-matchup = buildVimPluginFrom2Nix { pname = "vim-matchup"; - version = "2023-04-17"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "andymass"; repo = "vim-matchup"; - rev = "5fa824acc89d04b54c12126d768ab71ba7f1c686"; - sha256 = "165l01l31fmywvi9a3y2njm066l447jlg0l5ay2qwj9m03s9928i"; + rev = "1364b2ba551c82fdb342b646da666a477490c063"; + sha256 = "1fqnp195gxh8wcjvdv01iq6zd04d43nml3d2qlxqr6fcc5pvrn9a"; }; meta.homepage = "https://github.com/andymass/vim-matchup/"; }; @@ -12335,12 +12359,12 @@ final: prev: vim-oscyank = buildVimPluginFrom2Nix { pname = "vim-oscyank"; - version = "2023-03-06"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "ojroques"; repo = "vim-oscyank"; - rev = "ffe827a27dae98aa826e2295336c650c9a434da0"; - sha256 = "1hj1yviw2lkinnb4l15psg2c9gmcx4csmlh0hp32kbslwmv56y92"; + rev = "7fa8b04562d4ba2c23e67e7038256ecabc8fc376"; + sha256 = "0cbpjffjk8ydwb9kv1sblggrs5j2hdk7l57xy7k0r7rwd5kmwj5k"; }; meta.homepage = "https://github.com/ojroques/vim-oscyank/"; }; @@ -13055,12 +13079,12 @@ final: prev: vim-slime = buildVimPluginFrom2Nix { pname = "vim-slime"; - version = "2023-03-15"; + version = "2023-04-18"; src = fetchFromGitHub { owner = "jpalardy"; repo = "vim-slime"; - rev = "e5ae6a6d479c97d5352969574130956798e480b7"; - sha256 = "1s4xpwca6nnylcfsk3lic6s2ddy4plf8qc2hln7vvbnmbjp948d0"; + rev = "bb152854fc21193729bf587aa055e738d50c8b48"; + sha256 = "1hxcjqy6xga0jr5z6s71vsl1s45z1fkhcvwxwr571n1azfhb8znk"; }; meta.homepage = "https://github.com/jpalardy/vim-slime/"; }; @@ -13235,12 +13259,12 @@ final: prev: vim-startuptime = buildVimPluginFrom2Nix { pname = "vim-startuptime"; - version = "2023-04-13"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "dstein64"; repo = "vim-startuptime"; - rev = "c9da356b59eb30dfca6cd573b63d0e81c0a24ff9"; - sha256 = "17qv1xpakvp4x23g02kxz34q2vfk80sgqfkx17g6rb8fx5dy00yx"; + rev = "00391e7f86a0fd0ebdb2afdf4336f6712925ce45"; + sha256 = "1n0q0mgb52yr5vv053dgkp1vhzl42l7ancmpbg5vwc4gj0bwm603"; }; meta.homepage = "https://github.com/dstein64/vim-startuptime/"; }; @@ -13596,12 +13620,12 @@ final: prev: vim-tpipeline = buildVimPluginFrom2Nix { pname = "vim-tpipeline"; - version = "2023-04-02"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "vimpostor"; repo = "vim-tpipeline"; - rev = "33434a26c8b057bcf6ed20f10fa888b2ed82e2cc"; - sha256 = "0ahkmbg998w2mpby5krv4n9c9a8kbnbzflivc8fx3xdvs4a4a2x7"; + rev = "b492a5717ba513b32a5d310fab7b9b0401eb0b57"; + sha256 = "0zi6891wndfvhf2k3cl3rzbfsk2nfxl2qhqscg05szx7gfjvb3bd"; }; meta.homepage = "https://github.com/vimpostor/vim-tpipeline/"; }; @@ -13932,12 +13956,12 @@ final: prev: vim-xkbswitch = buildVimPluginFrom2Nix { pname = "vim-xkbswitch"; - version = "2023-03-06"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "lyokha"; repo = "vim-xkbswitch"; - rev = "99821a4b8ee2a05996954a2894d043af001f2d7b"; - sha256 = "1jbng45aiypb526ji6nd9d26d4zjj6il4jz808452b5q1immdrpc"; + rev = "cba47eaec8931266c34c4ab1247abe04f3b7ef55"; + sha256 = "0fgd10j4c64zc77pc2q3d5x7hg1h844lfj2cdqqxgds33nf2cald"; }; meta.homepage = "https://github.com/lyokha/vim-xkbswitch/"; }; @@ -14136,12 +14160,12 @@ final: prev: vimspector = buildVimPluginFrom2Nix { pname = "vimspector"; - version = "2023-04-18"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "puremourning"; repo = "vimspector"; - rev = "cd4057d078340b8d6afcfc2d7efc8dd0eb352740"; - sha256 = "1dqrk6afarv7jfc2vqqg1jf3z69nb48qzjvaprspqxak51s2vll5"; + rev = "bcf6dad40903ad34843a7536d3a4cff6ac5c0035"; + sha256 = "0lngsihdwv3s46b61r7kpnac3r0iw1vhh2bggn3k9ldmzds36rzb"; fetchSubmodules = true; }; meta.homepage = "https://github.com/puremourning/vimspector/"; @@ -14173,12 +14197,12 @@ final: prev: vimwiki = buildVimPluginFrom2Nix { pname = "vimwiki"; - version = "2023-04-05"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "vimwiki"; repo = "vimwiki"; - rev = "71edcf6802eeb724ca679547d5cb7a8eadf0cfcb"; - sha256 = "0c08c24i17h2zykbsm0lv1brscwsbmyf9lvqh9zbi8ikbfswr5b7"; + rev = "7a48268d24614e74f8187856ade54cf03134e9d9"; + sha256 = "1g85yjp2adysgvfpy6mq24vdm2rgn1gq7yr3h6hw8i3c3wjzjibg"; }; meta.homepage = "https://github.com/vimwiki/vimwiki/"; }; @@ -14261,20 +14285,20 @@ final: prev: src = fetchFromGitHub { owner = "folke"; repo = "which-key.nvim"; - rev = "61a52223c52ea5506b6d71eefbadbd2e7382c067"; - sha256 = "0yg2bnv1vs7lm8mkwd39ksyc1mbmxxchfz8ix0wmmk9qhr3m2b0q"; + rev = "94cb020ff33a1e0e22fac1c41663d2c439741f17"; + sha256 = "1xq9l53n5l1dyyj4xvw30wra9g8c8xg82sijx1ahgfcqkz4j1zib"; }; meta.homepage = "https://github.com/folke/which-key.nvim/"; }; whitespace-nvim = buildVimPluginFrom2Nix { pname = "whitespace.nvim"; - version = "2023-02-13"; + version = "2023-04-18"; src = fetchFromGitHub { owner = "johnfrankmorgan"; repo = "whitespace.nvim"; - rev = "525f67b3f01910c73f07f0848839aab0b7ab9f42"; - sha256 = "0kv2b099jc9592g0b381rdgzv5wvryy3v95bfk1sdjr9bmzdyjn9"; + rev = "fe9ca0ba3c6e6cc1dd14c0d6cbe49d97496700dd"; + sha256 = "1a391aq8svh3ayv4sa5dphg31l0x9rji8jrb6pa91y4b9sdhr6is"; }; meta.homepage = "https://github.com/johnfrankmorgan/whitespace.nvim/"; }; @@ -14534,24 +14558,24 @@ final: prev: zoxide-vim = buildVimPluginFrom2Nix { pname = "zoxide.vim"; - version = "2023-02-22"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "nanotee"; repo = "zoxide.vim"; - rev = "e50df0b0160363f5dcae60c4f633ade78e59bdc8"; - sha256 = "0qviqfbdss95jz51afpxwrxbvml4lcqpspn8gzv2q0m8avqnlrq8"; + rev = "7582d5441f68c46b8fbd42a8721cde0c0dfe344b"; + sha256 = "0gbnwf535mk29yhn39sdy9bifzk2y8x6ldkybn8l3pwjrlr42cks"; }; meta.homepage = "https://github.com/nanotee/zoxide.vim/"; }; catppuccin-nvim = buildVimPluginFrom2Nix { pname = "catppuccin-nvim"; - version = "2023-04-18"; + version = "2023-04-20"; src = fetchFromGitHub { owner = "catppuccin"; repo = "nvim"; - rev = "46bf7de94cb3820553067747cdd65d4605dbc908"; - sha256 = "0g6ih24r8iwj141hljb6sr3x80kg76mmy2f5mjmh8qz744v9r2wp"; + rev = "939be5f7fcbc15abeaad9214bb253a4551f6f6e6"; + sha256 = "16dmasj74szapc0p9kv35yb0smci7zk4k17p5d301lslrhr5jg35"; }; meta.homepage = "https://github.com/catppuccin/nvim/"; }; @@ -14594,12 +14618,12 @@ final: prev: embark-vim = buildVimPluginFrom2Nix { pname = "embark-vim"; - version = "2023-02-25"; + version = "2023-04-21"; src = fetchFromGitHub { owner = "embark-theme"; repo = "vim"; - rev = "484eb68c69345b5185e370d91ba631accd522776"; - sha256 = "1l74j5hq3gs4pfln7inbidza1vfrrl8z5pg77njmb7yx1ilc4l9q"; + rev = "0e2c7d36b766dcebba2d8a3a0639784446dea086"; + sha256 = "1q3a6ix01wmw0qkir0v246gjp5dxr30ih0h0q28gv3s2hfk75a4w"; }; meta.homepage = "https://github.com/embark-theme/vim/"; }; @@ -14618,12 +14642,12 @@ final: prev: lspsaga-nvim-original = buildVimPluginFrom2Nix { pname = "lspsaga-nvim-original"; - version = "2023-04-18"; + version = "2023-04-19"; src = fetchFromGitHub { owner = "nvimdev"; repo = "lspsaga.nvim"; - rev = "c7cc005ba2600c3eaf2bddb2b631ecc9d63b2ba8"; - sha256 = "1yhzaliknw3ibwhn3jw1b57pbd69q9i2c9d17xm5nd5hp5wynssf"; + rev = "c483c9b43fa6cb47fb8c18a8ebd4ece45bbf07f4"; + sha256 = "10gy1jvqkxq20bdq4k3mhc6ib1d15h0p9vmnmx55bgp5z1hby44c"; }; meta.homepage = "https://github.com/nvimdev/lspsaga.nvim/"; }; @@ -14666,12 +14690,12 @@ final: prev: rose-pine = buildVimPluginFrom2Nix { pname = "rose-pine"; - version = "2023-04-12"; + version = "2023-04-18"; src = fetchFromGitHub { owner = "rose-pine"; repo = "neovim"; - rev = "3935606b6c1cd0111359142498a9b02d3a12e1f1"; - sha256 = "1xnj2fxmf5ih0jybdh9frgf7jbnszwyjd154v6dkxmblnxk2ny0v"; + rev = "667851c05f87874826084474b5f04829940b6451"; + sha256 = "0j7f7fj3gy2p6q3vnkwxxll49p36fi8glzlzgbc08knwksdkgi30"; }; meta.homepage = "https://github.com/rose-pine/neovim/"; }; From 9b6be5519d90e4217d581384e624a29730a88019 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Apr 2023 19:08:15 +0000 Subject: [PATCH 202/213] hipsolver: 5.4.2 -> 5.4.4 --- pkgs/development/libraries/hipsolver/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/hipsolver/default.nix b/pkgs/development/libraries/hipsolver/default.nix index 04db8f4217d3..0b7f3edc358d 100644 --- a/pkgs/development/libraries/hipsolver/default.nix +++ b/pkgs/development/libraries/hipsolver/default.nix @@ -18,7 +18,7 @@ # Can also use cuSOLVER stdenv.mkDerivation (finalAttrs: { pname = "hipsolver"; - version = "5.4.2"; + version = "5.4.4"; outputs = [ "out" From 95e441b0022eb4192e211f7e339c10802ae62808 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 21 Apr 2023 22:14:17 +0300 Subject: [PATCH 203/213] authenticator: unbreak on aarch64-linux --- pkgs/applications/misc/authenticator/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/applications/misc/authenticator/default.nix b/pkgs/applications/misc/authenticator/default.nix index 34f75268cf42..226219ca2483 100644 --- a/pkgs/applications/misc/authenticator/default.nix +++ b/pkgs/applications/misc/authenticator/default.nix @@ -73,8 +73,5 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ austinbutler ]; platforms = lib.platforms.linux; - # Fails to build on aarch64 with error - # "a label can only be part of a statement and a declaration is not a statement" - broken = stdenv.isLinux && stdenv.isAarch64; }; } From e74172b19d524e9a3327192d5011ddfdc43b5ede Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 20 Apr 2023 22:09:48 +0200 Subject: [PATCH 204/213] chromium: 112.0.5615.121 -> 112.0.5615.165 https://chromereleases.googleblog.com/2023/04/stable-channel-update-for-desktop_18.html This update includes 8 security fixes. Google is aware that an exploit for CVE-2023-2136 exists in the wild. CVEs: CVE-2023-2133 CVE-2023-2134 CVE-2023-2135 CVE-2023-2136 CVE-2023-2137 --- .../networking/browsers/chromium/upstream-info.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 7d2dc69d236d..aa9b6001193b 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -1,8 +1,8 @@ { "stable": { - "version": "112.0.5615.121", - "sha256": "1qbsgcsw3jgy9b76i8ypiq91fkm9zy1hy77l52w2xbw53ghjfwlw", - "sha256bin64": "1zh674vpczs1nyzbijpcgs2j2r0hdgp7bkwyn5l8w1hcj6az6k3n", + "version": "112.0.5615.165", + "sha256": "1zbrgkzcb211y1mvi9g35421dnp5bskkczwnpygzja7lm7z6530n", + "sha256bin64": "16da3zi0qy2nc92jf90zvncss3xk9ggiys3ld9j0ghbsrs1jxbvm", "deps": { "gn": { "version": "2023-02-17", From a4ab065cbe0eb0097370a0830cd1b62c40c255ee Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 20 Apr 2023 22:09:49 +0200 Subject: [PATCH 205/213] chromiumBeta: 113.0.5672.37 -> 113.0.5672.53 --- .../networking/browsers/chromium/upstream-info.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 7d2dc69d236d..3c9863cd2145 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -19,9 +19,9 @@ } }, "beta": { - "version": "113.0.5672.37", - "sha256": "0hmn7h5l8q161f6hwp5g7zbxfdsplwqh5j3yby56qgljgca8pj7f", - "sha256bin64": "0j4hl2sbh8cig00rpn4ssxi2087wr33749b5sdcrk93kfzqinrix", + "version": "113.0.5672.53", + "sha256": "0k91xx3fm0kywjn00s9b7p776882b1mfajf2ig0iz3jac6rprh56", + "sha256bin64": "1pzpigz8l6hsddb7v2g9m5d32hlq979l1cpj2yfnc6dixjs8x053", "deps": { "gn": { "version": "2023-03-18", From d15ce1cf2a40d70684e8b0225bbb83f90d4b717b Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Fri, 21 Apr 2023 22:00:18 +0200 Subject: [PATCH 206/213] chromiumDev: 114.0.5696.0 -> 114.0.5720.4 --- .../networking/browsers/chromium/upstream-info.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 7d2dc69d236d..31678c47f617 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -32,15 +32,15 @@ } }, "dev": { - "version": "114.0.5696.0", - "sha256": "0hcf971azy3jjsl211qk53b6nk0f4pzf2dwfv3rjh4f6fa3nbwai", - "sha256bin64": "1ssj633vdg3ghd87az28q262ly1fk7rc3k70l1531xvj2030ijrl", + "version": "114.0.5720.4", + "sha256": "1q9r4m1gda1mq0nwi00yfpxsqdghd0qb3k7a0xa9py8l6jcv8ifa", + "sha256bin64": "15ss5xix773yn4g24ww9bw38g7wxgwhdqbgmwy44yvp0yl824czb", "deps": { "gn": { - "version": "2023-03-18", + "version": "2023-04-07", "url": "https://gn.googlesource.com/gn", - "rev": "41fef642de70ecdcaaa26be96d56a0398f95abd4", - "sha256": "12w4g2dl58283allclpi1c4i6ih9v2xvdb9hpbmfda12v8lizmlq" + "rev": "ffeea1b1fd070cb6a8d47154a03f8523486b50a7", + "sha256": "0xpwh06a82nb4j9ifr878rij97dikfcjfbc08cnkmxrx7hs1sjdw" } } }, From 703fd26f1f0fdd26a37157c316147b3bfd0a9071 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Fri, 21 Apr 2023 16:19:53 -0400 Subject: [PATCH 207/213] rivet: fix rivet-mkhtml (#227331) --- pkgs/development/libraries/physics/rivet/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/physics/rivet/default.nix b/pkgs/development/libraries/physics/rivet/default.nix index 6357c6752717..4c1c7f454466 100644 --- a/pkgs/development/libraries/physics/rivet/default.nix +++ b/pkgs/development/libraries/physics/rivet/default.nix @@ -51,7 +51,8 @@ stdenv.mkDerivation rec { --replace '"less"' '"${less}/bin/less"' substituteInPlace bin/rivet-mkhtml \ --replace '"make-plots"' \"$out/bin/make-plots\" \ - --replace '"rivet-cmphistos"' \"$out/bin/rivet-cmphistos\" + --replace '"rivet-cmphistos"' \"$out/bin/rivet-cmphistos\" \ + --replace 'ch_cmd = [sys.executable, os.path.join(os.path.dirname(__file__),' 'ch_cmd = [(' ''; configureFlags = [ From e03d23246e1a13ef0dc75eea7b953c428fb014e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 10 Apr 2023 13:47:54 -0700 Subject: [PATCH 208/213] setzer: 0.4.8 -> 55 Diff: https://github.com/cvfosammmm/Setzer/compare/v0.4.8...v55 --- pkgs/applications/editors/setzer/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/setzer/default.nix b/pkgs/applications/editors/setzer/default.nix index 193d7a0416d0..4ba505ff7885 100644 --- a/pkgs/applications/editors/setzer/default.nix +++ b/pkgs/applications/editors/setzer/default.nix @@ -11,20 +11,21 @@ , gobject-introspection , gtksourceview4 , gspell +, libhandy , poppler_gi -, webkitgtk +, webkitgtk_4_1 , librsvg }: python3.pkgs.buildPythonApplication rec { pname = "setzer"; - version = "0.4.8"; + version = "55"; src = fetchFromGitHub { owner = "cvfosammmm"; repo = "Setzer"; rev = "v${version}"; - hash = "sha256-7NPyvAof0xObYZws3KFAbdue/GpIRthzdX00jc9GhYs="; + hash = "sha256-Mcl9kWeo4w/wW8crR58Yyqoh26w8/SmNrjmHps6DmRA="; }; format = "other"; @@ -43,8 +44,9 @@ python3.pkgs.buildPythonApplication rec { buildInputs = [ gtksourceview4 gspell + libhandy poppler_gi - webkitgtk + webkitgtk_4_1 librsvg ]; From fef52d1d7cf6d0248b8f92cb8c6af31dc6be18d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 19 Apr 2023 17:42:57 -0700 Subject: [PATCH 209/213] libdeltachat: 1.112.7 -> 1.113.0 Diff: https://github.com/deltachat/deltachat-core-rust/compare/v1.112.7...v1.113.0 Changelog: https://github.com/deltachat/deltachat-core-rust/blob/v1.113.0/CHANGELOG.md --- .../libraries/libdeltachat/Cargo.lock | 879 +++++++++++++----- .../libraries/libdeltachat/default.nix | 4 +- 2 files changed, 625 insertions(+), 258 deletions(-) diff --git a/pkgs/development/libraries/libdeltachat/Cargo.lock b/pkgs/development/libraries/libdeltachat/Cargo.lock index 87198de0352e..6bc23f2f804b 100644 --- a/pkgs/development/libraries/libdeltachat/Cargo.lock +++ b/pkgs/development/libraries/libdeltachat/Cargo.lock @@ -55,7 +55,7 @@ checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" dependencies = [ "getrandom 0.2.8", "once_cell", - "version_check 0.9.4", + "version_check", ] [[package]] @@ -73,6 +73,21 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" +[[package]] +name = "alloc-no-stdlib" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" + +[[package]] +name = "alloc-stdlib" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" +dependencies = [ + "alloc-no-stdlib", +] + [[package]] name = "android_system_properties" version = "0.1.5" @@ -99,9 +114,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.69" +version = "1.0.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800" +checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" dependencies = [ "backtrace", ] @@ -133,7 +148,7 @@ dependencies = [ "asn1-rs-derive", "asn1-rs-impl", "displaydoc", - "nom 7.1.3", + "nom", "num-traits", "rusticata-macros", "thiserror", @@ -148,7 +163,7 @@ checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", "synstructure", ] @@ -160,7 +175,7 @@ checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -200,7 +215,7 @@ dependencies = [ "futures", "imap-proto", "log", - "nom 7.1.3", + "nom", "once_cell", "ouroboros", "pin-utils", @@ -241,7 +256,7 @@ dependencies = [ "futures", "hostname", "log", - "nom 7.1.3", + "nom", "pin-project", "thiserror", "tokio", @@ -249,20 +264,20 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.64" +version = "0.1.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2" +checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.13", ] [[package]] name = "async_zip" -version = "0.0.11" +version = "0.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c50d29ab7e2f9e808cca1a69ea56a36f4ff216f54a41a23aae1fd4afc05cc020" +checksum = "b2105142db9c6203b9dadc83b0553394589a6cb31b1449a3b46b42f47c3434d0" dependencies = [ "async-compression", "crc32fast", @@ -291,14 +306,14 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.6.11" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13d8068b6ccb8b34db9de397c7043f91db8b4c66414952c6db944f238c4d3db3" +checksum = "349f8ccfd9221ee7d1f3d4b33e1f8319b3a81ed8f61f2ea40b37b859794b4491" dependencies = [ "async-trait", "axum-core", "base64 0.21.0", - "bitflags", + "bitflags 1.3.2", "bytes", "futures-util", "http", @@ -362,6 +377,12 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" +[[package]] +name = "base16ct" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" + [[package]] name = "base64" version = "0.11.0" @@ -413,6 +434,12 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1" + [[package]] name = "blake3" version = "1.3.3" @@ -465,10 +492,41 @@ dependencies = [ ] [[package]] -name = "buf_redux" -version = "0.8.4" +name = "brotli" +version = "3.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f" +checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "2.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "bstr" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "buffer-redux" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2886ea01509598caac116942abd33ab5a88fa32acdf7e4abfa0fc489ca520c9" dependencies = [ "memchr", "safemem", @@ -508,6 +566,16 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" +[[package]] +name = "camellia" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3264e2574e9ef2b53ce6f536dea83a69ac0bc600b762d1523ff83fe07230ce30" +dependencies = [ + "byteorder", + "cipher", +] + [[package]] name = "camino" version = "1.1.3" @@ -587,9 +655,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.23" +version = "0.4.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" +checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" dependencies = [ "iana-time-zone", "js-sys", @@ -643,7 +711,7 @@ version = "3.2.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" dependencies = [ - "bitflags", + "bitflags 1.3.2", "clap_lex", "indexmap", "textwrap", @@ -887,6 +955,18 @@ dependencies = [ "zeroize", ] +[[package]] +name = "crypto-bigint" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c2538c4e68e52548bacb3e83ac549f903d44f011ac9d5abb5e132e67d0808f7" +dependencies = [ + "generic-array", + "rand_core 0.6.4", + "subtle", + "zeroize", +] + [[package]] name = "crypto-common" version = "0.1.6" @@ -910,6 +990,21 @@ dependencies = [ "zeroize", ] +[[package]] +name = "curve25519-dalek" +version = "4.0.0-rc.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03d928d978dbec61a1167414f5ec534f24bea0d7a0d24dd9b6233d3d8223e585" +dependencies = [ + "cfg-if", + "digest 0.10.6", + "fiat-crypto", + "packed_simd_2", + "platforms", + "subtle", + "zeroize", +] + [[package]] name = "cxx" version = "1.0.91" @@ -934,7 +1029,7 @@ dependencies = [ "proc-macro2", "quote", "scratch", - "syn", + "syn 1.0.109", ] [[package]] @@ -951,7 +1046,7 @@ checksum = "086c685979a698443656e5cf7856c95c642295a38599f12fb1ff76fb28d19892" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -985,7 +1080,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn", + "syn 1.0.109", ] [[package]] @@ -999,7 +1094,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn", + "syn 1.0.109", ] [[package]] @@ -1010,7 +1105,7 @@ checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" dependencies = [ "darling_core 0.13.4", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -1021,7 +1116,7 @@ checksum = "b36230598a2d5de7ec1c6f51f72d8a99a9208daff41de2084d06e3fd3ea56685" dependencies = [ "darling_core 0.14.3", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -1049,7 +1144,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.112.7" +version = "1.113.0" dependencies = [ "ansi_term", "anyhow", @@ -1060,7 +1155,7 @@ dependencies = [ "async_zip", "backtrace", "base64 0.21.0", - "bitflags", + "brotli", "chrono", "criterion", "deltachat_derive", @@ -1123,7 +1218,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.112.7" +version = "1.113.0" dependencies = [ "anyhow", "async-channel", @@ -1146,7 +1241,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.112.7" +version = "1.113.0" dependencies = [ "ansi_term", "anyhow", @@ -1161,7 +1256,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.112.7" +version = "1.113.0" dependencies = [ "anyhow", "deltachat", @@ -1172,6 +1267,7 @@ dependencies = [ "serde", "serde_json", "tokio", + "tokio-util", "yerpc", ] @@ -1180,12 +1276,12 @@ name = "deltachat_derive" version = "2.0.0" dependencies = [ "quote", - "syn", + "syn 2.0.13", ] [[package]] name = "deltachat_ffi" -version = "1.112.7" +version = "1.113.0" dependencies = [ "anyhow", "deltachat", @@ -1208,7 +1304,18 @@ checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" dependencies = [ "const-oid", "der_derive", - "pem-rfc7468", + "pem-rfc7468 0.6.0", + "zeroize", +] + +[[package]] +name = "der" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc906908ea6458456e5eaa160a9c08543ec3d1e6f71e2235cedd660cb65f9df0" +dependencies = [ + "const-oid", + "pem-rfc7468 0.7.0", "zeroize", ] @@ -1220,7 +1327,7 @@ checksum = "42d4bc9b0db0a0df9ae64634ac5bdefb7afcb534e182275ca0beadbe486701c1" dependencies = [ "asn1-rs", "displaydoc", - "nom 7.1.3", + "nom", "num-bigint", "num-traits", "rusticata-macros", @@ -1235,38 +1342,38 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] name = "derive_builder" -version = "0.11.2" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3" +checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" dependencies = [ "derive_builder_macro", ] [[package]] name = "derive_builder_core" -version = "0.11.2" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4" +checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" dependencies = [ "darling 0.14.3", "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] name = "derive_builder_macro" -version = "0.11.2" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68" +checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" dependencies = [ "derive_builder_core", - "syn", + "syn 1.0.109", ] [[package]] @@ -1279,7 +1386,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", - "syn", + "syn 1.0.109", ] [[package]] @@ -1314,9 +1421,9 @@ dependencies = [ [[package]] name = "dirs" -version = "4.0.0" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" +checksum = "dece029acd3353e3a58ac2e3eb3c8d6c35827a892edc6cc4138ef9c33df46ecd" dependencies = [ "dirs-sys", ] @@ -1333,13 +1440,13 @@ dependencies = [ [[package]] name = "dirs-sys" -version = "0.3.7" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" +checksum = "04414300db88f70d74c5ff54e50f9e1d1737d9a5b90f53fcf2e95ca2a9ab554b" dependencies = [ "libc", "redox_users", - "winapi", + "windows-sys 0.45.0", ] [[package]] @@ -1361,7 +1468,7 @@ checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -1384,7 +1491,7 @@ checksum = "3a09ac8bb8c16a282264c379dffba707b9c998afc7506009137f3c6136888078" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -1393,10 +1500,22 @@ version = "0.14.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" dependencies = [ - "der", - "elliptic-curve", - "rfc6979", - "signature", + "der 0.6.1", + "elliptic-curve 0.12.3", + "rfc6979 0.3.1", + "signature 1.6.4", +] + +[[package]] +name = "ecdsa" +version = "0.16.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "644d3b8674a5fc5b929ae435bca85c2323d85ccb013a5509c2ac9ee11a6284ba" +dependencies = [ + "der 0.7.1", + "elliptic-curve 0.13.2", + "rfc6979 0.4.0", + "signature 2.0.0", ] [[package]] @@ -1406,7 +1525,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7" dependencies = [ "serde", - "signature", + "signature 1.6.4", +] + +[[package]] +name = "ed25519" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be522bee13fa6d8059f4903a4084aa3bd50725e18150202f0238deb615cd6371" +dependencies = [ + "pkcs8 0.10.1", + "signature 2.0.0", ] [[package]] @@ -1415,8 +1544,8 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" dependencies = [ - "curve25519-dalek", - "ed25519", + "curve25519-dalek 3.2.0", + "ed25519 1.5.3", "rand 0.7.3", "serde", "serde_bytes", @@ -1424,6 +1553,19 @@ dependencies = [ "zeroize", ] +[[package]] +name = "ed25519-dalek" +version = "2.0.0-rc.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "798f704d128510932661a3489b08e3f4c934a01d61c5def59ae7b8e48f19665a" +dependencies = [ + "curve25519-dalek 4.0.0-rc.2", + "ed25519 2.2.0", + "serde", + "sha2 0.10.6", + "zeroize", +] + [[package]] name = "educe" version = "0.4.20" @@ -1433,7 +1575,7 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -1448,15 +1590,36 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" dependencies = [ - "base16ct", - "crypto-bigint", - "der", + "base16ct 0.1.1", + "crypto-bigint 0.4.9", + "der 0.6.1", "digest 0.10.6", - "ff", + "ff 0.12.1", "generic-array", - "group", + "group 0.12.1", "rand_core 0.6.4", - "sec1", + "sec1 0.3.0", + "subtle", + "zeroize", +] + +[[package]] +name = "elliptic-curve" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ea5a92946e8614bb585254898bb7dd1ddad241ace60c52149e3765e34cc039d" +dependencies = [ + "base16ct 0.2.0", + "crypto-bigint 0.5.1", + "digest 0.10.6", + "ff 0.13.0", + "generic-array", + "group 0.13.0", + "hkdf", + "pem-rfc7468 0.7.0", + "pkcs8 0.10.1", + "rand_core 0.6.4", + "sec1 0.7.1", "subtle", "zeroize", ] @@ -1473,7 +1636,7 @@ dependencies = [ "lazy_static", "rand 0.7.3", "time 0.1.45", - "version_check 0.9.4", + "version_check", ] [[package]] @@ -1584,7 +1747,7 @@ dependencies = [ "heck", "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -1598,7 +1761,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", - "syn", + "syn 1.0.109", ] [[package]] @@ -1629,13 +1792,13 @@ dependencies = [ [[package]] name = "errno" -version = "0.2.8" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" +checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" dependencies = [ "errno-dragonfly", "libc", - "winapi", + "windows-sys 0.45.0", ] [[package]] @@ -1687,9 +1850,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" [[package]] name = "fast-socks5" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2687b5a6108f18ba8621e0e618a3be1dcc2768632dad24b7cea1f87975375a9" +checksum = "961ce1761191c157145a8c9f0c3ceabecd3a729d65c9a8d443674eaee3420f7e" dependencies = [ "anyhow", "log", @@ -1718,9 +1881,9 @@ dependencies = [ [[package]] name = "fd-lock" -version = "3.0.10" +version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ef1a30ae415c3a691a4f41afddc2dbcd6d70baf338368d85ebc1e8ed92cedb9" +checksum = "9799aefb4a2e4a01cc47610b1dd47c18ab13d991f27bbcaed9296f5a53d5cbad" dependencies = [ "cfg-if", "rustix", @@ -1737,6 +1900,22 @@ dependencies = [ "subtle", ] +[[package]] +name = "ff" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +dependencies = [ + "rand_core 0.6.4", + "subtle", +] + +[[package]] +name = "fiat-crypto" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93ace6ec7cc19c8ed33a32eaa9ea692d7faea05006b5356b9e2b668ec4bc3955" + [[package]] name = "filetime" version = "0.2.20" @@ -1745,7 +1924,7 @@ checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412" dependencies = [ "cfg-if", "libc", - "redox_syscall", + "redox_syscall 0.2.16", "windows-sys 0.45.0", ] @@ -1808,9 +1987,9 @@ version = "1.0.0" [[package]] name = "futures" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84" +checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" dependencies = [ "futures-channel", "futures-core", @@ -1823,9 +2002,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" +checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" dependencies = [ "futures-core", "futures-sink", @@ -1833,15 +2012,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" +checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" [[package]] name = "futures-executor" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e" +checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" dependencies = [ "futures-core", "futures-task", @@ -1850,9 +2029,9 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" +checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" [[package]] name = "futures-lite" @@ -1871,32 +2050,32 @@ dependencies = [ [[package]] name = "futures-macro" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70" +checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.13", ] [[package]] name = "futures-sink" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" +checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" [[package]] name = "futures-task" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" +checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" [[package]] name = "futures-util" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" +checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" dependencies = [ "futures-channel", "futures-core", @@ -1917,7 +2096,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" dependencies = [ "typenum", - "version_check 0.9.4", + "version_check", + "zeroize", ] [[package]] @@ -1946,9 +2126,9 @@ dependencies = [ [[package]] name = "gif" -version = "0.11.4" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06" +checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" dependencies = [ "color_quant", "weezl", @@ -1966,16 +2146,27 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" dependencies = [ - "ff", + "ff 0.12.1", + "rand_core 0.6.4", + "subtle", +] + +[[package]] +name = "group" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" +dependencies = [ + "ff 0.13.0", "rand_core 0.6.4", "subtle", ] [[package]] name = "h2" -version = "0.3.16" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" +checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21" dependencies = [ "bytes", "fnv", @@ -2050,6 +2241,15 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +[[package]] +name = "hkdf" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" +dependencies = [ + "hmac", +] + [[package]] name = "hmac" version = "0.12.1" @@ -2124,7 +2324,7 @@ version = "2.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" dependencies = [ - "libm", + "libm 0.2.6", ] [[package]] @@ -2203,6 +2403,15 @@ dependencies = [ "cxx-build", ] +[[package]] +name = "idea" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "075557004419d7f2031b8bb7f44bb43e55a83ca7b63076a8fb8fe75753836477" +dependencies = [ + "cipher", +] + [[package]] name = "ident_case" version = "1.0.1" @@ -2232,9 +2441,9 @@ dependencies = [ [[package]] name = "image" -version = "0.24.5" +version = "0.24.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69b7ea949b537b0fd0af141fff8c77690f2ce96f4f41f042ccb6c69c6c965945" +checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" dependencies = [ "bytemuck", "byteorder", @@ -2252,7 +2461,7 @@ version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f73b1b63179418b20aa81002d616c5f21b4ba257da9bca6989ea64dc573933e0" dependencies = [ - "nom 7.1.3", + "nom", ] [[package]] @@ -2323,10 +2532,10 @@ dependencies = [ "blake3", "bytes", "default-net", - "der", + "der 0.6.1", "derive_more", "dirs-next", - "ed25519-dalek", + "ed25519-dalek 1.0.1", "futures", "hex", "num_cpus", @@ -2357,9 +2566,9 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.4" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857" +checksum = "256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8" dependencies = [ "hermit-abi 0.3.1", "io-lifetimes", @@ -2450,9 +2659,15 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.139" +version = "0.2.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" +checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" + +[[package]] +name = "libm" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fc7aa29613bd6a620df431842069224d8bc9011086b1db4c0e0cd47fa03ec9a" [[package]] name = "libm" @@ -2462,9 +2677,9 @@ checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" [[package]] name = "libsqlite3-sys" -version = "0.25.2" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" +checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" dependencies = [ "cc", "openssl-sys", @@ -2489,9 +2704,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.1.4" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" +checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f" [[package]] name = "lock_api" @@ -2674,7 +2889,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ea993e32c77d87f01236c38f572ecb6c311d592e56a06262a007fd2a6e31253c" dependencies = [ "anyhow", - "bitflags", + "bitflags 1.3.2", "byteorder", "libc", "netlink-packet-core", @@ -2719,22 +2934,12 @@ version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg-if", "libc", "static_assertions", ] -[[package]] -name = "nom" -version = "4.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" -dependencies = [ - "memchr", - "version_check 0.1.5", -] - [[package]] name = "nom" version = "7.1.3" @@ -2783,7 +2988,7 @@ checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905" dependencies = [ "byteorder", "lazy_static", - "libm", + "libm 0.2.6", "num-integer", "num-iter", "num-traits", @@ -2801,7 +3006,7 @@ checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -2843,7 +3048,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" dependencies = [ "autocfg", - "libm", + "libm 0.2.6", ] [[package]] @@ -2898,7 +3103,7 @@ version = "0.10.48" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "518915b97df115dd36109bfa429a48b8f737bd05508cf9588977b599648926d2" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg-if", "foreign-types", "libc", @@ -2915,7 +3120,7 @@ checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -2984,7 +3189,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -2999,8 +3204,20 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" dependencies = [ - "ecdsa", - "elliptic-curve", + "ecdsa 0.14.8", + "elliptic-curve 0.12.3", + "sha2 0.10.6", +] + +[[package]] +name = "p256" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7270da3e5caa82afd3deb054cc237905853813aea3859544bc082c3fe55b8d47" +dependencies = [ + "ecdsa 0.16.2", + "elliptic-curve 0.13.2", + "primeorder", "sha2 0.10.6", ] @@ -3010,11 +3227,33 @@ version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa" dependencies = [ - "ecdsa", - "elliptic-curve", + "ecdsa 0.14.8", + "elliptic-curve 0.12.3", "sha2 0.10.6", ] +[[package]] +name = "p384" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" +dependencies = [ + "ecdsa 0.16.2", + "elliptic-curve 0.13.2", + "primeorder", + "sha2 0.10.6", +] + +[[package]] +name = "packed_simd_2" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1914cd452d8fccd6f9db48147b29fd4ae05bea9dc5d9ad578509f72415de282" +dependencies = [ + "cfg-if", + "libm 0.1.4", +] + [[package]] name = "parking" version = "2.0.0" @@ -3039,7 +3278,7 @@ checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" dependencies = [ "cfg-if", "libc", - "redox_syscall", + "redox_syscall 0.2.16", "smallvec", "windows-sys 0.45.0", ] @@ -3068,6 +3307,15 @@ dependencies = [ "base64ct", ] +[[package]] +name = "pem-rfc7468" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +dependencies = [ + "base64ct", +] + [[package]] name = "percent-encoding" version = "2.2.0" @@ -3076,17 +3324,19 @@ checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" [[package]] name = "pgp" -version = "0.9.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "991e3f098483f52c454c7cb16720adc010c2966a8845d3c34aad589cb86d3196" +checksum = "37a79d6411154d1a9908e7a2c4bac60a5742f6125823c2c30780c7039aef02f0" dependencies = [ "aes", - "base64 0.13.1", + "base64 0.21.0", "bitfield", "block-padding", "blowfish", - "buf_redux", + "bstr", + "buffer-redux", "byteorder", + "camellia", "cast5", "cfb-mode", "chrono", @@ -3095,23 +3345,27 @@ dependencies = [ "derive_builder", "des", "digest 0.10.6", - "ed25519-dalek", + "ed25519-dalek 2.0.0-rc.2", + "elliptic-curve 0.13.2", "flate2", "generic-array", "hex", + "idea", "log", "md-5", - "nom 4.2.3", + "nom", "num-bigint-dig", "num-derive", "num-traits", + "p256 0.13.0", + "p384 0.13.0", "rand 0.8.5", "ripemd", - "rsa", + "rsa 0.9.0-pre.0", "sha1", "sha2 0.10.6", "sha3", - "signature", + "signature 2.0.0", "smallvec", "thiserror", "twofish", @@ -3136,7 +3390,7 @@ checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -3157,9 +3411,21 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719" dependencies = [ - "der", - "pkcs8", - "spki", + "der 0.6.1", + "pkcs8 0.9.0", + "spki 0.6.0", + "zeroize", +] + +[[package]] +name = "pkcs1" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "178ba28ece1961eafdff1991bd1744c29564cbab5d803f3ccb4a4895a6c550a7" +dependencies = [ + "der 0.7.1", + "pkcs8 0.10.1", + "spki 0.7.0", "zeroize", ] @@ -3169,8 +3435,18 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" dependencies = [ - "der", - "spki", + "der 0.6.1", + "spki 0.6.0", +] + +[[package]] +name = "pkcs8" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d2820d87d2b008616e5c27212dd9e0e694fb4c6b522de06094106813328cb49" +dependencies = [ + "der 0.7.1", + "spki 0.7.0", ] [[package]] @@ -3179,6 +3455,12 @@ version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" +[[package]] +name = "platforms" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630" + [[package]] name = "plotters" version = "0.3.4" @@ -3213,7 +3495,7 @@ version = "0.17.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638" dependencies = [ - "bitflags", + "bitflags 1.3.2", "crc32fast", "flate2", "miniz_oxide", @@ -3245,7 +3527,7 @@ checksum = "fc4b01218787dd4420daf63875163a787a78294ad48a24e9f6fa8c6507759a79" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -3264,6 +3546,15 @@ dependencies = [ "log", ] +[[package]] +name = "primeorder" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7613fdcc0831c10060fa69833ea8fa2caa94b6456f51e25356a885b530a2e3d0" +dependencies = [ + "elliptic-curve 0.13.2", +] + [[package]] name = "proc-macro-error" version = "1.0.4" @@ -3273,8 +3564,8 @@ dependencies = [ "proc-macro-error-attr", "proc-macro2", "quote", - "syn", - "version_check 0.9.4", + "syn 1.0.109", + "version_check", ] [[package]] @@ -3285,14 +3576,14 @@ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" dependencies = [ "proc-macro2", "quote", - "version_check 0.9.4", + "version_check", ] [[package]] name = "proc-macro2" -version = "1.0.51" +version = "1.0.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" +checksum = "1d0dd4be24fcdcfeaa12a432d588dc59bbad6cad3510c67e74a2b6b2fc950564" dependencies = [ "unicode-ident", ] @@ -3303,7 +3594,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29f1b898011ce9595050a68e60f90bad083ff2987a695a42357134c8381fba70" dependencies = [ - "bitflags", + "bitflags 1.3.2", "byteorder", "lazy_static", "num-traits", @@ -3353,9 +3644,9 @@ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" [[package]] name = "quick-xml" -version = "0.27.1" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffc053f057dd768a56f62cd7e434c42c831d296968997e9ac1f76ea7c2d14c41" +checksum = "e5c1a97b1bc42b1d550bfb48d4262153fe400a12bab1511821736f7eac76d7e2" dependencies = [ "memchr", ] @@ -3410,9 +3701,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.23" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" +checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" dependencies = [ "proc-macro2", ] @@ -3557,7 +3848,16 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ - "bitflags", + "bitflags 1.3.2", +] + +[[package]] +name = "redox_syscall" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +dependencies = [ + "bitflags 1.3.2", ] [[package]] @@ -3567,15 +3867,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ "getrandom 0.2.8", - "redox_syscall", + "redox_syscall 0.2.16", "thiserror", ] [[package]] name = "regex" -version = "1.7.1" +version = "1.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" +checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" dependencies = [ "aho-corasick", "memchr", @@ -3593,15 +3893,15 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.28" +version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "reqwest" -version = "0.11.14" +version = "0.11.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" +checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" dependencies = [ "base64 0.21.0", "bytes", @@ -3650,11 +3950,21 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" dependencies = [ - "crypto-bigint", + "crypto-bigint 0.4.9", "hmac", "zeroize", ] +[[package]] +name = "rfc6979" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" +dependencies = [ + "hmac", + "subtle", +] + [[package]] name = "ring" version = "0.16.20" @@ -3691,22 +4001,42 @@ dependencies = [ "num-integer", "num-iter", "num-traits", - "pkcs1", - "pkcs8", + "pkcs1 0.4.1", + "pkcs8 0.9.0", "rand_core 0.6.4", - "signature", + "signature 1.6.4", "smallvec", "subtle", "zeroize", ] [[package]] -name = "rusqlite" -version = "0.28.0" +name = "rsa" +version = "0.9.0-pre.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a" +checksum = "a7bc1d34159d63536b4d89944e9ab5bb952f45db6fa0b8b03c2f8c09fb5b7171" dependencies = [ - "bitflags", + "byteorder", + "digest 0.10.6", + "num-bigint-dig", + "num-integer", + "num-iter", + "num-traits", + "pkcs1 0.7.1", + "pkcs8 0.10.1", + "rand_core 0.6.4", + "signature 2.0.0", + "subtle", + "zeroize", +] + +[[package]] +name = "rusqlite" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2" +dependencies = [ + "bitflags 2.0.2", "fallible-iterator", "fallible-streaming-iterator", "hashlink", @@ -3747,16 +4077,16 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" dependencies = [ - "nom 7.1.3", + "nom", ] [[package]] name = "rustix" -version = "0.36.8" +version = "0.37.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644" +checksum = "d097081ed288dfe45699b72f5b5d648e5f15d64d900c7080273baa20c16a6849" dependencies = [ - "bitflags", + "bitflags 1.3.2", "errno", "io-lifetimes", "libc", @@ -3808,7 +4138,7 @@ version = "11.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5dfc8644681285d1fb67a467fb3021bfea306b99b4146b166a1fe3ada965eece" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg-if", "clipboard-win", "dirs-next", @@ -3893,10 +4223,24 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" dependencies = [ - "base16ct", - "der", + "base16ct 0.1.1", + "der 0.6.1", "generic-array", - "pkcs8", + "pkcs8 0.9.0", + "subtle", + "zeroize", +] + +[[package]] +name = "sec1" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48518a2b5775ba8ca5b46596aae011caa431e6ce7e4a67ead66d92f08884220e" +dependencies = [ + "base16ct 0.2.0", + "der 0.7.1", + "generic-array", + "pkcs8 0.10.1", "subtle", "zeroize", ] @@ -3907,7 +4251,7 @@ version = "2.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" dependencies = [ - "bitflags", + "bitflags 1.3.2", "core-foundation", "core-foundation-sys", "libc", @@ -3935,9 +4279,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.152" +version = "1.0.159" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" +checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" dependencies = [ "serde_derive", ] @@ -3962,20 +4306,20 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.152" +version = "1.0.159" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" +checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.13", ] [[package]] name = "serde_json" -version = "1.0.93" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" +checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" dependencies = [ "itoa", "ryu", @@ -4096,6 +4440,16 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "signature" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fe458c98333f9c8152221191a77e2a44e8325d0193484af2e9421a53019e57d" +dependencies = [ + "digest 0.10.6", + "rand_core 0.6.4", +] + [[package]] name = "slab" version = "0.4.8" @@ -4119,9 +4473,9 @@ checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043" [[package]] name = "socket2" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" dependencies = [ "libc", "winapi", @@ -4149,7 +4503,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" dependencies = [ "base64ct", - "der", + "der 0.6.1", +] + +[[package]] +name = "spki" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0445c905640145c7ea8c1993555957f65e7c46d0535b91ba501bc9bfc85522f" +dependencies = [ + "base64ct", + "der 0.7.1", ] [[package]] @@ -4159,7 +4523,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19cfdc32e0199062113edf41f344fbf784b8205a94600233c84eb838f45191e1" dependencies = [ "base64ct", - "pem-rfc7468", + "pem-rfc7468 0.6.0", "sha2 0.10.6", ] @@ -4169,14 +4533,14 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "288d8f5562af5a3be4bda308dd374b2c807b940ac370b5efa1c99311da91d9a1" dependencies = [ - "ed25519-dalek", - "p256", - "p384", + "ed25519-dalek 1.0.1", + "p256 0.11.1", + "p384 0.11.2", "rand_core 0.6.4", - "rsa", - "sec1", + "rsa 0.7.2", + "sec1 0.3.0", "sha2 0.10.6", - "signature", + "signature 1.6.4", "ssh-encoding", "zeroize", ] @@ -4233,7 +4597,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn", + "syn 1.0.109", ] [[package]] @@ -4253,6 +4617,17 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "syn" +version = "2.0.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "sync_wrapper" version = "0.1.2" @@ -4267,7 +4642,7 @@ checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", "unicode-xid", ] @@ -4291,7 +4666,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d75182f12f490e953596550b65ee31bda7c8e043d9386174b353bda50838c3fd" dependencies = [ - "bitflags", + "bitflags 1.3.2", "core-foundation", "system-configuration-sys", ] @@ -4314,15 +4689,15 @@ checksum = "6aaa6f5d645d1dae4cd0286e9f8bf15b75a31656348e5e106eb1a940abd34b63" [[package]] name = "tempfile" -version = "3.4.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" +checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" dependencies = [ "cfg-if", "fastrand", - "redox_syscall", + "redox_syscall 0.3.5", "rustix", - "windows-sys 0.42.0", + "windows-sys 0.45.0", ] [[package]] @@ -4336,9 +4711,9 @@ dependencies = [ [[package]] name = "testdir" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c31eb500f7513b559ed7e0652894268dbe8ef27b6241b783ce274f4741eae137" +checksum = "a45fc921e7c4ad1aedb3484811514f3e5cd187886e0bbf1302c175f7578ef552" dependencies = [ "anyhow", "backtrace", @@ -4361,22 +4736,22 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.38" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" +checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.38" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" +checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.13", ] [[package]] @@ -4454,14 +4829,13 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.26.0" +version = "1.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" +checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001" dependencies = [ "autocfg", "bytes", "libc", - "memchr", "mio", "num_cpus", "parking_lot", @@ -4484,13 +4858,13 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "1.8.2" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" +checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.13", ] [[package]] @@ -4538,7 +4912,7 @@ dependencies = [ "filetime", "futures-core", "libc", - "redox_syscall", + "redox_syscall 0.2.16", "tokio", "tokio-stream", "xattr", @@ -4572,9 +4946,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7afcae9e3f0fe2c370fd4657108972cbb2fa9db1b9f84849cefd80741b01cb6" +checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" dependencies = [ "serde", "serde_spanned", @@ -4593,9 +4967,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.19.4" +version = "0.19.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a1eb0622d28f4b9c90adc4ea4b2b46b47663fde9ac5fafcb14a1369d5508825" +checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" dependencies = [ "indexmap", "serde", @@ -4653,7 +5027,7 @@ checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -4811,7 +5185,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -4920,12 +5294,6 @@ version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" -[[package]] -name = "version_check" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" - [[package]] name = "version_check" version = "0.9.4" @@ -4940,12 +5308,11 @@ checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" [[package]] name = "walkdir" -version = "2.3.2" +version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" +checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" dependencies = [ "same-file", - "winapi", "winapi-util", ] @@ -4998,7 +5365,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn", + "syn 1.0.109", "wasm-bindgen-shared", ] @@ -5032,7 +5399,7 @@ checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -5242,9 +5609,9 @@ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" [[package]] name = "winnow" -version = "0.3.3" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faf09497b8f8b5ac5d3bb4d05c0a99be20f26fd3d5f2db7b0716e946d5103658" +checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" dependencies = [ "memchr", ] @@ -5260,12 +5627,12 @@ dependencies = [ [[package]] name = "x25519-dalek" -version = "1.1.1" +version = "2.0.0-pre.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f" +checksum = "e5da623d8af10a62342bcbbb230e33e58a63255a58012f8653c578e54bab48df" dependencies = [ - "curve25519-dalek", - "rand_core 0.5.1", + "curve25519-dalek 3.2.0", + "rand_core 0.6.4", "zeroize", ] @@ -5280,7 +5647,7 @@ dependencies = [ "data-encoding", "der-parser", "lazy_static", - "nom 7.1.3", + "nom", "oid-registry", "rusticata-macros", "thiserror", @@ -5337,7 +5704,7 @@ dependencies = [ "darling 0.14.3", "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -5357,6 +5724,6 @@ checksum = "44bf07cb3e50ea2003396695d58bf46bc9887a1f362260446fad6bc4e79bd36c" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", "synstructure", ] diff --git a/pkgs/development/libraries/libdeltachat/default.nix b/pkgs/development/libraries/libdeltachat/default.nix index 0fa666b6ed38..5f534c393213 100644 --- a/pkgs/development/libraries/libdeltachat/default.nix +++ b/pkgs/development/libraries/libdeltachat/default.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation rec { pname = "libdeltachat"; - version = "1.112.7"; + version = "1.113.0"; src = fetchFromGitHub { owner = "deltachat"; repo = "deltachat-core-rust"; rev = "v${version}"; - hash = "sha256-zBstNj8IZ8ScwZxzvTxDPwe8R0n2z/EuvjbR+bJepJk="; + hash = "sha256-Ft7BMgHGeTEM3WQVhAEjtyYYCfVFa2+ZkbdmDF22X9A="; }; patches = [ From ca77e25522db149090f87fd5909b6a276c5f654d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 19 Apr 2023 19:43:47 -0700 Subject: [PATCH 210/213] python310Packages.arcam-fmj: 1.2.1 -> 1.3.0 Diff: https://github.com/elupus/arcam_fmj/compare/refs/tags/1.2.1...1.3.0 Changelog: https://github.com/elupus/arcam_fmj/releases/tag/1.3.0 --- pkgs/development/python-modules/arcam-fmj/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/arcam-fmj/default.nix b/pkgs/development/python-modules/arcam-fmj/default.nix index 7cba156bd684..adc187fdc544 100644 --- a/pkgs/development/python-modules/arcam-fmj/default.nix +++ b/pkgs/development/python-modules/arcam-fmj/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "arcam-fmj"; - version = "1.2.1"; + version = "1.3.0"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "elupus"; repo = "arcam_fmj"; rev = "refs/tags/${version}"; - hash = "sha256-nRInKju3Q4En+SiSl6DOeeTRK56TzKPweoVXsvzs45I="; + hash = "sha256-TFZoWni33dzioADpTt50fqwBlZ/rdUergGs3s3d0504="; }; propagatedBuildInputs = [ From 9ec0e984fbd8c0ec6a9f2a750c936083a6b6f4ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 18 Apr 2023 19:37:36 -0700 Subject: [PATCH 211/213] python310Packages.trove-classifiers: 2023.3.9 -> 2023.4.18 Changelog: https://github.com/pypa/trove-classifiers/releases/tag/2023.4.18 --- pkgs/development/python-modules/trove-classifiers/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/trove-classifiers/default.nix b/pkgs/development/python-modules/trove-classifiers/default.nix index c8a33e9a545f..c1d99d219360 100644 --- a/pkgs/development/python-modules/trove-classifiers/default.nix +++ b/pkgs/development/python-modules/trove-classifiers/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "trove-classifiers"; - version = "2023.3.9"; + version = "2023.4.18"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-7kLy+MHUvP4190bkcvB2M1cNSF+rRUB+/8A3knCjuwM="; + hash = "sha256-n4kqg8y9+eZphhqUfGsD1bkah/RJrv7x12/EFp943bo="; }; nativeBuildInputs = [ From ea468d9691c1db8d9e288a1fc453fdfaf3e4f9a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 5 Apr 2023 20:05:21 -0700 Subject: [PATCH 212/213] truvari: 2.1.1 -> 4.0.0 Diff: https://github.com/spiralgenetics/truvari/compare/v2.1.1...v4.0.0 --- .../science/biology/truvari/default.nix | 59 ++++++++++++++----- 1 file changed, 44 insertions(+), 15 deletions(-) diff --git a/pkgs/applications/science/biology/truvari/default.nix b/pkgs/applications/science/biology/truvari/default.nix index 412642f523f2..37aa4e8789ab 100644 --- a/pkgs/applications/science/biology/truvari/default.nix +++ b/pkgs/applications/science/biology/truvari/default.nix @@ -1,45 +1,74 @@ { lib , fetchFromGitHub , python3Packages +, runtimeShell +, bcftools +, htslib }: -python3Packages.buildPythonApplication rec { +let + ssshtest = fetchFromGitHub { + owner = "ryanlayer"; + repo = "ssshtest"; + rev = "d21f7f928a167fca6e2eb31616673444d15e6fd0"; + hash = "sha256-zecZHEnfhDtT44VMbHLHOhRtNsIMWeaBASupVXtmrks="; + }; +in python3Packages.buildPythonApplication rec { pname = "truvari"; - version = "2.1.1"; + version = "4.0.0"; src = fetchFromGitHub { - owner = "spiralgenetics"; + owner = "ACEnglish"; repo = "truvari"; rev = "v${version}"; - sha256 = "14nsdbj063qm175xxixs34cihvsiskc9gym8pg7gbwsh13k5a00h"; + hash = "sha256-UJNMKEV5m2jFqnWvkVAtymkcE2TjPIXp7JqRZpMSqsE="; }; postPatch = '' substituteInPlace setup.py \ - --replace 'python-Levenshtein==0.12.1' 'python-Levenshtein>=0.12.1' + --replace "rich==" "rich>=" + substituteInPlace truvari/utils.py \ + --replace "/bin/bash" "${runtimeShell}" + patchShebangs repo_utils/test_files ''; propagatedBuildInputs = with python3Packages; [ - pyvcf - levenshtein - progressbar2 + rich + edlib pysam - pyfaidx intervaltree - pytabix - acebinf - bwapy joblib + numpy + pytabix + bwapy pandas ]; - # no tests - doCheck = false; + makeWrapperArgs = [ + "--prefix" "PATH" ":" (lib.makeBinPath [ bcftools htslib ]) + ]; + pythonImportsCheck = [ "truvari" ]; + nativeCheckInputs = [ + bcftools + htslib + ] ++ (with python3Packages; [ + coverage + ]); + + checkPhase = '' + runHook preCheck + + ln -s ${ssshtest}/ssshtest . + bash repo_utils/truvari_ssshtests.sh + + runHook postCheck + ''; + meta = with lib; { description = "Structural variant comparison tool for VCFs"; - homepage = "https://github.com/spiralgenetics/truvari"; + homepage = "https://github.com/ACEnglish/truvari"; license = licenses.mit; maintainers = with maintainers; [ scalavision ]; longDescription = '' From 2362848adf8def2866fabbffc50462e929d7fffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 16 Apr 2023 22:25:32 -0700 Subject: [PATCH 213/213] truvari: add natsukium to maintainers --- pkgs/applications/science/biology/truvari/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/science/biology/truvari/default.nix b/pkgs/applications/science/biology/truvari/default.nix index 37aa4e8789ab..cf64070d782f 100644 --- a/pkgs/applications/science/biology/truvari/default.nix +++ b/pkgs/applications/science/biology/truvari/default.nix @@ -70,7 +70,7 @@ in python3Packages.buildPythonApplication rec { description = "Structural variant comparison tool for VCFs"; homepage = "https://github.com/ACEnglish/truvari"; license = licenses.mit; - maintainers = with maintainers; [ scalavision ]; + maintainers = with maintainers; [ natsukium scalavision ]; longDescription = '' Truvari is a benchmarking tool for comparison sets of SVs. It can calculate the recall, precision, and f-measure of a