Merge branch 'master' into staging-next

; Conflicts:
; pkgs/top-level/aliases.nix

+1257 -1270
+7 -3
nixos/modules/services/networking/wpa_supplicant.nix
··· 11 11 opt = options.networking.wireless; 12 12 13 13 wpa3Protocols = [ "SAE" "FT-SAE" ]; 14 - hasWPA3 = opts: !mutuallyExclusive opts.authProtocols wpa3Protocols; 14 + hasMixedWPA = opts: 15 + let 16 + hasWPA3 = !mutuallyExclusive opts.authProtocols wpa3Protocols; 17 + others = subtractLists wpa3Protocols opts.authProtocols; 18 + in hasWPA3 && others != []; 15 19 16 20 # Gives a WPA3 network higher priority 17 21 increaseWPA3Priority = opts: 18 - opts // optionalAttrs (hasWPA3 opts) 22 + opts // optionalAttrs (hasMixedWPA opts) 19 23 { priority = if opts.priority == null 20 24 then 1 21 25 else opts.priority + 1; ··· 33 37 allNetworks = 34 38 if cfg.fallbackToWPA2 35 39 then map increaseWPA3Priority networkList 36 - ++ map mkWPA2Fallback (filter hasWPA3 networkList) 40 + ++ map mkWPA2Fallback (filter hasMixedWPA networkList) 37 41 else networkList; 38 42 39 43 # Content of wpa_supplicant.conf
+3 -4
nixos/modules/services/system/self-deploy.nix
··· 126 126 127 127 config = lib.mkIf cfg.enable { 128 128 systemd.services.self-deploy = { 129 - wantedBy = [ "multi-user.target" ]; 129 + inherit (cfg) startAt; 130 130 131 - startAt = cfg.startAt; 131 + wantedBy = [ "multi-user.target" ]; 132 132 133 133 requires = lib.mkIf (!(isPathType cfg.repository)) [ "network-online.target" ]; 134 134 ··· 140 140 path = with pkgs; [ 141 141 git 142 142 nix 143 - systemd 144 - ]; 143 + ] ++ lib.optionals (cfg.switchCommand == "boot") [ systemd ]; 145 144 146 145 script = '' 147 146 if [ ! -e ${repositoryDirectory} ]; then
+4
nixos/tests/sudo.nix
··· 28 28 enable = true; 29 29 wheelNeedsPassword = false; 30 30 31 + extraConfig = '' 32 + Defaults lecture="never" 33 + ''; 34 + 31 35 extraRules = [ 32 36 # SUDOERS SYNTAX CHECK (Test whether the module produces a valid output; 33 37 # errors being detected by the visudo checks.
+17 -2
nixos/tests/wpa_supplicant.nix
··· 27 27 enable = lib.mkOverride 0 true; 28 28 userControlled.enable = true; 29 29 interfaces = [ "wlan1" ]; 30 + fallbackToWPA2 = true; 30 31 31 32 networks = { 33 + # test WPA2 fallback 34 + mixed-wpa = { 35 + psk = "password"; 36 + authProtocols = [ "WPA-PSK" "SAE" ]; 37 + }; 38 + sae-only = { 39 + psk = "password"; 40 + authProtocols = [ "SAE" ]; 41 + }; 42 + 32 43 # test network 33 44 nixos-test.psk = "@PSK_NIXOS_TEST@"; 34 45 ··· 64 75 machine.succeed(f"grep -q @PSK_MISSING@ {config_file}") 65 76 machine.succeed(f"grep -q P@ssowrdWithSome@tSymbol {config_file}") 66 77 67 - # save file for manual inspection 68 - machine.copy_from_vm(config_file) 78 + with subtest("WPA2 fallbacks have been generated"): 79 + assert int(machine.succeed(f"grep -c sae-only {config_file}")) == 1 80 + assert int(machine.succeed(f"grep -c mixed-wpa {config_file}")) == 2 81 + 82 + # save file for manual inspection 83 + machine.copy_from_vm(config_file) 69 84 70 85 with subtest("Daemon is running and accepting connections"): 71 86 machine.wait_for_unit("wpa_supplicant-wlan1.service")
+6 -14
pkgs/applications/accessibility/squeekboard/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "squeekboard"; 22 - version = "1.14.0"; 22 + version = "1.16.0"; 23 23 24 24 src = fetchFromGitLab { 25 - domain = "source.puri.sm"; 26 - owner = "Librem5"; 25 + domain = "gitlab.gnome.org"; 26 + group = "World"; 27 + owner = "Phosh"; 27 28 repo = pname; 28 29 rev = "v${version}"; 29 - sha256 = "1ayap40pgzcpmfydk5pbf3gwhh26m3cmbk6lyly4jihr9qw7dgb0"; 30 + sha256 = "sha256-51Grkn6NSR6azTRuq1vdbDg7d3HuQQ+ZJCsM2mSrSHk="; 30 31 }; 31 32 32 33 cargoDeps = rustPlatform.fetchCargoTarball { ··· 35 36 cat Cargo.toml.in Cargo.deps > Cargo.toml 36 37 ''; 37 38 name = "${pname}-${version}"; 38 - sha256 = "0148ynzmapxfrlccikf20ikmi0ssbkn9fl5wi6nh6azflv50pzzn"; 39 + sha256 = "sha256-vQaiEENxaQxBGYP1br03wSkU7OGOYkJvMBUAOeb3jGk="; 39 40 }; 40 - 41 - patches = [ 42 - # remove when updating from 1.14.0 43 - (fetchpatch { 44 - name = "fix-rust-1.54-build.patch"; 45 - url = "https://gitlab.gnome.org/World/Phosh/squeekboard/-/commit/9cd56185c59ace535a6af26384ef6beca4423816.patch"; 46 - sha256 = "sha256-8rWcfhQmGiwlc2lpkRvJ95XQp1Xg7St+0K85x8nQ0mk="; 47 - }) 48 - ]; 49 41 50 42 nativeBuildInputs = [ 51 43 meson
+2 -2
pkgs/applications/audio/ft2-clone/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "ft2-clone"; 16 - version = "1.50"; 16 + version = "1.51"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "8bitbubsy"; 20 20 repo = "ft2-clone"; 21 21 rev = "v${version}"; 22 - sha256 = "sha256-OURD8k8DIa1DddDng55HrzgAN95srW4wm7RD7DbiJLQ="; 22 + sha256 = "sha256-g8LZhP6qHctmvbmrhJ8gAOeAd57SePeO2tdFi9SVjQ0="; 23 23 }; 24 24 25 25 # Adapt the linux-only CMakeLists to darwin (more reliable than make-macos.sh)
+2 -2
pkgs/applications/audio/pt2-clone/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "pt2-clone"; 11 - version = "1.39"; 11 + version = "1.40"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "8bitbubsy"; 15 15 repo = "pt2-clone"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-ZmgsNp2fRebbLxSzzCsLdM6/7kBKo+YFUCdWLSYfI5A="; 17 + sha256 = "sha256-0qEhhkprIpseCEFStgJ0035TX0e9s271BK/1hVkn/JU="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/applications/blockchains/bisq-desktop/default.nix
··· 35 35 in 36 36 stdenv.mkDerivation rec { 37 37 pname = "bisq-desktop"; 38 - version = "1.8.0"; 38 + version = "1.8.2"; 39 39 40 40 src = fetchurl { 41 41 url = "https://github.com/bisq-network/bisq/releases/download/v${version}/Bisq-64bit-${version}.deb"; 42 - sha256 = "1q6x6w8mp5ax852hlvi2p61xgckb2lpr2ml21a9mfs9421b6m8h2"; 42 + sha256 = "154b8whbbpnb8lk1b3an44h53gh5fdzxkg5vdfrw1ld6miy68kii"; 43 43 }; 44 44 45 45 nativeBuildInputs = [ makeWrapper copyDesktopItems imagemagick dpkg gnutar zip xz ];
+4 -4
pkgs/applications/editors/android-studio/default.nix
··· 13 13 sha256Hash = "LwG5IDJBFpdlspDoTNpbi1togri2fvEOEDbkkiYvrJE="; 14 14 }; 15 15 betaVersion = { 16 - version = "2021.1.1.18"; # "Android Studio Bumblebee (2021.1.1) Beta 5" 17 - sha256Hash = "gWG8h3wTQDH84vSKlfTm3soUqLkwFYfSymJuAAFPDuQ="; 16 + version = "2021.2.1.8"; # "Android Studio Chipmunk (2021.2.1) Beta 1" 17 + sha256Hash = "bPfs4kw7czG9CbEgrzn0bQXdT03jyqPVqtaIuVBFSmc="; 18 18 }; 19 19 latestVersion = { # canary & dev 20 - version = "2021.2.1.5"; # "Android Studio Chipmunk (2021.2.1) Canary 5" 21 - sha256Hash = "PS45nu5g9qXNeolYnFEs//Z6p8eIZoD6kUo/0yfHQ6A="; 20 + version = "2021.3.1.1"; # "Android Studio Dolphin (2021.3.1) Canary 1" 21 + sha256Hash = "W3pNQBM7WdDScQo5b8q5Va5NTgl73uZu0ks/zDMb4aA="; 22 22 }; 23 23 in { 24 24 # Attributes are named by their corresponding release channels
+16 -16
pkgs/applications/editors/jetbrains/default.nix
··· 264 264 265 265 datagrip = buildDataGrip rec { 266 266 name = "datagrip-${version}"; 267 - version = "2021.3.3"; /* updated by script */ 267 + version = "2021.3.4"; /* updated by script */ 268 268 description = "Your Swiss Army Knife for Databases and SQL"; 269 269 license = lib.licenses.unfree; 270 270 src = fetchurl { 271 271 url = "https://download.jetbrains.com/datagrip/${name}.tar.gz"; 272 - sha256 = "0wbr7hjbj9zvxn4j7nrp7sdzjk78hcg7ssz430y35x9isfiqv5py"; /* updated by script */ 272 + sha256 = "09dkxj5vn99gkgc1yd18w7gqkw2vzci0z9q2fcih0zn7lvqp0im3"; /* updated by script */ 273 273 }; 274 274 wmClass = "jetbrains-datagrip"; 275 275 update-channel = "DataGrip RELEASE"; ··· 277 277 278 278 goland = buildGoland rec { 279 279 name = "goland-${version}"; 280 - version = "2021.3.2"; /* updated by script */ 280 + version = "2021.3.3"; /* updated by script */ 281 281 description = "Up and Coming Go IDE"; 282 282 license = lib.licenses.unfree; 283 283 src = fetchurl { 284 284 url = "https://download.jetbrains.com/go/${name}.tar.gz"; 285 - sha256 = "0csc52wwqggdxc61qkmbs84hdvyj3x60rcv5jrxcwp3bjq94kskw"; /* updated by script */ 285 + sha256 = "18z4mvxhds5fgdwcfywc4pj8s9ifvsknhradgzmxsvji0fbp0awx"; /* updated by script */ 286 286 }; 287 287 wmClass = "jetbrains-goland"; 288 288 update-channel = "GoLand RELEASE"; ··· 290 290 291 291 idea-community = buildIdea rec { 292 292 name = "idea-community-${version}"; 293 - version = "2021.3.1"; /* updated by script */ 293 + version = "2021.3.2"; /* updated by script */ 294 294 description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; 295 295 license = lib.licenses.asl20; 296 296 src = fetchurl { 297 297 url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz"; 298 - sha256 = "19xxbjcn17n3fk1vdb31nihn9cv5q65wfxdan6dx7z0wq5c4x9zd"; /* updated by script */ 298 + sha256 = "1j889b2r950bl9wiqq1z8v8s2qicidfcdar300cy666i8rc25qlr"; /* updated by script */ 299 299 }; 300 300 wmClass = "jetbrains-idea-ce"; 301 301 update-channel = "IntelliJ IDEA RELEASE"; ··· 303 303 304 304 idea-ultimate = buildIdea rec { 305 305 name = "idea-ultimate-${version}"; 306 - version = "2021.3.1"; /* updated by script */ 306 + version = "2021.3.2"; /* updated by script */ 307 307 description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; 308 308 license = lib.licenses.unfree; 309 309 src = fetchurl { 310 310 url = "https://download.jetbrains.com/idea/ideaIU-${version}-no-jbr.tar.gz"; 311 - sha256 = "0ys8f2h0qaj8s9ga94hg73vah552a6al4r1ypdp05f7j1m7lzajf"; /* updated by script */ 311 + sha256 = "0w36qnqgkvw6j1ks09h515237bhqfaixrimzg2r494ic98amvkps"; /* updated by script */ 312 312 }; 313 313 wmClass = "jetbrains-idea"; 314 314 update-channel = "IntelliJ IDEA RELEASE"; ··· 343 343 344 344 pycharm-community = buildPycharm rec { 345 345 name = "pycharm-community-${version}"; 346 - version = "2021.3.1"; /* updated by script */ 346 + version = "2021.3.2"; /* updated by script */ 347 347 description = "PyCharm Community Edition"; 348 348 license = lib.licenses.asl20; 349 349 src = fetchurl { 350 350 url = "https://download.jetbrains.com/python/${name}.tar.gz"; 351 - sha256 = "1xd88rd1w3ghkm6jq8ilhhjy972qfm57si581rnsjpz65rj6xpgm"; /* updated by script */ 351 + sha256 = "1s36basydp7cxgbgdapjhkslx0x9vv3639xhm84ny76hf7s03bpi"; /* updated by script */ 352 352 }; 353 353 wmClass = "jetbrains-pycharm-ce"; 354 354 update-channel = "PyCharm RELEASE"; ··· 356 356 357 357 pycharm-professional = buildPycharm rec { 358 358 name = "pycharm-professional-${version}"; 359 - version = "2021.3.1"; /* updated by script */ 359 + version = "2021.3.2"; /* updated by script */ 360 360 description = "PyCharm Professional Edition"; 361 361 license = lib.licenses.unfree; 362 362 src = fetchurl { 363 363 url = "https://download.jetbrains.com/python/${name}.tar.gz"; 364 - sha256 = "0639mzjh1hw158gmf4qqld03371z60k3xyca21l1pnv3551svd6d"; /* updated by script */ 364 + sha256 = "0rwykngqgby05mh47kls8wzi68gfka2z04k6kdmsxwn1hhx5gnbb"; /* updated by script */ 365 365 }; 366 366 wmClass = "jetbrains-pycharm"; 367 367 update-channel = "PyCharm RELEASE"; ··· 369 369 370 370 rider = buildRider rec { 371 371 name = "rider-${version}"; 372 - version = "2021.3.2"; /* updated by script */ 372 + version = "2021.3.3"; /* updated by script */ 373 373 description = "A cross-platform .NET IDE based on the IntelliJ platform and ReSharper"; 374 374 license = lib.licenses.unfree; 375 375 src = fetchurl { 376 376 url = "https://download.jetbrains.com/rider/JetBrains.Rider-${version}.tar.gz"; 377 - sha256 = "0arnh9wlw874jqlgad00q0nf1kjp7pvb4xixwrb6v1l9fbr9nsan"; /* updated by script */ 377 + sha256 = "13q6hk5l3fqmz818z5wj014jd5iglpdcpi8zlpgaim1jg5fpvi8x"; /* updated by script */ 378 378 }; 379 379 wmClass = "jetbrains-rider"; 380 380 update-channel = "Rider RELEASE"; ··· 382 382 383 383 ruby-mine = buildRubyMine rec { 384 384 name = "ruby-mine-${version}"; 385 - version = "2021.3.1"; /* updated by script */ 385 + version = "2021.3.2"; /* updated by script */ 386 386 description = "The Most Intelligent Ruby and Rails IDE"; 387 387 license = lib.licenses.unfree; 388 388 src = fetchurl { 389 389 url = "https://download.jetbrains.com/ruby/RubyMine-${version}.tar.gz"; 390 - sha256 = "1xax3738myxjzm0p8zm8aaa2nw0336h80nrm9dqby2j7dass2jnm"; /* updated by script */ 390 + sha256 = "18ny40zl9hgkynkc5yyy2xqngl9diifh2gqrfnz7rfq14kp10xb9"; /* updated by script */ 391 391 }; 392 392 wmClass = "jetbrains-rubymine"; 393 393 update-channel = "RubyMine RELEASE";
+3 -3
pkgs/applications/graphics/menyoki/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "menyoki"; 15 - version = "1.5.5"; 15 + version = "1.5.6"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "orhun"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-wEPt96z/odQ05hosN+GB5KLsCu8onR9WWamofJayhwU="; 21 + sha256 = "sha256-2k8CRya9SylauYV+2aQS2QHkQhyiTHMgGp1DNoZ4jbU="; 22 22 }; 23 23 24 - cargoSha256 = "sha256-nwxBreouL3Z47zHSH+Y/ej7KU2/bXyMQ+Tb7R4U+yKk="; 24 + cargoSha256 = "sha256-NLPqJepg0WRt/X3am9J7vwIE9bn+dt2UHE26Dc/QRMM="; 25 25 26 26 nativeBuildInputs = [ installShellFiles ] 27 27 ++ lib.optional stdenv.isLinux pkg-config;
+35 -22
pkgs/applications/graphics/vengi-tools/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchurl 4 + , writeText 5 5 6 6 , cmake 7 7 , pkg-config ··· 18 18 , libuuid 19 19 , wayland-protocols 20 20 , Carbon 21 + , CoreServices 21 22 # optionals 22 23 , opencl-headers 23 24 , OpenCL ··· 26 27 , nixosTests 27 28 }: 28 29 29 - # cmake 3.21 inserts invalid `ldd` and `-Wl,--no-as-needed` calls, apparently 30 - # related to 31 - # https://cmake.org/cmake/help/v3.21/prop_tgt/LINK_WHAT_YOU_USE.html 32 - let cmake3_22 = cmake.overrideAttrs (old: { 33 - version = "3.22.0"; 34 - src = fetchurl { 35 - url = "https://cmake.org/files/v3.22/cmake-3.22.0.tar.gz"; 36 - sha256 = "sha256-mYx7o0d40t/bPfimlUaeJLEeK/oh++QbNho/ReHJNF4="; 37 - }; 38 - }); 39 - 40 - in stdenv.mkDerivation rec { 30 + stdenv.mkDerivation rec { 41 31 pname = "vengi-tools"; 42 - version = "0.0.14"; 32 + version = "0.0.17"; 43 33 44 34 src = fetchFromGitHub { 45 35 owner = "mgerhardy"; 46 - repo = "engine"; 36 + repo = "vengi"; 47 37 rev = "v${version}"; 48 - sha256 = "sha256-v82hKskTSwM0NDgLVHpHZNRQW6tWug4pPIt91MrUwUo="; 38 + sha256 = "sha256-h+R9L0BBD3NSFWUh43g4V2LBcNyqVInBeJiOLY03nRk="; 49 39 }; 50 40 41 + # Patch from the project's author for fixing an issue with AnimationShaders.h 42 + # not being included when turning off some components 43 + patches = [(writeText "vengi-tools-fix-build.patch" '' 44 + diff --git a/src/modules/voxelworldrender/CMakeLists.txt b/src/modules/voxelworldrender/CMakeLists.txt 45 + index aebe5f97b..903e62b37 100644 46 + --- a/src/modules/voxelworldrender/CMakeLists.txt 47 + +++ b/src/modules/voxelworldrender/CMakeLists.txt 48 + @@ -27,7 +27,7 @@ set(FILES 49 + voxel/models/plants/3.qb 50 + voxel/models/plants/4.qb 51 + ) 52 + -engine_add_module(TARGET ''${LIB} SRCS ''${SRCS} ''${SRCS_SHADERS} FILES ''${FILES} DEPENDENCIES frontend voxelrender) 53 + +engine_add_module(TARGET ''${LIB} SRCS ''${SRCS} ''${SRCS_SHADERS} FILES ''${FILES} DEPENDENCIES animation frontend voxelrender) 54 + generate_shaders(''${LIB} world water postprocess) 55 + 56 + set(TEST_SRCS 57 + '')]; 58 + 51 59 nativeBuildInputs = [ 52 - cmake3_22 60 + cmake 53 61 pkg-config 54 62 ninja 55 63 python3 ··· 69 77 #libpqxx 70 78 #mosquitto 71 79 ] ++ lib.optional stdenv.isLinux wayland-protocols 72 - ++ lib.optionals stdenv.isDarwin [ Carbon OpenCL ] 80 + ++ lib.optionals stdenv.isDarwin [ Carbon CoreServices OpenCL ] 73 81 ++ lib.optional (!stdenv.isDarwin) opencl-headers; 74 82 75 83 cmakeFlags = [ ··· 82 90 "-DGAMES=OFF" 83 91 "-DMAPVIEW=OFF" 84 92 "-DAIDEBUG=OFF" 85 - ]; 93 + ] ++ lib.optional stdenv.isDarwin "-DCORESERVICES_LIB=${CoreServices}"; 86 94 87 95 # Set the data directory for each executable. We cannot set it at build time 88 96 # with the PKGDATADIR cmake variable because each executable needs a specific ··· 97 105 ''; 98 106 99 107 passthru.tests = { 100 - voxconvert-roundtrip = callPackage ./test-voxconvert-roundtrip.nix {}; 108 + # There used to be a roundtrip test here, but it started failing on 0.0.17 109 + # Relevant upstream ticket: 110 + # https://github.com/mgerhardy/vengi/issues/113 111 + voxconvert-all-formats = callPackage ./test-voxconvert-all-formats.nix {}; 101 112 run-voxedit = nixosTests.vengi-tools; 102 113 }; 103 114 ··· 110 121 filemanager and a command line tool to convert between several voxel 111 122 formats. 112 123 ''; 113 - homepage = "https://mgerhardy.github.io/engine/"; 114 - downloadPage = "https://github.com/mgerhardy/engine/releases"; 124 + homepage = "https://mgerhardy.github.io/vengi/"; 125 + downloadPage = "https://github.com/mgerhardy/vengi/releases"; 115 126 license = [ licenses.mit licenses.cc-by-sa-30 ]; 116 127 maintainers = with maintainers; [ fgaz ]; 117 128 platforms = platforms.all; 129 + # Requires SDK 10.14 https://github.com/NixOS/nixpkgs/issues/101229 130 + broken = stdenv.isDarwin && stdenv.isx86_64; 118 131 }; 119 132 }
+15
pkgs/applications/graphics/vengi-tools/test-voxconvert-all-formats.nix
··· 1 + { stdenv 2 + , vengi-tools 3 + }: 4 + 5 + stdenv.mkDerivation { 6 + name = "vengi-tools-test-voxconvert-all-formats"; 7 + meta.timeout = 10; 8 + buildCommand = '' 9 + mkdir $out 10 + for format in vox qef qbt qb vxm vxr binvox gox cub vxl csv; do 11 + echo Testing $format export 12 + ${vengi-tools}/bin/vengi-voxconvert --input ${vengi-tools}/share/vengi-voxedit/chr_knight.qb --output $out/chr_knight.$format 13 + done 14 + ''; 15 + }
-15
pkgs/applications/graphics/vengi-tools/test-voxconvert-roundtrip.nix
··· 1 - { stdenv 2 - , vengi-tools 3 - }: 4 - 5 - stdenv.mkDerivation { 6 - name = "vengi-tools-test-voxconvert-roundtrip"; 7 - meta.timeout = 10; 8 - buildCommand = '' 9 - ${vengi-tools}/bin/vengi-voxconvert ${vengi-tools}/share/vengi-voxedit/chr_knight.qb chr_knight.vox 10 - ${vengi-tools}/bin/vengi-voxconvert chr_knight.vox chr_knight.qb 11 - ${vengi-tools}/bin/vengi-voxconvert chr_knight.qb chr_knight1.vox 12 - diff chr_knight.vox chr_knight1.vox 13 - touch $out 14 - ''; 15 - }
+2 -2
pkgs/applications/misc/ArchiSteamFarm/default.nix
··· 11 11 12 12 buildDotnetModule rec { 13 13 pname = "archisteamfarm"; 14 - version = "5.2.1.5"; 14 + version = "5.2.2.4"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "justarchinet"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "sha256-fjRf+9m1VGRq2ylqp5CP+FCPepUPyHjknSmJaei2yyE="; 20 + sha256 = "sha256-Q5gR+CbqoE9QwFjDpnKOzVZuRPUDBukJ0EpqhN5cAws="; 21 21 }; 22 22 23 23 dotnet-runtime = dotnetCorePackages.aspnetcore_6_0;
+1 -1
pkgs/applications/misc/ArchiSteamFarm/deps-aarch64-linux.nix
··· 161 161 (fetchNuGet { pname = "runtime.win.System.Net.Primitives"; version = "4.3.0"; sha256 = "1dixh195bi7473n17hspll6i562gghdz9m4jk8d4kzi1mlzjk9cf"; }) 162 162 (fetchNuGet { pname = "runtime.win.System.Net.Sockets"; version = "4.3.0"; sha256 = "0lr3zki831vs6qhk5wckv2b9qbfk9rcj0ds2926qvj1b9y9m6sck"; }) 163 163 (fetchNuGet { pname = "runtime.win.System.Runtime.Extensions"; version = "4.3.0"; sha256 = "1700famsxndccfbcdz9q14qb20p49lax67mqwpgy4gx3vja1yczr"; }) 164 - (fetchNuGet { pname = "SteamKit2"; version = "2.4.0"; sha256 = "14hi47zyp3nc21zjc4a7g6cg8zyq41y9gv35vb96yp1lab6kwa9r"; }) 164 + (fetchNuGet { pname = "SteamKit2"; version = "2.4.1"; sha256 = "13f7jra2d0kjlvnk4dghzhx8nhkd001i4xrkf6m19gisjvpjhpdr"; }) 165 165 (fetchNuGet { pname = "Swashbuckle.AspNetCore"; version = "6.2.3"; sha256 = "1kx50vliqcqw72aygkm2cs2q82pxdxz17gvz4chz6k858qj4gv0l"; }) 166 166 (fetchNuGet { pname = "Swashbuckle.AspNetCore.Annotations"; version = "6.2.3"; sha256 = "189i1ziv3xkdxpxhkpfx3xfji3iw124s88sqn3ga2vh04fbdak8x"; }) 167 167 (fetchNuGet { pname = "Swashbuckle.AspNetCore.Newtonsoft"; version = "6.2.3"; sha256 = "1r4z1mmgihnmcqb8zd1q6jbz1g72y5ggl833qhmd1q0wnq8awbs8"; })
+1 -1
pkgs/applications/misc/ArchiSteamFarm/deps-x86_64-linux.nix
··· 161 161 (fetchNuGet { pname = "runtime.win.System.Net.Primitives"; version = "4.3.0"; sha256 = "1dixh195bi7473n17hspll6i562gghdz9m4jk8d4kzi1mlzjk9cf"; }) 162 162 (fetchNuGet { pname = "runtime.win.System.Net.Sockets"; version = "4.3.0"; sha256 = "0lr3zki831vs6qhk5wckv2b9qbfk9rcj0ds2926qvj1b9y9m6sck"; }) 163 163 (fetchNuGet { pname = "runtime.win.System.Runtime.Extensions"; version = "4.3.0"; sha256 = "1700famsxndccfbcdz9q14qb20p49lax67mqwpgy4gx3vja1yczr"; }) 164 - (fetchNuGet { pname = "SteamKit2"; version = "2.4.0"; sha256 = "14hi47zyp3nc21zjc4a7g6cg8zyq41y9gv35vb96yp1lab6kwa9r"; }) 164 + (fetchNuGet { pname = "SteamKit2"; version = "2.4.1"; sha256 = "13f7jra2d0kjlvnk4dghzhx8nhkd001i4xrkf6m19gisjvpjhpdr"; }) 165 165 (fetchNuGet { pname = "Swashbuckle.AspNetCore"; version = "6.2.3"; sha256 = "1kx50vliqcqw72aygkm2cs2q82pxdxz17gvz4chz6k858qj4gv0l"; }) 166 166 (fetchNuGet { pname = "Swashbuckle.AspNetCore.Annotations"; version = "6.2.3"; sha256 = "189i1ziv3xkdxpxhkpfx3xfji3iw124s88sqn3ga2vh04fbdak8x"; }) 167 167 (fetchNuGet { pname = "Swashbuckle.AspNetCore.Newtonsoft"; version = "6.2.3"; sha256 = "1r4z1mmgihnmcqb8zd1q6jbz1g72y5ggl833qhmd1q0wnq8awbs8"; })
+2 -2
pkgs/applications/misc/ArchiSteamFarm/web-ui/default.nix
··· 11 11 repo = "ASF-ui"; 12 12 # updated by the update script 13 13 # this is always the commit that should be used with asf-ui from the latest asf version 14 - rev = "e292b5e3c37b0540d398fb4a04b10dd730976a5a"; 15 - sha256 = "1sxv2xkps2fln7di0i406nnhdqg4wd2yzgvwm5nfhawsq941g19z"; 14 + rev = "156992e88d5c695375e9f69c29f2c68bec24d2b1"; 15 + sha256 = "0zqiaj0957rr4kzw8q8zkxvd88nqw5ssym81dsd3pa0ypr4vqb4w"; 16 16 }; 17 17 18 18 in
+658 -950
pkgs/applications/misc/ArchiSteamFarm/web-ui/node-packages.nix
··· 4 4 5 5 let 6 6 sources = { 7 - "@babel/code-frame-7.16.0" = { 7 + "@babel/code-frame-7.16.7" = { 8 8 name = "_at_babel_slash_code-frame"; 9 9 packageName = "@babel/code-frame"; 10 - version = "7.16.0"; 10 + version = "7.16.7"; 11 11 src = fetchurl { 12 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz"; 13 - sha512 = "IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="; 12 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz"; 13 + sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="; 14 14 }; 15 15 }; 16 - "@babel/compat-data-7.16.4" = { 16 + "@babel/compat-data-7.16.8" = { 17 17 name = "_at_babel_slash_compat-data"; 18 18 packageName = "@babel/compat-data"; 19 - version = "7.16.4"; 19 + version = "7.16.8"; 20 20 src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz"; 22 - sha512 = "1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q=="; 21 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.8.tgz"; 22 + sha512 = "m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q=="; 23 23 }; 24 24 }; 25 - "@babel/core-7.16.5" = { 25 + "@babel/core-7.16.12" = { 26 26 name = "_at_babel_slash_core"; 27 27 packageName = "@babel/core"; 28 - version = "7.16.5"; 28 + version = "7.16.12"; 29 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/core/-/core-7.16.5.tgz"; 31 - sha512 = "wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ=="; 30 + url = "https://registry.npmjs.org/@babel/core/-/core-7.16.12.tgz"; 31 + sha512 = "dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg=="; 32 32 }; 33 33 }; 34 34 "@babel/eslint-parser-7.16.5" = { ··· 40 40 sha512 = "mUqYa46lgWqHKQ33Q6LNCGp/wPR3eqOYTUixHFsfrSQqRxH0+WOzca75iEjFr5RDGH1dDz622LaHhLOzOuQRUA=="; 41 41 }; 42 42 }; 43 - "@babel/generator-7.16.5" = { 43 + "@babel/generator-7.16.8" = { 44 44 name = "_at_babel_slash_generator"; 45 45 packageName = "@babel/generator"; 46 - version = "7.16.5"; 46 + version = "7.16.8"; 47 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.16.5.tgz"; 49 - sha512 = "kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA=="; 48 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz"; 49 + sha512 = "1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw=="; 50 50 }; 51 51 }; 52 - "@babel/helper-annotate-as-pure-7.16.0" = { 52 + "@babel/helper-annotate-as-pure-7.16.7" = { 53 53 name = "_at_babel_slash_helper-annotate-as-pure"; 54 54 packageName = "@babel/helper-annotate-as-pure"; 55 - version = "7.16.0"; 55 + version = "7.16.7"; 56 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz"; 58 - sha512 = "ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg=="; 57 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz"; 58 + sha512 = "s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw=="; 59 59 }; 60 60 }; 61 - "@babel/helper-builder-binary-assignment-operator-visitor-7.16.5" = { 61 + "@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" = { 62 62 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 63 63 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 64 - version = "7.16.5"; 64 + version = "7.16.7"; 65 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.5.tgz"; 67 - sha512 = "3JEA9G5dmmnIWdzaT9d0NmFRgYnWUThLsDaL7982H0XqqWr56lRrsmwheXFMjR+TMl7QMBb6mzy9kvgr1lRLUA=="; 66 + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz"; 67 + sha512 = "C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA=="; 68 68 }; 69 69 }; 70 - "@babel/helper-compilation-targets-7.16.3" = { 70 + "@babel/helper-compilation-targets-7.16.7" = { 71 71 name = "_at_babel_slash_helper-compilation-targets"; 72 72 packageName = "@babel/helper-compilation-targets"; 73 - version = "7.16.3"; 73 + version = "7.16.7"; 74 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz"; 76 - sha512 = "vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA=="; 75 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz"; 76 + sha512 = "mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA=="; 77 77 }; 78 78 }; 79 - "@babel/helper-create-class-features-plugin-7.16.5" = { 79 + "@babel/helper-create-class-features-plugin-7.16.10" = { 80 80 name = "_at_babel_slash_helper-create-class-features-plugin"; 81 81 packageName = "@babel/helper-create-class-features-plugin"; 82 - version = "7.16.5"; 82 + version = "7.16.10"; 83 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.5.tgz"; 85 - sha512 = "NEohnYA7mkB8L5JhU7BLwcBdU3j83IziR9aseMueWGeAjblbul3zzb8UvJ3a1zuBiqCMObzCJHFqKIQE6hTVmg=="; 84 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.10.tgz"; 85 + sha512 = "wDeej0pu3WN/ffTxMNCPW5UCiOav8IcLRxSIyp/9+IF2xJUM9h/OYjg0IJLHaL6F8oU8kqMz9nc1vryXhMsgXg=="; 86 86 }; 87 87 }; 88 - "@babel/helper-create-regexp-features-plugin-7.16.0" = { 88 + "@babel/helper-create-regexp-features-plugin-7.16.7" = { 89 89 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 90 90 packageName = "@babel/helper-create-regexp-features-plugin"; 91 - version = "7.16.0"; 91 + version = "7.16.7"; 92 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz"; 94 - sha512 = "3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA=="; 93 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.7.tgz"; 94 + sha512 = "fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g=="; 95 95 }; 96 96 }; 97 97 "@babel/helper-define-polyfill-provider-0.3.0" = { ··· 103 103 sha512 = "7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg=="; 104 104 }; 105 105 }; 106 - "@babel/helper-environment-visitor-7.16.5" = { 106 + "@babel/helper-environment-visitor-7.16.7" = { 107 107 name = "_at_babel_slash_helper-environment-visitor"; 108 108 packageName = "@babel/helper-environment-visitor"; 109 - version = "7.16.5"; 109 + version = "7.16.7"; 110 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz"; 112 - sha512 = "ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg=="; 111 + url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz"; 112 + sha512 = "SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag=="; 113 113 }; 114 114 }; 115 - "@babel/helper-explode-assignable-expression-7.16.0" = { 115 + "@babel/helper-explode-assignable-expression-7.16.7" = { 116 116 name = "_at_babel_slash_helper-explode-assignable-expression"; 117 117 packageName = "@babel/helper-explode-assignable-expression"; 118 - version = "7.16.0"; 118 + version = "7.16.7"; 119 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz"; 121 - sha512 = "Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ=="; 120 + url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz"; 121 + sha512 = "KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ=="; 122 122 }; 123 123 }; 124 - "@babel/helper-function-name-7.16.0" = { 124 + "@babel/helper-function-name-7.16.7" = { 125 125 name = "_at_babel_slash_helper-function-name"; 126 126 packageName = "@babel/helper-function-name"; 127 - version = "7.16.0"; 127 + version = "7.16.7"; 128 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz"; 130 - sha512 = "BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog=="; 129 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"; 130 + sha512 = "QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="; 131 131 }; 132 132 }; 133 - "@babel/helper-get-function-arity-7.16.0" = { 133 + "@babel/helper-get-function-arity-7.16.7" = { 134 134 name = "_at_babel_slash_helper-get-function-arity"; 135 135 packageName = "@babel/helper-get-function-arity"; 136 - version = "7.16.0"; 136 + version = "7.16.7"; 137 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz"; 139 - sha512 = "ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ=="; 138 + url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"; 139 + sha512 = "flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="; 140 140 }; 141 141 }; 142 - "@babel/helper-hoist-variables-7.16.0" = { 142 + "@babel/helper-hoist-variables-7.16.7" = { 143 143 name = "_at_babel_slash_helper-hoist-variables"; 144 144 packageName = "@babel/helper-hoist-variables"; 145 - version = "7.16.0"; 145 + version = "7.16.7"; 146 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz"; 148 - sha512 = "1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg=="; 147 + url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"; 148 + sha512 = "m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="; 149 149 }; 150 150 }; 151 - "@babel/helper-member-expression-to-functions-7.16.5" = { 151 + "@babel/helper-member-expression-to-functions-7.16.7" = { 152 152 name = "_at_babel_slash_helper-member-expression-to-functions"; 153 153 packageName = "@babel/helper-member-expression-to-functions"; 154 - version = "7.16.5"; 154 + version = "7.16.7"; 155 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.5.tgz"; 157 - sha512 = "7fecSXq7ZrLE+TWshbGT+HyCLkxloWNhTbU2QM1NTI/tDqyf0oZiMcEfYtDuUDCo528EOlt39G1rftea4bRZIw=="; 156 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz"; 157 + sha512 = "VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q=="; 158 158 }; 159 159 }; 160 - "@babel/helper-module-imports-7.16.0" = { 160 + "@babel/helper-module-imports-7.16.7" = { 161 161 name = "_at_babel_slash_helper-module-imports"; 162 162 packageName = "@babel/helper-module-imports"; 163 - version = "7.16.0"; 163 + version = "7.16.7"; 164 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz"; 166 - sha512 = "kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg=="; 165 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"; 166 + sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="; 167 167 }; 168 168 }; 169 - "@babel/helper-module-transforms-7.16.5" = { 169 + "@babel/helper-module-transforms-7.16.7" = { 170 170 name = "_at_babel_slash_helper-module-transforms"; 171 171 packageName = "@babel/helper-module-transforms"; 172 - version = "7.16.5"; 172 + version = "7.16.7"; 173 173 src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz"; 175 - sha512 = "CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ=="; 174 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz"; 175 + sha512 = "gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng=="; 176 176 }; 177 177 }; 178 - "@babel/helper-optimise-call-expression-7.16.0" = { 178 + "@babel/helper-optimise-call-expression-7.16.7" = { 179 179 name = "_at_babel_slash_helper-optimise-call-expression"; 180 180 packageName = "@babel/helper-optimise-call-expression"; 181 - version = "7.16.0"; 181 + version = "7.16.7"; 182 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz"; 184 - sha512 = "SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw=="; 185 - }; 186 - }; 187 - "@babel/helper-plugin-utils-7.16.5" = { 188 - name = "_at_babel_slash_helper-plugin-utils"; 189 - packageName = "@babel/helper-plugin-utils"; 190 - version = "7.16.5"; 191 - src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz"; 193 - sha512 = "59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ=="; 183 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz"; 184 + sha512 = "EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w=="; 194 185 }; 195 186 }; 196 - "@babel/helper-plugin-utils-7.8.0" = { 187 + "@babel/helper-plugin-utils-7.16.7" = { 197 188 name = "_at_babel_slash_helper-plugin-utils"; 198 189 packageName = "@babel/helper-plugin-utils"; 199 - version = "7.8.0"; 190 + version = "7.16.7"; 200 191 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.0.tgz"; 202 - sha512 = "+hAlRGdf8fHQAyNnDBqTHQhwdLURLdrCROoWaEQYiQhk2sV9Rhs+GoFZZfMJExTq9HG8o2NX3uN2G90bFtmFdA=="; 192 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz"; 193 + sha512 = "Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="; 203 194 }; 204 195 }; 205 - "@babel/helper-remap-async-to-generator-7.16.5" = { 196 + "@babel/helper-remap-async-to-generator-7.16.8" = { 206 197 name = "_at_babel_slash_helper-remap-async-to-generator"; 207 198 packageName = "@babel/helper-remap-async-to-generator"; 208 - version = "7.16.5"; 199 + version = "7.16.8"; 209 200 src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.5.tgz"; 211 - sha512 = "X+aAJldyxrOmN9v3FKp+Hu1NO69VWgYgDGq6YDykwRPzxs5f2N+X988CBXS7EQahDU+Vpet5QYMqLk+nsp+Qxw=="; 201 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz"; 202 + sha512 = "fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw=="; 212 203 }; 213 204 }; 214 - "@babel/helper-replace-supers-7.16.5" = { 205 + "@babel/helper-replace-supers-7.16.7" = { 215 206 name = "_at_babel_slash_helper-replace-supers"; 216 207 packageName = "@babel/helper-replace-supers"; 217 - version = "7.16.5"; 208 + version = "7.16.7"; 218 209 src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.5.tgz"; 220 - sha512 = "ao3seGVa/FZCMCCNDuBcqnBFSbdr8N2EW35mzojx3TwfIbdPmNK+JV6+2d5bR0Z71W5ocLnQp9en/cTF7pBJiQ=="; 210 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz"; 211 + sha512 = "y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw=="; 221 212 }; 222 213 }; 223 - "@babel/helper-simple-access-7.16.0" = { 214 + "@babel/helper-simple-access-7.16.7" = { 224 215 name = "_at_babel_slash_helper-simple-access"; 225 216 packageName = "@babel/helper-simple-access"; 226 - version = "7.16.0"; 217 + version = "7.16.7"; 227 218 src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz"; 229 - sha512 = "o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw=="; 219 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz"; 220 + sha512 = "ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g=="; 230 221 }; 231 222 }; 232 223 "@babel/helper-skip-transparent-expression-wrappers-7.16.0" = { ··· 238 229 sha512 = "+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw=="; 239 230 }; 240 231 }; 241 - "@babel/helper-split-export-declaration-7.16.0" = { 232 + "@babel/helper-split-export-declaration-7.16.7" = { 242 233 name = "_at_babel_slash_helper-split-export-declaration"; 243 234 packageName = "@babel/helper-split-export-declaration"; 244 - version = "7.16.0"; 235 + version = "7.16.7"; 245 236 src = fetchurl { 246 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz"; 247 - sha512 = "0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw=="; 237 + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"; 238 + sha512 = "xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="; 248 239 }; 249 240 }; 250 - "@babel/helper-validator-identifier-7.15.7" = { 241 + "@babel/helper-validator-identifier-7.16.7" = { 251 242 name = "_at_babel_slash_helper-validator-identifier"; 252 243 packageName = "@babel/helper-validator-identifier"; 253 - version = "7.15.7"; 244 + version = "7.16.7"; 254 245 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"; 256 - sha512 = "K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="; 246 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"; 247 + sha512 = "hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="; 257 248 }; 258 249 }; 259 - "@babel/helper-validator-option-7.14.5" = { 250 + "@babel/helper-validator-option-7.16.7" = { 260 251 name = "_at_babel_slash_helper-validator-option"; 261 252 packageName = "@babel/helper-validator-option"; 262 - version = "7.14.5"; 253 + version = "7.16.7"; 263 254 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"; 265 - sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="; 255 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"; 256 + sha512 = "TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="; 266 257 }; 267 258 }; 268 - "@babel/helper-wrap-function-7.16.5" = { 259 + "@babel/helper-wrap-function-7.16.8" = { 269 260 name = "_at_babel_slash_helper-wrap-function"; 270 261 packageName = "@babel/helper-wrap-function"; 271 - version = "7.16.5"; 262 + version = "7.16.8"; 272 263 src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.5.tgz"; 274 - sha512 = "2J2pmLBqUqVdJw78U0KPNdeE2qeuIyKoG4mKV7wAq3mc4jJG282UgjZw4ZYDnqiWQuS3Y3IYdF/AQ6CpyBV3VA=="; 264 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz"; 265 + sha512 = "8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw=="; 275 266 }; 276 267 }; 277 - "@babel/helpers-7.16.5" = { 268 + "@babel/helpers-7.16.7" = { 278 269 name = "_at_babel_slash_helpers"; 279 270 packageName = "@babel/helpers"; 280 - version = "7.16.5"; 271 + version = "7.16.7"; 281 272 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.5.tgz"; 283 - sha512 = "TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw=="; 273 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz"; 274 + sha512 = "9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw=="; 284 275 }; 285 276 }; 286 - "@babel/highlight-7.16.0" = { 277 + "@babel/highlight-7.16.7" = { 287 278 name = "_at_babel_slash_highlight"; 288 279 packageName = "@babel/highlight"; 289 - version = "7.16.0"; 280 + version = "7.16.7"; 290 281 src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz"; 292 - sha512 = "t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g=="; 282 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz"; 283 + sha512 = "aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw=="; 293 284 }; 294 285 }; 295 - "@babel/parser-7.16.5" = { 286 + "@babel/parser-7.16.12" = { 296 287 name = "_at_babel_slash_parser"; 297 288 packageName = "@babel/parser"; 298 - version = "7.16.5"; 289 + version = "7.16.12"; 299 290 src = fetchurl { 300 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.16.5.tgz"; 301 - sha512 = "+Ce7T5iPNWzfu9C1aB5tN3Lyafs5xb3Ic7vBWyZL2KXT3QSdD1dD3CvgOzPmQKoNNRt6uauc0XwNJTQtXC2/Mw=="; 291 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.16.12.tgz"; 292 + sha512 = "VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A=="; 302 293 }; 303 294 }; 304 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" = { 295 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" = { 305 296 name = "_at_babel_slash_plugin-bugfix-safari-id-destructuring-collision-in-function-expression"; 306 297 packageName = "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression"; 307 - version = "7.16.2"; 298 + version = "7.16.7"; 308 299 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz"; 310 - sha512 = "h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg=="; 300 + url = "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz"; 301 + sha512 = "anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg=="; 311 302 }; 312 303 }; 313 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" = { 304 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" = { 314 305 name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 315 306 packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 316 - version = "7.16.0"; 307 + version = "7.16.7"; 317 308 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz"; 319 - sha512 = "4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA=="; 309 + url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz"; 310 + sha512 = "di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw=="; 320 311 }; 321 312 }; 322 - "@babel/plugin-proposal-async-generator-functions-7.16.5" = { 313 + "@babel/plugin-proposal-async-generator-functions-7.16.8" = { 323 314 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 324 315 packageName = "@babel/plugin-proposal-async-generator-functions"; 325 - version = "7.16.5"; 316 + version = "7.16.8"; 326 317 src = fetchurl { 327 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.5.tgz"; 328 - sha512 = "C/FX+3HNLV6sz7AqbTQqEo1L9/kfrKjxcVtgyBCmvIgOjvuBVUWooDoi7trsLxOzCEo5FccjRvKHkfDsJFZlfA=="; 318 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz"; 319 + sha512 = "71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ=="; 329 320 }; 330 321 }; 331 - "@babel/plugin-proposal-class-properties-7.16.5" = { 322 + "@babel/plugin-proposal-class-properties-7.16.7" = { 332 323 name = "_at_babel_slash_plugin-proposal-class-properties"; 333 324 packageName = "@babel/plugin-proposal-class-properties"; 334 - version = "7.16.5"; 325 + version = "7.16.7"; 335 326 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.5.tgz"; 337 - sha512 = "pJD3HjgRv83s5dv1sTnDbZOaTjghKEz8KUn1Kbh2eAIRhGuyQ1XSeI4xVXU3UlIEVA3DAyIdxqT1eRn7Wcn55A=="; 327 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz"; 328 + sha512 = "IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww=="; 338 329 }; 339 330 }; 340 - "@babel/plugin-proposal-class-static-block-7.16.5" = { 331 + "@babel/plugin-proposal-class-static-block-7.16.7" = { 341 332 name = "_at_babel_slash_plugin-proposal-class-static-block"; 342 333 packageName = "@babel/plugin-proposal-class-static-block"; 343 - version = "7.16.5"; 334 + version = "7.16.7"; 344 335 src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.5.tgz"; 346 - sha512 = "EEFzuLZcm/rNJ8Q5krK+FRKdVkd6FjfzT9tuSZql9sQn64K0hHA2KLJ0DqVot9/iV6+SsuadC5yI39zWnm+nmQ=="; 336 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz"; 337 + sha512 = "dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw=="; 347 338 }; 348 339 }; 349 - "@babel/plugin-proposal-dynamic-import-7.16.5" = { 340 + "@babel/plugin-proposal-dynamic-import-7.16.7" = { 350 341 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 351 342 packageName = "@babel/plugin-proposal-dynamic-import"; 352 - version = "7.16.5"; 343 + version = "7.16.7"; 353 344 src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.5.tgz"; 355 - sha512 = "P05/SJZTTvHz79LNYTF8ff5xXge0kk5sIIWAypcWgX4BTRUgyHc8wRxJ/Hk+mU0KXldgOOslKaeqnhthcDJCJQ=="; 345 + url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz"; 346 + sha512 = "I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg=="; 356 347 }; 357 348 }; 358 - "@babel/plugin-proposal-export-namespace-from-7.16.5" = { 349 + "@babel/plugin-proposal-export-namespace-from-7.16.7" = { 359 350 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 360 351 packageName = "@babel/plugin-proposal-export-namespace-from"; 361 - version = "7.16.5"; 352 + version = "7.16.7"; 362 353 src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.5.tgz"; 364 - sha512 = "i+sltzEShH1vsVydvNaTRsgvq2vZsfyrd7K7vPLUU/KgS0D5yZMe6uipM0+izminnkKrEfdUnz7CxMRb6oHZWw=="; 354 + url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz"; 355 + sha512 = "ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA=="; 365 356 }; 366 357 }; 367 - "@babel/plugin-proposal-json-strings-7.16.5" = { 358 + "@babel/plugin-proposal-json-strings-7.16.7" = { 368 359 name = "_at_babel_slash_plugin-proposal-json-strings"; 369 360 packageName = "@babel/plugin-proposal-json-strings"; 370 - version = "7.16.5"; 361 + version = "7.16.7"; 371 362 src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.5.tgz"; 373 - sha512 = "QQJueTFa0y9E4qHANqIvMsuxM/qcLQmKttBACtPCQzGUEizsXDACGonlPiSwynHfOa3vNw0FPMVvQzbuXwh4SQ=="; 363 + url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz"; 364 + sha512 = "lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ=="; 374 365 }; 375 366 }; 376 - "@babel/plugin-proposal-logical-assignment-operators-7.16.5" = { 367 + "@babel/plugin-proposal-logical-assignment-operators-7.16.7" = { 377 368 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 378 369 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 379 - version = "7.16.5"; 370 + version = "7.16.7"; 380 371 src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.5.tgz"; 382 - sha512 = "xqibl7ISO2vjuQM+MzR3rkd0zfNWltk7n9QhaD8ghMmMceVguYrNDt7MikRyj4J4v3QehpnrU8RYLnC7z/gZLA=="; 372 + url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz"; 373 + sha512 = "K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg=="; 383 374 }; 384 375 }; 385 - "@babel/plugin-proposal-nullish-coalescing-operator-7.16.5" = { 376 + "@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" = { 386 377 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 387 378 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 388 - version = "7.16.5"; 379 + version = "7.16.7"; 389 380 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.5.tgz"; 391 - sha512 = "YwMsTp/oOviSBhrjwi0vzCUycseCYwoXnLiXIL3YNjHSMBHicGTz7GjVU/IGgz4DtOEXBdCNG72pvCX22ehfqg=="; 381 + url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz"; 382 + sha512 = "aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ=="; 392 383 }; 393 384 }; 394 - "@babel/plugin-proposal-numeric-separator-7.16.5" = { 385 + "@babel/plugin-proposal-numeric-separator-7.16.7" = { 395 386 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 396 387 packageName = "@babel/plugin-proposal-numeric-separator"; 397 - version = "7.16.5"; 388 + version = "7.16.7"; 398 389 src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.5.tgz"; 400 - sha512 = "DvB9l/TcsCRvsIV9v4jxR/jVP45cslTVC0PMVHvaJhhNuhn2Y1SOhCSFlPK777qLB5wb8rVDaNoqMTyOqtY5Iw=="; 390 + url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz"; 391 + sha512 = "vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw=="; 401 392 }; 402 393 }; 403 - "@babel/plugin-proposal-object-rest-spread-7.16.5" = { 394 + "@babel/plugin-proposal-object-rest-spread-7.16.7" = { 404 395 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 405 396 packageName = "@babel/plugin-proposal-object-rest-spread"; 406 - version = "7.16.5"; 397 + version = "7.16.7"; 407 398 src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.5.tgz"; 409 - sha512 = "UEd6KpChoyPhCoE840KRHOlGhEZFutdPDMGj+0I56yuTTOaT51GzmnEl/0uT41fB/vD2nT+Pci2KjezyE3HmUw=="; 399 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz"; 400 + sha512 = "3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA=="; 410 401 }; 411 402 }; 412 - "@babel/plugin-proposal-optional-catch-binding-7.16.5" = { 403 + "@babel/plugin-proposal-optional-catch-binding-7.16.7" = { 413 404 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 414 405 packageName = "@babel/plugin-proposal-optional-catch-binding"; 415 - version = "7.16.5"; 406 + version = "7.16.7"; 416 407 src = fetchurl { 417 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.5.tgz"; 418 - sha512 = "ihCMxY1Iljmx4bWy/PIMJGXN4NS4oUj1MKynwO07kiKms23pNvIn1DMB92DNB2R0EA882sw0VXIelYGdtF7xEQ=="; 408 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz"; 409 + sha512 = "eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA=="; 419 410 }; 420 411 }; 421 - "@babel/plugin-proposal-optional-chaining-7.16.5" = { 412 + "@babel/plugin-proposal-optional-chaining-7.16.7" = { 422 413 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 423 414 packageName = "@babel/plugin-proposal-optional-chaining"; 424 - version = "7.16.5"; 415 + version = "7.16.7"; 425 416 src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.5.tgz"; 427 - sha512 = "kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A=="; 417 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz"; 418 + sha512 = "eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA=="; 428 419 }; 429 420 }; 430 - "@babel/plugin-proposal-private-methods-7.16.5" = { 421 + "@babel/plugin-proposal-private-methods-7.16.11" = { 431 422 name = "_at_babel_slash_plugin-proposal-private-methods"; 432 423 packageName = "@babel/plugin-proposal-private-methods"; 433 - version = "7.16.5"; 424 + version = "7.16.11"; 434 425 src = fetchurl { 435 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.5.tgz"; 436 - sha512 = "+yFMO4BGT3sgzXo+lrq7orX5mAZt57DwUK6seqII6AcJnJOIhBJ8pzKH47/ql/d426uQ7YhN8DpUFirQzqYSUA=="; 426 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz"; 427 + sha512 = "F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw=="; 437 428 }; 438 429 }; 439 - "@babel/plugin-proposal-private-property-in-object-7.16.5" = { 430 + "@babel/plugin-proposal-private-property-in-object-7.16.7" = { 440 431 name = "_at_babel_slash_plugin-proposal-private-property-in-object"; 441 432 packageName = "@babel/plugin-proposal-private-property-in-object"; 442 - version = "7.16.5"; 433 + version = "7.16.7"; 443 434 src = fetchurl { 444 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.5.tgz"; 445 - sha512 = "+YGh5Wbw0NH3y/E5YMu6ci5qTDmAEVNoZ3I54aB6nVEOZ5BQ7QJlwKq5pYVucQilMByGn/bvX0af+uNaPRCabA=="; 435 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz"; 436 + sha512 = "rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ=="; 446 437 }; 447 438 }; 448 - "@babel/plugin-proposal-unicode-property-regex-7.16.5" = { 439 + "@babel/plugin-proposal-unicode-property-regex-7.16.7" = { 449 440 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 450 441 packageName = "@babel/plugin-proposal-unicode-property-regex"; 451 - version = "7.16.5"; 442 + version = "7.16.7"; 452 443 src = fetchurl { 453 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.5.tgz"; 454 - sha512 = "s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg=="; 444 + url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz"; 445 + sha512 = "QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg=="; 455 446 }; 456 447 }; 457 448 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 580 571 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 581 572 }; 582 573 }; 583 - "@babel/plugin-transform-arrow-functions-7.16.5" = { 574 + "@babel/plugin-transform-arrow-functions-7.16.7" = { 584 575 name = "_at_babel_slash_plugin-transform-arrow-functions"; 585 576 packageName = "@babel/plugin-transform-arrow-functions"; 586 - version = "7.16.5"; 577 + version = "7.16.7"; 587 578 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.5.tgz"; 589 - sha512 = "8bTHiiZyMOyfZFULjsCnYOWG059FVMes0iljEHSfARhNgFfpsqE92OrCffv3veSw9rwMkYcFe9bj0ZoXU2IGtQ=="; 579 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz"; 580 + sha512 = "9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ=="; 590 581 }; 591 582 }; 592 - "@babel/plugin-transform-async-to-generator-7.16.5" = { 583 + "@babel/plugin-transform-async-to-generator-7.16.8" = { 593 584 name = "_at_babel_slash_plugin-transform-async-to-generator"; 594 585 packageName = "@babel/plugin-transform-async-to-generator"; 595 - version = "7.16.5"; 586 + version = "7.16.8"; 596 587 src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.5.tgz"; 598 - sha512 = "TMXgfioJnkXU+XRoj7P2ED7rUm5jbnDWwlCuFVTpQboMfbSya5WrmubNBAMlk7KXvywpo8rd8WuYZkis1o2H8w=="; 588 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz"; 589 + sha512 = "MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg=="; 599 590 }; 600 591 }; 601 - "@babel/plugin-transform-block-scoped-functions-7.16.5" = { 592 + "@babel/plugin-transform-block-scoped-functions-7.16.7" = { 602 593 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 603 594 packageName = "@babel/plugin-transform-block-scoped-functions"; 604 - version = "7.16.5"; 595 + version = "7.16.7"; 605 596 src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.5.tgz"; 607 - sha512 = "BxmIyKLjUGksJ99+hJyL/HIxLIGnLKtw772zYDER7UuycDZ+Xvzs98ZQw6NGgM2ss4/hlFAaGiZmMNKvValEjw=="; 597 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz"; 598 + sha512 = "JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg=="; 608 599 }; 609 600 }; 610 - "@babel/plugin-transform-block-scoping-7.16.5" = { 601 + "@babel/plugin-transform-block-scoping-7.16.7" = { 611 602 name = "_at_babel_slash_plugin-transform-block-scoping"; 612 603 packageName = "@babel/plugin-transform-block-scoping"; 613 - version = "7.16.5"; 604 + version = "7.16.7"; 614 605 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.5.tgz"; 616 - sha512 = "JxjSPNZSiOtmxjX7PBRBeRJTUKTyJ607YUYeT0QJCNdsedOe+/rXITjP08eG8xUpsLfPirgzdCFN+h0w6RI+pQ=="; 606 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz"; 607 + sha512 = "ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ=="; 617 608 }; 618 609 }; 619 - "@babel/plugin-transform-classes-7.16.5" = { 610 + "@babel/plugin-transform-classes-7.16.7" = { 620 611 name = "_at_babel_slash_plugin-transform-classes"; 621 612 packageName = "@babel/plugin-transform-classes"; 622 - version = "7.16.5"; 613 + version = "7.16.7"; 623 614 src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.5.tgz"; 625 - sha512 = "DzJ1vYf/7TaCYy57J3SJ9rV+JEuvmlnvvyvYKFbk5u46oQbBvuB9/0w+YsVsxkOv8zVWKpDmUoj4T5ILHoXevA=="; 615 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz"; 616 + sha512 = "WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ=="; 626 617 }; 627 618 }; 628 - "@babel/plugin-transform-computed-properties-7.16.5" = { 619 + "@babel/plugin-transform-computed-properties-7.16.7" = { 629 620 name = "_at_babel_slash_plugin-transform-computed-properties"; 630 621 packageName = "@babel/plugin-transform-computed-properties"; 631 - version = "7.16.5"; 622 + version = "7.16.7"; 632 623 src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.5.tgz"; 634 - sha512 = "n1+O7xtU5lSLraRzX88CNcpl7vtGdPakKzww74bVwpAIRgz9JVLJJpOLb0uYqcOaXVM0TL6X0RVeIJGD2CnCkg=="; 624 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz"; 625 + sha512 = "gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw=="; 635 626 }; 636 627 }; 637 - "@babel/plugin-transform-destructuring-7.16.5" = { 628 + "@babel/plugin-transform-destructuring-7.16.7" = { 638 629 name = "_at_babel_slash_plugin-transform-destructuring"; 639 630 packageName = "@babel/plugin-transform-destructuring"; 640 - version = "7.16.5"; 631 + version = "7.16.7"; 641 632 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.5.tgz"; 643 - sha512 = "GuRVAsjq+c9YPK6NeTkRLWyQskDC099XkBSVO+6QzbnOnH2d/4mBVXYStaPrZD3dFRfg00I6BFJ9Atsjfs8mlg=="; 633 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz"; 634 + sha512 = "VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A=="; 644 635 }; 645 636 }; 646 - "@babel/plugin-transform-dotall-regex-7.16.5" = { 637 + "@babel/plugin-transform-dotall-regex-7.16.7" = { 647 638 name = "_at_babel_slash_plugin-transform-dotall-regex"; 648 639 packageName = "@babel/plugin-transform-dotall-regex"; 649 - version = "7.16.5"; 640 + version = "7.16.7"; 650 641 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.5.tgz"; 652 - sha512 = "iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw=="; 642 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz"; 643 + sha512 = "Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ=="; 653 644 }; 654 645 }; 655 - "@babel/plugin-transform-duplicate-keys-7.16.5" = { 646 + "@babel/plugin-transform-duplicate-keys-7.16.7" = { 656 647 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 657 648 packageName = "@babel/plugin-transform-duplicate-keys"; 658 - version = "7.16.5"; 649 + version = "7.16.7"; 659 650 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.5.tgz"; 661 - sha512 = "81tijpDg2a6I1Yhj4aWY1l3O1J4Cg/Pd7LfvuaH2VVInAkXtzibz9+zSPdUM1WvuUi128ksstAP0hM5w48vQgg=="; 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz"; 652 + sha512 = "03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw=="; 662 653 }; 663 654 }; 664 - "@babel/plugin-transform-exponentiation-operator-7.16.5" = { 655 + "@babel/plugin-transform-exponentiation-operator-7.16.7" = { 665 656 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 666 657 packageName = "@babel/plugin-transform-exponentiation-operator"; 667 - version = "7.16.5"; 658 + version = "7.16.7"; 668 659 src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.5.tgz"; 670 - sha512 = "12rba2HwemQPa7BLIKCzm1pT2/RuQHtSFHdNl41cFiC6oi4tcrp7gjB07pxQvFpcADojQywSjblQth6gJyE6CA=="; 660 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz"; 661 + sha512 = "8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA=="; 671 662 }; 672 663 }; 673 - "@babel/plugin-transform-for-of-7.16.5" = { 664 + "@babel/plugin-transform-for-of-7.16.7" = { 674 665 name = "_at_babel_slash_plugin-transform-for-of"; 675 666 packageName = "@babel/plugin-transform-for-of"; 676 - version = "7.16.5"; 667 + version = "7.16.7"; 677 668 src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.5.tgz"; 679 - sha512 = "+DpCAJFPAvViR17PIMi9x2AE34dll5wNlXO43wagAX2YcRGgEVHCNFC4azG85b4YyyFarvkc/iD5NPrz4Oneqw=="; 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz"; 670 + sha512 = "/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg=="; 680 671 }; 681 672 }; 682 - "@babel/plugin-transform-function-name-7.16.5" = { 673 + "@babel/plugin-transform-function-name-7.16.7" = { 683 674 name = "_at_babel_slash_plugin-transform-function-name"; 684 675 packageName = "@babel/plugin-transform-function-name"; 685 - version = "7.16.5"; 676 + version = "7.16.7"; 686 677 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.5.tgz"; 688 - sha512 = "Fuec/KPSpVLbGo6z1RPw4EE1X+z9gZk1uQmnYy7v4xr4TO9p41v1AoUuXEtyqAI7H+xNJYSICzRqZBhDEkd3kQ=="; 678 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz"; 679 + sha512 = "SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA=="; 689 680 }; 690 681 }; 691 - "@babel/plugin-transform-literals-7.16.5" = { 682 + "@babel/plugin-transform-literals-7.16.7" = { 692 683 name = "_at_babel_slash_plugin-transform-literals"; 693 684 packageName = "@babel/plugin-transform-literals"; 694 - version = "7.16.5"; 685 + version = "7.16.7"; 695 686 src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.5.tgz"; 697 - sha512 = "B1j9C/IfvshnPcklsc93AVLTrNVa69iSqztylZH6qnmiAsDDOmmjEYqOm3Ts2lGSgTSywnBNiqC949VdD0/gfw=="; 687 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz"; 688 + sha512 = "6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ=="; 698 689 }; 699 690 }; 700 - "@babel/plugin-transform-member-expression-literals-7.16.5" = { 691 + "@babel/plugin-transform-member-expression-literals-7.16.7" = { 701 692 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 702 693 packageName = "@babel/plugin-transform-member-expression-literals"; 703 - version = "7.16.5"; 694 + version = "7.16.7"; 704 695 src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.5.tgz"; 706 - sha512 = "d57i3vPHWgIde/9Y8W/xSFUndhvhZN5Wu2TjRrN1MVz5KzdUihKnfDVlfP1U7mS5DNj/WHHhaE4/tTi4hIyHwQ=="; 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz"; 697 + sha512 = "mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw=="; 707 698 }; 708 699 }; 709 - "@babel/plugin-transform-modules-amd-7.16.5" = { 700 + "@babel/plugin-transform-modules-amd-7.16.7" = { 710 701 name = "_at_babel_slash_plugin-transform-modules-amd"; 711 702 packageName = "@babel/plugin-transform-modules-amd"; 712 - version = "7.16.5"; 703 + version = "7.16.7"; 713 704 src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.5.tgz"; 715 - sha512 = "oHI15S/hdJuSCfnwIz+4lm6wu/wBn7oJ8+QrkzPPwSFGXk8kgdI/AIKcbR/XnD1nQVMg/i6eNaXpszbGuwYDRQ=="; 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz"; 706 + sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g=="; 716 707 }; 717 708 }; 718 - "@babel/plugin-transform-modules-commonjs-7.16.5" = { 709 + "@babel/plugin-transform-modules-commonjs-7.16.8" = { 719 710 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 720 711 packageName = "@babel/plugin-transform-modules-commonjs"; 721 - version = "7.16.5"; 712 + version = "7.16.8"; 722 713 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.5.tgz"; 724 - sha512 = "ABhUkxvoQyqhCWyb8xXtfwqNMJD7tx+irIRnUh6lmyFud7Jln1WzONXKlax1fg/ey178EXbs4bSGNd6PngO+SQ=="; 714 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz"; 715 + sha512 = "oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA=="; 725 716 }; 726 717 }; 727 - "@babel/plugin-transform-modules-systemjs-7.16.5" = { 718 + "@babel/plugin-transform-modules-systemjs-7.16.7" = { 728 719 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 729 720 packageName = "@babel/plugin-transform-modules-systemjs"; 730 - version = "7.16.5"; 721 + version = "7.16.7"; 731 722 src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.5.tgz"; 733 - sha512 = "53gmLdScNN28XpjEVIm7LbWnD/b/TpbwKbLk6KV4KqC9WyU6rq1jnNmVG6UgAdQZVVGZVoik3DqHNxk4/EvrjA=="; 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz"; 724 + sha512 = "DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw=="; 734 725 }; 735 726 }; 736 - "@babel/plugin-transform-modules-umd-7.16.5" = { 727 + "@babel/plugin-transform-modules-umd-7.16.7" = { 737 728 name = "_at_babel_slash_plugin-transform-modules-umd"; 738 729 packageName = "@babel/plugin-transform-modules-umd"; 739 - version = "7.16.5"; 730 + version = "7.16.7"; 740 731 src = fetchurl { 741 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.5.tgz"; 742 - sha512 = "qTFnpxHMoenNHkS3VoWRdwrcJ3FhX567GvDA3hRZKF0Dj8Fmg0UzySZp3AP2mShl/bzcywb/UWAMQIjA1bhXvw=="; 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz"; 733 + sha512 = "EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ=="; 743 734 }; 744 735 }; 745 - "@babel/plugin-transform-named-capturing-groups-regex-7.16.5" = { 736 + "@babel/plugin-transform-named-capturing-groups-regex-7.16.8" = { 746 737 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 747 738 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 748 - version = "7.16.5"; 739 + version = "7.16.8"; 749 740 src = fetchurl { 750 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.5.tgz"; 751 - sha512 = "/wqGDgvFUeKELW6ex6QB7dLVRkd5ehjw34tpXu1nhKC0sFfmaLabIswnpf8JgDyV2NeDmZiwoOb0rAmxciNfjA=="; 741 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz"; 742 + sha512 = "j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw=="; 752 743 }; 753 744 }; 754 - "@babel/plugin-transform-new-target-7.16.5" = { 745 + "@babel/plugin-transform-new-target-7.16.7" = { 755 746 name = "_at_babel_slash_plugin-transform-new-target"; 756 747 packageName = "@babel/plugin-transform-new-target"; 757 - version = "7.16.5"; 748 + version = "7.16.7"; 758 749 src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.5.tgz"; 760 - sha512 = "ZaIrnXF08ZC8jnKR4/5g7YakGVL6go6V9ql6Jl3ecO8PQaQqFE74CuM384kezju7Z9nGCCA20BqZaR1tJ/WvHg=="; 750 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz"; 751 + sha512 = "xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg=="; 761 752 }; 762 753 }; 763 - "@babel/plugin-transform-object-super-7.16.5" = { 754 + "@babel/plugin-transform-object-super-7.16.7" = { 764 755 name = "_at_babel_slash_plugin-transform-object-super"; 765 756 packageName = "@babel/plugin-transform-object-super"; 766 - version = "7.16.5"; 757 + version = "7.16.7"; 767 758 src = fetchurl { 768 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.5.tgz"; 769 - sha512 = "tded+yZEXuxt9Jdtkc1RraW1zMF/GalVxaVVxh41IYwirdRgyAxxxCKZ9XB7LxZqmsjfjALxupNE1MIz9KH+Zg=="; 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz"; 760 + sha512 = "14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw=="; 770 761 }; 771 762 }; 772 - "@babel/plugin-transform-parameters-7.16.5" = { 763 + "@babel/plugin-transform-parameters-7.16.7" = { 773 764 name = "_at_babel_slash_plugin-transform-parameters"; 774 765 packageName = "@babel/plugin-transform-parameters"; 775 - version = "7.16.5"; 766 + version = "7.16.7"; 776 767 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.5.tgz"; 778 - sha512 = "B3O6AL5oPop1jAVg8CV+haeUte9oFuY85zu0jwnRNZZi3tVAbJriu5tag/oaO2kGaQM/7q7aGPBlTI5/sr9enA=="; 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz"; 769 + sha512 = "AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw=="; 779 770 }; 780 771 }; 781 - "@babel/plugin-transform-property-literals-7.16.5" = { 772 + "@babel/plugin-transform-property-literals-7.16.7" = { 782 773 name = "_at_babel_slash_plugin-transform-property-literals"; 783 774 packageName = "@babel/plugin-transform-property-literals"; 784 - version = "7.16.5"; 775 + version = "7.16.7"; 785 776 src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.5.tgz"; 787 - sha512 = "+IRcVW71VdF9pEH/2R/Apab4a19LVvdVsr/gEeotH00vSDVlKD+XgfSIw+cgGWsjDB/ziqGv/pGoQZBIiQVXHg=="; 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz"; 778 + sha512 = "z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw=="; 788 779 }; 789 780 }; 790 - "@babel/plugin-transform-regenerator-7.16.5" = { 781 + "@babel/plugin-transform-regenerator-7.16.7" = { 791 782 name = "_at_babel_slash_plugin-transform-regenerator"; 792 783 packageName = "@babel/plugin-transform-regenerator"; 793 - version = "7.16.5"; 784 + version = "7.16.7"; 794 785 src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.5.tgz"; 796 - sha512 = "2z+it2eVWU8TtQQRauvGUqZwLy4+7rTfo6wO4npr+fvvN1SW30ZF3O/ZRCNmTuu4F5MIP8OJhXAhRV5QMJOuYg=="; 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz"; 787 + sha512 = "mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q=="; 797 788 }; 798 789 }; 799 - "@babel/plugin-transform-reserved-words-7.16.5" = { 790 + "@babel/plugin-transform-reserved-words-7.16.7" = { 800 791 name = "_at_babel_slash_plugin-transform-reserved-words"; 801 792 packageName = "@babel/plugin-transform-reserved-words"; 802 - version = "7.16.5"; 793 + version = "7.16.7"; 803 794 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.5.tgz"; 805 - sha512 = "aIB16u8lNcf7drkhXJRoggOxSTUAuihTSTfAcpynowGJOZiGf+Yvi7RuTwFzVYSYPmWyARsPqUGoZWWWxLiknw=="; 795 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz"; 796 + sha512 = "KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg=="; 806 797 }; 807 798 }; 808 - "@babel/plugin-transform-shorthand-properties-7.16.5" = { 799 + "@babel/plugin-transform-shorthand-properties-7.16.7" = { 809 800 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 810 801 packageName = "@babel/plugin-transform-shorthand-properties"; 811 - version = "7.16.5"; 802 + version = "7.16.7"; 812 803 src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.5.tgz"; 814 - sha512 = "ZbuWVcY+MAXJuuW7qDoCwoxDUNClfZxoo7/4swVbOW1s/qYLOMHlm9YRWMsxMFuLs44eXsv4op1vAaBaBaDMVg=="; 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz"; 805 + sha512 = "hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg=="; 815 806 }; 816 807 }; 817 - "@babel/plugin-transform-spread-7.16.5" = { 808 + "@babel/plugin-transform-spread-7.16.7" = { 818 809 name = "_at_babel_slash_plugin-transform-spread"; 819 810 packageName = "@babel/plugin-transform-spread"; 820 - version = "7.16.5"; 811 + version = "7.16.7"; 821 812 src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.5.tgz"; 823 - sha512 = "5d6l/cnG7Lw4tGHEoga4xSkYp1euP7LAtrah1h1PgJ3JY7yNsjybsxQAnVK4JbtReZ/8z6ASVmd3QhYYKLaKZw=="; 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz"; 814 + sha512 = "+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg=="; 824 815 }; 825 816 }; 826 - "@babel/plugin-transform-sticky-regex-7.16.5" = { 817 + "@babel/plugin-transform-sticky-regex-7.16.7" = { 827 818 name = "_at_babel_slash_plugin-transform-sticky-regex"; 828 819 packageName = "@babel/plugin-transform-sticky-regex"; 829 - version = "7.16.5"; 820 + version = "7.16.7"; 830 821 src = fetchurl { 831 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.5.tgz"; 832 - sha512 = "usYsuO1ID2LXxzuUxifgWtJemP7wL2uZtyrTVM4PKqsmJycdS4U4mGovL5xXkfUheds10Dd2PjoQLXw6zCsCbg=="; 822 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz"; 823 + sha512 = "NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw=="; 833 824 }; 834 825 }; 835 - "@babel/plugin-transform-template-literals-7.16.5" = { 826 + "@babel/plugin-transform-template-literals-7.16.7" = { 836 827 name = "_at_babel_slash_plugin-transform-template-literals"; 837 828 packageName = "@babel/plugin-transform-template-literals"; 838 - version = "7.16.5"; 829 + version = "7.16.7"; 839 830 src = fetchurl { 840 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.5.tgz"; 841 - sha512 = "gnyKy9RyFhkovex4BjKWL3BVYzUDG6zC0gba7VMLbQoDuqMfJ1SDXs8k/XK41Mmt1Hyp4qNAvGFb9hKzdCqBRQ=="; 831 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz"; 832 + sha512 = "VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA=="; 842 833 }; 843 834 }; 844 - "@babel/plugin-transform-typeof-symbol-7.16.5" = { 835 + "@babel/plugin-transform-typeof-symbol-7.16.7" = { 845 836 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 846 837 packageName = "@babel/plugin-transform-typeof-symbol"; 847 - version = "7.16.5"; 838 + version = "7.16.7"; 848 839 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.5.tgz"; 850 - sha512 = "ldxCkW180qbrvyCVDzAUZqB0TAeF8W/vGJoRcaf75awm6By+PxfJKvuqVAnq8N9wz5Xa6mSpM19OfVKKVmGHSQ=="; 840 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz"; 841 + sha512 = "p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ=="; 851 842 }; 852 843 }; 853 - "@babel/plugin-transform-unicode-escapes-7.16.5" = { 844 + "@babel/plugin-transform-unicode-escapes-7.16.7" = { 854 845 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 855 846 packageName = "@babel/plugin-transform-unicode-escapes"; 856 - version = "7.16.5"; 847 + version = "7.16.7"; 857 848 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.5.tgz"; 859 - sha512 = "shiCBHTIIChGLdyojsKQjoAyB8MBwat25lKM7MJjbe1hE0bgIppD+LX9afr41lLHOhqceqeWl4FkLp+Bgn9o1Q=="; 849 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz"; 850 + sha512 = "TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q=="; 860 851 }; 861 852 }; 862 - "@babel/plugin-transform-unicode-regex-7.16.5" = { 853 + "@babel/plugin-transform-unicode-regex-7.16.7" = { 863 854 name = "_at_babel_slash_plugin-transform-unicode-regex"; 864 855 packageName = "@babel/plugin-transform-unicode-regex"; 865 - version = "7.16.5"; 856 + version = "7.16.7"; 866 857 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.5.tgz"; 868 - sha512 = "GTJ4IW012tiPEMMubd7sD07iU9O/LOo8Q/oU4xNhcaq0Xn8+6TcUQaHtC8YxySo1T+ErQ8RaWogIEeFhKGNPzw=="; 858 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz"; 859 + sha512 = "oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q=="; 869 860 }; 870 861 }; 871 - "@babel/preset-env-7.16.5" = { 862 + "@babel/preset-env-7.16.11" = { 872 863 name = "_at_babel_slash_preset-env"; 873 864 packageName = "@babel/preset-env"; 874 - version = "7.16.5"; 865 + version = "7.16.11"; 875 866 src = fetchurl { 876 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.5.tgz"; 877 - sha512 = "MiJJW5pwsktG61NDxpZ4oJ1CKxM1ncam9bzRtx9g40/WkLRkxFP6mhpkYV0/DxcciqoiHicx291+eUQrXb/SfQ=="; 867 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz"; 868 + sha512 = "qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g=="; 878 869 }; 879 870 }; 880 871 "@babel/preset-modules-0.1.5" = { ··· 895 886 sha512 = "/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg=="; 896 887 }; 897 888 }; 898 - "@babel/template-7.16.0" = { 889 + "@babel/template-7.16.7" = { 899 890 name = "_at_babel_slash_template"; 900 891 packageName = "@babel/template"; 901 - version = "7.16.0"; 892 + version = "7.16.7"; 902 893 src = fetchurl { 903 - url = "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz"; 904 - sha512 = "MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A=="; 894 + url = "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz"; 895 + sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 905 896 }; 906 897 }; 907 - "@babel/traverse-7.16.5" = { 898 + "@babel/traverse-7.16.10" = { 908 899 name = "_at_babel_slash_traverse"; 909 900 packageName = "@babel/traverse"; 910 - version = "7.16.5"; 901 + version = "7.16.10"; 911 902 src = fetchurl { 912 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.5.tgz"; 913 - sha512 = "FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ=="; 903 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.10.tgz"; 904 + sha512 = "yzuaYXoRJBGMlBhsMJoUW7G1UmSb/eXr/JHYM/MsOJgavJibLwASijW7oXBdw3NQ6T0bW7Ty5P/VarOs9cHmqw=="; 914 905 }; 915 906 }; 916 - "@babel/types-7.16.0" = { 907 + "@babel/types-7.16.8" = { 917 908 name = "_at_babel_slash_types"; 918 909 packageName = "@babel/types"; 919 - version = "7.16.0"; 910 + version = "7.16.8"; 920 911 src = fetchurl { 921 - url = "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz"; 922 - sha512 = "PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg=="; 912 + url = "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz"; 913 + sha512 = "smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg=="; 923 914 }; 924 915 }; 925 916 "@discoveryjs/json-ext-0.5.5" = { ··· 1048 1039 sha512 = "ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g=="; 1049 1040 }; 1050 1041 }; 1051 - "@types/bonjour-3.5.9" = { 1042 + "@types/bonjour-3.5.10" = { 1052 1043 name = "_at_types_slash_bonjour"; 1053 1044 packageName = "@types/bonjour"; 1054 - version = "3.5.9"; 1045 + version = "3.5.10"; 1055 1046 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.9.tgz"; 1057 - sha512 = "VkZUiYevvtPyFu5XtpYw9a8moCSzxgjs5PAFF4yXjA7eYHvzBlXe+eJdqBBNWWVzI1r7Ki0KxMYvaQuhm+6f5A=="; 1047 + url = "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz"; 1048 + sha512 = "p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw=="; 1058 1049 }; 1059 1050 }; 1060 1051 "@types/connect-3.4.35" = { ··· 1075 1066 sha512 = "h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw=="; 1076 1067 }; 1077 1068 }; 1078 - "@types/eslint-8.2.1" = { 1069 + "@types/eslint-8.2.2" = { 1079 1070 name = "_at_types_slash_eslint"; 1080 1071 packageName = "@types/eslint"; 1081 - version = "8.2.1"; 1072 + version = "8.2.2"; 1082 1073 src = fetchurl { 1083 - url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.1.tgz"; 1084 - sha512 = "UP9rzNn/XyGwb5RQ2fok+DzcIRIYwc16qTXse5+Smsy8MOIccCChT15KAwnsgQx4PzJkaMq4myFyZ4CL5TjhIQ=="; 1074 + url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.2.tgz"; 1075 + sha512 = "nQxgB8/Sg+QKhnV8e0WzPpxjIGT3tuJDDzybkDi8ItE/IgTlHo07U0shaIjzhcvQxlq9SDRE42lsJ23uvEgJ2A=="; 1085 1076 }; 1086 1077 }; 1087 - "@types/eslint-scope-3.7.1" = { 1078 + "@types/eslint-scope-3.7.3" = { 1088 1079 name = "_at_types_slash_eslint-scope"; 1089 1080 packageName = "@types/eslint-scope"; 1090 - version = "3.7.1"; 1081 + version = "3.7.3"; 1091 1082 src = fetchurl { 1092 - url = "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz"; 1093 - sha512 = "SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g=="; 1083 + url = "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz"; 1084 + sha512 = "PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g=="; 1094 1085 }; 1095 1086 }; 1096 1087 "@types/estree-0.0.50" = { ··· 1111 1102 sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA=="; 1112 1103 }; 1113 1104 }; 1114 - "@types/express-serve-static-core-4.17.26" = { 1105 + "@types/express-serve-static-core-4.17.27" = { 1115 1106 name = "_at_types_slash_express-serve-static-core"; 1116 1107 packageName = "@types/express-serve-static-core"; 1117 - version = "4.17.26"; 1108 + version = "4.17.27"; 1118 1109 src = fetchurl { 1119 - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.26.tgz"; 1120 - sha512 = "zeu3tpouA043RHxW0gzRxwCHchMgftE8GArRsvYT0ByDMbn19olQHx5jLue0LxWY6iYtXb7rXmuVtSkhy9YZvQ=="; 1110 + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.27.tgz"; 1111 + sha512 = "e/sVallzUTPdyOTiqi8O8pMdBBphscvI6E4JYaKlja4Lm+zh7UFSSdW5VMkRbhDtmrONqOUHOXRguPsDckzxNA=="; 1121 1112 }; 1122 1113 }; 1123 1114 "@types/glob-7.1.4" = { ··· 1147 1138 sha512 = "5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA=="; 1148 1139 }; 1149 1140 }; 1150 - "@types/json-schema-7.0.8" = { 1151 - name = "_at_types_slash_json-schema"; 1152 - packageName = "@types/json-schema"; 1153 - version = "7.0.8"; 1154 - src = fetchurl { 1155 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.8.tgz"; 1156 - sha512 = "YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg=="; 1157 - }; 1158 - }; 1159 1141 "@types/json-schema-7.0.9" = { 1160 1142 name = "_at_types_slash_json-schema"; 1161 1143 packageName = "@types/json-schema"; ··· 1480 1462 sha512 = "yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q=="; 1481 1463 }; 1482 1464 }; 1483 - "acorn-8.6.0" = { 1465 + "acorn-8.7.0" = { 1484 1466 name = "acorn"; 1485 1467 packageName = "acorn"; 1486 - version = "8.6.0"; 1468 + version = "8.7.0"; 1487 1469 src = fetchurl { 1488 - url = "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz"; 1489 - sha512 = "U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw=="; 1470 + url = "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz"; 1471 + sha512 = "V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ=="; 1490 1472 }; 1491 1473 }; 1492 1474 "acorn-import-assertions-1.8.0" = { ··· 1561 1543 sha512 = "x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw=="; 1562 1544 }; 1563 1545 }; 1546 + "ajv-8.9.0" = { 1547 + name = "ajv"; 1548 + packageName = "ajv"; 1549 + version = "8.9.0"; 1550 + src = fetchurl { 1551 + url = "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz"; 1552 + sha512 = "qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ=="; 1553 + }; 1554 + }; 1564 1555 "ajv-formats-2.1.1" = { 1565 1556 name = "ajv-formats"; 1566 1557 packageName = "ajv-formats"; ··· 1588 1579 sha512 = "YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw=="; 1589 1580 }; 1590 1581 }; 1591 - "ansi-colors-4.1.1" = { 1592 - name = "ansi-colors"; 1593 - packageName = "ansi-colors"; 1594 - version = "4.1.1"; 1595 - src = fetchurl { 1596 - url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"; 1597 - sha512 = "JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="; 1598 - }; 1599 - }; 1600 1582 "ansi-html-community-0.0.8" = { 1601 1583 name = "ansi-html-community"; 1602 1584 packageName = "ansi-html-community"; ··· 1741 1723 sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; 1742 1724 }; 1743 1725 }; 1744 - "axios-0.24.0" = { 1726 + "axios-0.25.0" = { 1745 1727 name = "axios"; 1746 1728 packageName = "axios"; 1747 - version = "0.24.0"; 1729 + version = "0.25.0"; 1748 1730 src = fetchurl { 1749 - url = "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz"; 1750 - sha512 = "Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA=="; 1731 + url = "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz"; 1732 + sha512 = "cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g=="; 1751 1733 }; 1752 1734 }; 1753 1735 "babel-loader-8.2.3" = { ··· 1777 1759 sha512 = "wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA=="; 1778 1760 }; 1779 1761 }; 1780 - "babel-plugin-polyfill-corejs3-0.4.0" = { 1762 + "babel-plugin-polyfill-corejs3-0.5.0" = { 1781 1763 name = "babel-plugin-polyfill-corejs3"; 1782 1764 packageName = "babel-plugin-polyfill-corejs3"; 1783 - version = "0.4.0"; 1765 + version = "0.5.0"; 1784 1766 src = fetchurl { 1785 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz"; 1786 - sha512 = "YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw=="; 1767 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.0.tgz"; 1768 + sha512 = "Hcrgnmkf+4JTj73GbK3bBhlVPiLL47owUAnoJIf69Hakl3q+KfodbDXiZWGMM7iqCZTxCG3Z2VRfPNYES4rXqQ=="; 1787 1769 }; 1788 1770 }; 1789 1771 "babel-plugin-polyfill-regenerator-0.3.0" = { ··· 1894 1876 sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; 1895 1877 }; 1896 1878 }; 1897 - "browserslist-4.16.6" = { 1898 - name = "browserslist"; 1899 - packageName = "browserslist"; 1900 - version = "4.16.6"; 1901 - src = fetchurl { 1902 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz"; 1903 - sha512 = "Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ=="; 1904 - }; 1905 - }; 1906 - "browserslist-4.18.1" = { 1879 + "browserslist-4.19.1" = { 1907 1880 name = "browserslist"; 1908 1881 packageName = "browserslist"; 1909 - version = "4.18.1"; 1882 + version = "4.19.1"; 1910 1883 src = fetchurl { 1911 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.18.1.tgz"; 1912 - sha512 = "8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ=="; 1884 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz"; 1885 + sha512 = "u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A=="; 1913 1886 }; 1914 1887 }; 1915 1888 "buffer-from-1.1.1" = { ··· 1984 1957 sha512 = "gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw=="; 1985 1958 }; 1986 1959 }; 1987 - "caniuse-lite-1.0.30001234" = { 1960 + "caniuse-lite-1.0.30001294" = { 1988 1961 name = "caniuse-lite"; 1989 1962 packageName = "caniuse-lite"; 1990 - version = "1.0.30001234"; 1963 + version = "1.0.30001294"; 1991 1964 src = fetchurl { 1992 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001234.tgz"; 1993 - sha512 = "a3gjUVKkmwLdNysa1xkUAwN2VfJUJyVW47rsi3aCbkRCtbHAfo+rOsCqVw29G6coQ8gzAPb5XBXwiGHwme3isA=="; 1965 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001294.tgz"; 1966 + sha512 = "LiMlrs1nSKZ8qkNhpUf5KD0Al1KCBE3zaT7OLOwEkagXMEDij98SiOovn9wxVGQpklk9vVC/pUSqgYmkmKOS8g=="; 1994 1967 }; 1995 1968 }; 1996 - "caniuse-lite-1.0.30001286" = { 1969 + "caniuse-lite-1.0.30001298" = { 1997 1970 name = "caniuse-lite"; 1998 1971 packageName = "caniuse-lite"; 1999 - version = "1.0.30001286"; 1972 + version = "1.0.30001298"; 2000 1973 src = fetchurl { 2001 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001286.tgz"; 2002 - sha512 = "zaEMRH6xg8ESMi2eQ3R4eZ5qw/hJiVsO/HlLwniIwErij0JDr9P+8V4dtx1l+kLq6j3yy8l8W4fst1lBnat5wQ=="; 1974 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001298.tgz"; 1975 + sha512 = "AcKqikjMLlvghZL/vfTHorlQsLDhGRalYf1+GmWCf5SCMziSGjRYQW/JEksj14NaYHIR6KIhrFAy0HV5C25UzQ=="; 1976 + }; 1977 + }; 1978 + "caniuse-lite-1.0.30001299" = { 1979 + name = "caniuse-lite"; 1980 + packageName = "caniuse-lite"; 1981 + version = "1.0.30001299"; 1982 + src = fetchurl { 1983 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001299.tgz"; 1984 + sha512 = "iujN4+x7QzqA2NCSrS5VUy+4gLmRd4xv6vbBBsmfVqTx8bLAD8097euLqQgKxSVLvxjSDcvF1T/i9ocgnUFexw=="; 2003 1985 }; 2004 1986 }; 2005 1987 "chalk-2.4.2" = { ··· 2108 2090 src = fetchurl { 2109 2091 url = "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"; 2110 2092 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2111 - }; 2112 - }; 2113 - "colorette-1.2.2" = { 2114 - name = "colorette"; 2115 - packageName = "colorette"; 2116 - version = "1.2.2"; 2117 - src = fetchurl { 2118 - url = "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz"; 2119 - sha512 = "MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w=="; 2120 2093 }; 2121 2094 }; 2122 2095 "colorette-2.0.16" = { ··· 2272 2245 sha512 = "i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw=="; 2273 2246 }; 2274 2247 }; 2275 - "copy-webpack-plugin-10.2.0" = { 2248 + "copy-webpack-plugin-10.2.1" = { 2276 2249 name = "copy-webpack-plugin"; 2277 2250 packageName = "copy-webpack-plugin"; 2278 - version = "10.2.0"; 2251 + version = "10.2.1"; 2279 2252 src = fetchurl { 2280 - url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.0.tgz"; 2281 - sha512 = "my6iXII95c78w14HzYCNya5TlJYa44lOppAge5GSTMM1SyDxNsVGCJvhP4/ld6snm8lzjn3XOonMZD6s1L86Og=="; 2253 + url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.1.tgz"; 2254 + sha512 = "nr81NhCAIpAWXGCK5thrKmfCQ6GDY0L5RN0U+BnIn/7Us55+UCex5ANNsNKmIVtDRnk0Ecf+/kzp9SUVrrBMLg=="; 2282 2255 }; 2283 2256 }; 2284 - "core-js-compat-3.19.3" = { 2257 + "core-js-compat-3.20.2" = { 2285 2258 name = "core-js-compat"; 2286 2259 packageName = "core-js-compat"; 2287 - version = "3.19.3"; 2260 + version = "3.20.2"; 2288 2261 src = fetchurl { 2289 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.19.3.tgz"; 2290 - sha512 = "59tYzuWgEEVU9r+SRgceIGXSSUn47JknoiXW6Oq7RW8QHjXWz3/vp8pa7dbtuVu40sewz3OP3JmQEcDdztrLhA=="; 2262 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.2.tgz"; 2263 + sha512 = "qZEzVQ+5Qh6cROaTPFLNS4lkvQ6mBzE3R6A6EEpssj7Zr2egMHgsy4XapdifqJDGC9CBiNv7s+ejI96rLNQFdg=="; 2291 2264 }; 2292 2265 }; 2293 2266 "core-util-is-1.0.3" = { ··· 2614 2587 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 2615 2588 }; 2616 2589 }; 2617 - "electron-to-chromium-1.3.749" = { 2590 + "electron-to-chromium-1.4.30" = { 2591 + name = "electron-to-chromium"; 2592 + packageName = "electron-to-chromium"; 2593 + version = "1.4.30"; 2594 + src = fetchurl { 2595 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.30.tgz"; 2596 + sha512 = "609z9sIMxDHg+TcR/VB3MXwH+uwtrYyeAwWc/orhnr90ixs6WVGSrt85CDLGUdNnLqCA7liv426V20EecjvflQ=="; 2597 + }; 2598 + }; 2599 + "electron-to-chromium-1.4.39" = { 2618 2600 name = "electron-to-chromium"; 2619 2601 packageName = "electron-to-chromium"; 2620 - version = "1.3.749"; 2602 + version = "1.4.39"; 2621 2603 src = fetchurl { 2622 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.749.tgz"; 2623 - sha512 = "F+v2zxZgw/fMwPz/VUGIggG4ZndDsYy0vlpthi3tjmDZlcfbhN5mYW0evXUsBr2sUtuDANFtle410A9u/sd/4A=="; 2604 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.39.tgz"; 2605 + sha512 = "bFH3gdRq/l7WlzSleiO6dwpZH3RhiJ8vlMq0tOJMfT+5nb+x397eJn2RHF6Ho/9GCKv+BkimNlUMHl9+Yh+Qcg=="; 2624 2606 }; 2625 2607 }; 2626 - "electron-to-chromium-1.4.17" = { 2608 + "electron-to-chromium-1.4.43" = { 2627 2609 name = "electron-to-chromium"; 2628 2610 packageName = "electron-to-chromium"; 2629 - version = "1.4.17"; 2611 + version = "1.4.43"; 2630 2612 src = fetchurl { 2631 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.17.tgz"; 2632 - sha512 = "zhk1MravPtq/KBhmGB7TLBILmXTgRG9TFSI3qS3DbgyfHzIl72iiTE37r/BHIbPCJJlWIo5rySyxiH4vWhu2ZA=="; 2613 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.43.tgz"; 2614 + sha512 = "PO3kEfcxPrti/4STbXvCkNIF4fgWvCKl2508e6UI7KomCDffpIfeBZLXsh5DK/XGsjUw3kwq6WEsi0MJTlGAdg=="; 2633 2615 }; 2634 2616 }; 2635 2617 "emojis-list-3.0.0" = { ··· 2657 2639 src = fetchurl { 2658 2640 url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz"; 2659 2641 sha512 = "EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA=="; 2660 - }; 2661 - }; 2662 - "enquirer-2.3.6" = { 2663 - name = "enquirer"; 2664 - packageName = "enquirer"; 2665 - version = "2.3.6"; 2666 - src = fetchurl { 2667 - url = "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz"; 2668 - sha512 = "yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg=="; 2669 2642 }; 2670 2643 }; 2671 2644 "entities-2.2.0" = { ··· 2749 2722 sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 2750 2723 }; 2751 2724 }; 2752 - "eslint-8.5.0" = { 2725 + "eslint-8.7.0" = { 2753 2726 name = "eslint"; 2754 2727 packageName = "eslint"; 2755 - version = "8.5.0"; 2728 + version = "8.7.0"; 2756 2729 src = fetchurl { 2757 - url = "https://registry.npmjs.org/eslint/-/eslint-8.5.0.tgz"; 2758 - sha512 = "tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg=="; 2730 + url = "https://registry.npmjs.org/eslint/-/eslint-8.7.0.tgz"; 2731 + sha512 = "ifHYzkBGrzS2iDU7KjhCAVMGCvF6M3Xfs8X8b37cgrUlDt6bWRTpRh6T/gtSXv1HJ/BUGgmjvNvOEGu85Iif7w=="; 2759 2732 }; 2760 2733 }; 2761 2734 "eslint-config-airbnb-base-15.0.0" = { ··· 2776 2749 sha512 = "0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw=="; 2777 2750 }; 2778 2751 }; 2779 - "eslint-module-utils-2.7.1" = { 2752 + "eslint-module-utils-2.7.2" = { 2780 2753 name = "eslint-module-utils"; 2781 2754 packageName = "eslint-module-utils"; 2782 - version = "2.7.1"; 2755 + version = "2.7.2"; 2783 2756 src = fetchurl { 2784 - url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.1.tgz"; 2785 - sha512 = "fjoetBXQZq2tSTWZ9yWVl2KuFrTZZH3V+9iD1V1RfpDgxzJR+mPd/KZmMiA8gbPqdBzpNiEHOuT7IYEWxrH0zQ=="; 2757 + url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.2.tgz"; 2758 + sha512 = "zquepFnWCY2ISMFwD/DqzaM++H+7PDzOpUvotJWm/y1BAFt5R4oeULgdrTejKqLkz7MA/tgstsUMNYc7wNdTrg=="; 2786 2759 }; 2787 2760 }; 2788 - "eslint-plugin-import-2.25.3" = { 2761 + "eslint-plugin-import-2.25.4" = { 2789 2762 name = "eslint-plugin-import"; 2790 2763 packageName = "eslint-plugin-import"; 2791 - version = "2.25.3"; 2764 + version = "2.25.4"; 2792 2765 src = fetchurl { 2793 - url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.3.tgz"; 2794 - sha512 = "RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg=="; 2766 + url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz"; 2767 + sha512 = "/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA=="; 2795 2768 }; 2796 2769 }; 2797 2770 "eslint-plugin-vue-7.20.0" = { ··· 2810 2783 src = fetchurl { 2811 2784 url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"; 2812 2785 sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="; 2813 - }; 2814 - }; 2815 - "eslint-scope-6.0.0" = { 2816 - name = "eslint-scope"; 2817 - packageName = "eslint-scope"; 2818 - version = "6.0.0"; 2819 - src = fetchurl { 2820 - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-6.0.0.tgz"; 2821 - sha512 = "uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA=="; 2822 2786 }; 2823 2787 }; 2824 2788 "eslint-scope-7.1.0" = { ··· 2866 2830 sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; 2867 2831 }; 2868 2832 }; 2869 - "eslint-visitor-keys-3.0.0" = { 2833 + "eslint-visitor-keys-3.1.0" = { 2870 2834 name = "eslint-visitor-keys"; 2871 2835 packageName = "eslint-visitor-keys"; 2872 - version = "3.0.0"; 2836 + version = "3.1.0"; 2873 2837 src = fetchurl { 2874 - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.0.0.tgz"; 2875 - sha512 = "mJOZa35trBTb3IyRmo8xmKBZlxf+N7OnUl4+ZhJHs/r+0770Wh/LEACE2pqMGMe27G/4y8P2bYGk4J70IC5k1Q=="; 2838 + url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz"; 2839 + sha512 = "yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA=="; 2876 2840 }; 2877 2841 }; 2878 - "eslint-visitor-keys-3.1.0" = { 2842 + "eslint-visitor-keys-3.2.0" = { 2879 2843 name = "eslint-visitor-keys"; 2880 2844 packageName = "eslint-visitor-keys"; 2881 - version = "3.1.0"; 2845 + version = "3.2.0"; 2882 2846 src = fetchurl { 2883 - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz"; 2884 - sha512 = "yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA=="; 2847 + url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.2.0.tgz"; 2848 + sha512 = "IOzT0X126zn7ALX0dwFiUQEdsfzrm4+ISsQS8nukaJXwEyYKRSnEIIDULYg1mCtGp7UUXgfGl7BIolXREQK+XQ=="; 2885 2849 }; 2886 2850 }; 2887 2851 "espree-6.2.1" = { ··· 2893 2857 sha512 = "ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw=="; 2894 2858 }; 2895 2859 }; 2896 - "espree-9.0.0" = { 2860 + "espree-9.3.0" = { 2897 2861 name = "espree"; 2898 2862 packageName = "espree"; 2899 - version = "9.0.0"; 2863 + version = "9.3.0"; 2900 2864 src = fetchurl { 2901 - url = "https://registry.npmjs.org/espree/-/espree-9.0.0.tgz"; 2902 - sha512 = "r5EQJcYZ2oaGbeR0jR0fFVijGOcwai07/690YRXLINuhmVeRY4UKSAsQPe/0BNuDgwP7Ophoc1PRsr2E3tkbdQ=="; 2903 - }; 2904 - }; 2905 - "espree-9.2.0" = { 2906 - name = "espree"; 2907 - packageName = "espree"; 2908 - version = "9.2.0"; 2909 - src = fetchurl { 2910 - url = "https://registry.npmjs.org/espree/-/espree-9.2.0.tgz"; 2911 - sha512 = "oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg=="; 2865 + url = "https://registry.npmjs.org/espree/-/espree-9.3.0.tgz"; 2866 + sha512 = "d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ=="; 2912 2867 }; 2913 2868 }; 2914 2869 "esquery-1.4.0" = { ··· 3017 2972 src = fetchurl { 3018 2973 url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"; 3019 2974 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 2975 + }; 2976 + }; 2977 + "fast-glob-3.2.10" = { 2978 + name = "fast-glob"; 2979 + packageName = "fast-glob"; 2980 + version = "3.2.10"; 2981 + src = fetchurl { 2982 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.10.tgz"; 2983 + sha512 = "s9nFhFnvR63wls6/kM88kQqDhMu0AfdjqouE2l5GVQPbqLgyFjjU5ry/r2yKsJxpb9Py1EYNqieFrmMaX4v++A=="; 3020 2984 }; 3021 2985 }; 3022 2986 "fast-glob-3.2.7" = { ··· 3163 3127 sha512 = "8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw=="; 3164 3128 }; 3165 3129 }; 3166 - "follow-redirects-1.14.4" = { 3130 + "follow-redirects-1.14.7" = { 3167 3131 name = "follow-redirects"; 3168 3132 packageName = "follow-redirects"; 3169 - version = "1.14.4"; 3133 + version = "1.14.7"; 3170 3134 src = fetchurl { 3171 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.4.tgz"; 3172 - sha512 = "zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g=="; 3135 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.7.tgz"; 3136 + sha512 = "+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ=="; 3173 3137 }; 3174 3138 }; 3175 3139 "forwarded-0.2.0" = { ··· 3334 3298 sha512 = "uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg=="; 3335 3299 }; 3336 3300 }; 3337 - "globby-11.0.4" = { 3301 + "globby-11.1.0" = { 3338 3302 name = "globby"; 3339 3303 packageName = "globby"; 3340 - version = "11.0.4"; 3304 + version = "11.1.0"; 3341 3305 src = fetchurl { 3342 - url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"; 3343 - sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 3306 + url = "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"; 3307 + sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 3344 3308 }; 3345 3309 }; 3346 - "globby-12.0.2" = { 3310 + "globby-12.2.0" = { 3347 3311 name = "globby"; 3348 3312 packageName = "globby"; 3349 - version = "12.0.2"; 3313 + version = "12.2.0"; 3350 3314 src = fetchurl { 3351 - url = "https://registry.npmjs.org/globby/-/globby-12.0.2.tgz"; 3352 - sha512 = "lAsmb/5Lww4r7MM9nCCliDZVIKbZTavrsunAsHLr9oHthrZP1qi7/gAnHOsUs9bLvEt2vKVJhHmxuL7QbDuPdQ=="; 3315 + url = "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz"; 3316 + sha512 = "wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA=="; 3353 3317 }; 3354 3318 }; 3355 3319 "globby-6.1.0" = { ··· 3361 3325 sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c"; 3362 3326 }; 3363 3327 }; 3364 - "graceful-fs-4.2.8" = { 3328 + "graceful-fs-4.2.9" = { 3365 3329 name = "graceful-fs"; 3366 3330 packageName = "graceful-fs"; 3367 - version = "4.2.8"; 3331 + version = "4.2.9"; 3368 3332 src = fetchurl { 3369 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz"; 3370 - sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="; 3333 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz"; 3334 + sha512 = "NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ=="; 3371 3335 }; 3372 3336 }; 3373 3337 "gzip-size-6.0.0" = { ··· 3622 3586 sha512 = "cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="; 3623 3587 }; 3624 3588 }; 3625 - "ignore-5.1.8" = { 3589 + "ignore-5.2.0" = { 3626 3590 name = "ignore"; 3627 3591 packageName = "ignore"; 3628 - version = "5.1.8"; 3592 + version = "5.2.0"; 3629 3593 src = fetchurl { 3630 - url = "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz"; 3631 - sha512 = "BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw=="; 3594 + url = "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz"; 3595 + sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="; 3632 3596 }; 3633 3597 }; 3634 3598 "immutable-4.0.0" = { ··· 4045 4009 sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; 4046 4010 }; 4047 4011 }; 4048 - "jest-worker-27.4.2" = { 4012 + "jest-worker-27.4.6" = { 4049 4013 name = "jest-worker"; 4050 4014 packageName = "jest-worker"; 4051 - version = "27.4.2"; 4015 + version = "27.4.6"; 4052 4016 src = fetchurl { 4053 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.4.2.tgz"; 4054 - sha512 = "0QMy/zPovLfUPyHuOuuU4E+kGACXXE84nRnq6lBVI9GJg5DCBiA97SATi+ZP8CpiJwEQy1oCPjRBf8AnLjN+Ag=="; 4017 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.4.6.tgz"; 4018 + sha512 = "gHWJF/6Xi5CTG5QCvROr6GcmpIqNYpDJyc8A1h/DyXqH1tD6SnRCM0d3U5msV31D2LB/U+E0M+W4oyvKV44oNw=="; 4055 4019 }; 4056 4020 }; 4057 4021 "js-tokens-4.0.0" = { ··· 4180 4144 sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; 4181 4145 }; 4182 4146 }; 4183 - "linkifyjs-3.0.4" = { 4147 + "linkifyjs-3.0.5" = { 4184 4148 name = "linkifyjs"; 4185 4149 packageName = "linkifyjs"; 4186 - version = "3.0.4"; 4150 + version = "3.0.5"; 4187 4151 src = fetchurl { 4188 - url = "https://registry.npmjs.org/linkifyjs/-/linkifyjs-3.0.4.tgz"; 4189 - sha512 = "JWw1HHMx54g8mEsG7JwI8I/xh7qeJbF6L9u1dQOYW91RdRqDYpnTn1UaNXYkmLD967Vk0xGuyHzuRnkSApby3w=="; 4152 + url = "https://registry.npmjs.org/linkifyjs/-/linkifyjs-3.0.5.tgz"; 4153 + sha512 = "1Y9XQH65eQKA9p2xtk+zxvnTeQBG7rdAXSkUG97DmuI/Xhji9uaUzaWxRj6rf9YC0v8KKHkxav7tnLX82Sz5Fg=="; 4190 4154 }; 4191 4155 }; 4192 4156 "loader-runner-4.2.0" = { ··· 4315 4279 sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; 4316 4280 }; 4317 4281 }; 4318 - "memfs-3.4.0" = { 4282 + "memfs-3.4.1" = { 4319 4283 name = "memfs"; 4320 4284 packageName = "memfs"; 4321 - version = "3.4.0"; 4285 + version = "3.4.1"; 4322 4286 src = fetchurl { 4323 - url = "https://registry.npmjs.org/memfs/-/memfs-3.4.0.tgz"; 4324 - sha512 = "o/RfP0J1d03YwsAxyHxAYs2kyJp55AFkMazlFAZFR2I2IXkxiUTXRabJ6RmNNCQ83LAD2jy52Khj0m3OffpNdA=="; 4287 + url = "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz"; 4288 + sha512 = "1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw=="; 4325 4289 }; 4326 4290 }; 4327 4291 "merge-descriptors-1.0.1" = { ··· 4567 4531 sha512 = "fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg=="; 4568 4532 }; 4569 4533 }; 4570 - "node-forge-0.10.0" = { 4534 + "node-forge-1.2.0" = { 4571 4535 name = "node-forge"; 4572 4536 packageName = "node-forge"; 4573 - version = "0.10.0"; 4537 + version = "1.2.0"; 4574 4538 src = fetchurl { 4575 - url = "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz"; 4576 - sha512 = "PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA=="; 4577 - }; 4578 - }; 4579 - "node-releases-1.1.72" = { 4580 - name = "node-releases"; 4581 - packageName = "node-releases"; 4582 - version = "1.1.72"; 4583 - src = fetchurl { 4584 - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.72.tgz"; 4585 - sha512 = "LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw=="; 4539 + url = "https://registry.npmjs.org/node-forge/-/node-forge-1.2.0.tgz"; 4540 + sha512 = "M4AsdaP0bGNaSPtatd/+f76asocI0cFaURRdeQVZvrJBrYp2Qohv5hDbGHykuNqCb1BYjWHjdS6HlN50qbztwA=="; 4586 4541 }; 4587 4542 }; 4588 4543 "node-releases-2.0.1" = { ··· 5017 4972 sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 5018 4973 }; 5019 4974 }; 5020 - "pkg-dir-2.0.0" = { 5021 - name = "pkg-dir"; 5022 - packageName = "pkg-dir"; 5023 - version = "2.0.0"; 5024 - src = fetchurl { 5025 - url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz"; 5026 - sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b"; 5027 - }; 5028 - }; 5029 4975 "pkg-dir-4.2.0" = { 5030 4976 name = "pkg-dir"; 5031 4977 packageName = "pkg-dir"; ··· 5177 5123 src = fetchurl { 5178 5124 url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 5179 5125 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 5180 - }; 5181 - }; 5182 - "progress-2.0.3" = { 5183 - name = "progress"; 5184 - packageName = "progress"; 5185 - version = "2.0.3"; 5186 - src = fetchurl { 5187 - url = "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"; 5188 - sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="; 5189 5126 }; 5190 5127 }; 5191 5128 "proxy-addr-2.0.7" = { ··· 5530 5467 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 5531 5468 }; 5532 5469 }; 5533 - "sass-1.45.1" = { 5470 + "sass-1.49.0" = { 5534 5471 name = "sass"; 5535 5472 packageName = "sass"; 5536 - version = "1.45.1"; 5473 + version = "1.49.0"; 5537 5474 src = fetchurl { 5538 - url = "https://registry.npmjs.org/sass/-/sass-1.45.1.tgz"; 5539 - sha512 = "pwPRiq29UR0o4X3fiQyCtrESldXvUQAAE0QmcJTpsI4kuHHcLzZ54M1oNBVIXybQv8QF2zfkpFcTxp8ta97dUA=="; 5475 + url = "https://registry.npmjs.org/sass/-/sass-1.49.0.tgz"; 5476 + sha512 = "TVwVdNDj6p6b4QymJtNtRS2YtLJ/CqZriGg0eIAbAKMlN8Xy6kbv33FsEZSF7FufFFM705SQviHjjThfaQ4VNw=="; 5540 5477 }; 5541 5478 }; 5542 5479 "sass-loader-12.4.0" = { ··· 5593 5530 sha1 = "625d8658f865af43ec962bfc376a37359a4994ca"; 5594 5531 }; 5595 5532 }; 5596 - "selfsigned-1.10.11" = { 5533 + "selfsigned-2.0.0" = { 5597 5534 name = "selfsigned"; 5598 5535 packageName = "selfsigned"; 5599 - version = "1.10.11"; 5536 + version = "2.0.0"; 5600 5537 src = fetchurl { 5601 - url = "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz"; 5602 - sha512 = "aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA=="; 5538 + url = "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.0.tgz"; 5539 + sha512 = "cUdFiCbKoa1mZ6osuJs2uDHrs0k0oprsKveFiiaBKCNq3SYyb5gs2HxhQyDNLCmL51ZZThqi4YNDpCK6GOP1iQ=="; 5603 5540 }; 5604 5541 }; 5605 5542 "semver-6.3.0" = { ··· 5971 5908 sha512 = "h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ=="; 5972 5909 }; 5973 5910 }; 5974 - "terser-webpack-plugin-5.2.5" = { 5911 + "terser-webpack-plugin-5.3.0" = { 5975 5912 name = "terser-webpack-plugin"; 5976 5913 packageName = "terser-webpack-plugin"; 5977 - version = "5.2.5"; 5914 + version = "5.3.0"; 5978 5915 src = fetchurl { 5979 - url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.5.tgz"; 5980 - sha512 = "3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g=="; 5916 + url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.0.tgz"; 5917 + sha512 = "LPIisi3Ol4chwAaPP8toUJ3L4qCM1G0wao7L3qNv57Drezxj6+VEyySpPw4B1HSO2Eg/hDY/MNF5XihCAoqnsQ=="; 5981 5918 }; 5982 5919 }; 5983 5920 "text-table-0.2.0" = { ··· 6043 5980 sha512 = "gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g=="; 6044 5981 }; 6045 5982 }; 6046 - "tsconfig-paths-3.11.0" = { 5983 + "tsconfig-paths-3.12.0" = { 6047 5984 name = "tsconfig-paths"; 6048 5985 packageName = "tsconfig-paths"; 6049 - version = "3.11.0"; 5986 + version = "3.12.0"; 6050 5987 src = fetchurl { 6051 - url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz"; 6052 - sha512 = "7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA=="; 5988 + url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz"; 5989 + sha512 = "e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg=="; 6053 5990 }; 6054 5991 }; 6055 5992 "tslib-2.3.1" = { ··· 6259 6196 sha512 = "qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg=="; 6260 6197 }; 6261 6198 }; 6262 - "vue-eslint-parser-8.0.1" = { 6199 + "vue-eslint-parser-8.1.0" = { 6263 6200 name = "vue-eslint-parser"; 6264 6201 packageName = "vue-eslint-parser"; 6265 - version = "8.0.1"; 6202 + version = "8.1.0"; 6266 6203 src = fetchurl { 6267 - url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.0.1.tgz"; 6268 - sha512 = "lhWjDXJhe3UZw2uu3ztX51SJAPGPey1Tff2RK3TyZURwbuI4vximQLzz4nQfCv8CZq4xx7uIiogHMMoSJPr33A=="; 6204 + url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.1.0.tgz"; 6205 + sha512 = "R8Pl6MSvuU81JKyUguexcABQxfM51Q2ZJVBX0TrKiLltPB+haVLp4hfuR5msiu9oqpsQkaV+TF18r4CBw9c9qg=="; 6269 6206 }; 6270 6207 }; 6271 6208 "vue-hot-reload-api-2.3.4" = { ··· 6385 6322 sha512 = "O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA=="; 6386 6323 }; 6387 6324 }; 6388 - "webpack-5.65.0" = { 6325 + "webpack-5.67.0" = { 6389 6326 name = "webpack"; 6390 6327 packageName = "webpack"; 6391 - version = "5.65.0"; 6328 + version = "5.67.0"; 6392 6329 src = fetchurl { 6393 - url = "https://registry.npmjs.org/webpack/-/webpack-5.65.0.tgz"; 6394 - sha512 = "Q5or2o6EKs7+oKmJo7LaqZaMOlDWQse9Tm5l1WAfU/ujLGN5Pb0SqGeVkN/4bpPmEqEP5RnVhiqsOtWtUVwGRw=="; 6330 + url = "https://registry.npmjs.org/webpack/-/webpack-5.67.0.tgz"; 6331 + sha512 = "LjFbfMh89xBDpUMgA1W9Ur6Rn/gnr2Cq1jjHFPo4v6a79/ypznSYbAyPgGhwsxBtMIaEmDD1oJoA7BEYw/Fbrw=="; 6395 6332 }; 6396 6333 }; 6397 6334 "webpack-bundle-analyzer-4.5.0" = { ··· 6421 6358 sha512 = "MouJz+rXAm9B1OTOYaJnn6rtD/lWZPy2ufQCH3BPs8Rloh/Du6Jze4p7AeLYHkVi0giJnYLaSGDC7S+GM9arhg=="; 6422 6359 }; 6423 6360 }; 6424 - "webpack-dev-server-4.7.1" = { 6361 + "webpack-dev-server-4.7.3" = { 6425 6362 name = "webpack-dev-server"; 6426 6363 packageName = "webpack-dev-server"; 6427 - version = "4.7.1"; 6364 + version = "4.7.3"; 6428 6365 src = fetchurl { 6429 - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.7.1.tgz"; 6430 - sha512 = "bkoNgFyqlF/CT726Axtf/ELHHYsTZJWz3QJ6HqstWPbalhjAPunlPH9bwt/Lr5cLb+uoLmsta6svVplVzq8beA=="; 6366 + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.7.3.tgz"; 6367 + sha512 = "mlxq2AsIw2ag016nixkzUkdyOE8ST2GTy34uKSABp1c4nhjZvH90D5ZRR+UOLSsG4Z3TFahAi72a3ymRtfRm+Q=="; 6431 6368 }; 6432 6369 }; 6433 6370 "webpack-merge-5.8.0" = { ··· 6439 6376 sha512 = "/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q=="; 6440 6377 }; 6441 6378 }; 6442 - "webpack-sources-3.2.2" = { 6379 + "webpack-sources-3.2.3" = { 6443 6380 name = "webpack-sources"; 6444 6381 packageName = "webpack-sources"; 6445 - version = "3.2.2"; 6382 + version = "3.2.3"; 6446 6383 src = fetchurl { 6447 - url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.2.tgz"; 6448 - sha512 = "cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw=="; 6384 + url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz"; 6385 + sha512 = "/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w=="; 6449 6386 }; 6450 6387 }; 6451 - "webpack-subresource-integrity-5.0.0" = { 6388 + "webpack-subresource-integrity-5.1.0" = { 6452 6389 name = "webpack-subresource-integrity"; 6453 6390 packageName = "webpack-subresource-integrity"; 6454 - version = "5.0.0"; 6391 + version = "5.1.0"; 6455 6392 src = fetchurl { 6456 - url = "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.0.0.tgz"; 6457 - sha512 = "x9514FpLRydO+UAQ8DY4aLtCjxmdLkuQVcDFN1kGzuusREYJ1B0rzk/iIlWiL6dnvrhEGFj2+UsdxDkP8Z4UKg=="; 6393 + url = "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz"; 6394 + sha512 = "sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q=="; 6458 6395 }; 6459 6396 }; 6460 6397 "websocket-driver-0.7.4" = { ··· 6563 6500 version = "0.0.0"; 6564 6501 src = ./.; 6565 6502 dependencies = [ 6566 - sources."@babel/code-frame-7.16.0" 6567 - sources."@babel/compat-data-7.16.4" 6568 - (sources."@babel/core-7.16.5" // { 6503 + sources."@babel/code-frame-7.16.7" 6504 + sources."@babel/compat-data-7.16.8" 6505 + (sources."@babel/core-7.16.12" // { 6569 6506 dependencies = [ 6570 6507 sources."debug-4.3.3" 6571 6508 sources."json5-2.2.0" ··· 6579 6516 sources."semver-6.3.0" 6580 6517 ]; 6581 6518 }) 6582 - sources."@babel/generator-7.16.5" 6583 - sources."@babel/helper-annotate-as-pure-7.16.0" 6584 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.5" 6585 - (sources."@babel/helper-compilation-targets-7.16.3" // { 6519 + sources."@babel/generator-7.16.8" 6520 + sources."@babel/helper-annotate-as-pure-7.16.7" 6521 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 6522 + (sources."@babel/helper-compilation-targets-7.16.7" // { 6586 6523 dependencies = [ 6587 - sources."browserslist-4.18.1" 6588 - sources."caniuse-lite-1.0.30001286" 6589 - sources."electron-to-chromium-1.4.17" 6524 + sources."browserslist-4.19.1" 6525 + sources."caniuse-lite-1.0.30001294" 6526 + sources."electron-to-chromium-1.4.30" 6590 6527 sources."node-releases-2.0.1" 6591 6528 sources."semver-6.3.0" 6592 6529 ]; 6593 6530 }) 6594 - sources."@babel/helper-create-class-features-plugin-7.16.5" 6595 - sources."@babel/helper-create-regexp-features-plugin-7.16.0" 6531 + sources."@babel/helper-create-class-features-plugin-7.16.10" 6532 + sources."@babel/helper-create-regexp-features-plugin-7.16.7" 6596 6533 (sources."@babel/helper-define-polyfill-provider-0.3.0" // { 6597 6534 dependencies = [ 6598 - sources."@babel/helper-plugin-utils-7.16.5" 6599 6535 sources."debug-4.3.3" 6600 6536 sources."ms-2.1.2" 6601 6537 sources."semver-6.3.0" 6602 6538 ]; 6603 6539 }) 6604 - sources."@babel/helper-environment-visitor-7.16.5" 6605 - sources."@babel/helper-explode-assignable-expression-7.16.0" 6606 - sources."@babel/helper-function-name-7.16.0" 6607 - sources."@babel/helper-get-function-arity-7.16.0" 6608 - sources."@babel/helper-hoist-variables-7.16.0" 6609 - sources."@babel/helper-member-expression-to-functions-7.16.5" 6610 - sources."@babel/helper-module-imports-7.16.0" 6611 - sources."@babel/helper-module-transforms-7.16.5" 6612 - sources."@babel/helper-optimise-call-expression-7.16.0" 6613 - sources."@babel/helper-plugin-utils-7.8.0" 6614 - sources."@babel/helper-remap-async-to-generator-7.16.5" 6615 - sources."@babel/helper-replace-supers-7.16.5" 6616 - sources."@babel/helper-simple-access-7.16.0" 6540 + sources."@babel/helper-environment-visitor-7.16.7" 6541 + sources."@babel/helper-explode-assignable-expression-7.16.7" 6542 + sources."@babel/helper-function-name-7.16.7" 6543 + sources."@babel/helper-get-function-arity-7.16.7" 6544 + sources."@babel/helper-hoist-variables-7.16.7" 6545 + sources."@babel/helper-member-expression-to-functions-7.16.7" 6546 + sources."@babel/helper-module-imports-7.16.7" 6547 + sources."@babel/helper-module-transforms-7.16.7" 6548 + sources."@babel/helper-optimise-call-expression-7.16.7" 6549 + sources."@babel/helper-plugin-utils-7.16.7" 6550 + sources."@babel/helper-remap-async-to-generator-7.16.8" 6551 + sources."@babel/helper-replace-supers-7.16.7" 6552 + sources."@babel/helper-simple-access-7.16.7" 6617 6553 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 6618 - sources."@babel/helper-split-export-declaration-7.16.0" 6619 - sources."@babel/helper-validator-identifier-7.15.7" 6620 - sources."@babel/helper-validator-option-7.14.5" 6621 - sources."@babel/helper-wrap-function-7.16.5" 6622 - sources."@babel/helpers-7.16.5" 6623 - sources."@babel/highlight-7.16.0" 6624 - sources."@babel/parser-7.16.5" 6625 - (sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" // { 6626 - dependencies = [ 6627 - sources."@babel/helper-plugin-utils-7.16.5" 6628 - ]; 6629 - }) 6630 - (sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" // { 6631 - dependencies = [ 6632 - sources."@babel/helper-plugin-utils-7.16.5" 6633 - ]; 6634 - }) 6635 - (sources."@babel/plugin-proposal-async-generator-functions-7.16.5" // { 6636 - dependencies = [ 6637 - sources."@babel/helper-plugin-utils-7.16.5" 6638 - ]; 6639 - }) 6640 - (sources."@babel/plugin-proposal-class-properties-7.16.5" // { 6641 - dependencies = [ 6642 - sources."@babel/helper-plugin-utils-7.16.5" 6643 - ]; 6644 - }) 6645 - (sources."@babel/plugin-proposal-class-static-block-7.16.5" // { 6646 - dependencies = [ 6647 - sources."@babel/helper-plugin-utils-7.16.5" 6648 - ]; 6649 - }) 6650 - (sources."@babel/plugin-proposal-dynamic-import-7.16.5" // { 6651 - dependencies = [ 6652 - sources."@babel/helper-plugin-utils-7.16.5" 6653 - ]; 6654 - }) 6655 - (sources."@babel/plugin-proposal-export-namespace-from-7.16.5" // { 6656 - dependencies = [ 6657 - sources."@babel/helper-plugin-utils-7.16.5" 6658 - ]; 6659 - }) 6660 - (sources."@babel/plugin-proposal-json-strings-7.16.5" // { 6661 - dependencies = [ 6662 - sources."@babel/helper-plugin-utils-7.16.5" 6663 - ]; 6664 - }) 6665 - (sources."@babel/plugin-proposal-logical-assignment-operators-7.16.5" // { 6666 - dependencies = [ 6667 - sources."@babel/helper-plugin-utils-7.16.5" 6668 - ]; 6669 - }) 6670 - (sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.5" // { 6671 - dependencies = [ 6672 - sources."@babel/helper-plugin-utils-7.16.5" 6673 - ]; 6674 - }) 6675 - (sources."@babel/plugin-proposal-numeric-separator-7.16.5" // { 6676 - dependencies = [ 6677 - sources."@babel/helper-plugin-utils-7.16.5" 6678 - ]; 6679 - }) 6680 - (sources."@babel/plugin-proposal-object-rest-spread-7.16.5" // { 6681 - dependencies = [ 6682 - sources."@babel/helper-plugin-utils-7.16.5" 6683 - ]; 6684 - }) 6685 - (sources."@babel/plugin-proposal-optional-catch-binding-7.16.5" // { 6686 - dependencies = [ 6687 - sources."@babel/helper-plugin-utils-7.16.5" 6688 - ]; 6689 - }) 6690 - (sources."@babel/plugin-proposal-optional-chaining-7.16.5" // { 6691 - dependencies = [ 6692 - sources."@babel/helper-plugin-utils-7.16.5" 6693 - ]; 6694 - }) 6695 - (sources."@babel/plugin-proposal-private-methods-7.16.5" // { 6696 - dependencies = [ 6697 - sources."@babel/helper-plugin-utils-7.16.5" 6698 - ]; 6699 - }) 6700 - (sources."@babel/plugin-proposal-private-property-in-object-7.16.5" // { 6701 - dependencies = [ 6702 - sources."@babel/helper-plugin-utils-7.16.5" 6703 - ]; 6704 - }) 6705 - (sources."@babel/plugin-proposal-unicode-property-regex-7.16.5" // { 6706 - dependencies = [ 6707 - sources."@babel/helper-plugin-utils-7.16.5" 6708 - ]; 6709 - }) 6554 + sources."@babel/helper-split-export-declaration-7.16.7" 6555 + sources."@babel/helper-validator-identifier-7.16.7" 6556 + sources."@babel/helper-validator-option-7.16.7" 6557 + sources."@babel/helper-wrap-function-7.16.8" 6558 + sources."@babel/helpers-7.16.7" 6559 + sources."@babel/highlight-7.16.7" 6560 + sources."@babel/parser-7.16.12" 6561 + sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 6562 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 6563 + sources."@babel/plugin-proposal-async-generator-functions-7.16.8" 6564 + sources."@babel/plugin-proposal-class-properties-7.16.7" 6565 + sources."@babel/plugin-proposal-class-static-block-7.16.7" 6566 + sources."@babel/plugin-proposal-dynamic-import-7.16.7" 6567 + sources."@babel/plugin-proposal-export-namespace-from-7.16.7" 6568 + sources."@babel/plugin-proposal-json-strings-7.16.7" 6569 + sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7" 6570 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" 6571 + sources."@babel/plugin-proposal-numeric-separator-7.16.7" 6572 + sources."@babel/plugin-proposal-object-rest-spread-7.16.7" 6573 + sources."@babel/plugin-proposal-optional-catch-binding-7.16.7" 6574 + sources."@babel/plugin-proposal-optional-chaining-7.16.7" 6575 + sources."@babel/plugin-proposal-private-methods-7.16.11" 6576 + sources."@babel/plugin-proposal-private-property-in-object-7.16.7" 6577 + sources."@babel/plugin-proposal-unicode-property-regex-7.16.7" 6710 6578 sources."@babel/plugin-syntax-async-generators-7.8.4" 6711 - (sources."@babel/plugin-syntax-class-properties-7.12.13" // { 6712 - dependencies = [ 6713 - sources."@babel/helper-plugin-utils-7.16.5" 6714 - ]; 6715 - }) 6716 - (sources."@babel/plugin-syntax-class-static-block-7.14.5" // { 6717 - dependencies = [ 6718 - sources."@babel/helper-plugin-utils-7.16.5" 6719 - ]; 6720 - }) 6579 + sources."@babel/plugin-syntax-class-properties-7.12.13" 6580 + sources."@babel/plugin-syntax-class-static-block-7.14.5" 6721 6581 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 6722 - (sources."@babel/plugin-syntax-export-namespace-from-7.8.3" // { 6723 - dependencies = [ 6724 - sources."@babel/helper-plugin-utils-7.16.5" 6725 - ]; 6726 - }) 6582 + sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 6727 6583 sources."@babel/plugin-syntax-json-strings-7.8.3" 6728 - (sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" // { 6729 - dependencies = [ 6730 - sources."@babel/helper-plugin-utils-7.16.5" 6731 - ]; 6732 - }) 6584 + sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 6733 6585 sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 6734 - (sources."@babel/plugin-syntax-numeric-separator-7.10.4" // { 6735 - dependencies = [ 6736 - sources."@babel/helper-plugin-utils-7.16.5" 6737 - ]; 6738 - }) 6586 + sources."@babel/plugin-syntax-numeric-separator-7.10.4" 6739 6587 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 6740 6588 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 6741 6589 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 6742 - (sources."@babel/plugin-syntax-private-property-in-object-7.14.5" // { 6743 - dependencies = [ 6744 - sources."@babel/helper-plugin-utils-7.16.5" 6745 - ]; 6746 - }) 6747 - (sources."@babel/plugin-syntax-top-level-await-7.14.5" // { 6748 - dependencies = [ 6749 - sources."@babel/helper-plugin-utils-7.16.5" 6750 - ]; 6751 - }) 6752 - (sources."@babel/plugin-transform-arrow-functions-7.16.5" // { 6753 - dependencies = [ 6754 - sources."@babel/helper-plugin-utils-7.16.5" 6755 - ]; 6756 - }) 6757 - (sources."@babel/plugin-transform-async-to-generator-7.16.5" // { 6758 - dependencies = [ 6759 - sources."@babel/helper-plugin-utils-7.16.5" 6760 - ]; 6761 - }) 6762 - (sources."@babel/plugin-transform-block-scoped-functions-7.16.5" // { 6763 - dependencies = [ 6764 - sources."@babel/helper-plugin-utils-7.16.5" 6765 - ]; 6766 - }) 6767 - (sources."@babel/plugin-transform-block-scoping-7.16.5" // { 6768 - dependencies = [ 6769 - sources."@babel/helper-plugin-utils-7.16.5" 6770 - ]; 6771 - }) 6772 - (sources."@babel/plugin-transform-classes-7.16.5" // { 6773 - dependencies = [ 6774 - sources."@babel/helper-plugin-utils-7.16.5" 6775 - ]; 6776 - }) 6777 - (sources."@babel/plugin-transform-computed-properties-7.16.5" // { 6778 - dependencies = [ 6779 - sources."@babel/helper-plugin-utils-7.16.5" 6780 - ]; 6781 - }) 6782 - (sources."@babel/plugin-transform-destructuring-7.16.5" // { 6783 - dependencies = [ 6784 - sources."@babel/helper-plugin-utils-7.16.5" 6785 - ]; 6786 - }) 6787 - (sources."@babel/plugin-transform-dotall-regex-7.16.5" // { 6788 - dependencies = [ 6789 - sources."@babel/helper-plugin-utils-7.16.5" 6790 - ]; 6791 - }) 6792 - (sources."@babel/plugin-transform-duplicate-keys-7.16.5" // { 6793 - dependencies = [ 6794 - sources."@babel/helper-plugin-utils-7.16.5" 6795 - ]; 6796 - }) 6797 - (sources."@babel/plugin-transform-exponentiation-operator-7.16.5" // { 6798 - dependencies = [ 6799 - sources."@babel/helper-plugin-utils-7.16.5" 6800 - ]; 6801 - }) 6802 - (sources."@babel/plugin-transform-for-of-7.16.5" // { 6803 - dependencies = [ 6804 - sources."@babel/helper-plugin-utils-7.16.5" 6805 - ]; 6806 - }) 6807 - (sources."@babel/plugin-transform-function-name-7.16.5" // { 6808 - dependencies = [ 6809 - sources."@babel/helper-plugin-utils-7.16.5" 6810 - ]; 6811 - }) 6812 - (sources."@babel/plugin-transform-literals-7.16.5" // { 6813 - dependencies = [ 6814 - sources."@babel/helper-plugin-utils-7.16.5" 6815 - ]; 6816 - }) 6817 - (sources."@babel/plugin-transform-member-expression-literals-7.16.5" // { 6818 - dependencies = [ 6819 - sources."@babel/helper-plugin-utils-7.16.5" 6820 - ]; 6821 - }) 6822 - (sources."@babel/plugin-transform-modules-amd-7.16.5" // { 6823 - dependencies = [ 6824 - sources."@babel/helper-plugin-utils-7.16.5" 6825 - ]; 6826 - }) 6827 - (sources."@babel/plugin-transform-modules-commonjs-7.16.5" // { 6828 - dependencies = [ 6829 - sources."@babel/helper-plugin-utils-7.16.5" 6830 - ]; 6831 - }) 6832 - (sources."@babel/plugin-transform-modules-systemjs-7.16.5" // { 6833 - dependencies = [ 6834 - sources."@babel/helper-plugin-utils-7.16.5" 6835 - ]; 6836 - }) 6837 - (sources."@babel/plugin-transform-modules-umd-7.16.5" // { 6838 - dependencies = [ 6839 - sources."@babel/helper-plugin-utils-7.16.5" 6840 - ]; 6841 - }) 6842 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.5" 6843 - (sources."@babel/plugin-transform-new-target-7.16.5" // { 6844 - dependencies = [ 6845 - sources."@babel/helper-plugin-utils-7.16.5" 6846 - ]; 6847 - }) 6848 - (sources."@babel/plugin-transform-object-super-7.16.5" // { 6849 - dependencies = [ 6850 - sources."@babel/helper-plugin-utils-7.16.5" 6851 - ]; 6852 - }) 6853 - (sources."@babel/plugin-transform-parameters-7.16.5" // { 6854 - dependencies = [ 6855 - sources."@babel/helper-plugin-utils-7.16.5" 6856 - ]; 6857 - }) 6858 - (sources."@babel/plugin-transform-property-literals-7.16.5" // { 6590 + sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 6591 + sources."@babel/plugin-syntax-top-level-await-7.14.5" 6592 + sources."@babel/plugin-transform-arrow-functions-7.16.7" 6593 + sources."@babel/plugin-transform-async-to-generator-7.16.8" 6594 + sources."@babel/plugin-transform-block-scoped-functions-7.16.7" 6595 + sources."@babel/plugin-transform-block-scoping-7.16.7" 6596 + sources."@babel/plugin-transform-classes-7.16.7" 6597 + sources."@babel/plugin-transform-computed-properties-7.16.7" 6598 + sources."@babel/plugin-transform-destructuring-7.16.7" 6599 + sources."@babel/plugin-transform-dotall-regex-7.16.7" 6600 + sources."@babel/plugin-transform-duplicate-keys-7.16.7" 6601 + sources."@babel/plugin-transform-exponentiation-operator-7.16.7" 6602 + sources."@babel/plugin-transform-for-of-7.16.7" 6603 + sources."@babel/plugin-transform-function-name-7.16.7" 6604 + sources."@babel/plugin-transform-literals-7.16.7" 6605 + sources."@babel/plugin-transform-member-expression-literals-7.16.7" 6606 + sources."@babel/plugin-transform-modules-amd-7.16.7" 6607 + sources."@babel/plugin-transform-modules-commonjs-7.16.8" 6608 + sources."@babel/plugin-transform-modules-systemjs-7.16.7" 6609 + sources."@babel/plugin-transform-modules-umd-7.16.7" 6610 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 6611 + sources."@babel/plugin-transform-new-target-7.16.7" 6612 + sources."@babel/plugin-transform-object-super-7.16.7" 6613 + sources."@babel/plugin-transform-parameters-7.16.7" 6614 + sources."@babel/plugin-transform-property-literals-7.16.7" 6615 + sources."@babel/plugin-transform-regenerator-7.16.7" 6616 + sources."@babel/plugin-transform-reserved-words-7.16.7" 6617 + sources."@babel/plugin-transform-shorthand-properties-7.16.7" 6618 + sources."@babel/plugin-transform-spread-7.16.7" 6619 + sources."@babel/plugin-transform-sticky-regex-7.16.7" 6620 + sources."@babel/plugin-transform-template-literals-7.16.7" 6621 + sources."@babel/plugin-transform-typeof-symbol-7.16.7" 6622 + sources."@babel/plugin-transform-unicode-escapes-7.16.7" 6623 + sources."@babel/plugin-transform-unicode-regex-7.16.7" 6624 + (sources."@babel/preset-env-7.16.11" // { 6859 6625 dependencies = [ 6860 - sources."@babel/helper-plugin-utils-7.16.5" 6861 - ]; 6862 - }) 6863 - sources."@babel/plugin-transform-regenerator-7.16.5" 6864 - (sources."@babel/plugin-transform-reserved-words-7.16.5" // { 6865 - dependencies = [ 6866 - sources."@babel/helper-plugin-utils-7.16.5" 6867 - ]; 6868 - }) 6869 - (sources."@babel/plugin-transform-shorthand-properties-7.16.5" // { 6870 - dependencies = [ 6871 - sources."@babel/helper-plugin-utils-7.16.5" 6872 - ]; 6873 - }) 6874 - (sources."@babel/plugin-transform-spread-7.16.5" // { 6875 - dependencies = [ 6876 - sources."@babel/helper-plugin-utils-7.16.5" 6877 - ]; 6878 - }) 6879 - (sources."@babel/plugin-transform-sticky-regex-7.16.5" // { 6880 - dependencies = [ 6881 - sources."@babel/helper-plugin-utils-7.16.5" 6882 - ]; 6883 - }) 6884 - (sources."@babel/plugin-transform-template-literals-7.16.5" // { 6885 - dependencies = [ 6886 - sources."@babel/helper-plugin-utils-7.16.5" 6887 - ]; 6888 - }) 6889 - (sources."@babel/plugin-transform-typeof-symbol-7.16.5" // { 6890 - dependencies = [ 6891 - sources."@babel/helper-plugin-utils-7.16.5" 6892 - ]; 6893 - }) 6894 - (sources."@babel/plugin-transform-unicode-escapes-7.16.5" // { 6895 - dependencies = [ 6896 - sources."@babel/helper-plugin-utils-7.16.5" 6897 - ]; 6898 - }) 6899 - (sources."@babel/plugin-transform-unicode-regex-7.16.5" // { 6900 - dependencies = [ 6901 - sources."@babel/helper-plugin-utils-7.16.5" 6902 - ]; 6903 - }) 6904 - (sources."@babel/preset-env-7.16.5" // { 6905 - dependencies = [ 6906 - sources."@babel/helper-plugin-utils-7.16.5" 6907 6626 sources."semver-6.3.0" 6908 6627 ]; 6909 6628 }) 6910 6629 sources."@babel/preset-modules-0.1.5" 6911 6630 sources."@babel/runtime-7.14.6" 6912 - sources."@babel/template-7.16.0" 6913 - (sources."@babel/traverse-7.16.5" // { 6631 + sources."@babel/template-7.16.7" 6632 + (sources."@babel/traverse-7.16.10" // { 6914 6633 dependencies = [ 6915 6634 sources."debug-4.3.3" 6916 6635 sources."ms-2.1.2" 6917 6636 ]; 6918 6637 }) 6919 - sources."@babel/types-7.16.0" 6638 + sources."@babel/types-7.16.8" 6920 6639 sources."@discoveryjs/json-ext-0.5.5" 6921 6640 (sources."@eslint/eslintrc-1.0.5" // { 6922 6641 dependencies = [ 6923 - sources."acorn-8.6.0" 6642 + sources."acorn-8.7.0" 6924 6643 sources."debug-4.3.3" 6925 6644 sources."eslint-visitor-keys-3.1.0" 6926 - sources."espree-9.2.0" 6645 + sources."espree-9.3.0" 6927 6646 sources."globals-13.12.0" 6928 6647 sources."ignore-4.0.6" 6929 6648 sources."ms-2.1.2" ··· 6946 6665 sources."@nodelib/fs.walk-1.2.6" 6947 6666 sources."@polka/url-1.0.0-next.21" 6948 6667 sources."@types/body-parser-1.19.2" 6949 - sources."@types/bonjour-3.5.9" 6668 + sources."@types/bonjour-3.5.10" 6950 6669 sources."@types/connect-3.4.35" 6951 6670 sources."@types/connect-history-api-fallback-1.3.5" 6952 - sources."@types/eslint-8.2.1" 6953 - sources."@types/eslint-scope-3.7.1" 6671 + sources."@types/eslint-8.2.2" 6672 + sources."@types/eslint-scope-3.7.3" 6954 6673 sources."@types/estree-0.0.50" 6955 6674 sources."@types/express-4.17.13" 6956 - sources."@types/express-serve-static-core-4.17.26" 6675 + sources."@types/express-serve-static-core-4.17.27" 6957 6676 sources."@types/glob-7.1.4" 6958 6677 sources."@types/html-minifier-terser-6.0.0" 6959 6678 sources."@types/http-proxy-1.17.8" 6960 - sources."@types/json-schema-7.0.8" 6679 + sources."@types/json-schema-7.0.9" 6961 6680 sources."@types/json5-0.0.29" 6962 6681 sources."@types/mime-1.3.2" 6963 6682 sources."@types/minimatch-3.0.5" ··· 7008 6727 ]; 7009 6728 }) 7010 6729 sources."ajv-keywords-3.5.2" 7011 - sources."ansi-colors-4.1.1" 7012 6730 sources."ansi-html-community-0.0.8" 7013 6731 sources."ansi-regex-5.0.1" 7014 6732 sources."ansi-styles-3.2.1" ··· 7032 6750 ]; 7033 6751 }) 7034 6752 sources."async-2.6.3" 7035 - sources."axios-0.24.0" 6753 + sources."axios-0.25.0" 7036 6754 (sources."babel-loader-8.2.3" // { 7037 6755 dependencies = [ 7038 6756 sources."schema-utils-2.7.1" ··· 7044 6762 sources."semver-6.3.0" 7045 6763 ]; 7046 6764 }) 7047 - sources."babel-plugin-polyfill-corejs3-0.4.0" 6765 + sources."babel-plugin-polyfill-corejs3-0.5.0" 7048 6766 sources."babel-plugin-polyfill-regenerator-0.3.0" 7049 6767 sources."balanced-match-1.0.0" 7050 6768 sources."batch-0.6.1" ··· 7061 6779 sources."boolbase-1.0.0" 7062 6780 sources."brace-expansion-1.1.11" 7063 6781 sources."braces-3.0.2" 7064 - (sources."browserslist-4.16.6" // { 7065 - dependencies = [ 7066 - sources."colorette-1.2.2" 7067 - ]; 7068 - }) 6782 + sources."browserslist-4.19.1" 7069 6783 sources."buffer-from-1.1.1" 7070 6784 sources."buffer-indexof-1.1.1" 7071 6785 sources."bytes-3.0.0" 7072 6786 sources."call-bind-1.0.0" 7073 6787 sources."callsites-3.1.0" 7074 6788 sources."camel-case-4.1.2" 7075 - sources."caniuse-lite-1.0.30001234" 6789 + sources."caniuse-lite-1.0.30001299" 7076 6790 sources."chalk-2.4.2" 7077 6791 (sources."chokidar-3.5.2" // { 7078 6792 dependencies = [ ··· 7113 6827 sources."cookie-0.4.1" 7114 6828 sources."cookie-signature-1.0.6" 7115 6829 sources."copy-to-clipboard-3.3.1" 7116 - (sources."copy-webpack-plugin-10.2.0" // { 6830 + (sources."copy-webpack-plugin-10.2.1" // { 7117 6831 dependencies = [ 7118 - sources."@types/json-schema-7.0.9" 7119 - sources."ajv-8.8.2" 6832 + sources."ajv-8.9.0" 7120 6833 sources."ajv-keywords-5.1.0" 7121 6834 sources."array-union-3.0.1" 7122 6835 sources."glob-parent-6.0.2" 7123 - sources."globby-12.0.2" 6836 + sources."globby-12.2.0" 7124 6837 sources."json-schema-traverse-1.0.0" 7125 6838 sources."schema-utils-4.0.0" 7126 6839 sources."slash-4.0.0" 7127 6840 ]; 7128 6841 }) 7129 - (sources."core-js-compat-3.19.3" // { 6842 + (sources."core-js-compat-3.20.2" // { 7130 6843 dependencies = [ 7131 - sources."browserslist-4.18.1" 7132 - sources."caniuse-lite-1.0.30001286" 7133 - sources."electron-to-chromium-1.4.17" 6844 + sources."browserslist-4.19.1" 6845 + sources."caniuse-lite-1.0.30001298" 6846 + sources."electron-to-chromium-1.4.39" 7134 6847 sources."node-releases-2.0.1" 7135 6848 sources."semver-7.0.0" 7136 6849 ]; ··· 7183 6896 sources."dot-case-3.0.4" 7184 6897 sources."duplexer-0.1.2" 7185 6898 sources."ee-first-1.1.1" 7186 - sources."electron-to-chromium-1.3.749" 6899 + sources."electron-to-chromium-1.4.43" 7187 6900 sources."emojis-list-3.0.0" 7188 6901 sources."encodeurl-1.0.2" 7189 6902 sources."enhanced-resolve-5.8.3" 7190 - sources."enquirer-2.3.6" 7191 6903 sources."entities-2.2.0" 7192 6904 sources."envinfo-7.8.1" 7193 6905 (sources."es-abstract-1.19.1" // { ··· 7207 6919 sources."escalade-3.1.1" 7208 6920 sources."escape-html-1.0.3" 7209 6921 sources."escape-string-regexp-1.0.5" 7210 - (sources."eslint-8.5.0" // { 6922 + (sources."eslint-8.7.0" // { 7211 6923 dependencies = [ 7212 - sources."acorn-8.6.0" 6924 + sources."acorn-8.7.0" 7213 6925 sources."ansi-styles-4.3.0" 7214 6926 sources."chalk-4.1.2" 7215 6927 sources."color-convert-2.0.1" ··· 7222 6934 sources."eslint-visitor-keys-2.1.0" 7223 6935 ]; 7224 6936 }) 7225 - sources."eslint-visitor-keys-3.1.0" 7226 - sources."espree-9.2.0" 6937 + sources."eslint-visitor-keys-3.2.0" 6938 + sources."espree-9.3.0" 7227 6939 sources."estraverse-5.3.0" 7228 6940 sources."glob-parent-6.0.2" 7229 6941 sources."globals-13.12.0" 7230 6942 sources."has-flag-4.0.0" 7231 - sources."ignore-4.0.6" 7232 6943 sources."ms-2.1.2" 7233 6944 sources."supports-color-7.2.0" 7234 6945 ]; ··· 7245 6956 sources."resolve-1.20.0" 7246 6957 ]; 7247 6958 }) 7248 - (sources."eslint-module-utils-2.7.1" // { 6959 + (sources."eslint-module-utils-2.7.2" // { 7249 6960 dependencies = [ 7250 6961 sources."debug-3.2.7" 7251 6962 sources."ms-2.1.3" 7252 6963 ]; 7253 6964 }) 7254 - (sources."eslint-plugin-import-2.25.3" // { 6965 + (sources."eslint-plugin-import-2.25.4" // { 7255 6966 dependencies = [ 7256 6967 sources."doctrine-2.1.0" 7257 6968 sources."resolve-1.20.0" ··· 7326 7037 sources."flat-5.0.2" 7327 7038 sources."flat-cache-3.0.4" 7328 7039 sources."flatted-3.2.4" 7329 - sources."follow-redirects-1.14.4" 7040 + sources."follow-redirects-1.14.7" 7330 7041 sources."forwarded-0.2.0" 7331 7042 sources."fresh-0.5.2" 7332 7043 sources."fs-monkey-1.0.3" ··· 7361 7072 sources."pify-2.3.0" 7362 7073 ]; 7363 7074 }) 7364 - sources."graceful-fs-4.2.8" 7075 + sources."graceful-fs-4.2.9" 7365 7076 sources."gzip-size-6.0.0" 7366 7077 sources."handle-thing-2.0.1" 7367 7078 sources."has-1.0.3" ··· 7401 7112 sources."humanize-duration-3.27.1" 7402 7113 sources."iconv-lite-0.4.24" 7403 7114 sources."icss-utils-5.1.0" 7404 - sources."ignore-5.1.8" 7115 + sources."ignore-5.2.0" 7405 7116 sources."immutable-4.0.0" 7406 7117 (sources."import-fresh-3.3.0" // { 7407 7118 dependencies = [ ··· 7478 7189 sources."isarray-1.0.0" 7479 7190 sources."isexe-2.0.0" 7480 7191 sources."isobject-3.0.1" 7481 - (sources."jest-worker-27.4.2" // { 7192 + (sources."jest-worker-27.4.6" // { 7482 7193 dependencies = [ 7483 7194 sources."has-flag-4.0.0" 7484 7195 sources."supports-color-8.1.1" ··· 7494 7205 sources."kind-of-6.0.3" 7495 7206 sources."klona-2.0.5" 7496 7207 sources."levn-0.4.1" 7497 - sources."linkifyjs-3.0.4" 7208 + sources."linkifyjs-3.0.5" 7498 7209 sources."loader-runner-4.2.0" 7499 7210 (sources."loader-utils-1.4.0" // { 7500 7211 dependencies = [ ··· 7514 7225 ]; 7515 7226 }) 7516 7227 sources."media-typer-0.3.0" 7517 - sources."memfs-3.4.0" 7228 + sources."memfs-3.4.1" 7518 7229 sources."merge-descriptors-1.0.1" 7519 7230 (sources."merge-source-map-1.1.0" // { 7520 7231 dependencies = [ ··· 7545 7256 sources."negotiator-0.6.2" 7546 7257 sources."neo-async-2.6.2" 7547 7258 sources."no-case-3.0.4" 7548 - sources."node-forge-0.10.0" 7549 - sources."node-releases-1.1.72" 7259 + sources."node-forge-1.2.0" 7260 + sources."node-releases-2.0.1" 7550 7261 sources."normalize-path-3.0.0" 7551 7262 sources."npm-run-path-4.0.1" 7552 7263 sources."nth-check-2.0.1" ··· 7607 7318 sources."picomatch-2.2.2" 7608 7319 sources."pinkie-2.0.4" 7609 7320 sources."pinkie-promise-2.0.1" 7610 - sources."pkg-dir-2.0.0" 7611 7321 sources."plurals-cldr-2.0.1" 7612 7322 sources."popper.js-1.16.1" 7613 7323 (sources."portfinder-1.0.28" // { ··· 7641 7351 sources."prettier-1.19.1" 7642 7352 sources."pretty-error-4.0.0" 7643 7353 sources."process-nextick-args-2.0.1" 7644 - sources."progress-2.0.3" 7645 7354 (sources."proxy-addr-2.0.7" // { 7646 7355 dependencies = [ 7647 7356 sources."ipaddr.js-1.9.1" ··· 7693 7402 sources."run-parallel-1.2.0" 7694 7403 sources."safe-buffer-5.1.2" 7695 7404 sources."safer-buffer-2.1.2" 7696 - sources."sass-1.45.1" 7405 + sources."sass-1.49.0" 7697 7406 sources."sass-loader-12.4.0" 7698 7407 sources."schema-utils-3.1.1" 7699 7408 sources."select-hose-2.0.0" 7700 - sources."selfsigned-1.10.11" 7409 + sources."selfsigned-2.0.0" 7701 7410 (sources."semver-7.3.5" // { 7702 7411 dependencies = [ 7703 7412 sources."lru-cache-6.0.0" ··· 7765 7474 }) 7766 7475 ]; 7767 7476 }) 7768 - (sources."terser-webpack-plugin-5.2.5" // { 7477 + (sources."terser-webpack-plugin-5.3.0" // { 7769 7478 dependencies = [ 7770 7479 sources."source-map-0.6.1" 7771 7480 ]; ··· 7777 7486 sources."toggle-selection-1.0.6" 7778 7487 sources."toidentifier-1.0.1" 7779 7488 sources."totalist-1.1.0" 7780 - sources."tsconfig-paths-3.11.0" 7489 + sources."tsconfig-paths-3.12.0" 7781 7490 sources."tslib-2.3.1" 7782 7491 sources."type-check-0.4.0" 7783 7492 sources."type-fest-0.20.2" ··· 7815 7524 sources."v8-compile-cache-2.3.0" 7816 7525 sources."vary-1.1.2" 7817 7526 sources."vue-2.6.14" 7818 - (sources."vue-eslint-parser-8.0.1" // { 7527 + (sources."vue-eslint-parser-8.1.0" // { 7819 7528 dependencies = [ 7820 - sources."acorn-8.5.0" 7821 - sources."debug-4.3.2" 7822 - sources."eslint-scope-6.0.0" 7823 - sources."eslint-visitor-keys-3.0.0" 7824 - sources."espree-9.0.0" 7529 + sources."acorn-8.7.0" 7530 + sources."debug-4.3.3" 7531 + sources."eslint-scope-7.1.0" 7532 + sources."eslint-visitor-keys-3.2.0" 7533 + sources."espree-9.3.0" 7825 7534 sources."estraverse-5.3.0" 7826 7535 sources."ms-2.1.2" 7827 7536 ]; ··· 7839 7548 sources."vuex-3.6.2" 7840 7549 sources."watchpack-2.3.1" 7841 7550 sources."wbuf-1.7.3" 7842 - (sources."webpack-5.65.0" // { 7551 + (sources."webpack-5.67.0" // { 7843 7552 dependencies = [ 7844 - sources."acorn-8.6.0" 7553 + sources."acorn-8.7.0" 7845 7554 ]; 7846 7555 }) 7847 7556 (sources."webpack-bundle-analyzer-4.5.0" // { ··· 7864 7573 }) 7865 7574 (sources."webpack-dev-middleware-5.3.0" // { 7866 7575 dependencies = [ 7867 - sources."@types/json-schema-7.0.9" 7868 7576 sources."ajv-8.8.2" 7869 7577 sources."ajv-keywords-5.1.0" 7870 7578 sources."json-schema-traverse-1.0.0" ··· 7873 7581 sources."schema-utils-4.0.0" 7874 7582 ]; 7875 7583 }) 7876 - (sources."webpack-dev-server-4.7.1" // { 7584 + (sources."webpack-dev-server-4.7.3" // { 7877 7585 dependencies = [ 7878 - sources."@types/json-schema-7.0.9" 7879 7586 sources."ajv-8.8.2" 7880 7587 sources."ajv-keywords-5.1.0" 7881 7588 sources."ansi-regex-6.0.1" 7882 7589 sources."array-union-2.1.0" 7883 7590 sources."del-6.0.0" 7884 - sources."globby-11.0.4" 7591 + sources."fast-glob-3.2.10" 7592 + sources."globby-11.1.0" 7885 7593 sources."is-path-inside-3.0.3" 7886 7594 sources."json-schema-traverse-1.0.0" 7887 7595 sources."p-map-4.0.0" ··· 7890 7598 ]; 7891 7599 }) 7892 7600 sources."webpack-merge-5.8.0" 7893 - sources."webpack-sources-3.2.2" 7894 - sources."webpack-subresource-integrity-5.0.0" 7601 + sources."webpack-sources-3.2.3" 7602 + sources."webpack-subresource-integrity-5.1.0" 7895 7603 sources."websocket-driver-0.7.4" 7896 7604 sources."websocket-extensions-0.1.4" 7897 7605 sources."which-2.0.2"
+129
pkgs/applications/misc/electrum-grs/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , wrapQtAppsHook 5 + , python3 6 + , zbar 7 + , secp256k1 8 + , enableQt ? true 9 + }: 10 + 11 + let 12 + version = "4.1.5"; 13 + 14 + libsecp256k1_name = 15 + if stdenv.isLinux then "libsecp256k1.so.0" 16 + else if stdenv.isDarwin then "libsecp256k1.0.dylib" 17 + else "libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}"; 18 + 19 + libzbar_name = 20 + if stdenv.isLinux then "libzbar.so.0" 21 + else "libzbar${stdenv.hostPlatform.extensions.sharedLibrary}"; 22 + 23 + py = python3.override { 24 + packageOverrides = self: super: { 25 + 26 + aiorpcx = super.aiorpcx.overridePythonAttrs (oldAttrs: rec { 27 + version = "0.18.7"; 28 + src = oldAttrs.src.override { 29 + inherit version; 30 + sha256 = "1rswrspv27x33xa5bnhrkjqzhv0sknv5kd7pl1vidw9d2z4rx2l0"; 31 + }; 32 + }); 33 + }; 34 + }; 35 + 36 + in 37 + 38 + python3.pkgs.buildPythonApplication { 39 + pname = "electrum-grs"; 40 + inherit version; 41 + 42 + src = fetchFromGitHub { 43 + owner = "Groestlcoin"; 44 + repo = "electrum-grs"; 45 + rev = "v${version}"; 46 + sha256 = "0wvbjj80r1zxpz24adkicxsdjnv3nciga6rl1wfmky463w03rca2"; 47 + }; 48 + 49 + postPatch = '' 50 + substituteInPlace contrib/requirements/requirements.txt \ 51 + --replace "dnspython>=2.0,<2.1" "dnspython>=2.0" 52 + ''; 53 + 54 + nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ]; 55 + 56 + propagatedBuildInputs = with py.pkgs; [ 57 + aiohttp 58 + aiohttp-socks 59 + aiorpcx 60 + attrs 61 + bitstring 62 + cryptography 63 + dnspython 64 + groestlcoin_hash 65 + jsonrpclib-pelix 66 + matplotlib 67 + pbkdf2 68 + protobuf 69 + pysocks 70 + qrcode 71 + requests 72 + tlslite-ng 73 + # plugins 74 + btchip 75 + ckcc-protocol 76 + keepkey 77 + trezor 78 + ] ++ lib.optionals enableQt [ 79 + pyqt5 80 + qdarkstyle 81 + ]; 82 + 83 + preBuild = '' 84 + sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py 85 + substituteInPlace ./electrum_grs/ecc_fast.py \ 86 + --replace ${libsecp256k1_name} ${secp256k1}/lib/libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary} 87 + '' + (if enableQt then '' 88 + substituteInPlace ./electrum_grs/qrscanner.py \ 89 + --replace ${libzbar_name} ${zbar.lib}/lib/libzbar${stdenv.hostPlatform.extensions.sharedLibrary} 90 + '' else '' 91 + sed -i '/qdarkstyle/d' contrib/requirements/requirements.txt 92 + ''); 93 + 94 + postInstall = lib.optionalString stdenv.isLinux '' 95 + # Despite setting usr_share above, these files are installed under $out/nix ... 96 + mv $out/${python3.sitePackages}/nix/store/*/share $out 97 + rm -rf $out/${python3.sitePackages}/nix 98 + 99 + substituteInPlace $out/share/applications/electrum-grs.desktop \ 100 + --replace 'Exec=sh -c "PATH=\"\\$HOME/.local/bin:\\$PATH\"; electrum-grs %u"' \ 101 + "Exec=$out/bin/electrum-grs %u" \ 102 + --replace 'Exec=sh -c "PATH=\"\\$HOME/.local/bin:\\$PATH\"; electrum-grs --testnet %u"' \ 103 + "Exec=$out/bin/electrum-grs --testnet %u" 104 + 105 + ''; 106 + 107 + postFixup = lib.optionalString enableQt '' 108 + wrapQtApp $out/bin/electrum-grs 109 + ''; 110 + 111 + postCheck = '' 112 + $out/bin/electrum-grs help >/dev/null 113 + ''; 114 + 115 + meta = with lib; { 116 + description = "Lightweight Groestlcoin wallet"; 117 + longDescription = '' 118 + An easy-to-use Groestlcoin client featuring wallets generated from 119 + mnemonic seeds (in addition to other, more advanced, wallet options) 120 + and the ability to perform transactions without downloading a copy 121 + of the blockchain. 122 + ''; 123 + homepage = "https://groestlcoin.org/"; 124 + downloadPage = "https://github.com/Groestlcoin/electrum-grs/releases/tag/v{version}"; 125 + license = licenses.mit; 126 + platforms = platforms.all; 127 + maintainers = with maintainers; [ gruve-p ]; 128 + }; 129 + }
+4 -4
pkgs/applications/office/jameica/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, makeDesktopItem, makeWrapper, ant, jdk, jre, gtk2, glib, xorg, Cocoa }: 2 2 3 3 let 4 - _version = "2.10.0"; 5 - _build = "480"; 4 + _version = "2.10.1"; 5 + _build = "482"; 6 6 version = "${_version}-${_build}"; 7 7 name = "jameica-${version}"; 8 8 ··· 31 31 owner = "willuhn"; 32 32 repo = "jameica"; 33 33 rev = "V_${builtins.replaceStrings ["."] ["_"] _version}_BUILD_${_build}"; 34 - sha256 = "0rzhbskzzvr9aan6fwxd2kmzg79ranx7aym5yn1i37z3ra67d1nz"; 34 + sha256 = "0pzcfqsf7flzipwivpinpkfb2xisand1sfjm00wif4pyj3f4qfh1"; 35 35 }; 36 36 37 37 # there is also a build.gradle, but it only seems to be used to vendor 3rd party libraries ··· 70 70 ''; 71 71 license = licenses.gpl2Plus; 72 72 platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; 73 - maintainers = with maintainers; [ flokli ]; 73 + maintainers = with maintainers; [ flokli r3dl3g ]; 74 74 }; 75 75 }
+11 -42
pkgs/applications/office/trilium/0001-Use-console-logger-instead-of-rolling-files.patch
··· 1 1 diff --git a/src/services/log.js b/src/services/log.js 2 - index 4f29994..1e89e0a 100644 2 + index 0fcd9812..dcbff070 100644 3 3 --- a/src/services/log.js 4 4 +++ b/src/services/log.js 5 - @@ -1,14 +1,5 @@ 5 + @@ -1,15 +1,7 @@ 6 6 "use strict"; 7 7 8 8 -const fs = require('fs'); 9 9 -const dataDir = require('./data_dir'); 10 - - 10 + const cls = require('./cls'); 11 + 11 12 -if (!fs.existsSync(dataDir.LOG_DIR)) { 12 13 - fs.mkdirSync(dataDir.LOG_DIR, 0o700); 13 14 -} ··· 17 18 const SECOND = 1000; 18 19 const MINUTE = 60 * SECOND; 19 20 const HOUR = 60 * MINUTE; 20 - @@ -16,45 +7,7 @@ const DAY = 24 * HOUR; 21 + @@ -17,38 +9,6 @@ const DAY = 24 * HOUR; 21 22 22 23 const NEW_LINE = process.platform === "win32" ? '\r\n' : '\n'; 23 24 ··· 54 55 -} 55 56 - 56 57 function log(str) { 58 + const bundleNoteId = cls.get("bundleNoteId"); 59 + 60 + @@ -56,12 +16,6 @@ function log(str) { 61 + str = `[Script ${bundleNoteId}] ${str}`; 62 + } 63 + 57 64 - let millisSinceMidnight = Date.now() - todaysMidnight.getTime(); 58 65 - 59 66 - millisSinceMidnight = checkDate(millisSinceMidnight); ··· 63 70 console.log(str); 64 71 } 65 72 66 - @@ -83,37 +36,6 @@ function request(req, res, timeMs, responseLength = "?") { 67 - `${res.statusCode} ${req.method} ${req.url} with ${responseLength} bytes took ${timeMs}ms`); 68 - } 69 - 70 - -function pad(num) { 71 - - num = Math.floor(num); 72 - - 73 - - return num < 10 ? ("0" + num) : num.toString(); 74 - -} 75 - - 76 - -function padMilli(num) { 77 - - if (num < 10) { 78 - - return "00" + num; 79 - - } 80 - - else if (num < 100) { 81 - - return "0" + num; 82 - - } 83 - - else { 84 - - return num.toString(); 85 - - } 86 - -} 87 - - 88 - -function formatTime(millisSinceMidnight) { 89 - - return pad(millisSinceMidnight / HOUR) 90 - - + ":" + pad((millisSinceMidnight % HOUR) / MINUTE) 91 - - + ":" + pad((millisSinceMidnight % MINUTE) / SECOND) 92 - - + "." + padMilli(millisSinceMidnight % SECOND); 93 - -} 94 - - 95 - -function formatDate() { 96 - - return pad(todaysMidnight.getFullYear()) 97 - - + "-" + pad(todaysMidnight.getMonth() + 1) 98 - - + "-" + pad(todaysMidnight.getDate()); 99 - -} 100 - - 101 - module.exports = { 102 - info, 103 - error,
+3 -3
pkgs/applications/office/trilium/default.nix
··· 19 19 maintainers = with maintainers; [ fliegendewurst ]; 20 20 }; 21 21 22 - version = "0.49.5"; 22 + version = "0.50.1"; 23 23 24 24 desktopSource = { 25 25 url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-${version}.tar.xz"; 26 - sha256 = "0bis0xkpcr8rvhm9364v0np5cnvkscv2fgl90f455lcwy7kk9m12"; 26 + sha256 = "1fb491ld3z6b2cndy8nl7zhpdsbb2v6kkrrc0hv92zm9qnfp7a99"; 27 27 }; 28 28 29 29 serverSource = { 30 30 url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-server-${version}.tar.xz"; 31 - sha256 = "1wv9xz1asjadz1jzgpaxf6lzbj5azgsq0qpawp3y257h488r1z9k"; 31 + sha256 = "1yfj1i5hsphp1y52rgsapqmmv7cvl4imf6dkv8fp3qx5i7j4y5j9"; 32 32 }; 33 33 34 34 in {
+1 -1
pkgs/applications/science/misc/foldingathome/control.nix
··· 42 42 installPhase = "cp -ar usr $out"; 43 43 44 44 postFixup = '' 45 - sed -e 's|/usr/bin|$out/bin|g' -i $out/share/applications/FAHControl.desktop 45 + sed -e "s|/usr/bin|$out/bin|g" -i $out/share/applications/FAHControl.desktop 46 46 wrapProgram "$out/bin/FAHControl" \ 47 47 --suffix PATH : "${fahviewer.outPath}/bin" \ 48 48 --set PYTHONPATH "$out/lib/python2.7/dist-packages"
+1 -1
pkgs/applications/science/misc/foldingathome/viewer.nix
··· 38 38 39 39 unpackPhase = '' 40 40 dpkg-deb -x ${src} ./ 41 - sed -e 's|/usr/bin|$out/bin|g' -i usr/share/applications/FAHViewer.desktop 41 + sed -e "s|/usr/bin|$out/bin|g" -i usr/share/applications/FAHViewer.desktop 42 42 ''; 43 43 44 44 installPhase = ''
+3 -3
pkgs/applications/terminal-emulators/hyper/default.nix
··· 15 15 in 16 16 stdenv.mkDerivation rec { 17 17 pname = "hyper"; 18 - version = "3.1.5"; 18 + version = "3.2.0"; 19 19 20 20 src = fetchurl { 21 21 url = "https://github.com/vercel/hyper/releases/download/v${version}/hyper_${version}_amd64.deb"; 22 - sha256 = "sha256-Pgu09QvP1PnZ13omQlQLVHr3NayhFaQndmsQdLM+W90="; 22 + sha256 = "1ryw3315x0lb60j8nzz78h7zd36r2l1j39hnlfav0p7nq8dhqbpm"; 23 23 }; 24 24 25 25 nativeBuildInputs = [ dpkg ]; ··· 47 47 meta = with lib; { 48 48 description = "A terminal built on web technologies"; 49 49 homepage = "https://hyper.is/"; 50 - maintainers = with maintainers; [ puffnfresh ]; 50 + maintainers = with maintainers; [ puffnfresh fabiangd ]; 51 51 license = licenses.mit; 52 52 platforms = [ "x86_64-linux" ]; 53 53 };
+6 -6
pkgs/applications/version-management/gitlab/data.json
··· 1 1 { 2 - "version": "14.7.0", 3 - "repo_hash": "0jam4krhwkbri99642vz4gjlnr7zfgd6mq7pgjyf00f6pggvhq79", 4 - "yarn_hash": "1cv3lxfw4i9snlw5x6bcip1n97wg72v5zpz9mjxdpzd2i1bwp6da", 2 + "version": "14.7.1", 3 + "repo_hash": "1zph7a2mqwbmgc6isd0vl6w8j9lrlcnxyhabzpcms4v3q3agr4f3", 4 + "yarn_hash": "12k2r1y7kw95kfsmy0s8rbsf0vldr8c2liah0rkc7pihr19gq3w7", 5 5 "owner": "gitlab-org", 6 6 "repo": "gitlab", 7 - "rev": "v14.7.0-ee", 7 + "rev": "v14.7.1-ee", 8 8 "passthru": { 9 - "GITALY_SERVER_VERSION": "14.7.0", 9 + "GITALY_SERVER_VERSION": "14.7.1", 10 10 "GITLAB_PAGES_VERSION": "1.51.0", 11 11 "GITLAB_SHELL_VERSION": "13.22.2", 12 - "GITLAB_WORKHORSE_VERSION": "14.7.0" 12 + "GITLAB_WORKHORSE_VERSION": "14.7.1" 13 13 } 14 14 }
+2 -2
pkgs/applications/version-management/gitlab/gitaly/default.nix
··· 23 23 gemdir = ./.; 24 24 }; 25 25 26 - version = "14.7.0"; 26 + version = "14.7.1"; 27 27 gitaly_package = "gitlab.com/gitlab-org/gitaly/v${lib.versions.major version}"; 28 28 in 29 29 ··· 35 35 owner = "gitlab-org"; 36 36 repo = "gitaly"; 37 37 rev = "v${version}"; 38 - sha256 = "sha256-hOtdeJSjZLGcPCZpu42lGtCtQoLE0/AQqfQWLUJ6Hf8="; 38 + sha256 = "sha256-MGcqYbHHeYwjfnvrJG/ZtOnyxsj+w1kPHOkVHf2AeMQ="; 39 39 }; 40 40 41 41 vendorSha256 = "sha256-eapqtSstc7d3R7A/5krKV0uVr9GhGkHHMrmsBOpWAbo=";
+1 -1
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 5 5 buildGoModule rec { 6 6 pname = "gitlab-workhorse"; 7 7 8 - version = "14.7.0"; 8 + version = "14.7.1"; 9 9 10 10 src = fetchFromGitLab { 11 11 owner = data.owner;
+1 -1
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock
··· 1661 1661 yajl-ruby (~> 1.4.1) 1662 1662 1663 1663 BUNDLED WITH 1664 - 2.2.24 1664 + 2.3.6
+41
pkgs/data/themes/graphite-kde-theme/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "graphite-kde-theme"; 8 + version = "unstable-2022-01-22"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "vinceliuice"; 12 + repo = pname; 13 + rev = "d60a26533b104d6d2251c5187a402f3f35ecbdf7"; 14 + sha256 = "0cry5s3wr0frpchc0hx97r9v6r3v6rvln7l1hb3znn8npkr4mssi"; 15 + }; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + 20 + patchShebangs install.sh 21 + 22 + substituteInPlace install.sh \ 23 + --replace '$HOME/.local' $out \ 24 + --replace '$HOME/.config' $out/share 25 + 26 + name= ./install.sh --dest $out/share/themes 27 + 28 + mkdir -p $out/share/sddm/themes 29 + cp -a sddm/Graphite $out/share/sddm/themes/ 30 + 31 + runHook postInstall 32 + ''; 33 + 34 + meta = with lib; { 35 + description = "A flat Design theme for KDE Plasma desktop"; 36 + homepage = "https://github.com/vinceliuice/Graphite-kde-theme"; 37 + license = licenses.gpl3Only; 38 + platforms = platforms.all; 39 + maintainers = [ maintainers.romildo ]; 40 + }; 41 + }
+2 -2
pkgs/desktops/mate/mate-panel/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mate-panel"; 5 - version = "1.26.1"; 5 + version = "1.26.2"; 6 6 7 7 src = fetchurl { 8 8 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 - sha256 = "038irkjl9ap7kqacf1c0i74h0rwkcpaw685vyml50vj5hg23hc38"; 9 + sha256 = "rsT5jInFnnbMBlbtBILx2CkS9N7MZg8hyNAE5JPgVBA="; 10 10 }; 11 11 12 12 nativeBuildInputs = [
+5 -5
pkgs/development/libraries/pipewire/0050-pipewire-pulse-path.patch
··· 1 1 diff --git a/meson_options.txt b/meson_options.txt 2 - index 71c2e35e9..a0f380c04 100644 2 + index 961ae2a76..692b84dfd 100644 3 3 --- a/meson_options.txt 4 4 +++ b/meson_options.txt 5 - @@ -176,6 +176,9 @@ option('udev', 5 + @@ -179,6 +179,9 @@ option('udev', 6 6 option('udevrulesdir', 7 7 type : 'string', 8 8 description : 'Directory for udev rules (defaults to /lib/udev/rules.d)') 9 9 +option('pipewire_pulse_prefix', 10 10 + type : 'string', 11 11 + description: 'Install directory for the pipewire-pulse daemon') 12 - option('systemd-user-unit-dir', 12 + option('systemd-system-unit-dir', 13 13 type : 'string', 14 - description : 'Directory for user systemd units (defaults to /usr/lib/systemd/user)') 14 + description : 'Directory for system systemd units (defaults to /usr/lib/systemd/system)') 15 15 diff --git a/src/daemon/systemd/user/meson.build b/src/daemon/systemd/user/meson.build 16 - index 5bd134537..5a3ca9ed5 100644 16 + index d17f3794f..34afe4f1a 100644 17 17 --- a/src/daemon/systemd/user/meson.build 18 18 +++ b/src/daemon/systemd/user/meson.build 19 19 @@ -9,7 +9,7 @@ install_data(
+23 -3
pkgs/development/libraries/pipewire/0090-pipewire-config-template-paths.patch
··· 1 + diff --git a/src/daemon/minimal.conf.in b/src/daemon/minimal.conf.in 2 + index 6464839a0..05546201f 100644 3 + --- a/src/daemon/minimal.conf.in 4 + +++ b/src/daemon/minimal.conf.in 5 + @@ -110,7 +110,7 @@ context.modules = [ 6 + # access.allowed to list an array of paths of allowed 7 + # apps. 8 + #access.allowed = [ 9 + - # @session_manager_path@ 10 + + # <session_manager_path> 11 + #] 12 + 13 + # An array of rejected paths. 14 + @@ -298,5 +298,5 @@ context.exec = [ 15 + # It can be interesting to start another daemon here that listens 16 + # on another address with the -a option (eg. -a tcp:4713). 17 + # 18 + - #@pulse_comment@{ path = "@pipewire_path@" args = "-c pipewire-pulse.conf" } 19 + + #@pulse_comment@{ path = "<pipewire_path>" args = "-c pipewire-pulse.conf" } 20 + ] 1 21 diff --git a/src/daemon/pipewire.conf.in b/src/daemon/pipewire.conf.in 2 - index 648e13069..50f767f0c 100644 22 + index a948a1b9b..4ece43c6f 100644 3 23 --- a/src/daemon/pipewire.conf.in 4 24 +++ b/src/daemon/pipewire.conf.in 5 - @@ -131,7 +131,7 @@ context.modules = [ 25 + @@ -132,7 +132,7 @@ context.modules = [ 6 26 # access.allowed to list an array of paths of allowed 7 27 # apps. 8 28 #access.allowed = [ ··· 11 31 #] 12 32 13 33 # An array of rejected paths. 14 - @@ -235,12 +235,12 @@ context.exec = [ 34 + @@ -246,12 +246,12 @@ context.exec = [ 15 35 # but it is better to start it as a systemd service. 16 36 # Run the session manager with -h for options. 17 37 #
+14 -5
pkgs/development/libraries/pipewire/default.nix
··· 27 27 , ncurses 28 28 , readline81 # meson can't find <7 as those versions don't have a .pc file 29 29 , lilv 30 - , openssl 31 30 , makeFontsConf 32 31 , callPackage 33 32 , nixosTests ··· 55 54 , libpulseaudio 56 55 , zeroconfSupport ? true 57 56 , avahi 57 + , raopSupport ? true 58 + , openssl 58 59 , rocSupport ? true 59 60 , roc-toolkit 61 + , x11Support ? true 62 + , libcanberra 63 + , xorg 60 64 }: 61 65 62 66 let ··· 65 69 66 70 self = stdenv.mkDerivation rec { 67 71 pname = "pipewire"; 68 - version = "0.3.43"; 72 + version = "0.3.45"; 69 73 70 74 outputs = [ 71 75 "out" ··· 83 87 owner = "pipewire"; 84 88 repo = "pipewire"; 85 89 rev = version; 86 - sha256 = "sha256-vjMA9dQvZe7dPbF9BNtCYf1V240RUBdtxeyqFjWA4j4="; 90 + sha256 = "sha256-OnQd98qfOekAsVXLbciZLNPrM84KBX6fOx/f8y2BYI0="; 87 91 }; 88 92 89 93 patches = [ ··· 120 124 libsndfile 121 125 lilv 122 126 ncurses 123 - openssl 124 127 readline81 125 128 udev 126 129 vulkan-headers ··· 134 137 ++ lib.optionals bluezSupport [ bluez libfreeaptx ldacbt sbc fdk_aac ] 135 138 ++ lib.optional pulseTunnelSupport libpulseaudio 136 139 ++ lib.optional zeroconfSupport avahi 137 - ++ lib.optional rocSupport roc-toolkit; 140 + ++ lib.optional raopSupport openssl 141 + ++ lib.optional rocSupport roc-toolkit 142 + ++ lib.optionals x11Support [ libcanberra xorg.libxcb ]; 138 143 139 144 # Valgrind binary is required for running one optional test. 140 145 checkInputs = lib.optional withValgrind valgrind; ··· 160 165 "-Dbluez5-backend-hsphfpd=${mesonEnableFeature hsphfpdSupport}" 161 166 "-Dsysconfdir=/etc" 162 167 "-Dpipewire_confdata_dir=${placeholder "lib"}/share/pipewire" 168 + "-Draop=${mesonEnableFeature raopSupport}" 163 169 "-Dsession-managers=" 164 170 "-Dvulkan=enabled" 171 + "-Dx11=${mesonEnableFeature x11Support}" 165 172 ]; 166 173 167 174 # Fontconfig error: Cannot load default config file ··· 191 198 moveToOutput "share/systemd/user/pipewire-pulse.*" "$pulse" 192 199 moveToOutput "lib/systemd/user/pipewire-pulse.*" "$pulse" 193 200 moveToOutput "bin/pipewire-pulse" "$pulse" 201 + 202 + moveToOutput "bin/pw-jack" "$jack" 194 203 ''; 195 204 196 205 passthru = {
+2 -2
pkgs/development/python-modules/aioconsole/default.nix
··· 16 16 # wrapped to be able to find aioconsole and any other packages. 17 17 buildPythonPackage rec { 18 18 pname = "aioconsole"; 19 - version = "0.4.0"; 19 + version = "0.4.1"; 20 20 format = "setuptools"; 21 21 22 22 disabled = pythonOlder "3.7"; ··· 25 25 owner = "vxgmichel"; 26 26 repo = pname; 27 27 rev = "v${version}"; 28 - sha256 = "185lzyqimi02l6q9dazkps7nlj08lf9l730ndyk59470jivccc21"; 28 + sha256 = "sha256-OCsao4oerHGpzsoqPP3EXJVs6NZeLNsoaC83k7oX688="; 29 29 }; 30 30 31 31 checkInputs = [
+2 -2
pkgs/development/python-modules/faraday-plugins/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "faraday-plugins"; 19 - version = "1.5.10"; 19 + version = "1.6.0"; 20 20 format = "setuptools"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "infobyte"; 24 24 repo = "faraday_plugins"; 25 25 rev = "v${version}"; 26 - sha256 = "sha256-Xj1Ibl+xDN3uCww54StUBCc+w/iPMdbWucRqdb+GHVI="; 26 + sha256 = "sha256-mvYbX8puqcT9kl1Abi785ptmmg9CxKZVTO6gPpk4sKU="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/flux-led/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "flux-led"; 11 - version = "0.28.17"; 11 + version = "0.28.20"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "Danielhiversen"; 18 18 repo = "flux_led"; 19 19 rev = version; 20 - sha256 = "1brh2wmv29vsvnndsjf1nbh2brwrkxicwcyj9brs9kgsrhvlv71s"; 20 + sha256 = "sha256-+2oY+dfRoY9Ypa2DJfIoz7jrTKMoSYz2zhjgl+BNmds="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-kms/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-kms"; 15 - version = "2.10.1"; 15 + version = "2.11.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "6a1cedc549ee0886d8603f519cc8631de3112be6f84c0bbbaedab4ee3f9b58fc"; 19 + sha256 = "sha256-8JOa8HzYGJq1lrPXCWRvspXpopEK+qf5av7kmKbFIrQ="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-texttospeech/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-texttospeech"; 14 - version = "2.9.1"; 14 + version = "2.10.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "0a76bed3cf48cf72d4aa50329d5da2bbc008c5c7dd57326854fc038536e107f1"; 18 + sha256 = "sha256-j2MSeQLw7udQrEqj9LtMqvaGSgTLiItdpN8dUTedYdI="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ libcst google-api-core proto-plus ];
+2 -2
pkgs/development/python-modules/identify/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "identify"; 12 - version = "2.4.7"; 12 + version = "2.4.8"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "pre-commit"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-Ub4R8jQH2nVhgMPEMV76JVcsJpX3X4BvciERVQXTA0o="; 21 + sha256 = "sha256-MrlFTUNisT5VG8IUIk/qejkM7tV6qrU4ASBzAUCLWpQ="; 22 22 }; 23 23 24 24 checkInputs = [
+2 -2
pkgs/development/python-modules/pytile/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pytile"; 16 - version = "2022.01.0"; 16 + version = "2022.02.0"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "bachya"; 23 23 repo = pname; 24 24 rev = version; 25 - sha256 = "sha256-7iR2R/ESaBd29Xf6ZKMGY41/uU55tB62QOvT3dFSZaE="; 25 + sha256 = "sha256-IGjM9yU/3EjO9sV1ZZUX7RUL/a6CcMPzANhVMTcbZGU="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pywlroots/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "pywlroots"; 21 - version = "0.15.6"; 21 + version = "0.15.7"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - sha256 = "vOdmwsMyDzz1kbA7+W2irax/1SFSNYTrRCQjfW7Npzk="; 25 + sha256 = "EJAqtzFKx9Zripspv3lXIDj54pqHV0in6RrOCgFUyU8="; 26 26 }; 27 27 28 28 # The XWayland detection uses some hard-coded FHS paths. Since we
+3 -3
pkgs/development/tools/analysis/bingrep/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "bingrep"; 5 - version = "0.8.5"; 5 + version = "0.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "m4b"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ayA3aEidZPa5GJgbbm5K3X2Xgd5Eb6TgUU80Gw/p07w="; 11 + hash = "sha256-M3BYj1SKQKjEqP9cxaVlh7UeleDbcx6JN+UI6Ez+QJ8="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-XcXllex7UEufV5URhH7aqln1tNxwaiAETO3fUKmHf7s="; 14 + cargoHash = "sha256-botAoLNg/qTh+cjPXcjo/Ol2Vktj/c5130k5falEuLY="; 15 15 16 16 meta = with lib; { 17 17 description = "Greps through binaries from various OSs and architectures, and colors them";
+3 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 22 23 23 buildPythonApplication rec { 24 24 pname = "checkov"; 25 - version = "2.0.763"; 25 + version = "2.0.787"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "bridgecrewio"; 29 29 repo = pname; 30 30 rev = version; 31 - hash = "sha256-KqxFFRKOCDzlGVKYMp3YNWMKGdxXT9f6xwaCc5XIruk="; 31 + hash = "sha256-fnLnVr5WYpEG0qGjKm4JuQCHi3fbv9lu8jWNv/Z+3wM="; 32 32 }; 33 33 34 34 nativeBuildInputs = with py.pkgs; [ ··· 96 96 "TestSarifReport" 97 97 # Will probably be fixed in one of the next releases 98 98 "test_valid_cyclonedx_bom" 99 + "test_record_relative_path_with_direct_oberlay" 99 100 # Requires prettytable release which is only available in staging 100 101 "test_skipped_check_exists" 101 102 "test_record_relative_path_with_relative_dir"
+3 -4
pkgs/development/tools/packer/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "packer"; 10 - version = "1.7.9"; 10 + version = "1.7.10"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "hashicorp"; 14 14 repo = "packer"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-e2G4kxcizE2lfdryS4S04OwWxseyUqGS0SAaBdiXax0="; 16 + sha256 = "sha256-KkdkLos55n+IE9oIZPADIcSgrE6kn0rDWzEkwoYfoFw="; 17 17 }; 18 18 19 - vendorSha256 = "sha256-5YcDaGbvw6xo5J8mtJ3CUS8JNCqKUD7kdUyfYIkQ6aE="; 19 + vendorSha256 = "sha256-oSIwp8t+US8yNziuq0BR8BsVR1/e0jkxE4QuiqyheQQ="; 20 20 21 21 subPackages = [ "." ]; 22 22 ··· 35 35 maintainers = with maintainers; [ cstrahan zimbatm ma27 ]; 36 36 changelog = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md"; 37 37 platforms = platforms.unix; 38 - broken = stdenv.isDarwin; # needs to update gopsutil to at least v3.21.3 to include https://github.com/shirou/gopsutil/pull/1042 39 38 }; 40 39 }
+3 -3
pkgs/development/tools/rust/cargo-xbuild/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-xbuild"; 5 - version = "0.6.2"; 5 + version = "0.6.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "rust-osdev"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "01whdjryz6zjsk4149h72w5xdjnkpcn5daf0xnsb59b0q38hjgg9"; 11 + sha256 = "sha256-bnceN47OFGlxs3ibcKoZFjoTgXRQxA2ZqxnthJ/fsqE="; 12 12 }; 13 13 14 - cargoSha256 = "036a50shzl6wdjk5wypkacx1kjwbyb4x1aqhbzgjgpxxxrf0lj16"; 14 + cargoSha256 = "sha256-qMPJC61ZVW9olMgNnGrvcQ/je4se4J5gOVoaOpNMUo8="; 15 15 16 16 meta = with lib; { 17 17 description = "Automatically cross-compiles the sysroot crates core, compiler_builtins, and alloc";
+5 -5
pkgs/os-specific/linux/displaylink/default.nix
··· 20 20 in 21 21 stdenv.mkDerivation rec { 22 22 pname = "displaylink"; 23 - version = "5.4.1-55.174"; 23 + version = "5.5.0-beta-59.118"; 24 24 25 25 src = requireFile rec { 26 - name = "displaylink.zip"; 27 - sha256 = "1biswvjz91gmx7xf9g05h3ra463hf2yv9mr2nkxclyrd283iiiqc"; 26 + name = "displaylink-55.zip"; 27 + sha256 = "0mid6p1mnkhbl96cr763ngdwrlgnpgs6c137rwc2sjf4v33g59ma"; 28 28 message = '' 29 29 In order to install the DisplayLink drivers, you must first 30 30 comply with DisplayLink's EULA and download the binaries and 31 31 sources from here: 32 32 33 - https://www.synaptics.com/products/displaylink-graphics/downloads/ubuntu-5.4.1 33 + https://www.synaptics.com/products/displaylink-graphics/downloads/ubuntu-5.5-Beta 34 34 35 35 Once you have downloaded the file, please use the following 36 36 commands and re-run the installation: 37 37 38 - mv \$PWD/"DisplayLink USB Graphics Software for Ubuntu ${lib.versions.majorMinor version}.zip" \$PWD/${name} 38 + mv \$PWD/"DisplayLink USB Graphics Software for Ubuntu (Beta)5.5 Beta-EXE.zip" \$PWD/${name} 39 39 nix-prefetch-url file://\$PWD/${name} 40 40 ''; 41 41 };
+6 -4
pkgs/os-specific/linux/evdi/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "evdi"; 5 - version = "unstable-2021-07-07"; 5 + version = "1.10.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "DisplayLink"; 9 9 repo = pname; 10 - rev = "b0b2c80eb63f9b858b71afa772135f434aea192a"; 11 - sha256 = "sha256-io+CbZovGjEJjwtmARFH23Djt933ONoHMDoea+i6xFo="; 10 + rev = "v${version}"; 11 + sha256 = "sha256-vMcmUWdnO9JmImxz4vO3/UONlsrCGc8VH/o38YwCIzg="; 12 12 }; 13 + 14 + NIX_CFLAGS_COMPILE = "-Wno-error -Wno-error=sign-compare"; 13 15 14 16 nativeBuildInputs = kernel.moduleBuildDependencies; 15 17 ··· 33 35 platforms = platforms.linux; 34 36 license = with licenses; [ lgpl21Only gpl2Only ]; 35 37 homepage = "https://www.displaylink.com/"; 36 - broken = kernel.kernelOlder "4.19" || kernel.kernelAtLeast "5.15" || stdenv.isAarch64; 38 + broken = kernel.kernelOlder "4.19" || stdenv.isAarch64; 37 39 }; 38 40 }
+16 -12
pkgs/os-specific/linux/fnotifystat/default.nix
··· 1 - { stdenv, lib, fetchurl }: 1 + { stdenv, lib, fetchFromGitHub }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "fnotifystat"; 5 5 version = "0.02.07"; 6 - src = fetchurl { 7 - url = "https://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz"; 8 - sha256 = "0ipfg2gymbgx7bqlx1sq5p2y89k5j18iqnb0wa27n5s3kh9sh8w0"; 6 + src = fetchFromGitHub { 7 + owner = "ColinIanKing"; 8 + repo = pname; 9 + rev = "V${version}"; 10 + sha256 = "sha256-5oYM1t+vmWywYRbgXI2RGQlOuNJluj2gwCMf3pTpDC0="; 9 11 }; 10 - installFlags = [ "DESTDIR=$(out)" ]; 11 - postInstall = '' 12 - mv $out/usr/* $out 13 - rm -r $out/usr 14 - ''; 12 + 13 + installFlags = [ 14 + "BINDIR=${placeholder "out"}/bin" 15 + "MANDIR=${placeholder "out"}/share/man/man8" 16 + "BASHDIR=${placeholder "out"}/share/bash-completion/completions" 17 + ]; 18 + 15 19 meta = with lib; { 16 20 description = "File activity monitoring tool"; 17 - homepage = "https://kernel.ubuntu.com/~cking/fnotifystat/"; 18 - license = licenses.gpl2; 21 + homepage = "https://github.com/ColinIanKing/fnotifystat"; 22 + license = licenses.gpl2Plus; 19 23 platforms = platforms.linux; 20 - maintainers = with maintainers; [ womfoo ]; 24 + maintainers = with maintainers; [ womfoo dtzWill ]; 21 25 }; 22 26 }
+25 -25
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 2 2 "4.14": { 3 3 "patch": { 4 4 "extra": "-hardened1", 5 - "name": "linux-hardened-4.14.262-hardened1.patch", 6 - "sha256": "0z2vdqbsqngdm1w7dh65c1ir25x6vrpmyrjx3c8vgzql67c5xb4b", 7 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.262-hardened1/linux-hardened-4.14.262-hardened1.patch" 5 + "name": "linux-hardened-4.14.264-hardened1.patch", 6 + "sha256": "1zlsww0mqaw5cswwqjvc9magh2a31v6ii7a4ivdra6nsv1xrdimy", 7 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.264-hardened1/linux-hardened-4.14.264-hardened1.patch" 8 8 }, 9 - "sha256": "05yl51r5n3q9l8pq6azx3bbl69l79lk8vkdivy3cvgzdh59pizac", 10 - "version": "4.14.262" 9 + "sha256": "1d1588f0zrq93dk9j8gmvfm9mlniyw98s0i3gmg2sa7h1p04pc2m", 10 + "version": "4.14.264" 11 11 }, 12 12 "4.19": { 13 13 "patch": { 14 14 "extra": "-hardened1", 15 - "name": "linux-hardened-4.19.225-hardened1.patch", 16 - "sha256": "0wqwgsk0giwcp0kwp39nkv5bdqk4s2np7gsjymaqimq9187cnkvv", 17 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.225-hardened1/linux-hardened-4.19.225-hardened1.patch" 15 + "name": "linux-hardened-4.19.227-hardened1.patch", 16 + "sha256": "127l8s1wb71iyb4iw1bxkxn48qcchz50qwjpx9r2vm81cihasxs7", 17 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.227-hardened1/linux-hardened-4.19.227-hardened1.patch" 18 18 }, 19 - "sha256": "15k7b04zx5ggfjagp8sfrylr9xgwgz3hb2bygdml7ka1jnbv76jb", 20 - "version": "4.19.225" 19 + "sha256": "0d1jyyxdrpyi35033fjg8g6zz99ffry2ks1wlldfaxfa6wh9dp39", 20 + "version": "4.19.227" 21 21 }, 22 22 "5.10": { 23 23 "patch": { 24 24 "extra": "-hardened1", 25 - "name": "linux-hardened-5.10.93-hardened1.patch", 26 - "sha256": "0ka3vnd1pwdjkz10hpn4jpxbg6s00kf5jj47847vhbi7fmbgvbg5", 27 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.93-hardened1/linux-hardened-5.10.93-hardened1.patch" 25 + "name": "linux-hardened-5.10.96-hardened1.patch", 26 + "sha256": "000mpwvyxkiw0kn0wdz8c97a39wafc8pia4rqraf7z21hbavbiav", 27 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.96-hardened1/linux-hardened-5.10.96-hardened1.patch" 28 28 }, 29 - "sha256": "1jxv7can60rc5i2yjgj8frcjvwi1jnba1jl8i3070xmb1d1qqy56", 30 - "version": "5.10.93" 29 + "sha256": "0j70nbsxy6qpynr3f9igl9wf14wx40diazf4j7w7mlwxh51a1r9m", 30 + "version": "5.10.96" 31 31 }, 32 32 "5.15": { 33 33 "patch": { 34 34 "extra": "-hardened1", 35 - "name": "linux-hardened-5.15.16-hardened1.patch", 36 - "sha256": "0a8cdxw2s0jr39j072pn7xr5j8zfdmrbsfl5rbvcjqrfnj4ijc15", 37 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.16-hardened1/linux-hardened-5.15.16-hardened1.patch" 35 + "name": "linux-hardened-5.15.19-hardened1.patch", 36 + "sha256": "0nkwf7dzvgm30hl24g8rpk3raqcxlplga0ksk8f9w7s87axpr5lm", 37 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.19-hardened1/linux-hardened-5.15.19-hardened1.patch" 38 38 }, 39 - "sha256": "150pzxra564z9xaaclmbbd29x4x9il8y78zz7szi50lzx0a0l2ms", 40 - "version": "5.15.16" 39 + "sha256": "0l70ckc0imnn7x9p9dawprzblszadk79468wx3zqz951yb4k5gh1", 40 + "version": "5.15.19" 41 41 }, 42 42 "5.4": { 43 43 "patch": { 44 44 "extra": "-hardened1", 45 - "name": "linux-hardened-5.4.173-hardened1.patch", 46 - "sha256": "1zpczgxyh76lazsjgf7n1872aayaxg660x6phyr6db667wa8x3r4", 47 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.173-hardened1/linux-hardened-5.4.173-hardened1.patch" 45 + "name": "linux-hardened-5.4.176-hardened1.patch", 46 + "sha256": "0w8zh2kcaclancivr65ij6mgbgyvf5vmlmf3mls4n1yj0ld15ghd", 47 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.176-hardened1/linux-hardened-5.4.176-hardened1.patch" 48 48 }, 49 - "sha256": "0ff2jvwxj55547wvwp94a8bsd610s72906d4nsyhiirrn9sy5s4r", 50 - "version": "5.4.173" 49 + "sha256": "0h67d34n8cwq60rv8nw0a7n9mkihs0cg0b5zl6ihfyjflqj0jq6r", 50 + "version": "5.4.176" 51 51 } 52 52 }
+2 -2
pkgs/os-specific/linux/kernel/linux-4.4.nix
··· 1 1 { buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args: 2 2 3 3 buildLinux (args // rec { 4 - version = "4.4.301"; 4 + version = "4.4.302"; 5 5 extraMeta.branch = "4.4"; 6 6 extraMeta.broken = stdenv.isAarch64; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 10 - sha256 = "0x0zq8i806i04p0cl742wxh8pxc0wglww0in98gr2ayp7r8qf7am"; 10 + sha256 = "1cvnydc7y5xrb1c4yfmsl846dd1jfrr7xf62gxbhnkk01fs7n09m"; 11 11 }; 12 12 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.10.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.10.95"; 6 + version = "5.10.96"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "08zwcf66varjm2s4lb5a5yh5lh90kb43d6dlrg4xv1179vwxmnf8"; 16 + sha256 = "0j70nbsxy6qpynr3f9igl9wf14wx40diazf4j7w7mlwxh51a1r9m"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.15.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.15.18"; 6 + version = "5.15.19"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0pkcg3cns4l1i5r7ab77pksl76h54g2mnhvdhc1k8skp9pl71p91"; 16 + sha256 = "0l70ckc0imnn7x9p9dawprzblszadk79468wx3zqz951yb4k5gh1"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.16.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.16.4"; 6 + version = "5.16.5"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "1gsh7gj5k6kqf5sf26b26rr0idgxdw4xxcba2qaajddyp502mqrb"; 16 + sha256 = "1ay7y7c2bdgvqd7hw8l9jxzx9m2rd5drdakjqnblz4w9sbcyvbpc"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.4.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.4.175"; 6 + version = "5.4.176"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0h2838jrw69xv1mg1qj0n8qx6g8n48iv8yna633xd20lzggip45c"; 16 + sha256 = "0h67d34n8cwq60rv8nw0a7n9mkihs0cg0b5zl6ihfyjflqj0jq6r"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-libre.nix
··· 1 1 { stdenv, lib, fetchsvn, linux 2 2 , scripts ? fetchsvn { 3 3 url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/"; 4 - rev = "18517"; 5 - sha256 = "1i4gppn3lyi3aqzscrdhm2dsvfa84xqhymcc468sakn9in3g85gg"; 4 + rev = "18587"; 5 + sha256 = "01h3mvj36b3wnkjm932ya5prsyfw7fszifdb9bvqwrd2ggawxng9"; 6 6 } 7 7 , ... 8 8 }:
+13 -1
pkgs/os-specific/linux/procdump/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, bash, coreutils, gdb, zlib }: 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, bash, coreutils, gdb, zlib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "procdump"; ··· 11 11 sha256 = "sha256-gVswAezHl7E2cBTJEQhPFXhHkzhWVHSpPF8m0s8+ekc="; 12 12 }; 13 13 14 + patches = [ 15 + # Pull upstream patch to fix parallel builds: 16 + # https://github.com/Sysinternals/ProcDump-for-Linux/pull/133 17 + (fetchpatch { 18 + name = "parallel.patch"; 19 + url = "https://github.com/Sysinternals/ProcDump-for-Linux/commit/0d735836f11281cc6134be93eac8acb302f2055e.patch"; 20 + sha256 = "sha256-zsqllPHF8ZuXAIDSAPvbzdKa43uSSx9ilUKM1vFVW90="; 21 + }) 22 + ]; 23 + 14 24 nativeBuildInputs = [ zlib ]; 15 25 buildInputs = [ bash coreutils gdb ]; 16 26 ··· 26 36 "INSTALLDIR=/bin" 27 37 "MANDIR=/share/man/man1" 28 38 ]; 39 + 40 + enableParallelBuilding = true; 29 41 30 42 doCheck = false; # needs sudo root 31 43
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2022.2.0"; 5 + version = "2022.2.1"; 6 6 components = { 7 7 "abode" = ps: with ps; [ abodepy ]; 8 8 "accuweather" = ps: with ps; [ accuweather ];
+2 -2
pkgs/servers/home-assistant/default.nix
··· 121 121 extraBuildInputs = extraPackages python.pkgs; 122 122 123 123 # Don't forget to run parse-requirements.py after updating 124 - hassVersion = "2022.2.0"; 124 + hassVersion = "2022.2.1"; 125 125 126 126 in python.pkgs.buildPythonApplication rec { 127 127 pname = "homeassistant"; ··· 139 139 owner = "home-assistant"; 140 140 repo = "core"; 141 141 rev = version; 142 - hash = "sha256:01gx6i147h7amj41mv46x6j9aah4qd1zjybv5px5y9p5cbhjccms"; 142 + hash = "sha256:1r2xwa4pdswl4wgbmhi2b87qqa6dn4gy31hpvwyqldvzpl0zjw0m"; 143 143 }; 144 144 145 145 # leave this in, so users don't have to constantly update their downstream patch handling
+7 -3
pkgs/servers/home-assistant/frontend.nix
··· 4 4 # the frontend version corresponding to a specific home-assistant version can be found here 5 5 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json 6 6 pname = "home-assistant-frontend"; 7 - version = "20220202.0"; 7 + version = "20220203.0"; 8 + format = "wheel"; 8 9 9 10 src = fetchPypi { 10 - inherit pname version; 11 - sha256 = "sha256-O5oDDptQmwM02SESSS314YlvCqrOcEHNBSKlYE/qrTc="; 11 + inherit version format; 12 + pname = "home_assistant_frontend"; 13 + dist = "py3"; 14 + python = "py3"; 15 + sha256 = "sha256-5iODXctmkw+MIdf/GECGhhWOMruMqeWBDWwwwrNQMjU="; 12 16 }; 13 17 14 18 # there is nothing to strip in this package
+4 -4
pkgs/servers/prowlarr/default.nix
··· 16 16 }."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 17 17 18 18 hash = { 19 - x64-linux_hash = "sha256-pkuq7waABHEo6gx6d3qJs4IXFu0EcrdpsQdKoMkjN3s="; 20 - arm64-linux_hash = "sha256-+BLyb6mygCFQfe7u/MbGbJROF7XT0wdRPi08izI6u8c="; 21 - x64-osx_hash = "sha256-f5EHxxXdXzj8x6BmTZCHQ9p8Sl8T0Rxe/K9FwTzbR4Q="; 19 + x64-linux_hash = "sha256-NTkb6E0GRofd63TozLPxyNZ6GxO4pAc+MWsUDKWLZDY="; 20 + arm64-linux_hash = "sha256-eB1Izvf/E0iOGkWt6fSc4oAt1sJ7XTxn/iwDNYz7WkA="; 21 + x64-osx_hash = "sha256-TAphdcbzbNUZpWYVaHBkhI+RsgxWmI8n8Z6VwYxHXWg="; 22 22 }."${arch}-${os}_hash"; 23 23 24 24 in stdenv.mkDerivation rec { 25 25 pname = "prowlarr"; 26 - version = "0.1.10.1375"; 26 + version = "0.2.0.1448"; 27 27 28 28 src = fetchurl { 29 29 url = "https://github.com/Prowlarr/Prowlarr/releases/download/v${version}/Prowlarr.develop.${version}.${os}-core-${arch}.tar.gz";
+44
pkgs/tools/X11/obconf/default.nix
··· 1 + { lib, stdenv, fetchgit, autoreconfHook, pkg-config, gtk3, openbox, 2 + imlib2, libxml2, libstartup_notification, makeWrapper, libSM }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "obconf"; 6 + version = "unstable-2015-02-13"; 7 + 8 + src = fetchgit { 9 + url = "git://git.openbox.org/dana/obconf"; 10 + rev = "63ec47c5e295ad4f09d1df6d92afb7e10c3fec39"; 11 + sha256 = "sha256-qwm66VA/ueRMFtSUcrmuObNkz+KYgWRnmR7TnQwpxiE="; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + autoreconfHook 16 + pkg-config 17 + ]; 18 + 19 + buildInputs = [ 20 + gtk3 21 + imlib2 22 + libSM 23 + libstartup_notification 24 + libxml2 25 + makeWrapper 26 + openbox 27 + ]; 28 + 29 + postPatch = '' 30 + substituteInPlace configure.ac --replace 2.0.4 ${version} 31 + ''; 32 + 33 + postInstall = '' 34 + wrapProgram $out/bin/obconf --prefix XDG_DATA_DIRS : ${openbox}/share/ 35 + ''; 36 + 37 + meta = { 38 + description = "GUI configuration tool for openbox"; 39 + homepage = "http://openbox.org/wiki/ObConf"; 40 + license = lib.licenses.gpl2Plus; 41 + maintainers = [ lib.maintainers.sfrijters ]; 42 + platforms = lib.platforms.linux; 43 + }; 44 + }
+2 -2
pkgs/tools/inputmethods/fcitx5/default.nix
··· 41 41 in 42 42 stdenv.mkDerivation rec { 43 43 pname = "fcitx5"; 44 - version = "5.0.12"; 44 + version = "5.0.14"; 45 45 46 46 src = fetchFromGitHub { 47 47 owner = "fcitx"; 48 48 repo = pname; 49 49 rev = version; 50 - sha256 = "sha256-v+K4rlUOBWoRXh7lNeETBbgtu5IJqYKXwSznIRzrrwE="; 50 + sha256 = "sha256-Trpye+jTu+l8ieUK6IX+ZqNe4H2DvoJ10juiMkEGRKM="; 51 51 }; 52 52 53 53 prePatch = ''
+3 -3
pkgs/tools/inputmethods/fcitx5/fcitx5-chinese-addons.nix
··· 31 31 32 32 mkDerivation rec { 33 33 pname = "fcitx5-chinese-addons"; 34 - version = "5.0.10"; 34 + version = "5.0.11"; 35 35 36 36 src = fetchFromGitHub { 37 37 owner = "fcitx"; 38 - repo = "fcitx5-chinese-addons"; 38 + repo = pname; 39 39 rev = version; 40 - sha256 = "sha256-8h2cHjxcn1swm2TsH9pZu+ojOB6xlspdd4IIXYxZM/8="; 40 + sha256 = "sha256-PBKTc6yxCaLYZxfR7158rTkR7GsDCapjCKBuLxNu4dU="; 41 41 }; 42 42 43 43 cmakeFlags = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-configtool.nix
··· 19 19 20 20 mkDerivation rec { 21 21 pname = "fcitx5-configtool"; 22 - version = "5.0.10"; 22 + version = "5.0.11"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "fcitx"; 26 26 repo = pname; 27 27 rev = version; 28 - sha256 = "sha256-PrzMKATv//LNGXl82J8dirNOjl6EDvlzGiarkMLaQqs="; 28 + sha256 = "sha256-8Yj4ueLyfPlvjI3HLH5qudY5BEQaBkM5rNgqjH1ihV8="; 29 29 }; 30 30 31 31 cmakeFlags = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-gtk.nix
··· 26 26 27 27 stdenv.mkDerivation rec { 28 28 pname = "fcitx5-gtk"; 29 - version = "5.0.11"; 29 + version = "5.0.12"; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "fcitx"; 33 33 repo = pname; 34 34 rev = version; 35 - sha256 = "sha256-x2sOPybbAUM0/es9JM/F7A1+01HQPVwb9SCBpJ+ueRk="; 35 + sha256 = "sha256-wSYYVQMuydtxMQ/v9b6bBMesyfKlsqUqpqf/y74Q4zc="; 36 36 }; 37 37 38 38 cmakeFlags = [
+3 -3
pkgs/tools/inputmethods/fcitx5/fcitx5-lua.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "fcitx5-lua"; 13 - version = "5.0.5"; 13 + version = "5.0.6"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "fcitx"; 17 - repo = "fcitx5-lua"; 17 + repo = pname; 18 18 rev = version; 19 - sha256 = "0x7b78rz9mdyhm3y8yi7kihah7fgqzjyfgqwjyfx3i90wxflnmmc"; 19 + sha256 = "sha256-6znDtU/yVAJByhCanW7KVg5Tk615aCLbFbxDMESVOlY="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "fcitx5-m17n"; 16 - version = "5.0.6"; 16 + version = "5.0.8"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "fcitx"; 20 20 repo = pname; 21 21 rev = version; 22 - sha256 = "sha256-w806Xy7S8rhw7ZtMRzHfUD9BDzj3VmCxlP+kHMZgFpc="; 22 + sha256 = "sha256-Mh3a7PzfNmGGXzKb/6QUgLmRw7snsM3WSOduFdxj6OM="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+3 -3
pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix
··· 12 12 13 13 mkDerivation rec { 14 14 pname = "fcitx5-qt"; 15 - version = "5.0.9"; 15 + version = "5.0.10"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "fcitx"; 19 - repo = "fcitx5-qt"; 19 + repo = pname; 20 20 rev = version; 21 - sha256 = "sha256-IXO1mRtkg4Tt9ZRuICdNWhK1UYYFNMbKGdGlUcdmsJY="; 21 + sha256 = "sha256-KSnbwXMyAnya0Os/xrmjzK/wD6/dpM48rs1nS9SL5hs="; 22 22 }; 23 23 24 24 preConfigure = ''
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "fcitx5-rime"; 13 - version = "5.0.10"; 13 + version = "5.0.11"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "fcitx"; 17 17 repo = pname; 18 18 rev = version; 19 - sha256 = "sha256-cossoo/S1AzB5sHA+b2C49a6Uv8iVMYJAd32i9Y1is4="; 19 + sha256 = "sha256-kEqooOSLMp2LF911M1q67GYRGx421V6iExXOQk1pcl0="; 20 20 }; 21 21 22 22 cmakeFlags = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-table-extra.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "fcitx5-table-extra"; 13 - version = "5.0.7"; 13 + version = "5.0.8"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "fcitx"; 17 17 repo = pname; 18 18 rev = version; 19 - sha256 = "sha256-K+MeFfst+vxgaHkYgLzfj7wqHYP6dIbh5ZOYHaV0cXo="; 19 + sha256 = "sha256-8ad7A6MHkVfQEVMrbuAv2sJlc7t3rlz4EFqaMe51YSw="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "fcitx5-table-other"; 13 - version = "5.0.6"; 13 + version = "5.0.7"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "fcitx"; 17 17 repo = pname; 18 18 rev = version; 19 - sha256 = "sha256-NePb2tDy8mSR+cPxhOF4xBnxFRjLKdNs8YNGlvfFKmg="; 19 + sha256 = "sha256-XpQ/5OLNEcJTu1LvGBM6arGZrBl6XSIWx9MDKH9WIt4="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+12 -5
pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, extra-cmake-modules, fcitx5, fcitx5-qt 2 - , ninja, gettext, wrapQtAppsHook 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , extra-cmake-modules 6 + , fcitx5 7 + , fcitx5-qt 8 + , gettext 9 + , wrapQtAppsHook 3 10 }: 4 11 5 12 stdenv.mkDerivation rec { 6 13 pname = "fcitx5-unikey"; 7 - version = "5.0.7"; 14 + version = "5.0.8"; 8 15 9 16 src = fetchFromGitHub { 10 17 owner = "fcitx"; 11 18 repo = "fcitx5-unikey"; 12 19 rev = version; 13 - sha256 = "BFIqMmjIC29Z4rATZEf+qQWrULU9Wkuk6WOUXDEPO10="; 20 + sha256 = "sha256-UdhTIVRLEqzxh9aafqwLhA8EOKiO/tD5QksdVd0rvqI="; 14 21 }; 15 22 16 23 nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ]; 17 24 18 - buildInputs = [ fcitx5 fcitx5-qt ninja gettext ]; 25 + buildInputs = [ fcitx5 fcitx5-qt gettext ]; 19 26 20 27 meta = with lib; { 21 28 description = "Unikey engine support for Fcitx5";
+2 -2
pkgs/tools/misc/yt-dlp/default.nix
··· 20 20 # The websites yt-dlp deals with are a very moving target. That means that 21 21 # downloads break constantly. Because of that, updates should always be backported 22 22 # to the latest stable release. 23 - version = "2022.2.3"; 23 + version = "2022.2.4"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname; 27 27 version = builtins.replaceStrings [ ".0" ] [ "." ] version; 28 - sha256 = "sha256-lV3RgUq9F4uv8jg9FULv7kit/J3p4vXIZ4SwnNb1omI="; 28 + sha256 = "sha256-gbUO18+c/MBC2PWhrS0c17E8SLNsB/rxiAaW6sCn3bU="; 29 29 }; 30 30 31 31 propagatedBuildInputs = [ websockets mutagen ]
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "exploitdb"; 5 - version = "2022-01-29"; 5 + version = "2022-02-03"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "offensive-security"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-yIZFlj8WtKU3STdPXsZ+s3hoq/zBvqA64D6GoyUFXvE="; 11 + sha256 = "sha256-s5neMvY77lNXcwgOt6FLEk/mfkrJU1v1GBzwIJ4oX/Y="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ];
+10 -9
pkgs/tools/security/faraday-cli/default.nix
··· 7 7 pname = "faraday-cli"; 8 8 version = "2.0.2"; 9 9 10 - disabled = python3.pythonOlder "3.7"; 11 - 12 10 src = fetchFromGitHub { 13 11 owner = "infobyte"; 14 12 repo = pname; 15 13 rev = "v${version}"; 16 - sha256 = "1jq8sim0b6k830lv1qzbrd1mx0nc2x1jq24fbama76gzqlb2axi7"; 14 + hash = "sha256-J3YlFsX/maOqWo4ILEMXzIJeQ8vr47ApGGiaBWrUCMs="; 17 15 }; 18 16 19 17 propagatedBuildInputs = with python3.pkgs; [ 18 + arrow 20 19 click 20 + cmd2 21 21 colorama 22 22 faraday-plugins 23 23 jsonschema 24 + log-symbols 25 + packaging 24 26 pyyaml 25 27 simple-rest-client 28 + spinners 26 29 tabulate 30 + termcolor 27 31 validators 28 - spinners 29 - termcolor 30 - cmd2 31 - log-symbols 32 - arrow 33 32 ]; 34 33 35 34 # Tests requires credentials 36 35 doCheck = false; 37 36 38 - pythonImportsCheck = [ "faraday_cli" ]; 37 + pythonImportsCheck = [ 38 + "faraday_cli" 39 + ]; 39 40 40 41 meta = with lib; { 41 42 description = "Command Line Interface for Faraday";
+2 -2
pkgs/tools/security/sudo/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "sudo"; 17 - version = "1.9.8p2"; 17 + version = "1.9.9"; 18 18 19 19 src = fetchurl { 20 20 url = "https://www.sudo.ws/dist/${pname}-${version}.tar.gz"; 21 - sha256 = "sha256-njuLjafe9DtuYMJXq+gEZyBWcP0PfAgd4UI8QUtoDy0="; 21 + sha256 = "sha256-bW7oY6O8Jsh2YQk6dOxj4Q/QMc66cUZC0hY23+JePgA="; 22 22 }; 23 23 24 24 prePatch = ''
+2 -2
pkgs/tools/security/traitor/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "traitor"; 8 - version = "0.0.8"; 8 + version = "0.0.9"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "liamg"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-eUeKkjSpKel6XH3/VVw/WPCG/Nq8BcZwMNFG9z9FUuU="; 14 + sha256 = "sha256-SHfAPPVq5OmS0yPaSXGsMjskQdosoBN4XRLSzkrviJM="; 15 15 }; 16 16 17 17 vendorSha256 = null;
-1
pkgs/top-level/aliases.nix
··· 786 786 OVMF-CSM = throw "OVMF-CSM has been removed in favor of OVMFFull"; # Added 2021-10-16 787 787 OVMF-secureBoot = throw "OVMF-secureBoot has been removed in favor of OVMFFull"; # Added 2021-10-16 788 788 oauth2_proxy = oauth2-proxy; # Added 2021-04-18 789 - obconf = throw "obconf has been removed"; # Added 2022-01-16 790 789 oblogout = throw "oblogout has been removed from nixpkgs, as it's archived upstream."; # Added 2019-12-10 791 790 octoprint-plugins = throw "octoprint-plugins are now part of the octoprint.python.pkgs package set."; # Added 2021-01-24 792 791 ocz-ssd-guru = throw "ocz-ssd-guru has been removed due to there being no source available"; # Added 2021-07-12
+14 -3
pkgs/top-level/all-packages.nix
··· 6729 6729 iperf3 = callPackage ../tools/networking/iperf/3.nix { }; 6730 6730 iperf = iperf3; 6731 6731 6732 - ipfs = callPackage ../applications/networking/ipfs { }; 6733 - ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { }; 6732 + ipfs = callPackage ../applications/networking/ipfs { 6733 + buildGoModule = buildGo116Module; 6734 + }; 6735 + ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { 6736 + buildGoModule = buildGo116Module; 6737 + }; 6734 6738 ipfs-cluster = callPackage ../applications/networking/ipfs-cluster { 6735 6739 buildGoModule = buildGo116Module; 6736 6740 }; ··· 23720 23724 23721 23725 graphite-gtk-theme = callPackage ../data/themes/graphite { }; 23722 23726 23727 + graphite-kde-theme = callPackage ../data/themes/graphite-kde-theme { }; 23728 + 23723 23729 greybird = callPackage ../data/themes/greybird { }; 23724 23730 23725 23731 gruvbox-dark-gtk = callPackage ../data/themes/gruvbox-dark-gtk { }; ··· 25116 25122 dd-agent = callPackage ../tools/networking/dd-agent/5.nix { }; 25117 25123 datadog-agent = callPackage ../tools/networking/dd-agent/datadog-agent.nix { 25118 25124 pythonPackages = datadog-integrations-core {}; 25125 + buildGoModule = buildGo116Module; 25119 25126 }; 25120 25127 datadog-process-agent = callPackage ../tools/networking/dd-agent/datadog-process-agent.nix { }; 25121 25128 datadog-integrations-core = extras: callPackage ../tools/networking/dd-agent/integrations-core.nix { ··· 25321 25328 electron-cash = libsForQt5.callPackage ../applications/misc/electron-cash { }; 25322 25329 25323 25330 electrum = libsForQt5.callPackage ../applications/misc/electrum { }; 25331 + 25332 + electrum-grs = libsForQt5.callPackage ../applications/misc/electrum-grs { }; 25324 25333 25325 25334 electrum-ltc = libsForQt5.callPackage ../applications/misc/electrum/ltc.nix { }; 25326 25335 ··· 28005 28014 28006 28015 nvpy = callPackage ../applications/editors/nvpy { }; 28007 28016 28017 + obconf = callPackage ../tools/X11/obconf { }; 28018 + 28008 28019 oberon-risc-emu = callPackage ../misc/emulators/oberon-risc-emu { }; 28009 28020 28010 28021 obs-studio = libsForQt5.callPackage ../applications/video/obs-studio {}; ··· 29509 29520 vdpauinfo = callPackage ../tools/X11/vdpauinfo { }; 29510 29521 29511 29522 vengi-tools = callPackage ../applications/graphics/vengi-tools { 29512 - inherit (darwin.apple_sdk.frameworks) Carbon OpenCL; 29523 + inherit (darwin.apple_sdk.frameworks) Carbon CoreServices OpenCL; 29513 29524 }; 29514 29525 29515 29526 verbiste = callPackage ../applications/misc/verbiste {