lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge staging-next into staging

authored by

nixpkgs-ci[bot] and committed by
GitHub
d9eb3e5d 923d687f

+2017 -1144
+5
lib/licenses.nix
··· 95 95 free = false; 96 96 }; 97 97 98 + aml = { 99 + spdxId = "AML"; 100 + fullName = "Apple MIT License"; 101 + }; 102 + 98 103 ampas = { 99 104 spdxId = "AMPAS"; 100 105 fullName = "Academy of Motion Picture Arts and Sciences BSD";
+5
maintainers/maintainer-list.nix
··· 2487 2487 githubId = 206242; 2488 2488 name = "Andreas Wiese"; 2489 2489 }; 2490 + aware70 = { 2491 + name = "aware70"; 2492 + github = "aware70"; 2493 + githubId = 7832566; 2494 + }; 2490 2495 awwpotato = { 2491 2496 email = "awwpotato@voidq.com"; 2492 2497 github = "awwpotato";
+4 -4
nixos/modules/services/databases/postgresql.md
··· 206 206 export NEWBIN="${newPostgres}/bin" 207 207 208 208 export OLDDATA="${cfg.dataDir}" 209 - export OLDBIN="${cfg.package}/bin" 209 + export OLDBIN="${cfg.finalPackage}/bin" 210 210 211 211 install -d -m 0700 -o postgres -g postgres "$NEWDATA" 212 212 cd "$NEWDATA" 213 - sudo -u postgres $NEWBIN/initdb -D "$NEWDATA" ${lib.escapeShellArgs cfg.initdbArgs} 213 + sudo -u postgres "$NEWBIN/initdb" -D "$NEWDATA" ${lib.escapeShellArgs cfg.initdbArgs} 214 214 215 - sudo -u postgres $NEWBIN/pg_upgrade \ 215 + sudo -u postgres "$NEWBIN/pg_upgrade" \ 216 216 --old-datadir "$OLDDATA" --new-datadir "$NEWDATA" \ 217 - --old-bindir $OLDBIN --new-bindir $NEWBIN \ 217 + --old-bindir "$OLDBIN" --new-bindir "$NEWBIN" \ 218 218 "$@" 219 219 '') 220 220 ];
+13
pkgs/applications/editors/vim/plugins/generated.nix
··· 20761 20761 meta.hydraPlatforms = [ ]; 20762 20762 }; 20763 20763 20764 + vs-tasks-nvim = buildVimPlugin { 20765 + pname = "vs-tasks.nvim"; 20766 + version = "2025-03-17"; 20767 + src = fetchFromGitHub { 20768 + owner = "EthanJWright"; 20769 + repo = "vs-tasks.nvim"; 20770 + rev = "f0a10214ca3856fb4387db4f11acbaafa9ed3515"; 20771 + sha256 = "0k00n8p9cy2g98a8g5dg9c67sa0hx1shjj0hhpw8yac4rj5dbgdl"; 20772 + }; 20773 + meta.homepage = "https://github.com/EthanJWright/vs-tasks.nvim/"; 20774 + meta.hydraPlatforms = [ ]; 20775 + }; 20776 + 20764 20777 vscode-nvim = buildVimPlugin { 20765 20778 pname = "vscode.nvim"; 20766 20779 version = "2025-03-26";
+7
pkgs/applications/editors/vim/plugins/overrides.nix
··· 3727 3727 nvimSkipModules = "virt-column.config.types"; 3728 3728 }; 3729 3729 3730 + vs-tasks-nvim = super.vs-tasks-nvim.overrideAttrs { 3731 + dependencies = with self; [ 3732 + plenary-nvim 3733 + telescope-nvim 3734 + ]; 3735 + }; 3736 + 3730 3737 which-key-nvim = super.which-key-nvim.overrideAttrs { 3731 3738 nvimSkipModules = [ "which-key.docs" ]; 3732 3739 };
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 1593 1593 https://github.com/vim-scripts/vis/,, 1594 1594 https://github.com/navicore/vissort.vim/,, 1595 1595 https://github.com/liuchengxu/vista.vim/,, 1596 + https://github.com/EthanJWright/vs-tasks.nvim/,HEAD, 1596 1597 https://github.com/Mofiqul/vscode.nvim/,, 1597 1598 https://github.com/dylanaraps/wal.vim/,, 1598 1599 https://github.com/mattn/webapi-vim/,,
+2
pkgs/applications/editors/vscode/extensions/default.nix
··· 3802 3802 }; 3803 3803 }; 3804 3804 3805 + nimlang.nimlang = callPackage ./nimlang.nimlang { }; 3806 + 3805 3807 njpwerner.autodocstring = buildVscodeMarketplaceExtension { 3806 3808 mktplcRef = { 3807 3809 name = "autodocstring";
+17
pkgs/applications/editors/vscode/extensions/nimlang.nimlang/default.nix
··· 1 + { lib, vscode-utils }: 2 + 3 + vscode-utils.buildVscodeMarketplaceExtension { 4 + mktplcRef = { 5 + name = "nimlang"; 6 + publisher = "nimlang"; 7 + version = "1.6.0"; 8 + hash = "sha256-tMMD1UfmfG+q+qWUpcxfwVSRGO+rpFF7hhWepuFTrdA="; 9 + }; 10 + meta = { 11 + description = "Nim language support for VS Code"; 12 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=nimlang.nimlang"; 13 + homepage = "https://github.com/nim-lang/vscode-nim"; 14 + license = lib.licenses.mit; 15 + maintainers = [ lib.maintainers.therobot2105 ]; 16 + }; 17 + }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 99 99 thunderbird-128 = common { 100 100 applicationName = "Thunderbird ESR"; 101 101 102 - version = "128.8.0esr"; 103 - sha512 = "a6ccdf5a067a1f908246885b22a1dadc66f4667d4ac74d1c1867c88a70b194c508e8d9e139f357ebc1d344f032fdc9b75c365fe49937d2463d7bd61b85ef86d1"; 102 + version = "128.8.1esr"; 103 + sha512 = "f1ef0a665f2cef49b427cbfb4a3548df0cccf4470c03367cdb3d2729d4f6bbf25056c378ffa9e1184b6687332998d12ff9ba251b97b7ca859d9d43be9d7414ba"; 104 104 105 105 updateScript = callPackage ./update.nix { 106 106 attrPath = "thunderbirdPackages.thunderbird-128";
+20 -14
pkgs/applications/science/electronics/openroad/default.nix
··· 32 32 xorg, 33 33 yosys, 34 34 zlib, 35 + llvmPackages, 36 + stdenv, 35 37 }: 36 38 37 39 let ··· 91 93 yosys 92 94 xorg.libX11 93 95 zlib 94 - ]; 96 + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ llvmPackages.openmp ]; 95 97 96 98 postPatch = '' 97 99 patchShebangs --build etc/find_messages.py ··· 99 101 sed 's/^.*partition_gcd/# \0/g' -i src/par/test/CMakeLists.txt 100 102 ''; 101 103 102 - cmakeFlags = [ 103 - "-DENABLE_TESTS=ON" 104 - "-DUSE_SYSTEM_BOOST=ON" 105 - "-DUSE_SYSTEM_ABC=OFF" 106 - "-DABC_SKIP_TESTS=ON" # it attempts to download gtest 107 - "-DUSE_SYSTEM_OPENSTA=OFF" 108 - "-DOPENROAD_VERSION=${version}_${src.rev}" 109 - "-DCMAKE_RULE_MESSAGES=OFF" 110 - "-DTCL_LIBRARY=${tcl}/lib/libtcl.so" 111 - "-DTCL_HEADER=${tcl}/include/tcl.h" 112 - ]; 104 + cmakeFlags = 105 + [ 106 + "-DENABLE_TESTS=ON" 107 + "-DUSE_SYSTEM_BOOST=ON" 108 + "-DUSE_SYSTEM_ABC=OFF" 109 + "-DABC_SKIP_TESTS=ON" # it attempts to download gtest 110 + "-DUSE_SYSTEM_OPENSTA=OFF" 111 + "-DOPENROAD_VERSION=${version}_${src.rev}" 112 + "-DCMAKE_RULE_MESSAGES=OFF" 113 + "-DTCL_HEADER=${tcl}/include/tcl.h" 114 + "-DTCL_LIBRARY=${tcl}/lib/libtcl${stdenv.hostPlatform.extensions.sharedLibrary}" 115 + ] 116 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 117 + "-DCMAKE_CXX_FLAGS=-DBOOST_STACKTRACE_GNU_SOURCE_NOT_REQUIRED" 118 + ]; 113 119 114 120 # Resynthesis needs access to the Yosys binaries. 115 121 qtWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ yosys ]}" ]; 116 122 117 123 # Upstream uses vendored package versions for some dependencies, so regression testing is prudent 118 124 # to see if there are any breaking changes in unstable that should be vendored as well. 119 - doCheck = true; 125 + doCheck = !stdenv.hostPlatform.isDarwin; # it seems to hang on darwin 120 126 checkPhase = '' 121 127 make test 122 128 ../test/regression ··· 136 142 trepetti 137 143 hzeller 138 144 ]; 139 - platforms = platforms.linux; 145 + platforms = platforms.linux ++ platforms.darwin; 140 146 }; 141 147 }
+5 -3
pkgs/by-name/aa/aaaaxy/package.nix
··· 17 17 advancecomp, 18 18 makeWrapper, 19 19 nixosTests, 20 + strip-nondeterminism, 20 21 }: 21 22 22 23 buildGoModule rec { 23 24 pname = "aaaaxy"; 24 - version = "1.6.0"; 25 + version = "1.6.64"; 25 26 26 27 src = fetchFromGitHub { 27 28 owner = "divVerent"; 28 29 repo = pname; 29 30 rev = "v${version}"; 30 - hash = "sha256-WQcvvNG4EM3XJbjAu0iBIm7+51/fufj2td+QESZkOuI="; 31 + hash = "sha256-0geit1ZDsNOPhpdmOeT1xSnQ3oitMiMY14zoGG8hsGU="; 31 32 fetchSubmodules = true; 32 33 }; 33 34 34 - vendorHash = "sha256-ZL6jqsAbxHKX6wVTrDNsSRlYtcSuKubpFFjEgiVWCSY="; 35 + vendorHash = "sha256-1osdAkUMmkBoLpKhoESUh2URMi3OYhLfRs+N9fDnnKQ="; 35 36 36 37 buildInputs = [ 37 38 alsa-lib ··· 51 52 zip 52 53 advancecomp 53 54 makeWrapper 55 + strip-nondeterminism 54 56 ]; 55 57 56 58 outputs = [
+2 -2
pkgs/by-name/an/angular-language-server/package.nix
··· 16 16 17 17 stdenvNoCC.mkDerivation (finalAttrs: { 18 18 pname = "angular-language-server"; 19 - version = "19.2.1"; 19 + version = "19.2.2"; 20 20 src = fetchurl { 21 21 name = "angular-language-server-${finalAttrs.version}.zip"; 22 22 url = "https://github.com/angular/vscode-ng-language-service/releases/download/v${finalAttrs.version}/ng-template.vsix"; 23 - hash = "sha256-3piEpVwcRiL3lqu67y81var3N0sxKMCm1TQg77CUSmQ="; 23 + hash = "sha256-WoNrKcK9Gr9gVWH/pwKyEUHuzcVNKh6zQwwpG4BuVCg="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+27
pkgs/by-name/an/anthy/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchurl, 5 + buildPackages, 5 6 }: 6 7 7 8 stdenv.mkDerivation rec { 8 9 pname = "anthy"; 9 10 version = "9100h"; 10 11 12 + postPatch = lib.optionalString (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 13 + # for cross builds, copy build tools from the native package 14 + cp -r "${buildPackages.anthy}"/lib/internals/{mkdepgraph,.libs} depgraph/ 15 + cp -r "${buildPackages.anthy}"/lib/internals/{mkworddic,.libs} mkworddic/ 16 + cp -r "${buildPackages.anthy}"/lib/internals/{calctrans,.libs} calctrans/ 17 + cp -r "${buildPackages.anthy}"/lib/internals/{mkfiledic,.libs} mkanthydic/ 18 + substituteInPlace mkworddic/Makefile.in \ 19 + --replace-fail 'anthy.wdic : mkworddic' 'anthy.wdic : ' \ 20 + --replace-fail 'all: ' 'all: anthy.wdic #' 21 + substituteInPlace calctrans/Makefile.in \ 22 + --replace-fail '$(dict_source_files): $(srcdir)/corpus_info $(srcdir)/weak_words calctrans' \ 23 + '$(dict_source_files): $(srcdir)/corpus_info $(srcdir)/weak_words' \ 24 + --replace-fail 'all-am: Makefile $(PROGRAMS) $(DATA)' 'all-am: $(DATA)' 25 + substituteInPlace depgraph/Makefile.in \ 26 + --replace-fail 'anthy.dep : mkdepgraph' 'anthy.dep : ' \ 27 + --replace-fail 'all-am: Makefile $(PROGRAMS) $(DATA)' 'all-am: $(DATA)' 28 + substituteInPlace mkanthydic/Makefile.in \ 29 + --replace-fail 'anthy.dic : mkfiledic' 'anthy.dic : ' \ 30 + --replace-fail 'all-am: Makefile $(PROGRAMS) $(SCRIPTS) $(DATA)' 'all-am: $(DATA)' 31 + ''; 32 + 11 33 meta = with lib; { 12 34 description = "Hiragana text to Kana Kanji mixed text Japanese input method"; 13 35 homepage = "https://anthy.osdn.jp/"; ··· 15 37 maintainers = with maintainers; [ ericsagnes ]; 16 38 platforms = platforms.unix; 17 39 }; 40 + 41 + postFixup = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 42 + mkdir "$out/lib/internals" 43 + cp -r depgraph/{mkdepgraph,.libs} mkworddic/{mkworddic,.libs} calctrans/{calctrans,.libs} mkanthydic/{mkfiledic,.libs} "$out/lib/internals" 44 + ''; 18 45 19 46 src = fetchurl { 20 47 url = "mirror://osdn/anthy/37536/anthy-${version}.tar.gz";
+2 -2
pkgs/by-name/as/astyle/package.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "astyle"; 12 - version = "3.6.7"; 12 + version = "3.6.8"; 13 13 14 14 src = fetchurl { 15 15 url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2"; 16 - hash = "sha256-rDCgQ+zlkg5SHCVgBVh3JRv+uOECxYnGXFBVDx6yXO8="; 16 + hash = "sha256-WviuegXF5hbdH4TXWLSQnC0uz8F5+IP9EE0iPzTMbf8="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ];
+11 -11
pkgs/by-name/bu/bustle/package.nix
··· 11 11 rustPlatform, 12 12 rustc, 13 13 wrapGAppsHook4, 14 - darwin, 15 14 gettext, 16 15 glib, 17 16 gtk4, 18 17 libadwaita, 19 - libiconv, 20 18 }: 21 19 22 20 stdenv.mkDerivation (finalAttrs: { 23 21 pname = "bustle"; 24 - version = "0.10.0"; 22 + version = "0.11.0"; 25 23 26 24 src = fetchFromGitLab { 27 25 domain = "gitlab.gnome.org"; 28 26 owner = "World"; 29 27 repo = "bustle"; 30 - rev = finalAttrs.version; 31 - hash = "sha256-5ZZiRD64OOMtTNxI0uvilGM22rsJv7vU3yPDY8ROrxU="; 28 + tag = finalAttrs.version; 29 + hash = "sha256-aO7f5xLRuIGVAp+TVveFXtWx/rl/jqbmXNd6zN9dZZw="; 32 30 }; 33 31 34 32 cargoDeps = rustPlatform.fetchCargoVendor { 35 33 inherit (finalAttrs) pname version src; 36 - hash = "sha256-XCKKzgSqTGF9WoaYnNtXB7e8BvtElmAfKH6s/7h8cGs="; 34 + hash = "sha256-cofqxgSyj24wVhzImYs/gsWGjQpzOjaf49RdtYgsrbo="; 37 35 }; 38 36 39 37 env = lib.optionalAttrs stdenv.hostPlatform.isDarwin { ··· 66 64 description = "Graphical D-Bus message analyser and profiler"; 67 65 homepage = "https://gitlab.gnome.org/World/bustle"; 68 66 license = lib.licenses.lgpl21Plus; 69 - maintainers = with lib.maintainers; [ 70 - jtojnar 71 - aleksana 72 - ]; 67 + maintainers = 68 + with lib.maintainers; 69 + [ 70 + jtojnar 71 + ] 72 + ++ lib.teams.gnome-circle.members; 73 73 mainProgram = "bustle"; 74 - platforms = lib.platforms.all; 74 + platforms = lib.platforms.unix; 75 75 }; 76 76 })
+1 -1
pkgs/by-name/ca/cantarell-fonts/package.nix
··· 41 41 42 42 outputHashAlgo = "sha256"; 43 43 outputHashMode = "recursive"; 44 - outputHash = "XeqHVdTQ7PTzxkjwfzS/BTR7+k/M69sfUKdRXGOTmZE="; 44 + outputHash = "sha256-OjHj4h3n+/ozbrLaiH4bGppQ+2LA2RB/sZQVO9EPOEw="; 45 45 46 46 passthru = { 47 47 updateScript = gnome.updateScript {
+3 -3
pkgs/by-name/ca/cargo-expand/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cargo-expand"; 9 - version = "1.0.102"; 9 + version = "1.0.104"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "dtolnay"; 13 13 repo = "cargo-expand"; 14 14 rev = version; 15 - hash = "sha256-lqTbBPoXnKk5JQqFYxdSGGWgy9vyKeUCpdYUZI4veHY="; 15 + hash = "sha256-PSiuTw3H3vl4Tnts5eOTd1v8SLPvYZCkuQ/pTSa3O18="; 16 16 }; 17 17 18 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-J55gjVsxaFf8fGCIjX60Pwb49WTN/eWqbobQxY5kVuM="; 19 + cargoHash = "sha256-apFOBEao2DKsdjdth+vGzzRa9Mw7fTb/88TetY0vp6E="; 20 20 21 21 meta = with lib; { 22 22 description = "Cargo subcommand to show result of macro expansion";
+3 -3
pkgs/by-name/ca/cargo-tally/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "cargo-tally"; 11 - version = "1.0.60"; 11 + version = "1.0.61"; 12 12 13 13 src = fetchCrate { 14 14 inherit pname version; 15 - hash = "sha256-d1nl3Gnk5huejUriwo1Q3+F6htIBe+uC36sDEXO5SGY="; 15 + hash = "sha256-54Hu7n5KD41aywL8IqhO0k7aR0N7yi3QNNTX1sqvGvE="; 16 16 }; 17 17 18 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-XJZtOK+0+GJ1qM9OR/Z/764BfM+9VTYxBA9eOCHu4ms="; 19 + cargoHash = "sha256-1Grjj2uaEjr2YKvkd8cxJfUpR8OYqmtuSvIW4tSdIyM="; 20 20 21 21 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( 22 22 with darwin.apple_sdk_11_0.frameworks;
+3 -3
pkgs/by-name/cl/clorinde/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage (finalAttrs: { 10 10 pname = "clorinde"; 11 - version = "0.14.0"; 11 + version = "0.14.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "halcyonnouveau"; 15 15 repo = "clorinde"; 16 16 tag = "clorinde-v${finalAttrs.version}"; 17 - hash = "sha256-C9oxdvZKQTZQYQmMpcyxRH9+o2pv3gVpSEmwxYn2E+g="; 17 + hash = "sha256-zl4LSDxbvzmfigMCTvaoF1vGbWj/Obce4aHpM0rPqxM="; 18 18 }; 19 19 20 20 useFetchCargoVendor = true; 21 - cargoHash = "sha256-Arp/5lgccSNblrRrK7oVrsQe3h6sQz3sHITMoN8Ehzc="; 21 + cargoHash = "sha256-05sN5MkwBhpdmVcz0OUwx7h2ZJBjZefj8B9dLvkPZLw="; 22 22 23 23 cargoBuildFlags = [ "--package=clorinde" ]; 24 24
+5 -10
pkgs/by-name/co/countryfetch/package.nix
··· 2 2 lib, 3 3 rustPlatform, 4 4 fetchFromGitHub, 5 - yq, 6 5 pkg-config, 7 6 openssl, 8 7 versionCheckHook, ··· 20 19 hash = "sha256-KdFgY54vXLmq6IZfJzZ1IeZ2eQuNJoCRZUV3rVuPpcY="; 21 20 }; 22 21 23 - postPatch = '' 24 - tomlq -ti '.dependencies.openssl.features[] |= select(.!="vendored")' countryfetch/Cargo.toml 25 - ''; 26 - 27 22 useFetchCargoVendor = true; 28 23 cargoHash = "sha256-XJI9k/5hdak8p0/J/x9u6lqJu/DIbX93Wwm3LALkAAw="; 29 24 30 - env.RUSTC_BOOTSTRAP = 1; 25 + env = { 26 + RUSTC_BOOTSTRAP = 1; 27 + OPENSSL_NO_VENDOR = true; 28 + }; 31 29 32 - nativeBuildInputs = [ 33 - pkg-config 34 - yq # for `tomlq` 35 - ]; 30 + nativeBuildInputs = [ pkg-config ]; 36 31 37 32 buildInputs = [ openssl ]; 38 33
+4 -4
pkgs/by-name/cr/crosvm/package.nix
··· 21 21 22 22 rustPlatform.buildRustPackage { 23 23 pname = "crosvm"; 24 - version = "0-unstable-2025-03-14"; 24 + version = "0-unstable-2025-03-27"; 25 25 26 26 src = fetchgit { 27 27 url = "https://chromium.googlesource.com/chromiumos/platform/crosvm"; 28 - rev = "af765802907dafe1ae1d1f39704c5020a882d362"; 29 - hash = "sha256-p15gljpEaSloorT37J8Akn5DaqkjVD/QInik4FaF1HE="; 28 + rev = "779126e8670cb471fc35e07c9f6a958638bbd9e3"; 29 + hash = "sha256-xYd4KSLcuc1u6JV67UgW9FgkQGwQZLjlvpmngnWc0ew="; 30 30 fetchSubmodules = true; 31 31 }; 32 32 33 33 separateDebugInfo = true; 34 34 35 35 useFetchCargoVendor = true; 36 - cargoHash = "sha256-3+gV/4l+N4U2zZWU+UtA1gcmdwnXavbhBPQOB3hhGDk="; 36 + cargoHash = "sha256-W+oQ11sbGcA6EfFZZuvSFFYwmR1dRKCP7HvSTTODO14="; 37 37 38 38 nativeBuildInputs = [ 39 39 pkg-config
+2 -1
pkgs/by-name/do/dog/package.nix
··· 15 15 16 16 postPatch = '' 17 17 substituteInPlace Makefile \ 18 - --replace "gcc" "$CC" 18 + --replace-fail "gcc" "$CC" 19 + sed -i '40i #include <time.h>' dog.c 19 20 ''; 20 21 21 22 installPhase = ''
+2 -2
pkgs/by-name/ex/exploitdb/package.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "exploitdb"; 10 - version = "2025-03-23"; 10 + version = "2025-03-27"; 11 11 12 12 src = fetchFromGitLab { 13 13 owner = "exploit-database"; 14 14 repo = "exploitdb"; 15 15 rev = "refs/tags/${version}"; 16 - hash = "sha256-ga1dRfOPZr6bQmI9nEfrN6bfCBQ9+fMIF4bnMTMM2J4="; 16 + hash = "sha256-az5BZEWiDknvf0p1/5cbr9sDOVv2SDsXhdzlqtBYaO0="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ makeWrapper ];
+49
pkgs/by-name/fl/fleetctl/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + writableTmpDirAsHomeHook, 6 + versionCheckHook, 7 + stdenv, 8 + }: 9 + 10 + buildGoModule rec { 11 + pname = "fleectl"; 12 + version = "4.64.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "fleetdm"; 16 + repo = "fleet"; 17 + tag = "fleet-v${version}"; 18 + hash = "sha256-cZ0YTFcyPt7NMZUDZCdlVPTuhwRy7mTp7JCdINqiwOM="; 19 + }; 20 + vendorHash = "sha256-gFAotYho18Jn8MaFK6ShoMA1VLXVENcrASvHWZGFOFg="; 21 + 22 + subPackages = [ 23 + "cmd/fleetctl" 24 + ]; 25 + 26 + ldflags = [ 27 + "-X github.com/fleetdm/fleet/v4/server/version.appName=${pname}" 28 + "-X github.com/fleetdm/fleet/v4/server/version.version=${version}" 29 + ]; 30 + 31 + nativeCheckInputs = [ 32 + writableTmpDirAsHomeHook 33 + versionCheckHook 34 + ]; 35 + 36 + # Try to access /var/empty/.goquery/history subfolders 37 + doCheck = !stdenv.hostPlatform.isDarwin; 38 + 39 + meta = { 40 + homepage = "https://github.com/fleetdm/fleet"; 41 + changelog = "https://github.com/fleetdm/fleet/releases/tag/fleet-v${version}"; 42 + description = "CLI tool for managing Fleet"; 43 + license = lib.licenses.mit; 44 + maintainers = with lib.maintainers; [ 45 + lesuisse 46 + ]; 47 + mainProgram = "fleetctl"; 48 + }; 49 + }
+2
pkgs/by-name/fo/foxtrotgps/package.nix
··· 65 65 )) 66 66 ]; 67 67 68 + env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; 69 + 68 70 postUnpack = '' 69 71 cp -R ${srcs.screenshots} $sourceRoot/doc/screenshots 70 72 chmod -R u+w $sourceRoot/doc/screenshots
+4 -2
pkgs/by-name/ga/gatling/package.nix
··· 30 30 ]; 31 31 32 32 configurePhase = '' 33 - substituteInPlace Makefile --replace "/usr/local" "$out" 34 - substituteInPlace GNUmakefile --replace "/opt/diet" "$out" 33 + substituteInPlace Makefile --replace-fail "/usr/local" "$out" 34 + substituteInPlace GNUmakefile --replace-fail "/opt/diet" "$out" 35 + substituteInPlace tryalloca.c --replace-fail "main() {" "int main() {" 36 + substituteInPlace trysocket.c --replace-fail "main() {" "int main() {" 35 37 ''; 36 38 37 39 buildPhase = ''
+2 -2
pkgs/by-name/gl/glance/package.nix
··· 8 8 9 9 buildGoModule (finalAttrs: { 10 10 pname = "glance"; 11 - version = "0.7.7"; 11 + version = "0.7.8"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "glanceapp"; 15 15 repo = "glance"; 16 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-HFF1qiruz1SM9+g3xOKawuGmLzdYUUt3DnMRwjobVN4="; 17 + hash = "sha256-j4lW5vY2xts/UYXBlWPuu9fJGbqAYrIH+mqKlsdj+eA="; 18 18 }; 19 19 20 20 vendorHash = "sha256-lURRHlZoxbuW1SXxrxy2BkMndcEllGFmVCB4pXBad8Q=";
+2 -2
pkgs/by-name/gr/graphene-hardened-malloc/package.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "graphene-hardened-malloc"; 13 - version = "2025012700"; 13 + version = "2025032100"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "GrapheneOS"; 17 17 repo = "hardened_malloc"; 18 18 rev = finalAttrs.version; 19 - hash = "sha256-Xi34Dv+qGBrmmyYQ69KnyI+WQNJMRPlZQnSv3ey72zI="; 19 + hash = "sha256-8EIdJmnPdJgES+8QwWzL1oKVqO62CQdtjyMgFw+P0+g="; 20 20 }; 21 21 22 22 nativeCheckInputs = [ python3 ];
+3 -3
pkgs/by-name/ho/homepage-dashboard/package.nix
··· 29 29 in 30 30 stdenv.mkDerivation (finalAttrs: { 31 31 pname = "homepage-dashboard"; 32 - version = "1.0.4"; 32 + version = "1.1.1"; 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "gethomepage"; 36 36 repo = "homepage"; 37 37 tag = "v${finalAttrs.version}"; 38 - hash = "sha256-SwzgmVy3TBzEH+FJ/kY+iCo+pZhud1IZkfCh2DiSTsk="; 38 + hash = "sha256-gYFJ/coLQ/iBuMIF3+MaGfhA8J4S8TOi5sbd3ZaYeXU="; 39 39 }; 40 40 41 41 # This patch ensures that the cache implementation respects the env ··· 51 51 src 52 52 patches 53 53 ; 54 - hash = "sha256-GUDSfAbBK+6Bbih5jBrkjiMYLOJM7gMfurXFeez1bSw="; 54 + hash = "sha256-qLRtkQjwHH0JK+u+fJnYfJDhZDEasAzprSY+cogNrNg="; 55 55 }; 56 56 57 57 nativeBuildInputs = [
+38 -16
pkgs/by-name/ho/homepage-dashboard/prerender_cache_path.patch
··· 1 1 diff --git c/package.json i/package.json 2 - index 44fc1b35..4164abf3 100644 2 + index 7f0fbdf7..3b5f5607 100644 3 3 --- c/package.json 4 4 +++ i/package.json 5 5 @@ -62,5 +62,10 @@ ··· 33 33 + this.debug = !!process.env.NEXT_PRIVATE_DEBUG_CACHE; 34 34 + if (ctx.maxMemoryCacheSize) { 35 35 diff --git c/pnpm-lock.yaml i/pnpm-lock.yaml 36 - index 6b5c5910..84712cd2 100644 36 + index 2848e239..3c0e760a 100644 37 37 --- c/pnpm-lock.yaml 38 38 +++ i/pnpm-lock.yaml 39 39 @@ -4,6 +4,11 @@ settings: ··· 51 51 @@ -52,10 +57,10 @@ importers: 52 52 version: 1.2.2 53 53 next: 54 - specifier: ^15.1.7 55 - - version: 15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 56 - + version: 15.1.7(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 54 + specifier: ^15.2.3 55 + - version: 15.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 56 + + version: 15.2.3(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 57 57 next-i18next: 58 58 specifier: ^12.1.0 59 - - version: 12.1.0(next@15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 60 - + version: 12.1.0(next@15.1.7(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 59 + - version: 12.1.0(next@15.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 60 + + version: 12.1.0(next@15.2.3(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 61 61 ping: 62 62 specifier: ^0.4.4 63 63 version: 0.4.4 64 - @@ -4688,7 +4693,7 @@ snapshots: 64 + @@ -101,10 +106,6 @@ importers: 65 + xml-js: 66 + specifier: ^1.6.11 67 + version: 1.6.11 68 + - optionalDependencies: 69 + - osx-temperature-sensor: 70 + - specifier: ^1.0.8 71 + - version: 1.0.8 72 + devDependencies: 73 + '@tailwindcss/forms': 74 + specifier: ^0.5.10 75 + @@ -151,6 +152,10 @@ importers: 76 + typescript: 77 + specifier: ^5.7.3 78 + version: 5.7.3 79 + + optionalDependencies: 80 + + osx-temperature-sensor: 81 + + specifier: ^1.0.8 82 + + version: 1.0.8 83 + 84 + packages: 85 + 86 + @@ -4695,7 +4700,7 @@ snapshots: 65 87 66 88 natural-compare@1.4.0: {} 67 89 68 - - next-i18next@12.1.0(next@15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 69 - + next-i18next@12.1.0(next@15.1.7(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 90 + - next-i18next@12.1.0(next@15.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 91 + + next-i18next@12.1.0(next@15.2.3(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 70 92 dependencies: 71 93 '@babel/runtime': 7.26.9 72 94 '@types/hoist-non-react-statics': 3.3.6 73 - @@ -4696,14 +4701,14 @@ snapshots: 95 + @@ -4703,14 +4708,14 @@ snapshots: 74 96 hoist-non-react-statics: 3.3.2 75 97 i18next: 21.10.0 76 98 i18next-fs-backend: 1.2.0 77 - - next: 15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 78 - + next: 15.1.7(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 99 + - next: 15.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 100 + + next: 15.2.3(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 79 101 react: 18.3.1 80 102 react-i18next: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 81 103 transitivePeerDependencies: 82 104 - react-dom 83 105 - react-native 84 106 85 - - next@15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 86 - + next@15.1.7(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 107 + - next@15.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 108 + + next@15.2.3(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 87 109 dependencies: 88 - '@next/env': 15.1.7 110 + '@next/env': 15.2.3 89 111 '@swc/counter': 0.1.3
+2 -2
pkgs/by-name/ji/jitterentropy/package.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "jitterentropy"; 10 - version = "3.6.0"; 10 + version = "3.6.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "smuellerDD"; 14 14 repo = "jitterentropy-library"; 15 15 rev = "v${version}"; 16 - hash = "sha256-CPvgc/W5Z2OfbP9Lp2tQevUQZr+xlh6q5r5Fp2WUHhg="; 16 + hash = "sha256-A1Y+7CqzoQ6xoTwWU8gfq+dYJ+PiIpqtOOZSL0uVby4="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/js/jsonschema-cli/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "jsonschema-cli"; 11 - version = "0.29.0"; 11 + version = "0.29.1"; 12 12 13 13 src = fetchCrate { 14 14 inherit pname version; 15 - hash = "sha256-kpdvvCnMsHfogXmAqNeo1Cl1hZtCPHqkfhYm8ipWToo="; 15 + hash = "sha256-HHS8dt3bJZ3dPWqB5K0h5KQTn/wHRYvIROfYmqfxolw="; 16 16 }; 17 17 18 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-Yti1KKJDRXMhDo84/ymZk2AkWp9HtU2LW2h63gfzIGY="; 19 + cargoHash = "sha256-RIt+b1Yokc4UMFPxOzO5GARsI32wL71ZmcoN+P/KE5c="; 20 20 21 21 nativeInstallCheckInputs = [ 22 22 versionCheckHook
+3 -8
pkgs/by-name/k8/k8sgpt/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "k8sgpt"; 9 - version = "0.3.50"; 9 + version = "0.4.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "k8sgpt-ai"; 13 13 repo = "k8sgpt"; 14 14 rev = "v${version}"; 15 - hash = "sha256-KPS30xoOmGwfws5dlY/77FblVqKJWa4182YIsdiZxA8="; 15 + hash = "sha256-uvbKsRomHUR8YH2SUhGL25o3EdI2zxDs+qSozc2X++4="; 16 16 }; 17 17 18 - vendorHash = "sha256-QwLIDUtNMJarwQYWSp739Nfgf7lGmohAXaMga4g93DI="; 18 + vendorHash = "sha256-7YmGjlqtW4oq58hjQJITVslEl/g6ek3ERTX+b5Clo/A="; 19 19 20 20 # https://nixos.org/manual/nixpkgs/stable/#var-go-CGO_ENABLED 21 21 env.CGO_ENABLED = 0; 22 - 23 - # https://nixos.org/manual/nixpkgs/stable/#ssec-skip-go-tests 24 - checkFlags = [ 25 - "-skip=TestActivate/trivy" 26 - ]; 27 22 28 23 # https://nixos.org/manual/nixpkgs/stable/#ssec-skip-go-tests 29 24 ldflags = [
+2 -2
pkgs/by-name/ka/kanboard/package.nix
··· 9 9 10 10 stdenvNoCC.mkDerivation (finalAttrs: { 11 11 pname = "kanboard"; 12 - version = "1.2.43"; 12 + version = "1.2.44"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "kanboard"; 16 16 repo = "kanboard"; 17 17 tag = "v${finalAttrs.version}"; 18 - hash = "sha256-pKWn6CZZu/iHnHLIY/6fMBDvAGXmBmsiFNdIyjSI98w="; 18 + hash = "sha256-0vMHNB0wEyjp8oNWh1PZ2oT/Lpk/eiXrDNA5Dzv8xqI="; 19 19 }; 20 20 21 21 dontBuild = true;
+2 -2
pkgs/by-name/la/languagetool/package.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "LanguageTool"; 12 - version = "6.5"; 12 + version = "6.6"; 13 13 14 14 src = fetchzip { 15 15 url = "https://www.languagetool.org/download/${pname}-${version}.zip"; 16 - sha256 = "sha256-+ZZF/k3eTKT2KbWsk5jJtsdcbkOH90ytlSEEdJ2EMbU="; 16 + sha256 = "sha256-BNiUIk5h38oEM4IliHdy8rNmZY0frQ1RaFeJ7HI5nOI="; 17 17 }; 18 18 nativeBuildInputs = [ makeWrapper ]; 19 19 buildInputs = [ jre ];
+10
pkgs/by-name/li/libf2c/package.nix
··· 20 20 unzip ${src} 21 21 ''; 22 22 23 + postPatch = '' 24 + substituteInPlace makefile.u \ 25 + --replace-fail "ld" "${stdenv.cc.targetPrefix}ld" 26 + ''; 27 + 23 28 makeFlags = [ 24 29 "-f" 25 30 "makefile.u" 31 + "CC=${stdenv.cc.targetPrefix}cc" 26 32 ]; 27 33 28 34 installPhase = '' ··· 44 50 homepage = "http://www.netlib.org/f2c/"; 45 51 license = lib.licenses.mit; 46 52 platforms = lib.platforms.unix; 53 + # Generates arith.h at build time. Uses non-standard fpu_control.h. 54 + broken = 55 + (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) 56 + || (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.libc != "glibc"); 47 57 }; 48 58 }
+3 -3
pkgs/by-name/li/libsignal-ffi/package.nix
··· 22 22 pname = "libsignal-ffi"; 23 23 # must match the version used in mautrix-signal 24 24 # see https://github.com/mautrix/signal/issues/401 25 - version = "0.66.2"; 25 + version = "0.67.4"; 26 26 27 27 src = fetchFromGitHub { 28 28 fetchSubmodules = true; 29 29 owner = "signalapp"; 30 30 repo = "libsignal"; 31 31 tag = "v${version}"; 32 - hash = "sha256-V7w+77X1a2Uga/RUCqppY3THbAktaPN+DLrze4UwfHM="; 32 + hash = "sha256-s7vTzAOWKvGCkrWcxDcKptsmxvW5VxrF5X9Vfkjj1jA="; 33 33 }; 34 34 35 35 buildInputs = lib.optional stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Security ]; ··· 43 43 env.NIX_LDFLAGS = if stdenv.hostPlatform.isDarwin then "-lc++" else "-lstdc++"; 44 44 45 45 useFetchCargoVendor = true; 46 - cargoHash = "sha256-a3Xb37gFs7GWk8/9cFdaC9tsYCv/MQGJ78r5YCQ0DOo="; 46 + cargoHash = "sha256-wxBbq4WtqzHbdro+tm2hU6JVwTgC2X/Cx9po+ndgECg="; 47 47 48 48 cargoBuildFlags = [ 49 49 "-p"
+80 -49
pkgs/by-name/li/lightgbm/package.nix
··· 1 1 { 2 + lib, 3 + stdenv, 2 4 config, 3 - stdenv, 4 - lib, 5 5 fetchFromGitHub, 6 + fetchpatch, 6 7 cmake, 7 8 gtest, 8 9 doCheck ? true, ··· 25 26 R, 26 27 rPackages, 27 28 pandoc, 29 + python3Packages, 28 30 }: 29 31 30 32 assert doCheck -> !mpiSupport; 31 33 assert openclSupport -> !cudaSupport; 32 34 assert cudaSupport -> !openclSupport; 33 35 34 - stdenv.mkDerivation rec { 35 - pnameBase = "lightgbm"; 36 + stdenv.mkDerivation (finalAttrs: { 36 37 # prefix with r when building the R library 37 38 # The R package build results in a special binary file 38 39 # that contains a subset of the .so file use for the CLI ··· 45 46 # lgbm = lightgbm.override{rLibrary = true; doCheck = false;}; \ 46 47 # in \ 47 48 # rWrapper.override{ packages = [ lgbm ]; }" 48 - pname = lib.optionalString rLibrary "r-" + pnameBase; 49 - version = "4.5.0"; 49 + pname = lib.optionalString rLibrary "r-" + "lightgbm"; 50 + version = "4.6.0"; 50 51 51 52 src = fetchFromGitHub { 52 53 owner = "microsoft"; 53 - repo = pnameBase; 54 - rev = "v${version}"; 54 + repo = "lightgbm"; 55 + tag = "v${finalAttrs.version}"; 55 56 fetchSubmodules = true; 56 - hash = "sha256-nST6+/c3Y4/hqwgEUhx03gWtjxhlmUu1XKDCy2pSsvU="; 57 + hash = "sha256-vq/TlM87i1GNq0Rpy0OTulT9LF+uvi4PhOUz7ZNeceA="; 57 58 }; 58 59 60 + patches = [ 61 + # Fix boost 1.83+ compatibility 62 + # https://github.com/microsoft/LightGBM/issues/6786 63 + # Patch taken from https://github.com/conda-forge/lightgbm-feedstock/pull/69 64 + (fetchpatch { 65 + name = "fix-boost-sha1"; 66 + url = "https://raw.githubusercontent.com/conda-forge/lightgbm-feedstock/68ca96d25d8a6f7281310a4ad3b8d5cdd01f067b/recipe/patches/0003-boost-sha1.patch"; 67 + hash = "sha256-Hw2YmoduOPri7O1XV2p/3Ny4hC8xq7Jq4zoSuKhVeVQ="; 68 + }) 69 + ]; 70 + 71 + # Skip APPLE in favor of linux build for .so files 72 + postPatch = '' 73 + export PROJECT_SOURCE_DIR=./ 74 + substituteInPlace CMakeLists.txt \ 75 + --replace-fail "find_package(GTest CONFIG)" "find_package(GTest REQUIRED)" \ 76 + --replace-fail "OpenCL_INCLUDE_DIRS}" "OpenCL_INCLUDE_DIRS}" \ 77 + --replace-fail "elseif(APPLE)" "elseif(APPLESKIP)" 78 + substituteInPlace \ 79 + external_libs/compute/include/boost/compute/cl.hpp \ 80 + external_libs/compute/include/boost/compute/cl_ext.hpp \ 81 + --replace-fail "include <OpenCL/" "include <CL/" 82 + substituteInPlace build_r.R \ 83 + --replace-fail "shQuote(normalizePath" "shQuote(type = 'cmd', string = normalizePath" \ 84 + --replace-fail "file.path(getwd(), \"lightgbm_r\")" "'$out/tmp'" \ 85 + --replace-fail \ 86 + "install_args <- c(\"CMD\", \"INSTALL\", \"--no-multiarch\", \"--with-keep.source\", tarball)" \ 87 + "install_args <- c(\"CMD\", \"INSTALL\", \"--no-multiarch\", \"--with-keep.source\", \"-l $out/library\", tarball)" 88 + 89 + # Retry this test in next release. Something fails in the setup, so GTEST_FILTER is not enough 90 + substituteInPlace CMakeLists.txt \ 91 + --replace-fail "tests/cpp_tests/test_arrow.cpp" "" 92 + rm tests/cpp_tests/test_arrow.cpp 93 + ''; 94 + 59 95 nativeBuildInputs = 60 96 [ cmake ] 61 97 ++ lib.optionals stdenv.hostPlatform.isDarwin [ llvmPackages.openmp ] ··· 84 120 rPackages.R6 85 121 ]; 86 122 87 - # Skip APPLE in favor of linux build for .so files 88 - postPatch = '' 89 - export PROJECT_SOURCE_DIR=./ 90 - substituteInPlace CMakeLists.txt \ 91 - --replace "find_package(GTest CONFIG)" "find_package(GTest REQUIRED)" \ 92 - --replace "OpenCL_INCLUDE_DIRS}" "OpenCL_INCLUDE_DIRS}" \ 93 - --replace "elseif(APPLE)" "elseif(APPLESKIP)" 94 - substituteInPlace \ 95 - external_libs/compute/include/boost/compute/cl.hpp \ 96 - external_libs/compute/include/boost/compute/cl_ext.hpp \ 97 - --replace "include <OpenCL/" "include <CL/" 98 - substituteInPlace build_r.R \ 99 - --replace "shQuote(normalizePath" "shQuote(type = 'cmd', string = normalizePath" \ 100 - --replace "file.path(getwd(), \"lightgbm_r\")" "'$out/tmp'" \ 101 - --replace \ 102 - "install_args <- c(\"CMD\", \"INSTALL\", \"--no-multiarch\", \"--with-keep.source\", tarball)" \ 103 - "install_args <- c(\"CMD\", \"INSTALL\", \"--no-multiarch\", \"--with-keep.source\", \"-l $out/library\", tarball)" 104 - 105 - # Retry this test in next release. Something fails in the setup, so GTEST_FILTER is not enough 106 - rm tests/cpp_tests/test_arrow.cpp 107 - ''; 108 - 109 123 cmakeFlags = 110 - lib.optionals doCheck [ "-DBUILD_CPP_TEST=ON" ] 124 + lib.optionals doCheck [ 125 + (lib.cmakeBool "BUILD_CPP_TEST" true) 126 + ] 111 127 ++ lib.optionals cudaSupport [ 112 - "-DUSE_CUDA=1" 113 - "-DCMAKE_CXX_COMPILER=${cudaPackages.backendStdenv.cc}/bin/cc" 128 + (lib.cmakeBool "USE_CUDA" true) 129 + (lib.cmakeFeature "CMAKE_CXX_COMPILER" (lib.getExe cudaPackages.backendStdenv.cc)) 130 + ] 131 + ++ lib.optionals openclSupport [ 132 + (lib.cmakeBool "USE_GPU" true) 133 + ] 134 + ++ lib.optionals mpiSupport [ 135 + (lib.cmakeBool "USE_MPI" true) 114 136 ] 115 - ++ lib.optionals openclSupport [ "-DUSE_GPU=ON" ] 116 - ++ lib.optionals mpiSupport [ "-DUSE_MPI=ON" ] 117 137 ++ lib.optionals hdfsSupport [ 118 - "-DUSE_HDFS=ON" 119 - "-DHDFS_LIB=${hadoop}/lib/hadoop-${hadoop.version}/lib/native/libhdfs.so" 120 - "-DHDFS_INCLUDE_DIR=${hadoop}/lib/hadoop-${hadoop.version}/include" 138 + (lib.cmakeBool "USE_HDFS" true) 139 + (lib.cmakeFeature "HDFS_LIB" "${hadoop}/lib/hadoop-${hadoop.version}/lib/native/libhdfs.so") 140 + (lib.cmakeFeature "HDFS_INCLUDE_DIR" "${hadoop}/lib/hadoop-${hadoop.version}/include") 121 141 ] 122 142 ++ lib.optionals javaWrapper [ 123 - "-DUSE_SWIG=ON" 143 + (lib.cmakeBool "USE_SWIG" true) 124 144 # RPATH of binary /nix/store/.../bin/... contains a forbidden reference to /build/ 125 - "-DCMAKE_SKIP_BUILD_RPATH=ON" 145 + (lib.cmakeBool "CMAKE_SKIP_BUILD_RPATH" true) 146 + ] 147 + ++ lib.optionals rLibrary [ 148 + (lib.cmakeBool "__BUILD_FOR_R" true) 126 149 ] 127 - ++ lib.optionals rLibrary [ "-D__BUILD_FOR_R=ON" ] 128 - ++ lib.optionals pythonLibrary [ "-D__BUILD_FOR_PYTHON=ON" ]; 150 + ++ lib.optionals pythonLibrary [ 151 + (lib.cmakeBool "__BUILD_FOR_PYTHON" true) 152 + ]; 129 153 130 154 configurePhase = lib.optionals rLibrary '' 131 155 export R_LIBS_SITE="$out/library:$R_LIBS_SITE''${R_LIBS_SITE:+:}" ··· 182 206 183 207 postFixup = lib.optionalString rLibrary '' 184 208 if test -e $out/nix-support/propagated-build-inputs; then 185 - ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages 209 + ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages 186 210 fi 187 211 ''; 188 212 189 - meta = with lib; { 213 + passthru = { 214 + tests = { 215 + pythonPackage = python3Packages.lightgbm; 216 + }; 217 + }; 218 + 219 + meta = { 190 220 description = "LightGBM is a gradient boosting framework that uses tree based learning algorithms."; 191 221 mainProgram = "lightgbm"; 192 222 homepage = "https://github.com/microsoft/LightGBM"; 193 - license = licenses.mit; 194 - platforms = platforms.unix; 195 - maintainers = with maintainers; [ nviets ]; 223 + changelog = "https://github.com/microsoft/LightGBM/releases/tag/v${finalAttrs.version}"; 224 + license = lib.licenses.mit; 225 + platforms = lib.platforms.unix; 226 + maintainers = with lib.maintainers; [ nviets ]; 196 227 }; 197 - } 228 + })
+3 -3
pkgs/by-name/ma/mago/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "mago"; 13 - version = "0.20.2"; 13 + version = "0.22.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "carthage-software"; 17 17 repo = "mago"; 18 18 tag = version; 19 - hash = "sha256-XRPP57ylTLodOCzRTLO1IXLq9Yuk/vkDovSlMcushy0="; 19 + hash = "sha256-Zc6DTqIVU4shmZ9csg4nzwjn7ut/D6FrBXATQqwHI8o="; 20 20 }; 21 21 22 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-Mlxs0ApYOOHNYEt2AWuOixLqBJrJ/++Gy+EFGsb9wKM="; 23 + cargoHash = "sha256-wppfZNsAFzXMJzcIOHL8Lj2FCgPp/i/TZcHP4VYsGCk="; 24 24 25 25 env = { 26 26 # Get openssl-sys to use pkg-config
+2 -4
pkgs/by-name/no/normaliz/package.nix
··· 4 4 fetchFromGitHub, 5 5 autoreconfHook, 6 6 gmpxx, 7 - flint, 8 - arb, 7 + flint3, 9 8 nauty, 10 9 }: 11 10 ··· 22 21 23 22 buildInputs = [ 24 23 gmpxx 25 - flint 26 - arb 24 + flint3 27 25 nauty 28 26 ]; 29 27
+2 -2
pkgs/by-name/op/openapi-python-client/package.nix
··· 11 11 12 12 python3Packages.buildPythonApplication rec { 13 13 pname = "openapi-python-client"; 14 - version = "0.24.0"; 14 + version = "0.24.2"; 15 15 pyproject = true; 16 16 17 17 src = fetchFromGitHub { ··· 19 19 owner = "openapi-generators"; 20 20 repo = "openapi-python-client"; 21 21 tag = "v${version}"; 22 - hash = "sha256-T6jctXj/C5wogHUveY58YKR04utHNpRWimhq8b45Kuc="; 22 + hash = "sha256-uGS5MearvggL7hPov3vgwyskKDXJFbHNzKdIu2WlA7A="; 23 23 }; 24 24 25 25 nativeBuildInputs =
+6 -6
pkgs/by-name/ph/photonvision/package.nix
··· 3 3 stdenv, 4 4 fetchurl, 5 5 makeWrapper, 6 - temurin-jre-bin-11, 6 + temurin-jre-bin-17, 7 7 bash, 8 8 suitesparse, 9 9 nixosTests, ··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "photonvision"; 14 - version = "2024.3.1"; 14 + version = "2025.2.1"; 15 15 16 16 src = 17 17 { 18 18 "x86_64-linux" = fetchurl { 19 19 url = "https://github.com/PhotonVision/photonvision/releases/download/v${version}/photonvision-v${version}-linuxx64.jar"; 20 - hash = "sha256-t9drkGFA3IurZqWAkzEaONVJkp5JHMEFBBW50r+SD68="; 20 + hash = "sha256-yEb6GCt29DjZNDsIqDvF/AiCw3QVMxUFKQM22OlMl7Q="; 21 21 }; 22 22 "aarch64-linux" = fetchurl { 23 23 url = "https://github.com/PhotonVision/photonvision/releases/download/v${version}/photonvision-v${version}-linuxarm64.jar"; 24 - hash = "sha256-ninCVxse0x6lBA2NL3kwMeuHAeNzSa9rdP2dnmMNFgc="; 24 + hash = "sha256-mNQk8gaTASsmyJUpLLIbG7QRMjbdSN2LMCXx6j3gbCU="; 25 25 }; 26 26 } 27 27 .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); ··· 35 35 36 36 install -D $src $out/lib/photonvision.jar 37 37 38 - makeWrapper ${temurin-jre-bin-11}/bin/java $out/bin/photonvision \ 38 + makeWrapper ${temurin-jre-bin-17}/bin/java $out/bin/photonvision \ 39 39 --prefix LD_LIBRARY_PATH : ${ 40 40 lib.makeLibraryPath [ 41 41 stdenv.cc.cc ··· 44 44 } \ 45 45 --prefix PATH : ${ 46 46 lib.makeBinPath [ 47 - temurin-jre-bin-11 47 + temurin-jre-bin-17 48 48 bash.out 49 49 ] 50 50 } \
+2 -2
pkgs/by-name/pp/pplite/package.nix
··· 2 2 stdenv, 3 3 lib, 4 4 fetchurl, 5 - flint, 5 + flint3, 6 6 gmp, 7 7 }: 8 8 ··· 16 16 }; 17 17 18 18 buildInputs = [ 19 - flint 19 + flint3 20 20 gmp 21 21 ]; 22 22
+60
pkgs/by-name/pr/prometheus-tibber-exporter/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + versionCheckHook, 7 + }: 8 + 9 + buildGoModule (finalAttrs: { 10 + pname = "prometheus-tibber-exporter"; 11 + version = "3.10.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "terjesannum"; 15 + repo = "tibber-exporter"; 16 + tag = "tibber-exporter-${finalAttrs.version}"; 17 + hash = "sha256-Ndg2BxWdL5DKa2eHjY0rIdrfJ+SJlzvOUZDtWUBSR6g="; 18 + leaveDotGit = true; 19 + postFetch = '' 20 + cd "$out" 21 + date -u -d "@$(git log -1 --pretty=%ct)" "+%Y-%m-%dT%H:%M:%SZ" > $out/BUILD_COMMIT_DATE 22 + find "$out" -name .git -print0 | xargs -0 rm -rf 23 + ''; 24 + }; 25 + 26 + # do not use real BuildDate, but fixed imagenary (commit date) for binary reproducibility 27 + preBuild = '' 28 + ldflags+=" -X github.com/prometheus/common/version.BuildDate=$(cat BUILD_COMMIT_DATE)" 29 + ''; 30 + 31 + ldflags = [ 32 + "-s" 33 + "-w" 34 + "-X github.com/prometheus/common/version.Version=${finalAttrs.version}" 35 + "-X github.com/prometheus/common/version.Revision=${finalAttrs.src.rev}" 36 + "-X github.com/prometheus/common/version.Branch=master" 37 + "-X github.com/prometheus/common/version.BuildUser=nix@nixpkgs" 38 + ]; 39 + 40 + vendorHash = "sha256-JTJTapsqBj0FO2Gcx8O1eWJf9hMbeWzjtO0HYcDdzQo="; 41 + 42 + passthru.updateScript = nix-update-script { }; 43 + 44 + nativeInstallCheckInputs = [ 45 + versionCheckHook 46 + ]; 47 + 48 + doInstallCheck = true; 49 + versionCheckProgram = "${placeholder "out"}/bin/tibber-exporter"; 50 + versionCheckProgramArg = "--version"; 51 + 52 + meta = { 53 + changelog = "https://github.com/terjesannum/tibber-exporter/releases/tag/tibber-exporter-${finalAttrs.version}"; 54 + homepage = "https://github.com/terjesannum/tibber-exporter"; 55 + description = "Prometheus exporter for tibber energy meter, pulse, watty and more"; 56 + license = lib.licenses.mit; 57 + mainProgram = "tibber-exporter"; 58 + maintainers = with lib.maintainers; [ paepcke ]; 59 + }; 60 + })
+2 -2
pkgs/by-name/py/pykickstart/package.nix
··· 8 8 9 9 python3Packages.buildPythonApplication rec { 10 10 pname = "pykickstart"; 11 - version = "3.62"; 11 + version = "3.63"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pykickstart"; 15 15 repo = "pykickstart"; 16 16 tag = "r${version}"; 17 - hash = "sha256-QoMIr1nDGOMzAJ7pO2SdsZIcrSPFt/YEXJz201cXZQo="; 17 + hash = "sha256-U/P+aGFz8YO7qqHUCCO87uPgQc8sVCVbwG0/toWKq3g="; 18 18 }; 19 19 20 20 build-system = with python3Packages; [
+3 -3
pkgs/by-name/re/reindeer/package.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "reindeer"; 12 - version = "2025.03.10.00"; 12 + version = "2025.03.24.00"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "facebookincubator"; 16 16 repo = "reindeer"; 17 17 tag = "v${version}"; 18 - hash = "sha256-yE1ARmsEbuG9OskipZfPKbA0c/4VBVBFHFEiy5nzwXg="; 18 + hash = "sha256-Rv6EtrsDISR/lHo0Fimh2cNToSxUE5bxVdURmjs8/g4="; 19 19 }; 20 20 21 21 useFetchCargoVendor = true; 22 - cargoHash = "sha256-VU0mLaQ8pWQw/pFTB35/ZOKUnqEVEO9f1IKZ0gAmqj8="; 22 + cargoHash = "sha256-mzYpqI+PT5083exelS+kyGLZ+M8bTiTSxAoTwqV2ubc="; 23 23 24 24 nativeBuildInputs = [ pkg-config ]; 25 25
+3
pkgs/by-name/re/rembg/package.nix
··· 1 + { python3Packages }: 2 + 3 + python3Packages.toPythonApplication (python3Packages.rembg.override { withCli = true; })
+3 -3
pkgs/by-name/sk/skypeforlinux/package.nix
··· 42 42 43 43 # Please keep the version x.y.0.z and do not update to x.y.76.z because the 44 44 # source of the latter disappears much faster. 45 - version = "8.138.0.203"; 46 - revision = "386"; 45 + version = "8.138.0.213"; 46 + revision = "392"; 47 47 48 48 rpath = 49 49 lib.makeLibraryPath [ ··· 103 103 fetchurl { 104 104 name = "skypeforlinux-${version}-${revision}.snap"; 105 105 url = "https://api.snapcraft.io/api/v1/snaps/download/QRDEfjn4WJYnm0FzDKwqqRZZI77awQEV_${revision}.snap"; 106 - hash = "sha512-JTzZdCCyqGeEugFb3w37Mes0S4DlJuqw/ptSMegrppjQwq0mqOTQCOmnaCPA8pgBfCsPoZ3dnaaKt19YbyJWSg=="; 106 + hash = "sha512-ZLqmJMkIVlBvflHAXCStEt1T3eZgw/KMBlR754sR7mljIsr0liddGxFu2fjSijEBkx1mzoB+4ErOB/Il0KCXEA=="; 107 107 } 108 108 else 109 109 throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}";
+167
pkgs/by-name/su/supercell-wx/package.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + fetchpatch, 6 + aws-sdk-cpp, 7 + bzip2, 8 + cmake, 9 + ninja, 10 + zlib, 11 + openssl, 12 + curl, 13 + glew, 14 + geos, 15 + boost, 16 + spdlog, 17 + stb, 18 + libcpr, 19 + libpng, 20 + libSM, 21 + geographiclib, 22 + howard-hinnant-date, 23 + re2, 24 + gtest, 25 + glm, 26 + qt6, 27 + tbb_2021_11, 28 + tracy, 29 + substituteAll, 30 + python3, 31 + }: 32 + let 33 + gtestSkip = [ 34 + # Skip tests requiring network access 35 + "AwsLevel*DataProvider.FindKeyNow" 36 + "AwsLevel*DataProvider.FindKeyFixed" 37 + "AwsLevel*DataProvider.LoadObjectByKey" 38 + "AwsLevel*DataProvider.Refresh" 39 + "AwsLevel*DataProvider.GetAvailableProducts" 40 + "AwsLevel*DataProvider.GetTimePointsByDate" 41 + "AwsLevel*DataProvider.Prune" 42 + "UpdateManagerTest.CheckForUpdates" 43 + "WarningsProvider*\"https" 44 + 45 + # These tests are failing (seemingly can't overwrite a file created by earlier test). 46 + "SettingsManager/DefaultSettingsTest*" 47 + "SettingsManager/BadSettingsTest*" 48 + "MarkerModelTest.*" 49 + ]; 50 + in 51 + stdenv.mkDerivation (finalAttrs: { 52 + pname = "supercell-wx"; 53 + version = "0.4.8"; 54 + src = fetchFromGitHub { 55 + owner = "dpaulat"; 56 + repo = "supercell-wx"; 57 + rev = "refs/tags/v${finalAttrs.version}-release"; 58 + sha256 = "sha256-gKR5Mfzw5B4f4/dWintlbDHX3q+d1RmFE+MNp5uSSuc="; 59 + fetchSubmodules = true; 60 + }; 61 + 62 + meta = { 63 + homepage = "https://supercell-wx.rtfd.io"; 64 + downloadPage = "https://github.com/dpaulat/supercell-wx/releases"; 65 + description = "Live visualization of NEXRAD weather data and alerts"; 66 + longDescription = '' 67 + Supercell Wx is a free, open source application to visualize live and 68 + archive NEXRAD Level 2 and Level 3 data, and severe weather alerts. 69 + It displays continuously updating weather data on top of a responsive 70 + map, providing the capability to monitor weather events using 71 + reflectivity, velocity, and other products. 72 + ''; 73 + license = lib.licenses.mit; 74 + mainProgram = "supercell-wx"; 75 + platforms = [ 76 + "x86_64-linux" 77 + # "aarch64-linux" 78 + ]; 79 + maintainers = with lib.maintainers; [ aware70 ]; 80 + }; 81 + 82 + env.CXXFLAGS = "-Wno-error=restrict -Wno-error=maybe-uninitialized -Wno-error=deprecated-declarations -Wno-error=stringop-overflow"; 83 + env.GTEST_FILTER = "-${lib.concatStringsSep ":" gtestSkip}"; 84 + 85 + doCheck = true; 86 + 87 + # These tests aren't built by 'all', but ctest still tries to run them. 88 + cmakeFlags = [ 89 + "-DCMAKE_CTEST_ARGUMENTS=-E;'test_mln_core|test_mln_widgets'" 90 + "-DSTB_INCLUDE_DIR=${stb}/include/stb" 91 + "-DFETCHCONTENT_SOURCE_DIR_TRACY=${tracy.src}" 92 + ]; 93 + 94 + patches = [ 95 + # These are for Nix compatibility {{{ 96 + ./patches/use-find-package.patch # Replace some vendored dependencies with Nix provided versions 97 + (substituteAll { 98 + # Skip tagging build with git version, and substitute it with the src revision (still uses current year timestamp) 99 + src = ./patches/skip-git-versioning.patch; 100 + rev = finalAttrs.src.rev; 101 + }) 102 + # Prevents using some Qt scripts that seemed to break the install step. Fixes missing link to some targets. 103 + ./patches/fix-cmake-install.patch 104 + # }}} 105 + 106 + # These may be or already are submitted upstream {{{ 107 + ./patches/explicit-link-aws-crt.patch # fix missing symbols from aws-crt-cpp 108 + # }}} 109 + ]; 110 + 111 + # This also may be submitted upstream to maplibre-native-qt, which is currently vendored 112 + postPatch = '' 113 + substituteInPlace external/maplibre-native-qt/src/core/CMakeLists.txt \ 114 + --replace-fail "CMAKE_SOURCE_DIR" "PROJECT_SOURCE_DIR" 115 + ''; 116 + 117 + nativeBuildInputs = [ 118 + cmake 119 + ninja 120 + qt6.wrapQtAppsHook 121 + ]; 122 + 123 + buildInputs = [ 124 + zlib 125 + openssl 126 + qt6.qtbase 127 + qt6.qttools 128 + qt6.qtmultimedia 129 + qt6.qtpositioning 130 + qt6.qtimageformats 131 + aws-sdk-cpp 132 + howard-hinnant-date 133 + boost 134 + tbb_2021_11 135 + glew 136 + geos 137 + spdlog 138 + stb 139 + libcpr 140 + libpng 141 + libSM 142 + re2 143 + openssl 144 + # FIXME: split outputs aren't working with find_package. Possibly related to nixpkgs/issues/144170 ? 145 + (geographiclib.overrideAttrs { 146 + outputs = [ "out" ]; 147 + }) 148 + gtest 149 + glm 150 + bzip2 151 + (python3.withPackages (ps: [ 152 + ps.geopandas 153 + ])) 154 + ]; 155 + 156 + # Currently crashes on wayland; must force X11 157 + qtWrapperArgs = [ 158 + "--set QT_QPA_PLATFORM xcb" 159 + ]; 160 + 161 + # Install .desktop file and icons 162 + postInstall = '' 163 + install -m0644 -D "$src/scwx-qt/res/linux/supercell-wx.desktop" "$out/share/applications/supercell-wx.desktop" 164 + install -m0644 -D "$src/scwx-qt/res/icons/scwx-256.png" "$out/share/icons/hicolor/256x256/apps/supercell-wx.png" 165 + install -m0644 -D "$src/scwx-qt/res/icons/scwx-64.png" "$out/share/icons/hicolor/64x64/apps/supercell-wx.png" 166 + ''; 167 + })
+53
pkgs/by-name/su/supercell-wx/patches/fix-cmake-install.patch
··· 1 + diff --git a/scwx-qt/scwx-qt.cmake b/scwx-qt/scwx-qt.cmake 2 + index cda6c7f..32d807a 100644 3 + --- a/scwx-qt/scwx-qt.cmake 4 + +++ b/scwx-qt/scwx-qt.cmake 5 + @@ -601,6 +601,7 @@ target_link_libraries(scwx-qt PUBLIC Qt${QT_VERSION_MAJOR}::Widgets 6 + Boost::json 7 + Boost::timer 8 + QMapLibre::Core 9 + + QMapLibre::Widgets 10 + $<$<CXX_COMPILER_ID:MSVC>:opengl32> 11 + Fontconfig::Fontconfig 12 + GeographicLib::GeographicLib 13 + @@ -615,40 +616,13 @@ target_link_libraries(scwx-qt PUBLIC Qt${QT_VERSION_MAJOR}::Widgets 14 + target_link_libraries(supercell-wx PRIVATE scwx-qt 15 + wxdata) 16 + 17 + -# Set DT_RUNPATH for Linux targets 18 + -set_target_properties(MLNQtCore PROPERTIES INSTALL_RPATH "\$ORIGIN/../lib") # QMapLibre::Core 19 + -set_target_properties(supercell-wx PROPERTIES INSTALL_RPATH "\$ORIGIN/../lib") 20 + - 21 + install(TARGETS supercell-wx 22 + - MLNQtCore # QMapLibre::Core 23 + - RUNTIME_DEPENDENCIES 24 + - PRE_EXCLUDE_REGEXES "api-ms-" "ext-ms-" "qt6" 25 + - POST_EXCLUDE_REGEXES ".*system32/.*\\.dll" 26 + - "^(/usr)?/lib/.*\\.so(\\..*)?" 27 + RUNTIME 28 + COMPONENT supercell-wx 29 + LIBRARY 30 + COMPONENT supercell-wx 31 + OPTIONAL) 32 + 33 + -# NO_TRANSLATIONS is needed for Qt 6.5.0 (will be fixed in 6.5.1) 34 + -# https://bugreports.qt.io/browse/QTBUG-112204 35 + -qt_generate_deploy_app_script(TARGET MLNQtCore # QMapLibre::Core 36 + - OUTPUT_SCRIPT deploy_script_qmaplibre_core 37 + - NO_TRANSLATIONS 38 + - NO_UNSUPPORTED_PLATFORM_ERROR) 39 + - 40 + -qt_generate_deploy_app_script(TARGET supercell-wx 41 + - OUTPUT_SCRIPT deploy_script_scwx 42 + - NO_TRANSLATIONS 43 + - NO_UNSUPPORTED_PLATFORM_ERROR) 44 + - 45 + -install(SCRIPT ${deploy_script_qmaplibre_core} 46 + - COMPONENT supercell-wx) 47 + - 48 + -install(SCRIPT ${deploy_script_scwx} 49 + - COMPONENT supercell-wx) 50 + - 51 + if (MSVC) 52 + set(CPACK_PACKAGE_NAME "Supercell Wx") 53 + set(CPACK_PACKAGE_VENDOR "Dan Paulat")
+50
pkgs/by-name/su/supercell-wx/patches/skip-git-versioning.patch
··· 1 + diff --git a/scwx-qt/tools/generate_versions.py b/scwx-qt/tools/generate_versions.py 2 + index c6c94020..3fcdcf08 100644 3 + --- a/scwx-qt/tools/generate_versions.py 4 + +++ b/scwx-qt/tools/generate_versions.py 5 + @@ -1,6 +1,5 @@ 6 + import argparse 7 + import datetime 8 + -import git 9 + import json 10 + import os 11 + import pathlib 12 + @@ -110,27 +109,22 @@ def ParseArguments(): 13 + required = True) 14 + return parser.parse_args() 15 + 16 + +def GetYearFromLicense(license_file: pathlib.Path): 17 + + import re 18 + + for line in license_file.read_text().splitlines(): 19 + + m = re.search(r'^\s*Copyright \(c\) 2021-(\d{4,})', line) 20 + + if m is not None: 21 + + return int(m.group(1)) 22 + + raise RuntimeError(f"Could not find copyright year in {license_file}") 23 + + 24 + def CollectVersionInfo(args): 25 + print("Collecting version info") 26 + 27 + versionInfo = VersionInfo() 28 + - 29 + - repo = git.Repo(args.gitRepo_, search_parent_directories = True) 30 + - 31 + - commitString = str(repo.head.commit)[:10] 32 + - 33 + - if not repo.is_dirty(submodules = False): 34 + - copyrightYear = datetime.datetime.fromtimestamp(repo.head.commit.committed_date).year 35 + - else: 36 + - commitString = commitString + "+dirty" 37 + - copyrightYear = datetime.date.today().year 38 + - 39 + - resourceDir = str(args.gitRepo_).replace("\\", "\\\\") 40 + - 41 + versionInfo.buildNumber_ = args.buildNumber_ 42 + - versionInfo.commitString_ = commitString 43 + - versionInfo.copyrightYear_ = copyrightYear 44 + - versionInfo.resourceDir_ = resourceDir 45 + + versionInfo.commitString_ = "@rev@" 46 + + versionInfo.copyrightYear_ = GetYearFromLicense(args.gitRepo_ / 'LICENSE.txt') 47 + + versionInfo.resourceDir_ = str(args.gitRepo_).replace("\\", "\\\\") 48 + versionInfo.versionString_ = args.version_ 49 + 50 + versionInfo.Calculate()
+67
pkgs/by-name/su/supercell-wx/patches/use-find-package.patch
··· 1 + diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt 2 + index 2137ae62..041cb87d 100644 3 + --- a/external/CMakeLists.txt 4 + +++ b/external/CMakeLists.txt 5 + @@ -14,7 +14,7 @@ set_property(DIRECTORY 6 + units.cmake 7 + qt6ct.cmake) 8 + 9 + -include(aws-sdk-cpp.cmake) 10 + +find_package(AWSSDK CONFIG REQUIRED) 11 + include(date.cmake) 12 + include(hsluv-c.cmake) 13 + include(imgui.cmake) 14 + diff --git a/external/stb.cmake b/external/stb.cmake 15 + index 570af425..f9817226 100644 16 + --- a/external/stb.cmake 17 + +++ b/external/stb.cmake 18 + @@ -1,4 +1,3 @@ 19 + cmake_minimum_required(VERSION 3.24) 20 + set(PROJECT_NAME scwx-stb) 21 + 22 + -set(STB_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/stb PARENT_SCOPE) 23 + +# Nix: set STB_INCLUDE_DIR in cmake flags 24 + diff --git a/scwx-qt/scwx-qt.cmake b/scwx-qt/scwx-qt.cmake 25 + index 09ea6fe3..c20a2cb6 100644 26 + --- a/scwx-qt/scwx-qt.cmake 27 + +++ b/scwx-qt/scwx-qt.cmake 28 + @@ -11,14 +11,15 @@ set(CMAKE_AUTORCC ON) 29 + set(CMAKE_CXX_STANDARD 20) 30 + set(CMAKE_CXX_STANDARD_REQUIRED ON) 31 + 32 + -find_package(Boost) 33 + +find_package(Boost REQUIRED COMPONENTS json timer) 34 + find_package(Fontconfig) 35 + -find_package(geographiclib) 36 + +find_package(GeographicLib) 37 + find_package(geos) 38 + find_package(GLEW) 39 + find_package(glm) 40 + find_package(Python COMPONENTS Interpreter) 41 + find_package(SQLite3) 42 + +find_package(PNG) 43 + 44 + find_package(QT NAMES Qt6 45 + COMPONENTS Gui 46 + @@ -699,6 +700,7 @@ target_link_libraries(scwx-qt PUBLIC Qt${QT_VERSION_MAJOR}::Widgets 47 + imgui 48 + qt6ct-common 49 + SQLite::SQLite3 50 + + PNG::PNG 51 + wxdata) 52 + 53 + target_link_libraries(supercell-wx PRIVATE scwx-qt 54 + diff --git a/wxdata/wxdata.cmake b/wxdata/wxdata.cmake 55 + index 94b0e3a7..a36c2c81 100644 56 + --- a/wxdata/wxdata.cmake 57 + +++ b/wxdata/wxdata.cmake 58 + @@ -2,7 +2,8 @@ cmake_minimum_required(VERSION 3.24) 59 + 60 + project(scwx-data) 61 + 62 + -find_package(Boost) 63 + +find_package(Boost REQUIRED COMPONENTS iostreams) 64 + +find_package(BZip2) 65 + find_package(cpr) 66 + find_package(LibXml2) 67 + find_package(OpenSSL)
+4 -4
pkgs/by-name/sy/symengine/package.nix
··· 4 4 fetchFromGitHub, 5 5 cmake, 6 6 gmp, 7 - flint, 7 + flint3, 8 8 mpfr, 9 9 libmpc, 10 10 withShared ? true, ··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "symengine"; 15 - version = "0.13.0"; 15 + version = "0.14.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "symengine"; 19 19 repo = "symengine"; 20 20 rev = "v${version}"; 21 - hash = "sha256-hMTndwIXTqf3cxKZdnn38SFvZLEb48k1Lvm5/hW7U8k="; 21 + hash = "sha256-WriVcYt3fkObR2U4J6a4KGGc2HgyyFyFpdrwxBD+AHA="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ cmake ]; 25 25 26 26 buildInputs = [ 27 27 gmp 28 - flint 28 + flint3 29 29 mpfr 30 30 libmpc 31 31 ];
+7 -7
pkgs/by-name/tr/trilium-next-desktop/package.nix
··· 15 15 16 16 let 17 17 pname = "trilium-next-desktop"; 18 - version = "0.91.6"; 18 + version = "0.92.4"; 19 19 20 20 triliumSource = os: arch: sha256: { 21 21 url = "https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNextNotes-v${version}-${os}-${arch}.zip"; ··· 26 26 darwinSource = triliumSource "macos"; 27 27 28 28 # exposed like this for update.sh 29 - x86_64-linux.sha256 = "13r9akfakmrpvnyab182irhraf9hpqb24205r8rxjfgj8dpmfa4p"; 30 - aarch64-linux.sha256 = "07bh5fcdcw3al5w8nqx5kxzqa5vgni27gb6591y6j6jynz6cmyqp"; 31 - x86_64-darwin.sha256 = "0iaz4wim11x110phg4xgzdw3sjcbmxwbksk5gpygjbhlzhjprnnp"; 32 - aarch64-darwin.sha256 = "1x2s8sdz89sy69lvdg552qmr3chj20d32sskks1r8g5rs16fwqd1"; 29 + x86_64-linux.sha256 = "12z6r38ab8jrjgic370q5v1y17m9brj38gfqdg05drf7a25xam8r"; 30 + aarch64-linux.sha256 = "0zsc7c7q07zml91sqvwgz8x3vql1mlhvb7msf7vx22w94dypzivf"; 31 + x86_64-darwin.sha256 = "09ipqfr77xqlgbzh2dvlidm532isg8jj8iwawjldq74ncbv8m5h0"; 32 + aarch64-darwin.sha256 = "031nz4f3rdjg3cyvadax4shchr7liyrzsn3ab6whsp3mhnb9wr9l"; 33 33 34 34 sources = { 35 35 x86_64-linux = linuxSource "x64" x86_64-linux.sha256; ··· 53 53 platforms = lib.attrNames sources; 54 54 }; 55 55 56 - linux = stdenv.mkDerivation rec { 56 + linux = stdenv.mkDerivation { 57 57 inherit 58 58 pname 59 59 version ··· 105 105 asar extract $out/share/trilium/resources/app.asar $tmp 106 106 rm $out/share/trilium/resources/app.asar 107 107 108 - for f in "src/services/utils.ts" "dist/src/services/utils.js"; do 108 + for f in "src/services/utils.js"; do 109 109 substituteInPlace $tmp/$f \ 110 110 --replace-fail "process.resourcesPath" "'$out/share/trilium/resources'" 111 111 done
+2 -2
pkgs/by-name/tr/trilium-next-desktop/update.sh
··· 22 22 setKV ./package.nix aarch64-darwin.sha256 $sha256_darwin64_arm 23 23 24 24 # Update server 25 - sha256_linux64_server=$(nix-prefetch-url --quiet https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNextNotes-linux-x64-v${version}.tar.xz) 26 - sha256_linux64_server_arm=$(nix-prefetch-url --quiet https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNextNotes-linux-arm64-v${version}.tar.xz) 25 + sha256_linux64_server=$(nix-prefetch-url --quiet https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNextNotes-Server-v${version}-linux-x64.tar.xz) 26 + sha256_linux64_server_arm=$(nix-prefetch-url --quiet https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNextNotes-Server-v${version}-linux-arm64.tar.xz) 27 27 setKV ../trilium-next-server/package.nix version $version 28 28 setKV ../trilium-next-server/package.nix serverSource_x64.sha256 $sha256_linux64_server 29 29 setKV ../trilium-next-server/package.nix serverSource_arm64.sha256 $sha256_linux64_server_arm
+6 -6
pkgs/by-name/tr/trilium-next-server/package.nix
··· 7 7 }: 8 8 9 9 let 10 - version = "0.91.6"; 10 + version = "0.92.4"; 11 11 12 - serverSource_x64.url = "https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNextNotes-linux-x64-v${version}.tar.xz"; 13 - serverSource_x64.sha256 = "0ji1i792afzklg2vn99krm74nvb617pdr1gz061r573vi7nn5rnx"; 14 - serverSource_arm64.url = "https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNextNotes-linux-arm64-v${version}.tar.xz"; 15 - serverSource_arm64.sha256 = "1lyzm7rwj7cbb36nlswnwiy8hn0yba4f7mbrgirvzyx03q4wv29z"; 12 + serverSource_x64.url = "https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNextNotes-Server-v${version}-linux-x64.tar.xz"; 13 + serverSource_x64.sha256 = "1bcacr5sxmrq9zvh8xjyr30y5mz0y6qyx2m18dblswdi0mbi7cv4"; 14 + serverSource_arm64.url = "https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNextNotes-Server-v${version}-linux-arm64.tar.xz"; 15 + serverSource_arm64.sha256 = "04mjkqywwdax46r8q8wygi9dxglz2qipmlrv3cqqpdvjm0yxh2g2"; 16 16 17 17 serverSource = 18 18 if stdenv.hostPlatform.isx86_64 then ··· 57 57 58 58 # Clean up broken symlinks and build tools. 59 59 rm "$out"/share/trilium-server/node/bin/{npm,npx} 60 - rm -r "$out"/share/trilium-server/node_modules/{@npmcli,@rollup,@babel} 60 + rm -r "$out"/share/trilium-server/node_modules/{@npmcli,@rollup,@babel,.bin} 61 61 62 62 runHook postInstall 63 63 '';
+3 -3
pkgs/by-name/ve/versatiles/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "versatiles"; 9 - version = "0.15.2"; # When updating: Replace with current version 9 + version = "0.15.3"; # When updating: Replace with current version 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "versatiles-org"; 13 13 repo = "versatiles-rs"; 14 14 tag = "v${version}"; # When updating: Replace with long commit hash of new version 15 - hash = "sha256-RByNQMPx0vR7D50OiFjVSsq1G4cYvggzezUzUk/52pQ="; # When updating: Use `lib.fakeHash` for recomputing the hash once. Run: 'nix-build -A versatiles'. Swap with new hash and proceed. 15 + hash = "sha256-xIZ/9l/wvl2Gh7vmxTGUxhZ9KIPSPLoqqC8DRN3PiQs="; # When updating: Use `lib.fakeHash` for recomputing the hash once. Run: 'nix-build -A versatiles'. Swap with new hash and proceed. 16 16 }; 17 17 18 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-NjGX60unMPWyPggitYUux1+x3EvrFq6gvNbZu7H88Yo="; # When updating: Same as above 19 + cargoHash = "sha256-UkPKwXPQW/M7AgNTMx4OqTLQCc9+c+RkzcCPyEHJayw="; # When updating: Same as above 20 20 21 21 __darwinAllowLocalNetworking = true; 22 22
+2 -2
pkgs/by-name/wi/wiki-js/package.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "wiki-js"; 10 - version = "2.5.306"; 10 + version = "2.5.307"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/Requarks/wiki/releases/download/v${version}/${pname}.tar.gz"; 14 - sha256 = "sha256-BYJTzPUfd+eYRzHuNVO/L3NvGej0pBnWL6+7AjiGJ/Q="; 14 + sha256 = "sha256-wElXBEVLqrK+WtsCUw1IefWBqG6d6LP0eVylPb4qXY0="; 15 15 }; 16 16 17 17 # Unpack the tarball into a subdir. All the contents are copied into `$out`.
+2 -2
pkgs/by-name/yt/yt-dlp/package.nix
··· 17 17 # The websites yt-dlp deals with are a very moving target. That means that 18 18 # downloads break constantly. Because of that, updates should always be backported 19 19 # to the latest stable release. 20 - version = "2025.3.26"; 20 + version = "2025.3.27"; 21 21 pyproject = true; 22 22 23 23 src = fetchPypi { 24 24 inherit version; 25 25 pname = "yt_dlp"; 26 - hash = "sha256-R0Vhcrx6iNuhxRn+QtgAh6j1MMA9LL8k4GCkH48fbss="; 26 + hash = "sha256-MMsHj4A7U5sqZlIcXshtMowH90rsqUQAaeWGGcKZzxU="; 27 27 }; 28 28 29 29 build-system = with python3Packages; [
+2 -2
pkgs/development/libraries/libphonenumber/default.nix
··· 14 14 15 15 stdenv.mkDerivation (finalAttrs: { 16 16 pname = "libphonenumber"; 17 - version = "8.13.55"; 17 + version = "9.0.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "google"; 21 21 repo = "libphonenumber"; 22 22 rev = "v${finalAttrs.version}"; 23 - hash = "sha256-tCompIUKBEHLVF+yBIhu2IFJJLSuMO+Awhp3uWHCvZM="; 23 + hash = "sha256-FEe04DNJKNB74P0s03DMgNtqtrLDN7uScIIltctKYic="; 24 24 }; 25 25 26 26 patches = [
+41
pkgs/development/python-modules/asyncer/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pdm-backend, 6 + anyio, 7 + typing-extensions, 8 + pytestCheckHook, 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "asyncer"; 13 + version = "0.0.8"; 14 + pyproject = true; 15 + 16 + src = fetchFromGitHub { 17 + owner = "fastapi"; 18 + repo = "asyncer"; 19 + tag = version; 20 + hash = "sha256-SbByOiTYzp+G+SvsDqXOQBAG6nigtBXiQmfGgfKRqvM="; 21 + }; 22 + 23 + build-system = [ pdm-backend ]; 24 + 25 + dependencies = [ 26 + anyio 27 + typing-extensions 28 + ]; 29 + 30 + nativeCheckInputs = [ pytestCheckHook ]; 31 + 32 + pythonImportsCheck = [ "asyncer" ]; 33 + 34 + meta = { 35 + description = "Asyncer, async and await, focused on developer experience"; 36 + homepage = "https://github.com/fastapi/asyncer"; 37 + changelog = "https://github.com/fastapi/asyncer/releases/tag/${version}"; 38 + license = lib.licenses.mit; 39 + maintainers = with lib.maintainers; [ defelo ]; 40 + }; 41 + }
+13 -8
pkgs/development/python-modules/carbon/default.nix
··· 4 4 cachetools, 5 5 fetchPypi, 6 6 nixosTests, 7 - pytestCheckHook, 8 - pythonOlder, 9 7 setuptools, 10 8 twisted, 11 9 txamqp, ··· 18 16 version = "1.1.10"; 19 17 pyproject = true; 20 18 21 - disabled = pythonOlder "3.10"; 22 - 23 19 src = fetchPypi { 24 20 inherit pname version; 25 21 hash = "sha256-wTtbqRHMWBcM2iFN95yzwCf/BQ+EK0vp5MXT4mKX3lw="; 26 22 }; 23 + 24 + patches = [ 25 + # imp has been removed from python since version 3.12 26 + # This patch replaces it with distutils.utils 27 + ./replace-imp.patch 28 + ]; 27 29 28 30 # Carbon-s default installation is /opt/graphite. This env variable ensures 29 31 # carbon is installed as a regular Python module. ··· 51 53 inherit (nixosTests) graphite; 52 54 }; 53 55 54 - pythonImportsCheck = [ "carbon" ]; 56 + pythonImportsCheck = [ 57 + "carbon" 58 + "carbon.routers" 59 + ]; 55 60 56 - meta = with lib; { 61 + meta = { 57 62 description = "Backend data caching and persistence daemon for Graphite"; 58 63 homepage = "https://github.com/graphite-project/carbon"; 59 64 changelog = "https://github.com/graphite-project/carbon/releases/tag/${version}"; 60 - license = licenses.asl20; 61 - maintainers = with maintainers; [ 65 + license = lib.licenses.asl20; 66 + maintainers = with lib.maintainers; [ 62 67 offline 63 68 basvandijk 64 69 ];
+22
pkgs/development/python-modules/carbon/replace-imp.patch
··· 1 + diff --git a/lib/carbon/routers.py b/lib/carbon/routers.py 2 + index d1c47b7..1a70d7e 100644 3 + --- a/lib/carbon/routers.py 4 + +++ b/lib/carbon/routers.py 5 + @@ -1,4 +1,4 @@ 6 + -import imp 7 + +import importlib.util 8 + from carbon.hashing import ConsistentHashRing, carbonHash 9 + from carbon.util import PluginRegistrar 10 + from six import with_metaclass 11 + @@ -130,9 +130,8 @@ class ConsistentHashingRouter(DatapointRouter): 12 + 13 + def setKeyFunctionFromModule(self, keyfunc_spec): 14 + module_path, func_name = keyfunc_spec.rsplit(':', 1) 15 + - module_file = open(module_path, 'U') 16 + - description = ('.py', 'U', imp.PY_SOURCE) 17 + - module = imp.load_module('keyfunc_module', module_file, module_path, description) 18 + + spec = importlib.util.spec_from_file_location("keyfunc_module", module_path) 19 + + module = importlib.util.module_from_spec(spec) 20 + keyfunc = getattr(module, func_name) 21 + self.setKeyFunction(keyfunc) 22 +
+2 -2
pkgs/development/python-modules/cyclopts/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "cyclopts"; 22 - version = "3.11.0"; 22 + version = "3.11.1"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.8"; ··· 28 28 owner = "BrianPugh"; 29 29 repo = "cyclopts"; 30 30 tag = "v${version}"; 31 - hash = "sha256-NtYtF8VJOLovRCqMV/ej1QvKiLrRQGmo4GUOU1myHPo="; 31 + hash = "sha256-cTxFUAHHFkZOs+UqwI0SJj3k3zISdNvR1LHHp3ZeyO8="; 32 32 }; 33 33 34 34 build-system = [
+3 -3
pkgs/development/python-modules/deebot-client/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "deebot-client"; 23 - version = "12.3.1"; 23 + version = "12.4.0"; 24 24 pyproject = true; 25 25 26 26 disabled = pythonOlder "3.13"; ··· 29 29 owner = "DeebotUniverse"; 30 30 repo = "client.py"; 31 31 tag = version; 32 - hash = "sha256-2ZdWe9fVmQq7YGKzBut6hec3OeR9iXDkoDmYFYHX90A="; 32 + hash = "sha256-b/V0Ag4Sclebieh4qKjLzWxIk8gkWBZzwBs1ttFHMC4="; 33 33 }; 34 34 35 35 cargoDeps = rustPlatform.fetchCargoVendor { 36 36 inherit pname version src; 37 - hash = "sha256-PrHm85Tzfd3jS5ofKKpECkWhL44yKBc8Hvrh0zbl7lw="; 37 + hash = "sha256-7CXBIY0K0wq2gR5YVF/5zc+gAO+bz+eob5Qr3OVbs34="; 38 38 }; 39 39 40 40 pythonRelaxDeps = [
+10 -21
pkgs/development/python-modules/deepdiff/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - pythonOlder, 6 5 7 6 # build-system 8 7 setuptools, 9 8 10 9 # dependencies 11 - click, 12 10 orderly-set, 13 - orjson, 14 11 15 12 # optional-dependencies 16 - clevercsv, 13 + click, 14 + orjson, 15 + pyyaml, 17 16 18 17 # tests 19 18 jsonpickle, 20 19 numpy, 21 20 pytestCheckHook, 22 21 python-dateutil, 23 - pyyaml, 24 22 toml, 25 23 tomli-w, 26 24 polars, ··· 29 27 30 28 buildPythonPackage rec { 31 29 pname = "deepdiff"; 32 - version = "8.2.0"; 30 + version = "8.4.1"; 33 31 pyproject = true; 34 - 35 - disabled = pythonOlder "3.7"; 36 32 37 33 src = fetchFromGitHub { 38 34 owner = "seperman"; 39 35 repo = "deepdiff"; 40 36 tag = version; 41 - hash = "sha256-5RiYVNdKfTRNeqtbKwFdbB5Z12eAMNdaOFCNevR6H6w="; 37 + hash = "sha256-RXr+6DLzhnuow9JNqqnNmuehE89eOY4oYn4tw4VSI+A="; 42 38 }; 43 39 44 40 build-system = [ ··· 46 42 ]; 47 43 48 44 dependencies = [ 49 - click 50 45 orderly-set 51 - orjson 52 - ]; 53 - pythonRelaxDeps = [ 54 - # Upstream develops this package as well, and from some reason pins this 55 - # dependency to a patch version below this one. No significant changes 56 - # happend in that release, so we shouldn't worry, especially if tests pass. 57 - "orderly-set" 58 46 ]; 59 47 60 48 optional-dependencies = { 61 49 cli = [ 62 - clevercsv 63 50 click 64 51 pyyaml 65 - toml 52 + ]; 53 + optimize = [ 54 + orjson 66 55 ]; 67 56 }; 68 57 ··· 74 63 tomli-w 75 64 polars 76 65 pandas 77 - ] ++ optional-dependencies.cli; 66 + ] ++ lib.flatten (lib.attrValues optional-dependencies); 78 67 79 68 disabledTests = [ 80 69 # not compatible with pydantic 2.x ··· 91 80 description = "Deep Difference and Search of any Python object/data"; 92 81 mainProgram = "deep"; 93 82 homepage = "https://github.com/seperman/deepdiff"; 94 - changelog = "https://github.com/seperman/deepdiff/releases/tag/${version}"; 83 + changelog = "https://github.com/seperman/deepdiff/blob/${src.tag}/CHANGELOG.md"; 95 84 license = lib.licenses.mit; 96 85 maintainers = with lib.maintainers; [ 97 86 mic92
+3 -4
pkgs/development/python-modules/flask-limiter/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "flask-limiter"; 24 - version = "3.10.1"; 24 + version = "3.12"; 25 25 pyproject = true; 26 26 27 - disabled = pythonOlder "3.9"; 27 + disabled = pythonOlder "3.10"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "alisaifee"; 31 31 repo = "flask-limiter"; 32 32 tag = version; 33 - hash = "sha256-AfreBLyJDogXnxB5cIoT766VFiHIIoVKAoBIra6Q+xs="; 33 + hash = "sha256-3GFbLQExd4c3Cyr7UDX/zOAfedOluXMwCbBhOgoKfn0="; 34 34 }; 35 35 36 36 postPatch = '' ··· 46 46 limits 47 47 ordered-set 48 48 rich 49 - typing-extensions 50 49 ]; 51 50 52 51 optional-dependencies = {
+67 -45
pkgs/development/python-modules/graphite-web/default.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 4 + pkgs, 3 5 buildPythonPackage, 4 - python, 6 + fetchFromGitHub, 7 + 8 + # dependencies 5 9 cairocffi, 6 10 django, 7 11 django-tagging, 8 - fetchFromGitHub, 9 - fetchpatch, 10 12 gunicorn, 11 - mock, 12 13 pyparsing, 13 14 python-memcached, 14 - pythonOlder, 15 15 pytz, 16 16 six, 17 17 txamqp, 18 18 urllib3, 19 19 whisper, 20 + 21 + # tests 22 + mock, 23 + redis, 24 + rrdtool, 25 + writableTmpDirAsHomeHook, 26 + python, 27 + 28 + # passthru 20 29 nixosTests, 21 30 }: 22 31 23 - buildPythonPackage rec { 32 + buildPythonPackage { 24 33 pname = "graphite-web"; 25 - version = "1.1.10"; 26 - format = "setuptools"; 27 - 28 - disabled = pythonOlder "3.7"; 34 + version = "1.1.10-unstable-2025-02-24"; 35 + pyproject = true; 29 36 30 37 src = fetchFromGitHub { 31 38 owner = "graphite-project"; 32 - repo = pname; 33 - rev = version; 34 - hash = "sha256-2HgCBKwLfxJLKMopoIdsEW5k/j3kNAiifWDnJ98a7Qo="; 39 + repo = "graphite-web"; 40 + rev = "49c28e2015d605ad9ec93524f7076dd924a4731a"; 41 + hash = "sha256-TxsQPhnI5WhQvKKkDEYZ8xnyg/qf+N9Icej6d6A0jC0="; 35 42 }; 36 43 37 - patches = [ 38 - (fetchpatch { 39 - name = "CVE-2022-4730.CVE-2022-4729.CVE-2022-4728.part-1.patch"; 40 - url = "https://github.com/graphite-project/graphite-web/commit/9c626006eea36a9fd785e8f811359aebc9774970.patch"; 41 - hash = "sha256-JMmdhLqsaRhUG2FsH+yPNl+cR7O2YLfKFliL2GU0aAk="; 42 - }) 43 - (fetchpatch { 44 - name = "CVE-2022-4730.CVE-2022-4729.CVE-2022-4728.part-2.patch"; 45 - url = "https://github.com/graphite-project/graphite-web/commit/2f178f490e10efc03cd1d27c72f64ecab224eb23.patch"; 46 - hash = "sha256-NL7K5uekf3NlLa58aFFRPJT9ktjqBeNlWC4Htd0fRQ0="; 47 - }) 48 - ]; 44 + postPatch = 45 + '' 46 + substituteInPlace webapp/graphite/settings.py \ 47 + --replace-fail \ 48 + "join(WEBAPP_DIR, 'content')" \ 49 + "join('$out/webapp', 'content')" 50 + '' 51 + + lib.optionalString stdenv.hostPlatform.isDarwin '' 52 + substituteInPlace webapp/tests/test_dashboard.py \ 53 + --replace-fail "test_dashboard_email" "_dont_test_dashboard_email" 54 + substituteInPlace webapp/tests/test_render.py \ 55 + --replace-fail "test_render_view" "_dont_test_render_view" 56 + ''; 49 57 50 - propagatedBuildInputs = [ 58 + dependencies = [ 51 59 cairocffi 52 60 django 53 61 django-tagging ··· 61 69 whisper 62 70 ]; 63 71 64 - postPatch = '' 65 - substituteInPlace setup.py \ 66 - --replace "Django>=1.8,<3.1" "Django" \ 67 - --replace "django-tagging==0.4.3" "django-tagging" 68 - ''; 72 + pythonRelaxDeps = [ 73 + "django" 74 + "django-tagging" 75 + ]; 69 76 70 - # Carbon-s default installation is /opt/graphite. This env variable ensures 71 - # carbon is installed as a regular Python module. 72 - GRAPHITE_NO_PREFIX = "True"; 77 + env = { 78 + # Carbon-s default installation is /opt/graphite. This env variable ensures 79 + # carbon is installed as a regular Python module. 80 + GRAPHITE_NO_PREFIX = "True"; 73 81 74 - preConfigure = '' 75 - substituteInPlace webapp/graphite/settings.py \ 76 - --replace "join(WEBAPP_DIR, 'content')" "join('$out', 'webapp', 'content')" 77 - ''; 82 + REDIS_HOST = "127.0.0.1"; 83 + }; 78 84 79 - checkInputs = [ mock ]; 85 + nativeCheckInputs = [ 86 + mock 87 + redis 88 + rrdtool 89 + writableTmpDirAsHomeHook 90 + ]; 91 + 92 + preCheck = 93 + # Start a redis server 94 + '' 95 + ${pkgs.valkey}/bin/redis-server & 96 + REDIS_PID=$! 97 + ''; 98 + 80 99 checkPhase = '' 81 100 runHook preCheck 82 101 83 102 pushd webapp/ 84 103 # avoid confusion with installed module 85 104 rm -r graphite 86 - # redis not practical in test environment 87 - substituteInPlace tests/test_tags.py \ 88 - --replace test_redis_tagdb _dont_test_redis_tagdb 89 105 90 106 DJANGO_SETTINGS_MODULE=tests.settings ${python.interpreter} manage.py test 91 107 popd ··· 93 109 runHook postCheck 94 110 ''; 95 111 112 + postCheck = '' 113 + kill $REDIS_PID 114 + ''; 115 + 116 + __darwinAllowLocalNetworking = true; 117 + 96 118 pythonImportsCheck = [ "graphite" ]; 97 119 98 120 passthru.tests = { 99 121 inherit (nixosTests) graphite; 100 122 }; 101 123 102 - meta = with lib; { 124 + meta = { 103 125 description = "Enterprise scalable realtime graphing"; 104 126 homepage = "http://graphiteapp.org/"; 105 - license = licenses.asl20; 106 - maintainers = with maintainers; [ 127 + license = lib.licenses.asl20; 128 + maintainers = with lib.maintainers; [ 107 129 offline 108 130 basvandijk 109 131 ];
+2 -2
pkgs/development/python-modules/i-pi/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "i-pi"; 20 - version = "3.1.1"; 20 + version = "3.1.2"; 21 21 pyproject = true; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "i-pi"; 25 25 repo = "i-pi"; 26 26 tag = "v${version}"; 27 - hash = "sha256-Z9xTuRm4go/FGrM7norRHVHgjcOqssNgFQ8R/Mh1yXo="; 27 + hash = "sha256-OZuPJgcLyxZ+z3U3vraTq4MwgyMkBOHVJxB/y3qd7qw="; 28 28 }; 29 29 30 30 build-system = [
+3 -3
pkgs/development/python-modules/jedi-language-server/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "jedi-language-server"; 26 - version = "0.43.1"; 26 + version = "0.44.0"; 27 27 pyproject = true; 28 28 29 29 disabled = pythonOlder "3.9"; ··· 32 32 owner = "pappasam"; 33 33 repo = "jedi-language-server"; 34 34 tag = "v${version}"; 35 - hash = "sha256-w0qasGuBvY6KVhLB17wux7Sm94Xuk1z2La/DPSLEp/4="; 35 + hash = "sha256-b3wty4ir/JHh3018Kk0zyX7mM2yrE5n0f2YoidnSIw8="; 36 36 }; 37 37 38 38 build-system = [ ··· 69 69 description = "Language Server for the latest version(s) of Jedi"; 70 70 mainProgram = "jedi-language-server"; 71 71 homepage = "https://github.com/pappasam/jedi-language-server"; 72 - changelog = "https://github.com/pappasam/jedi-language-server/blob/v${version}/CHANGELOG.md"; 72 + changelog = "https://github.com/pappasam/jedi-language-server/blob/${src.tag}/CHANGELOG.md"; 73 73 license = lib.licenses.mit; 74 74 maintainers = with lib.maintainers; [ doronbehar ]; 75 75 };
+25 -21
pkgs/development/python-modules/lightgbm/default.nix
··· 2 2 lib, 3 3 config, 4 4 stdenv, 5 + pkgs, 5 6 buildPythonPackage, 6 7 fetchPypi, 7 8 8 9 # build-system 10 + scikit-build-core, 11 + 12 + # nativeBuildInputs 9 13 cmake, 10 14 ninja, 11 15 pathspec, 12 16 pyproject-metadata, 13 - scikit-build-core, 17 + writableTmpDirAsHomeHook, 18 + 19 + # buildInputs 20 + llvmPackages, 21 + boost, 22 + ocl-icd, 23 + opencl-headers, 14 24 15 25 # dependencies 16 - llvmPackages, 17 26 numpy, 18 27 scipy, 19 - pythonOlder, 20 28 21 - # optionals 29 + # optional-dependencies 22 30 cffi, 23 31 dask, 24 32 pandas, ··· 26 34 scikit-learn, 27 35 28 36 # optionals: gpu 29 - boost, 30 - ocl-icd, 31 - opencl-headers, 32 37 gpuSupport ? stdenv.hostPlatform.isLinux && !cudaSupport, 33 38 cudaSupport ? config.cudaSupport, 34 39 cudaPackages, ··· 38 43 assert cudaSupport -> !gpuSupport; 39 44 40 45 buildPythonPackage rec { 41 - pname = "lightgbm"; 42 - version = "4.5.0"; 46 + inherit (pkgs.lightgbm) 47 + pname 48 + version 49 + patches 50 + ; 43 51 pyproject = true; 44 52 45 - disabled = pythonOlder "3.7"; 46 - 47 53 src = fetchPypi { 48 54 inherit pname version; 49 - hash = "sha256-4c17rwMY1OMIomV1pjpGNfCN+GatNiKp2OPXHZY3obo="; 55 + hash = "sha256-yxxZcg61aTicC6dNFPUjUbVzr0ifIwAyocnzFPi6t/4="; 50 56 }; 51 57 58 + build-system = [ 59 + scikit-build-core 60 + ]; 61 + 52 62 nativeBuildInputs = [ 53 63 cmake 54 64 ninja 55 65 pathspec 56 66 pyproject-metadata 57 - scikit-build-core 67 + writableTmpDirAsHomeHook 58 68 ] ++ lib.optionals cudaSupport [ cudaPackages.cuda_nvcc ]; 59 69 60 70 dontUseCmakeConfigure = true; ··· 71 81 cudaPackages.cuda_cudart 72 82 ]; 73 83 74 - propagatedBuildInputs = [ 84 + dependencies = [ 75 85 numpy 76 86 scipy 77 87 ]; ··· 80 90 lib.optionals gpuSupport [ "--config-setting=cmake.define.USE_GPU=ON" ] 81 91 ++ lib.optionals cudaSupport [ "--config-setting=cmake.define.USE_CUDA=ON" ]; 82 92 83 - postConfigure = '' 84 - export HOME=$(mktemp -d) 85 - ''; 86 - 87 93 optional-dependencies = { 88 94 arrow = [ 89 95 cffi ··· 101 107 scikit-learn = [ scikit-learn ]; 102 108 }; 103 109 104 - # The pypi package doesn't distribute the tests from the GitHub 105 - # repository. It contains c++ tests which don't seem to wired up to 106 - # `make check`. 110 + # No python tests 107 111 doCheck = false; 108 112 109 113 pythonImportsCheck = [ "lightgbm" ];
+3 -3
pkgs/development/python-modules/manim-slides/default.nix
··· 34 34 }: 35 35 buildPythonPackage rec { 36 36 pname = "manim-slides"; 37 - version = "5.4.2"; 37 + version = "5.5.0"; 38 38 pyproject = true; 39 39 40 40 disabled = pythonOlder "3.9"; ··· 43 43 owner = "jeertmans"; 44 44 repo = "manim-slides"; 45 45 tag = "v${version}"; 46 - hash = "sha256-LUnHv6Yr4le7B0OjA9m8s7tCd2OvUsjX0YR+5dv+Bjg="; 46 + hash = "sha256-TP+F4q/rnibU6kvAdfwDD++ITVTYAFgGoDng0p0SUIs="; 47 47 }; 48 48 49 49 build-system = [ ··· 88 88 pythonImportsCheck = [ "manim_slides" ]; 89 89 90 90 meta = { 91 - changelog = "https://github.com/jeertmans/manim-slides/blob/${src.rev}/CHANGELOG.md"; 91 + changelog = "https://github.com/jeertmans/manim-slides/blob/${src.tag}/CHANGELOG.md"; 92 92 description = "Tool for live presentations using manim"; 93 93 homepage = "https://github.com/jeertmans/manim-slides"; 94 94 license = lib.licenses.mit;
+3 -12
pkgs/development/python-modules/orderly-set/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - fetchpatch, 6 5 7 6 # build-system 8 7 setuptools, ··· 13 12 14 13 buildPythonPackage rec { 15 14 pname = "orderly-set"; 16 - version = "5.2.2"; 15 + version = "5.3.0"; 17 16 pyproject = true; 18 17 19 18 src = fetchFromGitHub { 20 19 owner = "seperman"; 21 20 repo = "orderly-set"; 22 21 tag = version; 23 - hash = "sha256-ZDo5fSHD0lCn9CRQtWK10QeZoOhuXG3LR3KA/to9gpE="; 22 + hash = "sha256-8tqQR8Oa/1jcfokBVKdvsC7Ya26bn0XHM9/QsstM07E="; 24 23 }; 25 - patches = [ 26 - # https://github.com/seperman/orderly-set/pull/5 27 - (fetchpatch { 28 - name = "do-not-import-mypy.patch"; 29 - url = "https://github.com/seperman/orderly-set/commit/34362084868a081b8ebaaf1f13c93a7a798ef557.patch"; 30 - hash = "sha256-eKbnA31ykm5fH0om6cfOaMpy+ZNNWRDkHieaUIHF8OM="; 31 - }) 32 - ]; 33 24 34 25 build-system = [ 35 26 setuptools ··· 47 38 ]; 48 39 49 40 meta = { 50 - description = "Orderly Set previously known as Ordered Set"; 41 + description = "Multiple implementations of Ordered Set"; 51 42 homepage = "https://github.com/seperman/orderly-set"; 52 43 changelog = "https://github.com/seperman/orderly-set/blob/${src.rev}/CHANGELOG.md"; 53 44 license = lib.licenses.mit;
+3 -3
pkgs/development/python-modules/pywikibot/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pywikibot"; 13 - version = "9.6.3"; 13 + version = "10.0.0"; 14 14 format = "setuptools"; 15 15 16 - disabled = pythonOlder "3.7"; 16 + disabled = pythonOlder "3.8"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-tSEo6o9/YZRt0ZWt7N0WmM6wOK6lQc7wLYyPt4L7hhg="; 20 + hash = "sha256-tpwjokLZZUPiKDCD4hPfjBdg11p29LZv44a3hiTeIuE="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+99
pkgs/development/python-modules/rembg/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + setuptools, 6 + wheel, 7 + versionCheckHook, 8 + withCli ? false, 9 + 10 + # dependencies 11 + jsonschema, 12 + numpy, 13 + onnxruntime, 14 + opencv-python-headless, 15 + pillow, 16 + pooch, 17 + pymatting, 18 + scikit-image, 19 + scipy, 20 + tqdm, 21 + 22 + # optional-dependencies 23 + aiohttp, 24 + asyncer, 25 + click, 26 + fastapi, 27 + filetype, 28 + gradio, 29 + python-multipart, 30 + uvicorn, 31 + watchdog, 32 + }: 33 + 34 + buildPythonPackage rec { 35 + pname = "rembg"; 36 + version = "2.0.65"; 37 + pyproject = true; 38 + 39 + src = fetchFromGitHub { 40 + owner = "danielgatis"; 41 + repo = "rembg"; 42 + tag = "v${version}"; 43 + hash = "sha256-o6M3DSW1GL3xvEx4lsE325J3XcmRrhhPszS5MkaynsE="; 44 + }; 45 + 46 + build-system = [ 47 + setuptools 48 + wheel 49 + ]; 50 + 51 + dependencies = [ 52 + jsonschema 53 + numpy 54 + opencv-python-headless 55 + onnxruntime 56 + pillow 57 + pooch 58 + pymatting 59 + scikit-image 60 + scipy 61 + tqdm 62 + ] ++ lib.optionals withCli optional-dependencies.cli; 63 + 64 + optional-dependencies = { 65 + cli = [ 66 + aiohttp 67 + asyncer 68 + click 69 + fastapi 70 + filetype 71 + gradio 72 + python-multipart 73 + uvicorn 74 + watchdog 75 + ]; 76 + }; 77 + 78 + preConfigure = '' 79 + export NUMBA_CACHE_DIR="$(mktemp -d)" 80 + ''; 81 + 82 + postInstall = lib.optionalString (!withCli) "rm -r $out/bin"; 83 + 84 + # not running python tests, as they require network access 85 + nativeCheckInputs = lib.optionals withCli [ versionCheckHook ]; 86 + versionCheckProgramArg = "--version"; 87 + 88 + pythonImportsCheck = [ "rembg" ]; 89 + 90 + meta = { 91 + description = "Tool to remove background from images"; 92 + homepage = "https://github.com/danielgatis/rembg"; 93 + changelog = "https://github.com/danielgatis/rembg/releases/tag/v${version}"; 94 + license = lib.licenses.mit; 95 + maintainers = with lib.maintainers; [ defelo ]; 96 + mainProgram = "rembg"; 97 + platforms = [ "x86_64-linux" ]; 98 + }; 99 + }
+49
pkgs/development/python-modules/rrdtool/default.nix
··· 1 + { 2 + lib, 3 + pkgs, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + setuptools, 7 + pytestCheckHook, 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "rrdtool"; 12 + version = "0.1.16"; 13 + pyproject = true; 14 + 15 + src = fetchFromGitHub { 16 + owner = "commx"; 17 + repo = "python-rrdtool"; 18 + tag = "v${version}"; 19 + hash = "sha256-xBMyY2/lY16H7D0JX5BhgHV5afDKKDObPJnynZ4iZdI="; 20 + }; 21 + 22 + build-system = [ 23 + setuptools 24 + ]; 25 + 26 + buildInputs = [ 27 + pkgs.rrdtool 28 + ]; 29 + 30 + env.NIX_CFLAGS_COMPILE = toString [ 31 + "-Wno-error=implicit-function-declaration" 32 + "-Wno-error=incompatible-pointer-types" 33 + ]; 34 + 35 + pythonImportsCheck = [ "rrdtool" ]; 36 + 37 + nativeCheckInputs = [ 38 + pytestCheckHook 39 + ]; 40 + 41 + __darwinAllowLocalNetworking = true; 42 + 43 + meta = { 44 + description = "Python bindings for rrdtool"; 45 + homepage = "https://github.com/commx/python-rrdtool"; 46 + license = lib.licenses.lgpl21Only; 47 + maintainers = with lib.maintainers; [ GaetanLepage ]; 48 + }; 49 + }
+6 -7
pkgs/development/python-modules/symengine/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "symengine"; 16 - version = "0.13.0"; 16 + version = "0.14.0"; 17 17 18 18 build-system = [ setuptools ]; 19 19 pyproject = true; ··· 22 22 owner = "symengine"; 23 23 repo = "symengine.py"; 24 24 tag = "v${version}"; 25 - hash = "sha256-PJUzA86SGCnDpqU9j/dr3PlM9inyi8SQX0HGqPQ9wQw="; 25 + hash = "sha256-jzEQLfiV/TLLUm9DKPCRKjpxfj3kYtobOcGifsdwaxY="; 26 26 }; 27 27 28 28 env = { ··· 32 32 postPatch = '' 33 33 substituteInPlace setup.py \ 34 34 --replace-fail "'cython>=0.29.24'" "'cython'" 35 - 36 - export PATH=${cython}/bin:$PATH 37 35 ''; 38 36 39 37 dontUseCmakeConfigure = true; 40 - nativeBuildInputs = [ cmake ]; 41 - 42 - buildInputs = [ cython ]; 38 + nativeBuildInputs = [ 39 + cmake 40 + cython 41 + ]; 43 42 44 43 nativeCheckInputs = [ 45 44 pytest
+13 -7
pkgs/development/python-modules/whisper/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 + setuptools, 6 + six, 5 7 mock, 6 - six, 7 8 pytestCheckHook, 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "whisper"; 12 13 version = "1.1.10"; 13 - format = "setuptools"; 14 + pyproject = true; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "graphite-project"; 17 - repo = pname; 18 + repo = "whisper"; 18 19 tag = version; 19 20 hash = "sha256-CnCbRmI2jc67mTtfupoE1uHtobrAiWoUXbfX8YeEV6A="; 20 21 }; 21 22 22 - propagatedBuildInputs = [ six ]; 23 + build-system = [ setuptools ]; 24 + 25 + dependencies = [ six ]; 23 26 24 27 nativeCheckInputs = [ 25 28 mock ··· 33 36 34 37 pythonImportsCheck = [ "whisper" ]; 35 38 36 - meta = with lib; { 39 + meta = { 37 40 homepage = "https://github.com/graphite-project/whisper"; 38 41 description = "Fixed size round-robin style database"; 39 - maintainers = with maintainers; [ 42 + changelog = "https://graphite.readthedocs.io/en/latest/releases/${ 43 + builtins.replaceStrings [ "." ] [ "_" ] version 44 + }.html"; 45 + maintainers = with lib.maintainers; [ 40 46 offline 41 47 basvandijk 42 48 ]; 43 - license = licenses.asl20; 49 + license = lib.licenses.asl20; 44 50 }; 45 51 }
+2 -2
pkgs/development/tools/build-managers/sbt/default.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "sbt"; 13 - version = "1.10.10"; 13 + version = "1.10.11"; 14 14 15 15 src = fetchurl { 16 16 url = "https://github.com/sbt/sbt/releases/download/v${finalAttrs.version}/sbt-${finalAttrs.version}.tgz"; 17 - hash = "sha256-kd5PGnWpf+X9/20uXlbuWTN8d2pHYIsN/2BEUf0sUvo="; 17 + hash = "sha256-UDSmSEG4qc+1KjQeRbAd8rjC/6qH2NKw/jPEzcq9jww="; 18 18 }; 19 19 20 20 postPatch = ''
+4 -4
pkgs/os-specific/linux/kernel/xanmod-kernels.nix
··· 14 14 # kernel config in the xanmod version commit 15 15 variants = { 16 16 lts = { 17 - version = "6.12.19"; 18 - hash = "sha256-8JPriW+OyjgCLcrMqzmN3gx4gfOu+RmHNpU512wXk0o="; 17 + version = "6.12.20"; 18 + hash = "sha256-Fvm17GIaGnNfWShh9fX4XK2ovAS6XMx7cHb1u9bET8E="; 19 19 }; 20 20 main = { 21 - version = "6.13.7"; 22 - hash = "sha256-gcoDH11U8lz8h1wXsdDiWF3NbTyRiEuf3+YV6Mlkov0="; 21 + version = "6.13.8"; 22 + hash = "sha256-2Q3Yl/dKmkRRU4PruFA5bZrHAiySApvaqpxlZ/qECg0="; 23 23 }; 24 24 }; 25 25
+3 -3
pkgs/servers/mautrix-signal/default.nix pkgs/by-name/ma/mautrix-signal/package.nix
··· 19 19 in 20 20 buildGoModule rec { 21 21 pname = "mautrix-signal"; 22 - version = "0.8.0"; 22 + version = "0.8.1"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "mautrix"; 26 26 repo = "signal"; 27 27 tag = "v${version}"; 28 - hash = "sha256-/x71et9lqx8VTOz6G4R5Rz54vjZT7CzXy72m9Mc6pUI="; 28 + hash = "sha256-w27e+gOnKsjYVSDAk8Wp7fx32igSg3sKqYyM6yUX088="; 29 29 }; 30 30 31 31 buildInputs = ··· 41 41 42 42 CGO_LDFLAGS = lib.optional withGoolm [ cppStdLib ]; 43 43 44 - vendorHash = "sha256-nulCcnnQD3cgk4ntWeUwY/+izTxhJCLV0XJRx1h8emY="; 44 + vendorHash = "sha256-UXloMc9XaJe096zwdHup2DiIoXqimNjSgQRuVXbV080="; 45 45 46 46 doCheck = true; 47 47 preCheck =
+4 -4
pkgs/tools/admin/meshcentral/default.nix
··· 8 8 }: 9 9 10 10 yarn2nix-moretea.mkYarnPackage { 11 - version = "1.1.42"; 11 + version = "1.1.43"; 12 12 13 13 src = fetchzip { 14 - url = "https://registry.npmjs.org/meshcentral/-/meshcentral-1.1.42.tgz"; 15 - sha256 = "0mz03jljw37815fvdpc679b5jpzdpmzfrljclzhzw086sdrzypc3"; 14 + url = "https://registry.npmjs.org/meshcentral/-/meshcentral-1.1.43.tgz"; 15 + sha256 = "0y6bqg03l0p0mkmmk6vh82gxjzsx1mkvjzwpyayrryn3hjaaih4k"; 16 16 }; 17 17 18 18 patches = [ ··· 24 24 25 25 offlineCache = fetchYarnDeps { 26 26 yarnLock = ./yarn.lock; 27 - hash = "sha256-Q4rG6lfSZZQO7GnXRvnof/Pfmqkh4cZ34yhNgoFwAZY="; 27 + hash = "sha256-dkR48KS5Ykh/3RyTuzOQ9dUXLBhhIT0KYGIXTn+CUKA="; 28 28 }; 29 29 30 30 # Tarball has CRLF line endings. This makes patching difficult, so let's convert them.
+8 -6
pkgs/tools/admin/meshcentral/package.json
··· 1 1 { 2 2 "name": "meshcentral", 3 - "version": "1.1.42", 3 + "version": "1.1.43", 4 4 "keywords": [ 5 5 "Remote Device Management", 6 6 "Remote Device Monitoring", ··· 50 50 "minimist": "1.2.8", 51 51 "multiparty": "4.2.3", 52 52 "node-forge": "1.3.1", 53 - "ua-parser-js": "1.0.39", 53 + "ua-parser-js": "1.0.40", 54 + "ua-client-hints-js": "0.1.2", 54 55 "ws": "8.18.0", 55 56 "yauzl": "2.10.0" 56 57 }, ··· 86 87 "multiparty": "4.2.3", 87 88 "@seald-io/nedb": "*", 88 89 "node-forge": "1.3.1", 89 - "ua-parser-js": "1.0.39", 90 + "ua-parser-js": "1.0.40", 91 + "ua-client-hints-js": "0.1.2", 90 92 "ws": "8.18.0", 91 93 "yauzl": "2.10.0", 92 94 "node-windows": "0.1.14", ··· 102 104 "@mysql/xdevapi": "8.0.33", 103 105 "mongodb": "4.13.0", 104 106 "saslprep": "1.0.3", 105 - "pg": "8.13.1", 107 + "pg": "8.14.1", 106 108 "mariadb": "3.4.0", 107 109 "acebase": "1.29.5", 108 110 "sqlite3": "5.1.7", 109 111 "node-vault": "0.10.2", 110 - "semver": "7.5.4", 112 + "semver": "7.7.1", 111 113 "https-proxy-agent": "7.0.2", 112 114 "mongojs": "3.1.0", 113 115 "nodemailer": "6.9.16", ··· 123 125 "minio": "8.0.2", 124 126 "wildleek": "2.0.0", 125 127 "yubikeyotp": "0.2.0", 126 - "otplib": "10.2.3", 128 + "otplib": "12.0.1", 127 129 "twilio": "4.19.0", 128 130 "plivo": "4.58.0", 129 131 "telnyx": "1.25.5",
+656 -617
pkgs/tools/admin/meshcentral/yarn.lock
··· 48 48 "@smithy/util-utf8" "^2.0.0" 49 49 tslib "^2.6.2" 50 50 51 - "@aws-sdk/client-cognito-identity@3.758.0": 52 - version "3.758.0" 53 - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.758.0.tgz#d7094cdb9cb2d9d2de50da4528d53d604205118e" 54 - integrity sha512-8bOXVYtf/0OUN0jXTIHLv3V0TAS6kvvCRAy7nmiL/fDde0O+ChW1WZU7CVPAOtFEpFCdKskDcxFspM7m1k6qyg== 51 + "@aws-sdk/client-cognito-identity@3.775.0": 52 + version "3.775.0" 53 + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.775.0.tgz#2be72dd874f22fc9cb8a5ce9a1aefff4a658241e" 54 + integrity sha512-AMGywI8C+kcSTWjftq9jgzkospF1A/QNd/h6zN+3uuS+3rZhkPIoPCpaQ0NSTYD49FTq8ALZzNKTqTEOnp+txA== 55 55 dependencies: 56 56 "@aws-crypto/sha256-browser" "5.2.0" 57 57 "@aws-crypto/sha256-js" "5.2.0" 58 - "@aws-sdk/core" "3.758.0" 59 - "@aws-sdk/credential-provider-node" "3.758.0" 60 - "@aws-sdk/middleware-host-header" "3.734.0" 61 - "@aws-sdk/middleware-logger" "3.734.0" 62 - "@aws-sdk/middleware-recursion-detection" "3.734.0" 63 - "@aws-sdk/middleware-user-agent" "3.758.0" 64 - "@aws-sdk/region-config-resolver" "3.734.0" 65 - "@aws-sdk/types" "3.734.0" 66 - "@aws-sdk/util-endpoints" "3.743.0" 67 - "@aws-sdk/util-user-agent-browser" "3.734.0" 68 - "@aws-sdk/util-user-agent-node" "3.758.0" 69 - "@smithy/config-resolver" "^4.0.1" 70 - "@smithy/core" "^3.1.5" 71 - "@smithy/fetch-http-handler" "^5.0.1" 72 - "@smithy/hash-node" "^4.0.1" 73 - "@smithy/invalid-dependency" "^4.0.1" 74 - "@smithy/middleware-content-length" "^4.0.1" 75 - "@smithy/middleware-endpoint" "^4.0.6" 76 - "@smithy/middleware-retry" "^4.0.7" 77 - "@smithy/middleware-serde" "^4.0.2" 78 - "@smithy/middleware-stack" "^4.0.1" 79 - "@smithy/node-config-provider" "^4.0.1" 80 - "@smithy/node-http-handler" "^4.0.3" 81 - "@smithy/protocol-http" "^5.0.1" 82 - "@smithy/smithy-client" "^4.1.6" 83 - "@smithy/types" "^4.1.0" 84 - "@smithy/url-parser" "^4.0.1" 58 + "@aws-sdk/core" "3.775.0" 59 + "@aws-sdk/credential-provider-node" "3.775.0" 60 + "@aws-sdk/middleware-host-header" "3.775.0" 61 + "@aws-sdk/middleware-logger" "3.775.0" 62 + "@aws-sdk/middleware-recursion-detection" "3.775.0" 63 + "@aws-sdk/middleware-user-agent" "3.775.0" 64 + "@aws-sdk/region-config-resolver" "3.775.0" 65 + "@aws-sdk/types" "3.775.0" 66 + "@aws-sdk/util-endpoints" "3.775.0" 67 + "@aws-sdk/util-user-agent-browser" "3.775.0" 68 + "@aws-sdk/util-user-agent-node" "3.775.0" 69 + "@smithy/config-resolver" "^4.1.0" 70 + "@smithy/core" "^3.2.0" 71 + "@smithy/fetch-http-handler" "^5.0.2" 72 + "@smithy/hash-node" "^4.0.2" 73 + "@smithy/invalid-dependency" "^4.0.2" 74 + "@smithy/middleware-content-length" "^4.0.2" 75 + "@smithy/middleware-endpoint" "^4.1.0" 76 + "@smithy/middleware-retry" "^4.1.0" 77 + "@smithy/middleware-serde" "^4.0.3" 78 + "@smithy/middleware-stack" "^4.0.2" 79 + "@smithy/node-config-provider" "^4.0.2" 80 + "@smithy/node-http-handler" "^4.0.4" 81 + "@smithy/protocol-http" "^5.1.0" 82 + "@smithy/smithy-client" "^4.2.0" 83 + "@smithy/types" "^4.2.0" 84 + "@smithy/url-parser" "^4.0.2" 85 85 "@smithy/util-base64" "^4.0.0" 86 86 "@smithy/util-body-length-browser" "^4.0.0" 87 87 "@smithy/util-body-length-node" "^4.0.0" 88 - "@smithy/util-defaults-mode-browser" "^4.0.7" 89 - "@smithy/util-defaults-mode-node" "^4.0.7" 90 - "@smithy/util-endpoints" "^3.0.1" 91 - "@smithy/util-middleware" "^4.0.1" 92 - "@smithy/util-retry" "^4.0.1" 88 + "@smithy/util-defaults-mode-browser" "^4.0.8" 89 + "@smithy/util-defaults-mode-node" "^4.0.8" 90 + "@smithy/util-endpoints" "^3.0.2" 91 + "@smithy/util-middleware" "^4.0.2" 92 + "@smithy/util-retry" "^4.0.2" 93 93 "@smithy/util-utf8" "^4.0.0" 94 94 tslib "^2.6.2" 95 95 96 - "@aws-sdk/client-sso@3.758.0": 97 - version "3.758.0" 98 - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.758.0.tgz#59a249abdfa52125fbe98b1d59c11e4f08ca6527" 99 - integrity sha512-BoGO6IIWrLyLxQG6txJw6RT2urmbtlwfggapNCrNPyYjlXpzTSJhBYjndg7TpDATFd0SXL0zm8y/tXsUXNkdYQ== 96 + "@aws-sdk/client-sso@3.775.0": 97 + version "3.775.0" 98 + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.775.0.tgz#3b2af9433f4f9925d0031bf213525dc11a8263c7" 99 + integrity sha512-vqG1S2ap77WP4D5qt4bEPE0duQ4myN+cDr1NeP8QpSTajetbkDGVo7h1VViYMcUoFUVWBj6Qf1X1VfOq+uaxbA== 100 100 dependencies: 101 101 "@aws-crypto/sha256-browser" "5.2.0" 102 102 "@aws-crypto/sha256-js" "5.2.0" 103 - "@aws-sdk/core" "3.758.0" 104 - "@aws-sdk/middleware-host-header" "3.734.0" 105 - "@aws-sdk/middleware-logger" "3.734.0" 106 - "@aws-sdk/middleware-recursion-detection" "3.734.0" 107 - "@aws-sdk/middleware-user-agent" "3.758.0" 108 - "@aws-sdk/region-config-resolver" "3.734.0" 109 - "@aws-sdk/types" "3.734.0" 110 - "@aws-sdk/util-endpoints" "3.743.0" 111 - "@aws-sdk/util-user-agent-browser" "3.734.0" 112 - "@aws-sdk/util-user-agent-node" "3.758.0" 113 - "@smithy/config-resolver" "^4.0.1" 114 - "@smithy/core" "^3.1.5" 115 - "@smithy/fetch-http-handler" "^5.0.1" 116 - "@smithy/hash-node" "^4.0.1" 117 - "@smithy/invalid-dependency" "^4.0.1" 118 - "@smithy/middleware-content-length" "^4.0.1" 119 - "@smithy/middleware-endpoint" "^4.0.6" 120 - "@smithy/middleware-retry" "^4.0.7" 121 - "@smithy/middleware-serde" "^4.0.2" 122 - "@smithy/middleware-stack" "^4.0.1" 123 - "@smithy/node-config-provider" "^4.0.1" 124 - "@smithy/node-http-handler" "^4.0.3" 125 - "@smithy/protocol-http" "^5.0.1" 126 - "@smithy/smithy-client" "^4.1.6" 127 - "@smithy/types" "^4.1.0" 128 - "@smithy/url-parser" "^4.0.1" 103 + "@aws-sdk/core" "3.775.0" 104 + "@aws-sdk/middleware-host-header" "3.775.0" 105 + "@aws-sdk/middleware-logger" "3.775.0" 106 + "@aws-sdk/middleware-recursion-detection" "3.775.0" 107 + "@aws-sdk/middleware-user-agent" "3.775.0" 108 + "@aws-sdk/region-config-resolver" "3.775.0" 109 + "@aws-sdk/types" "3.775.0" 110 + "@aws-sdk/util-endpoints" "3.775.0" 111 + "@aws-sdk/util-user-agent-browser" "3.775.0" 112 + "@aws-sdk/util-user-agent-node" "3.775.0" 113 + "@smithy/config-resolver" "^4.1.0" 114 + "@smithy/core" "^3.2.0" 115 + "@smithy/fetch-http-handler" "^5.0.2" 116 + "@smithy/hash-node" "^4.0.2" 117 + "@smithy/invalid-dependency" "^4.0.2" 118 + "@smithy/middleware-content-length" "^4.0.2" 119 + "@smithy/middleware-endpoint" "^4.1.0" 120 + "@smithy/middleware-retry" "^4.1.0" 121 + "@smithy/middleware-serde" "^4.0.3" 122 + "@smithy/middleware-stack" "^4.0.2" 123 + "@smithy/node-config-provider" "^4.0.2" 124 + "@smithy/node-http-handler" "^4.0.4" 125 + "@smithy/protocol-http" "^5.1.0" 126 + "@smithy/smithy-client" "^4.2.0" 127 + "@smithy/types" "^4.2.0" 128 + "@smithy/url-parser" "^4.0.2" 129 129 "@smithy/util-base64" "^4.0.0" 130 130 "@smithy/util-body-length-browser" "^4.0.0" 131 131 "@smithy/util-body-length-node" "^4.0.0" 132 - "@smithy/util-defaults-mode-browser" "^4.0.7" 133 - "@smithy/util-defaults-mode-node" "^4.0.7" 134 - "@smithy/util-endpoints" "^3.0.1" 135 - "@smithy/util-middleware" "^4.0.1" 136 - "@smithy/util-retry" "^4.0.1" 132 + "@smithy/util-defaults-mode-browser" "^4.0.8" 133 + "@smithy/util-defaults-mode-node" "^4.0.8" 134 + "@smithy/util-endpoints" "^3.0.2" 135 + "@smithy/util-middleware" "^4.0.2" 136 + "@smithy/util-retry" "^4.0.2" 137 137 "@smithy/util-utf8" "^4.0.0" 138 138 tslib "^2.6.2" 139 139 140 - "@aws-sdk/core@3.758.0": 141 - version "3.758.0" 142 - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.758.0.tgz#d13a4bb95de0460d5269cd5a40503c85b344b0b4" 143 - integrity sha512-0RswbdR9jt/XKemaLNuxi2gGr4xGlHyGxkTdhSQzCyUe9A9OPCoLl3rIESRguQEech+oJnbHk/wuiwHqTuP9sg== 140 + "@aws-sdk/core@3.775.0": 141 + version "3.775.0" 142 + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.775.0.tgz#5d22ba78f07c07b48fb4d5b18172b9a896c0cbd0" 143 + integrity sha512-8vpW4WihVfz0DX+7WnnLGm3GuQER++b0IwQG35JlQMlgqnc44M//KbJPsIHA0aJUJVwJAEShgfr5dUbY8WUzaA== 144 144 dependencies: 145 - "@aws-sdk/types" "3.734.0" 146 - "@smithy/core" "^3.1.5" 147 - "@smithy/node-config-provider" "^4.0.1" 148 - "@smithy/property-provider" "^4.0.1" 149 - "@smithy/protocol-http" "^5.0.1" 150 - "@smithy/signature-v4" "^5.0.1" 151 - "@smithy/smithy-client" "^4.1.6" 152 - "@smithy/types" "^4.1.0" 153 - "@smithy/util-middleware" "^4.0.1" 145 + "@aws-sdk/types" "3.775.0" 146 + "@smithy/core" "^3.2.0" 147 + "@smithy/node-config-provider" "^4.0.2" 148 + "@smithy/property-provider" "^4.0.2" 149 + "@smithy/protocol-http" "^5.1.0" 150 + "@smithy/signature-v4" "^5.0.2" 151 + "@smithy/smithy-client" "^4.2.0" 152 + "@smithy/types" "^4.2.0" 153 + "@smithy/util-middleware" "^4.0.2" 154 154 fast-xml-parser "4.4.1" 155 155 tslib "^2.6.2" 156 156 157 - "@aws-sdk/credential-provider-cognito-identity@3.758.0": 158 - version "3.758.0" 159 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.758.0.tgz#40b2a6a785cb8110c0f76a26f7379735b8db0801" 160 - integrity sha512-y/rHZqyChlEkNRr59gn4hv0gjhJwGmdCdW0JI1K9p3P9p7EurWGjr2M6+goTn3ilOlcAwrl5oFKR5jLt27TkOA== 157 + "@aws-sdk/credential-provider-cognito-identity@3.775.0": 158 + version "3.775.0" 159 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.775.0.tgz#d77403cf50aba0690c848903dd442368a401f479" 160 + integrity sha512-fcyZzoCFp2u4NWXW8INA81kEEsWC7ZFzy5m/6t2RF1Gjt+1n2AlFQVqF73LeyEcaN+biNKq87kh94Btk0QdfHA== 161 161 dependencies: 162 - "@aws-sdk/client-cognito-identity" "3.758.0" 163 - "@aws-sdk/types" "3.734.0" 164 - "@smithy/property-provider" "^4.0.1" 165 - "@smithy/types" "^4.1.0" 162 + "@aws-sdk/client-cognito-identity" "3.775.0" 163 + "@aws-sdk/types" "3.775.0" 164 + "@smithy/property-provider" "^4.0.2" 165 + "@smithy/types" "^4.2.0" 166 166 tslib "^2.6.2" 167 167 168 - "@aws-sdk/credential-provider-env@3.758.0": 169 - version "3.758.0" 170 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.758.0.tgz#6193d1607eedd0929640ff64013f7787f29ff6a1" 171 - integrity sha512-N27eFoRrO6MeUNumtNHDW9WOiwfd59LPXPqDrIa3kWL/s+fOKFHb9xIcF++bAwtcZnAxKkgpDCUP+INNZskE+w== 168 + "@aws-sdk/credential-provider-env@3.775.0": 169 + version "3.775.0" 170 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.775.0.tgz#b8c81818f4c62d89b5f04dc410ab9b48e954f22c" 171 + integrity sha512-6ESVxwCbGm7WZ17kY1fjmxQud43vzJFoLd4bmlR+idQSWdqlzGDYdcfzpjDKTcivdtNrVYmFvcH1JBUwCRAZhw== 172 172 dependencies: 173 - "@aws-sdk/core" "3.758.0" 174 - "@aws-sdk/types" "3.734.0" 175 - "@smithy/property-provider" "^4.0.1" 176 - "@smithy/types" "^4.1.0" 173 + "@aws-sdk/core" "3.775.0" 174 + "@aws-sdk/types" "3.775.0" 175 + "@smithy/property-provider" "^4.0.2" 176 + "@smithy/types" "^4.2.0" 177 177 tslib "^2.6.2" 178 178 179 - "@aws-sdk/credential-provider-http@3.758.0": 180 - version "3.758.0" 181 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.758.0.tgz#f7b28d642f2ac933e81a7add08ce582b398c1635" 182 - integrity sha512-Xt9/U8qUCiw1hihztWkNeIR+arg6P+yda10OuCHX6kFVx3auTlU7+hCqs3UxqniGU4dguHuftf3mRpi5/GJ33Q== 179 + "@aws-sdk/credential-provider-http@3.775.0": 180 + version "3.775.0" 181 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.775.0.tgz#0fbc7f4e6cada37fc9b647de0d7c12a42a44bcc6" 182 + integrity sha512-PjDQeDH/J1S0yWV32wCj2k5liRo0ssXMseCBEkCsD3SqsU8o5cU82b0hMX4sAib/RkglCSZqGO0xMiN0/7ndww== 183 183 dependencies: 184 - "@aws-sdk/core" "3.758.0" 185 - "@aws-sdk/types" "3.734.0" 186 - "@smithy/fetch-http-handler" "^5.0.1" 187 - "@smithy/node-http-handler" "^4.0.3" 188 - "@smithy/property-provider" "^4.0.1" 189 - "@smithy/protocol-http" "^5.0.1" 190 - "@smithy/smithy-client" "^4.1.6" 191 - "@smithy/types" "^4.1.0" 192 - "@smithy/util-stream" "^4.1.2" 184 + "@aws-sdk/core" "3.775.0" 185 + "@aws-sdk/types" "3.775.0" 186 + "@smithy/fetch-http-handler" "^5.0.2" 187 + "@smithy/node-http-handler" "^4.0.4" 188 + "@smithy/property-provider" "^4.0.2" 189 + "@smithy/protocol-http" "^5.1.0" 190 + "@smithy/smithy-client" "^4.2.0" 191 + "@smithy/types" "^4.2.0" 192 + "@smithy/util-stream" "^4.2.0" 193 193 tslib "^2.6.2" 194 194 195 - "@aws-sdk/credential-provider-ini@3.758.0": 196 - version "3.758.0" 197 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.758.0.tgz#66457e71d8f5013e18111b25629c2367ed8ef116" 198 - integrity sha512-cymSKMcP5d+OsgetoIZ5QCe1wnp2Q/tq+uIxVdh9MbfdBBEnl9Ecq6dH6VlYS89sp4QKuxHxkWXVnbXU3Q19Aw== 195 + "@aws-sdk/credential-provider-ini@3.775.0": 196 + version "3.775.0" 197 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.775.0.tgz#64be57d4ef2a2ca9a685255969a5989759042f55" 198 + integrity sha512-0gJc6cALsgrjeC5U3qDjbz4myIC/j49+gPz9nkvY+C0OYWt1KH1tyfiZUuCRGfuFHhQ+3KMMDSL229TkBP3E7g== 199 199 dependencies: 200 - "@aws-sdk/core" "3.758.0" 201 - "@aws-sdk/credential-provider-env" "3.758.0" 202 - "@aws-sdk/credential-provider-http" "3.758.0" 203 - "@aws-sdk/credential-provider-process" "3.758.0" 204 - "@aws-sdk/credential-provider-sso" "3.758.0" 205 - "@aws-sdk/credential-provider-web-identity" "3.758.0" 206 - "@aws-sdk/nested-clients" "3.758.0" 207 - "@aws-sdk/types" "3.734.0" 208 - "@smithy/credential-provider-imds" "^4.0.1" 209 - "@smithy/property-provider" "^4.0.1" 210 - "@smithy/shared-ini-file-loader" "^4.0.1" 211 - "@smithy/types" "^4.1.0" 200 + "@aws-sdk/core" "3.775.0" 201 + "@aws-sdk/credential-provider-env" "3.775.0" 202 + "@aws-sdk/credential-provider-http" "3.775.0" 203 + "@aws-sdk/credential-provider-process" "3.775.0" 204 + "@aws-sdk/credential-provider-sso" "3.775.0" 205 + "@aws-sdk/credential-provider-web-identity" "3.775.0" 206 + "@aws-sdk/nested-clients" "3.775.0" 207 + "@aws-sdk/types" "3.775.0" 208 + "@smithy/credential-provider-imds" "^4.0.2" 209 + "@smithy/property-provider" "^4.0.2" 210 + "@smithy/shared-ini-file-loader" "^4.0.2" 211 + "@smithy/types" "^4.2.0" 212 212 tslib "^2.6.2" 213 213 214 - "@aws-sdk/credential-provider-node@3.758.0": 215 - version "3.758.0" 216 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.758.0.tgz#b0a5d18e5d7f1b091fd891e2e8088578c0246cef" 217 - integrity sha512-+DaMv63wiq7pJrhIQzZYMn4hSarKiizDoJRvyR7WGhnn0oQ/getX9Z0VNCV3i7lIFoLNTb7WMmQ9k7+z/uD5EQ== 214 + "@aws-sdk/credential-provider-node@3.775.0": 215 + version "3.775.0" 216 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.775.0.tgz#cfa9e4135d8480a38aa1e7590fac809fe6030703" 217 + integrity sha512-D8Zre5W2sXC/ANPqCWPqwYpU1cKY9DF6ckFZyDrqlcBC0gANgpY6fLrBtYo2fwJsbj+1A24iIpBINV7erdprgA== 218 218 dependencies: 219 - "@aws-sdk/credential-provider-env" "3.758.0" 220 - "@aws-sdk/credential-provider-http" "3.758.0" 221 - "@aws-sdk/credential-provider-ini" "3.758.0" 222 - "@aws-sdk/credential-provider-process" "3.758.0" 223 - "@aws-sdk/credential-provider-sso" "3.758.0" 224 - "@aws-sdk/credential-provider-web-identity" "3.758.0" 225 - "@aws-sdk/types" "3.734.0" 226 - "@smithy/credential-provider-imds" "^4.0.1" 227 - "@smithy/property-provider" "^4.0.1" 228 - "@smithy/shared-ini-file-loader" "^4.0.1" 229 - "@smithy/types" "^4.1.0" 219 + "@aws-sdk/credential-provider-env" "3.775.0" 220 + "@aws-sdk/credential-provider-http" "3.775.0" 221 + "@aws-sdk/credential-provider-ini" "3.775.0" 222 + "@aws-sdk/credential-provider-process" "3.775.0" 223 + "@aws-sdk/credential-provider-sso" "3.775.0" 224 + "@aws-sdk/credential-provider-web-identity" "3.775.0" 225 + "@aws-sdk/types" "3.775.0" 226 + "@smithy/credential-provider-imds" "^4.0.2" 227 + "@smithy/property-provider" "^4.0.2" 228 + "@smithy/shared-ini-file-loader" "^4.0.2" 229 + "@smithy/types" "^4.2.0" 230 230 tslib "^2.6.2" 231 231 232 - "@aws-sdk/credential-provider-process@3.758.0": 233 - version "3.758.0" 234 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.758.0.tgz#563bfae58049afd9968ca60f61672753834ff506" 235 - integrity sha512-AzcY74QTPqcbXWVgjpPZ3HOmxQZYPROIBz2YINF0OQk0MhezDWV/O7Xec+K1+MPGQO3qS6EDrUUlnPLjsqieHA== 232 + "@aws-sdk/credential-provider-process@3.775.0": 233 + version "3.775.0" 234 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.775.0.tgz#7ab90383f12461c5d20546e933924e654660542b" 235 + integrity sha512-A6k68H9rQp+2+7P7SGO90Csw6nrUEm0Qfjpn9Etc4EboZhhCLs9b66umUsTsSBHus4FDIe5JQxfCUyt1wgNogg== 236 236 dependencies: 237 - "@aws-sdk/core" "3.758.0" 238 - "@aws-sdk/types" "3.734.0" 239 - "@smithy/property-provider" "^4.0.1" 240 - "@smithy/shared-ini-file-loader" "^4.0.1" 241 - "@smithy/types" "^4.1.0" 237 + "@aws-sdk/core" "3.775.0" 238 + "@aws-sdk/types" "3.775.0" 239 + "@smithy/property-provider" "^4.0.2" 240 + "@smithy/shared-ini-file-loader" "^4.0.2" 241 + "@smithy/types" "^4.2.0" 242 242 tslib "^2.6.2" 243 243 244 - "@aws-sdk/credential-provider-sso@3.758.0": 245 - version "3.758.0" 246 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.758.0.tgz#5098c196a2dd38ba467aca052fc5193476b8a404" 247 - integrity sha512-x0FYJqcOLUCv8GLLFDYMXRAQKGjoM+L0BG4BiHYZRDf24yQWFCAZsCQAYKo6XZYh2qznbsW6f//qpyJ5b0QVKQ== 244 + "@aws-sdk/credential-provider-sso@3.775.0": 245 + version "3.775.0" 246 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.775.0.tgz#fb0267025981b8d0b7ba55fdfb18742759708d64" 247 + integrity sha512-du06V7u9HDmRuwZnRjf85shO3dffeKOkQplV5/2vf3LgTPNEI9caNomi/cCGyxKGOeSUHAKrQ1HvpPfOaI6t5Q== 248 248 dependencies: 249 - "@aws-sdk/client-sso" "3.758.0" 250 - "@aws-sdk/core" "3.758.0" 251 - "@aws-sdk/token-providers" "3.758.0" 252 - "@aws-sdk/types" "3.734.0" 253 - "@smithy/property-provider" "^4.0.1" 254 - "@smithy/shared-ini-file-loader" "^4.0.1" 255 - "@smithy/types" "^4.1.0" 249 + "@aws-sdk/client-sso" "3.775.0" 250 + "@aws-sdk/core" "3.775.0" 251 + "@aws-sdk/token-providers" "3.775.0" 252 + "@aws-sdk/types" "3.775.0" 253 + "@smithy/property-provider" "^4.0.2" 254 + "@smithy/shared-ini-file-loader" "^4.0.2" 255 + "@smithy/types" "^4.2.0" 256 256 tslib "^2.6.2" 257 257 258 - "@aws-sdk/credential-provider-web-identity@3.758.0": 259 - version "3.758.0" 260 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.758.0.tgz#ea88729ee0e5de0bf5f31929d60dfd148934b6a5" 261 - integrity sha512-XGguXhBqiCXMXRxcfCAVPlMbm3VyJTou79r/3mxWddHWF0XbhaQiBIbUz6vobVTD25YQRbWSmSch7VA8kI5Lrw== 258 + "@aws-sdk/credential-provider-web-identity@3.775.0": 259 + version "3.775.0" 260 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.775.0.tgz#d0db1b0bc37c95c99d3728c71bbe76b734704e12" 261 + integrity sha512-z4XLYui5aHsr78mbd5BtZfm55OM5V55qK/X17OPrEqjYDDk3GlI8Oe2ZjTmOVrKwMpmzXKhsakeFHKfDyOvv1A== 262 262 dependencies: 263 - "@aws-sdk/core" "3.758.0" 264 - "@aws-sdk/nested-clients" "3.758.0" 265 - "@aws-sdk/types" "3.734.0" 266 - "@smithy/property-provider" "^4.0.1" 267 - "@smithy/types" "^4.1.0" 263 + "@aws-sdk/core" "3.775.0" 264 + "@aws-sdk/nested-clients" "3.775.0" 265 + "@aws-sdk/types" "3.775.0" 266 + "@smithy/property-provider" "^4.0.2" 267 + "@smithy/types" "^4.2.0" 268 268 tslib "^2.6.2" 269 269 270 270 "@aws-sdk/credential-providers@^3.186.0": 271 - version "3.758.0" 272 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.758.0.tgz#302b5339fccaeb3db3cb699a0aeb897e58c12d48" 273 - integrity sha512-BaGVBdm9ynsErIc/mLuUwJ1OQcL/pkhCuAm24jpsif3evZ5wgyZnEAZB2yRin+mQnQaQT3L+KvTbdKGfjL8+fQ== 271 + version "3.775.0" 272 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.775.0.tgz#63567b6bdc04463b92e9cfa8926e7383e28ab0df" 273 + integrity sha512-THvyeStdvd0z8Dv1lJ7KrMRiZkFfUktYQUvvFT45ph14jHC5oRoPColtLHz4JjuDN5QEQ5EGrbc6USADZu1k/w== 274 274 dependencies: 275 - "@aws-sdk/client-cognito-identity" "3.758.0" 276 - "@aws-sdk/core" "3.758.0" 277 - "@aws-sdk/credential-provider-cognito-identity" "3.758.0" 278 - "@aws-sdk/credential-provider-env" "3.758.0" 279 - "@aws-sdk/credential-provider-http" "3.758.0" 280 - "@aws-sdk/credential-provider-ini" "3.758.0" 281 - "@aws-sdk/credential-provider-node" "3.758.0" 282 - "@aws-sdk/credential-provider-process" "3.758.0" 283 - "@aws-sdk/credential-provider-sso" "3.758.0" 284 - "@aws-sdk/credential-provider-web-identity" "3.758.0" 285 - "@aws-sdk/nested-clients" "3.758.0" 286 - "@aws-sdk/types" "3.734.0" 287 - "@smithy/core" "^3.1.5" 288 - "@smithy/credential-provider-imds" "^4.0.1" 289 - "@smithy/property-provider" "^4.0.1" 290 - "@smithy/types" "^4.1.0" 275 + "@aws-sdk/client-cognito-identity" "3.775.0" 276 + "@aws-sdk/core" "3.775.0" 277 + "@aws-sdk/credential-provider-cognito-identity" "3.775.0" 278 + "@aws-sdk/credential-provider-env" "3.775.0" 279 + "@aws-sdk/credential-provider-http" "3.775.0" 280 + "@aws-sdk/credential-provider-ini" "3.775.0" 281 + "@aws-sdk/credential-provider-node" "3.775.0" 282 + "@aws-sdk/credential-provider-process" "3.775.0" 283 + "@aws-sdk/credential-provider-sso" "3.775.0" 284 + "@aws-sdk/credential-provider-web-identity" "3.775.0" 285 + "@aws-sdk/nested-clients" "3.775.0" 286 + "@aws-sdk/types" "3.775.0" 287 + "@smithy/core" "^3.2.0" 288 + "@smithy/credential-provider-imds" "^4.0.2" 289 + "@smithy/property-provider" "^4.0.2" 290 + "@smithy/types" "^4.2.0" 291 291 tslib "^2.6.2" 292 292 293 - "@aws-sdk/middleware-host-header@3.734.0": 294 - version "3.734.0" 295 - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.734.0.tgz#a9a02c055352f5c435cc925a4e1e79b7ba41b1b5" 296 - integrity sha512-LW7RRgSOHHBzWZnigNsDIzu3AiwtjeI2X66v+Wn1P1u+eXssy1+up4ZY/h+t2sU4LU36UvEf+jrZti9c6vRnFw== 293 + "@aws-sdk/middleware-host-header@3.775.0": 294 + version "3.775.0" 295 + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.775.0.tgz#1bf8160b8f4f96ba30c19f9baa030a6c9bd5f94d" 296 + integrity sha512-tkSegM0Z6WMXpLB8oPys/d+umYIocvO298mGvcMCncpRl77L9XkvSLJIFzaHes+o7djAgIduYw8wKIMStFss2w== 297 297 dependencies: 298 - "@aws-sdk/types" "3.734.0" 299 - "@smithy/protocol-http" "^5.0.1" 300 - "@smithy/types" "^4.1.0" 298 + "@aws-sdk/types" "3.775.0" 299 + "@smithy/protocol-http" "^5.1.0" 300 + "@smithy/types" "^4.2.0" 301 301 tslib "^2.6.2" 302 302 303 - "@aws-sdk/middleware-logger@3.734.0": 304 - version "3.734.0" 305 - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.734.0.tgz#d31e141ae7a78667e372953a3b86905bc6124664" 306 - integrity sha512-mUMFITpJUW3LcKvFok176eI5zXAUomVtahb9IQBwLzkqFYOrMJvWAvoV4yuxrJ8TlQBG8gyEnkb9SnhZvjg67w== 303 + "@aws-sdk/middleware-logger@3.775.0": 304 + version "3.775.0" 305 + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.775.0.tgz#df1909d441cd4bade8d6c7d24c41532808db0e81" 306 + integrity sha512-FaxO1xom4MAoUJsldmR92nT1G6uZxTdNYOFYtdHfd6N2wcNaTuxgjIvqzg5y7QIH9kn58XX/dzf1iTjgqUStZw== 307 307 dependencies: 308 - "@aws-sdk/types" "3.734.0" 309 - "@smithy/types" "^4.1.0" 308 + "@aws-sdk/types" "3.775.0" 309 + "@smithy/types" "^4.2.0" 310 310 tslib "^2.6.2" 311 311 312 - "@aws-sdk/middleware-recursion-detection@3.734.0": 313 - version "3.734.0" 314 - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.734.0.tgz#4fa1deb9887455afbb39130f7d9bc89ccee17168" 315 - integrity sha512-CUat2d9ITsFc2XsmeiRQO96iWpxSKYFjxvj27Hc7vo87YUHRnfMfnc8jw1EpxEwMcvBD7LsRa6vDNky6AjcrFA== 312 + "@aws-sdk/middleware-recursion-detection@3.775.0": 313 + version "3.775.0" 314 + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.775.0.tgz#36a40f467754d7c86424d12ef45c05e96ce3475b" 315 + integrity sha512-GLCzC8D0A0YDG5u3F5U03Vb9j5tcOEFhr8oc6PDk0k0vm5VwtZOE6LvK7hcCSoAB4HXyOUM0sQuXrbaAh9OwXA== 316 316 dependencies: 317 - "@aws-sdk/types" "3.734.0" 318 - "@smithy/protocol-http" "^5.0.1" 319 - "@smithy/types" "^4.1.0" 317 + "@aws-sdk/types" "3.775.0" 318 + "@smithy/protocol-http" "^5.1.0" 319 + "@smithy/types" "^4.2.0" 320 320 tslib "^2.6.2" 321 321 322 - "@aws-sdk/middleware-user-agent@3.758.0": 323 - version "3.758.0" 324 - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.758.0.tgz#f3c9d2025aa55fd400acb1d699c1fbd6b4f68f34" 325 - integrity sha512-iNyehQXtQlj69JCgfaOssgZD4HeYGOwxcaKeG6F+40cwBjTAi0+Ph1yfDwqk2qiBPIRWJ/9l2LodZbxiBqgrwg== 322 + "@aws-sdk/middleware-user-agent@3.775.0": 323 + version "3.775.0" 324 + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.775.0.tgz#66950672df55ddb32062baa4d92c67b3b67dfa65" 325 + integrity sha512-7Lffpr1ptOEDE1ZYH1T78pheEY1YmeXWBfFt/amZ6AGsKSLG+JPXvof3ltporTGR2bhH/eJPo7UHCglIuXfzYg== 326 326 dependencies: 327 - "@aws-sdk/core" "3.758.0" 328 - "@aws-sdk/types" "3.734.0" 329 - "@aws-sdk/util-endpoints" "3.743.0" 330 - "@smithy/core" "^3.1.5" 331 - "@smithy/protocol-http" "^5.0.1" 332 - "@smithy/types" "^4.1.0" 327 + "@aws-sdk/core" "3.775.0" 328 + "@aws-sdk/types" "3.775.0" 329 + "@aws-sdk/util-endpoints" "3.775.0" 330 + "@smithy/core" "^3.2.0" 331 + "@smithy/protocol-http" "^5.1.0" 332 + "@smithy/types" "^4.2.0" 333 333 tslib "^2.6.2" 334 334 335 - "@aws-sdk/nested-clients@3.758.0": 336 - version "3.758.0" 337 - resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.758.0.tgz#571c853602d38f5e8faa10178347e711e4f0e444" 338 - integrity sha512-YZ5s7PSvyF3Mt2h1EQulCG93uybprNGbBkPmVuy/HMMfbFTt4iL3SbKjxqvOZelm86epFfj7pvK7FliI2WOEcg== 335 + "@aws-sdk/nested-clients@3.775.0": 336 + version "3.775.0" 337 + resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.775.0.tgz#abf064391a0b967ad44a4657d6ffcea729f9014d" 338 + integrity sha512-f37jmAzkuIhKyhtA6s0LGpqQvm218vq+RNMUDkGm1Zz2fxJ5pBIUTDtygiI3vXTcmt9DTIB8S6JQhjrgtboktw== 339 339 dependencies: 340 340 "@aws-crypto/sha256-browser" "5.2.0" 341 341 "@aws-crypto/sha256-js" "5.2.0" 342 - "@aws-sdk/core" "3.758.0" 343 - "@aws-sdk/middleware-host-header" "3.734.0" 344 - "@aws-sdk/middleware-logger" "3.734.0" 345 - "@aws-sdk/middleware-recursion-detection" "3.734.0" 346 - "@aws-sdk/middleware-user-agent" "3.758.0" 347 - "@aws-sdk/region-config-resolver" "3.734.0" 348 - "@aws-sdk/types" "3.734.0" 349 - "@aws-sdk/util-endpoints" "3.743.0" 350 - "@aws-sdk/util-user-agent-browser" "3.734.0" 351 - "@aws-sdk/util-user-agent-node" "3.758.0" 352 - "@smithy/config-resolver" "^4.0.1" 353 - "@smithy/core" "^3.1.5" 354 - "@smithy/fetch-http-handler" "^5.0.1" 355 - "@smithy/hash-node" "^4.0.1" 356 - "@smithy/invalid-dependency" "^4.0.1" 357 - "@smithy/middleware-content-length" "^4.0.1" 358 - "@smithy/middleware-endpoint" "^4.0.6" 359 - "@smithy/middleware-retry" "^4.0.7" 360 - "@smithy/middleware-serde" "^4.0.2" 361 - "@smithy/middleware-stack" "^4.0.1" 362 - "@smithy/node-config-provider" "^4.0.1" 363 - "@smithy/node-http-handler" "^4.0.3" 364 - "@smithy/protocol-http" "^5.0.1" 365 - "@smithy/smithy-client" "^4.1.6" 366 - "@smithy/types" "^4.1.0" 367 - "@smithy/url-parser" "^4.0.1" 342 + "@aws-sdk/core" "3.775.0" 343 + "@aws-sdk/middleware-host-header" "3.775.0" 344 + "@aws-sdk/middleware-logger" "3.775.0" 345 + "@aws-sdk/middleware-recursion-detection" "3.775.0" 346 + "@aws-sdk/middleware-user-agent" "3.775.0" 347 + "@aws-sdk/region-config-resolver" "3.775.0" 348 + "@aws-sdk/types" "3.775.0" 349 + "@aws-sdk/util-endpoints" "3.775.0" 350 + "@aws-sdk/util-user-agent-browser" "3.775.0" 351 + "@aws-sdk/util-user-agent-node" "3.775.0" 352 + "@smithy/config-resolver" "^4.1.0" 353 + "@smithy/core" "^3.2.0" 354 + "@smithy/fetch-http-handler" "^5.0.2" 355 + "@smithy/hash-node" "^4.0.2" 356 + "@smithy/invalid-dependency" "^4.0.2" 357 + "@smithy/middleware-content-length" "^4.0.2" 358 + "@smithy/middleware-endpoint" "^4.1.0" 359 + "@smithy/middleware-retry" "^4.1.0" 360 + "@smithy/middleware-serde" "^4.0.3" 361 + "@smithy/middleware-stack" "^4.0.2" 362 + "@smithy/node-config-provider" "^4.0.2" 363 + "@smithy/node-http-handler" "^4.0.4" 364 + "@smithy/protocol-http" "^5.1.0" 365 + "@smithy/smithy-client" "^4.2.0" 366 + "@smithy/types" "^4.2.0" 367 + "@smithy/url-parser" "^4.0.2" 368 368 "@smithy/util-base64" "^4.0.0" 369 369 "@smithy/util-body-length-browser" "^4.0.0" 370 370 "@smithy/util-body-length-node" "^4.0.0" 371 - "@smithy/util-defaults-mode-browser" "^4.0.7" 372 - "@smithy/util-defaults-mode-node" "^4.0.7" 373 - "@smithy/util-endpoints" "^3.0.1" 374 - "@smithy/util-middleware" "^4.0.1" 375 - "@smithy/util-retry" "^4.0.1" 371 + "@smithy/util-defaults-mode-browser" "^4.0.8" 372 + "@smithy/util-defaults-mode-node" "^4.0.8" 373 + "@smithy/util-endpoints" "^3.0.2" 374 + "@smithy/util-middleware" "^4.0.2" 375 + "@smithy/util-retry" "^4.0.2" 376 376 "@smithy/util-utf8" "^4.0.0" 377 377 tslib "^2.6.2" 378 378 379 - "@aws-sdk/region-config-resolver@3.734.0": 380 - version "3.734.0" 381 - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.734.0.tgz#45ffbc56a3e94cc5c9e0cd596b0fda60f100f70b" 382 - integrity sha512-Lvj1kPRC5IuJBr9DyJ9T9/plkh+EfKLy+12s/mykOy1JaKHDpvj+XGy2YO6YgYVOb8JFtaqloid+5COtje4JTQ== 379 + "@aws-sdk/region-config-resolver@3.775.0": 380 + version "3.775.0" 381 + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.775.0.tgz#592b52498e68501fe46480be3dfb185e949d1eab" 382 + integrity sha512-40iH3LJjrQS3LKUJAl7Wj0bln7RFPEvUYKFxtP8a+oKFDO0F65F52xZxIJbPn6sHkxWDAnZlGgdjZXM3p2g5wQ== 383 383 dependencies: 384 - "@aws-sdk/types" "3.734.0" 385 - "@smithy/node-config-provider" "^4.0.1" 386 - "@smithy/types" "^4.1.0" 384 + "@aws-sdk/types" "3.775.0" 385 + "@smithy/node-config-provider" "^4.0.2" 386 + "@smithy/types" "^4.2.0" 387 387 "@smithy/util-config-provider" "^4.0.0" 388 - "@smithy/util-middleware" "^4.0.1" 388 + "@smithy/util-middleware" "^4.0.2" 389 389 tslib "^2.6.2" 390 390 391 - "@aws-sdk/token-providers@3.758.0": 392 - version "3.758.0" 393 - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.758.0.tgz#fcab3885ba2b222ff8bb7817448d3c786dc2ddf9" 394 - integrity sha512-ckptN1tNrIfQUaGWm/ayW1ddG+imbKN7HHhjFdS4VfItsP0QQOB0+Ov+tpgb4MoNR4JaUghMIVStjIeHN2ks1w== 391 + "@aws-sdk/token-providers@3.775.0": 392 + version "3.775.0" 393 + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.775.0.tgz#0d2128b2c8985731dcf592c5b9334654ddd0556b" 394 + integrity sha512-Q6MtbEhkOggVSz/dN89rIY/ry80U3v89o0Lrrc+Rpvaiaaz8pEN0DsfEcg0IjpzBQ8Owoa6lNWyglHbzPhaJpA== 395 395 dependencies: 396 - "@aws-sdk/nested-clients" "3.758.0" 397 - "@aws-sdk/types" "3.734.0" 398 - "@smithy/property-provider" "^4.0.1" 399 - "@smithy/shared-ini-file-loader" "^4.0.1" 400 - "@smithy/types" "^4.1.0" 396 + "@aws-sdk/nested-clients" "3.775.0" 397 + "@aws-sdk/types" "3.775.0" 398 + "@smithy/property-provider" "^4.0.2" 399 + "@smithy/shared-ini-file-loader" "^4.0.2" 400 + "@smithy/types" "^4.2.0" 401 401 tslib "^2.6.2" 402 402 403 - "@aws-sdk/types@3.734.0", "@aws-sdk/types@^3.222.0": 404 - version "3.734.0" 405 - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.734.0.tgz#af5e620b0e761918282aa1c8e53cac6091d169a2" 406 - integrity sha512-o11tSPTT70nAkGV1fN9wm/hAIiLPyWX6SuGf+9JyTp7S/rC2cFWhR26MvA69nplcjNaXVzB0f+QFrLXXjOqCrg== 403 + "@aws-sdk/types@3.775.0", "@aws-sdk/types@^3.222.0": 404 + version "3.775.0" 405 + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.775.0.tgz#09863a9e68c080947db7c3d226d1c56b8f0f5150" 406 + integrity sha512-ZoGKwa4C9fC9Av6bdfqcW6Ix5ot05F/S4VxWR2nHuMv7hzfmAjTOcUiWT7UR4hM/U0whf84VhDtXN/DWAk52KA== 407 407 dependencies: 408 - "@smithy/types" "^4.1.0" 408 + "@smithy/types" "^4.2.0" 409 409 tslib "^2.6.2" 410 410 411 - "@aws-sdk/util-endpoints@3.743.0": 412 - version "3.743.0" 413 - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.743.0.tgz#fba654e0c5f1c8ba2b3e175dfee8e3ba4df2394a" 414 - integrity sha512-sN1l559zrixeh5x+pttrnd0A3+r34r0tmPkJ/eaaMaAzXqsmKU/xYre9K3FNnsSS1J1k4PEfk/nHDTVUgFYjnw== 411 + "@aws-sdk/util-endpoints@3.775.0": 412 + version "3.775.0" 413 + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.775.0.tgz#2f6fd728c86aeb1fba38506161b2eb024de17c19" 414 + integrity sha512-yjWmUgZC9tUxAo8Uaplqmq0eUh0zrbZJdwxGRKdYxfm4RG6fMw1tj52+KkatH7o+mNZvg1GDcVp/INktxonJLw== 415 415 dependencies: 416 - "@aws-sdk/types" "3.734.0" 417 - "@smithy/types" "^4.1.0" 418 - "@smithy/util-endpoints" "^3.0.1" 416 + "@aws-sdk/types" "3.775.0" 417 + "@smithy/types" "^4.2.0" 418 + "@smithy/util-endpoints" "^3.0.2" 419 419 tslib "^2.6.2" 420 420 421 421 "@aws-sdk/util-locate-window@^3.0.0": ··· 425 425 dependencies: 426 426 tslib "^2.6.2" 427 427 428 - "@aws-sdk/util-user-agent-browser@3.734.0": 429 - version "3.734.0" 430 - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.734.0.tgz#bbf3348b14bd7783f60346e1ce86978999450fe7" 431 - integrity sha512-xQTCus6Q9LwUuALW+S76OL0jcWtMOVu14q+GoLnWPUM7QeUw963oQcLhF7oq0CtaLLKyl4GOUfcwc773Zmwwng== 428 + "@aws-sdk/util-user-agent-browser@3.775.0": 429 + version "3.775.0" 430 + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.775.0.tgz#b69a1a5548ccc6db1acb3ec115967593ece927a1" 431 + integrity sha512-txw2wkiJmZKVdDbscK7VBK+u+TJnRtlUjRTLei+elZg2ADhpQxfVAQl436FUeIv6AhB/oRHW6/K/EAGXUSWi0A== 432 432 dependencies: 433 - "@aws-sdk/types" "3.734.0" 434 - "@smithy/types" "^4.1.0" 433 + "@aws-sdk/types" "3.775.0" 434 + "@smithy/types" "^4.2.0" 435 435 bowser "^2.11.0" 436 436 tslib "^2.6.2" 437 437 438 - "@aws-sdk/util-user-agent-node@3.758.0": 439 - version "3.758.0" 440 - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.758.0.tgz#604ccb02a5d11c9cedaea0bea279641ea9d4194d" 441 - integrity sha512-A5EZw85V6WhoKMV2hbuFRvb9NPlxEErb4HPO6/SPXYY4QrjprIzScHxikqcWv1w4J3apB1wto9LPU3IMsYtfrw== 438 + "@aws-sdk/util-user-agent-node@3.775.0": 439 + version "3.775.0" 440 + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.775.0.tgz#dbc34ff2d84e2c3d10466081cad005d49c3d9740" 441 + integrity sha512-N9yhTevbizTOMo3drH7Eoy6OkJ3iVPxhV7dwb6CMAObbLneS36CSfA6xQXupmHWcRvZPTz8rd1JGG3HzFOau+g== 442 442 dependencies: 443 - "@aws-sdk/middleware-user-agent" "3.758.0" 444 - "@aws-sdk/types" "3.734.0" 445 - "@smithy/node-config-provider" "^4.0.1" 446 - "@smithy/types" "^4.1.0" 443 + "@aws-sdk/middleware-user-agent" "3.775.0" 444 + "@aws-sdk/types" "3.775.0" 445 + "@smithy/node-config-provider" "^4.0.2" 446 + "@smithy/types" "^4.2.0" 447 447 tslib "^2.6.2" 448 448 449 449 "@babel/cli@^7.16.0": 450 - version "7.26.4" 451 - resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.26.4.tgz#4101ff8ee5de8447a6c395397a97921056411d20" 452 - integrity sha512-+mORf3ezU3p3qr+82WvJSnQNE1GAYeoCfEv4fik6B5/2cvKZ75AX8oawWQdXtM9MmndooQj15Jr9kelRFWsuRw== 450 + version "7.27.0" 451 + resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.27.0.tgz#076603b25fc7dd88298ea94ab249c8237c7e71cc" 452 + integrity sha512-bZfxn8DRxwiVzDO5CEeV+7IqXeCkzI4yYnrQbpwjT76CUyossQc6RYE7n+xfm0/2k40lPaCpW0FhxYs7EBAetw== 453 453 dependencies: 454 454 "@jridgewell/trace-mapping" "^0.3.25" 455 455 commander "^6.2.0" ··· 471 471 js-tokens "^4.0.0" 472 472 picocolors "^1.0.0" 473 473 474 - "@babel/compat-data@^7.26.5": 474 + "@babel/compat-data@^7.26.8": 475 475 version "7.26.8" 476 476 resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.8.tgz#821c1d35641c355284d4a870b8a4a7b0c141e367" 477 477 integrity sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ== ··· 497 497 json5 "^2.2.3" 498 498 semver "^6.3.1" 499 499 500 - "@babel/generator@^7.26.10", "@babel/generator@^7.4.0": 501 - version "7.26.10" 502 - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.10.tgz#a60d9de49caca16744e6340c3658dfef6138c3f7" 503 - integrity sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang== 500 + "@babel/generator@^7.26.10", "@babel/generator@^7.27.0", "@babel/generator@^7.4.0": 501 + version "7.27.0" 502 + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.27.0.tgz#764382b5392e5b9aff93cadb190d0745866cbc2c" 503 + integrity sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw== 504 504 dependencies: 505 - "@babel/parser" "^7.26.10" 506 - "@babel/types" "^7.26.10" 505 + "@babel/parser" "^7.27.0" 506 + "@babel/types" "^7.27.0" 507 507 "@jridgewell/gen-mapping" "^0.3.5" 508 508 "@jridgewell/trace-mapping" "^0.3.25" 509 509 jsesc "^3.0.2" ··· 516 516 "@babel/types" "^7.25.9" 517 517 518 518 "@babel/helper-compilation-targets@^7.26.5": 519 - version "7.26.5" 520 - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz#75d92bb8d8d51301c0d49e52a65c9a7fe94514d8" 521 - integrity sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA== 519 + version "7.27.0" 520 + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.0.tgz#de0c753b1cd1d9ab55d473c5a5cf7170f0a81880" 521 + integrity sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA== 522 522 dependencies: 523 - "@babel/compat-data" "^7.26.5" 523 + "@babel/compat-data" "^7.26.8" 524 524 "@babel/helper-validator-option" "^7.25.9" 525 525 browserslist "^4.24.0" 526 526 lru-cache "^5.1.1" ··· 564 564 integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== 565 565 566 566 "@babel/helpers@^7.26.10": 567 - version "7.26.10" 568 - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.10.tgz#6baea3cd62ec2d0c1068778d63cb1314f6637384" 569 - integrity sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g== 567 + version "7.27.0" 568 + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.27.0.tgz#53d156098defa8243eab0f32fa17589075a1b808" 569 + integrity sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg== 570 570 dependencies: 571 - "@babel/template" "^7.26.9" 572 - "@babel/types" "^7.26.10" 571 + "@babel/template" "^7.27.0" 572 + "@babel/types" "^7.27.0" 573 573 574 574 "@babel/node@^7.16.5": 575 575 version "7.26.0" ··· 583 583 regenerator-runtime "^0.14.0" 584 584 v8flags "^3.1.1" 585 585 586 - "@babel/parser@^7.26.10", "@babel/parser@^7.26.9", "@babel/parser@^7.4.3": 587 - version "7.26.10" 588 - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.10.tgz#e9bdb82f14b97df6569b0b038edd436839c57749" 589 - integrity sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA== 586 + "@babel/parser@^7.26.10", "@babel/parser@^7.27.0", "@babel/parser@^7.4.3": 587 + version "7.27.0" 588 + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.27.0.tgz#3d7d6ee268e41d2600091cbd4e145ffee85a44ec" 589 + integrity sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg== 590 590 dependencies: 591 - "@babel/types" "^7.26.10" 591 + "@babel/types" "^7.27.0" 592 592 593 593 "@babel/plugin-syntax-jsx@^7.25.9": 594 594 version "7.25.9" ··· 619 619 pirates "^4.0.6" 620 620 source-map-support "^0.5.16" 621 621 622 - "@babel/template@^7.26.9", "@babel/template@^7.4.0": 623 - version "7.26.9" 624 - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.26.9.tgz#4577ad3ddf43d194528cff4e1fa6b232fa609bb2" 625 - integrity sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA== 622 + "@babel/template@^7.26.9", "@babel/template@^7.27.0", "@babel/template@^7.4.0": 623 + version "7.27.0" 624 + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.0.tgz#b253e5406cc1df1c57dcd18f11760c2dbf40c0b4" 625 + integrity sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA== 626 626 dependencies: 627 627 "@babel/code-frame" "^7.26.2" 628 - "@babel/parser" "^7.26.9" 629 - "@babel/types" "^7.26.9" 628 + "@babel/parser" "^7.27.0" 629 + "@babel/types" "^7.27.0" 630 630 631 631 "@babel/traverse@^7.25.9", "@babel/traverse@^7.26.10", "@babel/traverse@^7.4.3": 632 - version "7.26.10" 633 - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.10.tgz#43cca33d76005dbaa93024fae536cc1946a4c380" 634 - integrity sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A== 632 + version "7.27.0" 633 + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.27.0.tgz#11d7e644779e166c0442f9a07274d02cd91d4a70" 634 + integrity sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA== 635 635 dependencies: 636 636 "@babel/code-frame" "^7.26.2" 637 - "@babel/generator" "^7.26.10" 638 - "@babel/parser" "^7.26.10" 639 - "@babel/template" "^7.26.9" 640 - "@babel/types" "^7.26.10" 637 + "@babel/generator" "^7.27.0" 638 + "@babel/parser" "^7.27.0" 639 + "@babel/template" "^7.27.0" 640 + "@babel/types" "^7.27.0" 641 641 debug "^4.3.1" 642 642 globals "^11.1.0" 643 643 644 - "@babel/types@^7.25.9", "@babel/types@^7.26.10", "@babel/types@^7.26.9", "@babel/types@^7.4.0": 645 - version "7.26.10" 646 - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.10.tgz#396382f6335bd4feb65741eacfc808218f859259" 647 - integrity sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ== 644 + "@babel/types@^7.25.9", "@babel/types@^7.26.10", "@babel/types@^7.27.0", "@babel/types@^7.4.0": 645 + version "7.27.0" 646 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.27.0.tgz#ef9acb6b06c3173f6632d993ecb6d4ae470b4559" 647 + integrity sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg== 648 648 dependencies: 649 649 "@babel/helper-string-parser" "^7.25.9" 650 650 "@babel/helper-validator-identifier" "^7.25.9" ··· 877 877 uuid "^8.0.0" 878 878 879 879 "@grpc/grpc-js@^1.10.9": 880 - version "1.13.0" 881 - resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.13.0.tgz#69c229eacb77f3468afa9d375c23dc9b694d1af9" 882 - integrity sha512-pMuxInZjUnUkgMT2QLZclRqwk2ykJbIU05aZgPgJYXEpN9+2I7z7aNwcjWZSycRPl232FfhPszyBFJyOxTHNog== 880 + version "1.13.1" 881 + resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.13.1.tgz#0fdd678dddc0d64d958ba7b420652fe62180ed50" 882 + integrity sha512-z5nNuIs75S73ZULjPDe5QCNTiCv7FyBZXEVWOyAHtcebnuJf0g1SuueI3U1/z/KK39XyAQRUC+C9ZQJOtgHynA== 883 883 dependencies: 884 884 "@grpc/proto-loader" "^0.7.13" 885 885 "@js-sdsl/ordered-map" "^4.4.2" ··· 990 990 resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz#d03eba68273dc0f7509e2a3d5cba21eae10379fe" 991 991 integrity sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg== 992 992 993 + "@otplib/core@^12.0.1": 994 + version "12.0.1" 995 + resolved "https://registry.yarnpkg.com/@otplib/core/-/core-12.0.1.tgz#73720a8cedce211fe5b3f683cd5a9c098eaf0f8d" 996 + integrity sha512-4sGntwbA/AC+SbPhbsziRiD+jNDdIzsZ3JUyfZwjtKyc/wufl1pnSIaG4Uqx8ymPagujub0o92kgBnB89cuAMA== 997 + 998 + "@otplib/plugin-crypto@^12.0.1": 999 + version "12.0.1" 1000 + resolved "https://registry.yarnpkg.com/@otplib/plugin-crypto/-/plugin-crypto-12.0.1.tgz#2b42c624227f4f9303c1c041fca399eddcbae25e" 1001 + integrity sha512-qPuhN3QrT7ZZLcLCyKOSNhuijUi9G5guMRVrxq63r9YNOxxQjPm59gVxLM+7xGnHnM6cimY57tuKsjK7y9LM1g== 1002 + dependencies: 1003 + "@otplib/core" "^12.0.1" 1004 + 1005 + "@otplib/plugin-thirty-two@^12.0.1": 1006 + version "12.0.1" 1007 + resolved "https://registry.yarnpkg.com/@otplib/plugin-thirty-two/-/plugin-thirty-two-12.0.1.tgz#5cc9b56e6e89f2a1fe4a2b38900ca4e11c87aa9e" 1008 + integrity sha512-MtT+uqRso909UkbrrYpJ6XFjj9D+x2Py7KjTO9JDPhL0bJUYVu5kFP4TFZW4NFAywrAtFRxOVY261u0qwb93gA== 1009 + dependencies: 1010 + "@otplib/core" "^12.0.1" 1011 + thirty-two "^1.0.2" 1012 + 1013 + "@otplib/preset-default@^12.0.1": 1014 + version "12.0.1" 1015 + resolved "https://registry.yarnpkg.com/@otplib/preset-default/-/preset-default-12.0.1.tgz#cb596553c08251e71b187ada4a2246ad2a3165ba" 1016 + integrity sha512-xf1v9oOJRyXfluBhMdpOkr+bsE+Irt+0D5uHtvg6x1eosfmHCsCC6ej/m7FXiWqdo0+ZUI6xSKDhJwc8yfiOPQ== 1017 + dependencies: 1018 + "@otplib/core" "^12.0.1" 1019 + "@otplib/plugin-crypto" "^12.0.1" 1020 + "@otplib/plugin-thirty-two" "^12.0.1" 1021 + 1022 + "@otplib/preset-v11@^12.0.1": 1023 + version "12.0.1" 1024 + resolved "https://registry.yarnpkg.com/@otplib/preset-v11/-/preset-v11-12.0.1.tgz#4c7266712e7230500b421ba89252963c838fc96d" 1025 + integrity sha512-9hSetMI7ECqbFiKICrNa4w70deTUfArtwXykPUvSHWOdzOlfa9ajglu7mNCntlvxycTiOAXkQGwjQCzzDEMRMg== 1026 + dependencies: 1027 + "@otplib/core" "^12.0.1" 1028 + "@otplib/plugin-crypto" "^12.0.1" 1029 + "@otplib/plugin-thirty-two" "^12.0.1" 1030 + 993 1031 "@pkgjs/parseargs@^0.11.0": 994 1032 version "0.11.0" 995 1033 resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" ··· 1146 1184 resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" 1147 1185 integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== 1148 1186 1149 - "@smithy/abort-controller@^4.0.1": 1150 - version "4.0.1" 1151 - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-4.0.1.tgz#7c5e73690c4105ad264c2896bd1ea822450c3819" 1152 - integrity sha512-fiUIYgIgRjMWznk6iLJz35K2YxSLHzLBA/RC6lBrKfQ8fHbPfvk7Pk9UvpKoHgJjI18MnbPuEju53zcVy6KF1g== 1187 + "@smithy/abort-controller@^4.0.2": 1188 + version "4.0.2" 1189 + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-4.0.2.tgz#36a23e8cc65fc03cacb6afa35dfbfd319c560c6b" 1190 + integrity sha512-Sl/78VDtgqKxN2+1qduaVE140XF+Xg+TafkncspwM4jFP/LHr76ZHmIY/y3V1M0mMLNk+Je6IGbzxy23RSToMw== 1153 1191 dependencies: 1154 - "@smithy/types" "^4.1.0" 1192 + "@smithy/types" "^4.2.0" 1155 1193 tslib "^2.6.2" 1156 1194 1157 - "@smithy/config-resolver@^4.0.1": 1158 - version "4.0.1" 1159 - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-4.0.1.tgz#3d6c78bbc51adf99c9819bb3f0ea197fe03ad363" 1160 - integrity sha512-Igfg8lKu3dRVkTSEm98QpZUvKEOa71jDX4vKRcvJVyRc3UgN3j7vFMf0s7xLQhYmKa8kyJGQgUJDOV5V3neVlQ== 1195 + "@smithy/config-resolver@^4.1.0": 1196 + version "4.1.0" 1197 + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-4.1.0.tgz#de1043cbd75f05d99798b0fbcfdaf4b89b0f2f41" 1198 + integrity sha512-8smPlwhga22pwl23fM5ew4T9vfLUCeFXlcqNOCD5M5h8VmNPNUE9j6bQSuRXpDSV11L/E/SwEBQuW8hr6+nS1A== 1161 1199 dependencies: 1162 - "@smithy/node-config-provider" "^4.0.1" 1163 - "@smithy/types" "^4.1.0" 1200 + "@smithy/node-config-provider" "^4.0.2" 1201 + "@smithy/types" "^4.2.0" 1164 1202 "@smithy/util-config-provider" "^4.0.0" 1165 - "@smithy/util-middleware" "^4.0.1" 1203 + "@smithy/util-middleware" "^4.0.2" 1166 1204 tslib "^2.6.2" 1167 1205 1168 - "@smithy/core@^3.1.5": 1169 - version "3.1.5" 1170 - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.1.5.tgz#cc260229e45964d8354a3737bf3dedb56e373616" 1171 - integrity sha512-HLclGWPkCsekQgsyzxLhCQLa8THWXtB5PxyYN+2O6nkyLt550KQKTlbV2D1/j5dNIQapAZM1+qFnpBFxZQkgCA== 1206 + "@smithy/core@^3.2.0": 1207 + version "3.2.0" 1208 + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.2.0.tgz#613b15f76eab9a6be396b1d5453b6bc8f22ba99c" 1209 + integrity sha512-k17bgQhVZ7YmUvA8at4af1TDpl0NDMBuBKJl8Yg0nrefwmValU+CnA5l/AriVdQNthU/33H3nK71HrLgqOPr1Q== 1172 1210 dependencies: 1173 - "@smithy/middleware-serde" "^4.0.2" 1174 - "@smithy/protocol-http" "^5.0.1" 1175 - "@smithy/types" "^4.1.0" 1211 + "@smithy/middleware-serde" "^4.0.3" 1212 + "@smithy/protocol-http" "^5.1.0" 1213 + "@smithy/types" "^4.2.0" 1176 1214 "@smithy/util-body-length-browser" "^4.0.0" 1177 - "@smithy/util-middleware" "^4.0.1" 1178 - "@smithy/util-stream" "^4.1.2" 1215 + "@smithy/util-middleware" "^4.0.2" 1216 + "@smithy/util-stream" "^4.2.0" 1179 1217 "@smithy/util-utf8" "^4.0.0" 1180 1218 tslib "^2.6.2" 1181 1219 1182 - "@smithy/credential-provider-imds@^4.0.1": 1183 - version "4.0.1" 1184 - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-4.0.1.tgz#807110739982acd1588a4847b61e6edf196d004e" 1185 - integrity sha512-l/qdInaDq1Zpznpmev/+52QomsJNZ3JkTl5yrTl02V6NBgJOQ4LY0SFw/8zsMwj3tLe8vqiIuwF6nxaEwgf6mg== 1220 + "@smithy/credential-provider-imds@^4.0.2": 1221 + version "4.0.2" 1222 + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-4.0.2.tgz#1ec34a04842fa69996b151a695b027f0486c69a8" 1223 + integrity sha512-32lVig6jCaWBHnY+OEQ6e6Vnt5vDHaLiydGrwYMW9tPqO688hPGTYRamYJ1EptxEC2rAwJrHWmPoKRBl4iTa8w== 1186 1224 dependencies: 1187 - "@smithy/node-config-provider" "^4.0.1" 1188 - "@smithy/property-provider" "^4.0.1" 1189 - "@smithy/types" "^4.1.0" 1190 - "@smithy/url-parser" "^4.0.1" 1225 + "@smithy/node-config-provider" "^4.0.2" 1226 + "@smithy/property-provider" "^4.0.2" 1227 + "@smithy/types" "^4.2.0" 1228 + "@smithy/url-parser" "^4.0.2" 1191 1229 tslib "^2.6.2" 1192 1230 1193 - "@smithy/fetch-http-handler@^5.0.1": 1194 - version "5.0.1" 1195 - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-5.0.1.tgz#8463393442ca6a1644204849e42c386066f0df79" 1196 - integrity sha512-3aS+fP28urrMW2KTjb6z9iFow6jO8n3MFfineGbndvzGZit3taZhKWtTorf+Gp5RpFDDafeHlhfsGlDCXvUnJA== 1231 + "@smithy/fetch-http-handler@^5.0.2": 1232 + version "5.0.2" 1233 + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-5.0.2.tgz#9d3cacf044aa9573ab933f445ab95cddb284813d" 1234 + integrity sha512-+9Dz8sakS9pe7f2cBocpJXdeVjMopUDLgZs1yWeu7h++WqSbjUYv/JAJwKwXw1HV6gq1jyWjxuyn24E2GhoEcQ== 1197 1235 dependencies: 1198 - "@smithy/protocol-http" "^5.0.1" 1199 - "@smithy/querystring-builder" "^4.0.1" 1200 - "@smithy/types" "^4.1.0" 1236 + "@smithy/protocol-http" "^5.1.0" 1237 + "@smithy/querystring-builder" "^4.0.2" 1238 + "@smithy/types" "^4.2.0" 1201 1239 "@smithy/util-base64" "^4.0.0" 1202 1240 tslib "^2.6.2" 1203 1241 1204 - "@smithy/hash-node@^4.0.1": 1205 - version "4.0.1" 1206 - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-4.0.1.tgz#ce78fc11b848a4f47c2e1e7a07fb6b982d2f130c" 1207 - integrity sha512-TJ6oZS+3r2Xu4emVse1YPB3Dq3d8RkZDKcPr71Nj/lJsdAP1c7oFzYqEn1IBc915TsgLl2xIJNuxCz+gLbLE0w== 1242 + "@smithy/hash-node@^4.0.2": 1243 + version "4.0.2" 1244 + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-4.0.2.tgz#a34fe5a33b067d754ca63302b9791778f003e437" 1245 + integrity sha512-VnTpYPnRUE7yVhWozFdlxcYknv9UN7CeOqSrMH+V877v4oqtVYuoqhIhtSjmGPvYrYnAkaM61sLMKHvxL138yg== 1208 1246 dependencies: 1209 - "@smithy/types" "^4.1.0" 1247 + "@smithy/types" "^4.2.0" 1210 1248 "@smithy/util-buffer-from" "^4.0.0" 1211 1249 "@smithy/util-utf8" "^4.0.0" 1212 1250 tslib "^2.6.2" 1213 1251 1214 - "@smithy/invalid-dependency@^4.0.1": 1215 - version "4.0.1" 1216 - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-4.0.1.tgz#704d1acb6fac105558c17d53f6d55da6b0d6b6fc" 1217 - integrity sha512-gdudFPf4QRQ5pzj7HEnu6FhKRi61BfH/Gk5Yf6O0KiSbr1LlVhgjThcvjdu658VE6Nve8vaIWB8/fodmS1rBPQ== 1252 + "@smithy/invalid-dependency@^4.0.2": 1253 + version "4.0.2" 1254 + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-4.0.2.tgz#e9b1c5e407d795f10a03afba90e37bccdc3e38f7" 1255 + integrity sha512-GatB4+2DTpgWPday+mnUkoumP54u/MDM/5u44KF9hIu8jF0uafZtQLcdfIKkIcUNuF/fBojpLEHZS/56JqPeXQ== 1218 1256 dependencies: 1219 - "@smithy/types" "^4.1.0" 1257 + "@smithy/types" "^4.2.0" 1220 1258 tslib "^2.6.2" 1221 1259 1222 1260 "@smithy/is-array-buffer@^2.2.0": ··· 1233 1271 dependencies: 1234 1272 tslib "^2.6.2" 1235 1273 1236 - "@smithy/middleware-content-length@^4.0.1": 1237 - version "4.0.1" 1238 - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-4.0.1.tgz#378bc94ae623f45e412fb4f164b5bb90b9de2ba3" 1239 - integrity sha512-OGXo7w5EkB5pPiac7KNzVtfCW2vKBTZNuCctn++TTSOMpe6RZO/n6WEC1AxJINn3+vWLKW49uad3lo/u0WJ9oQ== 1274 + "@smithy/middleware-content-length@^4.0.2": 1275 + version "4.0.2" 1276 + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-4.0.2.tgz#ff78658e8047ad7038f58478cf8713ee2f6ef647" 1277 + integrity sha512-hAfEXm1zU+ELvucxqQ7I8SszwQ4znWMbNv6PLMndN83JJN41EPuS93AIyh2N+gJ6x8QFhzSO6b7q2e6oClDI8A== 1240 1278 dependencies: 1241 - "@smithy/protocol-http" "^5.0.1" 1242 - "@smithy/types" "^4.1.0" 1279 + "@smithy/protocol-http" "^5.1.0" 1280 + "@smithy/types" "^4.2.0" 1243 1281 tslib "^2.6.2" 1244 1282 1245 - "@smithy/middleware-endpoint@^4.0.6": 1246 - version "4.0.6" 1247 - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.6.tgz#7ead08fcfda92ee470786a7f458e9b59048407eb" 1248 - integrity sha512-ftpmkTHIFqgaFugcjzLZv3kzPEFsBFSnq1JsIkr2mwFzCraZVhQk2gqN51OOeRxqhbPTkRFj39Qd2V91E/mQxg== 1283 + "@smithy/middleware-endpoint@^4.1.0": 1284 + version "4.1.0" 1285 + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.1.0.tgz#cbfe47c5632942c960dbcf71fb02fd0d9985444d" 1286 + integrity sha512-xhLimgNCbCzsUppRTGXWkZywksuTThxaIB0HwbpsVLY5sceac4e1TZ/WKYqufQLaUy+gUSJGNdwD2jo3cXL0iA== 1249 1287 dependencies: 1250 - "@smithy/core" "^3.1.5" 1251 - "@smithy/middleware-serde" "^4.0.2" 1252 - "@smithy/node-config-provider" "^4.0.1" 1253 - "@smithy/shared-ini-file-loader" "^4.0.1" 1254 - "@smithy/types" "^4.1.0" 1255 - "@smithy/url-parser" "^4.0.1" 1256 - "@smithy/util-middleware" "^4.0.1" 1288 + "@smithy/core" "^3.2.0" 1289 + "@smithy/middleware-serde" "^4.0.3" 1290 + "@smithy/node-config-provider" "^4.0.2" 1291 + "@smithy/shared-ini-file-loader" "^4.0.2" 1292 + "@smithy/types" "^4.2.0" 1293 + "@smithy/url-parser" "^4.0.2" 1294 + "@smithy/util-middleware" "^4.0.2" 1257 1295 tslib "^2.6.2" 1258 1296 1259 - "@smithy/middleware-retry@^4.0.7": 1260 - version "4.0.7" 1261 - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.0.7.tgz#8bb2014842a6144f230967db502f5fe6adcd6529" 1262 - integrity sha512-58j9XbUPLkqAcV1kHzVX/kAR16GT+j7DUZJqwzsxh1jtz7G82caZiGyyFgUvogVfNTg3TeAOIJepGc8TXF4AVQ== 1297 + "@smithy/middleware-retry@^4.1.0": 1298 + version "4.1.0" 1299 + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.1.0.tgz#338ac1e025bbc6fd7b008152c4efa8bc0591acc9" 1300 + integrity sha512-2zAagd1s6hAaI/ap6SXi5T3dDwBOczOMCSkkYzktqN1+tzbk1GAsHNAdo/1uzxz3Ky02jvZQwbi/vmDA6z4Oyg== 1263 1301 dependencies: 1264 - "@smithy/node-config-provider" "^4.0.1" 1265 - "@smithy/protocol-http" "^5.0.1" 1266 - "@smithy/service-error-classification" "^4.0.1" 1267 - "@smithy/smithy-client" "^4.1.6" 1268 - "@smithy/types" "^4.1.0" 1269 - "@smithy/util-middleware" "^4.0.1" 1270 - "@smithy/util-retry" "^4.0.1" 1302 + "@smithy/node-config-provider" "^4.0.2" 1303 + "@smithy/protocol-http" "^5.1.0" 1304 + "@smithy/service-error-classification" "^4.0.2" 1305 + "@smithy/smithy-client" "^4.2.0" 1306 + "@smithy/types" "^4.2.0" 1307 + "@smithy/util-middleware" "^4.0.2" 1308 + "@smithy/util-retry" "^4.0.2" 1271 1309 tslib "^2.6.2" 1272 1310 uuid "^9.0.1" 1273 1311 1274 - "@smithy/middleware-serde@^4.0.2": 1275 - version "4.0.2" 1276 - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.0.2.tgz#f792d72f6ad8fa6b172e3f19c6fe1932a856a56d" 1277 - integrity sha512-Sdr5lOagCn5tt+zKsaW+U2/iwr6bI9p08wOkCp6/eL6iMbgdtc2R5Ety66rf87PeohR0ExI84Txz9GYv5ou3iQ== 1312 + "@smithy/middleware-serde@^4.0.3": 1313 + version "4.0.3" 1314 + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.0.3.tgz#b90ef1065ad9dc0b54c561fae73c8a5792d145e3" 1315 + integrity sha512-rfgDVrgLEVMmMn0BI8O+8OVr6vXzjV7HZj57l0QxslhzbvVfikZbVfBVthjLHqib4BW44QhcIgJpvebHlRaC9A== 1278 1316 dependencies: 1279 - "@smithy/types" "^4.1.0" 1317 + "@smithy/types" "^4.2.0" 1280 1318 tslib "^2.6.2" 1281 1319 1282 - "@smithy/middleware-stack@^4.0.1": 1283 - version "4.0.1" 1284 - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-4.0.1.tgz#c157653f9df07f7c26e32f49994d368e4e071d22" 1285 - integrity sha512-dHwDmrtR/ln8UTHpaIavRSzeIk5+YZTBtLnKwDW3G2t6nAupCiQUvNzNoHBpik63fwUaJPtlnMzXbQrNFWssIA== 1320 + "@smithy/middleware-stack@^4.0.2": 1321 + version "4.0.2" 1322 + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-4.0.2.tgz#ca7bc3eedc7c1349e2cf94e0dc92a68d681bef18" 1323 + integrity sha512-eSPVcuJJGVYrFYu2hEq8g8WWdJav3sdrI4o2c6z/rjnYDd3xH9j9E7deZQCzFn4QvGPouLngH3dQ+QVTxv5bOQ== 1286 1324 dependencies: 1287 - "@smithy/types" "^4.1.0" 1325 + "@smithy/types" "^4.2.0" 1288 1326 tslib "^2.6.2" 1289 1327 1290 - "@smithy/node-config-provider@^4.0.1": 1291 - version "4.0.1" 1292 - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-4.0.1.tgz#4e84fe665c0774d5f4ebb75144994fc6ebedf86e" 1293 - integrity sha512-8mRTjvCtVET8+rxvmzRNRR0hH2JjV0DFOmwXPrISmTIJEfnCBugpYYGAsCj8t41qd+RB5gbheSQ/6aKZCQvFLQ== 1328 + "@smithy/node-config-provider@^4.0.2": 1329 + version "4.0.2" 1330 + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-4.0.2.tgz#017ba626828bced0fa588e795246e5468632f3ef" 1331 + integrity sha512-WgCkILRZfJwJ4Da92a6t3ozN/zcvYyJGUTmfGbgS/FkCcoCjl7G4FJaCDN1ySdvLvemnQeo25FdkyMSTSwulsw== 1294 1332 dependencies: 1295 - "@smithy/property-provider" "^4.0.1" 1296 - "@smithy/shared-ini-file-loader" "^4.0.1" 1297 - "@smithy/types" "^4.1.0" 1333 + "@smithy/property-provider" "^4.0.2" 1334 + "@smithy/shared-ini-file-loader" "^4.0.2" 1335 + "@smithy/types" "^4.2.0" 1298 1336 tslib "^2.6.2" 1299 1337 1300 - "@smithy/node-http-handler@^4.0.3": 1301 - version "4.0.3" 1302 - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.0.3.tgz#363e1d453168b4e37e8dd456d0a368a4e413bc98" 1303 - integrity sha512-dYCLeINNbYdvmMLtW0VdhW1biXt+PPCGazzT5ZjKw46mOtdgToQEwjqZSS9/EN8+tNs/RO0cEWG044+YZs97aA== 1338 + "@smithy/node-http-handler@^4.0.4": 1339 + version "4.0.4" 1340 + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.0.4.tgz#aa583d201c1ee968170b65a07f06d633c214b7a1" 1341 + integrity sha512-/mdqabuAT3o/ihBGjL94PUbTSPSRJ0eeVTdgADzow0wRJ0rN4A27EOrtlK56MYiO1fDvlO3jVTCxQtQmK9dZ1g== 1304 1342 dependencies: 1305 - "@smithy/abort-controller" "^4.0.1" 1306 - "@smithy/protocol-http" "^5.0.1" 1307 - "@smithy/querystring-builder" "^4.0.1" 1308 - "@smithy/types" "^4.1.0" 1343 + "@smithy/abort-controller" "^4.0.2" 1344 + "@smithy/protocol-http" "^5.1.0" 1345 + "@smithy/querystring-builder" "^4.0.2" 1346 + "@smithy/types" "^4.2.0" 1309 1347 tslib "^2.6.2" 1310 1348 1311 - "@smithy/property-provider@^4.0.1": 1312 - version "4.0.1" 1313 - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-4.0.1.tgz#8d35d5997af2a17cf15c5e921201ef6c5e3fc870" 1314 - integrity sha512-o+VRiwC2cgmk/WFV0jaETGOtX16VNPp2bSQEzu0whbReqE1BMqsP2ami2Vi3cbGVdKu1kq9gQkDAGKbt0WOHAQ== 1349 + "@smithy/property-provider@^4.0.2": 1350 + version "4.0.2" 1351 + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-4.0.2.tgz#4572c10415c9d4215f3df1530ba61b0319b17b55" 1352 + integrity sha512-wNRoQC1uISOuNc2s4hkOYwYllmiyrvVXWMtq+TysNRVQaHm4yoafYQyjN/goYZS+QbYlPIbb/QRjaUZMuzwQ7A== 1315 1353 dependencies: 1316 - "@smithy/types" "^4.1.0" 1354 + "@smithy/types" "^4.2.0" 1317 1355 tslib "^2.6.2" 1318 1356 1319 - "@smithy/protocol-http@^5.0.1": 1320 - version "5.0.1" 1321 - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-5.0.1.tgz#37c248117b29c057a9adfad4eb1d822a67079ff1" 1322 - integrity sha512-TE4cpj49jJNB/oHyh/cRVEgNZaoPaxd4vteJNB0yGidOCVR0jCw/hjPVsT8Q8FRmj8Bd3bFZt8Dh7xGCT+xMBQ== 1357 + "@smithy/protocol-http@^5.1.0": 1358 + version "5.1.0" 1359 + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-5.1.0.tgz#ad34e336a95944785185234bebe2ec8dbe266936" 1360 + integrity sha512-KxAOL1nUNw2JTYrtviRRjEnykIDhxc84qMBzxvu1MUfQfHTuBlCG7PA6EdVwqpJjH7glw7FqQoFxUJSyBQgu7g== 1323 1361 dependencies: 1324 - "@smithy/types" "^4.1.0" 1362 + "@smithy/types" "^4.2.0" 1325 1363 tslib "^2.6.2" 1326 1364 1327 - "@smithy/querystring-builder@^4.0.1": 1328 - version "4.0.1" 1329 - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-4.0.1.tgz#37e1e05d0d33c6f694088abc3e04eafb65cb6976" 1330 - integrity sha512-wU87iWZoCbcqrwszsOewEIuq+SU2mSoBE2CcsLwE0I19m0B2gOJr1MVjxWcDQYOzHbR1xCk7AcOBbGFUYOKvdg== 1365 + "@smithy/querystring-builder@^4.0.2": 1366 + version "4.0.2" 1367 + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-4.0.2.tgz#834cea95bf413ab417bf9c166d60fd80d2cb3016" 1368 + integrity sha512-NTOs0FwHw1vimmQM4ebh+wFQvOwkEf/kQL6bSM1Lock+Bv4I89B3hGYoUEPkmvYPkDKyp5UdXJYu+PoTQ3T31Q== 1331 1369 dependencies: 1332 - "@smithy/types" "^4.1.0" 1370 + "@smithy/types" "^4.2.0" 1333 1371 "@smithy/util-uri-escape" "^4.0.0" 1334 1372 tslib "^2.6.2" 1335 1373 1336 - "@smithy/querystring-parser@^4.0.1": 1337 - version "4.0.1" 1338 - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-4.0.1.tgz#312dc62b146f8bb8a67558d82d4722bb9211af42" 1339 - integrity sha512-Ma2XC7VS9aV77+clSFylVUnPZRindhB7BbmYiNOdr+CHt/kZNJoPP0cd3QxCnCFyPXC4eybmyE98phEHkqZ5Jw== 1374 + "@smithy/querystring-parser@^4.0.2": 1375 + version "4.0.2" 1376 + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-4.0.2.tgz#d80c5afb740e12ad8b4d4f58415e402c69712479" 1377 + integrity sha512-v6w8wnmZcVXjfVLjxw8qF7OwESD9wnpjp0Dqry/Pod0/5vcEA3qxCr+BhbOHlxS8O+29eLpT3aagxXGwIoEk7Q== 1340 1378 dependencies: 1341 - "@smithy/types" "^4.1.0" 1379 + "@smithy/types" "^4.2.0" 1342 1380 tslib "^2.6.2" 1343 1381 1344 - "@smithy/service-error-classification@^4.0.1": 1345 - version "4.0.1" 1346 - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-4.0.1.tgz#84e78579af46c7b79c900b6d6cc822c9465f3259" 1347 - integrity sha512-3JNjBfOWpj/mYfjXJHB4Txc/7E4LVq32bwzE7m28GN79+M1f76XHflUaSUkhOriprPDzev9cX/M+dEB80DNDKA== 1382 + "@smithy/service-error-classification@^4.0.2": 1383 + version "4.0.2" 1384 + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-4.0.2.tgz#96740ed8be7ac5ad7d6f296d4ddf3f66444b8dcc" 1385 + integrity sha512-LA86xeFpTKn270Hbkixqs5n73S+LVM0/VZco8dqd+JT75Dyx3Lcw/MraL7ybjmz786+160K8rPOmhsq0SocoJQ== 1348 1386 dependencies: 1349 - "@smithy/types" "^4.1.0" 1387 + "@smithy/types" "^4.2.0" 1350 1388 1351 - "@smithy/shared-ini-file-loader@^4.0.1": 1352 - version "4.0.1" 1353 - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.0.1.tgz#d35c21c29454ca4e58914a4afdde68d3b2def1ee" 1354 - integrity sha512-hC8F6qTBbuHRI/uqDgqqi6J0R4GtEZcgrZPhFQnMhfJs3MnUTGSnR1NSJCJs5VWlMydu0kJz15M640fJlRsIOw== 1389 + "@smithy/shared-ini-file-loader@^4.0.2": 1390 + version "4.0.2" 1391 + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.0.2.tgz#15043f0516fe09ff4b22982bc5f644dc701ebae5" 1392 + integrity sha512-J9/gTWBGVuFZ01oVA6vdb4DAjf1XbDhK6sLsu3OS9qmLrS6KB5ygpeHiM3miIbj1qgSJ96GYszXFWv6ErJ8QEw== 1355 1393 dependencies: 1356 - "@smithy/types" "^4.1.0" 1394 + "@smithy/types" "^4.2.0" 1357 1395 tslib "^2.6.2" 1358 1396 1359 - "@smithy/signature-v4@^5.0.1": 1360 - version "5.0.1" 1361 - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-5.0.1.tgz#f93401b176150286ba246681031b0503ec359270" 1362 - integrity sha512-nCe6fQ+ppm1bQuw5iKoeJ0MJfz2os7Ic3GBjOkLOPtavbD1ONoyE3ygjBfz2ythFWm4YnRm6OxW+8p/m9uCoIA== 1397 + "@smithy/signature-v4@^5.0.2": 1398 + version "5.0.2" 1399 + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-5.0.2.tgz#363854e946fbc5bc206ff82e79ada5d5c14be640" 1400 + integrity sha512-Mz+mc7okA73Lyz8zQKJNyr7lIcHLiPYp0+oiqiMNc/t7/Kf2BENs5d63pEj7oPqdjaum6g0Fc8wC78dY1TgtXw== 1363 1401 dependencies: 1364 1402 "@smithy/is-array-buffer" "^4.0.0" 1365 - "@smithy/protocol-http" "^5.0.1" 1366 - "@smithy/types" "^4.1.0" 1403 + "@smithy/protocol-http" "^5.1.0" 1404 + "@smithy/types" "^4.2.0" 1367 1405 "@smithy/util-hex-encoding" "^4.0.0" 1368 - "@smithy/util-middleware" "^4.0.1" 1406 + "@smithy/util-middleware" "^4.0.2" 1369 1407 "@smithy/util-uri-escape" "^4.0.0" 1370 1408 "@smithy/util-utf8" "^4.0.0" 1371 1409 tslib "^2.6.2" 1372 1410 1373 - "@smithy/smithy-client@^4.1.6": 1374 - version "4.1.6" 1375 - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.1.6.tgz#2183c922d086d33252012232be891f29a008d932" 1376 - integrity sha512-UYDolNg6h2O0L+cJjtgSyKKvEKCOa/8FHYJnBobyeoeWDmNpXjwOAtw16ezyeu1ETuuLEOZbrynK0ZY1Lx9Jbw== 1411 + "@smithy/smithy-client@^4.2.0": 1412 + version "4.2.0" 1413 + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.2.0.tgz#0c64cae4fb5bb4f26386e9b2c33fc9a3c24c9df3" 1414 + integrity sha512-Qs65/w30pWV7LSFAez9DKy0Koaoh3iHhpcpCCJ4waj/iqwsuSzJna2+vYwq46yBaqO5ZbP9TjUsATUNxrKeBdw== 1377 1415 dependencies: 1378 - "@smithy/core" "^3.1.5" 1379 - "@smithy/middleware-endpoint" "^4.0.6" 1380 - "@smithy/middleware-stack" "^4.0.1" 1381 - "@smithy/protocol-http" "^5.0.1" 1382 - "@smithy/types" "^4.1.0" 1383 - "@smithy/util-stream" "^4.1.2" 1416 + "@smithy/core" "^3.2.0" 1417 + "@smithy/middleware-endpoint" "^4.1.0" 1418 + "@smithy/middleware-stack" "^4.0.2" 1419 + "@smithy/protocol-http" "^5.1.0" 1420 + "@smithy/types" "^4.2.0" 1421 + "@smithy/util-stream" "^4.2.0" 1384 1422 tslib "^2.6.2" 1385 1423 1386 - "@smithy/types@^4.1.0": 1387 - version "4.1.0" 1388 - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-4.1.0.tgz#19de0b6087bccdd4182a334eb5d3d2629699370f" 1389 - integrity sha512-enhjdwp4D7CXmwLtD6zbcDMbo6/T6WtuuKCY49Xxc6OMOmUWlBEBDREsxxgV2LIdeQPW756+f97GzcgAwp3iLw== 1424 + "@smithy/types@^4.2.0": 1425 + version "4.2.0" 1426 + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-4.2.0.tgz#e7998984cc54b1acbc32e6d4cf982c712e3d26b6" 1427 + integrity sha512-7eMk09zQKCO+E/ivsjQv+fDlOupcFUCSC/L2YUPgwhvowVGWbPQHjEFcmjt7QQ4ra5lyowS92SV53Zc6XD4+fg== 1390 1428 dependencies: 1391 1429 tslib "^2.6.2" 1392 1430 1393 - "@smithy/url-parser@^4.0.1": 1394 - version "4.0.1" 1395 - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-4.0.1.tgz#b47743f785f5b8d81324878cbb1b5f834bf8d85a" 1396 - integrity sha512-gPXcIEUtw7VlK8f/QcruNXm7q+T5hhvGu9tl63LsJPZ27exB6dtNwvh2HIi0v7JcXJ5emBxB+CJxwaLEdJfA+g== 1431 + "@smithy/url-parser@^4.0.2": 1432 + version "4.0.2" 1433 + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-4.0.2.tgz#a316f7d8593ffab796348bc5df96237833880713" 1434 + integrity sha512-Bm8n3j2ScqnT+kJaClSVCMeiSenK6jVAzZCNewsYWuZtnBehEz4r2qP0riZySZVfzB+03XZHJeqfmJDkeeSLiQ== 1397 1435 dependencies: 1398 - "@smithy/querystring-parser" "^4.0.1" 1399 - "@smithy/types" "^4.1.0" 1436 + "@smithy/querystring-parser" "^4.0.2" 1437 + "@smithy/types" "^4.2.0" 1400 1438 tslib "^2.6.2" 1401 1439 1402 1440 "@smithy/util-base64@^4.0.0": ··· 1445 1483 dependencies: 1446 1484 tslib "^2.6.2" 1447 1485 1448 - "@smithy/util-defaults-mode-browser@^4.0.7": 1449 - version "4.0.7" 1450 - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.7.tgz#54595ab3da6765bfb388e8e8b594276e0f485710" 1451 - integrity sha512-CZgDDrYHLv0RUElOsmZtAnp1pIjwDVCSuZWOPhIOBvG36RDfX1Q9+6lS61xBf+qqvHoqRjHxgINeQz47cYFC2Q== 1486 + "@smithy/util-defaults-mode-browser@^4.0.8": 1487 + version "4.0.8" 1488 + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.8.tgz#77bc4590cdc928901b80f3482e79607a2cbcb150" 1489 + integrity sha512-ZTypzBra+lI/LfTYZeop9UjoJhhGRTg3pxrNpfSTQLd3AJ37r2z4AXTKpq1rFXiiUIJsYyFgNJdjWRGP/cbBaQ== 1452 1490 dependencies: 1453 - "@smithy/property-provider" "^4.0.1" 1454 - "@smithy/smithy-client" "^4.1.6" 1455 - "@smithy/types" "^4.1.0" 1491 + "@smithy/property-provider" "^4.0.2" 1492 + "@smithy/smithy-client" "^4.2.0" 1493 + "@smithy/types" "^4.2.0" 1456 1494 bowser "^2.11.0" 1457 1495 tslib "^2.6.2" 1458 1496 1459 - "@smithy/util-defaults-mode-node@^4.0.7": 1460 - version "4.0.7" 1461 - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.7.tgz#0dea136de9096a36d84416f6af5843d866621491" 1462 - integrity sha512-79fQW3hnfCdrfIi1soPbK3zmooRFnLpSx3Vxi6nUlqaaQeC5dm8plt4OTNDNqEEEDkvKghZSaoti684dQFVrGQ== 1497 + "@smithy/util-defaults-mode-node@^4.0.8": 1498 + version "4.0.8" 1499 + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.8.tgz#123b517efe6434977139b341d1f64b5f1e743aac" 1500 + integrity sha512-Rgk0Jc/UDfRTzVthye/k2dDsz5Xxs9LZaKCNPgJTRyoyBoeiNCnHsYGOyu1PKN+sDyPnJzMOz22JbwxzBp9NNA== 1463 1501 dependencies: 1464 - "@smithy/config-resolver" "^4.0.1" 1465 - "@smithy/credential-provider-imds" "^4.0.1" 1466 - "@smithy/node-config-provider" "^4.0.1" 1467 - "@smithy/property-provider" "^4.0.1" 1468 - "@smithy/smithy-client" "^4.1.6" 1469 - "@smithy/types" "^4.1.0" 1502 + "@smithy/config-resolver" "^4.1.0" 1503 + "@smithy/credential-provider-imds" "^4.0.2" 1504 + "@smithy/node-config-provider" "^4.0.2" 1505 + "@smithy/property-provider" "^4.0.2" 1506 + "@smithy/smithy-client" "^4.2.0" 1507 + "@smithy/types" "^4.2.0" 1470 1508 tslib "^2.6.2" 1471 1509 1472 - "@smithy/util-endpoints@^3.0.1": 1473 - version "3.0.1" 1474 - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-3.0.1.tgz#44ccbf1721447966f69496c9003b87daa8f61975" 1475 - integrity sha512-zVdUENQpdtn9jbpD9SCFK4+aSiavRb9BxEtw9ZGUR1TYo6bBHbIoi7VkrFQ0/RwZlzx0wRBaRmPclj8iAoJCLA== 1510 + "@smithy/util-endpoints@^3.0.2": 1511 + version "3.0.2" 1512 + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-3.0.2.tgz#6933a0d6d4a349523ef71ca9540c9c0b222b559e" 1513 + integrity sha512-6QSutU5ZyrpNbnd51zRTL7goojlcnuOB55+F9VBD+j8JpRY50IGamsjlycrmpn8PQkmJucFW8A0LSfXj7jjtLQ== 1476 1514 dependencies: 1477 - "@smithy/node-config-provider" "^4.0.1" 1478 - "@smithy/types" "^4.1.0" 1515 + "@smithy/node-config-provider" "^4.0.2" 1516 + "@smithy/types" "^4.2.0" 1479 1517 tslib "^2.6.2" 1480 1518 1481 1519 "@smithy/util-hex-encoding@^4.0.0": ··· 1485 1523 dependencies: 1486 1524 tslib "^2.6.2" 1487 1525 1488 - "@smithy/util-middleware@^4.0.1": 1489 - version "4.0.1" 1490 - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-4.0.1.tgz#58d363dcd661219298c89fa176a28e98ccc4bf43" 1491 - integrity sha512-HiLAvlcqhbzhuiOa0Lyct5IIlyIz0PQO5dnMlmQ/ubYM46dPInB+3yQGkfxsk6Q24Y0n3/JmcA1v5iEhmOF5mA== 1526 + "@smithy/util-middleware@^4.0.2": 1527 + version "4.0.2" 1528 + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-4.0.2.tgz#272f1249664e27068ef0d5f967a233bf7b77962c" 1529 + integrity sha512-6GDamTGLuBQVAEuQ4yDQ+ti/YINf/MEmIegrEeg7DdB/sld8BX1lqt9RRuIcABOhAGTA50bRbPzErez7SlDtDQ== 1492 1530 dependencies: 1493 - "@smithy/types" "^4.1.0" 1531 + "@smithy/types" "^4.2.0" 1494 1532 tslib "^2.6.2" 1495 1533 1496 - "@smithy/util-retry@^4.0.1": 1497 - version "4.0.1" 1498 - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-4.0.1.tgz#fb5f26492383dcb9a09cc4aee23a10f839cd0769" 1499 - integrity sha512-WmRHqNVwn3kI3rKk1LsKcVgPBG6iLTBGC1iYOV3GQegwJ3E8yjzHytPt26VNzOWr1qu0xE03nK0Ug8S7T7oufw== 1534 + "@smithy/util-retry@^4.0.2": 1535 + version "4.0.2" 1536 + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-4.0.2.tgz#9b64cf460d63555884e641721d19e3c0abff8ee6" 1537 + integrity sha512-Qryc+QG+7BCpvjloFLQrmlSd0RsVRHejRXd78jNO3+oREueCjwG1CCEH1vduw/ZkM1U9TztwIKVIi3+8MJScGg== 1500 1538 dependencies: 1501 - "@smithy/service-error-classification" "^4.0.1" 1502 - "@smithy/types" "^4.1.0" 1539 + "@smithy/service-error-classification" "^4.0.2" 1540 + "@smithy/types" "^4.2.0" 1503 1541 tslib "^2.6.2" 1504 1542 1505 - "@smithy/util-stream@^4.1.2": 1506 - version "4.1.2" 1507 - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.1.2.tgz#b867f25bc8b016de0582810a2f4092a71c5e3244" 1508 - integrity sha512-44PKEqQ303d3rlQuiDpcCcu//hV8sn+u2JBo84dWCE0rvgeiVl0IlLMagbU++o0jCWhYCsHaAt9wZuZqNe05Hw== 1543 + "@smithy/util-stream@^4.2.0": 1544 + version "4.2.0" 1545 + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.2.0.tgz#85f85516b0042726162bf619caa3358332195652" 1546 + integrity sha512-Vj1TtwWnuWqdgQI6YTUF5hQ/0jmFiOYsc51CSMgj7QfyO+RF4EnT2HNjoviNlOOmgzgvf3f5yno+EiC4vrnaWQ== 1509 1547 dependencies: 1510 - "@smithy/fetch-http-handler" "^5.0.1" 1511 - "@smithy/node-http-handler" "^4.0.3" 1512 - "@smithy/types" "^4.1.0" 1548 + "@smithy/fetch-http-handler" "^5.0.2" 1549 + "@smithy/node-http-handler" "^4.0.4" 1550 + "@smithy/types" "^4.2.0" 1513 1551 "@smithy/util-base64" "^4.0.0" 1514 1552 "@smithy/util-buffer-from" "^4.0.0" 1515 1553 "@smithy/util-hex-encoding" "^4.0.0" ··· 1584 1622 "@types/range-parser" "*" 1585 1623 "@types/send" "*" 1586 1624 1587 - "@types/express@^4.17.17": 1625 + "@types/express@^4.17.20": 1588 1626 version "4.17.21" 1589 1627 resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.21.tgz#c26d4a151e60efe0084b23dc3369ebc631ed192d" 1590 1628 integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ== ··· 1604 1642 resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f" 1605 1643 integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA== 1606 1644 1607 - "@types/jsonwebtoken@^9.0.2": 1645 + "@types/jsonwebtoken@^9.0.4": 1608 1646 version "9.0.9" 1609 1647 resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-9.0.9.tgz#a4c3a446c0ebaaf467a58398382616f416345fb3" 1610 1648 integrity sha512-uoe+GxEuHbvy12OUQct2X9JenKM3qAscquYymuQN4fMWG9DBQtykrQEFcAbVACF7qaLw9BePSodUL0kquqBJpQ== ··· 1635 1673 integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== 1636 1674 1637 1675 "@types/node@*", "@types/node@>=13.7.0", "@types/node@^22.0.1", "@types/node@^22.5.4": 1638 - version "22.13.10" 1639 - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.13.10.tgz#df9ea358c5ed991266becc3109dc2dc9125d77e4" 1640 - integrity sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw== 1676 + version "22.13.13" 1677 + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.13.13.tgz#5e7d110fb509b0d4a43fbf48fa9d6e0f83e1b1e7" 1678 + integrity sha512-ClsL5nMwKaBRwPcCvH8E7+nU4GxHVx1axNvMZTFHMEfNI7oahimt26P5zjVCRrjiIWj6YFXfE1v3dEp94wLcGQ== 1641 1679 dependencies: 1642 1680 undici-types "~6.20.0" 1643 1681 ··· 2216 2254 integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== 2217 2255 2218 2256 array.prototype.reduce@^1.0.6: 2219 - version "1.0.7" 2220 - resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz#6aadc2f995af29cb887eb866d981dc85ab6f7dc7" 2221 - integrity sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q== 2257 + version "1.0.8" 2258 + resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.8.tgz#42f97f5078daedca687d4463fd3c05cbfd83da57" 2259 + integrity sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw== 2222 2260 dependencies: 2223 - call-bind "^1.0.7" 2261 + call-bind "^1.0.8" 2262 + call-bound "^1.0.4" 2224 2263 define-properties "^1.2.1" 2225 - es-abstract "^1.23.2" 2264 + es-abstract "^1.23.9" 2226 2265 es-array-method-boxes-properly "^1.0.0" 2227 2266 es-errors "^1.3.0" 2228 - es-object-atoms "^1.0.0" 2229 - is-string "^1.0.7" 2267 + es-object-atoms "^1.1.1" 2268 + is-string "^1.1.1" 2230 2269 2231 2270 arraybuffer.prototype.slice@^1.0.4: 2232 2271 version "1.0.4" ··· 2362 2401 form-data "^4.0.0" 2363 2402 2364 2403 axios@^1.2.2, axios@^1.7.4: 2365 - version "1.8.3" 2366 - resolved "https://registry.yarnpkg.com/axios/-/axios-1.8.3.tgz#9ebccd71c98651d547162a018a1a95a4b4ed4de8" 2367 - integrity sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A== 2404 + version "1.8.4" 2405 + resolved "https://registry.yarnpkg.com/axios/-/axios-1.8.4.tgz#78990bb4bc63d2cae072952d374835950a82f447" 2406 + integrity sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw== 2368 2407 dependencies: 2369 2408 follow-redirects "^1.15.6" 2370 2409 form-data "^4.0.0" ··· 2744 2783 integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 2745 2784 2746 2785 caniuse-lite@^1.0.30001688: 2747 - version "1.0.30001703" 2748 - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001703.tgz#977cb4920598c158f491ecf4f4f2cfed9e354718" 2749 - integrity sha512-kRlAGTRWgPsOj7oARC9m1okJEXdL/8fekFVcxA8Hl7GH4r/sN4OJn/i6Flde373T50KS7Y37oFbMwlE8+F42kQ== 2786 + version "1.0.30001707" 2787 + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001707.tgz#c5e104d199e6f4355a898fcd995a066c7eb9bf41" 2788 + integrity sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw== 2750 2789 2751 2790 caseless@~0.12.0: 2752 2791 version "0.12.0" ··· 3459 3498 integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== 3460 3499 3461 3500 electron-to-chromium@^1.5.73: 3462 - version "1.5.114" 3463 - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.114.tgz#f2bb4fda80a7db4ea273565e75b0ebbe19af0ac3" 3464 - integrity sha512-DFptFef3iktoKlFQK/afbo274/XNWD00Am0xa7M8FZUepHlHT8PEuiNBoRfFHbH1okqN58AlhbJ4QTkcnXorjA== 3501 + version "1.5.123" 3502 + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.123.tgz#fae5bdba0ba27045895176327aa79831aba0790c" 3503 + integrity sha512-refir3NlutEZqlKaBLK0tzlVLe5P2wDKS7UQt/3SpibizgsRAPOsqQC3ffw1nlv3ze5gjRQZYHoPymgVZkplFA== 3465 3504 3466 3505 emoji-regex@^7.0.1: 3467 3506 version "7.0.3" ··· 4499 4538 whatwg-encoding "^2.0.0" 4500 4539 4501 4540 html-entities@^2.5.2: 4502 - version "2.5.2" 4503 - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.5.2.tgz#201a3cf95d3a15be7099521620d19dfb4f65359f" 4504 - integrity sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA== 4541 + version "2.5.3" 4542 + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.5.3.tgz#d8a0680bd24ee35af8c74d6d4b695627dde61c00" 4543 + integrity sha512-D3AfvN7SjhTgBSA8L1BN4FpPzuEd06uy4lHwSoRWr0lndi9BKaNzPLKGOWZ2ocSGguozr08TTb2jhCLHaemruw== 4505 4544 4506 4545 html-escaper@^2.0.0: 4507 4546 version "2.0.2" ··· 4996 5035 resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 4997 5036 integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 4998 5037 4999 - is-string@^1.0.7, is-string@^1.1.1: 5038 + is-string@^1.1.1: 5000 5039 version "1.1.1" 5001 5040 resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz#92ea3f3d5c5b6e039ca8677e5ac8d07ea773cbb9" 5002 5041 integrity sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA== ··· 5150 5189 "@sideway/formula" "^3.0.1" 5151 5190 "@sideway/pinpoint" "^2.0.0" 5152 5191 5153 - jose@^4.14.6, jose@^4.15.9: 5192 + jose@^4.15.4, jose@^4.15.9: 5154 5193 version "4.15.9" 5155 5194 resolved "https://registry.yarnpkg.com/jose/-/jose-4.15.9.tgz#9b68eda29e9a0614c042fa29387196c7dd800100" 5156 5195 integrity sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA== ··· 5299 5338 safe-buffer "^5.0.1" 5300 5339 5301 5340 jwks-rsa@^3.1.0: 5302 - version "3.1.0" 5303 - resolved "https://registry.yarnpkg.com/jwks-rsa/-/jwks-rsa-3.1.0.tgz#50406f23e38c9b2682cd437f824d7d61aa983171" 5304 - integrity sha512-v7nqlfezb9YfHHzYII3ef2a2j1XnGeSE/bK3WfumaYCqONAIstJbrEGapz4kadScZzEt7zYCN7bucj8C0Mv/Rg== 5341 + version "3.2.0" 5342 + resolved "https://registry.yarnpkg.com/jwks-rsa/-/jwks-rsa-3.2.0.tgz#132bc8bfa7b03928a273bbc93486f70226449e04" 5343 + integrity sha512-PwchfHcQK/5PSydeKCs1ylNym0w/SSv8a62DgHJ//7x2ZclCoinlsjAfDxAAbpoTPybOum/Jgy+vkvMmKz89Ww== 5305 5344 dependencies: 5306 - "@types/express" "^4.17.17" 5307 - "@types/jsonwebtoken" "^9.0.2" 5345 + "@types/express" "^4.17.20" 5346 + "@types/jsonwebtoken" "^9.0.4" 5308 5347 debug "^4.3.4" 5309 - jose "^4.14.6" 5348 + jose "^4.15.4" 5310 5349 limiter "^1.1.5" 5311 5350 lru-memoizer "^2.2.0" 5312 5351 ··· 5674 5713 integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 5675 5714 5676 5715 "mime-db@>= 1.43.0 < 2": 5677 - version "1.53.0" 5678 - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.53.0.tgz#3cb63cd820fc29896d9d4e8c32ab4fcd74ccb447" 5679 - integrity sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg== 5716 + version "1.54.0" 5717 + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.54.0.tgz#cddb3ee4f9c64530dff640236661d42cb6a314f5" 5718 + integrity sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ== 5680 5719 5681 5720 mime-types@^2.1.12, mime-types@^2.1.35, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: 5682 5721 version "2.1.35" ··· 5970 6009 integrity sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ== 5971 6010 5972 6011 nanoid@^3.3.8: 5973 - version "3.3.9" 5974 - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.9.tgz#e0097d8e026b3343ff053e9ccd407360a03f503a" 5975 - integrity sha512-SppoicMGpZvbF1l3z4x7No3OlIjP7QJvC9XR7AhZr1kL133KHnKPztkKDc+Ir4aJ/1VhTySrtKhrsycmrMQfvg== 6012 + version "3.3.11" 6013 + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b" 6014 + integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== 5976 6015 5977 6016 napi-build-utils@^2.0.0: 5978 6017 version "2.0.0" ··· 6186 6225 integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== 6187 6226 6188 6227 nwsapi@^2.2.4: 6189 - version "2.2.18" 6190 - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.18.tgz#3c4d7927e1ef4d042d319438ecfda6cd81b7ee41" 6191 - integrity sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA== 6228 + version "2.2.19" 6229 + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.19.tgz#586660f7c24c34691907002309a8dc28064c9c0b" 6230 + integrity sha512-94bcyI3RsqiZufXjkr3ltkI86iEl+I7uiHVDtcq9wJUTwYQJ5odHDeSzkkrRzi80jJ8MaeZgqKjH1bAWAFw9bA== 6192 6231 6193 6232 nyc@^14.1.1: 6194 6233 version "14.1.1" ··· 6364 6403 resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 6365 6404 integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== 6366 6405 6367 - otplib@10.2.3: 6368 - version "10.2.3" 6369 - resolved "https://registry.yarnpkg.com/otplib/-/otplib-10.2.3.tgz#5a371da0c2b36a4a92d2bdac7bf4446dd7ccafc8" 6370 - integrity sha512-dwQTF4SkLFVZyV85JFrzCh+zSSlWHyKQtjbHrDmldxqBo6BMZ8uMfQ+kcVTf/VCkbUx1KARvn9cR/inYM2nHTw== 6406 + otplib@12.0.1: 6407 + version "12.0.1" 6408 + resolved "https://registry.yarnpkg.com/otplib/-/otplib-12.0.1.tgz#c1d3060ab7aadf041ed2960302f27095777d1f73" 6409 + integrity sha512-xDGvUOQjop7RDgxTQ+o4pOol0/3xSZzawTiPKRrHnQWAy0WjhNs/5HdIDJCrqC4MBynmjXgULc6YfioaxZeFgg== 6371 6410 dependencies: 6372 - thirty-two "1.0.2" 6411 + "@otplib/core" "^12.0.1" 6412 + "@otplib/preset-default" "^12.0.1" 6413 + "@otplib/preset-v11" "^12.0.1" 6373 6414 6374 6415 own-keys@^1.0.1: 6375 6416 version "1.0.1" ··· 6644 6685 resolved "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz#943bd463bf5b71b4170115f80f8efc9a0c0eb78c" 6645 6686 integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== 6646 6687 6647 - pg-pool@^3.7.0: 6688 + pg-pool@^3.8.0: 6648 6689 version "3.8.0" 6649 6690 resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.8.0.tgz#e6bce7fc4506a8d6106551363fc5283e5445b776" 6650 6691 integrity sha512-VBw3jiVm6ZOdLBTIcXLNdSotb6Iy3uOCwDGFAksZCXmi10nyRvnP2v3jl4d+IsLYRyXf6o9hIm/ZtUzlByNUdw== 6651 6692 6652 - pg-protocol@^1.7.0: 6693 + pg-protocol@^1.8.0: 6653 6694 version "1.8.0" 6654 6695 resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.8.0.tgz#c707101dd07813868035a44571488e4b98639d48" 6655 6696 integrity sha512-jvuYlEkL03NRvOoyoRktBK7+qU5kOvlAwvmrH8sr3wbLrOdVWsRxQfz8mMy9sZFsqJ1hEWNfdWKI4SAmoL+j7g== ··· 6665 6706 postgres-date "~1.0.4" 6666 6707 postgres-interval "^1.1.0" 6667 6708 6668 - pg@8.13.1: 6669 - version "8.13.1" 6670 - resolved "https://registry.yarnpkg.com/pg/-/pg-8.13.1.tgz#6498d8b0a87ff76c2df7a32160309d3168c0c080" 6671 - integrity sha512-OUir1A0rPNZlX//c7ksiu7crsGZTKSOXJPgtNiHGIlC9H0lO+NC6ZDYksSgBYY/thSWhnSRBv8w1lieNNGATNQ== 6709 + pg@8.14.1: 6710 + version "8.14.1" 6711 + resolved "https://registry.yarnpkg.com/pg/-/pg-8.14.1.tgz#2e3d1f287b64797cdfc8d1ba000f61a7ff8d66ed" 6712 + integrity sha512-0TdbqfjwIun9Fm/r89oB7RFQ0bLgduAhiIqIXOsyKoiC/L54DbuAAzIEN/9Op0f1Po9X7iCPXGoa/Ah+2aI8Xw== 6672 6713 dependencies: 6673 6714 pg-connection-string "^2.7.0" 6674 - pg-pool "^3.7.0" 6675 - pg-protocol "^1.7.0" 6715 + pg-pool "^3.8.0" 6716 + pg-protocol "^1.8.0" 6676 6717 pg-types "^2.1.0" 6677 6718 pgpass "1.x" 6678 6719 optionalDependencies: ··· 7394 7435 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" 7395 7436 integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== 7396 7437 7397 - semver@7.5.4: 7398 - version "7.5.4" 7399 - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" 7400 - integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== 7401 - dependencies: 7402 - lru-cache "^6.0.0" 7438 + semver@7.7.1, semver@^7.3.5, semver@^7.5.4: 7439 + version "7.7.1" 7440 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.1.tgz#abd5098d82b18c6c81f6074ff2647fd3e7220c9f" 7441 + integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== 7403 7442 7404 7443 semver@^6.0.0, semver@^6.3.1: 7405 7444 version "6.3.1" 7406 7445 resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" 7407 7446 integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== 7408 - 7409 - semver@^7.3.5, semver@^7.5.4: 7410 - version "7.7.1" 7411 - resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.1.tgz#abd5098d82b18c6c81f6074ff2647fd3e7220c9f" 7412 - integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== 7413 7447 7414 7448 send@0.19.0: 7415 7449 version "0.19.0" ··· 8133 8167 resolved "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5" 8134 8168 integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== 8135 8169 8136 - thirty-two@1.0.2: 8170 + thirty-two@^1.0.2: 8137 8171 version "1.0.2" 8138 8172 resolved "https://registry.yarnpkg.com/thirty-two/-/thirty-two-1.0.2.tgz#4ca2fffc02a51290d2744b9e3f557693ca6b627a" 8139 8173 integrity sha512-OEI0IWCe+Dw46019YLl6V10Us5bi574EvlJEOcAkB29IzQ/mYD1A6RyNHLjZPiHCmuodxvgF6U+vZO1L15lxVA== ··· 8361 8395 dependencies: 8362 8396 is-typedarray "^1.0.0" 8363 8397 8364 - ua-parser-js@1.0.39: 8365 - version "1.0.39" 8366 - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.39.tgz#bfc07f361549bf249bd8f4589a4cccec18fd2018" 8367 - integrity sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw== 8398 + ua-client-hints-js@0.1.2: 8399 + version "0.1.2" 8400 + resolved "https://registry.yarnpkg.com/ua-client-hints-js/-/ua-client-hints-js-0.1.2.tgz#941ba7aa65e0c154e6092a3ce9f93e8445719b15" 8401 + integrity sha512-cYqD5p9PPCsNYpBJRYcU7s5QuZS3pdWpskOJl+QE7elbOrFzctLs5H9ppH10v7Tk0Kholzo9VIyjoTlh0B8XXg== 8402 + 8403 + ua-parser-js@1.0.40: 8404 + version "1.0.40" 8405 + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.40.tgz#ac6aff4fd8ea3e794a6aa743ec9c2fc29e75b675" 8406 + integrity sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew== 8368 8407 8369 8408 uglify-js@^3.1.4, uglify-js@^3.5.1: 8370 8409 version "3.19.3" ··· 8399 8438 integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg== 8400 8439 8401 8440 undici@^5.11.0, undici@^5.22.0: 8402 - version "5.28.5" 8403 - resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.5.tgz#b2b94b6bf8f1d919bc5a6f31f2c01deb02e54d4b" 8404 - integrity sha512-zICwjrDrcrUE0pyyJc1I2QzBkLM8FINsgOrt6WjA+BgajVq9Nxu2PbFFXUrAggLfDXlZGZBVZYw7WNV5KiBiBA== 8441 + version "5.29.0" 8442 + resolved "https://registry.yarnpkg.com/undici/-/undici-5.29.0.tgz#419595449ae3f2cdcba3580a2e8903399bd1f5a3" 8443 + integrity sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg== 8405 8444 dependencies: 8406 8445 "@fastify/busboy" "^2.0.0" 8407 8446 ··· 8910 8949 integrity sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w== 8911 8950 8912 8951 xml-crypto@^2.1.3: 8913 - version "2.1.5" 8914 - resolved "https://registry.yarnpkg.com/xml-crypto/-/xml-crypto-2.1.5.tgz#e201ee51dca18dd9ae158ac101b6e995c983dca8" 8915 - integrity sha512-xOSJmGFm+BTXmaPYk8pPV3duKo6hJuZ5niN4uMzoNcTlwYs0jAu/N3qY+ud9MhE4N7eMRuC1ayC7Yhmb7MmAWg== 8952 + version "2.1.6" 8953 + resolved "https://registry.yarnpkg.com/xml-crypto/-/xml-crypto-2.1.6.tgz#c51a016cc8391fc1d9ebd9abc589e4c08b62d652" 8954 + integrity sha512-jjvpO8vHNV8QFhW5bMypP+k4BjBqHe/HrpIwpPcdUnUTIJakSIuN96o3Sdah4tKu2z64kM/JHEH8iEHGCc6Gyw== 8916 8955 dependencies: 8917 8956 "@xmldom/xmldom" "^0.7.9" 8918 8957 xpath "0.0.32"
+3 -2
pkgs/tools/security/ggshield/default.nix
··· 7 7 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "ggshield"; 10 - version = "1.37.0"; 10 + version = "1.38.0"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "GitGuardian"; 15 15 repo = "ggshield"; 16 16 tag = "v${version}"; 17 - hash = "sha256-5Fh0wLsI3syfrk/TE5P08gsmMdZ427agQ2/yilW0Sx8="; 17 + hash = "sha256-bdAC7ILCSUhY71TP9ZUl0c2YpSAYfEQP5V8EOCg4z9I="; 18 18 }; 19 19 20 20 pythonRelaxDeps = true; ··· 36 36 pyyaml 37 37 requests 38 38 rich 39 + truststore 39 40 ]; 40 41 41 42 nativeCheckInputs =
+94 -91
pkgs/tools/virtualization/mkosi/0001-Use-wrapped-binaries-instead-of-Python-interpreter.patch
··· 1 - From eb36791f873dd645b1cbfa693b9c246943647190 Mon Sep 17 00:00:00 2001 1 + From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 2 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> 3 3 Date: Tue, 3 Sep 2024 08:57:26 +0200 4 - Subject: [PATCH 1/3] Use wrapped binaries instead of Python interpreter 4 + Subject: [PATCH] Use wrapped binaries instead of Python interpreter 5 5 6 6 Rather than calling ukify and mkosi with sys.executable, which doesn't use the Python wrappers for PATH and PYTHONPATH, we call the wrapped binaries directly. 7 7 8 8 Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> 9 9 --- 10 - mkosi/__init__.py | 19 ++++--------------- 11 - mkosi/run.py | 8 ++++---- 12 - 2 files changed, 8 insertions(+), 19 deletions(-) 10 + mkosi/__init__.py | 10 +++++----- 11 + mkosi/bootloader.py | 5 +---- 12 + mkosi/run.py | 8 ++++---- 13 + 3 files changed, 10 insertions(+), 13 deletions(-) 13 14 14 15 diff --git a/mkosi/__init__.py b/mkosi/__init__.py 15 - index cc8482c4..ba44ad31 100644 16 + index c5f785d4f18564378021352fde76be62078324ed..580a5c6464397be5a1977b794d7c044724d43490 100644 16 17 --- a/mkosi/__init__.py 17 18 +++ b/mkosi/__init__.py 18 - @@ -2059,16 +2059,7 @@ def join_initrds(initrds: Sequence[Path], output: Path) -> Path: 19 - 20 - 21 - def python_binary(config: Config, *, binary: Optional[PathString]) -> PathString: 22 - - tools = ( 23 - - not binary or 24 - - not (path := config.find_binary(binary)) or 25 - - not any(path.is_relative_to(d) for d in config.extra_search_paths) 26 - - ) 27 - - 28 - - # If there's no tools tree, prefer the interpreter from MKOSI_INTERPRETER. If there is a tools 29 - - # tree, just use the default python3 interpreter. 30 - - exe = Path(sys.executable) 31 - - return "python3" if (tools and config.tools_tree) or not exe.is_relative_to("/usr") else exe 32 - + return "@PYTHON_PEFILE@" 33 - 34 - 35 - def extract_pe_section(context: Context, binary: Path, section: str, output: Path) -> Path: 36 - @@ -2135,11 +2126,10 @@ def build_uki( 37 - if not (arch := context.config.architecture.to_efi()): 38 - die(f"Architecture {context.config.architecture} does not support UEFI") 39 - 19 + @@ -658,7 +658,7 @@ def script_maybe_chroot_sandbox( 20 + 21 + helpers = { 22 + "mkosi-chroot": [ 23 + - finalize_interpreter(bool(context.config.tools_tree)), "-SI", "/sandbox.py", 24 + + @MKOSI_SANDBOX@, 25 + "--bind", "/buildroot", "/", 26 + "--bind", "/var/tmp", "/var/tmp", 27 + *apivfs_options(root=Path("/")), 28 + @@ -1534,7 +1534,7 @@ def run_ukify( 29 + options: Sequence[PathString] = (), 30 + sign: bool = True, 31 + ) -> None: 32 + - ukify = context.config.find_binary("ukify", "/usr/lib/systemd/ukify") 33 + + ukify = context.config.find_binary("ukify", "@UKIFY@") 34 + if not ukify: 35 + die("Could not find ukify") 36 + 37 + @@ -1629,7 +1629,7 @@ def build_uki( 38 + profiles: Sequence[Path], 39 + output: Path, 40 + ) -> None: 40 41 - if not (ukify := context.config.find_binary("ukify", "/usr/lib/systemd/ukify")): 41 42 + if not (ukify := context.config.find_binary("ukify", "@UKIFY@")): 42 43 die("Could not find ukify") 43 - 44 - cmd: list[PathString] = [ 45 - - python_binary(context.config, binary=ukify), 46 - ukify, 47 - *(["--cmdline", f"@{context.workspace / 'cmdline'}"] if cmdline else []), 48 - "--os-release", f"@{context.root / 'usr/lib/os-release'}", 49 - @@ -2213,7 +2203,6 @@ def build_uki( 50 - # new .ucode section support? 51 - if ( 52 - systemd_tool_version( 53 - - python_binary(context.config, binary=ukify), 54 - ukify, 55 - sandbox=context.sandbox, 56 - ) >= "256" and 57 - @@ -2303,7 +2292,7 @@ def want_uki(context: Context) -> bool: 58 - context.config.unified_kernel_images == ConfigFeature.enabled or ( 59 - context.config.unified_kernel_images == ConfigFeature.auto and 60 - systemd_stub_binary(context).exists() and 61 - - context.config.find_binary("ukify", "/usr/lib/systemd/ukify") is not None 62 - + context.config.find_binary("ukify", "@UKIFY@") is not None 63 - ) 44 + 45 + arguments: list[PathString] = [ 46 + @@ -1764,7 +1764,7 @@ def want_uki(context: Context) -> bool: 47 + or ( 48 + context.config.unified_kernel_images == ConfigFeature.auto 49 + and systemd_stub_binary(context).exists() 50 + - and context.config.find_binary("ukify", "/usr/lib/systemd/ukify") is not None 51 + + and context.config.find_binary("ukify", "@UKIFY@") is not None 52 + ) 64 53 ) 65 - 66 - @@ -2914,7 +2903,7 @@ def check_ukify( 54 + 55 + @@ -2641,7 +2641,7 @@ def check_ukify( 67 56 reason: str, 68 57 hint: Optional[str] = None, 69 58 ) -> None: 70 59 - ukify = check_tool(config, "ukify", "/usr/lib/systemd/ukify", reason=reason, hint=hint) 71 60 + ukify = check_tool(config, "ukify", "@UKIFY@", reason=reason, hint=hint) 72 - 73 - v = systemd_tool_version(python_binary(config, binary=ukify), ukify, sandbox=config.sandbox) 61 + 62 + v = systemd_tool_version(python_binary(config), ukify, sandbox=config.sandbox) 74 63 if v < version: 64 + diff --git a/mkosi/bootloader.py b/mkosi/bootloader.py 65 + index 87a56cc03cc42df41babfe15195e84ab956a3a21..060d3816a5cc287ea61df55fd0696e49b621908f 100644 66 + --- a/mkosi/bootloader.py 67 + +++ b/mkosi/bootloader.py 68 + @@ -264,10 +264,7 @@ def find_signed_grub_image(context: Context) -> Optional[Path]: 69 + 70 + 71 + def python_binary(config: Config) -> PathString: 72 + - # If there's no tools tree, prefer the interpreter from MKOSI_INTERPRETER. If there is a tools 73 + - # tree, just use the default python3 interpreter. 74 + - exe = Path(sys.executable) 75 + - return "python3" if config.tools_tree or not exe.is_relative_to("/usr") else exe 76 + + return "@PYTHON_PEFILE@" 77 + 78 + 79 + def extract_pe_section(context: Context, binary: Path, section: str, output: Path) -> Path: 75 80 diff --git a/mkosi/run.py b/mkosi/run.py 76 - index fd3bc98e..de47349a 100644 81 + index a0e2b9cf00b5e9e9d14b570b052f1b2807b46407..fe1a1cdee6f9a586a85a6894d7a97fa5688b29f7 100644 77 82 --- a/mkosi/run.py 78 83 +++ b/mkosi/run.py 79 - @@ -450,7 +450,7 @@ def sandbox_cmd( 80 - ) -> Iterator[list[PathString]]: 81 - cmdline: list[PathString] = [ 82 - *setup, 83 - - sys.executable, "-SI", mkosi.sandbox.__file__, 84 - + @MKOSI_SANDBOX@, 85 - "--proc", "/proc", 86 - # We mounted a subdirectory of TMPDIR to /var/tmp so we unset TMPDIR so that /tmp or /var/tmp are used instead. 87 - "--unsetenv", "TMPDIR", 88 - @@ -563,7 +563,7 @@ def apivfs_options(*, root: Path = Path("/buildroot")) -> list[PathString]: 89 - def apivfs_script_cmd(*, tools: bool, options: Sequence[PathString] = ()) -> list[PathString]: 90 - exe = Path(sys.executable) 91 - return [ 92 - - "python3" if tools or not exe.is_relative_to("/usr") else exe, "-SI", "/sandbox.py", 93 - + @MKOSI_SANDBOX@, 94 - "--bind", "/", "/", 95 - "--same-dir", 96 - "--bind", "/var/tmp", "/buildroot/var/tmp", 97 - @@ -597,7 +597,7 @@ def chroot_cmd( 98 - options: Sequence[PathString] = (), 84 + @@ -378,7 +378,7 @@ def finalize_path( 85 + # Make sure that /usr/bin and /usr/sbin are always in $PATH. 86 + path += [s for s in ("/usr/bin", "/usr/sbin") if s not in path] 87 + else: 88 + - path += ["/usr/bin", "/usr/sbin"] 89 + + path += ["/usr/bin", "/usr/sbin", "@NIX_PATH@"] 90 + 91 + if prefix_usr: 92 + path = [os.fspath(root / s.lstrip("/")) if s in ("/usr/bin", "/usr/sbin") else s for s in path] 93 + @@ -564,7 +564,7 @@ def sandbox_cmd( 94 + cmdline: list[PathString] = [ 95 + *setup, 96 + *(["strace", "--detach-on=execve"] if ARG_DEBUG_SANDBOX.get() else []), 97 + - sys.executable, "-SI", module / "sandbox.py", 98 + + @MKOSI_SANDBOX@, 99 + "--proc", "/proc", 100 + # We mounted a subdirectory of TMPDIR to /var/tmp so we unset TMPDIR so that /tmp or /var/tmp are 101 + # used instead. 102 + @@ -730,7 +730,7 @@ def chroot_options() -> list[PathString]: 103 + "--unshare-ipc", 104 + "--setenv", "container", "mkosi", 105 + "--setenv", "HOME", "/", 106 + - "--setenv", "PATH", "/usr/bin:/usr/sbin", 107 + + "--setenv", "PATH", "/usr/bin:/usr/sbin:@NIX_PATH@", 108 + "--setenv", "BUILDROOT", "/", 109 + ] # fmt: skip 110 + 111 + @@ -744,7 +744,7 @@ def chroot_cmd( 99 112 ) -> Iterator[list[PathString]]: 100 - cmdline: list[PathString] = [ 101 - - sys.executable, "-SI", mkosi.sandbox.__file__, 102 - + @MKOSI_SANDBOX@, 103 - "--bind", root, "/", 104 - # We mounted a subdirectory of TMPDIR to /var/tmp so we unset TMPDIR so that /tmp or /var/tmp are used instead. 105 - "--unsetenv", "TMPDIR", 106 - @@ -619,7 +619,7 @@ def chroot_cmd( 107 - def chroot_script_cmd(*, tools: bool, network: bool = False, work: bool = False) -> list[PathString]: 108 - exe = Path(sys.executable) 109 - return [ 110 - - "python3" if tools or not exe.is_relative_to("/usr") else exe, "-SI", "/sandbox.py", 111 - + @MKOSI_SANDBOX@, 112 - "--bind", "/buildroot", "/", 113 - "--bind", "/var/tmp", "/var/tmp", 114 - *apivfs_options(root=Path("/")), 115 - -- 116 - 2.45.2 113 + with vartmpdir() as dir, resource_path(sys.modules[__package__ or __name__]) as module: 114 + cmdline: list[PathString] = [ 115 + - sys.executable, "-SI", module / "sandbox.py", 116 + + @MKOSI_SANDBOX@, 117 + "--bind", root, "/", 118 + # We mounted a subdirectory of TMPDIR to /var/tmp so we unset TMPDIR so that /tmp or /var/tmp are 119 + # used instead.
+15 -17
pkgs/tools/virtualization/mkosi/0002-Fix-library-resolving.patch
··· 1 - From a1e6ccfeaf8ef10361280b9ecad958e9d556005b Mon Sep 17 00:00:00 2001 1 + From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 2 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> 3 3 Date: Tue, 3 Sep 2024 09:00:34 +0200 4 - Subject: [PATCH 2/3] Fix library resolving 4 + Subject: [PATCH] Fix library resolving 5 5 6 6 As ctypes doesn't do lookups in the Nix store for libraries, we supply the exact paths. 7 7 8 8 Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> 9 9 --- 10 - mkosi/sandbox/__init__.py | 4 ++-- 10 + mkosi/sandbox.py | 4 ++-- 11 11 1 file changed, 2 insertions(+), 2 deletions(-) 12 12 13 - diff --git a/mkosi/sandbox/__init__.py b/mkosi/sandbox/__init__.py 14 - index 7db340c5..3d0a0e56 100644 15 - --- a/mkosi/sandbox/__init__.py 16 - +++ b/mkosi/sandbox/__init__.py 17 - @@ -78,7 +78,7 @@ class cap_user_data_t(ctypes.Structure): 13 + diff --git a/mkosi/sandbox.py b/mkosi/sandbox.py 14 + index bfcdb8bc62090235ebbe797982493194b575a5c0..4efee355a5f1ae036ccc5ba39595129a32705ee7 100755 15 + --- a/mkosi/sandbox.py 16 + +++ b/mkosi/sandbox.py 17 + @@ -86,7 +86,7 @@ class cap_user_data_t(ctypes.Structure): 18 18 ] 19 - 20 - 19 + 20 + 21 21 -libc = ctypes.CDLL(None, use_errno=True) 22 22 +libc = ctypes.CDLL("@LIBC@", use_errno=True) 23 - 23 + 24 24 libc.syscall.restype = ctypes.c_long 25 25 libc.unshare.argtypes = (ctypes.c_int,) 26 - @@ -175,7 +175,7 @@ def seccomp_suppress_chown() -> None: 27 - Unfortunately, non-root users can only create files owned by their own uid. To still allow non-root users to build 28 - images, if requested we install a seccomp filter that makes calls to chown() and friends a noop. 26 + @@ -198,7 +198,7 @@ def seccomp_suppress_chown() -> None: 27 + owned by their own uid. To still allow non-root users to build images, if requested we install 28 + a seccomp filter that makes calls to chown() and friends a noop. 29 29 """ 30 30 - libseccomp = ctypes.CDLL("libseccomp.so.2") 31 31 + libseccomp = ctypes.CDLL("@LIBSECCOMP@") 32 32 if libseccomp is None: 33 33 raise FileNotFoundError("libseccomp.so.2") 34 - 35 - -- 36 - 2.45.2 34 +
+12 -14
pkgs/tools/virtualization/mkosi/0003-Fix-QEMU-firmware-path.patch
··· 1 - From e834d51aa2542b141ceafdd42285ded6a9997c90 Mon Sep 17 00:00:00 2001 1 + From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 2 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> 3 3 Date: Tue, 3 Sep 2024 09:09:19 +0200 4 - Subject: [PATCH 3/3] Fix QEMU firmware path 4 + Subject: [PATCH] Fix QEMU firmware path 5 5 6 6 Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> 7 7 --- ··· 9 9 1 file changed, 1 insertion(+), 1 deletion(-) 10 10 11 11 diff --git a/mkosi/qemu.py b/mkosi/qemu.py 12 - index b98bec65..886598aa 100644 12 + index 7be900f4e99d0db94fec6dfb2534ed23a6edcf80..e2c741d720bca5bf878ca229119471cacb72d3e1 100644 13 13 --- a/mkosi/qemu.py 14 14 +++ b/mkosi/qemu.py 15 - @@ -182,7 +182,7 @@ def find_ovmf_firmware(config: Config, qemu: Path, firmware: QemuFirmware) -> Op 16 - 17 - tools = Path("/") if any(qemu.is_relative_to(d) for d in config.extra_search_paths) else config.tools() 18 - 19 - - desc = list((tools / "usr/share/qemu/firmware").glob("*")) 20 - + desc = list((tools / "@QEMU_FIRMWARE@").glob("*")) 21 - if tools == Path("/"): 22 - desc += list((tools / "etc/qemu/firmware").glob("*")) 23 - 24 - -- 25 - 2.45.2 15 + @@ -199,7 +199,7 @@ def find_ovmf_firmware(config: Config, firmware: Firmware) -> Optional[OvmfConfi 16 + if not firmware.is_uefi(): 17 + return None 18 + 19 + - desc = list((config.tools() / "usr/share/qemu/firmware").glob("*")) 20 + + desc = list((config.tools() / "@QEMU_FIRMWARE@").glob("*")) 21 + if config.tools() == Path("/"): 22 + desc += list((config.tools() / "etc/qemu/firmware").glob("*")) 23 +
+29 -25
pkgs/tools/virtualization/mkosi/default.nix
··· 26 26 # Optional dependencies 27 27 withQemu ? false, 28 28 qemu, 29 + 30 + # Workaround for supporting providing additional package manager 31 + # dependencies in the recursive use in the binary path. 32 + # This can / should be removed once the `finalAttrs` pattern is 33 + # available for Python packages. 34 + extraDeps ? [ ], 29 35 }: 30 36 let 31 37 # For systemd features used by mkosi, see ··· 40 46 withKernelInstall = true; 41 47 }; 42 48 43 - python3pefile = python3.withPackages ( 44 - ps: with ps; [ 45 - pefile 49 + python3pefile = python3.withPackages (_: [ pefile ]); 50 + 51 + deps = 52 + [ 53 + bash 54 + btrfs-progs 55 + coreutils 56 + cpio 57 + gnutar 58 + kmod 59 + systemdForMkosi 60 + util-linux 46 61 ] 47 - ); 62 + ++ extraDeps 63 + ++ lib.optionals withQemu [ 64 + qemu 65 + ]; 48 66 in 49 67 buildPythonApplication rec { 50 68 pname = "mkosi"; 51 - version = "24.3-unstable-2024-08-28"; 69 + version = "25.3"; 52 70 format = "pyproject"; 53 71 54 72 outputs = [ ··· 59 77 src = fetchFromGitHub { 60 78 owner = "systemd"; 61 79 repo = "mkosi"; 62 - rev = "8c2f828701a1bdb3dc9b80d6f2ab979f0430a6b8"; 63 - hash = "sha256-rO/4ki2nAJQN2slmYuHKESGBBDMXC/ikGf6dMDcKFr4="; 80 + tag = "v${version}"; 81 + hash = "sha256-CTOVFZORLrVqehhPCgOoEaU3fhwu8fO8jGDNLxoELgE="; 64 82 }; 65 83 66 84 patches = ··· 68 86 (replaceVars ./0001-Use-wrapped-binaries-instead-of-Python-interpreter.patch { 69 87 UKIFY = "${systemdForMkosi}/lib/systemd/ukify"; 70 88 PYTHON_PEFILE = "${python3pefile}/bin/python3.12"; 89 + NIX_PATH = toString (lib.makeBinPath deps); 71 90 MKOSI_SANDBOX = null; # will be replaced in postPatch 72 91 }) 73 92 (replaceVars ./0002-Fix-library-resolving.patch { ··· 83 102 84 103 postPatch = '' 85 104 # As we need the $out reference, we can't use `replaceVars` here. 86 - substituteInPlace mkosi/run.py \ 105 + substituteInPlace mkosi/{run,__init__}.py \ 87 106 --replace-fail '@MKOSI_SANDBOX@' "\"$out/bin/mkosi-sandbox\"" 88 107 ''; 89 108 ··· 94 113 wheel 95 114 ]; 96 115 97 - propagatedBuildInputs = 98 - [ 99 - bash 100 - btrfs-progs 101 - coreutils 102 - cpio 103 - gnutar 104 - kmod 105 - systemdForMkosi 106 - util-linux 107 - ] 108 - ++ lib.optional withQemu [ 109 - qemu 110 - ]; 116 + dependencies = deps; 111 117 112 118 postBuild = '' 113 119 ./tools/make-man-page.sh ··· 119 125 120 126 postInstall = '' 121 127 mkdir -p $out/share/man/man1 122 - mv mkosi/resources/mkosi.1 $out/share/man/man1/ 128 + mv mkosi/resources/man/mkosi.1 $out/share/man/man1/ 123 129 ''; 124 130 125 131 meta = with lib; { ··· 133 139 msanft 134 140 ]; 135 141 platforms = platforms.linux; 136 - # `mkosi qemu` boot fails in the uefi shell, image isn't found. 137 - broken = withQemu; 138 142 }; 139 143 }
-6
pkgs/top-level/all-packages.nix
··· 3815 3815 3816 3816 maubot = with python3Packages; toPythonApplication maubot; 3817 3817 3818 - mautrix-signal = recurseIntoAttrs (callPackage ../servers/mautrix-signal { }); 3819 - 3820 3818 mautrix-telegram = recurseIntoAttrs (callPackage ../servers/mautrix-telegram { }); 3821 3819 3822 3820 m2r = with python3Packages; toPythonApplication m2r; ··· 17840 17838 17841 17839 clash-verge-rev = callPackage ../by-name/cl/clash-verge-rev/package.nix { 17842 17840 libsoup = libsoup_3; 17843 - }; 17844 - 17845 - wings = callPackage ../by-name/wi/wings/package.nix { 17846 - erlang = erlang_25; 17847 17841 }; 17848 17842 17849 17843 rustdesk-flutter = callPackage ../by-name/ru/rustdesk-flutter/package.nix {
+6
pkgs/top-level/python-packages.nix
··· 994 994 995 995 asynccmd = callPackage ../development/python-modules/asynccmd { }; 996 996 997 + asyncer = callPackage ../development/python-modules/asyncer { }; 998 + 997 999 asyncinotify = callPackage ../development/python-modules/asyncinotify { }; 998 1000 999 1001 asyncio-dgram = callPackage ../development/python-modules/asyncio-dgram { }; ··· 14735 14737 14736 14738 remarshal = callPackage ../development/python-modules/remarshal { }; 14737 14739 14740 + rembg = callPackage ../development/python-modules/rembg { }; 14741 + 14738 14742 remctl = callPackage ../development/python-modules/remctl { remctl-c = pkgs.remctl; }; 14739 14743 14740 14744 remi = callPackage ../development/python-modules/remi { }; ··· 15082 15086 rpyc = callPackage ../development/python-modules/rpyc { }; 15083 15087 15084 15088 rq = callPackage ../development/python-modules/rq { }; 15089 + 15090 + rrdtool = callPackage ../development/python-modules/rrdtool { }; 15085 15091 15086 15092 rsa = callPackage ../development/python-modules/rsa { }; 15087 15093