Merge master into staging-next

authored by github-actions[bot] and committed by GitHub e0f3de2d 5582d1b0

+442 -376
+2
doc/stdenv/stdenv.chapter.md
··· 452 452 453 453 After running `unpackPhase`, the generic builder changes the current directory to the directory created by unpacking the sources. If there are multiple source directories, you should set `sourceRoot` to the name of the intended directory. Set `sourceRoot = ".";` if you use `srcs` and control the unpack phase yourself. 454 454 455 + By default the `sourceRoot` is set to `"source"`. If you want to point to a sub-directory inside your project, you therefore need to set `sourceRoot = "source/my-sub-directory"`. 456 + 455 457 ##### `setSourceRoot` {#var-stdenv-setSourceRoot} 456 458 457 459 Alternatively to setting `sourceRoot`, you can set `setSourceRoot` to a shell command to be evaluated by the unpack phase after the sources have been unpacked. This command must set `sourceRoot`.
+2 -5
nixos/modules/hardware/video/nvidia.nix
··· 233 233 } 234 234 235 235 { 236 - assertion = cfg.powerManagement.enable -> ( 237 - builtins.pathExists (cfg.package.out + "/bin/nvidia-sleep.sh") && 238 - builtins.pathExists (cfg.package.out + "/lib/systemd/system-sleep/nvidia") 239 - ); 240 - message = "Required files for driver based power management don't exist."; 236 + assertion = cfg.powerManagement.enable -> versionAtLeast nvidia_x11.version "430.09"; 237 + message = "Required files for driver based power management only exist on versions >= 430.09."; 241 238 } 242 239 243 240 {
+1 -1
nixos/modules/services/misc/portunus.nix
··· 284 284 ]; 285 285 }; 286 286 287 - meta.maintainers = [ majewsky ] ++ teams.c3d2.members; 287 + meta.maintainers = [ maintainers.majewsky ] ++ teams.c3d2.members; 288 288 }
+1 -1
nixos/tests/zigbee2mqtt.nix
··· 1 1 import ./make-test-python.nix ({ pkgs, lib, ... }: 2 - 3 2 { 3 + name = "zigbee2mqtt"; 4 4 nodes.machine = { pkgs, ... }: 5 5 { 6 6 services.zigbee2mqtt = {
+4 -15
pkgs/applications/audio/guitarix/default.nix
··· 6 6 , boost 7 7 , curl 8 8 , eigen 9 + , faust 9 10 , fftw 10 11 , gettext 11 12 , glib ··· 42 43 43 44 stdenv.mkDerivation rec { 44 45 pname = "guitarix"; 45 - version = "0.42.1"; 46 + version = "0.44.1"; 46 47 47 48 src = fetchurl { 48 49 url = "mirror://sourceforge/guitarix/guitarix2-${version}.tar.xz"; 49 - sha256 = "101c2hdpipj3s6rmva5wf3q9hfjv7bkyzi7s8sgaiys8f7h4czkr"; 50 + sha256 = "d+g9dU9RrDjFQj847rVd5bPiYSjmC1EbAtLe/PNubBg="; 50 51 }; 51 52 52 - patches = [ 53 - (fetchpatch { 54 - name = "guitarix-gcc11.patch"; 55 - url = "https://github.com/brummer10/guitarix/commit/d8f003484c57d808682025dfb07a7a1fb848afdc.patch"; 56 - stripLen = 1; 57 - sha256 = "1qhlbf18cn6m9jdz3741nrdfqvznjna3daqmn9l10k5nd3asy4il"; 58 - }) 59 - ]; 60 - 61 53 nativeBuildInputs = [ 62 54 gettext 63 55 hicolor-icon-theme ··· 74 66 boost 75 67 curl 76 68 eigen 69 + faust 77 70 fftw 78 71 glib 79 72 glib-networking.out ··· 96 89 zita-resampler 97 90 ]; 98 91 99 - # this doesnt build, probably because we have the wrong faust version: 100 - # "--faust" 101 - # aproved versions are 2.20.2 and 2.15.11 102 92 wafConfigureFlags = [ 103 - "--no-faust" 104 93 "--no-font-cache-update" 105 94 "--shared-lib" 106 95 "--no-desktop-update"
+2 -2
pkgs/applications/editors/leo-editor/default.nix
··· 2 2 3 3 mkDerivation rec { 4 4 pname = "leo-editor"; 5 - version = "6.6.3"; 5 + version = "6.6.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "leo-editor"; 9 9 repo = "leo-editor"; 10 10 rev = version; 11 - sha256 = "sha256-QBK+4V9Nff3K6KcJ1PEyU0Ohn3cLawKe/5sR4Tih0dM="; 11 + sha256 = "sha256-NwqvlDG37OpWaLJHb6NqkRYvWwDzICKqfgIJRTBDnkI="; 12 12 }; 13 13 14 14 dontBuild = true;
+12 -12
pkgs/applications/editors/vim/plugins/generated.nix
··· 375 375 meta.homepage = "https://github.com/chrisbra/SudoEdit.vim/"; 376 376 }; 377 377 378 - TrueZen-nvim = buildVimPluginFrom2Nix { 379 - pname = "TrueZen.nvim"; 380 - version = "2022-08-07"; 381 - src = fetchFromGitHub { 382 - owner = "Pocco81"; 383 - repo = "true-zen.nvim"; 384 - rev = "98740c76254c65576ec294551028b65081053588"; 385 - sha256 = "1g7wwb081yliqzpzmgjgvv9fn9qcry9k4xbgv0zcgz7z1lbhmyj1"; 386 - }; 387 - meta.homepage = "https://github.com/Pocco81/true-zen.nvim/"; 388 - }; 389 - 390 378 VimCompletesMe = buildVimPluginFrom2Nix { 391 379 pname = "VimCompletesMe"; 392 380 version = "2022-02-18"; ··· 7755 7743 sha256 = "1aa45r9z8mghak8f5gymhm875rssi1afs92h0mpnn43y0j76xy31"; 7756 7744 }; 7757 7745 meta.homepage = "https://github.com/folke/trouble.nvim/"; 7746 + }; 7747 + 7748 + true-zen-nvim = buildVimPluginFrom2Nix { 7749 + pname = "true-zen.nvim"; 7750 + version = "2022-08-07"; 7751 + src = fetchFromGitHub { 7752 + owner = "Pocco81"; 7753 + repo = "true-zen.nvim"; 7754 + rev = "98740c76254c65576ec294551028b65081053588"; 7755 + sha256 = "1g7wwb081yliqzpzmgjgvv9fn9qcry9k4xbgv0zcgz7z1lbhmyj1"; 7756 + }; 7757 + meta.homepage = "https://github.com/Pocco81/true-zen.nvim/"; 7758 7758 }; 7759 7759 7760 7760 tslime-vim = buildVimPluginFrom2Nix {
+1 -1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 30 30 https://github.com/SpaceVim/SpaceVim/,, 31 31 https://github.com/ackyshake/Spacegray.vim/,, 32 32 https://github.com/chrisbra/SudoEdit.vim/,, 33 - https://github.com/Pocco81/TrueZen.nvim/,, 34 33 https://github.com/ackyshake/VimCompletesMe/,, 35 34 https://github.com/hsitz/VimOrganizer/,, 36 35 https://github.com/VundleVim/Vundle.vim/,, ··· 650 649 https://github.com/tremor-rs/tremor-vim/,, 651 650 https://github.com/cappyzawa/trim.nvim/,, 652 651 https://github.com/folke/trouble.nvim/,, 652 + https://github.com/Pocco81/true-zen.nvim/,, 653 653 https://github.com/jgdavey/tslime.vim/,, 654 654 https://github.com/Quramy/tsuquyomi/,, 655 655 https://github.com/folke/twilight.nvim/,,
+2 -2
pkgs/applications/misc/ausweisapp2/default.nix
··· 3 3 4 4 mkDerivation rec { 5 5 pname = "AusweisApp2"; 6 - version = "1.24.0"; 6 + version = "1.24.1"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "Governikus"; 10 10 repo = "AusweisApp2"; 11 11 rev = version; 12 - sha256 = "sha256-2yEUMD3FQ9JrecCnWSr0Fej4ngk7HVCZUgbRqmGbCK8="; 12 + sha256 = "sha256-Uoi12odfJGyNc8Ap7E/zm4xklYdPPQvCGNxjb9AWJOI="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake pkg-config ];
+2 -2
pkgs/applications/misc/fluidd/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "fluidd"; 5 - version = "1.19.1"; 5 + version = "1.20.0"; 6 6 7 7 src = fetchurl { 8 8 name = "fluidd-v${version}.zip"; 9 9 url = "https://github.com/cadriel/fluidd/releases/download/v${version}/fluidd.zip"; 10 - sha256 = "sha256-ARBi+8IAheEJ5keyiDCub6Y83hT/dU/BajPChi3f1po="; 10 + sha256 = "sha256-zDCvRwAtjBbBOa5D1k7khZGXeql5COMlWMi/dpwiiYM="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ unzip ];
+2 -2
pkgs/applications/misc/khal/default.nix
··· 32 32 # shell completions 33 33 installShellCompletion --cmd khal \ 34 34 --bash <(_KHAL_COMPLETE=bash_source $out/bin/khal) \ 35 - --fish <(_KHAL_COMPLETE=zsh_source $out/bin/khal) \ 36 - --zsh <(_KHAL_COMPLETE=fish_source $out/bin/khal) 35 + --zsh <(_KHAL_COMPLETE=zsh_source $out/bin/khal) \ 36 + --fish <(_KHAL_COMPLETE=fish_source $out/bin/khal) 37 37 38 38 # man page 39 39 PATH="${python3.withPackages (ps: with ps; [ sphinx sphinxcontrib_newsfeed ])}/bin:$PATH" \
+3 -3
pkgs/applications/misc/sioyek/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "sioyek"; 20 - version = "1.4.0"; 20 + version = "unstable-2022-08-30"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "ahrm"; 24 24 repo = pname; 25 - rev = "v${version}"; 26 - sha256 = "sha256-F71JXgYaWAye+nlSrZvGjJ4ucvHTx3tPZHRC5QI4QiU="; 25 + rev = "8d0a63484334e2cb2b0571a07a3875e6ab6c8916"; 26 + sha256 = "sha256-29Wxg/VVQPDDzzxKcvMa1+rtiP4bDkPAB/JJsj+F+WQ="; 27 27 }; 28 28 29 29 buildInputs = [ gumbo harfbuzz jbig2dec mupdf mujs openjpeg qt3d qtbase ]
+3 -3
pkgs/applications/networking/cluster/glooctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "glooctl"; 5 - version = "1.12.10"; 5 + version = "1.12.11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "solo-io"; 9 9 repo = "gloo"; 10 10 rev = "v${version}"; 11 - hash = "sha256-ez98npQDkRmtE+Bh9O/bAOePwMQCvc0UZRcw5R2hAPY="; 11 + hash = "sha256-vG1FSBHXaJBJk9dC61yZK1Vkr8PyQ7Q4TVZWRIsDY3E="; 12 12 }; 13 13 14 14 subPackages = [ "projects/gloo/cli/cmd" ]; 15 - vendorSha256 = "sha256-wY0f9RUe9Z1FpjqWDpDG6QXQlFDChfAkjJzlvBMaaFE="; 15 + vendorSha256 = "sha256-6AgsnPrkLtUgvPMcXDZ9qVngnlN/65pwjdtBPdf0Jzw="; 16 16 17 17 nativeBuildInputs = [ installShellFiles ]; 18 18
+3 -3
pkgs/applications/networking/mailreaders/aerc/default.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "aerc"; 14 - version = "0.11.0"; 14 + version = "0.12.0"; 15 15 16 16 src = fetchFromSourcehut { 17 17 owner = "~rjarry"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "sha256-w0h6BNuGwXV1CzyvXvsRs2MXHKLbK3EUaK4mKiuNBxc="; 20 + hash = "sha256-n5rRvLhCy2d8xUoTNyM5JYKGJWN0nEwkQeBCOpUrUrc="; 21 21 }; 22 22 23 23 proxyVendor = true; 24 - vendorSha256 = "sha256-vw9lDIZMswh/vrF1g8FvZ/faN5jWWPwfgnm66EWaohw="; 24 + vendorHash = "sha256-Z1dW3cK3Anl8JpAfwppsSBRgV5SdRmQemOG+652z0KA="; 25 25 26 26 doCheck = false; 27 27
+3 -4
pkgs/applications/science/logic/kissat/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "kissat"; 7 - version = "2.0.1"; 7 + version = "3.0.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "arminbiere"; 11 11 repo = "kissat"; 12 - # https://github.com/arminbiere/kissat/issues/18 13 - rev = "abfa45fb782fa3b7c6e2eb6b939febe74d7270b7"; 14 - sha256 = "06pbmkjxgf2idhsrd1yzvbxr2wf8l06pjb38bzbygm6n9ami89b8"; 12 + rev = "rel-${version}"; 13 + sha256 = "sha256-C1lvkyYgFNhV7jGVLlrpJ5zZ8SFHg8g+iW1lDczhpBM="; 15 14 }; 16 15 17 16 outputs = [ "out" "dev" "lib" ];
+8 -6
pkgs/applications/video/xplayer/plparser.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchFromGitHub 4 - , intltool 4 + , meson 5 + , ninja 5 6 , gobject-introspection 6 - , gmime 7 + , gmime3 7 8 , libxml2 8 9 , libsoup 9 10 , pkg-config ··· 11 12 12 13 stdenv.mkDerivation rec { 13 14 pname = "xplayer-plparser"; 14 - version = "1.0.2"; 15 + version = "1.0.3"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "linuxmint"; 18 19 repo = pname; 19 20 rev = version; 20 - sha256 = "1i7sld8am6b1wwbpfb18v7qp17vk2a5p8xcfds50yznr30lddsb2"; 21 + sha256 = "6GMKsIpyQdiyHPxrjWHAHvuCouJxrAcYPIo9u6TLOA4="; 21 22 }; 22 23 23 24 nativeBuildInputs = [ 24 - intltool 25 + meson 26 + ninja 25 27 pkg-config 26 28 gobject-introspection 27 29 ]; 28 30 29 31 buildInputs = [ 30 - gmime 32 + gmime3 31 33 libxml2 32 34 libsoup 33 35 ];
+26 -16
pkgs/data/fonts/iosevka/comfy.nix
··· 1 - { callPackage, lib, fetchFromGitHub }: 1 + { callPackage, lib, fetchFromSourcehut }: 2 2 3 3 let 4 - sets = [ "comfy" "comfy-fixed" "comfy-duo" "comfy-wide" "comfy-wide-fixed" ]; 5 - version = "0.3.1"; 6 - src = fetchFromGitHub { 7 - owner = "protesilaos"; 4 + sets = [ 5 + "comfy" 6 + "comfy-fixed" 7 + "comfy-duo" 8 + "comfy-wide" 9 + "comfy-wide-fixed" 10 + "comfy-motion" 11 + "comfy-motion-duo" 12 + ]; 13 + version = "0.4.0"; 14 + src = fetchFromSourcehut { 15 + owner = "~protesilaos"; 8 16 repo = "iosevka-comfy"; 9 17 rev = version; 10 - sha256 = "sha256-SMy3Kqve65ZU13lf1vZQR61mH7gcl1DvIZt3yD6tIf4="; 18 + sha256 = "sha256-d3C5HNiZCd0xva6zvMP9NmvmeU4uXuaO04pbgIepwfw="; 11 19 }; 12 20 privateBuildPlan = src.outPath + "/private-build-plans.toml"; 13 21 overrideAttrs = (attrs: { 14 22 inherit version; 15 23 16 24 meta = with lib; { 17 - homepage = "https://github.com/protesilaos/iosevka-comfy"; 25 + inherit (src.meta) homepage; 18 26 description = '' 19 - Custom build of Iosevka with a rounded style and open shapes, 20 - adjusted metrics, and overrides for almost all individual glyphs 21 - in both roman (upright) and italic (slanted) variants. 22 - ''; 27 + Custom build of Iosevka with a rounded style and open shapes, 28 + adjusted metrics, and overrides for almost all individual glyphs 29 + in both roman (upright) and italic (slanted) variants. 30 + ''; 23 31 license = licenses.ofl; 24 32 platforms = attrs.meta.platforms; 25 33 maintainers = [ maintainers.DamienCassou ]; 26 34 }; 27 35 }); 28 - makeIosevkaFont = set: (callPackage ./. { 29 - inherit set privateBuildPlan; 30 - }).overrideAttrs overrideAttrs; 31 - in 32 - builtins.listToAttrs (builtins.map (set: {name=set; value=makeIosevkaFont set;}) sets) 36 + makeIosevkaFont = set: 37 + (callPackage ./. { inherit set privateBuildPlan; }).overrideAttrs 38 + overrideAttrs; 39 + in builtins.listToAttrs (builtins.map (set: { 40 + name = set; 41 + value = makeIosevkaFont set; 42 + }) sets)
+2 -2
pkgs/development/compilers/p4c/default.nix
··· 27 27 in 28 28 stdenv.mkDerivation rec { 29 29 pname = "p4c"; 30 - version = "1.2.3.0"; 30 + version = "1.2.3.1"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "p4lang"; 34 34 repo = "p4c"; 35 35 rev = "v${version}"; 36 - sha256 = "sha256-LwRfLvnn1JAvSXPTkVcIB4PbPrrVweIv72Xk5g015ck="; 36 + sha256 = "sha256-mOswMUvr7LGN4GmczPUqNMUjs0c1Pc8SiC5k2Ou52Iw="; 37 37 fetchSubmodules = true; 38 38 }; 39 39
+2 -2
pkgs/development/libraries/libre/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, zlib, openssl }: 2 2 stdenv.mkDerivation rec { 3 - version = "2.6.1"; 3 + version = "2.7.0"; 4 4 pname = "libre"; 5 5 src = fetchFromGitHub { 6 6 owner = "baresip"; 7 7 repo = "re"; 8 8 rev = "v${version}"; 9 - sha256 = "sha256-S+RvD7sXn8yjGAHv1OqiJJMAA45r8N1Rhz89d8yGv1Q="; 9 + sha256 = "sha256-YGd0ft61L5ZmcWY0+wON2YgX1fKAcQlIGHNaD7I7exg="; 10 10 }; 11 11 buildInputs = [ zlib openssl ]; 12 12 makeFlags = [ "USE_ZLIB=1" "USE_OPENSSL=1" "PREFIX=$(out)" ]
+2 -2
pkgs/development/libraries/librem/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, zlib, openssl, libre }: 2 2 stdenv.mkDerivation rec { 3 - version = "2.6.0"; 3 + version = "2.7.0"; 4 4 pname = "librem"; 5 5 src = fetchFromGitHub { 6 6 owner = "baresip"; 7 7 repo = "rem"; 8 8 rev = "v${version}"; 9 - sha256 = "sha256-Rn3KKYW5OBInZYaDhwYVyPvL3UiuRG8CyHtPvW1S0Zo="; 9 + sha256 = "sha256-t+klxuDiP7KAbN3ZK8eTWHTzNNpNTrlFINktjPDfeoo="; 10 10 }; 11 11 buildInputs = [ zlib openssl libre ]; 12 12 makeFlags = [
+12 -27
pkgs/development/ocaml-modules/notty/default.nix
··· 1 - { stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, ocb-stubblr 2 - , result, uucp, uuseg, uutf 3 - , lwt ? null }: 4 - 5 - with lib; 1 + { lib, buildDunePackage, fetchurl, cppo 2 + , uutf 3 + , lwt 4 + }: 6 5 7 - if versionOlder ocaml.version "4.05" 8 - || versionAtLeast ocaml.version "4.14" 9 - then throw "notty is not available for OCaml ${ocaml.version}" 10 - else 6 + buildDunePackage rec { 7 + version = "0.2.3"; 8 + pname = "notty"; 11 9 12 - let withLwt = lwt != null; in 13 - 14 - stdenv.mkDerivation rec { 15 - version = "0.2.2"; 16 - pname = "ocaml${ocaml.version}-notty"; 10 + minimalOCamlVersion = "4.08"; 17 11 18 12 src = fetchurl { 19 13 url = "https://github.com/pqwy/notty/releases/download/v${version}/notty-${version}.tbz"; 20 - sha256 = "1y3hx8zjri3x50nyiqal5gak1sw54gw3xssrqbj7srinvkdmrz1q"; 14 + sha256 = "sha256-dGWfsUBz20Q4mJiRqyTyS++Bqkl9rBbZpn+aHJwgCCQ="; 21 15 }; 22 16 23 - nativeBuildInputs = [ ocaml findlib ocamlbuild ]; 24 - buildInputs = [ ocb-stubblr topkg ocamlbuild ]; 25 - propagatedBuildInputs = [ result uucp uuseg uutf ] ++ 26 - optional withLwt lwt; 17 + nativeBuildInputs = [ cppo ]; 27 18 28 - strictDeps = true; 19 + propagatedBuildInputs = [ lwt uutf ]; 29 20 30 - buildPhase = topkg.buildPhase 31 - + " --with-lwt ${boolToString withLwt}"; 32 - 33 - inherit (topkg) installPhase; 34 - 35 - meta = { 21 + meta = with lib; { 36 22 homepage = "https://github.com/pqwy/notty"; 37 - inherit (ocaml.meta) platforms; 38 23 description = "Declarative terminal graphics for OCaml"; 39 24 license = licenses.isc; 40 25 maintainers = with maintainers; [ sternenseemann ];
+2 -2
pkgs/development/php-packages/pdepend/default.nix
··· 2 2 3 3 let 4 4 pname = "pdepend"; 5 - version = "2.11.0"; 5 + version = "2.11.1"; 6 6 in 7 7 stdenv.mkDerivation { 8 8 inherit pname version; 9 9 10 10 src = fetchurl { 11 11 url = "https://github.com/pdepend/pdepend/releases/download/${version}/pdepend.phar"; 12 - sha256 = "sha256-QhNO/yI2oJNhkwSn32gdId5IY0VR69eF/b/yMklhPKs="; 12 + sha256 = "sha256-3jZAhOw9wfR9Fl6Mlj8o0uinjUZO46CAHRkZxrQP5rU="; 13 13 }; 14 14 15 15 dontUnpack = true;
+2 -2
pkgs/development/python-modules/aws-lambda-builders/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "aws-lambda-builders"; 15 - version = "1.18.0"; 15 + version = "1.19.0"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "awslabs"; 22 22 repo = "aws-lambda-builders"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-yAqGVZnnragi3+jaAGnkYNH/XtpH3bojXHmPCrANgJU="; 24 + hash = "sha256-mWb/24/9O8HvzblgudbVaLDR1igTkYpWZn53VqN2vbg="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/idasen/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "idasen"; 15 - version = "0.9.0"; 15 + version = "0.9.1"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "newAM"; 22 22 repo = "idasen"; 23 23 rev = "v${version}"; 24 - hash = "sha256-7Tg+/3BXRmzG39jIC281MKxyJyf9e9/1uOqUji08B3U="; 24 + hash = "sha256-QMHxQLHp2p3/kGDd995CjBvQqn2BVM6d02NCzrjExr0="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/tools/pipenv/default.nix
··· 19 19 20 20 in buildPythonApplication rec { 21 21 pname = "pipenv"; 22 - version = "2022.8.30"; 22 + version = "2022.9.2"; 23 23 24 24 src = fetchPypi { 25 25 inherit pname version; 26 - sha256 = "sha256-QUda28Wt4XGEZDvP36mWMuf2FROhfsccSDIDG4hiy6s="; 26 + sha256 = "sha256-EMCIPt0f2Aqin9Yz34JoPCSVjol3i/UMRnNhC/ttv7A="; 27 27 }; 28 28 29 29 LC_ALL = "en_US.UTF-8";
+2 -2
pkgs/development/tools/wasmedge/default.nix
··· 9 9 10 10 llvmPackages.stdenv.mkDerivation rec { 11 11 pname = "wasmedge"; 12 - version = "0.10.1"; 12 + version = "0.11.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "WasmEdge"; 16 16 repo = "WasmEdge"; 17 17 rev = version; 18 - sha256 = "sha256-SJi8CV0sa+g+Ngvdw8+SxV3kHqoiKBhYUwDLZM4+jX0="; 18 + sha256 = "sha256-4w9+3hp1GVLx2dOTDXlUOH6FgK1jvkt12wXs4/S9UlI="; 19 19 }; 20 20 21 21 buildInputs = [
+50 -35
pkgs/games/exult/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, SDL2, libogg, libvorbis, zlib, unzip }: 2 - 3 - let 4 - 5 - # Digital recordings of the music on an original Roland MT-32. So 6 - # we don't need actual MIDI playback capability. 7 - audio = fetchurl { 8 - url = "mirror://sourceforge/exult/exult_audio.zip"; 9 - sha256 = "0s5wvgy9qja06v38g0qwzpaw76ff96vzd6gb1i3lb9k4hvx0xqbj"; 10 - }; 11 - 12 - in 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , SDL2 5 + , autoconf 6 + , automake 7 + , libogg 8 + , libtool 9 + , libvorbis 10 + , pkg-config 11 + , zlib 12 + , enableTools ? false 13 + }: 13 14 14 15 stdenv.mkDerivation rec { 15 16 pname = "exult"; 16 - version = "1.6"; 17 + version = "1.8"; 17 18 18 - src = fetchurl { 19 - url = "mirror://sourceforge/exult/exult-${version}.tar.gz"; 20 - sha256 = "1dm27qkxj30567zb70q4acddsizn0xyi3z87hg7lysxdkyv49s3s"; 19 + src = fetchFromGitHub { 20 + owner = "exult"; 21 + repo = "exult"; 22 + rev = "v${version}"; 23 + hash = "sha256-Y7FpgiGuqR4ZG/PNSfLcNcRWeeC7GebUTighXsCfy+E="; 21 24 }; 22 25 23 - configureFlags = [ "--disable-tools" ]; 26 + nativeBuildInputs = [ 27 + autoconf 28 + automake 29 + libtool 30 + pkg-config 31 + ]; 24 32 25 - nativeBuildInputs = [ pkg-config unzip ]; 26 - buildInputs = [ SDL2 libogg libvorbis zlib ]; 33 + buildInputs = [ 34 + SDL2 35 + libogg 36 + libvorbis 37 + zlib 38 + ]; 27 39 28 - enableParallelBuilding = true; 40 + preConfigure = '' 41 + ./autogen.sh 42 + ''; 29 43 30 - NIX_LDFLAGS = "-lX11"; 31 - 32 - postInstall = 33 - '' 34 - mkdir -p $out/share/exult/music 35 - unzip -o -d $out/share/exult ${audio} 36 - chmod 644 $out/share/exult/*.flx 37 - ''; # */ 44 + configureFlags = lib.optional (!enableTools) "--disable-tools"; 38 45 39 - meta = { 40 - homepage = "http://exult.sourceforge.net/"; 41 - description = "A reimplementation of the Ultima VII game engine"; 42 - maintainers = [ lib.maintainers.eelco ]; 43 - platforms = lib.platforms.unix; 44 - hydraPlatforms = lib.platforms.linux; # darwin times out 45 - license = lib.licenses.gpl2Plus; 46 + meta = with lib; { 47 + description = "Exult is a project to recreate Ultima VII for modern operating systems"; 48 + longDescription = '' 49 + Ultima VII, an RPG from the early 1990's, still has a huge following. But, 50 + being a DOS game with a very nonstandard memory manager, it is difficult 51 + to run it on the latest computers. Exult is a project that created an 52 + Ultima VII game engine that runs on modern operating systems, capable of 53 + using the data and graphics files that come with the game. Exult aims to 54 + let those people who own Ultima VII play the game on modern hardware, in 55 + as close to (or perhaps even surpassing) its original splendor as is 56 + possible. 57 + ''; 58 + homepage = "http://exult.info"; 59 + license = licenses.gpl2Plus; 60 + maintainers = with maintainers; [ azahi eelco ]; 46 61 }; 47 62 }
+2 -2
pkgs/servers/misc/gobgpd/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gobgpd"; 5 - version = "3.5.0"; 5 + version = "3.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "osrg"; 9 9 repo = "gobgp"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-iFtoxEjb+Wk8E2oj1SjSRNwxg20//0LgFtjMq9qJOEQ="; 11 + sha256 = "sha256-NJK8MW/vUZwdGIEipL/zyh24o/pu7fwQMeDxyoFdtP4="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-FxfER3THsA7NRuQKEdWQxgUN0SiNI00hGUMVD+3BaG4=";
+2 -2
pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "check_ssl_cert"; 13 - version = "2.40.0"; 13 + version = "2.41.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "matteocorti"; 17 17 repo = "check_ssl_cert"; 18 18 rev = "v${version}"; 19 - hash = "sha256-L4ofFpHaC2yygCnzX9N+1BForY0R/FZ1qYScurtm33Y="; 19 + hash = "sha256-dJWxOUw+G3U19HSeL9rebWGdilQnNC9x89e99vFbp0s="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/servers/nosql/victoriametrics/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "VictoriaMetrics"; 5 - version = "1.80.0"; 5 + version = "1.81.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-SIwl8Mgbkk/z3xZ6wCmce7D2T2A2+dcuQ607BOsfrkQ="; 11 + sha256 = "sha256-O13dNhj+0SVz/6RNmFIJKSXqd38zdFc1CJ09q3jiKfg="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+2 -2
pkgs/servers/zigbee2mqtt/default.nix
··· 3 3 package = (import ./node.nix { inherit pkgs; inherit (stdenv.hostPlatform) system; }).package; 4 4 in 5 5 package.override rec { 6 - version = "1.27.0"; 6 + version = "1.27.2"; 7 7 reconstructLock = true; 8 8 9 9 src = pkgs.fetchFromGitHub { 10 10 owner = "Koenkk"; 11 11 repo = "zigbee2mqtt"; 12 12 rev = version; 13 - sha256 = "8qkoVXHXlvVK5GROVNhTkN52g9RQ/CuAMtDLq0Fx3T0="; 13 + sha256 = "FwW3hnZsOitdFjhiZFAyM5aBH0/LO05SG0TyavqNiHw="; 14 14 }; 15 15 16 16 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
+268 -197
pkgs/servers/zigbee2mqtt/node-packages.nix
··· 31 31 sha512 = "HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ=="; 32 32 }; 33 33 }; 34 - "@babel/core-7.18.9" = { 34 + "@babel/core-7.18.10" = { 35 35 name = "_at_babel_slash_core"; 36 36 packageName = "@babel/core"; 37 - version = "7.18.9"; 37 + version = "7.18.10"; 38 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz"; 40 - sha512 = "1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g=="; 39 + url = "https://registry.npmjs.org/@babel/core/-/core-7.18.10.tgz"; 40 + sha512 = "JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw=="; 41 41 }; 42 42 }; 43 - "@babel/generator-7.18.9" = { 43 + "@babel/generator-7.18.12" = { 44 44 name = "_at_babel_slash_generator"; 45 45 packageName = "@babel/generator"; 46 - version = "7.18.9"; 46 + version = "7.18.12"; 47 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz"; 49 - sha512 = "wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug=="; 48 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.18.12.tgz"; 49 + sha512 = "dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg=="; 50 50 }; 51 51 }; 52 52 "@babel/helper-annotate-as-pure-7.18.6" = { ··· 94 94 sha512 = "7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A=="; 95 95 }; 96 96 }; 97 - "@babel/helper-define-polyfill-provider-0.3.1" = { 97 + "@babel/helper-define-polyfill-provider-0.3.2" = { 98 98 name = "_at_babel_slash_helper-define-polyfill-provider"; 99 99 packageName = "@babel/helper-define-polyfill-provider"; 100 - version = "0.3.1"; 100 + version = "0.3.2"; 101 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz"; 103 - sha512 = "J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA=="; 102 + url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz"; 103 + sha512 = "r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg=="; 104 104 }; 105 105 }; 106 106 "@babel/helper-environment-visitor-7.18.9" = { ··· 184 184 sha512 = "aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w=="; 185 185 }; 186 186 }; 187 - "@babel/helper-remap-async-to-generator-7.18.6" = { 187 + "@babel/helper-remap-async-to-generator-7.18.9" = { 188 188 name = "_at_babel_slash_helper-remap-async-to-generator"; 189 189 packageName = "@babel/helper-remap-async-to-generator"; 190 - version = "7.18.6"; 190 + version = "7.18.9"; 191 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz"; 193 - sha512 = "z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ=="; 192 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz"; 193 + sha512 = "dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA=="; 194 194 }; 195 195 }; 196 196 "@babel/helper-replace-supers-7.18.9" = { ··· 229 229 sha512 = "bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="; 230 230 }; 231 231 }; 232 + "@babel/helper-string-parser-7.18.10" = { 233 + name = "_at_babel_slash_helper-string-parser"; 234 + packageName = "@babel/helper-string-parser"; 235 + version = "7.18.10"; 236 + src = fetchurl { 237 + url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz"; 238 + sha512 = "XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="; 239 + }; 240 + }; 232 241 "@babel/helper-validator-identifier-7.18.6" = { 233 242 name = "_at_babel_slash_helper-validator-identifier"; 234 243 packageName = "@babel/helper-validator-identifier"; ··· 247 256 sha512 = "XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="; 248 257 }; 249 258 }; 250 - "@babel/helper-wrap-function-7.18.6" = { 259 + "@babel/helper-wrap-function-7.18.11" = { 251 260 name = "_at_babel_slash_helper-wrap-function"; 252 261 packageName = "@babel/helper-wrap-function"; 253 - version = "7.18.6"; 262 + version = "7.18.11"; 254 263 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz"; 256 - sha512 = "I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw=="; 264 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.11.tgz"; 265 + sha512 = "oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w=="; 257 266 }; 258 267 }; 259 268 "@babel/helpers-7.18.9" = { ··· 274 283 sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 275 284 }; 276 285 }; 277 - "@babel/parser-7.18.9" = { 286 + "@babel/parser-7.18.11" = { 278 287 name = "_at_babel_slash_parser"; 279 288 packageName = "@babel/parser"; 280 - version = "7.18.9"; 289 + version = "7.18.11"; 281 290 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz"; 283 - sha512 = "9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg=="; 291 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.11.tgz"; 292 + sha512 = "9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ=="; 284 293 }; 285 294 }; 286 295 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" = { ··· 301 310 sha512 = "AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg=="; 302 311 }; 303 312 }; 304 - "@babel/plugin-proposal-async-generator-functions-7.18.6" = { 313 + "@babel/plugin-proposal-async-generator-functions-7.18.10" = { 305 314 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 306 315 packageName = "@babel/plugin-proposal-async-generator-functions"; 307 - version = "7.18.6"; 316 + version = "7.18.10"; 308 317 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.6.tgz"; 310 - sha512 = "WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w=="; 318 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.10.tgz"; 319 + sha512 = "1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew=="; 311 320 }; 312 321 }; 313 322 "@babel/plugin-proposal-class-properties-7.18.6" = { ··· 328 337 sha512 = "+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw=="; 329 338 }; 330 339 }; 331 - "@babel/plugin-proposal-decorators-7.18.9" = { 340 + "@babel/plugin-proposal-decorators-7.18.10" = { 332 341 name = "_at_babel_slash_plugin-proposal-decorators"; 333 342 packageName = "@babel/plugin-proposal-decorators"; 334 - version = "7.18.9"; 343 + version = "7.18.10"; 335 344 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.9.tgz"; 337 - sha512 = "KD7zDNaD14CRpjQjVbV4EnH9lsKYlcpUrhZH37ei2IY+AlXrfAPy5pTmRUE4X6X1k8EsKXPraykxeaogqQvSGA=="; 345 + url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.10.tgz"; 346 + sha512 = "wdGTwWF5QtpTY/gbBtQLAiCnoxfD4qMbN87NYZle1dOZ9Os8Y6zXcKrIaOU8W+TIvFUWVGG9tUgNww3CjXRVVw=="; 338 347 }; 339 348 }; 340 349 "@babel/plugin-proposal-dynamic-import-7.18.6" = { ··· 895 904 sha512 = "ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w=="; 896 905 }; 897 906 }; 898 - "@babel/plugin-transform-unicode-escapes-7.18.6" = { 907 + "@babel/plugin-transform-unicode-escapes-7.18.10" = { 899 908 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 900 909 packageName = "@babel/plugin-transform-unicode-escapes"; 901 - version = "7.18.6"; 910 + version = "7.18.10"; 902 911 src = fetchurl { 903 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.6.tgz"; 904 - sha512 = "XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw=="; 912 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz"; 913 + sha512 = "kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ=="; 905 914 }; 906 915 }; 907 916 "@babel/plugin-transform-unicode-regex-7.18.6" = { ··· 913 922 sha512 = "gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA=="; 914 923 }; 915 924 }; 916 - "@babel/preset-env-7.18.9" = { 925 + "@babel/preset-env-7.18.10" = { 917 926 name = "_at_babel_slash_preset-env"; 918 927 packageName = "@babel/preset-env"; 919 - version = "7.18.9"; 928 + version = "7.18.10"; 920 929 src = fetchurl { 921 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.9.tgz"; 922 - sha512 = "75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg=="; 930 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.10.tgz"; 931 + sha512 = "wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA=="; 923 932 }; 924 933 }; 925 934 "@babel/preset-modules-0.1.5" = { ··· 949 958 sha512 = "38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug=="; 950 959 }; 951 960 }; 952 - "@babel/template-7.18.6" = { 961 + "@babel/template-7.18.10" = { 953 962 name = "_at_babel_slash_template"; 954 963 packageName = "@babel/template"; 955 - version = "7.18.6"; 964 + version = "7.18.10"; 956 965 src = fetchurl { 957 - url = "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz"; 958 - sha512 = "JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw=="; 966 + url = "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz"; 967 + sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="; 959 968 }; 960 969 }; 961 - "@babel/traverse-7.18.9" = { 970 + "@babel/traverse-7.18.11" = { 962 971 name = "_at_babel_slash_traverse"; 963 972 packageName = "@babel/traverse"; 964 - version = "7.18.9"; 973 + version = "7.18.11"; 965 974 src = fetchurl { 966 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.9.tgz"; 967 - sha512 = "LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg=="; 975 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.11.tgz"; 976 + sha512 = "TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ=="; 968 977 }; 969 978 }; 970 - "@babel/types-7.18.9" = { 979 + "@babel/types-7.18.10" = { 971 980 name = "_at_babel_slash_types"; 972 981 packageName = "@babel/types"; 973 - version = "7.18.9"; 982 + version = "7.18.10"; 974 983 src = fetchurl { 975 - url = "https://registry.npmjs.org/@babel/types/-/types-7.18.9.tgz"; 976 - sha512 = "WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg=="; 984 + url = "https://registry.npmjs.org/@babel/types/-/types-7.18.10.tgz"; 985 + sha512 = "MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ=="; 977 986 }; 978 987 }; 979 988 "@bcoe/v8-coverage-0.2.3" = { ··· 1012 1021 sha512 = "UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw=="; 1013 1022 }; 1014 1023 }; 1015 - "@humanwhocodes/config-array-0.9.5" = { 1024 + "@humanwhocodes/config-array-0.10.4" = { 1016 1025 name = "_at_humanwhocodes_slash_config-array"; 1017 1026 packageName = "@humanwhocodes/config-array"; 1018 - version = "0.9.5"; 1027 + version = "0.10.4"; 1028 + src = fetchurl { 1029 + url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz"; 1030 + sha512 = "mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw=="; 1031 + }; 1032 + }; 1033 + "@humanwhocodes/gitignore-to-minimatch-1.0.2" = { 1034 + name = "_at_humanwhocodes_slash_gitignore-to-minimatch"; 1035 + packageName = "@humanwhocodes/gitignore-to-minimatch"; 1036 + version = "1.0.2"; 1019 1037 src = fetchurl { 1020 - url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz"; 1021 - sha512 = "ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw=="; 1038 + url = "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz"; 1039 + sha512 = "rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA=="; 1022 1040 }; 1023 1041 }; 1024 1042 "@humanwhocodes/object-schema-1.2.1" = { ··· 1544 1562 sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; 1545 1563 }; 1546 1564 }; 1547 - "@types/jest-28.1.6" = { 1565 + "@types/jest-28.1.7" = { 1548 1566 name = "_at_types_slash_jest"; 1549 1567 packageName = "@types/jest"; 1550 - version = "28.1.6"; 1568 + version = "28.1.7"; 1551 1569 src = fetchurl { 1552 - url = "https://registry.npmjs.org/@types/jest/-/jest-28.1.6.tgz"; 1553 - sha512 = "0RbGAFMfcBJKOmqRazM8L98uokwuwD5F8rHrv/ZMbrZBwVOWZUyPG6VFNscjYr/vjM3Vu4fRrCPbOs42AfemaQ=="; 1570 + url = "https://registry.npmjs.org/@types/jest/-/jest-28.1.7.tgz"; 1571 + sha512 = "acDN4VHD40V24tgu0iC44jchXavRNVFXQ/E6Z5XNsswgoSO/4NgsXoEYmPUGookKldlZQyIpmrEXsHI9cA3ZTA=="; 1554 1572 }; 1555 1573 }; 1556 1574 "@types/js-yaml-4.0.5" = { ··· 1697 1715 sha512 = "iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="; 1698 1716 }; 1699 1717 }; 1700 - "@typescript-eslint/eslint-plugin-5.31.0" = { 1718 + "@typescript-eslint/eslint-plugin-5.33.1" = { 1701 1719 name = "_at_typescript-eslint_slash_eslint-plugin"; 1702 1720 packageName = "@typescript-eslint/eslint-plugin"; 1703 - version = "5.31.0"; 1721 + version = "5.33.1"; 1704 1722 src = fetchurl { 1705 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.31.0.tgz"; 1706 - sha512 = "VKW4JPHzG5yhYQrQ1AzXgVgX8ZAJEvCz0QI6mLRX4tf7rnFfh5D8SKm0Pq6w5PyNfAWJk6sv313+nEt3ohWMBQ=="; 1723 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.33.1.tgz"; 1724 + sha512 = "S1iZIxrTvKkU3+m63YUOxYPKaP+yWDQrdhxTglVDVEVBf+aCSw85+BmJnyUaQQsk5TXFG/LpBu9fa+LrAQ91fQ=="; 1707 1725 }; 1708 1726 }; 1709 - "@typescript-eslint/parser-5.31.0" = { 1727 + "@typescript-eslint/parser-5.33.1" = { 1710 1728 name = "_at_typescript-eslint_slash_parser"; 1711 1729 packageName = "@typescript-eslint/parser"; 1712 - version = "5.31.0"; 1730 + version = "5.33.1"; 1713 1731 src = fetchurl { 1714 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.31.0.tgz"; 1715 - sha512 = "UStjQiZ9OFTFReTrN+iGrC6O/ko9LVDhreEK5S3edmXgR396JGq7CoX2TWIptqt/ESzU2iRKXAHfSF2WJFcWHw=="; 1732 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.33.1.tgz"; 1733 + sha512 = "IgLLtW7FOzoDlmaMoXdxG8HOCByTBXrB1V2ZQYSEV1ggMmJfAkMWTwUjjzagS6OkfpySyhKFkBw7A9jYmcHpZA=="; 1716 1734 }; 1717 1735 }; 1718 - "@typescript-eslint/scope-manager-5.31.0" = { 1736 + "@typescript-eslint/scope-manager-5.33.1" = { 1719 1737 name = "_at_typescript-eslint_slash_scope-manager"; 1720 1738 packageName = "@typescript-eslint/scope-manager"; 1721 - version = "5.31.0"; 1739 + version = "5.33.1"; 1722 1740 src = fetchurl { 1723 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.31.0.tgz"; 1724 - sha512 = "8jfEzBYDBG88rcXFxajdVavGxb5/XKXyvWgvD8Qix3EEJLCFIdVloJw+r9ww0wbyNLOTYyBsR+4ALNGdlalLLg=="; 1741 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.33.1.tgz"; 1742 + sha512 = "8ibcZSqy4c5m69QpzJn8XQq9NnqAToC8OdH/W6IXPXv83vRyEDPYLdjAlUx8h/rbusq6MkW4YdQzURGOqsn3CA=="; 1725 1743 }; 1726 1744 }; 1727 - "@typescript-eslint/type-utils-5.31.0" = { 1745 + "@typescript-eslint/type-utils-5.33.1" = { 1728 1746 name = "_at_typescript-eslint_slash_type-utils"; 1729 1747 packageName = "@typescript-eslint/type-utils"; 1730 - version = "5.31.0"; 1748 + version = "5.33.1"; 1731 1749 src = fetchurl { 1732 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.31.0.tgz"; 1733 - sha512 = "7ZYqFbvEvYXFn9ax02GsPcEOmuWNg+14HIf4q+oUuLnMbpJ6eHAivCg7tZMVwzrIuzX3QCeAOqKoyMZCv5xe+w=="; 1750 + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.33.1.tgz"; 1751 + sha512 = "X3pGsJsD8OiqhNa5fim41YtlnyiWMF/eKsEZGsHID2HcDqeSC5yr/uLOeph8rNF2/utwuI0IQoAK3fpoxcLl2g=="; 1734 1752 }; 1735 1753 }; 1736 - "@typescript-eslint/types-5.31.0" = { 1754 + "@typescript-eslint/types-5.33.1" = { 1737 1755 name = "_at_typescript-eslint_slash_types"; 1738 1756 packageName = "@typescript-eslint/types"; 1739 - version = "5.31.0"; 1757 + version = "5.33.1"; 1740 1758 src = fetchurl { 1741 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.31.0.tgz"; 1742 - sha512 = "/f/rMaEseux+I4wmR6mfpM2wvtNZb1p9hAV77hWfuKc3pmaANp5dLAZSiE3/8oXTYTt3uV9KW5yZKJsMievp6g=="; 1759 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.33.1.tgz"; 1760 + sha512 = "7K6MoQPQh6WVEkMrMW5QOA5FO+BOwzHSNd0j3+BlBwd6vtzfZceJ8xJ7Um2XDi/O3umS8/qDX6jdy2i7CijkwQ=="; 1743 1761 }; 1744 1762 }; 1745 - "@typescript-eslint/typescript-estree-5.31.0" = { 1763 + "@typescript-eslint/typescript-estree-5.33.1" = { 1746 1764 name = "_at_typescript-eslint_slash_typescript-estree"; 1747 1765 packageName = "@typescript-eslint/typescript-estree"; 1748 - version = "5.31.0"; 1766 + version = "5.33.1"; 1749 1767 src = fetchurl { 1750 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.31.0.tgz"; 1751 - sha512 = "3S625TMcARX71wBc2qubHaoUwMEn+l9TCsaIzYI/ET31Xm2c9YQ+zhGgpydjorwQO9pLfR/6peTzS/0G3J/hDw=="; 1768 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.33.1.tgz"; 1769 + sha512 = "JOAzJ4pJ+tHzA2pgsWQi4804XisPHOtbvwUyqsuuq8+y5B5GMZs7lI1xDWs6V2d7gE/Ez5bTGojSK12+IIPtXA=="; 1752 1770 }; 1753 1771 }; 1754 - "@typescript-eslint/utils-5.31.0" = { 1772 + "@typescript-eslint/utils-5.33.1" = { 1755 1773 name = "_at_typescript-eslint_slash_utils"; 1756 1774 packageName = "@typescript-eslint/utils"; 1757 - version = "5.31.0"; 1775 + version = "5.33.1"; 1758 1776 src = fetchurl { 1759 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.31.0.tgz"; 1760 - sha512 = "kcVPdQS6VIpVTQ7QnGNKMFtdJdvnStkqS5LeALr4rcwx11G6OWb2HB17NMPnlRHvaZP38hL9iK8DdE9Fne7NYg=="; 1777 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.33.1.tgz"; 1778 + sha512 = "uphZjkMaZ4fE8CR4dU7BquOV6u0doeQAr8n6cQenl/poMaIyJtBu8eys5uk6u5HiDH01Mj5lzbJ5SfeDz7oqMQ=="; 1761 1779 }; 1762 1780 }; 1763 - "@typescript-eslint/visitor-keys-5.31.0" = { 1781 + "@typescript-eslint/visitor-keys-5.33.1" = { 1764 1782 name = "_at_typescript-eslint_slash_visitor-keys"; 1765 1783 packageName = "@typescript-eslint/visitor-keys"; 1766 - version = "5.31.0"; 1784 + version = "5.33.1"; 1767 1785 src = fetchurl { 1768 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.31.0.tgz"; 1769 - sha512 = "ZK0jVxSjS4gnPirpVjXHz7mgdOsZUHzNYSfTw2yPa3agfbt9YfqaBiBZFSSxeBWnpWkzCxTfUpnzA3Vily/CSg=="; 1786 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.33.1.tgz"; 1787 + sha512 = "nwIxOK8Z2MPWltLKMLOEZwmfBZReqUdbEoHQXeCpa+sRVARe5twpJGHCB4dk9903Yaf0nMAlGbQfaAH92F60eg=="; 1770 1788 }; 1771 1789 }; 1772 - "acorn-8.7.1" = { 1790 + "acorn-8.8.0" = { 1773 1791 name = "acorn"; 1774 1792 packageName = "acorn"; 1775 - version = "8.7.1"; 1793 + version = "8.8.0"; 1776 1794 src = fetchurl { 1777 - url = "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz"; 1778 - sha512 = "Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A=="; 1795 + url = "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz"; 1796 + sha512 = "QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w=="; 1779 1797 }; 1780 1798 }; 1781 1799 "acorn-jsx-5.3.2" = { ··· 1994 2012 sha512 = "Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q=="; 1995 2013 }; 1996 2014 }; 1997 - "babel-plugin-polyfill-corejs2-0.3.1" = { 2015 + "babel-plugin-polyfill-corejs2-0.3.2" = { 1998 2016 name = "babel-plugin-polyfill-corejs2"; 1999 2017 packageName = "babel-plugin-polyfill-corejs2"; 2000 - version = "0.3.1"; 2018 + version = "0.3.2"; 2001 2019 src = fetchurl { 2002 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz"; 2003 - sha512 = "v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w=="; 2020 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.2.tgz"; 2021 + sha512 = "LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q=="; 2004 2022 }; 2005 2023 }; 2006 - "babel-plugin-polyfill-corejs3-0.5.2" = { 2024 + "babel-plugin-polyfill-corejs3-0.5.3" = { 2007 2025 name = "babel-plugin-polyfill-corejs3"; 2008 2026 packageName = "babel-plugin-polyfill-corejs3"; 2009 - version = "0.5.2"; 2027 + version = "0.5.3"; 2010 2028 src = fetchurl { 2011 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz"; 2012 - sha512 = "G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ=="; 2029 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz"; 2030 + sha512 = "zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw=="; 2013 2031 }; 2014 2032 }; 2015 - "babel-plugin-polyfill-regenerator-0.3.1" = { 2033 + "babel-plugin-polyfill-regenerator-0.4.0" = { 2016 2034 name = "babel-plugin-polyfill-regenerator"; 2017 2035 packageName = "babel-plugin-polyfill-regenerator"; 2018 - version = "0.3.1"; 2036 + version = "0.4.0"; 2019 2037 src = fetchurl { 2020 - url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz"; 2021 - sha512 = "Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A=="; 2038 + url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.0.tgz"; 2039 + sha512 = "RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw=="; 2022 2040 }; 2023 2041 }; 2024 2042 "babel-preset-current-node-syntax-1.0.1" = { ··· 2102 2120 sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; 2103 2121 }; 2104 2122 }; 2105 - "browserslist-4.20.3" = { 2123 + "browserslist-4.21.3" = { 2106 2124 name = "browserslist"; 2107 2125 packageName = "browserslist"; 2108 - version = "4.20.3"; 2126 + version = "4.21.3"; 2109 2127 src = fetchurl { 2110 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.20.3.tgz"; 2111 - sha512 = "NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg=="; 2128 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz"; 2129 + sha512 = "898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ=="; 2112 2130 }; 2113 2131 }; 2114 2132 "bser-2.1.1" = { ··· 2183 2201 sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="; 2184 2202 }; 2185 2203 }; 2186 - "caniuse-lite-1.0.30001344" = { 2204 + "caniuse-lite-1.0.30001374" = { 2187 2205 name = "caniuse-lite"; 2188 2206 packageName = "caniuse-lite"; 2189 - version = "1.0.30001344"; 2207 + version = "1.0.30001374"; 2190 2208 src = fetchurl { 2191 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001344.tgz"; 2192 - sha512 = "0ZFjnlCaXNOAYcV7i+TtdKBp0L/3XEU2MF/x6Du1lrh+SRX4IfzIVL4HNJg5pB2PmFb8rszIGyOvsZnqqRoc2g=="; 2209 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001374.tgz"; 2210 + sha512 = "mWvzatRx3w+j5wx/mpFN5v5twlPrabG8NqX2c6e45LCpymdoGqNvRkRutFUqpRTXKFQFNQJasvK0YT7suW6/Hw=="; 2193 2211 }; 2194 2212 }; 2195 2213 "chalk-2.4.2" = { ··· 2444 2462 sha512 = "0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg=="; 2445 2463 }; 2446 2464 }; 2447 - "core-js-compat-3.22.7" = { 2465 + "core-js-compat-3.24.1" = { 2448 2466 name = "core-js-compat"; 2449 2467 packageName = "core-js-compat"; 2450 - version = "3.22.7"; 2468 + version = "3.24.1"; 2451 2469 src = fetchurl { 2452 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.7.tgz"; 2453 - sha512 = "uI9DAQKKiiE/mclIC5g4AjRpio27g+VMRhe6rQoz+q4Wm4L6A/fJhiLtBw+sfOpDG9wZ3O0pxIw7GbfOlBgjOA=="; 2470 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.24.1.tgz"; 2471 + sha512 = "XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw=="; 2454 2472 }; 2455 2473 }; 2456 2474 "core-js-pure-3.23.1" = { ··· 2696 2714 sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; 2697 2715 }; 2698 2716 }; 2699 - "electron-to-chromium-1.4.141" = { 2717 + "electron-to-chromium-1.4.211" = { 2700 2718 name = "electron-to-chromium"; 2701 2719 packageName = "electron-to-chromium"; 2702 - version = "1.4.141"; 2720 + version = "1.4.211"; 2703 2721 src = fetchurl { 2704 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.141.tgz"; 2705 - sha512 = "mfBcbqc0qc6RlxrsIgLG2wCqkiPAjEezHxGTu7p3dHHFOurH4EjS9rFZndX5axC8264rI1Pcbw8uQP39oZckeA=="; 2722 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.211.tgz"; 2723 + sha512 = "BZSbMpyFQU0KBJ1JG26XGeFI3i4op+qOYGxftmZXFZoHkhLgsSv4DHDJfl8ogII3hIuzGt51PaZ195OVu0yJ9A=="; 2706 2724 }; 2707 2725 }; 2708 2726 "emittery-0.10.2" = { ··· 2804 2822 sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 2805 2823 }; 2806 2824 }; 2807 - "eslint-8.20.0" = { 2825 + "eslint-8.22.0" = { 2808 2826 name = "eslint"; 2809 2827 packageName = "eslint"; 2810 - version = "8.20.0"; 2828 + version = "8.22.0"; 2811 2829 src = fetchurl { 2812 - url = "https://registry.npmjs.org/eslint/-/eslint-8.20.0.tgz"; 2813 - sha512 = "d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA=="; 2830 + url = "https://registry.npmjs.org/eslint/-/eslint-8.22.0.tgz"; 2831 + sha512 = "ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA=="; 2814 2832 }; 2815 2833 }; 2816 2834 "eslint-config-google-0.14.0" = { ··· 2822 2840 sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw=="; 2823 2841 }; 2824 2842 }; 2825 - "eslint-plugin-jest-26.7.0" = { 2843 + "eslint-plugin-jest-26.8.5" = { 2826 2844 name = "eslint-plugin-jest"; 2827 2845 packageName = "eslint-plugin-jest"; 2828 - version = "26.7.0"; 2846 + version = "26.8.5"; 2829 2847 src = fetchurl { 2830 - url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.7.0.tgz"; 2831 - sha512 = "/YNitdfG3o3cC6juZziAdkk6nfJt01jXVfj4AgaYVLs7bupHzRDL5K+eipdzhDXtQsiqaX1TzfwSuRlEgeln1A=="; 2848 + url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.8.5.tgz"; 2849 + sha512 = "DEaimuVhah/fx6jDkaP4oEPhH6VLr9skpZxYqbbmfeYvXzjos3AX61NpyMvq4aB4x6XJ3rsu/zcJfg0z0nytfw=="; 2832 2850 }; 2833 2851 }; 2834 2852 "eslint-scope-5.1.1" = { ··· 2876 2894 sha512 = "mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA=="; 2877 2895 }; 2878 2896 }; 2879 - "espree-9.3.2" = { 2897 + "espree-9.3.3" = { 2880 2898 name = "espree"; 2881 2899 packageName = "espree"; 2882 - version = "9.3.2"; 2900 + version = "9.3.3"; 2883 2901 src = fetchurl { 2884 - url = "https://registry.npmjs.org/espree/-/espree-9.3.2.tgz"; 2885 - sha512 = "D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA=="; 2902 + url = "https://registry.npmjs.org/espree/-/espree-9.3.3.tgz"; 2903 + sha512 = "ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng=="; 2886 2904 }; 2887 2905 }; 2888 2906 "esprima-4.0.1" = { ··· 3101 3119 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 3102 3120 }; 3103 3121 }; 3122 + "find-up-5.0.0" = { 3123 + name = "find-up"; 3124 + packageName = "find-up"; 3125 + version = "5.0.0"; 3126 + src = fetchurl { 3127 + url = "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"; 3128 + sha512 = "78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="; 3129 + }; 3130 + }; 3104 3131 "flat-cache-3.0.4" = { 3105 3132 name = "flat-cache"; 3106 3133 packageName = "flat-cache"; ··· 3342 3369 src = fetchurl { 3343 3370 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"; 3344 3371 sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; 3372 + }; 3373 + }; 3374 + "grapheme-splitter-1.0.4" = { 3375 + name = "grapheme-splitter"; 3376 + packageName = "grapheme-splitter"; 3377 + version = "1.0.4"; 3378 + src = fetchurl { 3379 + url = "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"; 3380 + sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; 3345 3381 }; 3346 3382 }; 3347 3383 "has-1.0.3" = { ··· 4055 4091 sha512 = "PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg=="; 4056 4092 }; 4057 4093 }; 4058 - "jszip-3.10.0" = { 4094 + "jszip-3.10.1" = { 4059 4095 name = "jszip"; 4060 4096 packageName = "jszip"; 4061 - version = "3.10.0"; 4097 + version = "3.10.1"; 4062 4098 src = fetchurl { 4063 - url = "https://registry.npmjs.org/jszip/-/jszip-3.10.0.tgz"; 4064 - sha512 = "LDfVtOLtOxb9RXkYOwPyNBTQDL4eUbqahtoY6x07GiDJHwSYvn8sHHIw8wINImV3MqbMNve2gSuM1DDqEKk09Q=="; 4099 + url = "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz"; 4100 + sha512 = "xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g=="; 4065 4101 }; 4066 4102 }; 4067 4103 "kleur-3.0.3" = { ··· 4136 4172 sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 4137 4173 }; 4138 4174 }; 4175 + "locate-path-6.0.0" = { 4176 + name = "locate-path"; 4177 + packageName = "locate-path"; 4178 + version = "6.0.0"; 4179 + src = fetchurl { 4180 + url = "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"; 4181 + sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; 4182 + }; 4183 + }; 4139 4184 "lodash-4.17.21" = { 4140 4185 name = "lodash"; 4141 4186 packageName = "lodash"; ··· 4151 4196 version = "4.0.8"; 4152 4197 src = fetchurl { 4153 4198 url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; 4154 - sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; 4199 + sha512 = "FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="; 4155 4200 }; 4156 4201 }; 4157 4202 "lodash.merge-4.6.2" = { ··· 4442 4487 sha512 = "O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="; 4443 4488 }; 4444 4489 }; 4445 - "node-releases-2.0.5" = { 4490 + "node-releases-2.0.6" = { 4446 4491 name = "node-releases"; 4447 4492 packageName = "node-releases"; 4448 - version = "2.0.5"; 4493 + version = "2.0.6"; 4449 4494 src = fetchurl { 4450 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz"; 4451 - sha512 = "U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q=="; 4495 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz"; 4496 + sha512 = "PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg=="; 4452 4497 }; 4453 4498 }; 4454 4499 "normalize-path-3.0.0" = { ··· 4602 4647 src = fetchurl { 4603 4648 url = "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"; 4604 4649 sha512 = "R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="; 4650 + }; 4651 + }; 4652 + "p-locate-5.0.0" = { 4653 + name = "p-locate"; 4654 + packageName = "p-locate"; 4655 + version = "5.0.0"; 4656 + src = fetchurl { 4657 + url = "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"; 4658 + sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="; 4605 4659 }; 4606 4660 }; 4607 4661 "p-try-2.2.0" = { ··· 5810 5864 sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; 5811 5865 }; 5812 5866 }; 5867 + "update-browserslist-db-1.0.5" = { 5868 + name = "update-browserslist-db"; 5869 + packageName = "update-browserslist-db"; 5870 + version = "1.0.5"; 5871 + src = fetchurl { 5872 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz"; 5873 + sha512 = "dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q=="; 5874 + }; 5875 + }; 5813 5876 "uri-js-4.4.1" = { 5814 5877 name = "uri-js"; 5815 5878 packageName = "uri-js"; ··· 6062 6125 sha512 = "rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="; 6063 6126 }; 6064 6127 }; 6065 - "zigbee-herdsman-0.14.46" = { 6128 + "zigbee-herdsman-0.14.53" = { 6066 6129 name = "zigbee-herdsman"; 6067 6130 packageName = "zigbee-herdsman"; 6068 - version = "0.14.46"; 6131 + version = "0.14.53"; 6069 6132 src = fetchurl { 6070 - url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.46.tgz"; 6071 - sha512 = "i05yGfbe7xZv7dazBz1bZMHaMG7m5MMXr8u7huHuItyIgUysdY1fePVFQCoQOEKtDiPPbyXSJ/nzj157Trb9Cg=="; 6133 + url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.53.tgz"; 6134 + sha512 = "D4jmeqI9UzACMamssVSv9qeBNt5KeHXDAdGPFlcf1baFznvOmP4NMzTW7kElH/49mNtV0VWlvxgb2+vE0zt2TQ=="; 6072 6135 }; 6073 6136 }; 6074 - "zigbee-herdsman-converters-14.0.583" = { 6137 + "zigbee-herdsman-converters-14.0.610" = { 6075 6138 name = "zigbee-herdsman-converters"; 6076 6139 packageName = "zigbee-herdsman-converters"; 6077 - version = "14.0.583"; 6140 + version = "14.0.610"; 6078 6141 src = fetchurl { 6079 - url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.583.tgz"; 6080 - sha512 = "yHaMj8hvaXgQ1gQ+IT2adg53AgI+gB7FgrvSxxBOYqq1v6/GJQKFIju0d3YiYoFMvQ7P2I5GNcKJz6yKK3wotg=="; 6142 + url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.610.tgz"; 6143 + sha512 = "EjJtICW/z5D1FLV0BJOFeo2P8MzxyuvqZuqilsJT0IBp3xsyvZHEc67AyB3Y1y/dRg7QvkQ+zu/priQJ0AMXPg=="; 6081 6144 }; 6082 6145 }; 6083 - "zigbee2mqtt-frontend-0.6.107" = { 6146 + "zigbee2mqtt-frontend-0.6.110" = { 6084 6147 name = "zigbee2mqtt-frontend"; 6085 6148 packageName = "zigbee2mqtt-frontend"; 6086 - version = "0.6.107"; 6149 + version = "0.6.110"; 6087 6150 src = fetchurl { 6088 - url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.6.107.tgz"; 6089 - sha512 = "/s9Ec2DnOPTH7+zOnebQdkC/9pDZ1H+kvOZhN2/V9yrwAXQHJm9A0RVhY/ErSk0Ecl/gR9jw1Dvn9bEmtK3Kuw=="; 6151 + url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.6.110.tgz"; 6152 + sha512 = "OszWm6XUviOLBtuXmMVHvEz/WwxjQGFVNdB2bRs8Km/421EmlSrng/BRrP1xlyqHB+zevGt3bDqGb2Rj/GhknQ=="; 6090 6153 }; 6091 6154 }; 6092 6155 }; 6093 6156 args = { 6094 6157 name = "zigbee2mqtt"; 6095 6158 packageName = "zigbee2mqtt"; 6096 - version = "1.27.0"; 6159 + version = "1.27.2"; 6097 6160 src = ./.; 6098 6161 dependencies = [ 6099 6162 sources."@ampproject/remapping-2.2.0" 6100 6163 sources."@babel/code-frame-7.18.6" 6101 6164 sources."@babel/compat-data-7.18.8" 6102 - (sources."@babel/core-7.18.9" // { 6165 + (sources."@babel/core-7.18.10" // { 6103 6166 dependencies = [ 6104 6167 sources."semver-6.3.0" 6105 6168 ]; 6106 6169 }) 6107 - (sources."@babel/generator-7.18.9" // { 6170 + (sources."@babel/generator-7.18.12" // { 6108 6171 dependencies = [ 6109 6172 sources."@jridgewell/gen-mapping-0.3.2" 6110 6173 ]; ··· 6118 6181 }) 6119 6182 sources."@babel/helper-create-class-features-plugin-7.18.9" 6120 6183 sources."@babel/helper-create-regexp-features-plugin-7.18.6" 6121 - (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 6184 + (sources."@babel/helper-define-polyfill-provider-0.3.2" // { 6122 6185 dependencies = [ 6123 6186 sources."semver-6.3.0" 6124 6187 ]; ··· 6132 6195 sources."@babel/helper-module-transforms-7.18.9" 6133 6196 sources."@babel/helper-optimise-call-expression-7.18.6" 6134 6197 sources."@babel/helper-plugin-utils-7.18.9" 6135 - sources."@babel/helper-remap-async-to-generator-7.18.6" 6198 + sources."@babel/helper-remap-async-to-generator-7.18.9" 6136 6199 sources."@babel/helper-replace-supers-7.18.9" 6137 6200 sources."@babel/helper-simple-access-7.18.6" 6138 6201 sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" 6139 6202 sources."@babel/helper-split-export-declaration-7.18.6" 6203 + sources."@babel/helper-string-parser-7.18.10" 6140 6204 sources."@babel/helper-validator-identifier-7.18.6" 6141 6205 sources."@babel/helper-validator-option-7.18.6" 6142 - sources."@babel/helper-wrap-function-7.18.6" 6206 + sources."@babel/helper-wrap-function-7.18.11" 6143 6207 sources."@babel/helpers-7.18.9" 6144 6208 sources."@babel/highlight-7.18.6" 6145 - sources."@babel/parser-7.18.9" 6209 + sources."@babel/parser-7.18.11" 6146 6210 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" 6147 6211 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" 6148 - sources."@babel/plugin-proposal-async-generator-functions-7.18.6" 6212 + sources."@babel/plugin-proposal-async-generator-functions-7.18.10" 6149 6213 sources."@babel/plugin-proposal-class-properties-7.18.6" 6150 6214 sources."@babel/plugin-proposal-class-static-block-7.18.6" 6151 - sources."@babel/plugin-proposal-decorators-7.18.9" 6215 + sources."@babel/plugin-proposal-decorators-7.18.10" 6152 6216 sources."@babel/plugin-proposal-dynamic-import-7.18.6" 6153 6217 sources."@babel/plugin-proposal-export-namespace-from-7.18.9" 6154 6218 sources."@babel/plugin-proposal-json-strings-7.18.6" ··· 6211 6275 sources."@babel/plugin-transform-template-literals-7.18.9" 6212 6276 sources."@babel/plugin-transform-typeof-symbol-7.18.9" 6213 6277 sources."@babel/plugin-transform-typescript-7.18.6" 6214 - sources."@babel/plugin-transform-unicode-escapes-7.18.6" 6278 + sources."@babel/plugin-transform-unicode-escapes-7.18.10" 6215 6279 sources."@babel/plugin-transform-unicode-regex-7.18.6" 6216 - (sources."@babel/preset-env-7.18.9" // { 6280 + (sources."@babel/preset-env-7.18.10" // { 6217 6281 dependencies = [ 6218 6282 sources."semver-6.3.0" 6219 6283 ]; ··· 6221 6285 sources."@babel/preset-modules-0.1.5" 6222 6286 sources."@babel/preset-typescript-7.18.6" 6223 6287 sources."@babel/runtime-7.18.3" 6224 - sources."@babel/template-7.18.6" 6225 - sources."@babel/traverse-7.18.9" 6226 - sources."@babel/types-7.18.9" 6288 + sources."@babel/template-7.18.10" 6289 + sources."@babel/traverse-7.18.11" 6290 + sources."@babel/types-7.18.10" 6227 6291 sources."@bcoe/v8-coverage-0.2.3" 6228 6292 sources."@colors/colors-1.5.0" 6229 6293 sources."@dabh/diagnostics-2.0.3" ··· 6235 6299 sources."type-fest-0.20.2" 6236 6300 ]; 6237 6301 }) 6238 - sources."@humanwhocodes/config-array-0.9.5" 6302 + sources."@humanwhocodes/config-array-0.10.4" 6303 + sources."@humanwhocodes/gitignore-to-minimatch-1.0.2" 6239 6304 sources."@humanwhocodes/object-schema-1.2.1" 6240 6305 (sources."@istanbuljs/load-nyc-config-1.1.0" // { 6241 6306 dependencies = [ ··· 6349 6414 sources."@types/istanbul-lib-coverage-2.0.4" 6350 6415 sources."@types/istanbul-lib-report-3.0.0" 6351 6416 sources."@types/istanbul-reports-3.0.1" 6352 - sources."@types/jest-28.1.6" 6417 + sources."@types/jest-28.1.7" 6353 6418 sources."@types/js-yaml-4.0.5" 6354 6419 sources."@types/json-schema-7.0.11" 6355 6420 sources."@types/minimatch-3.0.5" ··· 6366 6431 sources."@types/ws-8.5.3" 6367 6432 sources."@types/yargs-17.0.10" 6368 6433 sources."@types/yargs-parser-21.0.0" 6369 - sources."@typescript-eslint/eslint-plugin-5.31.0" 6370 - sources."@typescript-eslint/parser-5.31.0" 6371 - sources."@typescript-eslint/scope-manager-5.31.0" 6372 - sources."@typescript-eslint/type-utils-5.31.0" 6373 - sources."@typescript-eslint/types-5.31.0" 6374 - sources."@typescript-eslint/typescript-estree-5.31.0" 6375 - sources."@typescript-eslint/utils-5.31.0" 6376 - sources."@typescript-eslint/visitor-keys-5.31.0" 6377 - sources."acorn-8.7.1" 6434 + sources."@typescript-eslint/eslint-plugin-5.33.1" 6435 + sources."@typescript-eslint/parser-5.33.1" 6436 + sources."@typescript-eslint/scope-manager-5.33.1" 6437 + sources."@typescript-eslint/type-utils-5.33.1" 6438 + sources."@typescript-eslint/types-5.33.1" 6439 + sources."@typescript-eslint/typescript-estree-5.33.1" 6440 + sources."@typescript-eslint/utils-5.33.1" 6441 + sources."@typescript-eslint/visitor-keys-5.33.1" 6442 + sources."acorn-8.8.0" 6378 6443 sources."acorn-jsx-5.3.2" 6379 6444 sources."agent-base-6.0.2" 6380 6445 sources."ajv-8.11.0" ··· 6408 6473 sources."babel-plugin-dynamic-import-node-2.3.3" 6409 6474 sources."babel-plugin-istanbul-6.1.1" 6410 6475 sources."babel-plugin-jest-hoist-28.1.3" 6411 - (sources."babel-plugin-polyfill-corejs2-0.3.1" // { 6476 + (sources."babel-plugin-polyfill-corejs2-0.3.2" // { 6412 6477 dependencies = [ 6413 6478 sources."semver-6.3.0" 6414 6479 ]; 6415 6480 }) 6416 - sources."babel-plugin-polyfill-corejs3-0.5.2" 6417 - sources."babel-plugin-polyfill-regenerator-0.3.1" 6481 + sources."babel-plugin-polyfill-corejs3-0.5.3" 6482 + sources."babel-plugin-polyfill-regenerator-0.4.0" 6418 6483 sources."babel-preset-current-node-syntax-1.0.1" 6419 6484 sources."babel-preset-jest-28.1.3" 6420 6485 sources."balanced-match-1.0.2" ··· 6424 6489 sources."bl-4.1.0" 6425 6490 sources."brace-expansion-1.1.11" 6426 6491 sources."braces-3.0.2" 6427 - sources."browserslist-4.20.3" 6492 + sources."browserslist-4.21.3" 6428 6493 sources."bser-2.1.1" 6429 6494 sources."buffer-5.7.1" 6430 6495 sources."buffer-crc32-0.2.13" ··· 6432 6497 sources."call-bind-1.0.2" 6433 6498 sources."callsites-3.1.0" 6434 6499 sources."camelcase-5.3.1" 6435 - sources."caniuse-lite-1.0.30001344" 6500 + sources."caniuse-lite-1.0.30001374" 6436 6501 sources."chalk-2.4.2" 6437 6502 sources."char-regex-1.0.2" 6438 6503 sources."chownr-1.1.4" ··· 6467 6532 sources."console-control-strings-1.1.0" 6468 6533 sources."convert-source-map-1.8.0" 6469 6534 sources."core-js-3.24.1" 6470 - (sources."core-js-compat-3.22.7" // { 6535 + (sources."core-js-compat-3.24.1" // { 6471 6536 dependencies = [ 6472 6537 sources."semver-7.0.0" 6473 6538 ]; ··· 6498 6563 sources."dom-helpers-5.2.1" 6499 6564 sources."duplexify-4.1.2" 6500 6565 sources."ee-first-1.1.1" 6501 - sources."electron-to-chromium-1.4.141" 6566 + sources."electron-to-chromium-1.4.211" 6502 6567 sources."emittery-0.10.2" 6503 6568 sources."emoji-regex-8.0.0" 6504 6569 sources."enabled-2.0.0" ··· 6508 6573 sources."escalade-3.1.1" 6509 6574 sources."escape-html-1.0.3" 6510 6575 sources."escape-string-regexp-1.0.5" 6511 - (sources."eslint-8.20.0" // { 6576 + (sources."eslint-8.22.0" // { 6512 6577 dependencies = [ 6513 6578 sources."ajv-6.12.6" 6514 6579 sources."ansi-styles-4.3.0" ··· 6518 6583 sources."escape-string-regexp-4.0.0" 6519 6584 sources."eslint-scope-7.1.1" 6520 6585 sources."estraverse-5.3.0" 6586 + sources."find-up-5.0.0" 6521 6587 sources."globals-13.15.0" 6522 6588 sources."has-flag-4.0.0" 6523 6589 sources."json-schema-traverse-0.4.1" 6590 + sources."locate-path-6.0.0" 6591 + sources."p-limit-3.1.0" 6592 + sources."p-locate-5.0.0" 6524 6593 sources."supports-color-7.2.0" 6525 6594 sources."type-fest-0.20.2" 6526 6595 ]; 6527 6596 }) 6528 6597 sources."eslint-config-google-0.14.0" 6529 - sources."eslint-plugin-jest-26.7.0" 6598 + sources."eslint-plugin-jest-26.8.5" 6530 6599 sources."eslint-scope-5.1.1" 6531 6600 (sources."eslint-utils-3.0.0" // { 6532 6601 dependencies = [ ··· 6534 6603 ]; 6535 6604 }) 6536 6605 sources."eslint-visitor-keys-3.3.0" 6537 - sources."espree-9.3.2" 6606 + sources."espree-9.3.3" 6538 6607 sources."esprima-4.0.1" 6539 6608 (sources."esquery-1.4.0" // { 6540 6609 dependencies = [ ··· 6607 6676 sources."globby-11.1.0" 6608 6677 sources."glossy-0.1.7" 6609 6678 sources."graceful-fs-4.2.10" 6679 + sources."grapheme-splitter-1.0.4" 6610 6680 sources."has-1.0.3" 6611 6681 sources."has-flag-3.0.0" 6612 6682 sources."has-property-descriptors-1.0.0" ··· 6832 6902 sources."json-stable-stringify-without-jsonify-1.0.1" 6833 6903 sources."json5-2.2.1" 6834 6904 sources."jsonpointer-5.0.0" 6835 - (sources."jszip-3.10.0" // { 6905 + (sources."jszip-3.10.1" // { 6836 6906 dependencies = [ 6837 6907 sources."readable-stream-2.3.7" 6838 6908 sources."string_decoder-1.1.1" ··· 6885 6955 sources."natural-compare-1.4.0" 6886 6956 sources."node-abi-3.22.0" 6887 6957 sources."node-int64-0.4.0" 6888 - sources."node-releases-2.0.5" 6958 + sources."node-releases-2.0.6" 6889 6959 sources."normalize-path-3.0.0" 6890 6960 sources."npm-run-path-4.0.1" 6891 6961 sources."npmlog-4.1.2" ··· 7068 7138 sources."unicode-property-aliases-ecmascript-2.0.0" 7069 7139 sources."unix-dgram-2.0.4" 7070 7140 sources."unpipe-1.0.0" 7141 + sources."update-browserslist-db-1.0.5" 7071 7142 sources."uri-js-4.4.1" 7072 7143 sources."util-deprecate-1.0.2" 7073 7144 sources."v8-compile-cache-2.3.0" ··· 7101 7172 sources."yargs-17.5.1" 7102 7173 sources."yargs-parser-21.0.1" 7103 7174 sources."yocto-queue-0.1.0" 7104 - sources."zigbee-herdsman-0.14.46" 7105 - sources."zigbee-herdsman-converters-14.0.583" 7106 - sources."zigbee2mqtt-frontend-0.6.107" 7175 + sources."zigbee-herdsman-0.14.53" 7176 + sources."zigbee-herdsman-converters-14.0.610" 7177 + sources."zigbee2mqtt-frontend-0.6.110" 7107 7178 ]; 7108 7179 buildInputs = globalBuildInputs; 7109 7180 meta = {
+2 -2
pkgs/tools/games/minecraft/fabric-installer/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "fabric-installer"; 9 - version = "0.11.0"; 9 + version = "0.11.1"; 10 10 11 11 src = fetchurl { 12 12 url = "https://maven.fabricmc.net/net/fabricmc/fabric-installer/${version}/fabric-installer-${version}.jar"; 13 - sha256 = "sha256-aLpC6k+Cum0QfdIa1sUXS4BBKFTudJGbcjS1LSFP0Qo="; 13 + sha256 = "sha256-eRf5+hS+babvPNt/5r87Y6WToOuHO9Yn6YGn45iM1zo="; 14 14 }; 15 15 16 16 dontUnpack = true;
+2 -2
pkgs/tools/misc/esphome/default.nix
··· 15 15 in 16 16 with python.pkgs; buildPythonApplication rec { 17 17 pname = "esphome"; 18 - version = "2022.8.0"; 18 + version = "2022.8.1"; 19 19 format = "setuptools"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = pname; 23 23 repo = pname; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-lukK++CRpl7ucX9RuYa4qhHBbBY4oc/ijqGopeIaXPY="; 25 + hash = "sha256-eBD7UC6xNxW9tkqXSLgntDqwyGpLwv6fpChIYgbIFBM="; 26 26 }; 27 27 28 28 postPatch = ''
+3 -3
pkgs/tools/misc/kak-lsp/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "kak-lsp"; 5 - version = "13.0.0"; 5 + version = "14.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-i+oi5lCNIWPVPP5o7IamSVPvCB/FhO/v08zOipmaE+c="; 11 + sha256 = "sha256-RTz8BdbEiAY6wyIS18LZRQQ1DQzIRz2Bk7bOeMf7sT8="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-acxdGhExfE4g1YNp3bRQlEuUqz79y1IhDnqTaYh/nxc="; 14 + cargoSha256 = "sha256-fHVKm4DWhkwbbRGLvMfoEjJfM6VF7RW6x75NR7aNs7o="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 17 17
+2 -2
pkgs/tools/networking/gobgp/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gobgp"; 5 - version = "3.5.0"; 5 + version = "3.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "osrg"; 9 9 repo = "gobgp"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-iFtoxEjb+Wk8E2oj1SjSRNwxg20//0LgFtjMq9qJOEQ="; 11 + sha256 = "sha256-NJK8MW/vUZwdGIEipL/zyh24o/pu7fwQMeDxyoFdtP4="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-FxfER3THsA7NRuQKEdWQxgUN0SiNI00hGUMVD+3BaG4=";
+2 -6
pkgs/top-level/all-packages.nix
··· 3834 3834 3835 3835 fits-cloudctl = callPackage ../tools/admin/fits-cloudctl { }; 3836 3836 3837 - flitter = callPackage ../tools/misc/flitter { 3838 - ocamlPackages = ocaml-ng.ocamlPackages_4_13; 3839 - }; 3837 + flitter = callPackage ../tools/misc/flitter { }; 3840 3838 3841 3839 frangipanni = callPackage ../tools/text/frangipanni { }; 3842 3840 ··· 28316 28314 28317 28315 indigenous-desktop = callPackage ../applications/networking/feedreaders/indigenous-desktop { }; 28318 28316 28319 - jackline = callPackage ../applications/networking/instant-messengers/jackline { 28320 - ocamlPackages = ocaml-ng.ocamlPackages_4_13; 28321 - }; 28317 + jackline = callPackage ../applications/networking/instant-messengers/jackline { }; 28322 28318 28323 28319 keylight-controller-mschneider82 = callPackage ../applications/misc/keylight-controller-mschneider82 { }; 28324 28320