diff --git a/doc/release-notes/rl-2511.section.md b/doc/release-notes/rl-2511.section.md index 5ef1d8e84ffd..20d979bf05e8 100644 --- a/doc/release-notes/rl-2511.section.md +++ b/doc/release-notes/rl-2511.section.md @@ -205,6 +205,8 @@ - `rofi-emoji-wayland` has been merged into `rofi-emoji` as `rofi` has been updated to `2.0.0` and supports both X11 & Wayland. +- The main binary of `tomlq` has been renamed from `tomlq` to `tq`. + - `emacs-macport` has been moved to a fork of Mitsuharu Yamamoto's patched source code starting with Emacs v30 as the original project seems to be currently dormant. All older versions of this package have been dropped. This introduces some backwards‐incompatible changes; see the NEWS for details. NEWS can be viewed from Emacs by typing `C-h n`, or by clicking `Help->Emacs News` from the menu bar. @@ -214,6 +216,8 @@ - `python3Packages.pyheif` has been dropped due to lack of upstream maintenance and breakage. Use `python3Packages.pillow-heif` instead. +- `nodePackages.rimraf` has been removed, as it is a Javascript library, and packages that want to use it should depend directly on it instead. + ## Other Notable Changes {#sec-nixpkgs-release-25.11-notable-changes} diff --git a/lib/default.nix b/lib/default.nix index 3eb2ecc308a4..de38409b8c67 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -331,6 +331,7 @@ let hasInfix hasPrefix hasSuffix + join stringToCharacters stringAsChars escape diff --git a/lib/strings.nix b/lib/strings.nix index dcffacfcb420..da2b43ae6d20 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -41,6 +41,36 @@ rec { unsafeDiscardStringContext ; + /** + Concatenates a list of strings with a separator between each element. + + # Inputs + + `sep` + : Separator to add between elements + + `list` + : List of strings that will be joined + + # Type + + ``` + join :: string -> [ string ] -> string + ``` + + # Examples + :::{.example} + ## `lib.strings.join` usage example + + ```nix + join ", " ["foo" "bar"] + => "foo, bar" + ``` + + ::: + */ + join = builtins.concatStringsSep; + /** Concatenate a list of strings. diff --git a/lib/tests/misc.nix b/lib/tests/misc.nix index e6252c17b67c..59fbb1ccd63b 100644 --- a/lib/tests/misc.nix +++ b/lib/tests/misc.nix @@ -69,6 +69,7 @@ let id ifilter0 isStorePath + join lazyDerivation length lists @@ -435,6 +436,15 @@ runTests { # STRINGS + testJoin = { + expr = join "," [ + "a" + "b" + "c" + ]; + expected = "a,b,c"; + }; + testConcatMapStrings = { expr = concatMapStrings (x: x + ";") [ "a" diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 23e836c8fa7a..92a1e910ac1e 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -4981,6 +4981,12 @@ githubId = 118829; name = "codec"; }; + CodedNil = { + github = "CodedNil"; + githubId = 5075747; + email = "codenil@proton.me"; + name = "Dan Lock"; + }; CodeLongAndProsper90 = { github = "CodeLongAndProsper90"; githubId = 50145141; diff --git a/nixos/modules/services/security/vaultwarden/default.nix b/nixos/modules/services/security/vaultwarden/default.nix index e15f8a2eeeb1..5bcd5eee6324 100644 --- a/nixos/modules/services/security/vaultwarden/default.nix +++ b/nixos/modules/services/security/vaultwarden/default.nix @@ -172,11 +172,11 @@ in }; environmentFile = lib.mkOption { - type = with lib.types; nullOr path; - default = null; + type = with lib.types; coercedTo path lib.singleton (listOf path); + default = [ ]; example = "/var/lib/vaultwarden.env"; description = '' - Additional environment file as defined in {manpage}`systemd.exec(5)`. + Additional environment file or files as defined in {manpage}`systemd.exec(5)`. Secrets like {env}`ADMIN_TOKEN` and {env}`SMTP_PASSWORD` should be passed to the service without adding them to the world-readable Nix store. @@ -225,7 +225,7 @@ in serviceConfig = { User = user; Group = group; - EnvironmentFile = [ configFile ] ++ lib.optional (cfg.environmentFile != null) cfg.environmentFile; + EnvironmentFile = [ configFile ] ++ cfg.environmentFile; ExecStart = lib.getExe vaultwarden; LimitNOFILE = "1048576"; CapabilityBoundingSet = [ "" ]; diff --git a/nixos/tests/wasabibackend.nix b/nixos/tests/wasabibackend.nix index f237a8d62075..33f37a12ba27 100644 --- a/nixos/tests/wasabibackend.nix +++ b/nixos/tests/wasabibackend.nix @@ -33,9 +33,5 @@ machine.wait_until_succeeds( "grep 'Wasabi Backend started' /var/lib/wasabibackend/.walletwasabi/backend/Logs.txt" ) - machine.sleep(5) - machine.succeed( - "grep 'Config is successfully initialized' /var/lib/wasabibackend/.walletwasabi/backend/Logs.txt" - ) ''; } diff --git a/pkgs/applications/audio/reaper/default.nix b/pkgs/applications/audio/reaper/default.nix index e9afb4640abc..bdbd58ff0be4 100644 --- a/pkgs/applications/audio/reaper/default.nix +++ b/pkgs/applications/audio/reaper/default.nix @@ -38,17 +38,17 @@ let in stdenv.mkDerivation rec { pname = "reaper"; - version = "7.46"; + version = "7.47"; src = fetchurl { url = url_for_platform version stdenv.hostPlatform.qemuArch; hash = if stdenv.hostPlatform.isDarwin then - "sha256-uGWeaRl01rH7+RrMoqAv85EiKJ3/qUFiQVt1zILVJTQ=" + "sha256-exVal9bXNNRaAVTz+c+cugs9TZ8GB8yyCA6jkeW8ipQ=" else { - x86_64-linux = "sha256-8XEy7IXjjw7WbPxpxFP30ivMgi0/iWbtljuYCQ2BzDI="; - aarch64-linux = "sha256-H+lvnpaKESad0DI9l1AexFxgwPi9EidVR1Gh6oITjHQ="; + x86_64-linux = "sha256-sbkUEGecqw5Fbl5Ev8pwlE5nMxNz8bf90d641S3cT8Y="; + aarch64-linux = "sha256-8VNmIUa4c/cGVlegx9joD6tX1cTDBWnM2GklCINsJa0="; } .${stdenv.hostPlatform.system}; }; diff --git a/pkgs/applications/editors/vim/plugins/aliases.nix b/pkgs/applications/editors/vim/plugins/aliases.nix index d75ff27bfe7d..454b0496e86d 100644 --- a/pkgs/applications/editors/vim/plugins/aliases.nix +++ b/pkgs/applications/editors/vim/plugins/aliases.nix @@ -43,6 +43,7 @@ mapAliases ( BufOnly = BufOnly-vim; calendar = calendar-vim; coc-rls = throw "coc-rls has been removed, as rls has been archived since 2022. You should use coc-rust-analyzer instead, as rust-analyzer is maintained."; # addedd 2025-10-01 + coc-vetur = throw "coc-vetur was removed, as vetur is unmaintained by Vue. You should switch to Volar, which supports Vue 3"; # added 2025-10-01 coffee-script = vim-coffee-script; coffeeScript = vim-coffee-script; # backwards compat, added 2014-10-18 Solarized = vim-colors-solarized; diff --git a/pkgs/applications/editors/vim/plugins/nodePackagePlugins.nix b/pkgs/applications/editors/vim/plugins/nodePackagePlugins.nix index ac37feb3897e..ff88a37f6675 100644 --- a/pkgs/applications/editors/vim/plugins/nodePackagePlugins.nix +++ b/pkgs/applications/editors/vim/plugins/nodePackagePlugins.nix @@ -38,7 +38,6 @@ let "coc-texlab" "coc-tsserver" "coc-ultisnips" - "coc-vetur" "coc-vimlsp" "coc-vimtex" "coc-wxml" diff --git a/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/default.nix b/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/default.nix index 0c42097b509c..f3def1b463f5 100644 --- a/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/default.nix +++ b/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/default.nix @@ -20,20 +20,20 @@ let # Use the plugin version as in vscode marketplace, updated by update script. inherit (vsix) version; - releaseTag = "2025-02-17"; + releaseTag = "2025-08-25"; src = fetchFromGitHub { owner = "rust-lang"; repo = "rust-analyzer"; - rev = releaseTag; - hash = "sha256-i76MMFSkCr4kDwurK8CACwZq7qEgVEgIzkOr2kiuAKk="; + tag = releaseTag; + hash = "sha256-apbJj2tsJkL2l+7Or9tJm1Mt5QPB6w/zIyDkCx8pfvk="; }; vsix = buildNpmPackage { inherit pname releaseTag; version = lib.trim (lib.readFile ./version.txt); src = "${src}/editors/code"; - npmDepsHash = "sha256-0frOGphtzO6z8neSEYfjyRYrM6zEO3wId/TACblZkxM="; + npmDepsHash = "sha256-fV4Z3jj+v56A7wbIEYhVAPVuAMqMds5xSe3OetWAsbw="; buildInputs = [ pkgsBuildBuild.libsecret ]; diff --git a/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/update.sh b/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/update.sh index 3ccf27d81f81..176cf4dcf48a 100755 --- a/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/update.sh +++ b/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/update.sh @@ -21,10 +21,12 @@ if [[ "$(nix-instantiate --eval --strict -E "(builtins.compareVersions \"$req_vs exit 1 fi -extension_ver=$(curl "https://github.com/$owner/$repo/releases/download/$ver/rust-analyzer-linux-x64.vsix" -L | +vsix_url="https://github.com/$owner/$repo/releases/download/$ver/rust-analyzer-linux-x64.vsix" +extension_ver=$(curl $vsix_url -L | bsdtar -xf - --to-stdout extension/package.json | # Use bsdtar to extract vsix(zip). jq --raw-output '.version') -echo -n $extension_ver > version.txt +echo $extension_ver > version.txt echo "Extension version: $extension_ver" echo "Remember to also update the releaseTag and hash in default.nix!" +echo "The releaseTag should be set to $ver" diff --git a/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/version.txt b/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/version.txt index 00f4e21a2312..f421491429fe 100644 --- a/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/version.txt +++ b/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/version.txt @@ -1 +1 @@ -0.3.2308 +0.3.2593 diff --git a/pkgs/applications/emulators/libretro/cores/beetle-pce-fast.nix b/pkgs/applications/emulators/libretro/cores/beetle-pce-fast.nix index b63e41159517..9cf85c21511f 100644 --- a/pkgs/applications/emulators/libretro/cores/beetle-pce-fast.nix +++ b/pkgs/applications/emulators/libretro/cores/beetle-pce-fast.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "mednafen-pce-fast"; - version = "0-unstable-2025-09-19"; + version = "0-unstable-2025-09-26"; src = fetchFromGitHub { owner = "libretro"; repo = "beetle-pce-fast-libretro"; - rev = "1524cc63104aece5a90ed7dd181b444a16313134"; - hash = "sha256-hNcYdkqZauoCrNMHy4YaH0ZsqUofoYb8USi0r5bbmkk="; + rev = "6c89e833b1aa0e0c5cd894f90a2dd09b579ffa4d"; + hash = "sha256-R7qSeCRWoMe3mMpHZy4GWatlVS8x+4vn8bughHdaVb0="; }; makefile = "Makefile"; diff --git a/pkgs/build-support/agda/default.nix b/pkgs/build-support/agda/default.nix index aeb214727ef6..b8645053b6e9 100644 --- a/pkgs/build-support/agda/default.nix +++ b/pkgs/build-support/agda/default.nix @@ -44,7 +44,7 @@ let ghc ? ghcWithPackages (p: with p; [ ieee754 ]), }: let - library-file = mkLibraryFile pkgs; + libraryFile = mkLibraryFile pkgs; pname = "agdaWithPackages"; version = Agda.version; in @@ -54,7 +54,10 @@ let nativeBuildInputs = [ makeWrapper ]; passthru = { unwrapped = Agda; - inherit withPackages; + inherit + withPackages + libraryFile + ; tests = { inherit (nixosTests) agda; allPackages = withPackages (filter self.lib.isUnbrokenAgdaPackage (attrValues self)); @@ -67,7 +70,7 @@ let mkdir -p $out/bin makeWrapper ${lib.getExe Agda} $out/bin/agda \ ${lib.optionalString (ghc != null) ''--add-flags "--with-compiler=${ghc}/bin/ghc"''} \ - --add-flags "--library-file=${library-file}" + --add-flags "--library-file=${libraryFile}" ln -s ${lib.getExe' Agda "agda-mode"} $out/bin/agda-mode ''; diff --git a/pkgs/by-name/al/aliyun-cli/package.nix b/pkgs/by-name/al/aliyun-cli/package.nix index 3ec57783b754..b395e999da58 100644 --- a/pkgs/by-name/al/aliyun-cli/package.nix +++ b/pkgs/by-name/al/aliyun-cli/package.nix @@ -8,17 +8,17 @@ buildGoModule rec { pname = "aliyun-cli"; - version = "3.0.302"; + version = "3.0.305"; src = fetchFromGitHub { owner = "aliyun"; repo = "aliyun-cli"; tag = "v${version}"; - hash = "sha256-RC0rrD9ApcZqhkg3NfvY0Gx9iXtsS8ixcTriZIfRSQE="; + hash = "sha256-zbDG6Mr+CVMoIfB7Jy99VrSNdAER+qYh3fbzoI6tMiE="; fetchSubmodules = true; }; - vendorHash = "sha256-7OI9YDehiKP5+VvCc0jUtCfyCPP5puWjyWXFE7Tjv5Q="; + vendorHash = "sha256-WbMyxOSCWtlngqQHtKfkWq9bYlXUmvijGwt3zM9JoNY="; subPackages = [ "main" ]; diff --git a/pkgs/by-name/am/amd-blis/build-date.patch b/pkgs/by-name/am/amd-blis/build-date.patch new file mode 100644 index 000000000000..7b0e11f4f0f3 --- /dev/null +++ b/pkgs/by-name/am/amd-blis/build-date.patch @@ -0,0 +1,13 @@ +diff --git a/configure b/configure +index d96114619..119040151 100755 +--- a/configure ++++ b/configure +@@ -1913,7 +1913,7 @@ set_default_version() + echo "${script_name}: determining default version string." + + # Use what's in the version file as-is. +- version="AOCL-BLAS $(cat "${version_file}") Build $(date +%Y%m%d)" ++ version="AOCL-BLAS $(cat "${version_file}") Build $(date -d "@$SOURCE_DATE_EPOCH" +%Y%m%d)" + } + + diff --git a/pkgs/by-name/am/amd-blis/package.nix b/pkgs/by-name/am/amd-blis/package.nix index 65106043809c..0e59a24ed3f6 100644 --- a/pkgs/by-name/am/amd-blis/package.nix +++ b/pkgs/by-name/am/amd-blis/package.nix @@ -10,7 +10,7 @@ # Target architecture. "amdzen" compiles kernels for all Zen # generations. To build kernels for specific Zen generations, - # use "zen", "zen2", "zen3", or "zen4". + # use "zen", "zen2", "zen3", "zen4", or "zen5". withArchitecture ? "amdzen", # Enable OpenMP-based threading. @@ -22,17 +22,22 @@ let blasIntSize = if blas64 then "64" else "32"; in -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "amd-blis"; version = "5.1"; src = fetchFromGitHub { owner = "amd"; repo = "blis"; - rev = version; + rev = finalAttrs.version; hash = "sha256-hqb/Q1CBqtC4AXqHNd7voewGUD675hJ9IwvP3Mn9b+M="; }; + patches = [ + # Set the date stamp to $SOURCE_DATE_EPOCH + ./build-date.patch + ]; + inherit blas64; nativeBuildInputs = [ @@ -66,11 +71,11 @@ stdenv.mkDerivation rec { ln -s $out/lib/libcblas.so.3 $out/lib/libcblas.so ''; - meta = with lib; { + meta = { description = "BLAS-compatible library optimized for AMD CPUs"; homepage = "https://developer.amd.com/amd-aocl/blas-library/"; - license = licenses.bsd3; - maintainers = [ maintainers.markuskowa ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; platforms = [ "x86_64-linux" ]; }; -} +}) diff --git a/pkgs/by-name/bi/bilibili/sources.nix b/pkgs/by-name/bi/bilibili/sources.nix index b01b5e081cc0..9231a87d3df7 100644 --- a/pkgs/by-name/bi/bilibili/sources.nix +++ b/pkgs/by-name/bi/bilibili/sources.nix @@ -1,6 +1,6 @@ # Generated by ./update.sh - do not update manually! { - version = "1.17.2-1"; - arm64-hash = "sha256-7IJId1YMV6kM9Bi9VrKXE5KLOWnyje+m2FGuQcDlMMI="; - x86_64-hash = "sha256-cXCSzyRkMSZLGQIkoBFMy26r8mt9dm3AcEQVHGtpsUo="; + version = "1.17.2-2"; + arm64-hash = "sha256-wKjbsuXDq9gsa6d0QgrOm2aBHcqDR23ZhH5Hl9cx0wM="; + x86_64-hash = "sha256-pVg1bXBD+tXbDEoKpd2KnL5jNE0Pi6SI+DIJE8Z5cHc="; } diff --git a/pkgs/by-name/bl/bloop/package.nix b/pkgs/by-name/bl/bloop/package.nix index ef6a806677aa..ac7aba4042d8 100644 --- a/pkgs/by-name/bl/bloop/package.nix +++ b/pkgs/by-name/bl/bloop/package.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { pname = "bloop"; - version = "2.0.14"; + version = "2.0.15"; platform = if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { url = "https://github.com/scalacenter/bloop/releases/download/v${version}/bloop-${platform}"; sha256 = if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then - "sha256-r99N4VxIlpOwSe9f9PoEalzsi0v5YKU2is4+gpg7rpo=" + "sha256-JEhBIYHCsh2Ij8PBhLWbhyVR5wcN3FnYV03GuE1Y/Ow=" else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64 then - "sha256-7U9zugsEDtVSlwn8sbth51RKAWx/+vRSZ8yNQAACHdo=" + "sha256-UrQuk4FuZ/J55vdQShOZ4OHzecjuYTmt5rXiYhz5seE=" else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 then - "sha256-jT8GQim1dzOIbsg2hCgtS7MH+zHajYnppM50nh+HeYo=" + "sha256-lIfXvBGK6r0akDgC9DYiU/m+BwHoFh7/RLnNtTBzkIo=" else throw "unsupported platform"; }; diff --git a/pkgs/by-name/ca/cargo-llvm-lines/package.nix b/pkgs/by-name/ca/cargo-llvm-lines/package.nix index b1df9720cce2..0298800f2e87 100644 --- a/pkgs/by-name/ca/cargo-llvm-lines/package.nix +++ b/pkgs/by-name/ca/cargo-llvm-lines/package.nix @@ -6,16 +6,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-llvm-lines"; - version = "0.4.44"; + version = "0.4.45"; src = fetchFromGitHub { owner = "dtolnay"; repo = "cargo-llvm-lines"; rev = version; - hash = "sha256-keV3k+9FDULouiYCw07aaStGIt99Xa0xgexSfvehs1E="; + hash = "sha256-5Tf3vkDTCQCmYvfKW3OHCese6HEs9CNbcUeLyS7MsOE="; }; - cargoHash = "sha256-PJ68n4ANiA6/z/oK1WrdeEWS+ttSNRYdXsBx7tXhANQ="; + cargoHash = "sha256-JrH7W2zRDoPa1ENQCfE++2y2VEC3INg/cst5ob2hmy0="; meta = with lib; { description = "Count the number of lines of LLVM IR across all instantiations of a generic function"; diff --git a/pkgs/by-name/cl/clash-rs/Cargo.patch b/pkgs/by-name/cl/clash-rs/Cargo.patch index 495f4b398622..9c1141bdb9e9 100644 --- a/pkgs/by-name/cl/clash-rs/Cargo.patch +++ b/pkgs/by-name/cl/clash-rs/Cargo.patch @@ -1,6 +1,6 @@ --- a/Cargo.lock +++ b/Cargo.lock -@@ -1462,7 +1462,7 @@ +@@ -1250,7 +1250,7 @@ "sha2", "shadowquic", "shadowsocks", @@ -8,8 +8,8 @@ + "smoltcp 0.12.0", "socket2 0.6.0", "tempfile", - "thiserror 2.0.15", -@@ -4439,7 +4439,7 @@ + "thiserror 2.0.17", +@@ -4096,7 +4096,7 @@ "etherparse 0.16.0", "futures", "rand 0.8.5", @@ -18,9 +18,9 @@ "spin 0.9.8", "tokio", "tokio-util", -@@ -6892,20 +6892,6 @@ +@@ -6487,20 +6487,6 @@ ] - + [[package]] -name = "smoltcp" -version = "0.12.0" @@ -39,7 +39,7 @@ name = "socket2" version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -@@ -9231,7 +9217,7 @@ +@@ -8792,7 +8778,7 @@ "netstack-lwip", "netstack-smoltcp", "rand 0.9.2", diff --git a/pkgs/by-name/cl/clash-rs/package.nix b/pkgs/by-name/cl/clash-rs/package.nix index ff1c67a6eee1..05a379a7fb13 100644 --- a/pkgs/by-name/cl/clash-rs/package.nix +++ b/pkgs/by-name/cl/clash-rs/package.nix @@ -10,16 +10,16 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "clash-rs"; - version = "0.9.0"; + version = "0.9.1"; src = fetchFromGitHub { owner = "Watfaq"; repo = "clash-rs"; tag = "v${finalAttrs.version}"; - hash = "sha256-OwoDvcGpuU2x6O3+rBJSXGS2VoeFt/oVgFWUaCUyC8E="; + hash = "sha256-asD7veAYdIF5biCbSXYvAyW/qBra3tvON9TQYCw6nB8="; }; - cargoHash = "sha256-HKW6bOkHkBINwA2tgaKHEozKzT4n54roj6W989JUoAQ="; + cargoHash = "sha256-9zCQKxkjiskkBGxfnq2ANpqWobs+UJ5qCsbME2Z7GY4="; cargoPatches = [ ./Cargo.patch ]; @@ -46,13 +46,11 @@ rustPlatform.buildRustPackage (finalAttrs: { env = { # requires features: sync_unsafe_cell, unbounded_shifts, let_chains, ip RUSTC_BOOTSTRAP = 1; + RUSTFLAGS = "--cfg tokio_unstable"; + NIX_CFLAGS_COMPILE = "-Wno-error"; }; - buildFeatures = [ - "shadowsocks" - "tuic" - "onion" - ]; + buildFeatures = [ "plus" ]; doCheck = false; # test failed diff --git a/pkgs/by-name/cl/clash-rs/unbounded-shifts.patch b/pkgs/by-name/cl/clash-rs/unbounded-shifts.patch index 08d50ecb5e49..679bb20745fa 100644 --- a/pkgs/by-name/cl/clash-rs/unbounded-shifts.patch +++ b/pkgs/by-name/cl/clash-rs/unbounded-shifts.patch @@ -1,11 +1,11 @@ --- a/clash-lib/src/lib.rs +++ b/clash-lib/src/lib.rs -@@ -4,7 +4,7 @@ - #![feature(let_chains)] +@@ -3,7 +3,7 @@ + #![feature(sync_unsafe_cell)] #![feature(lazy_get)] #![feature(duration_millis_float)] -#![cfg_attr(not(version("1.87.0")), feature(unbounded_shifts))] +#![feature(unbounded_shifts)] - - #[macro_use] - extern crate anyhow; + #![cfg_attr(not(version("1.88.0")), feature(let_chains))] + + use crate::{ diff --git a/pkgs/by-name/cn/cnquery/package.nix b/pkgs/by-name/cn/cnquery/package.nix index 2082dfd79a46..74232dbf526c 100644 --- a/pkgs/by-name/cn/cnquery/package.nix +++ b/pkgs/by-name/cn/cnquery/package.nix @@ -6,18 +6,18 @@ buildGoModule rec { pname = "cnquery"; - version = "12.1.0"; + version = "12.3.0"; src = fetchFromGitHub { owner = "mondoohq"; repo = "cnquery"; tag = "v${version}"; - hash = "sha256-lkpmJPFOxsk59ta3ts0vNB2dXtDJXNxxWIKDnIQAv+M="; + hash = "sha256-/4T5Rncsk7aOS6Do2DyyLVim/dVNMTPUOnqZ6Isbj/I="; }; subPackages = [ "apps/cnquery" ]; - vendorHash = "sha256-wtJKHQ2MI7Jm6gWlIKraieRsf+C6uTelEXgp539IGAY="; + vendorHash = "sha256-mU3bVENWgMoD6BZzGpl8qN/MmnUUJT5s8XwvifFZ+ig="; ldflags = [ "-w" diff --git a/pkgs/by-name/cr/crosvm/package.nix b/pkgs/by-name/cr/crosvm/package.nix index b89bec8754bd..4bdfd762a9ea 100644 --- a/pkgs/by-name/cr/crosvm/package.nix +++ b/pkgs/by-name/cr/crosvm/package.nix @@ -21,12 +21,12 @@ rustPlatform.buildRustPackage { pname = "crosvm"; - version = "0-unstable-2025-09-19"; + version = "0-unstable-2025-09-30"; src = fetchgit { url = "https://chromium.googlesource.com/chromiumos/platform/crosvm"; - rev = "c16dbcf9147bd77fa409b6d97c4c78b08be38d10"; - hash = "sha256-rMjSG9S/roOEU8/wmP5Y5AK2akTP07U/5p9l3ONrtFc="; + rev = "85695a5b4fe5bea29925cbb905ff7557242a14c3"; + hash = "sha256-zaUjpqDKvvRDY0TOc892g5ehc1o5itv1O9E+YSrve0U="; fetchSubmodules = true; }; diff --git a/pkgs/by-name/cr/crow-translate/package.nix b/pkgs/by-name/cr/crow-translate/package.nix index be12eb2859f8..073d2722bd44 100644 --- a/pkgs/by-name/cr/crow-translate/package.nix +++ b/pkgs/by-name/cr/crow-translate/package.nix @@ -5,59 +5,63 @@ cmake, extra-cmake-modules, leptonica, - libsForQt5, - qt5, - tesseract4, - gst_all_1, + qt6, + tesseract, testers, + kdePackages, + onnxruntime, + withPiper ? true, }: stdenv.mkDerivation (finalAttrs: { pname = "crow-translate"; - version = "3.1.0"; + version = "4.0.2"; src = fetchFromGitLab { domain = "invent.kde.org"; owner = "office"; repo = "crow-translate"; - rev = "v${finalAttrs.version}"; - hash = "sha256-zL+Ucw6rzIoEaBHi/uqKQB0cnR6aAcF8MPOG3hwK3iA="; + tag = "v${finalAttrs.version}"; + hash = "sha256-hrxYC6zdh4aG9AkHZcnOE5jihJSo3xrq0hzBRE8NtRw="; fetchSubmodules = true; }; postPatch = '' substituteInPlace data/org.kde.CrowTranslate.desktop.in \ - --subst-var-by QT_BIN_DIR ${lib.getBin qt5.qttools}/bin + --subst-var-by QT_BIN_DIR ${lib.getBin qt6.qttools}/bin ''; nativeBuildInputs = [ cmake extra-cmake-modules - qt5.qttools - qt5.wrapQtAppsHook + qt6.qttools + qt6.wrapQtAppsHook ]; buildInputs = [ - libsForQt5.kwayland + kdePackages.kwayland leptonica - tesseract4 - qt5.qtmultimedia - qt5.qtx11extras + tesseract + qt6.qtbase + qt6.qtmultimedia + qt6.qtscxml + qt6.qtspeech ] - ++ (with gst_all_1; [ - gstreamer - gst-plugins-base - gst-plugins-good - gst-plugins-bad - ]); - - preFixup = '' - qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0") + ++ lib.optionals withPiper [ + onnxruntime + ]; + cmakeFlags = [ + (lib.cmakeBool "ONNXRuntime_USE_STATIC" false) + (lib.cmakeBool "WITH_PIPER_TTS" withPiper) + ]; + # Necessary for KWin D-BUS authorization for taking screenshots, without + # which the app falls back to interactive capture, which has some limitations. + postInstall = '' + substituteInPlace $out/share/applications/org.kde.CrowTranslate.desktop \ + --replace-fail 'Exec=crow' "Exec=$out/bin/crow" ''; - passthru.tests.version = testers.testVersion { - package = finalAttrs.finalPackage; - }; + passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; meta = { description = "Simple and lightweight translator that allows to translate and speak text using Google, Yandex and Bing"; diff --git a/pkgs/by-name/cs/cspell/inject-workplace-deps.patch b/pkgs/by-name/cs/cspell/inject-workplace-deps.patch new file mode 100644 index 000000000000..ab497c688cc3 --- /dev/null +++ b/pkgs/by-name/cs/cspell/inject-workplace-deps.patch @@ -0,0 +1,799 @@ +diff --git i/.npmrc w/.npmrc +index 7b6aac5399..e5fe8dfea0 100644 +--- i/.npmrc ++++ w/.npmrc +@@ -2,3 +2,4 @@ auto-install-peers=true + strict-peer-dependencies=false + save-workspace-protocol=rolling + node-linker=isolated ++inject-workspace-packages=true +diff --git i/pnpm-lock.yaml w/pnpm-lock.yaml +index ca893d48d9..4e81b2eb2f 100644 +--- i/pnpm-lock.yaml ++++ w/pnpm-lock.yaml +@@ -3,6 +3,7 @@ lockfileVersion: '9.0' + settings: + autoInstallPeers: true + excludeLinksFromLockfile: false ++ injectWorkspacePackages: true + + importers: + +@@ -590,7 +591,7 @@ importers: + devDependencies: + '@cspell/eslint-plugin': + specifier: workspace:* +- version: link:../.. ++ version: file:packages/cspell-eslint-plugin(eslint@8.57.1) + es-toolkit: + specifier: ^1.39.10 + version: 1.39.10 +@@ -1073,7 +1074,7 @@ importers: + devDependencies: + '@cspell/eslint-plugin': + specifier: workspace:* +- version: link:../../../packages/cspell-eslint-plugin ++ version: file:packages/cspell-eslint-plugin(eslint@9.8.0) + '@eslint/js': + specifier: ^9.34.0 + version: 9.34.0 +@@ -2091,6 +2092,10 @@ packages: + resolution: {integrity: sha512-2ZRcZP/ncJ5q953o8i+R0fb8+14PDt5UefUNMrFZZHvfTI0jukAASOQeLY+WT6ASZv6CgbPrApAdbppy9FaXYQ==} + engines: {node: '>=18'} + ++ '@cspell/cspell-bundled-dicts@file:packages/cspell-bundled-dicts': ++ resolution: {directory: packages/cspell-bundled-dicts, type: directory} ++ engines: {node: '>=20'} ++ + '@cspell/cspell-json-reporter@8.19.4': + resolution: {integrity: sha512-pOlUtLUmuDdTIOhDTvWxxta0Wm8RCD/p1V0qUqeP6/Ups1ajBI4FWEpRFd7yMBTUHeGeSNicJX5XeX7wNbAbLQ==} + engines: {node: '>=18'} +@@ -2099,18 +2104,34 @@ packages: + resolution: {integrity: sha512-GNAyk+7ZLEcL2fCMT5KKZprcdsq3L1eYy3e38/tIeXfbZS7Sd1R5FXUe6CHXphVWTItV39TvtLiDwN/2jBts9A==} + engines: {node: '>=18'} + ++ '@cspell/cspell-pipe@file:packages/cspell-pipe': ++ resolution: {directory: packages/cspell-pipe, type: directory} ++ engines: {node: '>=20'} ++ + '@cspell/cspell-resolver@8.19.4': + resolution: {integrity: sha512-S8vJMYlsx0S1D60glX8H2Jbj4mD8519VjyY8lu3fnhjxfsl2bDFZvF3ZHKsLEhBE+Wh87uLqJDUJQiYmevHjDg==} + engines: {node: '>=18'} + ++ '@cspell/cspell-resolver@file:packages/cspell-resolver': ++ resolution: {directory: packages/cspell-resolver, type: directory} ++ engines: {node: '>=20'} ++ + '@cspell/cspell-service-bus@8.19.4': + resolution: {integrity: sha512-uhY+v8z5JiUogizXW2Ft/gQf3eWrh5P9036jN2Dm0UiwEopG/PLshHcDjRDUiPdlihvA0RovrF0wDh4ptcrjuQ==} + engines: {node: '>=18'} + ++ '@cspell/cspell-service-bus@file:packages/cspell-service-bus': ++ resolution: {directory: packages/cspell-service-bus, type: directory} ++ engines: {node: '>=20'} ++ + '@cspell/cspell-types@8.19.4': + resolution: {integrity: sha512-ekMWuNlFiVGfsKhfj4nmc8JCA+1ZltwJgxiKgDuwYtR09ie340RfXFF6YRd2VTW5zN7l4F1PfaAaPklVz6utSg==} + engines: {node: '>=18'} + ++ '@cspell/cspell-types@file:packages/cspell-types': ++ resolution: {directory: packages/cspell-types, type: directory} ++ engines: {node: '>=20'} ++ + '@cspell/dict-ada@4.1.1': + resolution: {integrity: sha512-E+0YW9RhZod/9Qy2gxfNZiHJjCYFlCdI69br1eviQQWB8yOTJX0JHXLs79kOYhSW0kINPVUdvddEBe6Lu6CjGQ==} + +@@ -2321,18 +2342,40 @@ packages: + resolution: {integrity: sha512-0LLghC64+SiwQS20Sa0VfFUBPVia1rNyo0bYeIDoB34AA3qwguDBVJJkthkpmaP1R2JeR/VmxmJowuARc4ZUxA==} + engines: {node: '>=18.0'} + ++ '@cspell/dynamic-import@file:packages/dynamic-import': ++ resolution: {directory: packages/dynamic-import, type: directory} ++ engines: {node: '>=20'} ++ ++ '@cspell/eslint-plugin@file:packages/cspell-eslint-plugin': ++ resolution: {directory: packages/cspell-eslint-plugin, type: directory} ++ engines: {node: '>=20'} ++ peerDependencies: ++ eslint: ^7 || ^8 || ^9 ++ + '@cspell/filetypes@8.19.4': + resolution: {integrity: sha512-D9hOCMyfKtKjjqQJB8F80PWsjCZhVGCGUMiDoQpcta0e+Zl8vHgzwaC0Ai4QUGBhwYEawHGiWUd7Y05u/WXiNQ==} + engines: {node: '>=18'} + ++ '@cspell/filetypes@file:packages/cspell-filetypes': ++ resolution: {directory: packages/cspell-filetypes, type: directory} ++ engines: {node: '>=20'} ++ + '@cspell/strong-weak-map@8.19.4': + resolution: {integrity: sha512-MUfFaYD8YqVe32SQaYLI24/bNzaoyhdBIFY5pVrvMo1ZCvMl8AlfI2OcBXvcGb5aS5z7sCNCJm11UuoYbLI1zw==} + engines: {node: '>=18'} + ++ '@cspell/strong-weak-map@file:packages/cspell-strong-weak-map': ++ resolution: {directory: packages/cspell-strong-weak-map, type: directory} ++ engines: {node: '>=20'} ++ + '@cspell/url@8.19.4': + resolution: {integrity: sha512-Pa474iBxS+lxsAL4XkETPGIq3EgMLCEb9agj3hAd2VGMTCApaiUvamR4b+uGXIPybN70piFxvzrfoxsG2uIP6A==} + engines: {node: '>=18.0'} + ++ '@cspell/url@file:packages/cspell-url': ++ resolution: {directory: packages/cspell-url, type: directory} ++ engines: {node: '>=20'} ++ + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} +@@ -3254,6 +3297,9 @@ packages: + '@napi-rs/wasm-runtime@1.0.3': + resolution: {integrity: sha512-rZxtMsLwjdXkMUGC3WwsPwLNVqVqnTJT6MNIB6e+5fhMcSCPP0AOsNWuMQ5mdCq6HNjs/ZeWAEchpqeprqBD2Q==} + ++ '@napi-rs/wasm-runtime@1.0.5': ++ resolution: {integrity: sha512-TBr9Cf9onSAS2LQ2+QHx6XcC6h9+RIzJgbqG3++9TUZSH204AwEy5jg3BTQ0VATsyoGj4ee49tN/y6rvaOOtcg==} ++ + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} +@@ -3407,12 +3453,8 @@ packages: + '@octokit/types@14.1.0': + resolution: {integrity: sha512-1y6DgTy8Jomcpu33N+p5w58l6xyt55Ar2I91RPiIA0xCJBXyUAhXCcmZaDWSANiha7R9a6qJJ2CRomGPZ6f46g==} + +- '@oxc-project/runtime@0.82.3': +- resolution: {integrity: sha512-LNh5GlJvYHAnMurO+EyA8jJwN1rki7l3PSHuosDh2I7h00T6/u9rCkUjg/SvPmT1CZzvhuW0y+gf7jcqUy/Usg==} +- engines: {node: '>=6.9.0'} +- +- '@oxc-project/types@0.82.3': +- resolution: {integrity: sha512-6nCUxBnGX0c6qfZW5MaF6/fmu5dHJDMiMPaioKHKs5mi5+8/FHQ7WGjgQIz1zxpmceMYfdIXkOaLYE+ejbuOtA==} ++ '@oxc-project/types@0.93.0': ++ resolution: {integrity: sha512-yNtwmWZIBtJsMr5TEfoZFDxIWV6OdScOpza/f5YxbqUMJk+j6QX3Cf3jgZShGEFYWQJ5j9mJ6jM0tZHu2J9Yrg==} + + '@oxc-resolver/binding-android-arm-eabi@11.7.1': + resolution: {integrity: sha512-K0gF1mD6CYMAuX0dMWe6XW1Js00xCOBh/+ZAAJReQMa4+jmAk3bIeitsc8VnDthDbzOOKp3riizP3o/tBvNpgw==} +@@ -3535,78 +3577,91 @@ packages: + '@quansync/fs@0.1.5': + resolution: {integrity: sha512-lNS9hL2aS2NZgNW7BBj+6EBl4rOf8l+tQ0eRY6JWCI8jI2kc53gSoqbjojU0OnAWhzoXiOjFyGsHcDGePB3lhA==} + +- '@rolldown/binding-android-arm64@1.0.0-beta.34': +- resolution: {integrity: sha512-jf5GNe5jP3Sr1Tih0WKvg2bzvh5T/1TA0fn1u32xSH7ca/p5t+/QRr4VRFCV/na5vjwKEhwWrChsL2AWlY+eoA==} ++ '@rolldown/binding-android-arm64@1.0.0-beta.41': ++ resolution: {integrity: sha512-Edflndd9lU7JVhVIvJlZhdCj5DkhYDJPIRn4Dx0RUdfc8asP9xHOI5gMd8MesDDx+BJpdIT/uAmVTearteU/mQ==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + +- '@rolldown/binding-darwin-arm64@1.0.0-beta.34': +- resolution: {integrity: sha512-2F/TqH4QuJQ34tgWxqBjFL3XV1gMzeQgUO8YRtCPGBSP0GhxtoFzsp7KqmQEothsxztlv+KhhT9Dbg3HHwHViQ==} ++ '@rolldown/binding-darwin-arm64@1.0.0-beta.41': ++ resolution: {integrity: sha512-XGCzqfjdk7550PlyZRTBKbypXrB7ATtXhw/+bjtxnklLQs0mKP/XkQVOKyn9qGKSlvH8I56JLYryVxl0PCvSNw==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + +- '@rolldown/binding-darwin-x64@1.0.0-beta.34': +- resolution: {integrity: sha512-E1QuFslgLWbHQ8Qli/AqUKdfg0pockQPwRxVbhNQ74SciZEZpzLaujkdmOLSccMlSXDfFCF8RPnMoRAzQ9JV8Q==} ++ '@rolldown/binding-darwin-x64@1.0.0-beta.41': ++ resolution: {integrity: sha512-Ho6lIwGJed98zub7n0xcRKuEtnZgbxevAmO4x3zn3C3N4GVXZD5xvCvTVxSMoeBJwTcIYzkVDRTIhylQNsTgLQ==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + +- '@rolldown/binding-freebsd-x64@1.0.0-beta.34': +- resolution: {integrity: sha512-VS8VInNCwnkpI9WeQaWu3kVBq9ty6g7KrHdLxYMzeqz24+w9hg712TcWdqzdY6sn+24lUoMD9jTZrZ/qfVpk0g==} ++ '@rolldown/binding-freebsd-x64@1.0.0-beta.41': ++ resolution: {integrity: sha512-ijAZETywvL+gACjbT4zBnCp5ez1JhTRs6OxRN4J+D6AzDRbU2zb01Esl51RP5/8ZOlvB37xxsRQ3X4YRVyYb3g==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + +- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.34': +- resolution: {integrity: sha512-4St4emjcnULnxJYb/5ZDrH/kK/j6PcUgc3eAqH5STmTrcF+I9m/X2xvSF2a2bWv1DOQhxBewThu0KkwGHdgu5w==} ++ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.41': ++ resolution: {integrity: sha512-EgIOZt7UildXKFEFvaiLNBXm+4ggQyGe3E5Z1QP9uRcJJs9omihOnm897FwOBQdCuMvI49iBgjFrkhH+wMJ2MA==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + +- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.34': +- resolution: {integrity: sha512-a737FTqhFUoWfnebS2SnQ2BS50p0JdukdkUBwy2J06j4hZ6Eej0zEB8vTfAqoCjn8BQKkXBy+3Sx0IRkgwz1gA==} ++ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.41': ++ resolution: {integrity: sha512-F8bUwJq8v/JAU8HSwgF4dztoqJ+FjdyjuvX4//3+Fbe2we9UktFeZ27U4lRMXF1vxWtdV4ey6oCSqI7yUrSEeg==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + +- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.34': +- resolution: {integrity: sha512-NH+FeQWKyuw0k+PbXqpFWNfvD8RPvfJk766B/njdaWz4TmiEcSB0Nb6guNw1rBpM1FmltQYb3fFnTumtC6pRfA==} ++ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.41': ++ resolution: {integrity: sha512-MioXcCIX/wB1pBnBoJx8q4OGucUAfC1+/X1ilKFsjDK05VwbLZGRgOVD5OJJpUQPK86DhQciNBrfOKDiatxNmg==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + +- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.34': +- resolution: {integrity: sha512-Q3RSCivp8pNadYK8ke3hLnQk08BkpZX9BmMjgwae2FWzdxhxxUiUzd9By7kneUL0vRQ4uRnhD9VkFQ+Haeqdvw==} ++ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.41': ++ resolution: {integrity: sha512-m66M61fizvRCwt5pOEiZQMiwBL9/y0bwU/+Kc4Ce/Pef6YfoEkR28y+DzN9rMdjo8Z28NXjsDPq9nH4mXnAP0g==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + +- '@rolldown/binding-linux-x64-musl@1.0.0-beta.34': +- resolution: {integrity: sha512-wDd/HrNcVoBhWWBUW3evJHoo7GJE/RofssBy3Dsiip05YUBmokQVrYAyrboOY4dzs/lJ7HYeBtWQ9hj8wlyF0A==} ++ '@rolldown/binding-linux-x64-musl@1.0.0-beta.41': ++ resolution: {integrity: sha512-yRxlSfBvWnnfrdtJfvi9lg8xfG5mPuyoSHm0X01oiE8ArmLRvoJGHUTJydCYz+wbK2esbq5J4B4Tq9WAsOlP1Q==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + +- '@rolldown/binding-openharmony-arm64@1.0.0-beta.34': +- resolution: {integrity: sha512-dH3FTEV6KTNWpYSgjSXZzeX7vLty9oBYn6R3laEdhwZftQwq030LKL+5wyQdlbX5pnbh4h127hpv3Hl1+sj8dg==} ++ '@rolldown/binding-openharmony-arm64@1.0.0-beta.41': ++ resolution: {integrity: sha512-PHVxYhBpi8UViS3/hcvQQb9RFqCtvFmFU1PvUoTRiUdBtgHA6fONNHU4x796lgzNlVSD3DO/MZNk1s5/ozSMQg==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + +- '@rolldown/binding-wasm32-wasi@1.0.0-beta.34': +- resolution: {integrity: sha512-y5BUf+QtO0JsIDKA51FcGwvhJmv89BYjUl8AmN7jqD6k/eU55mH6RJYnxwCsODq5m7KSSTigVb6O7/GqB8wbPw==} ++ '@rolldown/binding-wasm32-wasi@1.0.0-beta.41': ++ resolution: {integrity: sha512-OAfcO37ME6GGWmj9qTaDT7jY4rM0T2z0/8ujdQIJQ2x2nl+ztO32EIwURfmXOK0U1tzkyuaKYvE34Pug/ucXlQ==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + +- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.34': +- resolution: {integrity: sha512-ga5hFhdTwpaNxEiuxZHWnD3ed0GBAzbgzS5tRHpe0ObptxM1a9Xrq6TVfNQirBLwb5Y7T/FJmJi3pmdLy95ljg==} ++ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.41': ++ resolution: {integrity: sha512-NIYGuCcuXaq5BC4Q3upbiMBvmZsTsEPG9k/8QKQdmrch+ocSy5Jv9tdpdmXJyighKqm182nh/zBt+tSJkYoNlg==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + +- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.34': +- resolution: {integrity: sha512-4/MBp9T9eRnZskxWr8EXD/xHvLhdjWaeX/qY9LPRG1JdCGV3DphkLTy5AWwIQ5jhAy2ZNJR5z2fYRlpWU0sIyQ==} ++ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.41': ++ resolution: {integrity: sha512-kANdsDbE5FkEOb5NrCGBJBCaZ2Sabp3D7d4PRqMYJqyLljwh9mDyYyYSv5+QNvdAmifj+f3lviNEUUuUZPEFPw==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ia32] + os: [win32] + +- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.34': +- resolution: {integrity: sha512-7O5iUBX6HSBKlQU4WykpUoEmb0wQmonb6ziKFr3dJTHud2kzDnWMqk344T0qm3uGv9Ddq6Re/94pInxo1G2d4w==} ++ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.41': ++ resolution: {integrity: sha512-UlpxKmFdik0Y2VjZrgUCgoYArZJiZllXgIipdBRV1hw6uK45UbQabSTW6Kp6enuOu7vouYWftwhuxfpE8J2JAg==} ++ engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + +- '@rolldown/pluginutils@1.0.0-beta.34': +- resolution: {integrity: sha512-LyAREkZHP5pMom7c24meKmJCdhf2hEyvam2q0unr3or9ydwDL+DJ8chTF6Av/RFPb3rH8UFBdMzO5MxTZW97oA==} ++ '@rolldown/pluginutils@1.0.0-beta.41': ++ resolution: {integrity: sha512-ycMEPrS3StOIeb87BT3/+bu+blEtyvwQ4zmo2IcJQy0Rd1DAAhKksA0iUZ3MYSpJtjlPhg0Eo6mvVS6ggPhRbw==} + + '@rollup/plugin-alias@5.1.1': + resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} +@@ -4091,6 +4146,9 @@ packages: + '@tybys/wasm-util@0.10.0': + resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==} + ++ '@tybys/wasm-util@0.10.1': ++ resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} ++ + '@types/body-parser@1.19.6': + resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==} + +@@ -4582,6 +4640,10 @@ packages: + resolution: {integrity: sha512-BGcItUBWSMRgOCe+SVZJ+S7yTRG0eGt9cXAHev72yuGcY23hnLA7Bky5L/xLyPINoSN95geovfBkqoTlNZYa7w==} + engines: {node: '>=14'} + ++ ansis@4.2.0: ++ resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==} ++ engines: {node: '>=14'} ++ + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + +@@ -5257,6 +5319,10 @@ packages: + resolution: {integrity: sha512-LtFNZEWVrnpjiTNgEDsVN05UqhhJ1iA0HnTv4jsascPehlaUYVoyucgNbFeRs6UMaClJnqR0qT9lnPX+KO1OLg==} + engines: {node: '>=18'} + ++ cspell-config-lib@file:packages/cspell-config-lib: ++ resolution: {directory: packages/cspell-config-lib, type: directory} ++ engines: {node: '>=20'} ++ + cspell-dict-nl-nl@1.1.2: + resolution: {integrity: sha512-dwf5NgXQxLpuZysjTO9sM0fgoOTVL30CzG+4S0xYrbP1culdlaNejEPpzqoS30FRdIBroJmTIZ+hfB+tD6Fhmg==} + hasBin: true +@@ -5265,6 +5331,10 @@ packages: + resolution: {integrity: sha512-lr8uIm7Wub8ToRXO9f6f7in429P1Egm3I+Ps3ZGfWpwLTCUBnHvJdNF/kQqF7PL0Lw6acXcjVWFYT7l2Wdst2g==} + engines: {node: '>=18'} + ++ cspell-dictionary@file:packages/cspell-dictionary: ++ resolution: {directory: packages/cspell-dictionary, type: directory} ++ engines: {node: '>=20'} ++ + cspell-gitignore@8.19.4: + resolution: {integrity: sha512-KrViypPilNUHWZkMV0SM8P9EQVIyH8HvUqFscI7+cyzWnlglvzqDdV4N5f+Ax5mK+IqR6rTEX8JZbCwIWWV7og==} + engines: {node: '>=18'} +@@ -5274,23 +5344,44 @@ packages: + resolution: {integrity: sha512-042uDU+RjAz882w+DXKuYxI2rrgVPfRQDYvIQvUrY1hexH4sHbne78+OMlFjjzOCEAgyjnm1ktWUCCmh08pQUw==} + engines: {node: '>=18'} + ++ cspell-glob@file:packages/cspell-glob: ++ resolution: {directory: packages/cspell-glob, type: directory} ++ engines: {node: '>=20'} ++ + cspell-grammar@8.19.4: + resolution: {integrity: sha512-lzWgZYTu/L7DNOHjxuKf8H7DCXvraHMKxtFObf8bAzgT+aBmey5fW2LviXUkZ2Lb2R0qQY+TJ5VIGoEjNf55ow==} + engines: {node: '>=18'} + hasBin: true + ++ cspell-grammar@file:packages/cspell-grammar: ++ resolution: {directory: packages/cspell-grammar, type: directory} ++ engines: {node: '>=20'} ++ hasBin: true ++ + cspell-io@8.19.4: + resolution: {integrity: sha512-W48egJqZ2saEhPWf5ftyighvm4mztxEOi45ILsKgFikXcWFs0H0/hLwqVFeDurgELSzprr12b6dXsr67dV8amg==} + engines: {node: '>=18'} + ++ cspell-io@file:packages/cspell-io: ++ resolution: {directory: packages/cspell-io, type: directory} ++ engines: {node: '>=20'} ++ + cspell-lib@8.19.4: + resolution: {integrity: sha512-NwfdCCYtIBNQuZcoMlMmL3HSv2olXNErMi/aOTI9BBAjvCHjhgX5hbHySMZ0NFNynnN+Mlbu5kooJ5asZeB3KA==} + engines: {node: '>=18'} + ++ cspell-lib@file:packages/cspell-lib: ++ resolution: {directory: packages/cspell-lib, type: directory} ++ engines: {node: '>=20'} ++ + cspell-trie-lib@8.19.4: + resolution: {integrity: sha512-yIPlmGSP3tT3j8Nmu+7CNpkPh/gBO2ovdnqNmZV+LNtQmVxqFd2fH7XvR1TKjQyctSH1ip0P5uIdJmzY1uhaYg==} + engines: {node: '>=18'} + ++ cspell-trie-lib@file:packages/cspell-trie-lib: ++ resolution: {directory: packages/cspell-trie-lib, type: directory} ++ engines: {node: '>=20'} ++ + cspell@8.19.4: + resolution: {integrity: sha512-toaLrLj3usWY0Bvdi661zMmpKW2DVLAG3tcwkAv4JBTisdIRn15kN/qZDrhSieUEhVgJgZJDH4UKRiq29mIFxA==} + engines: {node: '>=18'} +@@ -9075,8 +9166,9 @@ packages: + vue-tsc: + optional: true + +- rolldown@1.0.0-beta.34: +- resolution: {integrity: sha512-Wwh7EwalMzzX3Yy3VN58VEajeR2Si8+HDNMf706jPLIqU7CxneRW+dQVfznf5O0TWTnJyu4npelwg2bzTXB1Nw==} ++ rolldown@1.0.0-beta.41: ++ resolution: {integrity: sha512-U+NPR0Bkg3wm61dteD2L4nAM1U9dtaqVrpDXwC36IKRHpEO/Ubpid4Nijpa2imPchcVNHfxVFwSSMJdwdGFUbg==} ++ engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + + rollup-plugin-dts@6.2.3: +@@ -11432,20 +11524,91 @@ snapshots: + '@cspell/dict-typescript': 3.2.3 + '@cspell/dict-vue': 3.0.5 + ++ '@cspell/cspell-bundled-dicts@file:packages/cspell-bundled-dicts': ++ dependencies: ++ '@cspell/dict-ada': 4.1.1 ++ '@cspell/dict-al': 1.1.1 ++ '@cspell/dict-aws': 4.0.15 ++ '@cspell/dict-bash': 4.2.1 ++ '@cspell/dict-companies': 3.2.5 ++ '@cspell/dict-cpp': 6.0.12 ++ '@cspell/dict-cryptocurrencies': 5.0.5 ++ '@cspell/dict-csharp': 4.0.7 ++ '@cspell/dict-css': 4.0.18 ++ '@cspell/dict-dart': 2.3.1 ++ '@cspell/dict-data-science': 2.0.9 ++ '@cspell/dict-django': 4.1.5 ++ '@cspell/dict-docker': 1.1.16 ++ '@cspell/dict-dotnet': 5.0.10 ++ '@cspell/dict-elixir': 4.0.8 ++ '@cspell/dict-en-common-misspellings': 2.1.5 ++ '@cspell/dict-en-gb-mit': 3.1.8 ++ '@cspell/dict-en_us': 4.4.18 ++ '@cspell/dict-filetypes': 3.0.13 ++ '@cspell/dict-flutter': 1.1.1 ++ '@cspell/dict-fonts': 4.0.5 ++ '@cspell/dict-fsharp': 1.1.1 ++ '@cspell/dict-fullstack': 3.2.7 ++ '@cspell/dict-gaming-terms': 1.1.2 ++ '@cspell/dict-git': 3.0.7 ++ '@cspell/dict-golang': 6.0.23 ++ '@cspell/dict-google': 1.0.9 ++ '@cspell/dict-haskell': 4.0.6 ++ '@cspell/dict-html': 4.0.12 ++ '@cspell/dict-html-symbol-entities': 4.0.4 ++ '@cspell/dict-java': 5.0.12 ++ '@cspell/dict-julia': 1.1.1 ++ '@cspell/dict-k8s': 1.0.12 ++ '@cspell/dict-kotlin': 1.1.1 ++ '@cspell/dict-latex': 4.0.4 ++ '@cspell/dict-lorem-ipsum': 4.0.5 ++ '@cspell/dict-lua': 4.0.8 ++ '@cspell/dict-makefile': 1.0.5 ++ '@cspell/dict-markdown': 2.0.12(@cspell/dict-css@4.0.18)(@cspell/dict-html-symbol-entities@4.0.4)(@cspell/dict-html@4.0.12)(@cspell/dict-typescript@3.2.3) ++ '@cspell/dict-monkeyc': 1.0.11 ++ '@cspell/dict-node': 5.0.8 ++ '@cspell/dict-npm': 5.2.15 ++ '@cspell/dict-php': 4.0.15 ++ '@cspell/dict-powershell': 5.0.15 ++ '@cspell/dict-public-licenses': 2.0.15 ++ '@cspell/dict-python': 4.2.19 ++ '@cspell/dict-r': 2.1.1 ++ '@cspell/dict-ruby': 5.0.9 ++ '@cspell/dict-rust': 4.0.12 ++ '@cspell/dict-scala': 5.0.8 ++ '@cspell/dict-shell': 1.1.1 ++ '@cspell/dict-software-terms': 5.1.7 ++ '@cspell/dict-sql': 2.2.1 ++ '@cspell/dict-svelte': 1.0.7 ++ '@cspell/dict-swift': 2.0.6 ++ '@cspell/dict-terraform': 1.1.3 ++ '@cspell/dict-typescript': 3.2.3 ++ '@cspell/dict-vue': 3.0.5 ++ + '@cspell/cspell-json-reporter@8.19.4': + dependencies: + '@cspell/cspell-types': 8.19.4 + + '@cspell/cspell-pipe@8.19.4': {} + ++ '@cspell/cspell-pipe@file:packages/cspell-pipe': {} ++ + '@cspell/cspell-resolver@8.19.4': + dependencies: + global-directory: 4.0.1 + ++ '@cspell/cspell-resolver@file:packages/cspell-resolver': ++ dependencies: ++ global-directory: 4.0.1 ++ + '@cspell/cspell-service-bus@8.19.4': {} + ++ '@cspell/cspell-service-bus@file:packages/cspell-service-bus': {} ++ + '@cspell/cspell-types@8.19.4': {} + ++ '@cspell/cspell-types@file:packages/cspell-types': {} ++ + '@cspell/dict-ada@4.1.1': {} + + '@cspell/dict-al@1.1.1': {} +@@ -11594,12 +11757,39 @@ snapshots: + '@cspell/url': 8.19.4 + import-meta-resolve: 4.2.0 + ++ '@cspell/dynamic-import@file:packages/dynamic-import': ++ dependencies: ++ '@cspell/url': file:packages/cspell-url ++ import-meta-resolve: 4.2.0 ++ ++ '@cspell/eslint-plugin@file:packages/cspell-eslint-plugin(eslint@8.57.1)': ++ dependencies: ++ '@cspell/cspell-types': file:packages/cspell-types ++ '@cspell/url': file:packages/cspell-url ++ cspell-lib: file:packages/cspell-lib ++ eslint: 8.57.1 ++ synckit: 0.11.11 ++ ++ '@cspell/eslint-plugin@file:packages/cspell-eslint-plugin(eslint@9.8.0)': ++ dependencies: ++ '@cspell/cspell-types': file:packages/cspell-types ++ '@cspell/url': file:packages/cspell-url ++ cspell-lib: file:packages/cspell-lib ++ eslint: 9.8.0 ++ synckit: 0.11.11 ++ + '@cspell/filetypes@8.19.4': {} + ++ '@cspell/filetypes@file:packages/cspell-filetypes': {} ++ + '@cspell/strong-weak-map@8.19.4': {} + ++ '@cspell/strong-weak-map@file:packages/cspell-strong-weak-map': {} ++ + '@cspell/url@8.19.4': {} + ++ '@cspell/url@file:packages/cspell-url': {} ++ + '@cspotcode/source-map-support@0.8.1': + dependencies: + '@jridgewell/trace-mapping': 0.3.9 +@@ -13234,6 +13424,13 @@ snapshots: + '@tybys/wasm-util': 0.10.0 + optional: true + ++ '@napi-rs/wasm-runtime@1.0.5': ++ dependencies: ++ '@emnapi/core': 1.5.0 ++ '@emnapi/runtime': 1.5.0 ++ '@tybys/wasm-util': 0.10.1 ++ optional: true ++ + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 +@@ -13493,9 +13690,7 @@ snapshots: + dependencies: + '@octokit/openapi-types': 25.1.0 + +- '@oxc-project/runtime@0.82.3': {} +- +- '@oxc-project/types@0.82.3': {} ++ '@oxc-project/types@0.93.0': {} + + '@oxc-resolver/binding-android-arm-eabi@11.7.1': + optional: true +@@ -13579,51 +13774,51 @@ snapshots: + dependencies: + quansync: 0.2.11 + +- '@rolldown/binding-android-arm64@1.0.0-beta.34': ++ '@rolldown/binding-android-arm64@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-darwin-arm64@1.0.0-beta.34': ++ '@rolldown/binding-darwin-arm64@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-darwin-x64@1.0.0-beta.34': ++ '@rolldown/binding-darwin-x64@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-freebsd-x64@1.0.0-beta.34': ++ '@rolldown/binding-freebsd-x64@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.34': ++ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.34': ++ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.34': ++ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.34': ++ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-linux-x64-musl@1.0.0-beta.34': ++ '@rolldown/binding-linux-x64-musl@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-openharmony-arm64@1.0.0-beta.34': ++ '@rolldown/binding-openharmony-arm64@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-wasm32-wasi@1.0.0-beta.34': ++ '@rolldown/binding-wasm32-wasi@1.0.0-beta.41': + dependencies: +- '@napi-rs/wasm-runtime': 1.0.3 ++ '@napi-rs/wasm-runtime': 1.0.5 + optional: true + +- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.34': ++ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.34': ++ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.41': + optional: true + +- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.34': ++ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.41': + optional: true + +- '@rolldown/pluginutils@1.0.0-beta.34': {} ++ '@rolldown/pluginutils@1.0.0-beta.41': {} + + '@rollup/plugin-alias@5.1.1(rollup@4.50.0)': + optionalDependencies: +@@ -14053,6 +14248,11 @@ snapshots: + tslib: 2.8.1 + optional: true + ++ '@tybys/wasm-util@0.10.1': ++ dependencies: ++ tslib: 2.8.1 ++ optional: true ++ + '@types/body-parser@1.19.6': + dependencies: + '@types/connect': 3.4.38 +@@ -14641,6 +14841,8 @@ snapshots: + + ansis@4.1.0: {} + ++ ansis@4.2.0: {} ++ + any-promise@1.3.0: {} + + anymatch@3.1.3: +@@ -15387,6 +15589,13 @@ snapshots: + comment-json: 4.2.5 + yaml: 2.8.1 + ++ cspell-config-lib@file:packages/cspell-config-lib: ++ dependencies: ++ '@cspell/cspell-types': file:packages/cspell-types ++ comment-json: 4.2.5 ++ smol-toml: 1.4.2 ++ yaml: 2.8.1 ++ + cspell-dict-nl-nl@1.1.2: + dependencies: + '@cspell/dict-nl-nl': 1.0.35 +@@ -15399,6 +15608,13 @@ snapshots: + cspell-trie-lib: 8.19.4 + fast-equals: 5.2.2 + ++ cspell-dictionary@file:packages/cspell-dictionary: ++ dependencies: ++ '@cspell/cspell-pipe': file:packages/cspell-pipe ++ '@cspell/cspell-types': file:packages/cspell-types ++ cspell-trie-lib: file:packages/cspell-trie-lib ++ fast-equals: 5.2.2 ++ + cspell-gitignore@8.19.4: + dependencies: + '@cspell/url': 8.19.4 +@@ -15410,16 +15626,31 @@ snapshots: + '@cspell/url': 8.19.4 + picomatch: 4.0.3 + ++ cspell-glob@file:packages/cspell-glob: ++ dependencies: ++ '@cspell/url': file:packages/cspell-url ++ picomatch: 4.0.3 ++ + cspell-grammar@8.19.4: + dependencies: + '@cspell/cspell-pipe': 8.19.4 + '@cspell/cspell-types': 8.19.4 + ++ cspell-grammar@file:packages/cspell-grammar: ++ dependencies: ++ '@cspell/cspell-pipe': file:packages/cspell-pipe ++ '@cspell/cspell-types': file:packages/cspell-types ++ + cspell-io@8.19.4: + dependencies: + '@cspell/cspell-service-bus': 8.19.4 + '@cspell/url': 8.19.4 + ++ cspell-io@file:packages/cspell-io: ++ dependencies: ++ '@cspell/cspell-service-bus': file:packages/cspell-service-bus ++ '@cspell/url': file:packages/cspell-url ++ + cspell-lib@8.19.4: + dependencies: + '@cspell/cspell-bundled-dicts': 8.19.4 +@@ -15447,12 +15678,45 @@ snapshots: + vscode-uri: 3.1.0 + xdg-basedir: 5.1.0 + ++ cspell-lib@file:packages/cspell-lib: ++ dependencies: ++ '@cspell/cspell-bundled-dicts': file:packages/cspell-bundled-dicts ++ '@cspell/cspell-pipe': file:packages/cspell-pipe ++ '@cspell/cspell-resolver': file:packages/cspell-resolver ++ '@cspell/cspell-types': file:packages/cspell-types ++ '@cspell/dynamic-import': file:packages/dynamic-import ++ '@cspell/filetypes': file:packages/cspell-filetypes ++ '@cspell/strong-weak-map': file:packages/cspell-strong-weak-map ++ '@cspell/url': file:packages/cspell-url ++ clear-module: 4.1.2 ++ comment-json: 4.2.5 ++ cspell-config-lib: file:packages/cspell-config-lib ++ cspell-dictionary: file:packages/cspell-dictionary ++ cspell-glob: file:packages/cspell-glob ++ cspell-grammar: file:packages/cspell-grammar ++ cspell-io: file:packages/cspell-io ++ cspell-trie-lib: file:packages/cspell-trie-lib ++ env-paths: 3.0.0 ++ fast-equals: 5.2.2 ++ gensequence: 7.0.0 ++ import-fresh: 3.3.1 ++ resolve-from: 5.0.0 ++ vscode-languageserver-textdocument: 1.0.12 ++ vscode-uri: 3.1.0 ++ xdg-basedir: 5.1.0 ++ + cspell-trie-lib@8.19.4: + dependencies: + '@cspell/cspell-pipe': 8.19.4 + '@cspell/cspell-types': 8.19.4 + gensequence: 7.0.0 + ++ cspell-trie-lib@file:packages/cspell-trie-lib: ++ dependencies: ++ '@cspell/cspell-pipe': file:packages/cspell-pipe ++ '@cspell/cspell-types': file:packages/cspell-types ++ gensequence: 7.0.0 ++ + cspell@8.19.4: + dependencies: + '@cspell/cspell-json-reporter': 8.19.4 +@@ -20092,7 +20356,7 @@ snapshots: + dependencies: + glob: 7.2.3 + +- rolldown-plugin-dts@0.15.10(oxc-resolver@11.7.1)(rolldown@1.0.0-beta.34)(typescript@5.9.2): ++ rolldown-plugin-dts@0.15.10(oxc-resolver@11.7.1)(rolldown@1.0.0-beta.41)(typescript@5.9.2): + dependencies: + '@babel/generator': 7.28.3 + '@babel/parser': 7.28.3 +@@ -20102,34 +20366,33 @@ snapshots: + debug: 4.4.1(supports-color@8.1.1) + dts-resolver: 2.1.2(oxc-resolver@11.7.1) + get-tsconfig: 4.10.1 +- rolldown: 1.0.0-beta.34 ++ rolldown: 1.0.0-beta.41 + optionalDependencies: + typescript: 5.9.2 + transitivePeerDependencies: + - oxc-resolver + - supports-color + +- rolldown@1.0.0-beta.34: ++ rolldown@1.0.0-beta.41: + dependencies: +- '@oxc-project/runtime': 0.82.3 +- '@oxc-project/types': 0.82.3 +- '@rolldown/pluginutils': 1.0.0-beta.34 +- ansis: 4.1.0 ++ '@oxc-project/types': 0.93.0 ++ '@rolldown/pluginutils': 1.0.0-beta.41 ++ ansis: 4.2.0 + optionalDependencies: +- '@rolldown/binding-android-arm64': 1.0.0-beta.34 +- '@rolldown/binding-darwin-arm64': 1.0.0-beta.34 +- '@rolldown/binding-darwin-x64': 1.0.0-beta.34 +- '@rolldown/binding-freebsd-x64': 1.0.0-beta.34 +- '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.34 +- '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.34 +- '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.34 +- '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.34 +- '@rolldown/binding-linux-x64-musl': 1.0.0-beta.34 +- '@rolldown/binding-openharmony-arm64': 1.0.0-beta.34 +- '@rolldown/binding-wasm32-wasi': 1.0.0-beta.34 +- '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.34 +- '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.34 +- '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.34 ++ '@rolldown/binding-android-arm64': 1.0.0-beta.41 ++ '@rolldown/binding-darwin-arm64': 1.0.0-beta.41 ++ '@rolldown/binding-darwin-x64': 1.0.0-beta.41 ++ '@rolldown/binding-freebsd-x64': 1.0.0-beta.41 ++ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.41 ++ '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.41 ++ '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.41 ++ '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.41 ++ '@rolldown/binding-linux-x64-musl': 1.0.0-beta.41 ++ '@rolldown/binding-openharmony-arm64': 1.0.0-beta.41 ++ '@rolldown/binding-wasm32-wasi': 1.0.0-beta.41 ++ '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.41 ++ '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.41 ++ '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.41 + + rollup-plugin-dts@6.2.3(rollup@4.50.0)(typescript@5.9.2): + dependencies: +@@ -20926,8 +21189,8 @@ snapshots: + diff: 8.0.2 + empathic: 2.0.0 + hookable: 5.5.3 +- rolldown: 1.0.0-beta.34 +- rolldown-plugin-dts: 0.15.10(oxc-resolver@11.7.1)(rolldown@1.0.0-beta.34)(typescript@5.9.2) ++ rolldown: 1.0.0-beta.41 ++ rolldown-plugin-dts: 0.15.10(oxc-resolver@11.7.1)(rolldown@1.0.0-beta.41)(typescript@5.9.2) + semver: 7.7.2 + tinyexec: 1.0.1 + tinyglobby: 0.2.14 diff --git a/pkgs/by-name/cs/cspell/package.nix b/pkgs/by-name/cs/cspell/package.nix new file mode 100644 index 000000000000..04cfb7661e54 --- /dev/null +++ b/pkgs/by-name/cs/cspell/package.nix @@ -0,0 +1,80 @@ +{ + lib, + stdenv, + nodejs, + pnpm_10, + fetchFromGitHub, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "cspell"; + version = "9.2.1"; + + src = fetchFromGitHub { + owner = "streetsidesoftware"; + repo = "cspell"; + tag = "v${finalAttrs.version}"; + hash = "sha256-xQCE6YWCvlWjcpf2nCBjbdI76qejlvHdWiUCD4SZhRg="; + }; + + patches = [ + ./inject-workplace-deps.patch + ]; + + pnpmWorkspaces = [ "cspell..." ]; + + prePnpmInstall = '' + pnpm config set --location=project inject-workplace-packages true + ''; + + pnpmDeps = pnpm_10.fetchDeps { + inherit (finalAttrs) + pname + version + src + pnpmWorkspaces + patches + prePnpmInstall + ; + fetcherVersion = 2; + hash = "sha256-aE7DHyXPLziVjW9bBL98fFRiPwOFIyU5edbj8rEws6U="; + }; + + nativeBuildInputs = [ + nodejs + pnpm_10.configHook + ]; + + buildInputs = [ + nodejs + ]; + + buildPhase = '' + runHook preBuild + + pnpm --filter "cspell..." build + + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + + mkdir -p $out/lib/node_modules/cspell + mkdir $out/bin + pnpm --filter="cspell" --offline --prod deploy $out/lib/node_modules/cspell + + ln -s $out/lib/node_modules/cspell/bin.mjs $out/bin/cspell + + runHook postInstall + ''; + + meta = { + description = "Spell checker for code"; + homepage = "https://cspell.org"; + changelog = "https://github.com/streetsidesoftware/cspell/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.mit; + mainProgram = "cspell"; + maintainers = [ lib.maintainers.pyrox0 ]; + }; +}) diff --git a/pkgs/by-name/fe/feedbackd-device-themes/package.nix b/pkgs/by-name/fe/feedbackd-device-themes/package.nix index 6b38b5795022..88d4e5602503 100644 --- a/pkgs/by-name/fe/feedbackd-device-themes/package.nix +++ b/pkgs/by-name/fe/feedbackd-device-themes/package.nix @@ -11,14 +11,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "feedbackd-device-themes"; - version = "0.8.5"; + version = "0.8.6"; src = fetchFromGitLab { domain = "gitlab.freedesktop.org"; owner = "agx"; repo = "feedbackd-device-themes"; rev = "v${finalAttrs.version}"; - hash = "sha256-Uj6EEE8EQeHG2Z3tMc7UmTlr6td5YhOBAdWpFnFSKE4="; + hash = "sha256-zRFp+857x5KpjjMLrIx/Ygfk4YtvlA9NLBG7HdTbPYw="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/fe/feedbackd/package.nix b/pkgs/by-name/fe/feedbackd/package.nix index f7195cb6a309..0ddd195c745d 100644 --- a/pkgs/by-name/fe/feedbackd/package.nix +++ b/pkgs/by-name/fe/feedbackd/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "feedbackd"; - version = "0.8.4"; + version = "0.8.5"; outputs = [ "out" @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "agx"; repo = "feedbackd"; rev = "v${finalAttrs.version}"; - hash = "sha256-9UBrexS7zNxFUB/K1I5ZO78OjGAshCAABZQyc0lBLlQ="; + hash = "sha256-m8jDn7gDrZOsdFl17IsIINgcpuHmmtNOCEEdQFwVj6g="; }; depsBuildBuild = [ diff --git a/pkgs/by-name/fl/fluxcd/package.nix b/pkgs/by-name/fl/fluxcd/package.nix index b2e3b388cdc2..266cbd0cd0b0 100644 --- a/pkgs/by-name/fl/fluxcd/package.nix +++ b/pkgs/by-name/fl/fluxcd/package.nix @@ -8,10 +8,10 @@ }: let - version = "2.6.4"; - srcHash = "sha256-uUjdS0vcg6XgHBGEr2A+nc9y0QS7cuMLiOckKm+eio4="; - vendorHash = "sha256-U37QdGfj7+YXIARORo0AHqgdzrODyUe5DA+eefxzTWA="; - manifestsHash = "sha256-zhxYTBidIY2bQz1e8wVlbq3B+2c2fLrQenvAD7h6JYg="; + version = "2.7.0"; + srcHash = "sha256-m8DY0W9lC4QGlBuTBtAmNq3usdpjh1yQM3+AjHsJfOQ="; + vendorHash = "sha256-P7d+sljzPa4qNVc5U9bqaMz4LvDYQqHFVl/tahftyz4="; + manifestsHash = "sha256-3JWkcjcG8/G8+sdB1VBbJNXZCbM0aE303XWHl8pKYN4="; manifests = fetchzip { url = "https://github.com/fluxcd/flux2/releases/download/v${version}/manifests.tar.gz"; diff --git a/pkgs/by-name/gl/glaze/package.nix b/pkgs/by-name/gl/glaze/package.nix index 49288a4bccf4..c7a3a404ecd4 100644 --- a/pkgs/by-name/gl/glaze/package.nix +++ b/pkgs/by-name/gl/glaze/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation (final: { pname = "glaze"; - version = "5.7.1"; + version = "5.7.2"; src = fetchFromGitHub { owner = "stephenberry"; repo = "glaze"; tag = "v${final.version}"; - hash = "sha256-oLSjA7Q49KKuyLYcSWOYzORhKkeyzjBTNJVeHUuOIDc="; + hash = "sha256-lj4VjPBZql6lfIcXKzZ2hXe9dtonZHj2DqwMrX3q1dI="; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/by-name/im/immich-cli/package.nix b/pkgs/by-name/im/immich-cli/package.nix index 9a9b3fa8a591..d36d125f031c 100644 --- a/pkgs/by-name/im/immich-cli/package.nix +++ b/pkgs/by-name/im/immich-cli/package.nix @@ -12,7 +12,7 @@ let in stdenv.mkDerivation rec { pname = "immich-cli"; - version = "2.2.94"; + version = "2.2.95"; inherit (immich) src pnpmDeps; postPatch = '' diff --git a/pkgs/by-name/im/immich/package.nix b/pkgs/by-name/im/immich/package.nix index dfa10d273b76..c5e047a40758 100644 --- a/pkgs/by-name/im/immich/package.nix +++ b/pkgs/by-name/im/immich/package.nix @@ -34,7 +34,7 @@ }: let pnpm = pnpm_10; - version = "1.144.1"; + version = "2.0.0"; esbuild' = buildPackages.esbuild.override { buildGoModule = @@ -108,7 +108,7 @@ let owner = "immich-app"; repo = "immich"; tag = "v${version}"; - hash = "sha256-lSe50nbVWNWej137JgfJawIOPhtMVoolHahfrd1ENJc="; + hash = "sha256-N9/vDOZzx4BQvWQBPE6ANCJ9RhWmytw8j1BgDU6ob+g="; }; pnpmDeps = pnpm.fetchDeps { diff --git a/pkgs/by-name/in/intel-media-driver/package.nix b/pkgs/by-name/in/intel-media-driver/package.nix index a0c58f0b0260..c6e2bc6f8e44 100644 --- a/pkgs/by-name/in/intel-media-driver/package.nix +++ b/pkgs/by-name/in/intel-media-driver/package.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { pname = "intel-media-driver"; - version = "25.2.6"; + version = "25.3.4"; outputs = [ "out" @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { owner = "intel"; repo = "media-driver"; rev = "intel-media-${version}"; - hash = "sha256-+gcecl04LSFTb9mn+2oJ07/z8aGYezP4AdeITlTS5OY="; + hash = "sha256-76FBaeTXSRbUN63AaV0XSj/QFi0UF+K/ig+LFjQQgFQ="; }; patches = [ diff --git a/pkgs/by-name/ip/ipxe/package.nix b/pkgs/by-name/ip/ipxe/package.nix index f89b809d5b9f..497f3ff68090 100644 --- a/pkgs/by-name/ip/ipxe/package.nix +++ b/pkgs/by-name/ip/ipxe/package.nix @@ -48,7 +48,7 @@ in stdenv.mkDerivation (finalAttrs: { pname = "ipxe"; - version = "1.21.1-unstable-2025-09-18"; + version = "1.21.1-unstable-2025-10-01"; nativeBuildInputs = [ mtools @@ -66,8 +66,8 @@ stdenv.mkDerivation (finalAttrs: { src = fetchFromGitHub { owner = "ipxe"; repo = "ipxe"; - rev = "6464f2edb855274cd3e311eff0aa718935b3eef6"; - hash = "sha256-K1BiZqthdkIbRiBHUYTu7aIJ8LJ1xpGmVCa255GkFmM="; + rev = "cf534975411051ea0ddcbea28347d8d643a36360"; + hash = "sha256-B6lViDMH/VK+xdrDwaa1zIZUcfCF94hk+/UrdgVxk0c="; }; # Calling syslinux on a FAT image isn't going to work on Aarch64. diff --git a/pkgs/by-name/iw/iw4x-launcher/package.nix b/pkgs/by-name/iw/iw4x-launcher/package.nix index 5d3aee515f8e..d7723f8e3b73 100644 --- a/pkgs/by-name/iw/iw4x-launcher/package.nix +++ b/pkgs/by-name/iw/iw4x-launcher/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "iw4x-launcher"; - version = "1.1.2"; + version = "1.1.6"; src = fetchFromGitHub { owner = "iw4x"; repo = "launcher"; tag = "v${finalAttrs.version}"; - hash = "sha256-HALxUqfTGB7sQhp0G1vXAtxmh6CHRb143Wws6G6gvBY="; + hash = "sha256-k1/7E4XKmynHkDWl1LibmaZ2CwXzR4YR3sgCyT+C/ug="; }; - cargoHash = "sha256-LS+b3ViCIuSVaoaXqwuPrZsvWlntheScrVPf+wtP7Io="; + cargoHash = "sha256-2czLiNj/GeD8M0hAlAVeoWh4m7vDG9GoLqber9hvwfE="; buildInputs = [ openssl ]; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/by-name/ja/jankyborders/package.nix b/pkgs/by-name/ja/jankyborders/package.nix index 166a1d80b5ca..468c367d6b84 100644 --- a/pkgs/by-name/ja/jankyborders/package.nix +++ b/pkgs/by-name/ja/jankyborders/package.nix @@ -8,13 +8,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "JankyBorders"; - version = "1.8.3"; + version = "1.8.4"; src = fetchFromGitHub { owner = "FelixKratz"; repo = "JankyBorders"; rev = "v${finalAttrs.version}"; - hash = "sha256-lc61PjaRZ8ZOWAFhsf/G3sQkd1oUyePHU43w4pt1AWY="; + hash = "sha256-31Er+cUQNJbZnXKC6KvlrBhOvyPAM7nP3BaxunAtvWg="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ki/kiro/package.nix b/pkgs/by-name/ki/kiro/package.nix index d030b5f956c1..27e0674a374f 100644 --- a/pkgs/by-name/ki/kiro/package.nix +++ b/pkgs/by-name/ki/kiro/package.nix @@ -15,7 +15,7 @@ in inherit useVSCodeRipgrep; commandLineArgs = extraCommandLineArgs; - version = "0.2.59"; + version = "0.3.0"; pname = "kiro"; # You can find the current VSCode version in the About dialog: diff --git a/pkgs/by-name/ki/kiro/sources.json b/pkgs/by-name/ki/kiro/sources.json index 6d146c420cf8..c34b985e81a3 100644 --- a/pkgs/by-name/ki/kiro/sources.json +++ b/pkgs/by-name/ki/kiro/sources.json @@ -1,14 +1,14 @@ { "x86_64-linux": { - "url": "https://prod.download.desktop.kiro.dev/releases/202509172055--distro-linux-x64-tar-gz/202509172055-distro-linux-x64.tar.gz", - "hash": "sha256-VL5acxUc3HLKXvebBUaj62I9gIDMNkUxree3TJeca3Q=" + "url": "https://prod.download.desktop.kiro.dev/releases/202509300138--distro-linux-x64-tar-gz/202509300138-distro-linux-x64.tar.gz", + "hash": "sha256-+aXPnVpK5WCzLG/6xo/UFw9akwlitPKBaP8w83KTh2E=" }, "x86_64-darwin": { - "url": "https://prod.download.desktop.kiro.dev/releases/202509172055-Kiro-dmg-darwin-x64.dmg", - "hash": "sha256-kwONoLbIB6YvAriwJF5q+8niRsy6cfr2H18D4ha3F7A=" + "url": "https://prod.download.desktop.kiro.dev/releases/202509300138-Kiro-dmg-darwin-x64.dmg", + "hash": "sha256-uB22ldI92ql6FQvTMG5+MJcNfiZZLzRrqJPYIi8KHQQ=" }, "aarch64-darwin": { - "url": "https://prod.download.desktop.kiro.dev/releases/202509172055-Kiro-dmg-darwin-arm64.dmg", - "hash": "sha256-5xvDoGMdS/ovLKJ9gE+Seg/ZtpLXHQ7b78gf0tuZUag=" + "url": "https://prod.download.desktop.kiro.dev/releases/202509300138-Kiro-dmg-darwin-arm64.dmg", + "hash": "sha256-VqWVIwnV1gxbf9ksE1YiW84hPK8d4zh1CavWNNLfBRc=" } } diff --git a/pkgs/by-name/la/laravel/composer.lock b/pkgs/by-name/la/laravel/composer.lock index 3c6d258ccb06..3eff42ccc294 100644 --- a/pkgs/by-name/la/laravel/composer.lock +++ b/pkgs/by-name/la/laravel/composer.lock @@ -167,16 +167,16 @@ }, { "name": "illuminate/collections", - "version": "v12.25.0", + "version": "v12.32.5", "source": { "type": "git", "url": "https://github.com/illuminate/collections.git", - "reference": "d8bdd65850b99ac4f7ebee1a49ad678a6740bec9" + "reference": "d47aaf15c55dd1c252688fdc7adbee129bd2ff0b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/collections/zipball/d8bdd65850b99ac4f7ebee1a49ad678a6740bec9", - "reference": "d8bdd65850b99ac4f7ebee1a49ad678a6740bec9", + "url": "https://api.github.com/repos/illuminate/collections/zipball/d47aaf15c55dd1c252688fdc7adbee129bd2ff0b", + "reference": "d47aaf15c55dd1c252688fdc7adbee129bd2ff0b", "shasum": "" }, "require": { @@ -184,7 +184,8 @@ "illuminate/contracts": "^12.0", "illuminate/macroable": "^12.0", "php": "^8.2", - "symfony/polyfill-php84": "^1.31" + "symfony/polyfill-php84": "^1.33", + "symfony/polyfill-php85": "^1.33" }, "suggest": { "illuminate/http": "Required to convert collections to API resources (^12.0).", @@ -221,11 +222,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-08-13T02:18:00+00:00" + "time": "2025-09-28T12:52:25+00:00" }, { "name": "illuminate/conditionable", - "version": "v12.25.0", + "version": "v12.32.5", "source": { "type": "git", "url": "https://github.com/illuminate/conditionable.git", @@ -271,16 +272,16 @@ }, { "name": "illuminate/contracts", - "version": "v12.25.0", + "version": "v12.32.5", "source": { "type": "git", "url": "https://github.com/illuminate/contracts.git", - "reference": "458573a554b927e9594bb35baf9a7897dea03303" + "reference": "0bdbf0cdb5dd5739b2c8e6caf881a4114399ab15" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/contracts/zipball/458573a554b927e9594bb35baf9a7897dea03303", - "reference": "458573a554b927e9594bb35baf9a7897dea03303", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/0bdbf0cdb5dd5739b2c8e6caf881a4114399ab15", + "reference": "0bdbf0cdb5dd5739b2c8e6caf881a4114399ab15", "shasum": "" }, "require": { @@ -315,20 +316,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-08-03T15:27:01+00:00" + "time": "2025-09-12T14:35:11+00:00" }, { "name": "illuminate/filesystem", - "version": "v12.25.0", + "version": "v12.32.5", "source": { "type": "git", "url": "https://github.com/illuminate/filesystem.git", - "reference": "d1c5bbb3b84649599def8ddd814c1f9543930055" + "reference": "cf3b35f7570e86f946459be95566a7b3c0e2a7ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/filesystem/zipball/d1c5bbb3b84649599def8ddd814c1f9543930055", - "reference": "d1c5bbb3b84649599def8ddd814c1f9543930055", + "url": "https://api.github.com/repos/illuminate/filesystem/zipball/cf3b35f7570e86f946459be95566a7b3c0e2a7ef", + "reference": "cf3b35f7570e86f946459be95566a7b3c0e2a7ef", "shasum": "" }, "require": { @@ -382,11 +383,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-08-04T20:03:30+00:00" + "time": "2025-09-30T12:21:30+00:00" }, { "name": "illuminate/macroable", - "version": "v12.25.0", + "version": "v12.32.5", "source": { "type": "git", "url": "https://github.com/illuminate/macroable.git", @@ -432,16 +433,16 @@ }, { "name": "illuminate/support", - "version": "v12.25.0", + "version": "v12.32.5", "source": { "type": "git", "url": "https://github.com/illuminate/support.git", - "reference": "dffee7182dc82a2b0b384e461059c9cad4272ed8" + "reference": "648bbaf51b108771e0c3297dc251953fd03a4243" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/support/zipball/dffee7182dc82a2b0b384e461059c9cad4272ed8", - "reference": "dffee7182dc82a2b0b384e461059c9cad4272ed8", + "url": "https://api.github.com/repos/illuminate/support/zipball/648bbaf51b108771e0c3297dc251953fd03a4243", + "reference": "648bbaf51b108771e0c3297dc251953fd03a4243", "shasum": "" }, "require": { @@ -455,7 +456,8 @@ "illuminate/macroable": "^12.0", "nesbot/carbon": "^3.8.4", "php": "^8.2", - "symfony/polyfill-php83": "^1.31", + "symfony/polyfill-php83": "^1.33", + "symfony/polyfill-php85": "^1.33", "voku/portable-ascii": "^2.0.2" }, "conflict": { @@ -506,20 +508,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-08-13T21:42:15+00:00" + "time": "2025-09-29T18:49:19+00:00" }, { "name": "laravel/prompts", - "version": "v0.3.6", + "version": "v0.3.7", "source": { "type": "git", "url": "https://github.com/laravel/prompts.git", - "reference": "86a8b692e8661d0fb308cec64f3d176821323077" + "reference": "a1891d362714bc40c8d23b0b1d7090f022ea27cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/86a8b692e8661d0fb308cec64f3d176821323077", - "reference": "86a8b692e8661d0fb308cec64f3d176821323077", + "url": "https://api.github.com/repos/laravel/prompts/zipball/a1891d362714bc40c8d23b0b1d7090f022ea27cc", + "reference": "a1891d362714bc40c8d23b0b1d7090f022ea27cc", "shasum": "" }, "require": { @@ -536,8 +538,8 @@ "illuminate/collections": "^10.0|^11.0|^12.0", "mockery/mockery": "^1.5", "pestphp/pest": "^2.3|^3.4", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-mockery": "^1.1" + "phpstan/phpstan": "^1.12.28", + "phpstan/phpstan-mockery": "^1.1.3" }, "suggest": { "ext-pcntl": "Required for the spinner to be animated." @@ -563,22 +565,22 @@ "description": "Add beautiful and user-friendly forms to your command-line applications.", "support": { "issues": "https://github.com/laravel/prompts/issues", - "source": "https://github.com/laravel/prompts/tree/v0.3.6" + "source": "https://github.com/laravel/prompts/tree/v0.3.7" }, - "time": "2025-07-07T14:17:42+00:00" + "time": "2025-09-19T13:47:56+00:00" }, { "name": "nesbot/carbon", - "version": "3.10.2", + "version": "3.10.3", "source": { "type": "git", "url": "https://github.com/CarbonPHP/carbon.git", - "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24" + "reference": "8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24", - "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f", + "reference": "8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f", "shasum": "" }, "require": { @@ -596,13 +598,13 @@ "require-dev": { "doctrine/dbal": "^3.6.3 || ^4.0", "doctrine/orm": "^2.15.2 || ^3.0", - "friendsofphp/php-cs-fixer": "^3.75.0", + "friendsofphp/php-cs-fixer": "^v3.87.1", "kylekatarnls/multi-tester": "^2.5.3", "phpmd/phpmd": "^2.15.0", "phpstan/extension-installer": "^1.4.3", - "phpstan/phpstan": "^2.1.17", - "phpunit/phpunit": "^10.5.46", - "squizlabs/php_codesniffer": "^3.13.0" + "phpstan/phpstan": "^2.1.22", + "phpunit/phpunit": "^10.5.53", + "squizlabs/php_codesniffer": "^3.13.4" }, "bin": [ "bin/carbon" @@ -670,7 +672,7 @@ "type": "tidelift" } ], - "time": "2025-08-02T09:36:06+00:00" + "time": "2025-09-06T13:39:36+00:00" }, { "name": "psr/clock", @@ -900,16 +902,16 @@ }, { "name": "symfony/console", - "version": "v7.3.2", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "5f360ebc65c55265a74d23d7fe27f957870158a1" + "reference": "2b9c5fafbac0399a20a2e82429e2bd735dcfb7db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/5f360ebc65c55265a74d23d7fe27f957870158a1", - "reference": "5f360ebc65c55265a74d23d7fe27f957870158a1", + "url": "https://api.github.com/repos/symfony/console/zipball/2b9c5fafbac0399a20a2e82429e2bd735dcfb7db", + "reference": "2b9c5fafbac0399a20a2e82429e2bd735dcfb7db", "shasum": "" }, "require": { @@ -974,7 +976,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v7.3.2" + "source": "https://github.com/symfony/console/tree/v7.3.4" }, "funding": [ { @@ -994,7 +996,7 @@ "type": "tidelift" } ], - "time": "2025-07-30T17:13:41+00:00" + "time": "2025-09-22T15:31:00+00:00" }, { "name": "symfony/deprecation-contracts", @@ -1133,7 +1135,7 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.32.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", @@ -1192,7 +1194,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0" }, "funding": [ { @@ -1203,6 +1205,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -1212,16 +1218,16 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.32.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70", + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70", "shasum": "" }, "require": { @@ -1270,7 +1276,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0" }, "funding": [ { @@ -1281,16 +1287,20 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-06-27T09:58:17+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.32.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", @@ -1351,7 +1361,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" }, "funding": [ { @@ -1362,6 +1372,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -1371,7 +1385,7 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.32.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", @@ -1432,7 +1446,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" }, "funding": [ { @@ -1443,6 +1457,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -1452,16 +1470,16 @@ }, { "name": "symfony/polyfill-php83", - "version": "v1.32.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5", + "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5", "shasum": "" }, "require": { @@ -1508,7 +1526,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0" }, "funding": [ { @@ -1519,25 +1537,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-07-08T02:45:35+00:00" }, { "name": "symfony/polyfill-php84", - "version": "v1.32.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php84.git", - "reference": "000df7860439609837bbe28670b0be15783b7fbf" + "reference": "d8ced4d875142b6a7426000426b8abc631d6b191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf", - "reference": "000df7860439609837bbe28670b0be15783b7fbf", + "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191", + "reference": "d8ced4d875142b6a7426000426b8abc631d6b191", "shasum": "" }, "require": { @@ -1584,7 +1606,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0" }, "funding": [ { @@ -1595,25 +1617,109 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-02-20T12:04:08+00:00" + "time": "2025-06-24T13:30:11+00:00" }, { - "name": "symfony/process", - "version": "v7.3.0", + "name": "symfony/polyfill-php85", + "version": "v1.33.0", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af" + "url": "https://github.com/symfony/polyfill-php85.git", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af", - "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af", + "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php85\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-06-23T16:12:55+00:00" + }, + { + "name": "symfony/process", + "version": "v7.3.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "f24f8f316367b30810810d4eb30c543d7003ff3b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/f24f8f316367b30810810d4eb30c543d7003ff3b", + "reference": "f24f8f316367b30810810d4eb30c543d7003ff3b", "shasum": "" }, "require": { @@ -1645,7 +1751,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v7.3.0" + "source": "https://github.com/symfony/process/tree/v7.3.4" }, "funding": [ { @@ -1656,12 +1762,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-04-17T09:11:12+00:00" + "time": "2025-09-11T10:12:26+00:00" }, { "name": "symfony/service-contracts", @@ -1748,16 +1858,16 @@ }, { "name": "symfony/string", - "version": "v7.3.2", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca" + "reference": "f96476035142921000338bad71e5247fbc138872" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/42f505aff654e62ac7ac2ce21033818297ca89ca", - "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca", + "url": "https://api.github.com/repos/symfony/string/zipball/f96476035142921000338bad71e5247fbc138872", + "reference": "f96476035142921000338bad71e5247fbc138872", "shasum": "" }, "require": { @@ -1772,7 +1882,6 @@ }, "require-dev": { "symfony/emoji": "^7.1", - "symfony/error-handler": "^6.4|^7.0", "symfony/http-client": "^6.4|^7.0", "symfony/intl": "^6.4|^7.0", "symfony/translation-contracts": "^2.5|^3.0", @@ -1815,7 +1924,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.3.2" + "source": "https://github.com/symfony/string/tree/v7.3.4" }, "funding": [ { @@ -1835,20 +1944,20 @@ "type": "tidelift" } ], - "time": "2025-07-10T08:47:49+00:00" + "time": "2025-09-11T14:36:48+00:00" }, { "name": "symfony/translation", - "version": "v7.3.2", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "81b48f4daa96272efcce9c7a6c4b58e629df3c90" + "reference": "ec25870502d0c7072d086e8ffba1420c85965174" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/81b48f4daa96272efcce9c7a6c4b58e629df3c90", - "reference": "81b48f4daa96272efcce9c7a6c4b58e629df3c90", + "url": "https://api.github.com/repos/symfony/translation/zipball/ec25870502d0c7072d086e8ffba1420c85965174", + "reference": "ec25870502d0c7072d086e8ffba1420c85965174", "shasum": "" }, "require": { @@ -1915,7 +2024,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v7.3.2" + "source": "https://github.com/symfony/translation/tree/v7.3.4" }, "funding": [ { @@ -1935,7 +2044,7 @@ "type": "tidelift" } ], - "time": "2025-07-30T17:31:46+00:00" + "time": "2025-09-07T11:39:36+00:00" }, { "name": "symfony/translation-contracts", @@ -2329,16 +2438,16 @@ }, { "name": "phpstan/phpstan", - "version": "2.1.22", + "version": "2.1.29", "source": { "type": "git", - "url": "https://github.com/phpstan/phpstan.git", - "reference": "41600c8379eb5aee63e9413fe9e97273e25d57e4" + "url": "https://github.com/phpstan/phpstan-phar-composer-source.git", + "reference": "git" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/41600c8379eb5aee63e9413fe9e97273e25d57e4", - "reference": "41600c8379eb5aee63e9413fe9e97273e25d57e4", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d618573eed4a1b6b75e37b2e0b65ac65c885d88e", + "reference": "d618573eed4a1b6b75e37b2e0b65ac65c885d88e", "shasum": "" }, "require": { @@ -2383,7 +2492,7 @@ "type": "github" } ], - "time": "2025-08-04T19:17:37+00:00" + "time": "2025-09-25T06:58:18+00:00" }, { "name": "phpunit/php-code-coverage", @@ -2708,16 +2817,16 @@ }, { "name": "phpunit/phpunit", - "version": "10.5.52", + "version": "10.5.58", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "5be558244941fba07788b6bb42dc5fc84429580c" + "reference": "e24fb46da450d8e6a5788670513c1af1424f16ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/5be558244941fba07788b6bb42dc5fc84429580c", - "reference": "5be558244941fba07788b6bb42dc5fc84429580c", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e24fb46da450d8e6a5788670513c1af1424f16ca", + "reference": "e24fb46da450d8e6a5788670513c1af1424f16ca", "shasum": "" }, "require": { @@ -2738,10 +2847,10 @@ "phpunit/php-timer": "^6.0.0", "sebastian/cli-parser": "^2.0.1", "sebastian/code-unit": "^2.0.0", - "sebastian/comparator": "^5.0.3", + "sebastian/comparator": "^5.0.4", "sebastian/diff": "^5.1.1", "sebastian/environment": "^6.1.0", - "sebastian/exporter": "^5.1.2", + "sebastian/exporter": "^5.1.4", "sebastian/global-state": "^6.0.2", "sebastian/object-enumerator": "^5.0.0", "sebastian/recursion-context": "^5.0.1", @@ -2789,7 +2898,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.52" + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.58" }, "funding": [ { @@ -2813,7 +2922,7 @@ "type": "tidelift" } ], - "time": "2025-08-16T05:17:33+00:00" + "time": "2025-09-28T12:04:46+00:00" }, { "name": "sebastian/cli-parser", @@ -2985,16 +3094,16 @@ }, { "name": "sebastian/comparator", - "version": "5.0.3", + "version": "5.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e" + "reference": "e8e53097718d2b53cfb2aa859b06a41abf58c62e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", - "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/e8e53097718d2b53cfb2aa859b06a41abf58c62e", + "reference": "e8e53097718d2b53cfb2aa859b06a41abf58c62e", "shasum": "" }, "require": { @@ -3050,15 +3159,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "security": "https://github.com/sebastianbergmann/comparator/security/policy", - "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3" + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.4" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator", + "type": "tidelift" } ], - "time": "2024-10-18T14:56:07+00:00" + "time": "2025-09-07T05:25:07+00:00" }, { "name": "sebastian/complexity", @@ -3251,16 +3372,16 @@ }, { "name": "sebastian/exporter", - "version": "5.1.2", + "version": "5.1.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "955288482d97c19a372d3f31006ab3f37da47adf" + "reference": "0735b90f4da94969541dac1da743446e276defa6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf", - "reference": "955288482d97c19a372d3f31006ab3f37da47adf", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0735b90f4da94969541dac1da743446e276defa6", + "reference": "0735b90f4da94969541dac1da743446e276defa6", "shasum": "" }, "require": { @@ -3269,7 +3390,7 @@ "sebastian/recursion-context": "^5.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^10.5" }, "type": "library", "extra": { @@ -3317,15 +3438,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", "security": "https://github.com/sebastianbergmann/exporter/security/policy", - "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2" + "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.4" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter", + "type": "tidelift" } ], - "time": "2024-03-02T07:17:12+00:00" + "time": "2025-09-24T06:09:11+00:00" }, { "name": "sebastian/global-state", diff --git a/pkgs/by-name/la/laravel/package.nix b/pkgs/by-name/la/laravel/package.nix index 250cb5d603ae..36a8fcbbbc2e 100644 --- a/pkgs/by-name/la/laravel/package.nix +++ b/pkgs/by-name/la/laravel/package.nix @@ -7,19 +7,19 @@ }: php.buildComposerProject2 (finalAttrs: { pname = "laravel"; - version = "5.17.0"; + version = "5.19.0"; src = fetchFromGitHub { owner = "laravel"; repo = "installer"; tag = "v${finalAttrs.version}"; - hash = "sha256-SprGPKpXQoks1eB9XLO6ms7q09q/QFutukEk4VfhXOM="; + hash = "sha256-k1A3Ro8Zeu4nzjp7rWW11R0ijfp+Wo/29CESDliimTs="; }; nativeBuildInputs = [ makeWrapper ]; composerLock = ./composer.lock; - vendorHash = "sha256-R1+IUKkmThbTN21rxP6CGilTn9R3E7irGND2YDm3RjI="; + vendorHash = "sha256-ioYwWKRSeUixxI3Jq8XmnDOsGtvHK9ZF2qJXgL6AD2Y="; # Adding npm (nodejs) and php composer to path postInstall = '' diff --git a/pkgs/by-name/lo/lowfi/package.nix b/pkgs/by-name/lo/lowfi/package.nix index 426ad6280e8b..2d6f4bc2e6b0 100644 --- a/pkgs/by-name/lo/lowfi/package.nix +++ b/pkgs/by-name/lo/lowfi/package.nix @@ -10,16 +10,16 @@ rustPlatform.buildRustPackage rec { pname = "lowfi"; - version = "1.6.0"; + version = "1.7.2"; src = fetchFromGitHub { owner = "talwat"; repo = "lowfi"; tag = version; - hash = "sha256-t3Lbqrcmh0XSOO+hc4UsWhKi4zToORFQo0A4G32aeOw="; + hash = "sha256-0Oim1nGll76APjjfNCuJgjOlEJxAU6vZteECEFhsWkI="; }; - cargoHash = "sha256-waQcxdVXZZ09wuLWUNL4nRUHF1rIDI8lAfYc/1bxMl0="; + cargoHash = "sha256-vInuM96TJuewhFafDkhOiZiyxwc6SeBsSH8Fs8YIRRs="; buildFeatures = lib.optionals stdenv.hostPlatform.isLinux [ "mpris" ]; diff --git a/pkgs/by-name/me/mediamate/package.nix b/pkgs/by-name/me/mediamate/package.nix new file mode 100644 index 000000000000..e8d88b09d0aa --- /dev/null +++ b/pkgs/by-name/me/mediamate/package.nix @@ -0,0 +1,43 @@ +{ + lib, + stdenvNoCC, + fetchurl, + nix-update-script, + unzip, +}: + +stdenvNoCC.mkDerivation (finalAttrs: { + pname = "mediamate"; + version = "3.8.2_316"; + + src = fetchurl { + url = "https://github.com/Wouter01/MediaMate-Releases/releases/download/v${finalAttrs.version}/MediaMate_v${ + lib.strings.replaceStrings [ "_" ] [ "-" ] finalAttrs.version + }.zip"; + hash = "sha256-O+V7x0AJBgsPL7clEpQYvvE38/0IxyN8J4tptxCmgo0="; + }; + + sourceRoot = "."; + + nativeBuildInputs = [ unzip ]; + + installPhase = '' + runHook preInstall + + mkdir -p $out/Applications + cp -r *.app $out/Applications + + runHook postInstall + ''; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "New, fresh visuals for changing your volume, brightness and now playing media"; + homepage = "https://wouter01.github.io/MediaMate/"; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ FlameFlag ]; + platforms = lib.platforms.darwin; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + }; +}) diff --git a/pkgs/by-name/mi/mixxc/package.nix b/pkgs/by-name/mi/mixxc/package.nix index 1d4f26b170b9..4519f2978c43 100644 --- a/pkgs/by-name/mi/mixxc/package.nix +++ b/pkgs/by-name/mi/mixxc/package.nix @@ -16,15 +16,15 @@ rustPlatform.buildRustPackage rec { pname = "mixxc"; - version = "0.2.4"; + version = "0.2.5"; src = fetchCrate { pname = "mixxc"; inherit version; - hash = "sha256-9ZQjNhmQKMfEJsMMpUBI8C6ebfl9UI4yBt6f331tFXU="; + hash = "sha256-YVh6SOXCf4GHqDduXP7QupC48hcIMQtjIdGJYXNXQ1E="; }; - cargoHash = "sha256-Ng4Vbk00m66qdm0lMaQ5Ab56x3kZKq8NsCDMTPVnQ3c="; + cargoHash = "sha256-w+bHaGt6aq21DpmxYNQIf/YNigfrkqnAI25Q3l/WhHc="; cargoBuildFlags = [ "--locked" ]; diff --git a/pkgs/by-name/op/opencode/package.nix b/pkgs/by-name/op/opencode/package.nix index fcab7e363bf6..97b4e757e8f8 100644 --- a/pkgs/by-name/op/opencode/package.nix +++ b/pkgs/by-name/op/opencode/package.nix @@ -22,12 +22,12 @@ let in stdenvNoCC.mkDerivation (finalAttrs: { pname = "opencode"; - version = "0.13.5"; + version = "0.14.0"; src = fetchFromGitHub { owner = "sst"; repo = "opencode"; tag = "v${finalAttrs.version}"; - hash = "sha256-GiByJg4NpllA4N4QGSyWsBNqKqKIdxicIjQpc7mHgEs="; + hash = "sha256-w+tYMt+Ucin02GuT7ET4UKFgktay5q5Wywsr+vQgLlo="; }; tui = buildGoModule { @@ -105,10 +105,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { outputHash = { - x86_64-linux = "sha256-YOTuzwo0ZjqVswW3bUu3pFJcmfl0X0Se8Z5jKg8/rQs="; - aarch64-linux = "sha256-pLtE1Cyv4jHYGFQlVHMeKZbQqC2SkxTu2KRHN4E1NPw="; - x86_64-darwin = "sha256-3JxXe889dL7TBuHPRYDsviUuwnp38XWAwFN3Te6JtDg="; - aarch64-darwin = "sha256-RHg55NvI52EGTWUCCJVrilXqr3qc+vqQoT/uIUjDVvg="; + x86_64-linux = "sha256-ZIwhqdwlUO61ZXDwgjvKTJAB312pJG8bfbIHJcjdX1w="; + aarch64-linux = "sha256-D0lw7fPlk86AXlAO6OCydTvUrDrQ/eWm1Q3QSApL5ic="; + x86_64-darwin = "sha256-tUwMQv1z0oJpr0S5n+aaaQPOoAQVqnaS7SHuTdWzrPA="; + aarch64-darwin = "sha256-KoZd2Plm5lnDCebMZdtCJuy1qwfFJYbeeY8ttIw7oc4="; } .${stdenv.hostPlatform.system}; outputHashAlgo = "sha256"; diff --git a/pkgs/by-name/pi/pixi-pack/package.nix b/pkgs/by-name/pi/pixi-pack/package.nix index eba457b85cb6..18090d797625 100644 --- a/pkgs/by-name/pi/pixi-pack/package.nix +++ b/pkgs/by-name/pi/pixi-pack/package.nix @@ -10,16 +10,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "pixi-pack"; - version = "0.7.2"; + version = "0.7.3"; src = fetchFromGitHub { owner = "Quantco"; repo = "pixi-pack"; tag = "v${finalAttrs.version}"; - hash = "sha256-fZAhZ67EnD0WSTV6bcGEG9Y+/4oQgTUS6ufI4fdAITA="; + hash = "sha256-IYY5moAxZ+pDF6G6KxfuB6DI+Y5V8AseFUyWGs77+bQ="; }; - cargoHash = "sha256-u4Hj4i552b3Ay4BsJM31rPj66PZx6qrcMgIU5CCIo1Q="; + cargoHash = "sha256-EM1xCQGIXI2Q5OkfXcReGvPSLiVq98sleo0+rYa0bkw="; buildInputs = [ openssl ]; diff --git a/pkgs/by-name/pr/pretix/package.nix b/pkgs/by-name/pr/pretix/package.nix index 0409dfd92e05..3dba95437a1b 100644 --- a/pkgs/by-name/pr/pretix/package.nix +++ b/pkgs/by-name/pr/pretix/package.nix @@ -42,13 +42,13 @@ let }; pname = "pretix"; - version = "2025.7.1"; + version = "2025.8.0"; src = fetchFromGitHub { owner = "pretix"; repo = "pretix"; rev = "refs/tags/v${version}"; - hash = "sha256-emPzCwViqbGqlQRYmyamhQ5y6a3g67TTYIdv6FWbGEU="; + hash = "sha256-89BAQZpXyyTg6T9hxm4EV8QHZDcD3FcnGKxAulxziyg="; }; npmDeps = buildNpmPackage { @@ -56,7 +56,7 @@ let inherit version src; sourceRoot = "${src.name}/src/pretix/static/npm_dir"; - npmDepsHash = "sha256-cvyOpEw6z0cNUdHRmyEZUoeKPMOAtC+YHYXCltbHdm0="; + npmDepsHash = "sha256-E2K9SYqRbhpQi83va8D02cwPnf51haoKv4P/ppU2m08="; dontBuild = true; @@ -85,6 +85,7 @@ python.pkgs.buildPythonApplication rec { "celery" "css-inline" "django-bootstrap3" + "django-formset-js-improved" "django-i18nfield" "django-localflavor" "django-phonenumber-field" @@ -97,6 +98,7 @@ python.pkgs.buildPythonApplication rec { "phonenumberslite" "pillow" "protobuf" + "pycparser" "pycryptodome" "pyjwt" "pypdf" @@ -127,6 +129,10 @@ python.pkgs.buildPythonApplication rec { substituteInPlace pyproject.toml \ --replace-fail '"backend"' '"setuptools.build_meta"' \ --replace-fail 'backend-path = ["_build"]' "" + + # npm ci would remove and try to reinstall node_modules + substituteInPlace src/pretix/_build.py \ + --replace-fail "npm ci" "npm install" ''; build-system = with python.pkgs; [ diff --git a/pkgs/by-name/pr/pretix/plugins/sepadebit/package.nix b/pkgs/by-name/pr/pretix/plugins/sepadebit/package.nix index d5ad04b3da56..cdcfe017b7bb 100644 --- a/pkgs/by-name/pr/pretix/plugins/sepadebit/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/sepadebit/package.nix @@ -20,14 +20,14 @@ buildPythonPackage rec { pname = "pretix-sepadebit"; - version = "2.6.0"; + version = "2.7.0"; pyproject = true; src = fetchFromGitHub { owner = "pretix"; repo = "pretix-sepadebit"; tag = "v${version}"; - hash = "sha256-o4HVPuSpYIFjxmYuL+IsJJDkv+4ARuvaDqPjxWxlhMg="; + hash = "sha256-Xnp7aic+Xf4wJzJbWqhsfMajT4AOQGQMIGIewJ5B37o="; }; build-system = [ @@ -55,6 +55,12 @@ buildPythonPackage rec { export DJANGO_SETTINGS_MODULE=pretix.testutils.settings ''; + disabledTests = [ + # https://github.com/pretix/pretix-sepadebit/issues/69 + "test_mail_context" + "test_call_mail_context" + ]; + meta = with lib; { description = "Plugin to receive payments via SEPA direct debit"; homepage = "https://github.com/pretix/pretix-sepadebit"; diff --git a/pkgs/by-name/pr/pretix/plugins/servicefees/package.nix b/pkgs/by-name/pr/pretix/plugins/servicefees/package.nix index 4a54e9b368fc..2a6d21f248cc 100644 --- a/pkgs/by-name/pr/pretix/plugins/servicefees/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/servicefees/package.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "pretix-servicefees"; - version = "1.14.1"; + version = "1.15.0"; pyproject = true; src = fetchFromGitHub { owner = "pretix"; repo = "pretix-servicefees"; tag = "v${version}"; - hash = "sha256-iceFpmuWlq4LnZpG57d4Fwx9bXJDGwx+ox58s8oxupU="; + hash = "sha256-oxuxlwNYJsuYj5zm2VYRMn8wz3vF92SzGxD8w3N7ZIM="; }; build-system = [ diff --git a/pkgs/by-name/pr/pretix/plugins/zugferd/package.nix b/pkgs/by-name/pr/pretix/plugins/zugferd/package.nix index 063c72d367c8..a606f3480c8e 100644 --- a/pkgs/by-name/pr/pretix/plugins/zugferd/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/zugferd/package.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "pretix-zugferd"; - version = "2.4.2"; + version = "2.5.0"; pyproject = true; src = fetchFromGitHub { owner = "pretix"; repo = "pretix-zugferd"; rev = "v${version}"; - hash = "sha256-ARTQjd78lkcs16cULAaudMtW1DmDKGf3gNBQZIHCQ1E="; + hash = "sha256-Qy/yfinj5EGjzhJmiczOSIP/GsTZabFt8e6Ki4AaN6w="; }; postPatch = '' diff --git a/pkgs/by-name/re/readest/package.nix b/pkgs/by-name/re/readest/package.nix index 181518cfa829..261f32ae33d2 100644 --- a/pkgs/by-name/re/readest/package.nix +++ b/pkgs/by-name/re/readest/package.nix @@ -20,13 +20,13 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "readest"; - version = "0.9.81"; + version = "0.9.82"; src = fetchFromGitHub { owner = "readest"; repo = "readest"; tag = "v${finalAttrs.version}"; - hash = "sha256-aj4XBphkIeqGdqiWz3Um1+dGSYF6G3b+9DdN/4qZcZI="; + hash = "sha256-vdmWmSh0JqEAkgH9k3ZCjzBvUyNpt+ZH1uDtYiKHxRA="; fetchSubmodules = true; }; @@ -40,12 +40,12 @@ rustPlatform.buildRustPackage (finalAttrs: { pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; fetcherVersion = 1; - hash = "sha256-3H+HEQcXUbmTp+Gu7xz/NpxJgrnw1ubWH79yYKhFTeM="; + hash = "sha256-sRa1IO8JmMsA0/7dMuYF0as/MYHpclEwAknZIycNQ3Y="; }; pnpmRoot = "../.."; - cargoHash = "sha256-7q75xX3aDDvcNkEZEM62icFuiMY4mzv+k3C+fGBLwIg="; + cargoHash = "sha256-oNzgsxJb8N++AGCkXuJmK+51iF7XZ0xmShPlOpkAQEg="; cargoRoot = "../.."; diff --git a/pkgs/by-name/sg/sgxs-tools/package.nix b/pkgs/by-name/sg/sgxs-tools/package.nix index fc341eb593c4..2f6025a3cb09 100644 --- a/pkgs/by-name/sg/sgxs-tools/package.nix +++ b/pkgs/by-name/sg/sgxs-tools/package.nix @@ -8,7 +8,7 @@ }: rustPlatform.buildRustPackage rec { pname = "sgxs-tools"; - version = "0.8.6"; + version = "0.9.2"; nativeBuildInputs = [ pkg-config protobuf @@ -16,10 +16,10 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl_3 ]; src = fetchCrate { inherit pname version; - hash = "sha256-24lUhi4IPv+asM51/BfufkOUYVellXoXsbWXWN/zoBw="; + hash = "sha256-vLbSjDULrYL8emQTha4fhEbr00OlhXNa00QhCKCnWDc="; }; - cargoHash = "sha256-7Jzr9Y6ixK1SHCHXaNKVXk0qfbtmXpr9dz1UNk7Q3XI="; + cargoHash = "sha256-5JMChgqFny9bB8ur/5koW3/YFCOVjb7cDsn4Ki2FSzA="; meta = { description = "Utilities for working with the SGX stream format"; homepage = "https://github.com/fortanix/rust-sgx"; diff --git a/pkgs/by-name/to/tombi/package.nix b/pkgs/by-name/to/tombi/package.nix index 09aa173775c2..b1151ab254dc 100644 --- a/pkgs/by-name/to/tombi/package.nix +++ b/pkgs/by-name/to/tombi/package.nix @@ -9,19 +9,19 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "tombi"; - version = "0.6.10"; + version = "0.6.19"; src = fetchFromGitHub { owner = "tombi-toml"; repo = "tombi"; tag = "v${finalAttrs.version}"; - hash = "sha256-d3wB5aLv0xTh2n3ESBN6hKjR2qlbOXJs4/4DYyJGn7c="; + hash = "sha256-ILW9U+K3DRYsBjqmTd6diUfP441wa6qwjjBgfwObnHo="; }; # Tests relies on the presence of network doCheck = false; cargoBuildFlags = [ "--package tombi-cli" ]; - cargoHash = "sha256-7fjvYvftnM6pHr40/uB0kkxuQ2CMPPd8asRgukHUY9k="; + cargoHash = "sha256-BCBnrIG35RMeqVEltxgtacsKzJ/0nxKiMpLiWoDpv/g="; postPatch = '' substituteInPlace Cargo.toml \ diff --git a/pkgs/by-name/to/tomlq/package.nix b/pkgs/by-name/to/tomlq/package.nix index 12faeecefc4e..82596469c26d 100644 --- a/pkgs/by-name/to/tomlq/package.nix +++ b/pkgs/by-name/to/tomlq/package.nix @@ -2,25 +2,33 @@ lib, rustPlatform, fetchFromGitHub, + versionCheckHook, + nix-update-script, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "tomlq"; - version = "0.1.6"; + version = "0.2.2"; src = fetchFromGitHub { owner = "cryptaliagy"; repo = "tomlq"; - tag = version; - hash = "sha256-g8xjz8qCTiulTwcEbLTHYldw4PI+4ZfCOMJs+J6L1C4="; + tag = finalAttrs.version; + hash = "sha256-obOR9q+fE5BnqZIsoL4zauKB+djEn1epqGwSjrI7QqU="; }; - cargoHash = "sha256-/n1+8n0zGs9qS5QQcAfXJ1kmRkcfsCTxQonEaFsNdHo="; + cargoHash = "sha256-RkzAYVMycQwcewuP8wDbL06YddapyFhm+57CGOICey0="; + + nativeInstallCheckInputs = [ versionCheckHook ]; + doInstallCheck = true; + + passthru.updateScript = nix-update-script { }; meta = { description = "Tool for getting data from TOML files on the command line"; homepage = "https://github.com/cryptaliagy/tomlq"; + changelog = "https://github.com/cryptaliagy/tomlq/releases/tag/${finalAttrs.version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ kinzoku ]; mainProgram = "tq"; }; -} +}) diff --git a/pkgs/by-name/ty/typescript/disable-dprint-dstBundler.patch b/pkgs/by-name/ty/typescript/disable-dprint-dstBundler.patch new file mode 100644 index 000000000000..95ccf411a93e --- /dev/null +++ b/pkgs/by-name/ty/typescript/disable-dprint-dstBundler.patch @@ -0,0 +1,15 @@ +Disable dprint on dstBundler + +dprint fails on sandbox, because it requires internet access to install its +plugins. + +--- a/scripts/dtsBundler.mjs ++++ b/scripts/dtsBundler.mjs +@@ -430,5 +430,5 @@ + return result.replace(/\r\n/g, "\n"); + } + +-fs.writeFileSync(output, dprint(publicContents)); +-fs.writeFileSync(internalOutput, dprint(internalContents)); ++fs.writeFileSync(output, publicContents); ++fs.writeFileSync(internalOutput, internalContents); diff --git a/pkgs/by-name/ty/typescript/package-lock.json b/pkgs/by-name/ty/typescript/package-lock.json deleted file mode 100644 index 37ce5b206452..000000000000 --- a/pkgs/by-name/ty/typescript/package-lock.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "typescript", - "version": "5.9.2", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "typescript", - "version": "5.9.2", - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - } - } -} diff --git a/pkgs/by-name/ty/typescript/package.nix b/pkgs/by-name/ty/typescript/package.nix index df00837bcdc3..792bad6e71f7 100644 --- a/pkgs/by-name/ty/typescript/package.nix +++ b/pkgs/by-name/ty/typescript/package.nix @@ -1,49 +1,27 @@ { lib, buildNpmPackage, - fetchurl, + fetchFromGitHub, versionCheckHook, - writeShellApplication, - nodejs, - gnutar, - jq, - moreutils, - nix-update, - prefetch-npm-deps, + nix-update-script, }: buildNpmPackage (finalAttrs: { pname = "typescript"; - version = "5.9.2"; + version = "5.9.3"; - # Prefer npmjs over the GitHub repository for source code. - # The TypeScript project typically publishes stable, versioned code to npmjs, - # whereas GitHub tags may sometimes include development versions. - # For example: - # - https://github.com/microsoft/TypeScript/pull/61218#issuecomment-2911264050 - # - https://github.com/microsoft/TypeScript/pull/60150#issuecomment-2648791588, 5.8.3 includes this 5.9 breaking change - src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-${finalAttrs.version}.tgz"; - hash = "sha256-Z6O8gugiuPRfZTqA/DqXMNIyFNNsg7qF3X9avr7oIGI="; + src = fetchFromGitHub { + owner = "microsoft"; + repo = "TypeScript"; + tag = "v${finalAttrs.version}"; + hash = "sha256-OVsvlHtYZhoCtTxdZO6mhVPpIICWEt1Q92Jqrf95jyM="; }; - # The upstream GitHub repository's package-lock.json differs from the package.json in the npmjs tarball. - # For example, package-lock.json for v5.8.3 defines TypeScript as version 5.9.0. Therefore, we should use our own package-lock.json file. - # These files are typically large due to devDependencies. Removing the devDependencies section is better, especially considering issue #327064. - # - # We've removed devDependencies from package-lock.json via updateScript to minimize its size. - # Now, we must also modify package.json to reflect this change. - # As TypeScript will then have no dependencies, place an empty node_modules directory. - postPatch = '' - ${lib.getExe jq} 'del(.devDependencies)' package.json | ${moreutils}/bin/sponge package.json - ln -s '${./package-lock.json}' package-lock.json - mkdir -p node_modules - ''; + patches = [ + ./disable-dprint-dstBundler.patch + ]; - npmDepsHash = "sha256-dyN94wmEA/jtiJCsEs/MoDSd6AFsaq2r25a/FeuqQ5k="; - forceEmptyCache = true; - - dontNpmBuild = true; + npmDepsHash = "sha256-4ft5168ru+aGPvZAxASQ4wkjtfNG2e0sNhJTedbiKQA="; nativeInstallCheckInputs = [ versionCheckHook @@ -53,23 +31,11 @@ buildNpmPackage (finalAttrs: { versionCheckProgramArg = "--version"; passthru = { - updateScript = lib.getExe (writeShellApplication { - name = "${finalAttrs.pname}-updater"; - runtimeInputs = [ - nodejs - gnutar - jq - nix-update - prefetch-npm-deps + updateScript = nix-update-script { + extraArgs = [ + "--version-regex=^v([\\d.]+)$" ]; - runtimeEnv = { - PNAME = finalAttrs.pname; - PKG_DIR = builtins.toString ./.; - FORCE_EMPTY_CACHE = "true"; - OLD_NPM_DEPS_HASH = finalAttrs.npmDepsHash; - }; - text = builtins.readFile ./update.bash; - }); + }; }; meta = { @@ -77,9 +43,7 @@ buildNpmPackage (finalAttrs: { homepage = "https://www.typescriptlang.org/"; changelog = "https://github.com/microsoft/TypeScript/releases/tag/v${finalAttrs.version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ - kachick - ]; + maintainers = [ ]; mainProgram = "tsc"; }; }) diff --git a/pkgs/by-name/ty/typescript/update.bash b/pkgs/by-name/ty/typescript/update.bash deleted file mode 100644 index 0d8dbe522662..000000000000 --- a/pkgs/by-name/ty/typescript/update.bash +++ /dev/null @@ -1,23 +0,0 @@ -pkg_file="$PKG_DIR/package.nix" - -cd "$PKG_DIR" - -# Update lockfile -rm ./package-lock.json -version="$(npm view typescript version)" -npm pack typescript -tar xvf "typescript-${version}.tgz" -# Minimize size of package-lock.json -jq 'del(.devDependencies)' package/package.json > package.json -npm install --package-lock-only -rm -rf ./package ./package.json ./"typescript-${version}.tgz" -NEW_NPM_DEPS_HASH=$(prefetch-npm-deps ./package-lock.json) -cd - - -# Update version and src hash -nix-update "$PNAME" --version "$version" - -# Update npmDepsHash -pkg_body="$(<"$pkg_file")" -pkg_body="${pkg_body//"$OLD_NPM_DEPS_HASH"/"$NEW_NPM_DEPS_HASH"}" -echo "$pkg_body" >"$pkg_file" diff --git a/pkgs/by-name/ve/veloren/fix-assets-path.patch b/pkgs/by-name/ve/veloren/fix-assets-path.patch index 8973c74b8cd4..7dfdcdc2eced 100644 --- a/pkgs/by-name/ve/veloren/fix-assets-path.patch +++ b/pkgs/by-name/ve/veloren/fix-assets-path.patch @@ -1,23 +1,19 @@ -commit 3048885aa749774b5677ab8df8f1a3eeff125d7a +commit 0a258effd3492d7e4c11b4d175538c619699fbd6 Author: rnhmjoj -Date: Tue Aug 6 08:36:38 2024 +0200 +Date: Wed Oct 1 09:43:45 2025 +0200 Fix assets path on NixOS diff --git a/common/assets/src/lib.rs b/common/assets/src/lib.rs -index 03746dc4..c69d607b 100644 +index 13102e8..898b23b 100644 --- a/common/assets/src/lib.rs +++ b/common/assets/src/lib.rs -@@ -400,6 +400,13 @@ lazy_static! { +@@ -381,6 +381,9 @@ lazy_static! { } } + // 5. NixOS path -+ if let Some(executable) = std::env::args().nth(0).map(PathBuf::from) { -+ if let Some(package) = executable.ancestors().nth(2) { -+ paths.push(package.join("share/veloren")); -+ } -+ } ++ paths.push("@out@/share/veloren/".into()); + tracing::trace!("Possible asset locations paths={:?}", paths); diff --git a/pkgs/by-name/ve/veloren/package.nix b/pkgs/by-name/ve/veloren/package.nix index 074f0d772e97..29e96e0f5524 100644 --- a/pkgs/by-name/ve/veloren/package.nix +++ b/pkgs/by-name/ve/veloren/package.nix @@ -52,6 +52,8 @@ rustPlatform.buildRustPackage { println!("cargo:rustc-cfg=nightly"); } EOF + # Fix assets path + substituteAllInPlace common/assets/src/lib.rs ''; nativeBuildInputs = [ diff --git a/pkgs/by-name/wa/wasabibackend/deps.json b/pkgs/by-name/wa/wasabibackend/deps.json index b47154f0e18d..46eb2de206c7 100644 --- a/pkgs/by-name/wa/wasabibackend/deps.json +++ b/pkgs/by-name/wa/wasabibackend/deps.json @@ -1,917 +1,1027 @@ [ + { + "pname": "LinqKit.Core", + "version": "1.2.5", + "hash": "sha256-0z4RpAt+WvydeCN0GJu4vsMfCxzxmoi+LTE6fQ51NZY=" + }, { "pname": "Microsoft.AspNetCore.JsonPatch", - "version": "7.0.0", - "sha256": "1f13vsfs1rp9bmdp3khk4mk2fif932d72yxm2wszpsr239x4s2bf" + "version": "8.0.0", + "hash": "sha256-X8lbEnCVHjMcp28ZPqwFTU3R75mFAHNFW0hE7rATBfw=" }, { "pname": "Microsoft.AspNetCore.Mvc.NewtonsoftJson", - "version": "7.0.0", - "sha256": "1w49rg0n5wb1m5wnays2mmym7qy7bsi2b1zxz97af2rkbw3s3hbd" + "version": "8.0.0", + "hash": "sha256-4Ho979nHLi8NRtmeY3/cw0eSUno7gfQhUKwCYejDLIc=" + }, + { + "pname": "Microsoft.AspNetCore.WebUtilities", + "version": "8.0.0", + "hash": "sha256-e4wqTJUgPfq6CfRwuXTw32K9vB+hOpSLxSZDpzv23Yg=" + }, + { + "pname": "Microsoft.Bcl.AsyncInterfaces", + "version": "6.0.0", + "hash": "sha256-49+H/iFwp+AfCICvWcqo9us4CzxApPKC37Q5Eqrw+JU=" }, { "pname": "Microsoft.Build", "version": "15.3.409", - "sha256": "0vzq6csp2yys9s96c7i37bjml439rdi47g8f5rzqdr7xf5a1jk81" + "hash": "sha256-AU0ZVHH95IZ/Lg69Q2LLaRBa5TojHmaSTtp7cTUz+G8=" }, { "pname": "Microsoft.Build.Framework", "version": "15.3.409", - "sha256": "1dhanwb9ihbfay85xj7cwn0byzmmdz94hqfi3q6r1ncwdjd8y1s2" + "hash": "sha256-QgePmmyc2ZANHtFhSNJvtX6/gOXsyF6QV27BmBa3CrY=" }, { "pname": "Microsoft.Build.Runtime", "version": "15.3.409", - "sha256": "135ycnqz5jfg61y5zaapgc7xdpjx2aq4icmxb9ph7h5inl445q7q" + "hash": "sha256-+OBCCLWxwANvWr2ySLASXd7WD3tXqV98MM/J8rFlvow=" }, { "pname": "Microsoft.Build.Tasks.Core", "version": "15.3.409", - "sha256": "135swyygp7cz2civwsz6a7dj7h8bzp7yrybmgxjanxwrw66hm933" + "hash": "sha256-Y6QKjeGZd6tkf3X57M/9C8Ej21Hma74jE5+d+7znuow=" }, { "pname": "Microsoft.Build.Utilities.Core", "version": "15.3.409", - "sha256": "1p8a0l9sxmjj86qha748qjw2s2n07q8mn41mj5r6apjnwl27ywnf" + "hash": "sha256-znJ/BOVWXmVykTUQWxE+wAotuMSIHAWxQVLWrhMFCt0=" + }, + { + "pname": "Microsoft.CodeAnalysis.BannedApiAnalyzers", + "version": "3.3.4", + "hash": "sha256-YPTHTZ8xRPMLADdcVYRO/eq3O9uZjsD+OsGRZE+0+e8=" }, { "pname": "Microsoft.CSharp", "version": "4.3.0", - "sha256": "0gw297dgkh0al1zxvgvncqs0j15lsna9l1wpqas4rflmys440xvb" + "hash": "sha256-a3dAiPaVuky0wpcHmpTVtAQJNGZ2v91/oArA+dpJgj8=" }, { "pname": "Microsoft.CSharp", "version": "4.7.0", - "sha256": "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j" + "hash": "sha256-Enknv2RsFF68lEPdrf5M+BpV1kHoLTVRApKUwuk/pj0=" + }, + { + "pname": "Microsoft.Data.Sqlite", + "version": "8.0.0", + "hash": "sha256-0Q+1SxcHyNgkz4DUTJVaiteOQGydf2Uzk6y/R/rwwws=" + }, + { + "pname": "Microsoft.Data.Sqlite.Core", + "version": "8.0.0", + "hash": "sha256-aew8/vRyzCc7MMNHziR8tsg66EFkJC+Snst3F+a3Ehc=" }, { "pname": "Microsoft.Extensions.ApiDescription.Server", "version": "6.0.5", - "sha256": "1pi2bm3cm0a7jzqzmfc2r7bpcdkmk3hhjfvb2c81j7wl7xdw3624" + "hash": "sha256-RJjBWz+UHxkQE2s7CeGYdTZ218mCufrxl0eBykZdIt4=" + }, + { + "pname": "Microsoft.Extensions.Caching.Abstractions", + "version": "8.0.0", + "hash": "sha256-xGpKrywQvU1Wm/WolYIxgHYEFfgkNGeJ+GGc5DT3phI=" + }, + { + "pname": "Microsoft.Extensions.Configuration", + "version": "8.0.0", + "hash": "sha256-9BPsASlxrV8ilmMCjdb3TiUcm5vFZxkBnAI/fNBSEyA=" + }, + { + "pname": "Microsoft.Extensions.Configuration.Abstractions", + "version": "8.0.0", + "hash": "sha256-4eBpDkf7MJozTZnOwQvwcfgRKQGcNXe0K/kF+h5Rl8o=" + }, + { + "pname": "Microsoft.Extensions.Configuration.Binder", + "version": "8.0.0", + "hash": "sha256-GanfInGzzoN2bKeNwON8/Hnamr6l7RTpYLA49CNXD9Q=" + }, + { + "pname": "Microsoft.Extensions.DependencyInjection", + "version": "8.0.0", + "hash": "sha256-+qIDR8hRzreCHNEDtUcPfVHQdurzWPo/mqviCH78+EQ=" + }, + { + "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", + "version": "8.0.0", + "hash": "sha256-75KzEGWjbRELczJpCiJub+ltNUMMbz5A/1KQU+5dgP8=" + }, + { + "pname": "Microsoft.Extensions.Diagnostics", + "version": "8.0.0", + "hash": "sha256-fBLlb9xAfTgZb1cpBxFs/9eA+BlBvF8Xg0DMkBqdHD4=" + }, + { + "pname": "Microsoft.Extensions.Diagnostics.Abstractions", + "version": "8.0.0", + "hash": "sha256-USD5uZOaahMqi6u7owNWx/LR4EDrOwqPrAAim7iRpJY=" }, { "pname": "Microsoft.Extensions.FileProviders.Abstractions", "version": "2.0.0", - "sha256": "0d6y5isjy6jpf4w3f3w89cwh9p40glzhwvm7cwhx05wkqd8bk9w4" + "hash": "sha256-hKe5UMOTF9AhZ6duDj99gNwEOUuIDzc4cVcaL3Us3jQ=" + }, + { + "pname": "Microsoft.Extensions.FileProviders.Abstractions", + "version": "8.0.0", + "hash": "sha256-uQSXmt47X2HGoVniavjLICbPtD2ReQOYQMgy3l0xuMU=" }, { "pname": "Microsoft.Extensions.FileProviders.Physical", "version": "2.0.0", - "sha256": "0l0l92g7sq4122n139av1pn1jl6wlw92hjmdnr47xdss0ndmwrs3" + "hash": "sha256-Q2demwVat35Itq1KKBKn3FAZ7A1bpRGsEIFgfZ5IFFA=" }, { "pname": "Microsoft.Extensions.FileSystemGlobbing", "version": "2.0.0", - "sha256": "02lzy6r14ghwfwm384xajq08vv3pl3ww0mi5isrr10vivhijhgg4" + "hash": "sha256-5D0oI9xxg5CzjiVWwPmgd+yNAJaqEzQqdxw+ErLxnwo=" + }, + { + "pname": "Microsoft.Extensions.Hosting.Abstractions", + "version": "8.0.0", + "hash": "sha256-0JBx+wwt5p1SPfO4m49KxNOXPAzAU0A+8tEc/itvpQE=" + }, + { + "pname": "Microsoft.Extensions.Http", + "version": "8.0.0", + "hash": "sha256-UgljypOLld1lL7k7h1noazNzvyEHIJw+r+6uGzucFSY=" + }, + { + "pname": "Microsoft.Extensions.Logging", + "version": "8.0.0", + "hash": "sha256-Meh0Z0X7KyOEG4l0RWBcuHHihcABcvCyfUXgasmQ91o=" }, { "pname": "Microsoft.Extensions.Logging.Abstractions", "version": "1.0.0", - "sha256": "1sh9bidmhy32gkz6fkli79mxv06546ybrzppfw5v2aq0bda1ghka" + "hash": "sha256-asIXVFsAK7ELd/f+vLwhxYDdazqRTmf+fGJ4WFtcCeo=" + }, + { + "pname": "Microsoft.Extensions.Logging.Abstractions", + "version": "8.0.0", + "hash": "sha256-Jmddjeg8U5S+iBTwRlVAVLeIHxc4yrrNgqVMOB7EjM4=" + }, + { + "pname": "Microsoft.Extensions.Options", + "version": "8.0.0", + "hash": "sha256-n2m4JSegQKUTlOsKLZUUHHKMq926eJ0w9N9G+I3FoFw=" + }, + { + "pname": "Microsoft.Extensions.Options.ConfigurationExtensions", + "version": "8.0.0", + "hash": "sha256-A5Bbzw1kiNkgirk5x8kyxwg9lLTcSngojeD+ocpG1RI=" }, { "pname": "Microsoft.Extensions.Primitives", "version": "2.0.0", - "sha256": "1xppr5jbny04slyjgngxjdm0maxdh47vq481ps944d7jrfs0p3mb" + "hash": "sha256-q44LtMvyNEKSvgERvA+BrasKapP92Sc91QR4u2TJ9/Y=" + }, + { + "pname": "Microsoft.Extensions.Primitives", + "version": "8.0.0", + "hash": "sha256-FU8qj3DR8bDdc1c+WeGZx/PCZeqqndweZM9epcpXjSo=" + }, + { + "pname": "Microsoft.Net.Http.Headers", + "version": "8.0.0", + "hash": "sha256-Byowq5bRdxNHHjfxjzq+umnifUyKz0t65xeiB4Bjrkw=" }, { "pname": "Microsoft.NETCore.App", "version": "2.0.5", - "sha256": "0qb7k624w7l0zhapdp519ymqg84a67r8zyd8cpj42hywsgb0dqv6" + "hash": "sha256-ZuMG1tPcQ0HkZaj5j/IxiqCHq0+h3HYV/IAeToSZZ2E=" }, { "pname": "Microsoft.NETCore.DotNetAppHost", "version": "2.0.5", - "sha256": "00bsxdg9c8msjxyffvfi8siqk8v2m7ca8fqy1npv7b2pzg3byjws" + "hash": "sha256-mku/xvtXrLOvDR47pNipYqOJo0bRbed8l7oill7regE=" }, { "pname": "Microsoft.NETCore.DotNetHostPolicy", "version": "2.0.5", - "sha256": "0v5csskiwpk8kz8wclqad8kcjmxr7ik4w99wl05740qvaag3qysk" + "hash": "sha256-U3s8nlIbA3IKoDwlTmY8uVfJJmoKU8bRn2heHqfWrGw=" }, { "pname": "Microsoft.NETCore.DotNetHostResolver", "version": "2.0.5", - "sha256": "1sz2fdp8fdwz21x3lr2m1zhhrbix6iz699fjkwiryqdjl4ygd3hw" + "hash": "sha256-HI72PKGyYZ8jn9KlZH40Pa4M4Q9VZDp6EJ83h25z4us=" }, { "pname": "Microsoft.NETCore.Platforms", "version": "1.0.1", - "sha256": "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr" + "hash": "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU=" }, { "pname": "Microsoft.NETCore.Platforms", "version": "1.1.0", - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" }, { "pname": "Microsoft.NETCore.Platforms", "version": "2.0.1", - "sha256": "1j2hmnivgb4plni2dd205kafzg6mkg7r4knrd3s7mg75wn2l25np" + "hash": "sha256-1xZBheXlvHr0aNlOks+b1bzv1CxAtCaipZest6OtUMg=" }, { "pname": "Microsoft.NETCore.Targets", "version": "1.0.1", - "sha256": "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p" + "hash": "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4=" }, { "pname": "Microsoft.NETCore.Targets", "version": "1.1.0", - "sha256": "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh" + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" }, { "pname": "Microsoft.OpenApi", "version": "1.2.3", - "sha256": "07b19k89whj69j87afkz86gp9b3iybw8jqwvlgcn43m7fb2y99rr" + "hash": "sha256-OafkxXKnDmLZo5tjifjycax0n0F/OnWQTEZCntBMYR0=" }, { "pname": "Microsoft.VisualStudio.Web.CodeGeneration.Contracts", "version": "2.0.2", - "sha256": "1fs6sbjn0chx6rv38d61zgk8mhyyxz44xp4wsfya0lvkckyszyn1" + "hash": "sha256-wfqv/WRzU6C805zcTsjv3sOK5vvBNDR2Nh0yYOXSRrs=" }, { "pname": "Microsoft.VisualStudio.Web.CodeGeneration.Tools", "version": "2.0.2", - "sha256": "0fkjm06irs53d77z29i6dwj5pjhgj9ivhad8v39ghnrwasc0ivq6" + "hash": "sha256-Bu8ImFY8W/jS2KgpuGOSD8pbJG8mJvHPaaPoHA2ocjo=" }, { "pname": "Microsoft.Win32.Primitives", "version": "4.0.1", - "sha256": "1n8ap0cmljbqskxpf8fjzn7kh1vvlndsa75k01qig26mbw97k2q7" + "hash": "sha256-B4t5El/ViBdxALMcpZulewc4j/3SIXf71HhJWhm4Ctk=" }, { "pname": "Microsoft.Win32.Registry", "version": "4.0.0", - "sha256": "1spf4m9pikkc19544p29a47qnhcd885klncahz133hbnyqbkmz9k" + "hash": "sha256-M/06F/Z2wTHCh4pZOgtCjUGLD1FJXEJKCmzOeFMl7uo=" }, { "pname": "Microsoft.Win32.SystemEvents", - "version": "7.0.0", - "sha256": "1bh77misznh19m1swqm3dsbji499b8xh9gk6w74sgbkarf6ni8lb" + "version": "8.0.0", + "hash": "sha256-UcxurEamYD+Bua0PbPNMYAZaRulMrov8CfbJGIgTaRQ=" }, { "pname": "NBitcoin", - "version": "7.0.14", - "sha256": "18nxx13fz3i7kmigijnynvrbx2i5cb3v4m89nvnxl38vcw7w5jys" + "version": "7.0.27", + "hash": "sha256-LrCPSGrMwVOU2BdQxQD/HmhBFlASEtv8o7L8uOQyUWg=" }, { "pname": "NBitcoin.Secp256k1", - "version": "3.0.1", - "sha256": "17wxn0dinmp5fbqdirflfkz75wykqvw9a7ydv2inx1sajxnsy1f3" + "version": "3.1.0", + "hash": "sha256-vhp1Rjl//09c8U912Mqfu6/Ip0/ljnZkCkDo9k45dtU=" + }, + { + "pname": "NBitcoin.Secp256k1", + "version": "3.1.4", + "hash": "sha256-D/V/vEAqZxAOjn5fPg028QLpkfweDG56N8/dsc80Fz8=" }, { "pname": "NETStandard.Library", "version": "1.6.0", - "sha256": "0nmmv4yw7gw04ik8ialj3ak0j6pxa9spih67hnn1h2c38ba8h58k" + "hash": "sha256-ExWI1EKDCRishcfAeHVS/RoJphqSqohmJIC/wz3ZtVo=" }, { "pname": "NETStandard.Library", "version": "2.0.1", - "sha256": "0d44wjxphs1ck838v7dapm0ag0b91zpiy33cr5vflsrwrqgj51dk" + "hash": "sha256-s4UiH848a+p2yWwMH+8PaYGnQL2qnY0GmixoeLvkhDQ=" }, { "pname": "Newtonsoft.Json", "version": "10.0.1", - "sha256": "15ncqic3p2rzs8q8ppi0irl2miq75kilw4lh8yfgjq96id0ds3hv" + "hash": "sha256-Gw7dQIsmYfmcR5ASTuMsB8cqaI4g3osw0j+LO1jEzJY=" }, { "pname": "Newtonsoft.Json", "version": "13.0.1", - "sha256": "0fijg0w6iwap8gvzyjnndds0q4b8anwxxvik7y8vgq97dram4srb" + "hash": "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo=" + }, + { + "pname": "Newtonsoft.Json", + "version": "13.0.3", + "hash": "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc=" }, { "pname": "Newtonsoft.Json.Bson", "version": "1.0.2", - "sha256": "0c27bhy9x3c2n26inq32kmp6drpm71n6mqnmcr19wrlcaihglj35" + "hash": "sha256-ZUj6YFSMZp5CZtXiamw49eZmbp1iYBuNsIKNnjxcRzA=" + }, + { + "pname": "NNostr.Client", + "version": "0.0.49", + "hash": "sha256-o0aeqJlWcfKClhizyygWomiHXphErFiFuNzHGjJkb6s=" }, { "pname": "NuGet.Frameworks", "version": "4.0.0", - "sha256": "0nar684cm53cvzx28gzl6kmpg9mrfr1yv29323din7xqal4pscgq" - }, - { - "pname": "runtime.any.System.Collections", - "version": "4.0.11", - "sha256": "1x44bm1cgv28zmrp095wf9mn8a6a0ivnzp9v14dcbhx06igxzgg0" - }, - { - "pname": "runtime.any.System.Diagnostics.Tracing", - "version": "4.1.0", - "sha256": "041im8hmp1zdgrx6jzyrdch6kshvbddmkar7r2mlm1ksb5c5kwpq" - }, - { - "pname": "runtime.any.System.Globalization", - "version": "4.0.11", - "sha256": "0240rp66pi5bw1xklmh421hj7arwcdmjmgfkiq1cbc6nrm8ah286" - }, - { - "pname": "runtime.any.System.IO", - "version": "4.1.0", - "sha256": "0kasfkjiml2kk8prnyn1990nhsahnjggvqwszqjdsfwfl43vpcb5" - }, - { - "pname": "runtime.any.System.Reflection", - "version": "4.1.0", - "sha256": "06kcs059d5czyakx75rvlwa2mr86156w18fs7chd03f7084l7mq6" - }, - { - "pname": "runtime.any.System.Reflection.Primitives", - "version": "4.0.1", - "sha256": "1zxrpvixr5fqzkxpnin6g6gjq6xajy1snghz99ds2dwbhm276rhz" - }, - { - "pname": "runtime.any.System.Resources.ResourceManager", - "version": "4.0.1", - "sha256": "1jmgs7hynb2rff48623wnyb37558bbh1q28k9c249j5r5sgsr5kr" - }, - { - "pname": "runtime.any.System.Runtime", - "version": "4.1.0", - "sha256": "0mjr2bi7wvnkphfjqgkyf8vfyvy15a829jz6mivl6jmksh2bx40m" - }, - { - "pname": "runtime.any.System.Runtime.Handles", - "version": "4.0.1", - "sha256": "1kswgqhy34qvc49i981fk711s7knd6z13bp0rin8ms6axkh98nas" - }, - { - "pname": "runtime.any.System.Runtime.InteropServices", - "version": "4.1.0", - "sha256": "0gm8if0hcmp1qys1wmx4970k2x62pqvldgljsyzbjhiy5644vl8z" - }, - { - "pname": "runtime.any.System.Text.Encoding", - "version": "4.0.11", - "sha256": "0m4vgmzi1ky8xlj0r7xcyazxln3j9dlialnk6d2gmgrfnzf8f9m7" - }, - { - "pname": "runtime.any.System.Threading.Tasks", - "version": "4.0.11", - "sha256": "1qzdp09qs8br5qxzlm1lgbjn4n57fk8vr1lzrmli2ysdg6x1xzvk" + "hash": "sha256-+DF9CVW4HxvbECOJ7UN2uaZ36zT0PyT632yUyggyWVk=" }, { "pname": "runtime.native.System", "version": "4.0.0", - "sha256": "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf" + "hash": "sha256-bmaM0ovT4X4aqDJOR255Yda/u3fmHZskU++lMnsy894=" }, { "pname": "runtime.native.System.IO.Compression", "version": "4.1.0", - "sha256": "0d720z4lzyfcabmmnvh0bnj76ll7djhji2hmfh3h44sdkjnlkknk" + "hash": "sha256-085JrZxNEwIHdBWKKKFsh1JzpF0AblvrUsz5T8kH4jQ=" }, { "pname": "runtime.native.System.Net.Http", "version": "4.0.1", - "sha256": "1hgv2bmbaskx77v8glh7waxws973jn4ah35zysnkxmf0196sfxg6" + "hash": "sha256-5nWnTQrA1T6t9r8MqIiV4yTNu+IH0of2OX1qteoS+8E=" }, { "pname": "runtime.native.System.Security.Cryptography", "version": "4.0.0", - "sha256": "0k57aa2c3b10wl3hfqbgrl7xq7g8hh3a3ir44b31dn5p61iiw3z9" + "hash": "sha256-6Q8eYzC32BbGIiTHoQaE6B3cD81vYQcH5SCswYRSp0w=" }, { - "pname": "runtime.unix.System.Diagnostics.Debug", - "version": "4.0.11", - "sha256": "05ndbai4vpqrry0ghbfgqc8xblmplwjgndxmdn1zklqimczwjg2d" + "pname": "SQLitePCLRaw.bundle_e_sqlite3", + "version": "2.1.6", + "hash": "sha256-dZD/bZsYXjOu46ZH5Y/wgh0uhHOqIxC+S+0ecKhr718=" }, { - "pname": "runtime.unix.System.Private.Uri", - "version": "4.0.1", - "sha256": "0ic5dgc45jkhcr1g9xmmzjm7ffiw4cymm0fprczlx4fnww4783nm" + "pname": "SQLitePCLRaw.core", + "version": "2.1.6", + "hash": "sha256-RxWjm52PdmMV98dgDy0BCpF988+BssRZUgALLv7TH/E=" }, { - "pname": "runtime.unix.System.Runtime.Extensions", - "version": "4.1.0", - "sha256": "0x1cwd7cvifzmn5x1wafvj75zdxlk3mxy860igh3x1wx0s8167y4" + "pname": "SQLitePCLRaw.lib.e_sqlite3", + "version": "2.1.6", + "hash": "sha256-uHt5d+SFUkSd6WD7Tg0J3e8eVoxy/FM/t4PAkc9PJT0=" + }, + { + "pname": "SQLitePCLRaw.provider.e_sqlite3", + "version": "2.1.6", + "hash": "sha256-zHc/YZsd72eXlI8ba1tv58HZWUIiyjJaxq2CCP1hQe8=" }, { "pname": "Swashbuckle.AspNetCore", - "version": "6.4.0", - "sha256": "1jkgjnkjcb6dif0lzn7whjwwdd4fi6mzkmkdx8sfmv5cffzq4fvk" + "version": "6.5.0", + "hash": "sha256-thAX5M8OihCU5Pmht5FzQPR7K+gbia580KnI8i9kwUw=" }, { "pname": "Swashbuckle.AspNetCore.Swagger", - "version": "6.4.0", - "sha256": "1wccx8ig2xc6xcfh774m5z34w6jn0hjffiwc5sq9yl63zkv01vnn" + "version": "6.5.0", + "hash": "sha256-bKJG6fhLBB5rKoVm0nc4PfecBtDg/r2G1hrZ6Izryug=" }, { "pname": "Swashbuckle.AspNetCore.SwaggerGen", - "version": "6.4.0", - "sha256": "1k58j6lfqcgrl5f7dw0xnbq6w5bvr42a9fc44vwbzl52kzjdlnh2" + "version": "6.5.0", + "hash": "sha256-A+n8r9bM8UU0ZpzS5pHqa/JOX+cY0jTbfTH7XfwbCUM=" }, { "pname": "Swashbuckle.AspNetCore.SwaggerUI", - "version": "6.4.0", - "sha256": "1rxgf0hbkkzywh8z7asky2rrh1gpnrr514v1aj5vnmh49sa31kiz" + "version": "6.5.0", + "hash": "sha256-BxYBRvabFUIRkZ67YbUY6djxbLPtmPlAfREeFNg8HZ4=" }, { "pname": "System.AppContext", "version": "4.1.0", - "sha256": "0fv3cma1jp4vgj7a8hqc9n7hr1f1kjp541s6z0q1r6nazb4iz9mz" + "hash": "sha256-v6YfyfrKmhww+EYHUq6cwYUMj00MQ6SOfJtcGVRlYzs=" }, { "pname": "System.Buffers", "version": "4.0.0", - "sha256": "13s659bcmg9nwb6z78971z1lr6bmh2wghxi1ayqyzl4jijd351gr" + "hash": "sha256-+YUymoyS0O+xVyF2+LiAdZlMww8nofPN4ja9ylYqRo8=" }, { "pname": "System.Collections", "version": "4.0.11", - "sha256": "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6" + "hash": "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0=" }, { "pname": "System.Collections", "version": "4.3.0", - "sha256": "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9" + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" }, { "pname": "System.Collections.Concurrent", "version": "4.0.12", - "sha256": "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc" + "hash": "sha256-zIEM7AB4SyE9u6G8+o+gCLLwkgi6+3rHQVPdn/dEwB8=" }, { "pname": "System.Collections.Immutable", "version": "1.2.0", - "sha256": "1jm4pc666yiy7af1mcf7766v710gp0h40p228ghj6bavx7xfa38m" + "hash": "sha256-FQ3l+ulbLSPhQ0JcQCC4D4SzjTnHsRqcOj56Ywy7pMo=" }, { "pname": "System.Collections.NonGeneric", "version": "4.0.1", - "sha256": "19994r5y5bpdhj7di6w047apvil8lh06lh2c2yv9zc4fc5g9bl4d" + "hash": "sha256-jdCVXmGOsJ+2F0xAagCkiMZ91SGAm9iOhO2u4ksmKaU=" }, { "pname": "System.Collections.NonGeneric", "version": "4.3.0", - "sha256": "07q3k0hf3mrcjzwj8fwk6gv3n51cb513w4mgkfxzm3i37sc9kz7k" + "hash": "sha256-8/yZmD4jjvq7m68SPkJZLBQ79jOTOyT5lyzX4SCYAx8=" }, { "pname": "System.Collections.Specialized", "version": "4.3.0", - "sha256": "1sdwkma4f6j85m3dpb53v9vcgd0zyc9jb33f8g63byvijcj39n20" + "hash": "sha256-QNg0JJNx+zXMQ26MJRPzH7THdtqjrNtGLUgaR1SdvOk=" }, { "pname": "System.ComponentModel", "version": "4.3.0", - "sha256": "0986b10ww3nshy30x9sjyzm0jx339dkjxjj3401r3q0f6fx2wkcb" + "hash": "sha256-i00uujMO4JEDIEPKLmdLY3QJ6vdSpw6Gh9oOzkFYBiU=" }, { "pname": "System.ComponentModel.Primitives", "version": "4.3.0", - "sha256": "1svfmcmgs0w0z9xdw2f2ps05rdxmkxxhf0l17xk9l1l8xfahkqr0" + "hash": "sha256-IOMJleuIBppmP4ECB3uftbdcgL7CCd56+oAD/Sqrbus=" }, { "pname": "System.ComponentModel.TypeConverter", "version": "4.3.0", - "sha256": "17ng0p7v3nbrg3kycz10aqrrlw4lz9hzhws09pfh8gkwicyy481x" + "hash": "sha256-PSDiPYt8PgTdTUBz+GH6lHCaM1YgfObneHnZsc8Fz54=" }, { "pname": "System.Console", "version": "4.0.0", - "sha256": "0ynxqbc3z1nwbrc11hkkpw9skw116z4y9wjzn7id49p9yi7mzmlf" + "hash": "sha256-jtZfT/TpJtLisV/y5Mk3IfCpE79zwhBYXtyGP9jC3Xo=" }, { "pname": "System.Diagnostics.Contracts", "version": "4.0.1", - "sha256": "0y6dkd9n5k98vzhc3w14r2pbhf10qjn2axpghpmfr6rlxx9qrb9j" + "hash": "sha256-Mq2MU+80m+zqhe92JazEIDi4rsgk8MHg3yjNYlObzXg=" }, { "pname": "System.Diagnostics.Debug", "version": "4.0.11", - "sha256": "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz" + "hash": "sha256-P+rSQJVoN6M56jQbs76kZ9G3mAWFdtF27P/RijN8sj4=" }, { "pname": "System.Diagnostics.Debug", "version": "4.3.0", - "sha256": "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y" + "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" }, { "pname": "System.Diagnostics.DiagnosticSource", "version": "4.0.0", - "sha256": "1n6c3fbz7v8d3pn77h4v5wvsfrfg7v1c57lg3nff3cjyh597v23m" + "hash": "sha256-dYh9UoFesuGcHY+ewsI+z2WnNy+bwHPsHQ3t85cbzNg=" + }, + { + "pname": "System.Diagnostics.DiagnosticSource", + "version": "8.0.0", + "hash": "sha256-+aODaDEQMqla5RYZeq0Lh66j+xkPYxykrVvSCmJQ+Vs=" }, { "pname": "System.Diagnostics.FileVersionInfo", "version": "4.0.0", - "sha256": "1s5vxhy7i09bmw51kxqaiz9zaj9am8wsjyz13j85sp23z267hbv3" + "hash": "sha256-Yy94jPhDXF2QHOF7qTmqKkn1048K9xkKryuBeDzsu+g=" }, { "pname": "System.Diagnostics.Process", "version": "4.1.0", - "sha256": "061lrcs7xribrmq7kab908lww6kn2xn1w3rdc41q189y0jibl19s" + "hash": "sha256-OgW6ogQ+oYADYS0PHmwXdhrOKQJpqXlwzSvmfjTLNBg=" }, { "pname": "System.Diagnostics.Tools", "version": "4.0.1", - "sha256": "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x" + "hash": "sha256-vSBqTbmWXylvRa37aWyktym+gOpsvH43mwr6A962k6U=" }, { "pname": "System.Diagnostics.Tools", "version": "4.3.0", - "sha256": "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1" + "hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=" }, { "pname": "System.Diagnostics.TraceSource", "version": "4.0.0", - "sha256": "1mc7r72xznczzf6mz62dm8xhdi14if1h8qgx353xvhz89qyxsa3h" + "hash": "sha256-cCjdPU7ow91HGf1hBIOLJMQGO6pNmF+N+5/Z38XJh9U=" }, { "pname": "System.Diagnostics.Tracing", "version": "4.1.0", - "sha256": "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394" + "hash": "sha256-JA0jJcLbU3zh52ub3zweob2EVHvxOqiC6SCYHrY5WbQ=" }, { "pname": "System.Dynamic.Runtime", "version": "4.0.11", - "sha256": "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9" + "hash": "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4=" }, { "pname": "System.Dynamic.Runtime", "version": "4.3.0", - "sha256": "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk" + "hash": "sha256-k75gjOYimIQtLBD5NDzwwi3ZMUBPRW3jmc3evDMMJbU=" }, { "pname": "System.Globalization", "version": "4.0.11", - "sha256": "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d" + "hash": "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw=" }, { "pname": "System.Globalization", "version": "4.3.0", - "sha256": "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki" + "hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=" }, { "pname": "System.Globalization.Calendars", "version": "4.0.1", - "sha256": "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh" + "hash": "sha256-EJN3LbN+b0O9Dr2eg7kfThCYpne0iJ/H/GIyUTNVYC8=" }, { "pname": "System.Globalization.Extensions", "version": "4.0.1", - "sha256": "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc" + "hash": "sha256-zLtkPryJwqTGcJqMC6zoMMvMrT+aAL5GoumjmMtqUEI=" }, { "pname": "System.Globalization.Extensions", "version": "4.3.0", - "sha256": "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls" + "hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=" + }, + { + "pname": "System.Interactive.Async", + "version": "6.0.1", + "hash": "sha256-4yzkdop+BMlpQ+qz/H7D7LkH1Ekh9n51t9yteHpv/58=" }, { "pname": "System.IO", "version": "4.1.0", - "sha256": "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp" + "hash": "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw=" }, { "pname": "System.IO", "version": "4.3.0", - "sha256": "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f" + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" }, { "pname": "System.IO.Compression", "version": "4.1.0", - "sha256": "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji" + "hash": "sha256-UT4KEfJNZOk7b4X0AqLFUsqfHu6myVH/BhbRKYc+1Uc=" }, { "pname": "System.IO.Compression.ZipFile", "version": "4.0.1", - "sha256": "0h72znbagmgvswzr46mihn7xm7chfk2fhrp5krzkjf29pz0i6z82" + "hash": "sha256-An0Twb9JODl/nuVm6MR0kJ3aj4WxGpI/1/vVp5b94kA=" }, { "pname": "System.IO.FileSystem", "version": "4.0.1", - "sha256": "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1" + "hash": "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0=" }, { "pname": "System.IO.FileSystem", "version": "4.3.0", - "sha256": "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw" + "hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=" }, { "pname": "System.IO.FileSystem.Primitives", "version": "4.0.1", - "sha256": "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612" + "hash": "sha256-IpigKMomqb6pmYWkrlf0ZdpILtRluX2cX5sOKVW0Feg=" }, { "pname": "System.IO.FileSystem.Primitives", "version": "4.3.0", - "sha256": "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c" + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" + }, + { + "pname": "System.IO.Pipelines", + "version": "8.0.0", + "hash": "sha256-LdpB1s4vQzsOODaxiKstLks57X9DTD5D6cPx8DE1wwE=" }, { "pname": "System.IO.Pipes", "version": "4.0.0", - "sha256": "0fxfvcf55s9q8zsykwh8dkq2xb5jcqnml2ycq8srfry2l07h18za" + "hash": "sha256-6qMAD6DCZ5c1wswLWi1msqwu8GwI8un1RzjpUhzbrjs=" }, { "pname": "System.Linq", "version": "4.1.0", - "sha256": "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5" + "hash": "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794=" }, { "pname": "System.Linq", "version": "4.3.0", - "sha256": "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7" + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" + }, + { + "pname": "System.Linq.Async", + "version": "6.0.1", + "hash": "sha256-uH5fZhcyQVtnsFc6GTUaRRrAQm05v5euJyWCXSFSOYI=" }, { "pname": "System.Linq.Expressions", "version": "4.1.0", - "sha256": "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg" + "hash": "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4=" }, { "pname": "System.Linq.Expressions", "version": "4.3.0", - "sha256": "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv" + "hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=" }, { "pname": "System.Linq.Parallel", "version": "4.0.1", - "sha256": "0i33x9f4h3yq26yvv6xnq4b0v51rl5z8v1bm7vk972h5lvf4apad" + "hash": "sha256-TV1F3KYFipPmPnWFjX6hOZQNFsG2m729EdgPSFzqY0Q=" + }, + { + "pname": "System.Memory", + "version": "4.5.3", + "hash": "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk=" }, { "pname": "System.Net.Http", "version": "4.1.0", - "sha256": "1i5rqij1icg05j8rrkw4gd4pgia1978mqhjzhsjg69lvwcdfg8yb" + "hash": "sha256-y6PnGuObJvOkhl9CXNFJQcV3SXuEz5yRLOCxGGTEucQ=" }, { "pname": "System.Net.Primitives", "version": "4.0.11", - "sha256": "10xzzaynkzkakp7jai1ik3r805zrqjxiz7vcagchyxs2v26a516r" + "hash": "sha256-2YSijNhCdw/ZU2yfH7vE+ReA8pgxRCXPnWr+ab36v4M=" }, { "pname": "System.Net.Sockets", "version": "4.1.0", - "sha256": "1385fvh8h29da5hh58jm1v78fzi9fi5vj93vhlm2kvqpfahvpqls" + "hash": "sha256-muK7oXIX7ykqhXskuUt0KX6Hzg5VogJhUS0JiOB2BY0=" }, { "pname": "System.ObjectModel", "version": "4.0.12", - "sha256": "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj" + "hash": "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s=" }, { "pname": "System.ObjectModel", "version": "4.3.0", - "sha256": "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2" + "hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=" }, { "pname": "System.Private.DataContractSerialization", "version": "4.1.1", - "sha256": "1xk9wvgzipssp1393nsg4n16zbr5481k03nkdlj954hzq5jkx89r" - }, - { - "pname": "System.Private.Uri", - "version": "4.0.1", - "sha256": "0k57qhawjysm4cpbfpc49kl4av7lji310kjcamkl23bwgij5ld9j" + "hash": "sha256-OaE+ZcEfkpIkbdMOMAMiJa9vgiVP25FGuFrf+N/mafY=" }, { "pname": "System.Reflection", "version": "4.1.0", - "sha256": "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9" + "hash": "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs=" }, { "pname": "System.Reflection", "version": "4.3.0", - "sha256": "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m" + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" }, { "pname": "System.Reflection.Emit", "version": "4.0.1", - "sha256": "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp" + "hash": "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk=" }, { "pname": "System.Reflection.Emit", "version": "4.3.0", - "sha256": "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74" + "hash": "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU=" }, { "pname": "System.Reflection.Emit.ILGeneration", "version": "4.0.1", - "sha256": "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0" + "hash": "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0=" }, { "pname": "System.Reflection.Emit.ILGeneration", "version": "4.3.0", - "sha256": "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q" + "hash": "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA=" }, { "pname": "System.Reflection.Emit.Lightweight", "version": "4.0.1", - "sha256": "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr" + "hash": "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g=" }, { "pname": "System.Reflection.Emit.Lightweight", "version": "4.3.0", - "sha256": "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c" + "hash": "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I=" }, { "pname": "System.Reflection.Extensions", "version": "4.0.1", - "sha256": "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn" + "hash": "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ=" }, { "pname": "System.Reflection.Extensions", "version": "4.3.0", - "sha256": "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq" + "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" }, { "pname": "System.Reflection.Metadata", "version": "1.3.0", - "sha256": "1y5m6kryhjpqqm2g3h3b6bzig13wkiw954x3b7icqjm6xypm1x3b" + "hash": "sha256-a/RQr++mSsziWaOTknicfIQX/zJrwPFExfhK6PM0tfg=" }, { "pname": "System.Reflection.Primitives", "version": "4.0.1", - "sha256": "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28" + "hash": "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0=" }, { "pname": "System.Reflection.Primitives", "version": "4.3.0", - "sha256": "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276" + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" }, { "pname": "System.Reflection.TypeExtensions", "version": "4.1.0", - "sha256": "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7" + "hash": "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4=" }, { "pname": "System.Reflection.TypeExtensions", "version": "4.3.0", - "sha256": "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1" + "hash": "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng=" }, { "pname": "System.Resources.Reader", "version": "4.0.0", - "sha256": "1jafi73dcf1lalrir46manq3iy6xnxk2z7gpdpwg4wqql7dv3ril" + "hash": "sha256-NOax26EYc/L4bfedL2a33fg4sFXVkBwzVTQ41saJTsk=" }, { "pname": "System.Resources.ResourceManager", "version": "4.0.1", - "sha256": "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi" + "hash": "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw=" }, { "pname": "System.Resources.ResourceManager", "version": "4.3.0", - "sha256": "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49" + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" }, { "pname": "System.Resources.Writer", "version": "4.0.0", - "sha256": "07hp218kjdcvpl27djspnixgnacbp9apma61zz3wsca9fx5g3lmv" + "hash": "sha256-u9LxSndJMc3H/8GoelW6iyn7erRXy3YEvZs1OVEQFx4=" }, { "pname": "System.Runtime", "version": "4.1.0", - "sha256": "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m" + "hash": "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo=" }, { "pname": "System.Runtime", "version": "4.3.0", - "sha256": "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7" + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" }, { "pname": "System.Runtime.CompilerServices.Unsafe", "version": "4.4.0", - "sha256": "0a6ahgi5b148sl5qyfpyw383p3cb4yrkm802k29fsi4mxkiwir29" + "hash": "sha256-SeTI4+yVRO2SmAKgOrMni4070OD+Oo8L1YiEVeKDyig=" }, { "pname": "System.Runtime.Extensions", "version": "4.1.0", - "sha256": "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z" + "hash": "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc=" }, { "pname": "System.Runtime.Extensions", "version": "4.3.0", - "sha256": "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60" + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" }, { "pname": "System.Runtime.Handles", "version": "4.0.1", - "sha256": "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g" + "hash": "sha256-j2QgVO9ZOjv7D1het98CoFpjoYgxjupuIhuBUmLLH7w=" }, { "pname": "System.Runtime.Handles", "version": "4.3.0", - "sha256": "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8" + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" }, { "pname": "System.Runtime.InteropServices", "version": "4.1.0", - "sha256": "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1" + "hash": "sha256-QceAYlJvkPRJc/+5jR+wQpNNI3aqGySWWSO30e/FfQY=" }, { "pname": "System.Runtime.InteropServices", "version": "4.3.0", - "sha256": "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j" + "hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=" }, { "pname": "System.Runtime.InteropServices.RuntimeInformation", "version": "4.0.0", - "sha256": "0glmvarf3jz5xh22iy3w9v3wyragcm4hfdr17v90vs7vcrm7fgp6" + "hash": "sha256-5j53amb76A3SPiE3B0llT2XPx058+CgE7OXL4bLalT4=" }, { "pname": "System.Runtime.Loader", "version": "4.0.0", - "sha256": "0lpfi3psqcp6zxsjk2qyahal7zaawviimc8lhrlswhip2mx7ykl0" + "hash": "sha256-gE5/ehU3Qq5phhSxGuPmSv1DFVQeiyl1/+YyrO+I7lI=" }, { "pname": "System.Runtime.Numerics", "version": "4.0.1", - "sha256": "1y308zfvy0l5nrn46mqqr4wb4z1xk758pkk8svbz8b5ij7jnv4nn" + "hash": "sha256-1pJt5ZGxLPTX1mjOi8qZPXyyOMkYV0NstoUCv91HYPg=" }, { "pname": "System.Runtime.Numerics", "version": "4.3.0", - "sha256": "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z" + "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" }, { "pname": "System.Runtime.Serialization.Formatters", "version": "4.3.0", - "sha256": "114j35n8gcvn3sqv9ar36r1jjq0y1yws9r0yk8i6wm4aq7n9rs0m" + "hash": "sha256-Feic7MGKVG4imh7kpLkPHmApQzYjq7SxHnazh2wZkoQ=" }, { "pname": "System.Runtime.Serialization.Primitives", "version": "4.1.1", - "sha256": "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k" + "hash": "sha256-80B05oxJbPLGq2pGOSl6NlZvintX9A1CNpna2aN0WRA=" }, { "pname": "System.Runtime.Serialization.Primitives", "version": "4.3.0", - "sha256": "01vv2p8h4hsz217xxs0rixvb7f2xzbh6wv1gzbfykcbfrza6dvnf" + "hash": "sha256-zu5m1M9usend+i9sbuD6Xbizdo8Z6N5PEF9DAtEVewc=" }, { "pname": "System.Runtime.Serialization.Xml", "version": "4.1.1", - "sha256": "11747an5gbz821pwahaim3v82gghshnj9b5c4cw539xg5a3gq7rk" + "hash": "sha256-Mx/8hiqvp1E4I6ysJC3U8D2B9qhRQcVvEOivV6w65IQ=" }, { "pname": "System.Security.Cryptography.Algorithms", "version": "4.2.0", - "sha256": "148s9g5dgm33ri7dnh19s4lgnlxbpwvrw2jnzllq2kijj4i4vs85" + "hash": "sha256-BelNIpEyToEp/VYKnje/q1P7KNEpQNtOzGPU18pLGpE=" }, { "pname": "System.Security.Cryptography.Cng", "version": "4.2.0", - "sha256": "118jijz446kix20blxip0f0q8mhsh9bz118mwc2ch1p6g7facpzc" + "hash": "sha256-7F+m3HnmBsgE4xWF8FeCGlaEgQM3drqA6HEaQr6MEoU=" }, { "pname": "System.Security.Cryptography.Csp", "version": "4.0.0", - "sha256": "1cwv8lqj8r15q81d2pz2jwzzbaji0l28xfrpw29kdpsaypm92z2q" + "hash": "sha256-WHyR6vVK3zaT4De7jgQFUar1P5fiX9ECwiVkJDFFm7M=" }, { "pname": "System.Security.Cryptography.Encoding", "version": "4.0.0", - "sha256": "0a8y1a5wkmpawc787gfmnrnbzdgxmx1a14ax43jf3rj9gxmy3vk4" + "hash": "sha256-ZO7ha39J5uHkIF2RoEKv/bW/bLbVvYMO4+rWyYsKHik=" }, { "pname": "System.Security.Cryptography.OpenSsl", "version": "4.0.0", - "sha256": "16sx3cig3d0ilvzl8xxgffmxbiqx87zdi8fc73i3i7zjih1a7f4q" + "hash": "sha256-mLijAozynzjiOMyh2P5BHcfVq3Ovd0T/phG08SIbXZs=" }, { "pname": "System.Security.Cryptography.Primitives", "version": "4.0.0", - "sha256": "0i7cfnwph9a10bm26m538h5xcr8b36jscp9sy1zhgifksxz4yixh" + "hash": "sha256-sEdPftfTxQd/8DpdpqUZC2XWC0SjVCPqAkEleLl17EQ=" }, { "pname": "System.Security.Cryptography.X509Certificates", "version": "4.1.0", - "sha256": "0clg1bv55mfv5dq00m19cp634zx6inm31kf8ppbq1jgyjf2185dh" + "hash": "sha256-sBUUhJP+yYDXvcjNMKqNpn8yzGUpVABwK9vVUvYKjzI=" }, { "pname": "System.Security.Principal", "version": "4.0.1", - "sha256": "1nbzdfqvzzbgsfdd5qsh94d7dbg2v4sw0yx6himyn52zf8z6007p" + "hash": "sha256-9wBgPnJfFOtrhKZ7wDXZ4q12GklQ49Ka02/9v7Frf9k=" }, { "pname": "System.Text.Encoding", "version": "4.0.11", - "sha256": "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw" + "hash": "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc=" }, { "pname": "System.Text.Encoding", "version": "4.3.0", - "sha256": "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr" + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" }, { "pname": "System.Text.Encoding.CodePages", "version": "4.0.1", - "sha256": "00wpm3b9y0k996rm9whxprngm8l500ajmzgy2ip9pgwk0icp06y3" + "hash": "sha256-wxtwWQSTv5tuFP79KhUAhaL6bL4d8lSzSWkCn9aolwM=" }, { "pname": "System.Text.Encoding.Extensions", "version": "4.0.11", - "sha256": "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs" + "hash": "sha256-+kf7J3dEhgCbnCM5vHYlsTm5/R/Ud0Jr6elpHm922iI=" }, { "pname": "System.Text.Encoding.Extensions", "version": "4.3.0", - "sha256": "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy" + "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" + }, + { + "pname": "System.Text.Json", + "version": "8.0.5", + "hash": "sha256-yKxo54w5odWT6nPruUVsaX53oPRe+gKzGvLnnxtwP68=" }, { "pname": "System.Text.RegularExpressions", "version": "4.1.0", - "sha256": "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7" + "hash": "sha256-x6OQN6MCN7S0fJ6EFTfv4rczdUWjwuWE9QQ0P6fbh9c=" }, { "pname": "System.Text.RegularExpressions", "version": "4.3.0", - "sha256": "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l" + "hash": "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0=" }, { "pname": "System.Threading", "version": "4.0.11", - "sha256": "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls" + "hash": "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac=" }, { "pname": "System.Threading", "version": "4.3.0", - "sha256": "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34" + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" + }, + { + "pname": "System.Threading.Channels", + "version": "8.0.0", + "hash": "sha256-c5TYoLNXDLroLIPnlfyMHk7nZ70QAckc/c7V199YChg=" }, { "pname": "System.Threading.Overlapped", "version": "4.0.1", - "sha256": "0fi79az3vmqdp9mv3wh2phblfjls89zlj6p9nc3i9f6wmfarj188" + "hash": "sha256-CAWZlavcuBQHs+kaSX9CmkpHF7wC8rFrug3XPb5KJzo=" }, { "pname": "System.Threading.Tasks", "version": "4.0.11", - "sha256": "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5" + "hash": "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs=" }, { "pname": "System.Threading.Tasks", "version": "4.3.0", - "sha256": "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7" + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" }, { "pname": "System.Threading.Tasks.Dataflow", "version": "4.6.0", - "sha256": "0a1davr71wssyn4z1hr75lk82wqa0daz0vfwkmg1fm3kckfd72k1" + "hash": "sha256-YYrT3GRzVBdendxt8FUDCnOBJi0nw/CJ9VrzcPJWLSg=" }, { "pname": "System.Threading.Tasks.Extensions", "version": "4.0.0", - "sha256": "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr" + "hash": "sha256-+YdcPkMhZhRbMZHnfsDwpNbUkr31X7pQFGxXYcAPZbE=" }, { "pname": "System.Threading.Tasks.Extensions", "version": "4.3.0", - "sha256": "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z" + "hash": "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc=" }, { "pname": "System.Threading.Thread", "version": "4.0.0", - "sha256": "1gxxm5fl36pjjpnx1k688dcw8m9l7nmf802nxis6swdaw8k54jzc" + "hash": "sha256-7EtSJuKqcW107FYA5Ko9NFXEWUPIzNDtlfKaQV2pvb8=" }, { "pname": "System.Threading.ThreadPool", "version": "4.0.10", - "sha256": "0fdr61yjcxh5imvyf93n2m3n5g9pp54bnw2l1d2rdl9z6dd31ypx" + "hash": "sha256-/fowWjM/0ZZFC1Rwu0i5N71iRxV2JOd3jQV2Jn0wuTk=" }, { "pname": "System.Threading.Timer", "version": "4.0.1", - "sha256": "15n54f1f8nn3mjcjrlzdg6q3520571y012mx7v991x2fvp73lmg6" + "hash": "sha256-5lU6zt1O9JDSPr2KAHw4BYgysHnt0yyZrMNa5IIjxZY=" }, { "pname": "System.Xml.ReaderWriter", "version": "4.0.11", - "sha256": "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5" + "hash": "sha256-haZAFFQ9Sl2DhfvEbdx2YRqKEoxNMU5STaqpMmXw0zA=" }, { "pname": "System.Xml.ReaderWriter", "version": "4.3.0", - "sha256": "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1" + "hash": "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA=" }, { "pname": "System.Xml.XDocument", "version": "4.0.11", - "sha256": "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18" + "hash": "sha256-KPz1kxe0RUBM+aoktJ/f9p51GudMERU8Pmwm//HdlFg=" }, { "pname": "System.Xml.XDocument", "version": "4.3.0", - "sha256": "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd" + "hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=" }, { "pname": "System.Xml.XmlDocument", "version": "4.0.1", - "sha256": "0ihsnkvyc76r4dcky7v3ansnbyqjzkbyyia0ir5zvqirzan0bnl1" + "hash": "sha256-gdoFrPo54v1LjkBF79f8EvtltVVjHz9ZI9kc5ve0GkY=" }, { "pname": "System.Xml.XmlDocument", "version": "4.3.0", - "sha256": "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi" + "hash": "sha256-kbuV4Y7rVJkfMp2Kgoi8Zvdatm9CZNmlKB3GZgANvy4=" }, { "pname": "System.Xml.XmlSerializer", "version": "4.0.11", - "sha256": "01nzc3gdslw90qfykq4qzr2mdnqxjl4sj0wp3fixiwdmlmvpib5z" + "hash": "sha256-v6x4d6W18dijG5cDqQmVHdtWRf6Y4OkdBolT3d5g3wY=" }, { "pname": "System.Xml.XPath", "version": "4.0.1", - "sha256": "0fjqgb6y66d72d5n8qq1h213d9nv2vi8mpv8p28j3m9rccmsh04m" + "hash": "sha256-lQCoK2M51SGRuGjfiuIW26Y2goABY2RLE6cZ4816WDo=" }, { "pname": "System.Xml.XPath.XmlDocument", "version": "4.0.1", - "sha256": "0l7yljgif41iv5g56l3nxy97hzzgck2a7rhnfnljhx9b0ry41bvc" + "hash": "sha256-bK9AfAYrdSipdRbmo8Rk7394ku92UFNe2TEQF5+k/lA=" + }, + { + "pname": "WabiSabi", + "version": "1.0.1.2", + "hash": "sha256-Gx+tuXraMABak8s0SeofbXpNLVfTnxz4At4+HejnQeU=" } ] diff --git a/pkgs/by-name/wa/wasabibackend/package.nix b/pkgs/by-name/wa/wasabibackend/package.nix index b9d5fffcc72c..cbda1c0f103c 100644 --- a/pkgs/by-name/wa/wasabibackend/package.nix +++ b/pkgs/by-name/wa/wasabibackend/package.nix @@ -6,24 +6,25 @@ dotnetCorePackages, zlib, openssl, + nix-update-script, nixosTests, }: buildDotnetModule rec { pname = "wasabibackend"; - version = "2.0.2.1"; + version = "2.3.1"; src = fetchFromGitHub { - owner = "zkSNACKs"; + owner = "WalletWasabi"; repo = "WalletWasabi"; tag = "v${version}"; - hash = "sha512-JuCl3SyejzwUd2n8Fy7EdxUuO4bIcGb8yMWZQOhZzsY4fvg9prFOnVZEquxahD0a41MLKHRNA1R2N3NMapcc0A=="; + hash = "sha256-vOvNumR/0agf9Mof0UD3KjJVgN18y6R/OrgLOXwL3K8="; }; projectFile = "WalletWasabi.Backend/WalletWasabi.Backend.csproj"; nugetDeps = ./deps.json; - dotnet-sdk = dotnetCorePackages.sdk_7_0-bin; - dotnet-runtime = dotnetCorePackages.aspnetcore_7_0-bin; + dotnet-sdk = dotnetCorePackages.sdk_8_0; + dotnet-runtime = dotnetCorePackages.aspnetcore_8_0; buildInputs = [ (lib.getLib stdenv.cc.cc) @@ -35,26 +36,32 @@ buildDotnetModule rec { zlib ]; - preConfigure = '' - makeWrapperArgs+=( - --chdir "$out/lib/${pname}" - ) - ''; + executables = [ "WalletWasabi.Backend" ]; postFixup = '' mv $out/bin/WalletWasabi.Backend $out/bin/WasabiBackend ''; - passthru.tests = { - inherit (nixosTests) wasabibackend; + passthru = { + updateScript = nix-update-script { }; + tests = { + inherit (nixosTests) wasabibackend; + }; }; - meta = with lib; { + meta = { + changelog = "https://github.com/WalletWasabi/WalletWasabi/releases/tag/${src.tag}"; description = "Backend for the Wasabi Wallet"; homepage = "https://wasabiwallet.io/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.mit; + mainProgram = "WasabiBackend"; + maintainers = with lib.maintainers; [ + mmahut + ]; platforms = [ "x86_64-linux" ]; + sourceProvenance = with lib.sourceTypes; [ + binaryNativeCode # contains binaries in WalletWasabi/Microservices/Binaries + fromSource + ]; }; } diff --git a/pkgs/by-name/yt/ytdl-sub/package.nix b/pkgs/by-name/yt/ytdl-sub/package.nix index 1b6c801fe163..bc6ce0bdd363 100644 --- a/pkgs/by-name/yt/ytdl-sub/package.nix +++ b/pkgs/by-name/yt/ytdl-sub/package.nix @@ -8,14 +8,14 @@ python3Packages.buildPythonApplication rec { pname = "ytdl-sub"; - version = "2025.09.13"; + version = "2025.09.27.post4"; pyproject = true; src = fetchFromGitHub { owner = "jmbannon"; repo = "ytdl-sub"; tag = version; - hash = "sha256-Qcf4hZ1MWH2FHWIvaQGjsd5uwNEaV+MTAFaQm0mwLNs="; + hash = "sha256-b+7K5qpIo1Yfeg18bYMCYVvHgr/7NKiZoelFdtq+KZo="; }; postPatch = '' diff --git a/pkgs/desktops/xfce/core/xfce4-settings/default.nix b/pkgs/desktops/xfce/core/xfce4-settings/default.nix index 71680b8beaad..46a1ac5cc5e3 100644 --- a/pkgs/desktops/xfce/core/xfce4-settings/default.nix +++ b/pkgs/desktops/xfce/core/xfce4-settings/default.nix @@ -13,6 +13,7 @@ libxfce4ui, libxfce4util, libxklavier, + withXrandr ? true, upower, # Disabled by default on upstream and actually causes issues: # https://gitlab.xfce.org/xfce/xfce4-settings/-/issues/222 @@ -57,6 +58,7 @@ mkXfceDerivation { configureFlags = [ "--enable-pluggable-dialogs" "--enable-sound-settings" + (lib.enableFeature withXrandr "xrandr") ] ++ lib.optionals withUpower [ "--enable-upower-glib" ] ++ lib.optionals withColord [ "--enable-colord" ]; diff --git a/pkgs/development/libraries/agda/agda2hs-base/default.nix b/pkgs/development/libraries/agda/agda2hs-base/default.nix new file mode 100644 index 000000000000..97a3b6de4809 --- /dev/null +++ b/pkgs/development/libraries/agda/agda2hs-base/default.nix @@ -0,0 +1,25 @@ +{ + lib, + mkDerivation, + haskellPackages, +}: + +mkDerivation { + pname = "agda2hs-base"; + + inherit (haskellPackages.agda2hs) src version; + + sourceRoot = "source/lib/base"; + + libraryFile = "base.agda-lib"; + + meta = with lib; { + homepage = "https://github.com/agda/agda2hs"; + description = "Standard library for compiling Agda code to readable Haskell"; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with maintainers; [ + wrvsrx + ]; + }; +} diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix index 7c0fc1abfb5d..827c16e524b4 100644 --- a/pkgs/development/libraries/mesa/default.nix +++ b/pkgs/development/libraries/mesa/default.nix @@ -144,6 +144,8 @@ stdenv.mkDerivation { patches = [ ./opencl.patch + # https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37027 + ./gallivm-llvm-21.patch ]; postPatch = '' diff --git a/pkgs/development/libraries/mesa/gallivm-llvm-21.patch b/pkgs/development/libraries/mesa/gallivm-llvm-21.patch new file mode 100644 index 000000000000..692a5c720d52 --- /dev/null +++ b/pkgs/development/libraries/mesa/gallivm-llvm-21.patch @@ -0,0 +1,53 @@ +From eca19331d94005485de5246cfa87a21621486cd8 Mon Sep 17 00:00:00 2001 +From: no92 +Date: Wed, 27 Aug 2025 16:02:31 +0200 +Subject: [PATCH] gallivm: support LLVM 21 + +LLVM PR#146819 changed the signature of `setObjectLinkingLayerCreator`, +dropping the Triple argument. The PR was first included in the LLVM 21 +series, and the new signature is gated behind a version check for that. + +`LLVMOrcThreadSafeContextGetContext` was removed in LLVM commit b18e5b6, +and the ORC examples in the LLVM tree seem to just create a context +instead, which we replicate here. + +With this commit, mesa successfully builds the llvmpipe gallium driver +on riscv64 with LLVM 21.1.0. + +Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/13785 +Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/13852 + +Reviewed-by: David Heidelberg +--- + src/gallium/auxiliary/gallivm/lp_bld_init_orc.cpp | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +diff --git a/src/gallium/auxiliary/gallivm/lp_bld_init_orc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_init_orc.cpp +index 3d2b8cf81bc0c..0be69b02b6eef 100644 +--- a/src/gallium/auxiliary/gallivm/lp_bld_init_orc.cpp ++++ b/src/gallium/auxiliary/gallivm/lp_bld_init_orc.cpp +@@ -340,7 +340,12 @@ LPJit::LPJit() :jit_dylib_count(0) { + .setJITTargetMachineBuilder(std::move(JTMB)) + #ifdef USE_JITLINK + .setObjectLinkingLayerCreator( ++#if LLVM_VERSION_MAJOR >= 21 ++ /* LLVM 21 removed the Triple argument */ ++ [&](ExecutionSession &ES) { ++#else + [&](ExecutionSession &ES, const llvm::Triple &TT) { ++#endif + return std::make_unique( + ES, ExitOnErr(llvm::jitlink::InProcessMemoryManager::Create())); + }) +@@ -552,7 +557,7 @@ init_gallivm_state(struct gallivm_state *gallivm, const char *name, + gallivm->cache = cache; + + gallivm->_ts_context = context->ref; +- gallivm->context = LLVMOrcThreadSafeContextGetContext(context->ref); ++ gallivm->context = LLVMContextCreate(); + + gallivm->module_name = LPJit::get_unique_name(name); + gallivm->module = LLVMModuleCreateWithNameInContext(gallivm->module_name, +-- +GitLab + diff --git a/pkgs/development/node-packages/aliases.nix b/pkgs/development/node-packages/aliases.nix index 6c1528c9cd17..052538e0e9db 100644 --- a/pkgs/development/node-packages/aliases.nix +++ b/pkgs/development/node-packages/aliases.nix @@ -82,6 +82,7 @@ mapAliases { inherit (pkgs) coc-toml; coc-tslint = throw "coc-tslint was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18 coc-tslint-plugin = throw "coc-tslint-plugin was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18 + coc-vetur = throw "coc-vetur was removed because vetur was deprecated by Vue in favor of volar. Use coc-volar instead, which supports Vue 3"; # added 2025-10-01 coinmon = throw "coinmon was removed since it was abandoned upstream"; # added 2024-03-19 coffee-script = pkgs.coffeescript; # added 2023-08-18 inherit (pkgs) concurrently; # added 2024-08-05 @@ -90,6 +91,7 @@ mapAliases { inherit (pkgs) cordova; # added 2023-08-18 inherit (pkgs) create-react-app; # added 2023-09-25 create-react-native-app = throw "create-react-native-app was removed because it was deprecated. Upstream suggests using a framework for React Native."; # added 2024-12-08 + inherit (pkgs) cspell; dat = throw "dat was removed because it was broken"; # added 2023-08-21 inherit (pkgs) degit; # added 2023-08-18 inherit (pkgs) diagnostic-languageserver; # added 2024-06-25 @@ -190,6 +192,7 @@ mapAliases { remod-cli = pkgs.remod; # added 2024-12-04 "reveal.js" = throw "reveal.js was removed because it provides no executable"; # added 2025-03-23 reveal-md = pkgs.reveal-md; # added 2023-07-31 + rimraf = throw "rimraf was removed because it is a library, and your project should lock it instead."; # added 2025-05-28 rollup = throw "rollup has been removed because it was broken"; # added 2025-04-28 inherit (pkgs) rtlcss; # added 2023-08-29 s3http = throw "s3http was removed because it was abandoned upstream"; # added 2023-08-18 diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index b02fde94cd25..4933640657c4 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -55,7 +55,6 @@ , "coc-texlab" , "coc-tsserver" , "coc-ultisnips" -, "coc-vetur" , "coc-vimlsp" , "coc-vimtex" , "coc-wxml" @@ -65,7 +64,6 @@ , "conventional-changelog-cli" , "cpy-cli" , "create-cycle-app" -, "cspell" , "csslint" , "dhcp" , "diff2html-cli" @@ -133,7 +131,6 @@ , "purescript-psa" , "purs-tidy" , "purty" -, "rimraf" , "sass" , "semver" , "sloc" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index 962bb9782d90..a3c9440464d0 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -1488,15 +1488,6 @@ let sha512 = "+mORf3ezU3p3qr+82WvJSnQNE1GAYeoCfEv4fik6B5/2cvKZ75AX8oawWQdXtM9MmndooQj15Jr9kelRFWsuRw=="; }; }; - "@babel/code-frame-7.12.11" = { - name = "_at_babel_slash_code-frame"; - packageName = "@babel/code-frame"; - version = "7.12.11"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"; - sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; - }; - }; "@babel/code-frame-7.26.2" = { name = "_at_babel_slash_code-frame"; packageName = "@babel/code-frame"; @@ -1677,15 +1668,6 @@ let sha512 = "UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g=="; }; }; - "@babel/highlight-7.25.9" = { - name = "_at_babel_slash_highlight"; - packageName = "@babel/highlight"; - version = "7.25.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.9.tgz"; - sha512 = "llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw=="; - }; - }; "@babel/node-7.26.0" = { name = "_at_babel_slash_node"; packageName = "@babel/node"; @@ -2091,78 +2073,6 @@ let sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; }; }; - "@cspell/cspell-bundled-dicts-8.17.5" = { - name = "_at_cspell_slash_cspell-bundled-dicts"; - packageName = "@cspell/cspell-bundled-dicts"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.17.5.tgz"; - sha512 = "b/Ntabar+g4gsRNwOct909cvatO/auHhNvBzJZfyFQzryI1nqHMaSFuDsrrtzbhQkGJ4GiMAKCXZC2EOdHMgmw=="; - }; - }; - "@cspell/cspell-json-reporter-8.17.5" = { - name = "_at_cspell_slash_cspell-json-reporter"; - packageName = "@cspell/cspell-json-reporter"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.17.5.tgz"; - sha512 = "+eVFCdnda74Frv8hguHYwDtxvqDuJJ/luFRl4dC5oknPMRab0JCHM1DDYjp3NzsehTex0HmcxplxqVW6QoDosg=="; - }; - }; - "@cspell/cspell-pipe-8.17.5" = { - name = "_at_cspell_slash_cspell-pipe"; - packageName = "@cspell/cspell-pipe"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.17.5.tgz"; - sha512 = "VOIfFdIo3FYQFcSpIyGkqHupOx0LgfBrWs79IKnTT1II27VUHPF+0oGq0WWf4c2Zpd8tzdHvS3IUhGarWZq69g=="; - }; - }; - "@cspell/cspell-resolver-8.17.5" = { - name = "_at_cspell_slash_cspell-resolver"; - packageName = "@cspell/cspell-resolver"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.17.5.tgz"; - sha512 = "5MhYInligPbGctWxoklAKxtg+sxvtJCuRKGSQHHA0JlCOLSsducypl780P6zvpjLK59XmdfC+wtFONxSmRbsuA=="; - }; - }; - "@cspell/cspell-service-bus-8.17.5" = { - name = "_at_cspell_slash_cspell-service-bus"; - packageName = "@cspell/cspell-service-bus"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.17.5.tgz"; - sha512 = "Ur3IK0R92G/2J6roopG9cU/EhoYAMOx2um7KYlq93cdrly8RBAK2NCcGCL7DbjQB6C9RYEAV60ueMUnQ45RrCQ=="; - }; - }; - "@cspell/cspell-types-8.17.5" = { - name = "_at_cspell_slash_cspell-types"; - packageName = "@cspell/cspell-types"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.17.5.tgz"; - sha512 = "91y2+0teunRSRZj940ORDA3kdjyenrUiM+4j6nQQH24sAIAJdRmQl2LG3eUTmeaSReJGkZIpnToQ6DyU5cC88Q=="; - }; - }; - "@cspell/dict-ada-4.1.0" = { - name = "_at_cspell_slash_dict-ada"; - packageName = "@cspell/dict-ada"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.1.0.tgz"; - sha512 = "7SvmhmX170gyPd+uHXrfmqJBY5qLcCX8kTGURPVeGxmt8XNXT75uu9rnZO+jwrfuU2EimNoArdVy5GZRGljGNg=="; - }; - }; - "@cspell/dict-al-1.1.0" = { - name = "_at_cspell_slash_dict-al"; - packageName = "@cspell/dict-al"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-al/-/dict-al-1.1.0.tgz"; - sha512 = "PtNI1KLmYkELYltbzuoztBxfi11jcE9HXBHCpID2lou/J4VMYKJPNqe4ZjVzSI9NYbMnMnyG3gkbhIdx66VSXg=="; - }; - }; "@cspell/dict-aws-1.0.14" = { name = "_at_cspell_slash_dict-aws"; packageName = "@cspell/dict-aws"; @@ -2172,15 +2082,6 @@ let sha512 = "K21CfB4ZpKYwwDQiPfic2zJA/uxkbsd4IQGejEvDAhE3z8wBs6g6BwwqdVO767M9NgZqc021yAVpr79N5pWe3w=="; }; }; - "@cspell/dict-aws-4.0.9" = { - name = "_at_cspell_slash_dict-aws"; - packageName = "@cspell/dict-aws"; - version = "4.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.9.tgz"; - sha512 = "bDYdnnJGwSkIZ4gzrauu7qzOs/ZAY/FnU4k11LgdMI8BhwMfsbsy2EI1iS+sD/BI5ZnNT9kU5YR3WADeNOmhRg=="; - }; - }; "@cspell/dict-bash-1.0.18" = { name = "_at_cspell_slash_dict-bash"; packageName = "@cspell/dict-bash"; @@ -2190,15 +2091,6 @@ let sha512 = "kJIqQ+FD2TCSgaaP5XLEDgy222+pVWTc+VhveNO++gnTWU3BCVjkD5LjfW7g/CmGONnz+nwXDueWspProaSdJw=="; }; }; - "@cspell/dict-bash-4.2.0" = { - name = "_at_cspell_slash_dict-bash"; - packageName = "@cspell/dict-bash"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.2.0.tgz"; - sha512 = "HOyOS+4AbCArZHs/wMxX/apRkjxg6NDWdt0jF9i9XkvJQUltMwEhyA2TWYjQ0kssBsnof+9amax2lhiZnh3kCg=="; - }; - }; "@cspell/dict-companies-1.0.40" = { name = "_at_cspell_slash_dict-companies"; packageName = "@cspell/dict-companies"; @@ -2208,15 +2100,6 @@ let sha512 = "Aw07qiTroqSST2P5joSrC4uOA05zTXzI2wMb+me3q4Davv1D9sCkzXY0TGoC2vzhNv5ooemRi9KATGaBSdU1sw=="; }; }; - "@cspell/dict-companies-3.1.14" = { - name = "_at_cspell_slash_dict-companies"; - packageName = "@cspell/dict-companies"; - version = "3.1.14"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.1.14.tgz"; - sha512 = "iqo1Ce4L7h0l0GFSicm2wCLtfuymwkvgFGhmu9UHyuIcTbdFkDErH+m6lH3Ed+QuskJlpQ9dM7puMIGqUlVERw=="; - }; - }; "@cspell/dict-cpp-1.1.40" = { name = "_at_cspell_slash_dict-cpp"; packageName = "@cspell/dict-cpp"; @@ -2226,15 +2109,6 @@ let sha512 = "sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw=="; }; }; - "@cspell/dict-cpp-6.0.6" = { - name = "_at_cspell_slash_dict-cpp"; - packageName = "@cspell/dict-cpp"; - version = "6.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.6.tgz"; - sha512 = "HMV1chsExuZt5IL9rYBW7GmhNZDVdQJEd1WtFgOO6jqiNxbpTG3Is3Pkldl7FpusBQQZr4BdjMit5bnPpVRy3A=="; - }; - }; "@cspell/dict-cryptocurrencies-1.0.10" = { name = "_at_cspell_slash_dict-cryptocurrencies"; packageName = "@cspell/dict-cryptocurrencies"; @@ -2244,15 +2118,6 @@ let sha512 = "47ABvDJOkaST/rXipNMfNvneHUzASvmL6K/CbOFpYKfsd0x23Jc9k1yaOC7JAm82XSC/8a7+3Yu+Fk2jVJNnsA=="; }; }; - "@cspell/dict-cryptocurrencies-5.0.4" = { - name = "_at_cspell_slash_dict-cryptocurrencies"; - packageName = "@cspell/dict-cryptocurrencies"; - version = "5.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-5.0.4.tgz"; - sha512 = "6iFu7Abu+4Mgqq08YhTKHfH59mpMpGTwdzDB2Y8bbgiwnGFCeoiSkVkgLn1Kel2++hYcZ8vsAW/MJS9oXxuMag=="; - }; - }; "@cspell/dict-csharp-1.0.11" = { name = "_at_cspell_slash_dict-csharp"; packageName = "@cspell/dict-csharp"; @@ -2262,15 +2127,6 @@ let sha512 = "nub+ZCiTgmT87O+swI+FIAzNwaZPWUGckJU4GN402wBq420V+F4ZFqNV7dVALJrGaWH7LvADRtJxi6cZVHJKeA=="; }; }; - "@cspell/dict-csharp-4.0.6" = { - name = "_at_cspell_slash_dict-csharp"; - packageName = "@cspell/dict-csharp"; - version = "4.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.6.tgz"; - sha512 = "w/+YsqOknjQXmIlWDRmkW+BHBPJZ/XDrfJhZRQnp0wzpPOGml7W0q1iae65P2AFRtTdPKYmvSz7AL5ZRkCnSIw=="; - }; - }; "@cspell/dict-css-1.0.13" = { name = "_at_cspell_slash_dict-css"; packageName = "@cspell/dict-css"; @@ -2280,33 +2136,6 @@ let sha512 = "HU8RbFRoGanFH85mT01Ot/Ay48ixr/gG25VPLtdq56QTrmPsw79gxYm/5Qay16eQbpoPIxaj5CAWNam+DX4GbA=="; }; }; - "@cspell/dict-css-4.0.17" = { - name = "_at_cspell_slash_dict-css"; - packageName = "@cspell/dict-css"; - version = "4.0.17"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.17.tgz"; - sha512 = "2EisRLHk6X/PdicybwlajLGKF5aJf4xnX2uuG5lexuYKt05xV/J/OiBADmi8q9obhxf1nesrMQbqAt+6CsHo/w=="; - }; - }; - "@cspell/dict-dart-2.3.0" = { - name = "_at_cspell_slash_dict-dart"; - packageName = "@cspell/dict-dart"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.3.0.tgz"; - sha512 = "1aY90lAicek8vYczGPDKr70pQSTQHwMFLbmWKTAI6iavmb1fisJBS1oTmMOKE4ximDf86MvVN6Ucwx3u/8HqLg=="; - }; - }; - "@cspell/dict-data-science-2.0.7" = { - name = "_at_cspell_slash_dict-data-science"; - packageName = "@cspell/dict-data-science"; - version = "2.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-2.0.7.tgz"; - sha512 = "XhAkK+nSW6zmrnWzusmZ1BpYLc62AWYHZc2p17u4nE2Z9XG5DleG55PCZxXQTKz90pmwlhFM9AfpkJsYaBWATA=="; - }; - }; "@cspell/dict-django-1.0.26" = { name = "_at_cspell_slash_dict-django"; packageName = "@cspell/dict-django"; @@ -2316,24 +2145,6 @@ let sha512 = "mn9bd7Et1L2zuibc08GVHTiD2Go3/hdjyX5KLukXDklBkq06r+tb0OtKtf1zKodtFDTIaYekGADhNhA6AnKLkg=="; }; }; - "@cspell/dict-django-4.1.4" = { - name = "_at_cspell_slash_dict-django"; - packageName = "@cspell/dict-django"; - version = "4.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.1.4.tgz"; - sha512 = "fX38eUoPvytZ/2GA+g4bbdUtCMGNFSLbdJJPKX2vbewIQGfgSFJKY56vvcHJKAvw7FopjvgyS/98Ta9WN1gckg=="; - }; - }; - "@cspell/dict-docker-1.1.12" = { - name = "_at_cspell_slash_dict-docker"; - packageName = "@cspell/dict-docker"; - version = "1.1.12"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.12.tgz"; - sha512 = "6d25ZPBnYZaT9D9An/x6g/4mk542R8bR3ipnby3QFCxnfdd6xaWiTcwDPsCgwN2aQZIQ1jX/fil9KmBEqIK/qA=="; - }; - }; "@cspell/dict-dotnet-1.0.32" = { name = "_at_cspell_slash_dict-dotnet"; packageName = "@cspell/dict-dotnet"; @@ -2343,15 +2154,6 @@ let sha512 = "9H9vXrgJB4KF8xsyTToXO53cXD33iyfrpT4mhCds+YLUw3P3x3E9myszgJzshnrxYBvQZ+QMII57Qr6SjZVk4Q=="; }; }; - "@cspell/dict-dotnet-5.0.9" = { - name = "_at_cspell_slash_dict-dotnet"; - packageName = "@cspell/dict-dotnet"; - version = "5.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-5.0.9.tgz"; - sha512 = "JGD6RJW5sHtO5lfiJl11a5DpPN6eKSz5M1YBa1I76j4dDOIqgZB6rQexlDlK1DH9B06X4GdDQwdBfnpAB0r2uQ=="; - }; - }; "@cspell/dict-elixir-1.0.26" = { name = "_at_cspell_slash_dict-elixir"; packageName = "@cspell/dict-elixir"; @@ -2361,24 +2163,6 @@ let sha512 = "hz1yETUiRJM7yjN3mITSnxcmZaEyaBbyJhpZPpg+cKUil+xhHeZ2wwfbRc83QHGmlqEuDWbdCFqKSpCDJYpYhg=="; }; }; - "@cspell/dict-elixir-4.0.7" = { - name = "_at_cspell_slash_dict-elixir"; - packageName = "@cspell/dict-elixir"; - version = "4.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.7.tgz"; - sha512 = "MAUqlMw73mgtSdxvbAvyRlvc3bYnrDqXQrx5K9SwW8F7fRYf9V4vWYFULh+UWwwkqkhX9w03ZqFYRTdkFku6uA=="; - }; - }; - "@cspell/dict-en-common-misspellings-2.0.10" = { - name = "_at_cspell_slash_dict-en-common-misspellings"; - packageName = "@cspell/dict-en-common-misspellings"; - version = "2.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.10.tgz"; - sha512 = "80mXJLtr0tVEtzowrI7ycVae/ULAYImZUlr0kUTpa8i57AUk7Zy3pYBs44EYIKW7ZC9AHu4Qjjfq4vriAtyTDQ=="; - }; - }; "@cspell/dict-en-gb-1.1.33" = { name = "_at_cspell_slash_dict-en-gb"; packageName = "@cspell/dict-en-gb"; @@ -2415,24 +2199,6 @@ let sha512 = "EllahNkhzvLWo0ptwu0l3oEeAJOQSUpZnDfnKRIh6mJVehuSovNHwA9vrdZ8jBUjuqcfaN2e7c32zN0D/qvWJQ=="; }; }; - "@cspell/dict-filetypes-3.0.11" = { - name = "_at_cspell_slash_dict-filetypes"; - packageName = "@cspell/dict-filetypes"; - version = "3.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.11.tgz"; - sha512 = "bBtCHZLo7MiSRUqx5KEiPdGOmXIlDGY+L7SJEtRWZENpAKE+96rT7hj+TUUYWBbCzheqHr0OXZJFEKDgsG/uZg=="; - }; - }; - "@cspell/dict-flutter-1.1.0" = { - name = "_at_cspell_slash_dict-flutter"; - packageName = "@cspell/dict-flutter"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-flutter/-/dict-flutter-1.1.0.tgz"; - sha512 = "3zDeS7zc2p8tr9YH9tfbOEYfopKY/srNsAa+kE3rfBTtQERAZeOhe5yxrnTPoufctXLyuUtcGMUTpxr3dO0iaA=="; - }; - }; "@cspell/dict-fonts-1.0.14" = { name = "_at_cspell_slash_dict-fonts"; packageName = "@cspell/dict-fonts"; @@ -2442,24 +2208,6 @@ let sha512 = "VhIX+FVYAnqQrOuoFEtya6+H72J82cIicz9QddgknsTqZQ3dvgp6lmVnsQXPM3EnzA8n1peTGpLDwHzT7ociLA=="; }; }; - "@cspell/dict-fonts-4.0.4" = { - name = "_at_cspell_slash_dict-fonts"; - packageName = "@cspell/dict-fonts"; - version = "4.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-4.0.4.tgz"; - sha512 = "cHFho4hjojBcHl6qxidl9CvUb492IuSk7xIf2G2wJzcHwGaCFa2o3gRcxmIg1j62guetAeDDFELizDaJlVRIOg=="; - }; - }; - "@cspell/dict-fsharp-1.1.0" = { - name = "_at_cspell_slash_dict-fsharp"; - packageName = "@cspell/dict-fsharp"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-fsharp/-/dict-fsharp-1.1.0.tgz"; - sha512 = "oguWmHhGzgbgbEIBKtgKPrFSVAFtvGHaQS0oj+vacZqMObwkapcTGu7iwf4V3Bc2T3caf0QE6f6rQfIJFIAVsw=="; - }; - }; "@cspell/dict-fullstack-1.0.39" = { name = "_at_cspell_slash_dict-fullstack"; packageName = "@cspell/dict-fullstack"; @@ -2469,33 +2217,6 @@ let sha512 = "Mbi+zWdiP9yzL+X4YD9Tgcm5YQ95Ql+Y3vF2LRnOY6g2QWaijTRN1rgksVuxzpFqHi//+bx2uoUb0XEKBYDi8g=="; }; }; - "@cspell/dict-fullstack-3.2.6" = { - name = "_at_cspell_slash_dict-fullstack"; - packageName = "@cspell/dict-fullstack"; - version = "3.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.6.tgz"; - sha512 = "cSaq9rz5RIU9j+0jcF2vnKPTQjxGXclntmoNp4XB7yFX2621PxJcekGjwf/lN5heJwVxGLL9toR0CBlGKwQBgA=="; - }; - }; - "@cspell/dict-gaming-terms-1.1.0" = { - name = "_at_cspell_slash_dict-gaming-terms"; - packageName = "@cspell/dict-gaming-terms"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.1.0.tgz"; - sha512 = "46AnDs9XkgJ2f1Sqol1WgfJ8gOqp60fojpc9Wxch7x+BA63g4JfMV5/M5x0sI0TLlLY8EBSglcr8wQF/7C80AQ=="; - }; - }; - "@cspell/dict-git-3.0.4" = { - name = "_at_cspell_slash_dict-git"; - packageName = "@cspell/dict-git"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-3.0.4.tgz"; - sha512 = "C44M+m56rYn6QCsLbiKiedyPTMZxlDdEYAsPwwlL5bhMDDzXZ3Ic8OCQIhMbiunhCOJJT+er4URmOmM+sllnjg=="; - }; - }; "@cspell/dict-golang-1.1.24" = { name = "_at_cspell_slash_dict-golang"; packageName = "@cspell/dict-golang"; @@ -2505,24 +2226,6 @@ let sha512 = "qq3Cjnx2U1jpeWAGJL1GL0ylEhUMqyaR36Xij6Y6Aq4bViCRp+HRRqk0x5/IHHbOrti45h3yy7ii1itRFo+Xkg=="; }; }; - "@cspell/dict-golang-6.0.19" = { - name = "_at_cspell_slash_dict-golang"; - packageName = "@cspell/dict-golang"; - version = "6.0.19"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.19.tgz"; - sha512 = "VS+oinB2/CbgmHE06kMJlj52OVMZM0S2EEXph3oaroNTgTuclSwdFylQmOEjquZi55kW+n3FM9MyWXiitB7Dtg=="; - }; - }; - "@cspell/dict-google-1.0.8" = { - name = "_at_cspell_slash_dict-google"; - packageName = "@cspell/dict-google"; - version = "1.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-google/-/dict-google-1.0.8.tgz"; - sha512 = "BnMHgcEeaLyloPmBs8phCqprI+4r2Jb8rni011A8hE+7FNk7FmLE3kiwxLFrcZnnb7eqM0agW4zUaNoB0P+z8A=="; - }; - }; "@cspell/dict-haskell-1.0.13" = { name = "_at_cspell_slash_dict-haskell"; packageName = "@cspell/dict-haskell"; @@ -2532,15 +2235,6 @@ let sha512 = "kvl8T84cnYRPpND/P3D86P6WRSqebsbk0FnMfy27zo15L5MLAb3d3MOiT1kW3vEWfQgzUD7uddX/vUiuroQ8TA=="; }; }; - "@cspell/dict-haskell-4.0.5" = { - name = "_at_cspell_slash_dict-haskell"; - packageName = "@cspell/dict-haskell"; - version = "4.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.5.tgz"; - sha512 = "s4BG/4tlj2pPM9Ha7IZYMhUujXDnI0Eq1+38UTTCpatYLbQqDwRFf2KNPLRqkroU+a44yTUAe0rkkKbwy4yRtQ=="; - }; - }; "@cspell/dict-html-1.1.9" = { name = "_at_cspell_slash_dict-html"; packageName = "@cspell/dict-html"; @@ -2550,15 +2244,6 @@ let sha512 = "vvnYia0tyIS5Fdoz+gEQm77MGZZE66kOJjuNpIYyRHCXFAhWdYz3SmkRm6YKJSWSvuO+WBJYTKDvkOxSh3Fx/w=="; }; }; - "@cspell/dict-html-4.0.11" = { - name = "_at_cspell_slash_dict-html"; - packageName = "@cspell/dict-html"; - version = "4.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.11.tgz"; - sha512 = "QR3b/PB972SRQ2xICR1Nw/M44IJ6rjypwzA4jn+GH8ydjAX9acFNfc+hLZVyNe0FqsE90Gw3evLCOIF0vy1vQw=="; - }; - }; "@cspell/dict-html-symbol-entities-1.0.23" = { name = "_at_cspell_slash_dict-html-symbol-entities"; packageName = "@cspell/dict-html-symbol-entities"; @@ -2568,15 +2253,6 @@ let sha512 = "PV0UBgcBFbBLf/m1wfkVMM8w96kvfHoiCGLWO6BR3Q9v70IXoE4ae0+T+f0CkxcEkacMqEQk/I7vuE9MzrjaNw=="; }; }; - "@cspell/dict-html-symbol-entities-4.0.3" = { - name = "_at_cspell_slash_dict-html-symbol-entities"; - packageName = "@cspell/dict-html-symbol-entities"; - version = "4.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.3.tgz"; - sha512 = "aABXX7dMLNFdSE8aY844X4+hvfK7977sOWgZXo4MTGAmOzR8524fjbJPswIBK7GaD3+SgFZ2yP2o0CFvXDGF+A=="; - }; - }; "@cspell/dict-java-1.0.23" = { name = "_at_cspell_slash_dict-java"; packageName = "@cspell/dict-java"; @@ -2586,42 +2262,6 @@ let sha512 = "LcOg9srYLDoNGd8n3kbfDBlZD+LOC9IVcnFCdua1b/luCHNVmlgBx7e677qPu7olpMYOD5TQIVW2OmM1+/6MFA=="; }; }; - "@cspell/dict-java-5.0.11" = { - name = "_at_cspell_slash_dict-java"; - packageName = "@cspell/dict-java"; - version = "5.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.11.tgz"; - sha512 = "T4t/1JqeH33Raa/QK/eQe26FE17eUCtWu+JsYcTLkQTci2dk1DfcIKo8YVHvZXBnuM43ATns9Xs0s+AlqDeH7w=="; - }; - }; - "@cspell/dict-julia-1.1.0" = { - name = "_at_cspell_slash_dict-julia"; - packageName = "@cspell/dict-julia"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-julia/-/dict-julia-1.1.0.tgz"; - sha512 = "CPUiesiXwy3HRoBR3joUseTZ9giFPCydSKu2rkh6I2nVjXnl5vFHzOMLXpbF4HQ1tH2CNfnDbUndxD+I+7eL9w=="; - }; - }; - "@cspell/dict-k8s-1.0.10" = { - name = "_at_cspell_slash_dict-k8s"; - packageName = "@cspell/dict-k8s"; - version = "1.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.10.tgz"; - sha512 = "313haTrX9prep1yWO7N6Xw4D6tvUJ0Xsx+YhCP+5YrrcIKoEw5Rtlg8R4PPzLqe6zibw6aJ+Eqq+y76Vx5BZkw=="; - }; - }; - "@cspell/dict-kotlin-1.1.0" = { - name = "_at_cspell_slash_dict-kotlin"; - packageName = "@cspell/dict-kotlin"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-kotlin/-/dict-kotlin-1.1.0.tgz"; - sha512 = "vySaVw6atY7LdwvstQowSbdxjXG6jDhjkWVWSjg1XsUckyzH1JRHXe9VahZz1i7dpoFEUOWQrhIe5B9482UyJQ=="; - }; - }; "@cspell/dict-latex-1.0.25" = { name = "_at_cspell_slash_dict-latex"; packageName = "@cspell/dict-latex"; @@ -2631,15 +2271,6 @@ let sha512 = "cEgg91Migqcp1SdVV7dUeMxbPDhxdNo6Fgq2eygAXQjIOFK520FFvh/qxyBvW90qdZbIRoU2AJpchyHfGuwZFA=="; }; }; - "@cspell/dict-latex-4.0.3" = { - name = "_at_cspell_slash_dict-latex"; - packageName = "@cspell/dict-latex"; - version = "4.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-4.0.3.tgz"; - sha512 = "2KXBt9fSpymYHxHfvhUpjUFyzrmN4c4P8mwIzweLyvqntBT3k0YGZJSriOdjfUjwSygrfEwiuPI1EMrvgrOMJw=="; - }; - }; "@cspell/dict-lorem-ipsum-1.0.22" = { name = "_at_cspell_slash_dict-lorem-ipsum"; packageName = "@cspell/dict-lorem-ipsum"; @@ -2649,15 +2280,6 @@ let sha512 = "yqzspR+2ADeAGUxLTfZ4pXvPl7FmkENMRcGDECmddkOiuEwBCWMZdMP5fng9B0Q6j91hQ8w9CLvJKBz10TqNYg=="; }; }; - "@cspell/dict-lorem-ipsum-4.0.4" = { - name = "_at_cspell_slash_dict-lorem-ipsum"; - packageName = "@cspell/dict-lorem-ipsum"; - version = "4.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.4.tgz"; - sha512 = "+4f7vtY4dp2b9N5fn0za/UR0kwFq2zDtA62JCbWHbpjvO9wukkbl4rZg4YudHbBgkl73HRnXFgCiwNhdIA1JPw=="; - }; - }; "@cspell/dict-lua-1.0.16" = { name = "_at_cspell_slash_dict-lua"; packageName = "@cspell/dict-lua"; @@ -2667,42 +2289,6 @@ let sha512 = "YiHDt8kmHJ8nSBy0tHzaxiuitYp+oJ66ffCYuFWTNB3//Y0SI4OGHU3omLsQVeXIfCeVrO4DrVvRDoCls9B5zQ=="; }; }; - "@cspell/dict-lua-4.0.7" = { - name = "_at_cspell_slash_dict-lua"; - packageName = "@cspell/dict-lua"; - version = "4.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.7.tgz"; - sha512 = "Wbr7YSQw+cLHhTYTKV6cAljgMgcY+EUAxVIZW3ljKswEe4OLxnVJ7lPqZF5JKjlXdgCjbPSimsHqyAbC5pQN/Q=="; - }; - }; - "@cspell/dict-makefile-1.0.4" = { - name = "_at_cspell_slash_dict-makefile"; - packageName = "@cspell/dict-makefile"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-makefile/-/dict-makefile-1.0.4.tgz"; - sha512 = "E4hG/c0ekPqUBvlkrVvzSoAA+SsDA9bLi4xSV3AXHTVru7Y2bVVGMPtpfF+fI3zTkww/jwinprcU1LSohI3ylw=="; - }; - }; - "@cspell/dict-markdown-2.0.9" = { - name = "_at_cspell_slash_dict-markdown"; - packageName = "@cspell/dict-markdown"; - version = "2.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-markdown/-/dict-markdown-2.0.9.tgz"; - sha512 = "j2e6Eg18BlTb1mMP1DkyRFMM/FLS7qiZjltpURzDckB57zDZbUyskOFdl4VX7jItZZEeY0fe22bSPOycgS1Z5A=="; - }; - }; - "@cspell/dict-monkeyc-1.0.10" = { - name = "_at_cspell_slash_dict-monkeyc"; - packageName = "@cspell/dict-monkeyc"; - version = "1.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-monkeyc/-/dict-monkeyc-1.0.10.tgz"; - sha512 = "7RTGyKsTIIVqzbvOtAu6Z/lwwxjGRtY5RkKPlXKHEoEAgIXwfDxb5EkVwzGQwQr8hF/D3HrdYbRT8MFBfsueZw=="; - }; - }; "@cspell/dict-node-1.0.12" = { name = "_at_cspell_slash_dict-node"; packageName = "@cspell/dict-node"; @@ -2712,15 +2298,6 @@ let sha512 = "RPNn/7CSkflAWk0sbSoOkg0ORrgBARUjOW3QjB11KwV1gSu8f5W/ij/S50uIXtlrfoBLqd4OyE04jyON+g/Xfg=="; }; }; - "@cspell/dict-node-5.0.6" = { - name = "_at_cspell_slash_dict-node"; - packageName = "@cspell/dict-node"; - version = "5.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-5.0.6.tgz"; - sha512 = "CEbhPCpxGvRNByGolSBTrXXW2rJA4bGqZuTx1KKO85mwR6aadeOmUE7xf/8jiCkXSy+qvr9aJeh+jlfXcsrziQ=="; - }; - }; "@cspell/dict-npm-1.0.16" = { name = "_at_cspell_slash_dict-npm"; packageName = "@cspell/dict-npm"; @@ -2730,15 +2307,6 @@ let sha512 = "RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ=="; }; }; - "@cspell/dict-npm-5.1.30" = { - name = "_at_cspell_slash_dict-npm"; - packageName = "@cspell/dict-npm"; - version = "5.1.30"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.30.tgz"; - sha512 = "qRMJZFz4FBPECH5rGQN9p2Ld6nfpSaPFQvlG6V2RowWcrJQqF4RFmLUNuRQpvndpSeIUo32yX1hxb7AT45ARCQ=="; - }; - }; "@cspell/dict-php-1.0.25" = { name = "_at_cspell_slash_dict-php"; packageName = "@cspell/dict-php"; @@ -2748,15 +2316,6 @@ let sha512 = "RoBIP5MRdByyPaXcznZMfOY1JdCMYPPLua5E9gkq0TJO7bX5mC9hyAKfYBSWVQunZydd82HZixjb5MPkDFU1uw=="; }; }; - "@cspell/dict-php-4.0.14" = { - name = "_at_cspell_slash_dict-php"; - packageName = "@cspell/dict-php"; - version = "4.0.14"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.0.14.tgz"; - sha512 = "7zur8pyncYZglxNmqsRycOZ6inpDoVd4yFfz1pQRe5xaRWMiK3Km4n0/X/1YMWhh3e3Sl/fQg5Axb2hlN68t1g=="; - }; - }; "@cspell/dict-powershell-1.0.19" = { name = "_at_cspell_slash_dict-powershell"; packageName = "@cspell/dict-powershell"; @@ -2766,24 +2325,6 @@ let sha512 = "zF/raM/lkhXeHf4I43OtK0gP9rBeEJFArscTVwLWOCIvNk21MJcNoTYoaGw+c056+Q+hJL0psGLO7QN+mxYH1A=="; }; }; - "@cspell/dict-powershell-5.0.14" = { - name = "_at_cspell_slash_dict-powershell"; - packageName = "@cspell/dict-powershell"; - version = "5.0.14"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.14.tgz"; - sha512 = "ktjjvtkIUIYmj/SoGBYbr3/+CsRGNXGpvVANrY0wlm/IoGlGywhoTUDYN0IsGwI2b8Vktx3DZmQkfb3Wo38jBA=="; - }; - }; - "@cspell/dict-public-licenses-2.0.13" = { - name = "_at_cspell_slash_dict-public-licenses"; - packageName = "@cspell/dict-public-licenses"; - version = "2.0.13"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.13.tgz"; - sha512 = "1Wdp/XH1ieim7CadXYE7YLnUlW0pULEjVl9WEeziZw3EKCAw8ZI8Ih44m4bEa5VNBLnuP5TfqC4iDautAleQzQ=="; - }; - }; "@cspell/dict-python-1.0.38" = { name = "_at_cspell_slash_dict-python"; packageName = "@cspell/dict-python"; @@ -2793,24 +2334,6 @@ let sha512 = "KuyOQaby9NID/pn7EkXilpUxjVIvvyLzhr7BPsDS6FcvUE8Yhss6bJowEDHSv6pa+W2387phoqbDf2rTicquAA=="; }; }; - "@cspell/dict-python-4.2.16" = { - name = "_at_cspell_slash_dict-python"; - packageName = "@cspell/dict-python"; - version = "4.2.16"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.2.16.tgz"; - sha512 = "LkQssFt1hPOWXIQiD8ScTkz/41RL7Ti0V/2ytUzEW82dc0atIEksrBg8MuOjWXktp0Dk5tDwRLgmIvhV3CFFOA=="; - }; - }; - "@cspell/dict-r-2.1.0" = { - name = "_at_cspell_slash_dict-r"; - packageName = "@cspell/dict-r"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.1.0.tgz"; - sha512 = "k2512wgGG0lTpTYH9w5Wwco+lAMf3Vz7mhqV8+OnalIE7muA0RSuD9tWBjiqLcX8zPvEJr4LdgxVju8Gk3OKyA=="; - }; - }; "@cspell/dict-ruby-1.0.15" = { name = "_at_cspell_slash_dict-ruby"; packageName = "@cspell/dict-ruby"; @@ -2820,15 +2343,6 @@ let sha512 = "I76hJA///lc1pgmDTGUFHN/O8KLIZIU/8TgIYIGI6Ix/YzSEvWNdQYbANn6JbCynS0X+7IbZ2Ft+QqvmGtIWuA=="; }; }; - "@cspell/dict-ruby-5.0.8" = { - name = "_at_cspell_slash_dict-ruby"; - packageName = "@cspell/dict-ruby"; - version = "5.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.0.8.tgz"; - sha512 = "ixuTneU0aH1cPQRbWJvtvOntMFfeQR2KxT8LuAv5jBKqQWIHSxzGlp+zX3SVyoeR0kOWiu64/O5Yn836A5yMcQ=="; - }; - }; "@cspell/dict-rust-1.0.23" = { name = "_at_cspell_slash_dict-rust"; packageName = "@cspell/dict-rust"; @@ -2838,15 +2352,6 @@ let sha512 = "lR4boDzs79YD6+30mmiSGAMMdwh7HTBAPUFSB0obR3Kidibfc3GZ+MHWZXay5dxZ4nBKM06vyjtanF9VJ8q1Iw=="; }; }; - "@cspell/dict-rust-4.0.11" = { - name = "_at_cspell_slash_dict-rust"; - packageName = "@cspell/dict-rust"; - version = "4.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.11.tgz"; - sha512 = "OGWDEEzm8HlkSmtD8fV3pEcO2XBpzG2XYjgMCJCRwb2gRKvR+XIm6Dlhs04N/K2kU+iH8bvrqNpM8fS/BFl0uw=="; - }; - }; "@cspell/dict-scala-1.0.21" = { name = "_at_cspell_slash_dict-scala"; packageName = "@cspell/dict-scala"; @@ -2856,24 +2361,6 @@ let sha512 = "5V/R7PRbbminTpPS3ywgdAalI9BHzcEjEj9ug4kWYvBIGwSnS7T6QCFCiu+e9LvEGUqQC+NHgLY4zs1NaBj2vA=="; }; }; - "@cspell/dict-scala-5.0.7" = { - name = "_at_cspell_slash_dict-scala"; - packageName = "@cspell/dict-scala"; - version = "5.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.7.tgz"; - sha512 = "yatpSDW/GwulzO3t7hB5peoWwzo+Y3qTc0pO24Jf6f88jsEeKmDeKkfgPbYuCgbE4jisGR4vs4+jfQZDIYmXPA=="; - }; - }; - "@cspell/dict-shell-1.1.0" = { - name = "_at_cspell_slash_dict-shell"; - packageName = "@cspell/dict-shell"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-shell/-/dict-shell-1.1.0.tgz"; - sha512 = "D/xHXX7T37BJxNRf5JJHsvziFDvh23IF/KvkZXNSh8VqcRdod3BAz9VGHZf6VDqcZXr1VRqIYR3mQ8DSvs3AVQ=="; - }; - }; "@cspell/dict-software-terms-1.0.48" = { name = "_at_cspell_slash_dict-software-terms"; packageName = "@cspell/dict-software-terms"; @@ -2883,51 +2370,6 @@ let sha512 = "pfF3Ys2gRffu5ElqkH7FQMDMi/iZMyOzpGMb3FSH0PJ2AnRQ5rRNWght1h2L36YxvXl0mWVaFrrfwiOyRIc8ZQ=="; }; }; - "@cspell/dict-software-terms-4.2.5" = { - name = "_at_cspell_slash_dict-software-terms"; - packageName = "@cspell/dict-software-terms"; - version = "4.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-4.2.5.tgz"; - sha512 = "CaRzkWti3AgcXoxuRcMijaNG7YUk/MH1rHjB8VX34v3UdCxXXeqvRyElRKnxhFeVLB/robb2UdShqh/CpskxRg=="; - }; - }; - "@cspell/dict-sql-2.2.0" = { - name = "_at_cspell_slash_dict-sql"; - packageName = "@cspell/dict-sql"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.2.0.tgz"; - sha512 = "MUop+d1AHSzXpBvQgQkCiok8Ejzb+nrzyG16E8TvKL2MQeDwnIvMe3bv90eukP6E1HWb+V/MA/4pnq0pcJWKqQ=="; - }; - }; - "@cspell/dict-svelte-1.0.6" = { - name = "_at_cspell_slash_dict-svelte"; - packageName = "@cspell/dict-svelte"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.6.tgz"; - sha512 = "8LAJHSBdwHCoKCSy72PXXzz7ulGROD0rP1CQ0StOqXOOlTUeSFaJJlxNYjlONgd2c62XBQiN2wgLhtPN+1Zv7Q=="; - }; - }; - "@cspell/dict-swift-2.0.5" = { - name = "_at_cspell_slash_dict-swift"; - packageName = "@cspell/dict-swift"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.5.tgz"; - sha512 = "3lGzDCwUmnrfckv3Q4eVSW3sK3cHqqHlPprFJZD4nAqt23ot7fic5ALR7J4joHpvDz36nHX34TgcbZNNZOC/JA=="; - }; - }; - "@cspell/dict-terraform-1.1.1" = { - name = "_at_cspell_slash_dict-terraform"; - packageName = "@cspell/dict-terraform"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-terraform/-/dict-terraform-1.1.1.tgz"; - sha512 = "07KFDwCU7EnKl4hOZLsLKlj6Zceq/IsQ3LRWUyIjvGFfZHdoGtFdCp3ZPVgnFaAcd/DKv+WVkrOzUBSYqHopQQ=="; - }; - }; "@cspell/dict-typescript-1.0.20" = { name = "_at_cspell_slash_dict-typescript"; packageName = "@cspell/dict-typescript"; @@ -2937,60 +2379,6 @@ let sha512 = "yIuGeeZtQA2gqpGefGjZqBl8iGJpIYWz0QzDqsscNi2qfSnLsbjM0RkRbTehM8y9gGGe7xfgUP5adxceJa5Krg=="; }; }; - "@cspell/dict-typescript-3.2.0" = { - name = "_at_cspell_slash_dict-typescript"; - packageName = "@cspell/dict-typescript"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.2.0.tgz"; - sha512 = "Pk3zNePLT8qg51l0M4g1ISowYAEGxTuNfZlgkU5SvHa9Cu7x/BWoyYq9Fvc3kAyoisCjRPyvWF4uRYrPitPDFw=="; - }; - }; - "@cspell/dict-vue-3.0.4" = { - name = "_at_cspell_slash_dict-vue"; - packageName = "@cspell/dict-vue"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.4.tgz"; - sha512 = "0dPtI0lwHcAgSiQFx8CzvqjdoXROcH+1LyqgROCpBgppommWpVhbQ0eubnKotFEXgpUCONVkeZJ6Ql8NbTEu+w=="; - }; - }; - "@cspell/dynamic-import-8.17.5" = { - name = "_at_cspell_slash_dynamic-import"; - packageName = "@cspell/dynamic-import"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.17.5.tgz"; - sha512 = "tY+cVkRou+0VKvH+K1NXv8/R7mOlW3BDGSs9fcgvhatj0m00Yf8blFC7tE4VVI9Qh2bkC/KDFqM24IqZbuwXUQ=="; - }; - }; - "@cspell/filetypes-8.17.5" = { - name = "_at_cspell_slash_filetypes"; - packageName = "@cspell/filetypes"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.17.5.tgz"; - sha512 = "Fj6py2Rl+FEnMiXhRQUM1A5QmyeCLxi6dY/vQ0qfH6tp6KSaBiaC8wuPUKhr8hKyTd3+8lkUbobDhUf6xtMEXg=="; - }; - }; - "@cspell/strong-weak-map-8.17.5" = { - name = "_at_cspell_slash_strong-weak-map"; - packageName = "@cspell/strong-weak-map"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.17.5.tgz"; - sha512 = "Z4eo+rZJr1086wZWycBiIG/n7gGvVoqn28I7ZicS8xedRYu/4yp2loHgLn4NpxG3e46+dNWs4La6vinod+UydQ=="; - }; - }; - "@cspell/url-8.17.5" = { - name = "_at_cspell_slash_url"; - packageName = "@cspell/url"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@cspell/url/-/url-8.17.5.tgz"; - sha512 = "GNQqST7zI85dAFVyao6oiTeg5rNhO9FH1ZAd397qQhvwfxrrniNfuoewu8gPXyP0R4XBiiaCwhBL7w9S/F5guw=="; - }; - }; "@cspotcode/source-map-support-0.8.1" = { name = "_at_cspotcode_slash_source-map-support"; packageName = "@cspotcode/source-map-support"; @@ -3407,15 +2795,6 @@ let sha512 = "cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg=="; }; }; - "@eslint/eslintrc-0.4.3" = { - name = "_at_eslint_slash_eslintrc"; - packageName = "@eslint/eslintrc"; - version = "0.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"; - sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; - }; - }; "@eslint/eslintrc-3.3.0" = { name = "_at_eslint_slash_eslintrc"; packageName = "@eslint/eslintrc"; @@ -3641,15 +3020,6 @@ let sha512 = "YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw=="; }; }; - "@humanwhocodes/config-array-0.5.0" = { - name = "_at_humanwhocodes_slash_config-array"; - packageName = "@humanwhocodes/config-array"; - version = "0.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"; - sha512 = "FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg=="; - }; - }; "@humanwhocodes/module-importer-1.0.1" = { name = "_at_humanwhocodes_slash_module-importer"; packageName = "@humanwhocodes/module-importer"; @@ -3659,15 +3029,6 @@ let sha512 = "bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="; }; }; - "@humanwhocodes/object-schema-1.2.1" = { - name = "_at_humanwhocodes_slash_object-schema"; - packageName = "@humanwhocodes/object-schema"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"; - sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; - }; - }; "@humanwhocodes/retry-0.3.1" = { name = "_at_humanwhocodes_slash_retry"; packageName = "@humanwhocodes/retry"; @@ -11282,15 +10643,6 @@ let sha512 = "bd1dDQhiC+bEbEfg56IdBv7faWa6OipMs/AFFFvtFnB3wAYjlwQpQRZ0pm6ZkgtfL0pILRXhKxOiQj6UzoMR7A=="; }; }; - "builtin-modules-1.1.1" = { - name = "builtin-modules"; - packageName = "builtin-modules"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz"; - sha512 = "wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ=="; - }; - }; "builtin-modules-3.1.0" = { name = "builtin-modules"; packageName = "builtin-modules"; @@ -11957,15 +11309,6 @@ let sha512 = "RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ=="; }; }; - "character-parser-2.2.0" = { - name = "character-parser"; - packageName = "character-parser"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz"; - sha512 = "+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw=="; - }; - }; "character-reference-invalid-1.1.4" = { name = "character-reference-invalid"; packageName = "character-reference-invalid"; @@ -12263,15 +11606,6 @@ let sha512 = "TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ=="; }; }; - "clear-module-4.1.2" = { - name = "clear-module"; - packageName = "clear-module"; - version = "4.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/clear-module/-/clear-module-4.1.2.tgz"; - sha512 = "LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw=="; - }; - }; "cli-1.0.1" = { name = "cli"; packageName = "cli"; @@ -12956,15 +12290,6 @@ let sha512 = "yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ=="; }; }; - "commander-13.1.0" = { - name = "commander"; - packageName = "commander"; - version = "13.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz"; - sha512 = "/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw=="; - }; - }; "commander-2.11.0" = { name = "commander"; packageName = "commander"; @@ -14091,15 +13416,6 @@ let sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA=="; }; }; - "cspell-config-lib-8.17.5" = { - name = "cspell-config-lib"; - packageName = "cspell-config-lib"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.17.5.tgz"; - sha512 = "XDc+UJO5RZ9S9e2Ajz332XjT7dv6Og2UqCiSnAlvHt7t/MacLHSPARZFIivheObNkWZ7E1iWI681RxKoH4o40w=="; - }; - }; "cspell-dict-vimlang-1.0.1" = { name = "cspell-dict-vimlang"; packageName = "cspell-dict-vimlang"; @@ -14109,24 +13425,6 @@ let sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA=="; }; }; - "cspell-dictionary-8.17.5" = { - name = "cspell-dictionary"; - packageName = "cspell-dictionary"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.17.5.tgz"; - sha512 = "O/Uuhv1RuDu+5WYQml0surudweaTvr+2YJSmPSdlihByUSiogCbpGqwrRow7wQv/C5p1W1FlFjotvUfoR0fxHA=="; - }; - }; - "cspell-gitignore-8.17.5" = { - name = "cspell-gitignore"; - packageName = "cspell-gitignore"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.17.5.tgz"; - sha512 = "I27fgOUZzH14jeIYo65LooB60fZ42f6OJL1lOR9Mk6IrIlDyUtzherGR+xx5KshK2katYkX42Qu4zsVYM6VFPA=="; - }; - }; "cspell-glob-0.1.25" = { name = "cspell-glob"; packageName = "cspell-glob"; @@ -14136,24 +13434,6 @@ let sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg=="; }; }; - "cspell-glob-8.17.5" = { - name = "cspell-glob"; - packageName = "cspell-glob"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.17.5.tgz"; - sha512 = "OXquou7UykInlGV5et5lNKYYrW0dwa28aEF995x1ocANND7o0bbHmFlbgyci/Lp4uFQai8sifmfFJbuIg2IC/A=="; - }; - }; - "cspell-grammar-8.17.5" = { - name = "cspell-grammar"; - packageName = "cspell-grammar"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.17.5.tgz"; - sha512 = "st2n+FVw25MvMbsGb3TeJNRr6Oih4g14rjOd/UJN0qn+ceH360SAShUFqSd4kHHu2ADazI/TESFU6FRtMTPNOg=="; - }; - }; "cspell-io-4.1.7" = { name = "cspell-io"; packageName = "cspell-io"; @@ -14163,15 +13443,6 @@ let sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ=="; }; }; - "cspell-io-8.17.5" = { - name = "cspell-io"; - packageName = "cspell-io"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.17.5.tgz"; - sha512 = "oevM/8l0s6nc1NCYPqNFumrW50QSHoa6wqUT8cWs09gtZdE2AWG0U6bIE8ZEVz6e6FxS+6IenGKTdUUwP0+3fg=="; - }; - }; "cspell-lib-4.3.12" = { name = "cspell-lib"; packageName = "cspell-lib"; @@ -14181,15 +13452,6 @@ let sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g=="; }; }; - "cspell-lib-8.17.5" = { - name = "cspell-lib"; - packageName = "cspell-lib"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.17.5.tgz"; - sha512 = "S3KuOrcST1d2BYmTXA+hnbRdho5n3w5GUvEaCx3QZQBwAPfLpAwJbe2yig1TxBpyEJ5LqP02i/mDg1pUCOP0hQ=="; - }; - }; "cspell-trie-lib-4.2.8" = { name = "cspell-trie-lib"; packageName = "cspell-trie-lib"; @@ -14199,15 +13461,6 @@ let sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw=="; }; }; - "cspell-trie-lib-8.17.5" = { - name = "cspell-trie-lib"; - packageName = "cspell-trie-lib"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.17.5.tgz"; - sha512 = "9hjI3nRQxtGEua6CgnLbK3sGHLx9dXR/BHwI/csRL4dN5GGRkE5X3CCoy1RJVL7iGFLIzi43+L10xeFRmWniKw=="; - }; - }; "cspell-util-bundle-4.1.11" = { name = "cspell-util-bundle"; packageName = "cspell-util-bundle"; @@ -15657,15 +14910,6 @@ let sha512 = "35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="; }; }; - "doctrine-3.0.0" = { - name = "doctrine"; - packageName = "doctrine"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"; - sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="; - }; - }; "doipjs-0.15.7" = { name = "doipjs"; packageName = "doipjs"; @@ -17070,15 +16314,6 @@ let sha512 = "x6LJGXWCGB/4YOBhL48yeppZTo+YQUNC37N5qqCpC1b1kkNzydlQHQAtPuUSFoZSxgIadrysQoW2Hq602P+uEA=="; }; }; - "eslint-7.32.0" = { - name = "eslint"; - packageName = "eslint"; - version = "7.32.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz"; - sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; - }; - }; "eslint-9.22.0" = { name = "eslint"; packageName = "eslint"; @@ -17097,15 +16332,6 @@ let sha512 = "Uick451FoL22/wXqyScX3inW8ZlD/GQO7eFXj3bqb6N/ZtuuF00/CwSNIKLbFCJPrX5V4EdQBSgJ/UVnmLRnug=="; }; }; - "eslint-plugin-vue-7.20.0" = { - name = "eslint-plugin-vue"; - packageName = "eslint-plugin-vue"; - version = "7.20.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.20.0.tgz"; - sha512 = "oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw=="; - }; - }; "eslint-rule-docs-1.1.235" = { name = "eslint-rule-docs"; packageName = "eslint-rule-docs"; @@ -17133,33 +16359,6 @@ let sha512 = "pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ=="; }; }; - "eslint-utils-2.1.0" = { - name = "eslint-utils"; - packageName = "eslint-utils"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz"; - sha512 = "w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg=="; - }; - }; - "eslint-visitor-keys-1.3.0" = { - name = "eslint-visitor-keys"; - packageName = "eslint-visitor-keys"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"; - sha512 = "6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="; - }; - }; - "eslint-visitor-keys-2.1.0" = { - name = "eslint-visitor-keys"; - packageName = "eslint-visitor-keys"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"; - sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; - }; - }; "eslint-visitor-keys-3.4.3" = { name = "eslint-visitor-keys"; packageName = "eslint-visitor-keys"; @@ -17214,24 +16413,6 @@ let sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A=="; }; }; - "espree-6.2.1" = { - name = "espree"; - packageName = "espree"; - version = "6.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz"; - sha512 = "ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw=="; - }; - }; - "espree-7.3.1" = { - name = "espree"; - packageName = "espree"; - version = "7.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"; - sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="; - }; - }; "esprima-2.7.3" = { name = "esprima"; packageName = "esprima"; @@ -17880,15 +17061,6 @@ let sha512 = "VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw=="; }; }; - "fast-equals-5.2.2" = { - name = "fast-equals"; - packageName = "fast-equals"; - version = "5.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-equals/-/fast-equals-5.2.2.tgz"; - sha512 = "V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw=="; - }; - }; "fast-fifo-1.3.2" = { name = "fast-fifo"; packageName = "fast-fifo"; @@ -18195,15 +17367,6 @@ let sha512 = "XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ=="; }; }; - "file-entry-cache-9.1.0" = { - name = "file-entry-cache"; - packageName = "file-entry-cache"; - version = "9.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-9.1.0.tgz"; - sha512 = "/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg=="; - }; - }; "file-or-stdin-1.0.2" = { name = "file-or-stdin"; packageName = "file-or-stdin"; @@ -18582,15 +17745,6 @@ let sha512 = "f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw=="; }; }; - "flat-cache-5.0.0" = { - name = "flat-cache"; - packageName = "flat-cache"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/flat-cache/-/flat-cache-5.0.0.tgz"; - sha512 = "JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ=="; - }; - }; "flatiron-0.4.3" = { name = "flatiron"; packageName = "flatiron"; @@ -19104,15 +18258,6 @@ let sha512 = "e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q=="; }; }; - "functional-red-black-tree-1.0.1" = { - name = "functional-red-black-tree"; - packageName = "functional-red-black-tree"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; - sha512 = "dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g=="; - }; - }; "functions-have-names-1.2.3" = { name = "functions-have-names"; packageName = "functions-have-names"; @@ -19266,15 +18411,6 @@ let sha512 = "ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g=="; }; }; - "gensequence-7.0.0" = { - name = "gensequence"; - packageName = "gensequence"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/gensequence/-/gensequence-7.0.0.tgz"; - sha512 = "47Frx13aZh01afHJTB3zTtKIlFI6vWY+MYCN9Qpew6i52rfKjnhCF/l1YlC8UmEMvvntZZ6z4PiCcmyuedR2aQ=="; - }; - }; "gensync-1.0.0-beta.2" = { name = "gensync"; packageName = "gensync"; @@ -19671,15 +18807,6 @@ let sha512 = "7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg=="; }; }; - "glob-11.0.1" = { - name = "glob"; - packageName = "glob"; - version = "11.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-11.0.1.tgz"; - sha512 = "zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw=="; - }; - }; "glob-6.0.4" = { name = "glob"; packageName = "glob"; @@ -19887,15 +19014,6 @@ let sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; }; }; - "globals-13.24.0" = { - name = "globals"; - packageName = "globals"; - version = "13.24.0"; - src = fetchurl { - url = "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz"; - sha512 = "AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ=="; - }; - }; "globals-14.0.0" = { name = "globals"; packageName = "globals"; @@ -21273,15 +20391,6 @@ let sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug=="; }; }; - "ignore-4.0.6" = { - name = "ignore"; - packageName = "ignore"; - version = "4.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz"; - sha512 = "cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="; - }; - }; "ignore-5.1.9" = { name = "ignore"; packageName = "ignore"; @@ -22416,15 +21525,6 @@ let sha512 = "JtZWPUwjdbQ1LIo9OSZ8MdkWEve198ors27vH+RzUUvZXXZkzXCxFnlUhzWYxy5IexQSRiXVw9j2q/tHMmkVYQ=="; }; }; - "is-expression-4.0.0" = { - name = "is-expression"; - packageName = "is-expression"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz"; - sha512 = "zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A=="; - }; - }; "is-extendable-0.1.1" = { name = "is-extendable"; packageName = "is-extendable"; @@ -23460,15 +22560,6 @@ let sha512 = "OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="; }; }; - "jackspeak-4.1.0" = { - name = "jackspeak"; - packageName = "jackspeak"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz"; - sha512 = "9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw=="; - }; - }; "jade-0.27.0" = { name = "jade"; packageName = "jade"; @@ -25872,15 +24963,6 @@ let sha512 = "JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="; }; }; - "lru-cache-11.0.2" = { - name = "lru-cache"; - packageName = "lru-cache"; - version = "11.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.2.tgz"; - sha512 = "123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA=="; - }; - }; "lru-cache-2.2.0" = { name = "lru-cache"; packageName = "lru-cache"; @@ -27727,15 +26809,6 @@ let sha512 = "JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg=="; }; }; - "minimatch-10.0.1" = { - name = "minimatch"; - packageName = "minimatch"; - version = "10.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz"; - sha512 = "ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ=="; - }; - }; "minimatch-3.0.8" = { name = "minimatch"; packageName = "minimatch"; @@ -30527,15 +29600,6 @@ let sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; }; }; - "parent-module-2.0.0" = { - name = "parent-module"; - packageName = "parent-module"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parent-module/-/parent-module-2.0.0.tgz"; - sha512 = "uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg=="; - }; - }; "parents-1.0.1" = { name = "parents"; packageName = "parents"; @@ -31058,15 +30122,6 @@ let sha512 = "Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA=="; }; }; - "path-scurry-2.0.0" = { - name = "path-scurry"; - packageName = "path-scurry"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz"; - sha512 = "ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg=="; - }; - }; "path-to-regexp-0.1.12" = { name = "path-to-regexp"; packageName = "path-to-regexp"; @@ -32228,24 +31283,6 @@ let sha512 = "zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q=="; }; }; - "pug-error-2.1.0" = { - name = "pug-error"; - packageName = "pug-error"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-error/-/pug-error-2.1.0.tgz"; - sha512 = "lv7sU9e5Jk8IeUheHata6/UThZ7RK2jnaaNztxfPYUY+VxZyk/ePVaNZ/vwmH8WqGvDz3LrNYt/+gA55NDg6Pg=="; - }; - }; - "pug-lexer-5.0.1" = { - name = "pug-lexer"; - packageName = "pug-lexer"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz"; - sha512 = "0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w=="; - }; - }; "pump-1.0.3" = { name = "pump"; packageName = "pump"; @@ -33290,15 +32327,6 @@ let sha512 = "A1PeDEYMrkLrfyOwv2jwihXbo9qxdGD3atBYQA9JJgreAx8/7rC6IUkWOw2NQlOxLp2wL0ifQbh1HuidDfYA6w=="; }; }; - "regexpp-3.2.0" = { - name = "regexpp"; - packageName = "regexpp"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz"; - sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; - }; - }; "registry-auth-token-3.3.2" = { name = "registry-auth-token"; packageName = "registry-auth-token"; @@ -38069,15 +37097,6 @@ let sha512 = "KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="; }; }; - "tinyglobby-0.2.12" = { - name = "tinyglobby"; - packageName = "tinyglobby"; - version = "0.2.12"; - src = fetchurl { - url = "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz"; - sha512 = "qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww=="; - }; - }; "tkwidgets-0.5.27" = { name = "tkwidgets"; packageName = "tkwidgets"; @@ -38510,15 +37529,6 @@ let sha512 = "oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="; }; }; - "tslint-6.1.3" = { - name = "tslint"; - packageName = "tslint"; - version = "6.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/tslint/-/tslint-6.1.3.tgz"; - sha512 = "IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg=="; - }; - }; "tspan-0.4.0" = { name = "tspan"; packageName = "tspan"; @@ -38528,15 +37538,6 @@ let sha512 = "0ELL9tpLpTqLliFyQySaxgCO43buCML+j3TI4E1LuSI8wkzITGEVhZCyMvv/A+3ek9KpgALhhgnZESRLTbN+iw=="; }; }; - "tsutils-2.29.0" = { - name = "tsutils"; - packageName = "tsutils"; - version = "2.29.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz"; - sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA=="; - }; - }; "tsx-4.19.3" = { name = "tsx"; packageName = "tsx"; @@ -40850,15 +39851,6 @@ let sha512 = "BAEvWxbBUXvlNoFQVFVHpybBbjW1r03WhohJzJDSfgrrK5xVYIDTan6xN14DlyImShgDRv2gl9qhM6irVMsV0Q=="; }; }; - "vls-0.7.6" = { - name = "vls"; - packageName = "vls"; - version = "0.7.6"; - src = fetchurl { - url = "https://registry.npmjs.org/vls/-/vls-0.7.6.tgz"; - sha512 = "UaE5peKpeT0dsTg4KAbxRVKLotD4i0DW3wb/srcJgNJmpBmTv2HAkE3hMR/naf1bMmUTpQyQPUaZOJE5ihBqlA=="; - }; - }; "vm-browserify-1.1.2" = { name = "vm-browserify"; packageName = "vm-browserify"; @@ -41165,15 +40157,6 @@ let sha512 = "/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ=="; }; }; - "vue-eslint-parser-7.11.0" = { - name = "vue-eslint-parser"; - packageName = "vue-eslint-parser"; - version = "7.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz"; - sha512 = "qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg=="; - }; - }; "w3c-hr-time-1.0.2" = { name = "w3c-hr-time"; packageName = "w3c-hr-time"; @@ -49206,238 +48189,6 @@ in bypassCache = true; reconstructLock = true; }; - coc-vetur = nodeEnv.buildNodePackage { - name = "coc-vetur"; - packageName = "coc-vetur"; - version = "1.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/coc-vetur/-/coc-vetur-1.2.5.tgz"; - sha512 = "pBh7Jrn+L4hj6E6JxAwGdjVB/9v2TuJEMYUhDFR41s/zBJG2cXxzgUVmGz8RWYd70HdEz2ula1FcRA4rjkjPXg=="; - }; - dependencies = [ - sources."@babel/code-frame-7.12.11" - sources."@babel/helper-validator-identifier-7.25.9" - ( - sources."@babel/highlight-7.25.9" - // { - dependencies = [ - sources."ansi-styles-3.2.1" - sources."chalk-2.4.2" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."escape-string-regexp-1.0.5" - sources."has-flag-3.0.0" - sources."supports-color-5.5.0" - ]; - } - ) - sources."@eslint/eslintrc-0.4.3" - sources."@humanwhocodes/config-array-0.5.0" - sources."@humanwhocodes/object-schema-1.2.1" - sources."acorn-7.4.1" - sources."acorn-jsx-5.3.2" - sources."ajv-6.12.6" - sources."ansi-colors-4.1.3" - sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" - sources."argparse-1.0.10" - sources."astral-regex-2.0.0" - sources."balanced-match-1.0.2" - sources."brace-expansion-1.1.11" - sources."builtin-modules-1.1.1" - sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.4" - sources."callsites-3.1.0" - sources."chalk-4.1.2" - sources."character-parser-2.2.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."commander-2.20.3" - sources."concat-map-0.0.1" - sources."cross-spawn-7.0.6" - sources."debug-4.4.0" - sources."deep-is-0.1.4" - sources."diff-4.0.2" - sources."doctrine-3.0.0" - sources."dunder-proto-1.0.1" - sources."emoji-regex-8.0.0" - sources."enquirer-2.4.1" - sources."es-define-property-1.0.1" - sources."es-errors-1.3.0" - sources."es-object-atoms-1.1.1" - sources."escape-string-regexp-4.0.0" - sources."eslint-7.32.0" - ( - sources."eslint-plugin-vue-7.20.0" - // { - dependencies = [ - sources."semver-6.3.1" - ]; - } - ) - ( - sources."eslint-scope-5.1.1" - // { - dependencies = [ - sources."estraverse-4.3.0" - ]; - } - ) - ( - sources."eslint-utils-2.1.0" - // { - dependencies = [ - sources."eslint-visitor-keys-1.3.0" - ]; - } - ) - sources."eslint-visitor-keys-2.1.0" - ( - sources."espree-7.3.1" - // { - dependencies = [ - sources."eslint-visitor-keys-1.3.0" - ]; - } - ) - sources."esprima-4.0.1" - sources."esquery-1.6.0" - sources."esrecurse-4.3.0" - sources."estraverse-5.3.0" - sources."esutils-2.0.3" - sources."fast-deep-equal-3.1.3" - sources."fast-json-stable-stringify-2.1.0" - sources."fast-levenshtein-2.0.6" - sources."fast-uri-3.0.6" - sources."file-entry-cache-6.0.1" - sources."flat-cache-3.2.0" - sources."flatted-3.3.3" - sources."fs.realpath-1.0.0" - sources."function-bind-1.1.2" - sources."functional-red-black-tree-1.0.1" - sources."get-intrinsic-1.3.0" - sources."get-proto-1.0.1" - sources."glob-7.2.3" - sources."glob-parent-5.1.2" - sources."globals-13.24.0" - sources."gopd-1.2.0" - sources."has-flag-4.0.0" - sources."has-symbols-1.1.0" - sources."has-tostringtag-1.0.2" - sources."hasown-2.0.2" - sources."ignore-4.0.6" - sources."import-fresh-3.3.1" - sources."imurmurhash-0.1.4" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."is-core-module-2.16.1" - sources."is-expression-4.0.0" - sources."is-extglob-2.1.1" - sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.3" - sources."is-regex-1.2.1" - sources."isexe-2.0.0" - sources."js-tokens-4.0.0" - sources."js-yaml-3.14.1" - sources."json-buffer-3.0.1" - sources."json-schema-traverse-0.4.1" - sources."json-stable-stringify-without-jsonify-1.0.1" - sources."keyv-4.5.4" - sources."levn-0.4.1" - sources."lodash-4.17.21" - sources."lodash.merge-4.6.2" - sources."lodash.truncate-4.4.2" - sources."math-intrinsics-1.1.0" - sources."minimatch-3.1.2" - sources."minimist-1.2.8" - sources."mkdirp-0.5.6" - sources."ms-2.1.3" - sources."natural-compare-1.4.0" - sources."object-assign-4.1.1" - sources."once-1.4.0" - sources."optionator-0.9.4" - sources."parent-module-1.0.1" - sources."path-is-absolute-1.0.1" - sources."path-key-3.1.1" - sources."path-parse-1.0.7" - sources."picocolors-1.1.1" - sources."prelude-ls-1.2.1" - sources."prettier-2.8.8" - sources."progress-2.0.3" - sources."pug-error-2.1.0" - sources."pug-lexer-5.0.1" - sources."punycode-2.3.1" - sources."regexpp-3.2.0" - sources."require-from-string-2.0.2" - sources."resolve-1.22.10" - sources."resolve-from-4.0.0" - sources."rimraf-3.0.2" - sources."semver-7.7.1" - sources."shebang-command-2.0.0" - sources."shebang-regex-3.0.0" - sources."slice-ansi-4.0.0" - sources."sprintf-js-1.0.3" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - sources."strip-json-comments-3.1.1" - sources."supports-color-7.2.0" - sources."supports-preserve-symlinks-flag-1.0.0" - ( - sources."table-6.9.0" - // { - dependencies = [ - sources."ajv-8.17.1" - sources."json-schema-traverse-1.0.0" - ]; - } - ) - sources."text-table-0.2.0" - sources."tslib-1.14.1" - ( - sources."tslint-6.1.3" - // { - dependencies = [ - sources."ansi-styles-3.2.1" - sources."chalk-2.4.2" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."escape-string-regexp-1.0.5" - sources."has-flag-3.0.0" - sources."semver-5.7.2" - sources."supports-color-5.5.0" - ]; - } - ) - sources."tsutils-2.29.0" - sources."type-check-0.4.0" - sources."type-fest-0.20.2" - sources."typescript-4.9.5" - sources."uri-js-4.4.1" - sources."v8-compile-cache-2.4.0" - sources."vls-0.7.6" - ( - sources."vue-eslint-parser-7.11.0" - // { - dependencies = [ - sources."eslint-visitor-keys-1.3.0" - sources."espree-6.2.1" - sources."semver-6.3.1" - ]; - } - ) - sources."which-2.0.2" - sources."word-wrap-1.2.5" - sources."wrappy-1.0.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Vue language server extension for coc.nvim using vetur"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; coc-vimlsp = nodeEnv.buildNodePackage { name = "coc-vimlsp"; packageName = "coc-vimlsp"; @@ -50073,165 +48824,6 @@ in bypassCache = true; reconstructLock = true; }; - cspell = nodeEnv.buildNodePackage { - name = "cspell"; - packageName = "cspell"; - version = "8.17.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cspell/-/cspell-8.17.5.tgz"; - sha512 = "l3Cfp87d7Yrodem675irdxV6+7+OsdR+jNwYHe33Dgnd6ePEfooYrvmfGdXF9rlQrNLUQp/HqYgHJzSq19UEsg=="; - }; - dependencies = [ - sources."@cspell/cspell-bundled-dicts-8.17.5" - sources."@cspell/cspell-json-reporter-8.17.5" - sources."@cspell/cspell-pipe-8.17.5" - sources."@cspell/cspell-resolver-8.17.5" - sources."@cspell/cspell-service-bus-8.17.5" - sources."@cspell/cspell-types-8.17.5" - sources."@cspell/dict-ada-4.1.0" - sources."@cspell/dict-al-1.1.0" - sources."@cspell/dict-aws-4.0.9" - sources."@cspell/dict-bash-4.2.0" - sources."@cspell/dict-companies-3.1.14" - sources."@cspell/dict-cpp-6.0.6" - sources."@cspell/dict-cryptocurrencies-5.0.4" - sources."@cspell/dict-csharp-4.0.6" - sources."@cspell/dict-css-4.0.17" - sources."@cspell/dict-dart-2.3.0" - sources."@cspell/dict-data-science-2.0.7" - sources."@cspell/dict-django-4.1.4" - sources."@cspell/dict-docker-1.1.12" - sources."@cspell/dict-dotnet-5.0.9" - sources."@cspell/dict-elixir-4.0.7" - sources."@cspell/dict-en-common-misspellings-2.0.10" - sources."@cspell/dict-en-gb-1.1.33" - sources."@cspell/dict-en_us-4.3.34" - sources."@cspell/dict-filetypes-3.0.11" - sources."@cspell/dict-flutter-1.1.0" - sources."@cspell/dict-fonts-4.0.4" - sources."@cspell/dict-fsharp-1.1.0" - sources."@cspell/dict-fullstack-3.2.6" - sources."@cspell/dict-gaming-terms-1.1.0" - sources."@cspell/dict-git-3.0.4" - sources."@cspell/dict-golang-6.0.19" - sources."@cspell/dict-google-1.0.8" - sources."@cspell/dict-haskell-4.0.5" - sources."@cspell/dict-html-4.0.11" - sources."@cspell/dict-html-symbol-entities-4.0.3" - sources."@cspell/dict-java-5.0.11" - sources."@cspell/dict-julia-1.1.0" - sources."@cspell/dict-k8s-1.0.10" - sources."@cspell/dict-kotlin-1.1.0" - sources."@cspell/dict-latex-4.0.3" - sources."@cspell/dict-lorem-ipsum-4.0.4" - sources."@cspell/dict-lua-4.0.7" - sources."@cspell/dict-makefile-1.0.4" - sources."@cspell/dict-markdown-2.0.9" - sources."@cspell/dict-monkeyc-1.0.10" - sources."@cspell/dict-node-5.0.6" - sources."@cspell/dict-npm-5.1.30" - sources."@cspell/dict-php-4.0.14" - sources."@cspell/dict-powershell-5.0.14" - sources."@cspell/dict-public-licenses-2.0.13" - sources."@cspell/dict-python-4.2.16" - sources."@cspell/dict-r-2.1.0" - sources."@cspell/dict-ruby-5.0.8" - sources."@cspell/dict-rust-4.0.11" - sources."@cspell/dict-scala-5.0.7" - sources."@cspell/dict-shell-1.1.0" - sources."@cspell/dict-software-terms-4.2.5" - sources."@cspell/dict-sql-2.2.0" - sources."@cspell/dict-svelte-1.0.6" - sources."@cspell/dict-swift-2.0.5" - sources."@cspell/dict-terraform-1.1.1" - sources."@cspell/dict-typescript-3.2.0" - sources."@cspell/dict-vue-3.0.4" - sources."@cspell/dynamic-import-8.17.5" - sources."@cspell/filetypes-8.17.5" - sources."@cspell/strong-weak-map-8.17.5" - sources."@cspell/url-8.17.5" - sources."array-timsort-1.0.3" - sources."braces-3.0.3" - sources."callsites-3.1.0" - sources."chalk-5.4.1" - sources."chalk-template-1.1.0" - sources."clear-module-4.1.2" - sources."commander-13.1.0" - sources."comment-json-4.2.5" - sources."core-util-is-1.0.3" - sources."cspell-config-lib-8.17.5" - sources."cspell-dictionary-8.17.5" - sources."cspell-gitignore-8.17.5" - sources."cspell-glob-8.17.5" - sources."cspell-grammar-8.17.5" - sources."cspell-io-8.17.5" - sources."cspell-lib-8.17.5" - sources."cspell-trie-lib-8.17.5" - sources."env-paths-3.0.0" - sources."esprima-4.0.1" - sources."fast-equals-5.2.2" - sources."fast-json-stable-stringify-2.1.0" - ( - sources."fdir-6.4.3" - // { - dependencies = [ - sources."picomatch-4.0.2" - ]; - } - ) - sources."file-entry-cache-9.1.0" - sources."fill-range-7.1.1" - sources."find-up-simple-1.0.1" - sources."flat-cache-5.0.0" - sources."flatted-3.3.3" - sources."gensequence-7.0.0" - sources."get-stdin-9.0.0" - sources."global-directory-4.0.1" - sources."has-own-prop-2.0.0" - ( - sources."import-fresh-3.3.1" - // { - dependencies = [ - sources."parent-module-1.0.1" - sources."resolve-from-4.0.0" - ]; - } - ) - sources."import-meta-resolve-4.1.0" - sources."ini-4.1.1" - sources."is-number-7.0.0" - sources."json-buffer-3.0.1" - sources."keyv-4.5.4" - sources."micromatch-4.0.8" - sources."parent-module-2.0.0" - sources."picomatch-2.3.1" - sources."repeat-string-1.6.1" - sources."resolve-from-5.0.0" - sources."semver-7.7.1" - ( - sources."tinyglobby-0.2.12" - // { - dependencies = [ - sources."picomatch-4.0.2" - ]; - } - ) - sources."to-regex-range-5.0.1" - sources."vscode-languageserver-textdocument-1.0.12" - sources."vscode-uri-3.1.0" - sources."xdg-basedir-5.1.0" - sources."yaml-2.7.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Spelling Checker for Code"; - homepage = "https://cspell.org/"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; csslint = nodeEnv.buildNodePackage { name = "csslint"; packageName = "csslint"; @@ -61714,82 +60306,6 @@ in bypassCache = true; reconstructLock = true; }; - rimraf = nodeEnv.buildNodePackage { - name = "rimraf"; - packageName = "rimraf"; - version = "6.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz"; - sha512 = "9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A=="; - }; - dependencies = [ - sources."@isaacs/cliui-8.0.2" - sources."ansi-regex-5.0.1" - sources."ansi-styles-6.2.1" - sources."balanced-match-1.0.2" - sources."brace-expansion-2.0.1" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."cross-spawn-7.0.6" - sources."eastasianwidth-0.2.0" - sources."emoji-regex-9.2.2" - sources."foreground-child-3.3.1" - sources."glob-11.0.1" - sources."is-fullwidth-code-point-3.0.0" - sources."isexe-2.0.0" - sources."jackspeak-4.1.0" - sources."lru-cache-11.0.2" - sources."minimatch-10.0.1" - sources."minipass-7.1.2" - sources."package-json-from-dist-1.0.1" - sources."path-key-3.1.1" - sources."path-scurry-2.0.0" - sources."shebang-command-2.0.0" - sources."shebang-regex-3.0.0" - sources."signal-exit-4.1.0" - sources."string-width-5.1.2" - ( - sources."string-width-cjs-4.2.3" - // { - dependencies = [ - sources."emoji-regex-8.0.0" - sources."strip-ansi-6.0.1" - ]; - } - ) - ( - sources."strip-ansi-7.1.0" - // { - dependencies = [ - sources."ansi-regex-6.1.0" - ]; - } - ) - sources."strip-ansi-cjs-6.0.1" - sources."which-2.0.2" - sources."wrap-ansi-8.1.0" - ( - sources."wrap-ansi-cjs-7.0.0" - // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."emoji-regex-8.0.0" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - ]; - } - ) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A deep deletion module for node (like `rm -rf`)"; - homepage = "https://github.com/isaacs/rimraf#readme"; - license = "ISC"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; sass = nodeEnv.buildNodePackage { name = "sass"; packageName = "sass"; diff --git a/pkgs/development/python-modules/aioamazondevices/default.nix b/pkgs/development/python-modules/aioamazondevices/default.nix index 702b3787cd01..55541bcefe34 100644 --- a/pkgs/development/python-modules/aioamazondevices/default.nix +++ b/pkgs/development/python-modules/aioamazondevices/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "aioamazondevices"; - version = "6.0.0"; + version = "6.2.7"; pyproject = true; src = fetchFromGitHub { owner = "chemelli74"; repo = "aioamazondevices"; tag = "v${version}"; - hash = "sha256-PHgYyQInXT7gwgBnKm1FfEUiHygMCcPcFJk0zU5tWOc="; + hash = "sha256-gsKqQkJBKu5Of/PFzEt04GEQ9PC7PBqJASYw5ucrrGU="; }; build-system = [ poetry-core ]; diff --git a/pkgs/development/python-modules/aioecowitt/default.nix b/pkgs/development/python-modules/aioecowitt/default.nix index 91b27e1e55e7..1e6f5b5a6bfc 100644 --- a/pkgs/development/python-modules/aioecowitt/default.nix +++ b/pkgs/development/python-modules/aioecowitt/default.nix @@ -4,25 +4,21 @@ buildPythonPackage, fetchFromGitHub, meteocalc, - pytest-asyncio_0, pytest-aiohttp, pytestCheckHook, - pythonOlder, setuptools, }: buildPythonPackage rec { pname = "aioecowitt"; - version = "2025.9.1"; + version = "2025.9.2"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "home-assistant-libs"; repo = "aioecowitt"; tag = version; - hash = "sha256-NLVxQ7xQJiI0G9MXuVK+dWSYbA9AS7NAEEOBSCCQI88="; + hash = "sha256-lQ2t8u3+sk8wnNfCZs2yhe9nsZwiGBHXPDz95egacsI="; }; build-system = [ setuptools ]; @@ -33,19 +29,17 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ - pytest-asyncio_0 - (pytest-aiohttp.override { pytest-asyncio = pytest-asyncio_0; }) + pytest-aiohttp pytestCheckHook ]; pythonImportsCheck = [ "aioecowitt" ]; - meta = with lib; { + meta = { description = "Wrapper for the EcoWitt protocol"; - mainProgram = "ecowitt-testserver"; homepage = "https://github.com/home-assistant-libs/aioecowitt"; changelog = "https://github.com/home-assistant-libs/aioecowitt/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioesphomeapi/default.nix b/pkgs/development/python-modules/aioesphomeapi/default.nix index def32636daa8..67024ff27ae0 100644 --- a/pkgs/development/python-modules/aioesphomeapi/default.nix +++ b/pkgs/development/python-modules/aioesphomeapi/default.nix @@ -2,7 +2,6 @@ lib, buildPythonPackage, fetchFromGitHub, - pythonOlder, # build-system cython, @@ -11,11 +10,11 @@ # dependencies aiohappyeyeballs, async-interrupt, - async-timeout, chacha20poly1305-reuseable, cryptography, noiseprotocol, protobuf, + tzlocal, zeroconf, # tests @@ -26,16 +25,14 @@ buildPythonPackage rec { pname = "aioesphomeapi"; - version = "39.0.1"; + version = "41.11.0"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "esphome"; repo = "aioesphomeapi"; tag = "v${version}"; - hash = "sha256-vBRKngr8Yn9TBAS0bXBetwXJbLPDabOL6nW0oH5Q/U0="; + hash = "sha256-xJUQyCa4ETroi5ncbPajdfJV4Ekzz23rXRBX08J8Q54="; }; build-system = [ @@ -52,9 +49,9 @@ buildPythonPackage rec { cryptography noiseprotocol protobuf + tzlocal zeroconf - ] - ++ lib.optionals (pythonOlder "3.11") [ async-timeout ]; + ]; nativeCheckInputs = [ mock diff --git a/pkgs/development/python-modules/aiohasupervisor/default.nix b/pkgs/development/python-modules/aiohasupervisor/default.nix index cfd285cb18c8..f999f3824094 100644 --- a/pkgs/development/python-modules/aiohasupervisor/default.nix +++ b/pkgs/development/python-modules/aiohasupervisor/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "aiohasupervisor"; - version = "0.3.2"; + version = "0.3.3b0"; pyproject = true; disabled = pythonOlder "3.12"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "home-assistant-libs"; repo = "python-supervisor-client"; tag = version; - hash = "sha256-LR3ZZD7TLpvCGVSx27tSxa7H2A06JBPBCH2yHGvqV84="; + hash = "sha256-Uv9chL9GxP5vJu1P6RB7B2b0pRQMeNtE6t1XFr2tBI4="; }; postPatch = '' diff --git a/pkgs/development/python-modules/aiohomematic/default.nix b/pkgs/development/python-modules/aiohomematic/default.nix index 1a2f89f796df..e93ea89b93c1 100644 --- a/pkgs/development/python-modules/aiohomematic/default.nix +++ b/pkgs/development/python-modules/aiohomematic/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "aiohomematic"; - version = "2025.9.4"; + version = "2025.10.1"; pyproject = true; src = fetchFromGitHub { owner = "SukramJ"; repo = "aiohomematic"; tag = version; - hash = "sha256-+OoWomZCrRPHtpmYnzjhvcpidP5GWQwWoZpTZ4Bdgwg="; + hash = "sha256-6bJh+9giJaxmUB/UHRt/RmtoMYkCJ4ZF01WA2K6NF9Y="; }; postPatch = '' diff --git a/pkgs/development/python-modules/aiohue/default.nix b/pkgs/development/python-modules/aiohue/default.nix index 552af80ad3e0..0dcbbfc2061f 100644 --- a/pkgs/development/python-modules/aiohue/default.nix +++ b/pkgs/development/python-modules/aiohue/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "aiohue"; - version = "4.7.5"; + version = "4.8.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "home-assistant-libs"; repo = "aiohue"; tag = version; - hash = "sha256-RHWgjugWYJVbzAFhb1bOrm33jZ3MQjkFqUMH+27a6Zw="; + hash = "sha256-IL9kKc2IHJJmlAYxC5hZPsgOhtfr14yD7VbEsWX2Klw="; }; postPatch = '' diff --git a/pkgs/development/python-modules/aiounifi/default.nix b/pkgs/development/python-modules/aiounifi/default.nix index 7ea8c9ae70d6..e616ce98ea3b 100644 --- a/pkgs/development/python-modules/aiounifi/default.nix +++ b/pkgs/development/python-modules/aiounifi/default.nix @@ -17,16 +17,16 @@ buildPythonPackage rec { pname = "aiounifi"; - version = "86"; + version = "87"; pyproject = true; - disabled = pythonOlder "3.11"; + disabled = pythonOlder "3.13"; src = fetchFromGitHub { owner = "Kane610"; repo = "aiounifi"; tag = "v${version}"; - hash = "sha256-9SnNWJNfG0Z+XkZtth6yDRnPf0OiAHmiyTI0WQN+2SY="; + hash = "sha256-+aObnX82erFXAdQ5hdj/ebMj9Xm5ZCooprt+UensDpM="; }; postPatch = '' @@ -52,8 +52,6 @@ buildPythonPackage rec { trustme ]; - pytestFlags = [ "--asyncio-mode=auto" ]; - pythonImportsCheck = [ "aiounifi" ]; meta = with lib; { diff --git a/pkgs/development/python-modules/airos/default.nix b/pkgs/development/python-modules/airos/default.nix index ca06f3d6b85a..23d9f10af086 100644 --- a/pkgs/development/python-modules/airos/default.nix +++ b/pkgs/development/python-modules/airos/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "airos"; - version = "0.4.4"; + version = "0.5.3"; pyproject = true; disabled = pythonOlder "3.13"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "CoMPaTech"; repo = "python-airos"; tag = "v${version}"; - hash = "sha256-ngKe1hAVC1CRDSX0iTl/3wvpb61c0OFbU468CtjEbSU="; + hash = "sha256-P9IQ4MBjOZJksKipaq9+6Zgui9uO4zy2Rx74OCLPYCU="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/autarco/default.nix b/pkgs/development/python-modules/autarco/default.nix index 509a4667a705..bd05131c0b99 100644 --- a/pkgs/development/python-modules/autarco/default.nix +++ b/pkgs/development/python-modules/autarco/default.nix @@ -10,27 +10,22 @@ pytest-asyncio, pytest-cov-stub, pytestCheckHook, - pythonOlder, syrupy, yarl, }: buildPythonPackage rec { pname = "autarco"; - version = "3.1.0"; + version = "3.2.0"; pyproject = true; - disabled = pythonOlder "3.11"; - src = fetchFromGitHub { owner = "klaasnicolaas"; repo = "python-autarco"; tag = "v${version}"; - hash = "sha256-zSqIEtQucrrAFEY7pBJ14Cevq8xbcGOheEmEE7Jd4qk="; + hash = "sha256-+j7limAYKFj9DZjetXnaFKIolitRppU1QLFRB94DlgE="; }; - pythonRelaxDeps = [ "orjson" ]; - postPatch = '' # Upstream doesn't set a version for the pyproject.toml substituteInPlace pyproject.toml \ @@ -61,7 +56,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module for the Autarco Inverter"; homepage = "https://github.com/klaasnicolaas/python-autarco"; - changelog = "https://github.com/klaasnicolaas/python-autarco/releases/tag/v${version}"; + changelog = "https://github.com/klaasnicolaas/python-autarco/releases/tag/${src.tag}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; diff --git a/pkgs/development/python-modules/bellows/default.nix b/pkgs/development/python-modules/bellows/default.nix index 68fcf59963cb..8c91381b52ac 100644 --- a/pkgs/development/python-modules/bellows/default.nix +++ b/pkgs/development/python-modules/bellows/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "bellows"; - version = "0.45.4"; + version = "0.46.1"; pyproject = true; src = fetchFromGitHub { owner = "zigpy"; repo = "bellows"; tag = version; - hash = "sha256-bDVNzOlzFqJvwc7d/CMuC/RSEMsQodN61UpHuKgyH0Y="; + hash = "sha256-YQt9imL9poGLrkVj9LmR+XPUufRMOgVhAr+Bw+/VdI0="; }; postPatch = '' diff --git a/pkgs/development/python-modules/deebot-client/default.nix b/pkgs/development/python-modules/deebot-client/default.nix index b968b4fff2cf..ba6032006d7a 100644 --- a/pkgs/development/python-modules/deebot-client/default.nix +++ b/pkgs/development/python-modules/deebot-client/default.nix @@ -7,6 +7,7 @@ defusedxml, docker, fetchFromGitHub, + orjson, pkg-config, pycountry, pytest-asyncio, @@ -20,7 +21,7 @@ buildPythonPackage rec { pname = "deebot-client"; - version = "13.7.0"; + version = "15.0.0"; pyproject = true; disabled = pythonOlder "3.13"; @@ -29,17 +30,18 @@ buildPythonPackage rec { owner = "DeebotUniverse"; repo = "client.py"; tag = version; - hash = "sha256-38o4hSeCxeKbfjG30XN3pex4hI4mAKRGvaybAlo8hV8="; + hash = "sha256-rTVVcbA0lsnxOlzyLq9Br9maw8CRNpww9T/FnTGCKmw="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit pname version src; - hash = "sha256-KeOoOupIParD8id7xlkBigjr5Lo9yeFkClh4pPQE3cM="; + hash = "sha256-IdaBhExbH0yotjMjkqgdbyVMrFMfAItM6vadYlldCIE="; }; pythonRelaxDeps = [ "aiohttp" "defusedxml" + "orjson" ]; nativeBuildInputs = [ @@ -55,6 +57,7 @@ buildPythonPackage rec { aiomqtt cachetools defusedxml + orjson ]; nativeCheckInputs = [ diff --git a/pkgs/development/python-modules/django-formset-js-improved/default.nix b/pkgs/development/python-modules/django-formset-js-improved/default.nix index da8c2704b171..067a6faab9c5 100644 --- a/pkgs/development/python-modules/django-formset-js-improved/default.nix +++ b/pkgs/development/python-modules/django-formset-js-improved/default.nix @@ -2,6 +2,8 @@ lib, buildPythonPackage, fetchFromGitHub, + fetchpatch, + setuptools, django, django-jquery-js, }: @@ -9,7 +11,7 @@ buildPythonPackage rec { pname = "django-formset-js-improved"; version = "0.5.0.3"; - format = "setuptools"; + pyproject = true; src = fetchFromGitHub { owner = "pretix"; @@ -18,9 +20,18 @@ buildPythonPackage rec { hash = "sha256-bOM24ldXk9WeV0jl6LIJB3BJ5hVWLA1PJTBBnJBoprU="; }; + patches = [ + (fetchpatch { + url = "https://github.com/pretix/django-formset-js/commit/7d8a33190d58ff9d75270264342eba82672d054e.patch"; + hash = "sha256-eBRP0eqMnH7UM9cToR+diejO6dMDDVt2bbUHLDcaWjk="; + }) + ]; + + build-system = [ setuptools ]; + buildInputs = [ django ]; - propagatedBuildInputs = [ django-jquery-js ]; + dependencies = [ django-jquery-js ]; pythonImportsCheck = [ "djangoformsetjs" ]; diff --git a/pkgs/development/python-modules/flaxlib/default.nix b/pkgs/development/python-modules/flaxlib/default.nix index 2848c216f956..b9bf868d13b1 100644 --- a/pkgs/development/python-modules/flaxlib/default.nix +++ b/pkgs/development/python-modules/flaxlib/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { postPatch = '' expected_version="$version" - actual_version=$(${lib.getExe tomlq} --file pyproject.toml "project.version") + actual_version=$(${lib.getExe tomlq} --raw --file pyproject.toml "project.version") if [ "$actual_version" != "$expected_version" ]; then echo -e "\n\tERROR:" diff --git a/pkgs/development/python-modules/iplotx/default.nix b/pkgs/development/python-modules/iplotx/default.nix index 020b3038364a..37e0f98ec8c0 100644 --- a/pkgs/development/python-modules/iplotx/default.nix +++ b/pkgs/development/python-modules/iplotx/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "iplotx"; - version = "0.6.5"; + version = "0.9.0"; pyproject = true; src = fetchFromGitHub { owner = "fabilab"; repo = "iplotx"; tag = version; - hash = "sha256-k/psY/xwNuG5/1pLmJOpC8U3Il4v2cicwTy+pR9ZNC8="; + hash = "sha256-VYqNz6sbLgniNB9DTCbhgno/91Pd7zoGFg2vx68211Q="; }; build-system = [ hatchling ]; diff --git a/pkgs/development/python-modules/oelint-parser/default.nix b/pkgs/development/python-modules/oelint-parser/default.nix index 6b70b17ef849..baec6952653f 100644 --- a/pkgs/development/python-modules/oelint-parser/default.nix +++ b/pkgs/development/python-modules/oelint-parser/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "oelint-parser"; - version = "8.4.3"; + version = "8.5.1"; pyproject = true; src = fetchFromGitHub { owner = "priv-kweihmann"; repo = "oelint-parser"; tag = version; - hash = "sha256-c8lmxjf4DebhQBQxWzapf+xDmJ8kRe0b9CiKMGg7NYk="; + hash = "sha256-rgMUn0VtebKtO0EOVv3jtvTZKGESUdLwRSfvtetT9UE="; }; pythonRelaxDeps = [ "regex" ]; diff --git a/pkgs/development/python-modules/py-aosmith/default.nix b/pkgs/development/python-modules/py-aosmith/default.nix index fa36ca8d681b..e4277c5281dd 100644 --- a/pkgs/development/python-modules/py-aosmith/default.nix +++ b/pkgs/development/python-modules/py-aosmith/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "py-aosmith"; - version = "1.0.12"; + version = "1.0.14"; pyproject = true; disabled = pythonOlder "3.10"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "bdr99"; repo = "py-aosmith"; tag = version; - hash = "sha256-FhrAL1Iybi4LW4o8IvCAfEcrwbzJ+dnh+9W9HEd7c+M="; + hash = "sha256-73kiSrjPDuvSMK8pZMCPns6vm2NhE+9F7GpWEPKR7Ec="; }; build-system = [ poetry-core ]; diff --git a/pkgs/development/python-modules/pymiele/default.nix b/pkgs/development/python-modules/pymiele/default.nix index f4c3754998e3..bd9db22d7a2d 100644 --- a/pkgs/development/python-modules/pymiele/default.nix +++ b/pkgs/development/python-modules/pymiele/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "pymiele"; - version = "0.5.4"; + version = "0.5.5"; pyproject = true; disabled = pythonOlder "3.13"; src = fetchPypi { inherit pname version; - hash = "sha256-jEL9sULZrXLs7sgSIpSzSpYivU9J+uPFrjLXi6Pcerk="; + hash = "sha256-C1E5z/h4XCDhUP07EL8s6Xv++M03vx8KZOMjWySyUMw="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/pynecil/default.nix b/pkgs/development/python-modules/pynecil/default.nix index 6faad0bd4706..a8337331cb16 100644 --- a/pkgs/development/python-modules/pynecil/default.nix +++ b/pkgs/development/python-modules/pynecil/default.nix @@ -1,6 +1,7 @@ { aiohttp, bleak, + bleak-retry-connector, buildPythonPackage, fetchFromGitHub, hatch-regex-commit, @@ -13,14 +14,14 @@ buildPythonPackage rec { pname = "pynecil"; - version = "4.1.1"; + version = "4.2.0"; pyproject = true; src = fetchFromGitHub { owner = "tr4nt0r"; repo = "pynecil"; tag = "v${version}"; - hash = "sha256-4P9xsqTitUinGC/dH/4e/HtF7OvupjqTTNKTwo9Vuhc="; + hash = "sha256-ZEg5fmSE594YEgcJROOeVqc1reyGlyQiYNoCcfUanrY="; }; pythonRelaxDeps = [ "aiohttp" ]; @@ -33,6 +34,7 @@ buildPythonPackage rec { dependencies = [ aiohttp bleak + bleak-retry-connector ]; pythonImportsCheck = [ "pynecil" ]; @@ -43,6 +45,11 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTests = [ + # requires access to system D-Bus + "test_get_settings_communication_error" + ]; + meta = { changelog = "https://github.com/tr4nt0r/pynecil/releases/tag/${src.tag}"; description = "Python library to communicate with Pinecil V2 soldering irons via Bluetooth"; diff --git a/pkgs/development/python-modules/pyqwikswitch/default.nix b/pkgs/development/python-modules/pyqwikswitch/default.nix index b68e11db72d6..f519e7c21275 100644 --- a/pkgs/development/python-modules/pyqwikswitch/default.nix +++ b/pkgs/development/python-modules/pyqwikswitch/default.nix @@ -1,22 +1,35 @@ { lib, buildPythonPackage, + fetchpatch, fetchPypi, attrs, requests, + setuptools, }: buildPythonPackage rec { pname = "pyqwikswitch"; version = "0.94"; - format = "setuptools"; + pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-IpyWz+3EMr0I+xULBJJhBgdnQHNPJIM1SqKFLpszhQc="; }; - propagatedBuildInputs = [ + patches = [ + # https://github.com/kellerza/pyqwikswitch/pull/7 + (fetchpatch { + name = "replace-async-timeout-with-asyncio.timeout.patch"; + url = "https://github.com/kellerza/pyqwikswitch/commit/7b3f2211962b30bb6beea9a4fe17cd04cdf8e27f.patch"; + hash = "sha256-sdO5jzIgKdneNY5dTngIzUFtyRg7HBGaZA1BBeAJxu4="; + }) + ]; + + build-system = [ setuptools ]; + + dependencies = [ attrs requests ]; diff --git a/pkgs/development/python-modules/pytensor/default.nix b/pkgs/development/python-modules/pytensor/default.nix index 3eb16dd31ec0..3cc0c7d45daf 100644 --- a/pkgs/development/python-modules/pytensor/default.nix +++ b/pkgs/development/python-modules/pytensor/default.nix @@ -33,7 +33,7 @@ buildPythonPackage rec { pname = "pytensor"; - version = "2.32.0"; + version = "2.33.0"; pyproject = true; src = fetchFromGitHub { @@ -43,7 +43,7 @@ buildPythonPackage rec { postFetch = '' sed -i 's/git_refnames = "[^"]*"/git_refnames = " (tag: ${src.tag})"/' $out/pytensor/_version.py ''; - hash = "sha256-B72BZmSYl/trpgaTUXwjWo95gR90pNPcKgpnnOqP7Tg="; + hash = "sha256-ngdjFqUJnJU+krNJwAwOpz1hJzDYvyKjuR/Ti/V+B3w="; }; build-system = [ diff --git a/pkgs/development/python-modules/pyvesync/default.nix b/pkgs/development/python-modules/pyvesync/default.nix index fbc5ae395b98..c20d832a3e2c 100644 --- a/pkgs/development/python-modules/pyvesync/default.nix +++ b/pkgs/development/python-modules/pyvesync/default.nix @@ -1,35 +1,39 @@ { lib, + aiohttp, buildPythonPackage, fetchFromGitHub, - requests, + mashumaro, pytestCheckHook, - pythonOlder, pyyaml, + requests, setuptools, }: buildPythonPackage rec { pname = "pyvesync"; - version = "2.1.18"; + version = "3.0.0"; pyproject = true; - disabled = pythonOlder "3.6"; - src = fetchFromGitHub { owner = "webdjoe"; repo = "pyvesync"; tag = version; - hash = "sha256-p46QVjJ8MzvsAu9JAQo4XN+z96arWLoJakdT81ITasU="; + hash = "sha256-P5zIdc+lUmiBfibRiWIcwyoKqjw8F7XBj85Nwvawreo="; }; build-system = [ setuptools ]; - dependencies = [ requests ]; + dependencies = [ + aiohttp + mashumaro + ] + ++ mashumaro.optional-dependencies.orjson; nativeCheckInputs = [ pytestCheckHook pyyaml + requests ]; pythonImportsCheck = [ "pyvesync" ]; @@ -38,7 +42,7 @@ buildPythonPackage rec { description = "Python library to manage Etekcity Devices and Levoit Air Purifier"; homepage = "https://github.com/webdjoe/pyvesync"; changelog = "https://github.com/webdjoe/pyvesync/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; + license = licenses.mit; maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/systembridgeconnector/default.nix b/pkgs/development/python-modules/systembridgeconnector/default.nix index 9588af7f7a72..270b1d5681b5 100644 --- a/pkgs/development/python-modules/systembridgeconnector/default.nix +++ b/pkgs/development/python-modules/systembridgeconnector/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "systembridgeconnector"; - version = "4.1.11"; + version = "5.1.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "timmo001"; repo = "system-bridge-connector"; tag = version; - hash = "sha256-C7J2G5Go5y1iXjEPS6uIB38C8SAkEWfn9K1cnUhi+8k="; + hash = "sha256-KfFlYBITHxzk87b2W0KO9djyX0yBc7ioDKEUgHHe3eM="; }; build-system = [ diff --git a/pkgs/development/python-modules/systembridgemodels/default.nix b/pkgs/development/python-modules/systembridgemodels/default.nix index 4ee187884243..151fcd1f3cf0 100644 --- a/pkgs/development/python-modules/systembridgemodels/default.nix +++ b/pkgs/development/python-modules/systembridgemodels/default.nix @@ -22,6 +22,11 @@ buildPythonPackage rec { hash = "sha256-Yh16la+3zk+igdMyHov4rf2M1yAT3JYYe/0IYu/SmVY="; }; + postPatch = '' + substituteInPlace setup.py \ + --replace-fail ".dev0" "" + ''; + build-system = [ setuptools ]; pythonImportsCheck = [ "systembridgemodels" ]; diff --git a/pkgs/development/python-modules/thinqconnect/default.nix b/pkgs/development/python-modules/thinqconnect/default.nix index 5de2a85ccc2d..4f84eee616b4 100644 --- a/pkgs/development/python-modules/thinqconnect/default.nix +++ b/pkgs/development/python-modules/thinqconnect/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "thinqconnect"; - version = "1.0.7"; + version = "1.0.8"; pyproject = true; disabled = pythonOlder "3.10"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "thinq-connect"; repo = "pythinqconnect"; tag = version; - hash = "sha256-wnlUwThmDRNosdWVvzqB3KP0LPL37+MnXXD84AeIUL8="; + hash = "sha256-TKKqZKluTF7Ysd/1ovWntynQ93WTRtMJY1olRztT5a0="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/universal-silabs-flasher/default.nix b/pkgs/development/python-modules/universal-silabs-flasher/default.nix index 000120a088fc..2d65e65880b3 100644 --- a/pkgs/development/python-modules/universal-silabs-flasher/default.nix +++ b/pkgs/development/python-modules/universal-silabs-flasher/default.nix @@ -28,14 +28,14 @@ buildPythonPackage rec { pname = "universal-silabs-flasher"; - version = "0.0.32"; + version = "0.0.34"; pyproject = true; src = fetchFromGitHub { owner = "NabuCasa"; repo = "universal-silabs-flasher"; tag = "v${version}"; - hash = "sha256-AnZhs9uR0lHY8CxYlbfblnftahnbC2LgwtyDVQCYizI="; + hash = "sha256-08ay5W5DHY1GwzZDwjPGPnVjXfHgiwWUIHzuAZZpS9M="; }; postPatch = '' diff --git a/pkgs/development/python-modules/urllib3-future/default.nix b/pkgs/development/python-modules/urllib3-future/default.nix index a5f7869421ed..84544689460b 100644 --- a/pkgs/development/python-modules/urllib3-future/default.nix +++ b/pkgs/development/python-modules/urllib3-future/default.nix @@ -24,14 +24,14 @@ buildPythonPackage rec { pname = "urllib3-future"; - version = "2.14.900"; + version = "2.14.901"; pyproject = true; src = fetchFromGitHub { owner = "jawah"; repo = "urllib3.future"; tag = version; - hash = "sha256-TMxYnvGkLZEaE4ECgzIN6XTI8OMI5N9mNcsvXeYCVbM="; + hash = "sha256-WbOtW36UrJCliEI4TW+8+iOF8ZUJmuP0JqvsdrJkLlc="; }; postPatch = '' diff --git a/pkgs/development/python-modules/yalexs/default.nix b/pkgs/development/python-modules/yalexs/default.nix index 775d3705b619..6b3fc00760bf 100644 --- a/pkgs/development/python-modules/yalexs/default.nix +++ b/pkgs/development/python-modules/yalexs/default.nix @@ -17,7 +17,6 @@ pytestCheckHook, python-dateutil, python-socketio, - pythonOlder, requests-mock, requests, typing-extensions, @@ -25,16 +24,14 @@ buildPythonPackage rec { pname = "yalexs"; - version = "9.0.1"; + version = "9.2.0"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "bdraco"; repo = "yalexs"; tag = "v${version}"; - hash = "sha256-ISrmOumxOmCpelHFdKGFsRVtvPP+Fys8Db0SPsxgHWs="; + hash = "sha256-t7C2x3aH3ltDthBlt+ghSj9SEfZ4jm4Fgs0KAIm7cBA="; }; build-system = [ poetry-core ]; diff --git a/pkgs/development/python-modules/zha-quirks/default.nix b/pkgs/development/python-modules/zha-quirks/default.nix index 6b191b2457df..51bc73a53586 100644 --- a/pkgs/development/python-modules/zha-quirks/default.nix +++ b/pkgs/development/python-modules/zha-quirks/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "zha-quirks"; - version = "0.0.145"; + version = "0.0.146"; pyproject = true; disabled = pythonOlder "3.12"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "zigpy"; repo = "zha-device-handlers"; tag = version; - hash = "sha256-CJiva7ZFm9jjWoQ1qjRUIbk5UHb2o9qdbVHDK+wIZKw="; + hash = "sha256-eXT0intSWAYQ/DlIEIZDbv805aQCLXYXpvhWjnd3EVA="; }; postPatch = '' @@ -45,10 +45,6 @@ buildPythonPackage rec { ]; disabledTests = [ - # RuntimeError: no running event loop - "test_mfg_cluster_events" - "test_co2_sensor" - "test_smart_air_sensor" # AssertionError: expected call not found "test_moes" "test_tuya_mcu_set_time" diff --git a/pkgs/development/python-modules/zha/default.nix b/pkgs/development/python-modules/zha/default.nix index 511204eb95cb..73c8a0382729 100644 --- a/pkgs/development/python-modules/zha/default.nix +++ b/pkgs/development/python-modules/zha/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { pname = "zha"; - version = "0.0.70"; + version = "0.0.73"; pyproject = true; disabled = pythonOlder "3.12"; @@ -36,7 +36,7 @@ buildPythonPackage rec { owner = "zigpy"; repo = "zha"; tag = version; - hash = "sha256-NrCA0KPD363Pyg+KBcZ6dVonP+GrE3TytSuV6wNnBYA="; + hash = "sha256-ryriM4bVML81xJQYlL46rhlsc/WQh0T5LC+WB28T6AU="; }; postPatch = '' diff --git a/pkgs/development/python-modules/zigpy-deconz/default.nix b/pkgs/development/python-modules/zigpy-deconz/default.nix index a555cae19c68..e340705e0280 100644 --- a/pkgs/development/python-modules/zigpy-deconz/default.nix +++ b/pkgs/development/python-modules/zigpy-deconz/default.nix @@ -6,23 +6,20 @@ pyserial-asyncio, pytest-asyncio, pytestCheckHook, - pythonOlder, setuptools, zigpy, }: buildPythonPackage rec { pname = "zigpy-deconz"; - version = "0.25.1"; + version = "0.25.2"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "zigpy"; repo = "zigpy-deconz"; tag = version; - hash = "sha256-Vw6unTB4PkjlrsXmsry1OC/NMAcd/sCbJ/A/eHgu3JU="; + hash = "sha256-9wsdL2mtT6Q6+4Z6f+Aoae7d0x7EDqkZ5n2O3Ml4PbA="; }; postPatch = '' diff --git a/pkgs/development/python-modules/zigpy-znp/default.nix b/pkgs/development/python-modules/zigpy-znp/default.nix index 618ada6fbbad..7efb2dbcdce9 100644 --- a/pkgs/development/python-modules/zigpy-znp/default.nix +++ b/pkgs/development/python-modules/zigpy-znp/default.nix @@ -59,6 +59,12 @@ buildPythonPackage rec { pytestFlags = [ "--reruns=3" ]; + disabledTests = [ + # broken by https://github.com/zigpy/zigpy/pull/1635 + "test_concurrency_auto_config" + "test_request_concurrency" + ]; + pythonImportsCheck = [ "zigpy_znp" ]; meta = with lib; { diff --git a/pkgs/development/python-modules/zigpy/default.nix b/pkgs/development/python-modules/zigpy/default.nix index f0eeb2c1d38d..6cbe00e62e68 100644 --- a/pkgs/development/python-modules/zigpy/default.nix +++ b/pkgs/development/python-modules/zigpy/default.nix @@ -25,14 +25,14 @@ buildPythonPackage rec { pname = "zigpy"; - version = "0.82.3"; + version = "0.83.0"; pyproject = true; src = fetchFromGitHub { owner = "zigpy"; repo = "zigpy"; tag = version; - hash = "sha256-q93qJFQep+7M+R0t7n/qyOG81o5UKHs6DPwJK2BbZB4="; + hash = "sha256-rgri4aga8qTlcURypCHY1YjClz5lpQpwxd3cAG2VoOo="; }; postPatch = '' diff --git a/pkgs/development/rocm-modules/6/hiprt/default.nix b/pkgs/development/rocm-modules/6/hiprt/default.nix index 22622612b0fb..d856477a01cc 100644 --- a/pkgs/development/rocm-modules/6/hiprt/default.nix +++ b/pkgs/development/rocm-modules/6/hiprt/default.nix @@ -4,7 +4,6 @@ fetchFromGitHub, cmake, clr, - gcc, python3, }: @@ -20,13 +19,12 @@ stdenv.mkDerivation (finalAttrs: { }; postPatch = '' - g++ contrib/easy-encryption/cl.cpp -o contrib/easy-encryption/bin/linux/ee64 #replacing prebuilt binary + rm -rf contrib/easy-encrypt # contains prebuilt easy-encrypt binaries, we disable encryption substituteInPlace contrib/Orochi/contrib/hipew/src/hipew.cpp --replace-fail '"/opt/rocm/hip/lib/' '"${clr}/lib' substituteInPlace hiprt/hiprt_libpath.h --replace-fail '"/opt/rocm/hip/lib/' '"${clr}/lib/' ''; nativeBuildInputs = [ - gcc # required for replacing easy-encryption binary cmake python3 ]; @@ -36,13 +34,15 @@ stdenv.mkDerivation (finalAttrs: { ]; cmakeFlags = [ - "-D CMAKE_BUILD_TYPE=Release" - "-D BAKE_KERNEL=OFF" - "-D BAKE_COMPILED_KERNEL=OFF" - "-D BITCODE=ON" - "-D PRECOMPILE=ON" - "-D NO_UNITTEST=ON" - "-D FORCE_DISABLE_CUDA=ON" + (lib.cmakeBool "BAKE_KERNEL" false) + (lib.cmakeBool "BAKE_COMPILED_KERNEL" false) + (lib.cmakeBool "BITCODE" true) + (lib.cmakeBool "PRECOMPILE" true) + # needs accelerator + (lib.cmakeBool "NO_UNITTEST" true) + # we have no need to support baking encrypted kernels into object files + (lib.cmakeBool "NO_ENCRYPT" true) + (lib.cmakeBool "FORCE_DISABLE_CUDA" true) ]; postInstall = '' @@ -58,6 +58,7 @@ stdenv.mkDerivation (finalAttrs: { maintainers = with lib.maintainers; [ mksafavi ]; + teams = [ lib.teams.rocm ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/tools/gammaray/default.nix b/pkgs/development/tools/gammaray/default.nix index 37673a7bcf00..7ab82ede5b40 100644 --- a/pkgs/development/tools/gammaray/default.nix +++ b/pkgs/development/tools/gammaray/default.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation rec { pname = "gammaray"; - version = "3.2.2"; + version = "3.3.0"; src = fetchFromGitHub { owner = "KDAB"; repo = pname; rev = "v${version}"; - hash = "sha256-tQZg8i83TGUvl2BgYrv2kMEzZZI9SXKr5DQhqJ2nBrU="; + hash = "sha256-1d27hDIxf7pFZlRnblwIbXId7EVItdNuHXtZ/MytQQw="; }; nativeBuildInputs = [ diff --git a/pkgs/os-specific/linux/evdi/default.nix b/pkgs/os-specific/linux/evdi/default.nix index 4baba4c5f7d8..8eee4255cdc0 100644 --- a/pkgs/os-specific/linux/evdi/default.nix +++ b/pkgs/os-specific/linux/evdi/default.nix @@ -17,15 +17,20 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "evdi"; - version = "1.14.10"; + version = "1.14.11"; src = fetchFromGitHub { owner = "DisplayLink"; repo = "evdi"; tag = "v${finalAttrs.version}"; - hash = "sha256-xB3AHg9t/X8vw5p7ohFQ+WuMjb1P8DAP3pROiwWkVPs="; + hash = "sha256-SxYUhu76vwgCQgjOYVpvdWsFpNcyzuSjZe3x/v566VU="; }; + prePatch = '' + substituteInPlace module/Makefile \ + --replace-fail '/etc/os-release' '/dev/null' + ''; + env.CFLAGS = toString [ "-Wno-error" "-Wno-error=discarded-qualifiers" # for Linux 4.19 compatibility diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix index e5679a63fa1c..d0d12067eeed 100644 --- a/pkgs/servers/home-assistant/component-packages.nix +++ b/pkgs/servers/home-assistant/component-packages.nix @@ -2,7 +2,7 @@ # Do not edit! { - version = "2025.9.4"; + version = "2025.10.0"; components = { "3_day_blinds" = ps: with ps; [ @@ -984,6 +984,9 @@ ps: with ps; [ numpy ]; + "compit" = + ps: with ps; [ + ]; # missing inputs: compit-inext-api "concord232" = ps: with ps; [ concord232 @@ -1052,6 +1055,9 @@ "currencylayer" = ps: with ps; [ ]; + "cync" = + ps: with ps; [ + ]; # missing inputs: pycync "dacia" = ps: with ps; [ ]; @@ -1117,6 +1123,7 @@ cached-ipaddress cronsim dbus-fast + file-read-backwards fnv-hash-fast go2rtc-client ha-ffmpeg @@ -1320,6 +1327,9 @@ dropmqttapi paho-mqtt ]; + "droplet" = + ps: with ps; [ + ]; # missing inputs: pydroplet "dsmr" = ps: with ps; [ dsmr-parser @@ -1437,6 +1447,9 @@ "eight_sleep" = ps: with ps; [ ]; + "ekeybionyx" = + ps: with ps; [ + ]; # missing inputs: ekey-bionyxpy "electrasmart" = ps: with ps; [ pyelectra @@ -2106,9 +2119,6 @@ python-google-drive-api securetar ]; - "google_gemini" = - ps: with ps; [ - ]; "google_generative_ai_conversation" = ps: with ps; [ google-genai @@ -2351,6 +2361,15 @@ ps: with ps; [ aiohasupervisor ]; + "homeassistant_connect_zbt2" = + ps: with ps; [ + aiohasupervisor + aiousbwatcher + ha-silabs-firmware-client + psutil-home-assistant + pyserial + universal-silabs-flasher + ]; "homeassistant_green" = ps: with ps; [ aiohasupervisor @@ -2804,6 +2823,10 @@ ps: with ps; [ pyirishrail ]; + "irm_kmi" = + ps: with ps; [ + irm-kmi-api + ]; "iron_os" = ps: with ps; [ aioesphomeapi @@ -3035,6 +3058,9 @@ ps: with ps; [ konnected ]; + "konnected_esphome" = + ps: with ps; [ + ]; "kostal_plenticore" = ps: with ps; [ pykoplenti @@ -3252,6 +3278,9 @@ ps: with ps; [ thinqconnect ]; + "libre_hardware_monitor" = + ps: with ps; [ + ]; # missing inputs: librehardwaremonitor-api "lidarr" = ps: with ps; [ aiopyarr @@ -3859,6 +3888,9 @@ ps: with ps; [ mutesync ]; + "mvglive" = + ps: with ps; [ + ]; # missing inputs: mvg "my" = ps: with ps; [ home-assistant-frontend @@ -3918,6 +3950,9 @@ "neff" = ps: with ps; [ ]; + "neo" = + ps: with ps; [ + ]; "ness_alarm" = ps: with ps; [ nessclient @@ -4562,6 +4597,10 @@ ps: with ps; [ poolsense ]; + "portainer" = + ps: with ps; [ + pyportainer + ]; "portlandgeneral" = ps: with ps; [ ]; @@ -4653,7 +4692,7 @@ ]; "prowl" = ps: with ps; [ - ]; + ]; # missing inputs: prowlpy "proximity" = ps: with ps; [ ]; @@ -5056,6 +5095,12 @@ ps: with ps; [ boto3 ]; + "route_b_smart_meter" = + ps: with ps; [ + aiousbwatcher + momonga + pyserial + ]; "rova" = ps: with ps; [ rova @@ -5353,6 +5398,13 @@ ps: with ps; [ sfrbox-api ]; + "sftp_storage" = + ps: with ps; [ + aiohasupervisor + asyncssh + cronsim + securetar + ]; "sharkiq" = ps: with ps; [ sharkiq @@ -6382,6 +6434,12 @@ ps: with ps; [ pyuptimerobot ]; + "usage_prediction" = + ps: with ps; [ + fnv-hash-fast + psutil-home-assistant + sqlalchemy + ]; "usb" = ps: with ps; [ aiousbwatcher @@ -6465,6 +6523,9 @@ ps: with ps; [ pyvicare ]; + "victron_remote_monitoring" = + ps: with ps; [ + ]; # missing inputs: victron-vrm "vilfo" = ps: with ps; [ vilfo-api-client @@ -6517,7 +6578,6 @@ ]; "volvooncall" = ps: with ps; [ - volvooncall ]; "vultr" = ps: with ps; [ @@ -7275,6 +7335,7 @@ "home_connect" "homeassistant" "homeassistant_alerts" + "homeassistant_connect_zbt2" "homeassistant_green" "homeassistant_hardware" "homeassistant_sky_connect" @@ -7337,6 +7398,7 @@ "ipma" "ipp" "iqvia" + "irm_kmi" "iron_os" "isal" "iskra" @@ -7487,6 +7549,7 @@ "nanoleaf" "nasweb" "neato" + "nederlandse_spoorwegen" "ness_alarm" "nest" "netatmo" @@ -7587,6 +7650,7 @@ "point" "pooldose" "poolsense" + "portainer" "powerfox" "powerwall" "private_ble_device" @@ -7657,6 +7721,7 @@ "romy" "roomba" "roon" + "route_b_smart_meter" "rova" "rpi_power" "rss_feed_template" @@ -7668,6 +7733,7 @@ "sabnzbd" "samsungtv" "sanix" + "satel_integra" "scene" "schedule" "schlage" @@ -7689,6 +7755,7 @@ "senz" "seventeentrack" "sfr_box" + "sftp_storage" "sharkiq" "shell_command" "shelly" @@ -7848,6 +7915,7 @@ "uptime" "uptime_kuma" "uptimerobot" + "usage_prediction" "usb" "usgs_earthquakes_feed" "utility_meter" diff --git a/pkgs/servers/home-assistant/custom-components/dreo/package.nix b/pkgs/servers/home-assistant/custom-components/dreo/package.nix new file mode 100644 index 000000000000..db0587b33b7f --- /dev/null +++ b/pkgs/servers/home-assistant/custom-components/dreo/package.nix @@ -0,0 +1,40 @@ +{ + lib, + buildHomeAssistantComponent, + fetchFromGitHub, + nix-update-script, + websockets, + # Test dependencies + pytestCheckHook, + pytest-homeassistant-custom-component, +}: + +buildHomeAssistantComponent rec { + owner = "JeffSteinbok"; + domain = "dreo"; + version = "1.3.3"; + + src = fetchFromGitHub { + inherit owner; + repo = "hass-dreo"; + tag = "v${version}"; + hash = "sha256-eAgqjAXNAY8kr7+49q+tikW3bDBJ0N0Rh5WJwzLYr8I="; + }; + + dependencies = [ websockets ]; + + nativeCheckInputs = [ + pytest-homeassistant-custom-component + pytestCheckHook + ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + changelog = "https://github.com/JeffSteinbok/hass-dreo/releases/tag/${src.tag}"; + description = "Dreo Smart Device Integration for Home Assistant"; + homepage = "https://github.com/JeffSteinbok/hass-dreo"; + maintainers = with lib.maintainers; [ CodedNil ]; + license = lib.licenses.mit; + }; +} diff --git a/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix b/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix index 5ba4b53eba3d..14409dcfab1c 100644 --- a/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix +++ b/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix @@ -9,13 +9,13 @@ buildHomeAssistantComponent rec { owner = "SukramJ"; domain = "homematicip_local"; - version = "1.87.0"; + version = "1.88.1"; src = fetchFromGitHub { owner = "SukramJ"; repo = "custom_homematic"; tag = version; - hash = "sha256-ZZXF/YvsnNPywA+/T0u+kgIp+meH4MNNr2Dw+BmIvP8="; + hash = "sha256-SAjASZgcpEx/8kiBb8JGifYXnIx2cMbt6c2JNk/n/QU="; }; postPatch = '' diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/material-you-utilities/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/material-you-utilities/package.nix index 1ea5d5fcdcc1..171e61a4478c 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/material-you-utilities/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/material-you-utilities/package.nix @@ -6,16 +6,16 @@ buildNpmPackage rec { pname = "material-you-utilities"; - version = "2.0.13"; + version = "2.0.14"; src = fetchFromGitHub { owner = "Nerwyn"; repo = "material-you-utilities"; tag = version; - hash = "sha256-+eZHgdoPORFEcm8rP556J+G/T4n/BMy6dJXr+TOhgRU="; + hash = "sha256-C2qNXQ/21zyXURjZuId+ANkhvjUCxqfATSW4hvU/9D4="; }; - npmDepsHash = "sha256-ZxQh3RXFlwBxKj5/AHZ4cPIL1HY2TUX+cSebgpeT+pk="; + npmDepsHash = "sha256-W9fKtN+Ux3Lzk4KtRPYM6B+1o8OtZ8ERkqdlT/PkXqA="; postPatch = '' # Remove git dependency from rspack config diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix index 4376780501bf..88712d93b1d4 100644 --- a/pkgs/servers/home-assistant/default.nix +++ b/pkgs/servers/home-assistant/default.nix @@ -126,19 +126,6 @@ let }; }); - mcp = super.mcp.overridePythonAttrs (oldAttrs: rec { - version = "1.5.0"; - src = fetchFromGitHub { - inherit (oldAttrs.src) owner repo; - tag = "v${version}"; - hash = "sha256-Z2NN6k4mD6NixDON1MUOELpBZW9JvMvFErcCbFPdg2o="; - }; - pytestFlagsArray = [ - "-W" - "ignore::pydantic.warnings.PydanticDeprecatedSince211" - ]; - }); - notifications-android-tv = super.notifications-android-tv.overridePythonAttrs (oldAttrs: rec { version = "0.1.5"; format = "setuptools"; @@ -272,21 +259,6 @@ let doCheck = false; }); - python-roborock = - (super.python-roborock.override { - pytest-asyncio = self.pytest-asyncio_0; - }).overridePythonAttrs - rec { - version = "2.18.2"; - - src = fetchFromGitHub { - owner = "Python-roborock"; - repo = "python-roborock"; - tag = "v${version}"; - hash = "sha256-7xcw1jNCDapHjH1YVB5NW7jxMyb8Raf8HuTnWf2vdFo="; - }; - }; - python-telegram-bot = super.python-telegram-bot.overridePythonAttrs (oldAttrs: rec { version = "21.5"; @@ -358,7 +330,7 @@ let extraBuildInputs = extraPackages python.pkgs; # Don't forget to run update-component-packages.py after updating - hassVersion = "2025.9.4"; + hassVersion = "2025.10.0"; in python.pkgs.buildPythonApplication rec { @@ -379,13 +351,13 @@ python.pkgs.buildPythonApplication rec { owner = "home-assistant"; repo = "core"; tag = version; - hash = "sha256-d2lsyW2yAkIbq7wx/pLu4Qzroblh/TYDx08r6im8cI8="; + hash = "sha256-E+rA6Pwzcoz0yPmbZ8NqEswZQ1Kmdc9H2BXZTgjnumk="; }; # Secondary source is pypi sdist for translations sdist = fetchPypi { inherit pname version; - hash = "sha256-mq2cjct4YrURV/T51w/skukwEsUV4iwDphuOftFOUdw="; + hash = "sha256-6HmHTG37hLtBFX/lMbqoNUrbVJjdTswug41y7ziuHdg="; }; build-system = with python.pkgs; [ @@ -518,7 +490,6 @@ python.pkgs.buildPythonApplication rec { # some components are needed even if tests in tests/components are disabled "default_config" "hue" - "qwikswitch" ]; pytestFlags = [ diff --git a/pkgs/servers/home-assistant/frontend.nix b/pkgs/servers/home-assistant/frontend.nix index eea9e9296bc2..e30852e3dfe7 100644 --- a/pkgs/servers/home-assistant/frontend.nix +++ b/pkgs/servers/home-assistant/frontend.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { # the frontend version corresponding to a specific home-assistant version can be found here # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json pname = "home-assistant-frontend"; - version = "20250903.5"; + version = "20251001.0"; format = "wheel"; src = fetchPypi { @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "home_assistant_frontend"; dist = "py3"; python = "py3"; - hash = "sha256-aN6OLdDwBpXkeiswK/bpz+q5J4QG/WzeJwk37xRYJm8="; + hash = "sha256-gyipiEkT4AvTVvc/7pdBz9+2Oou5l9txOOboG/EQb80="; }; # there is nothing to strip in this package diff --git a/pkgs/servers/home-assistant/intents.nix b/pkgs/servers/home-assistant/intents.nix index be6457137a87..12be866ba2e5 100644 --- a/pkgs/servers/home-assistant/intents.nix +++ b/pkgs/servers/home-assistant/intents.nix @@ -1,6 +1,5 @@ { lib, - stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, @@ -23,7 +22,7 @@ buildPythonPackage rec { pname = "home-assistant-intents"; - version = "2025.9.3"; + version = "2025.10.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -33,7 +32,7 @@ buildPythonPackage rec { repo = "intents-package"; tag = version; fetchSubmodules = true; - hash = "sha256-Oy8q7Gi5vn/xPj1AGRU3/o45AHLCoBxgdQ5Zcs3AFTM="; + hash = "sha256-xYmPbiDDnznm9fl8rtnkMAswGAX+3iWwticqaOzF9Jk="; }; build-system = [ @@ -63,11 +62,6 @@ buildPythonPackage rec { "intents/tests" ]; - disabledTests = lib.optionals stdenv.hostPlatform.isx86_64 [ - # assert 100 == -100.0 - "test_HassLightSet_name_brightness" - ]; - meta = with lib; { changelog = "https://github.com/OHF-Voice/intents-package/releases/tag/${src.tag}"; description = "Intents to be used with Home Assistant"; diff --git a/pkgs/servers/home-assistant/stubs.nix b/pkgs/servers/home-assistant/stubs.nix index f3000c206e58..7512a98e9553 100644 --- a/pkgs/servers/home-assistant/stubs.nix +++ b/pkgs/servers/home-assistant/stubs.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "homeassistant-stubs"; - version = "2025.9.4"; + version = "2025.10.0"; pyproject = true; disabled = python.version != home-assistant.python.version; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "KapJI"; repo = "homeassistant-stubs"; tag = version; - hash = "sha256-Jd+K+IGjie4K8gW1bY7AIQtV7CzkQUhZlbPrXdbuXns="; + hash = "sha256-WxuOHHOgzbF+9XJwn+5dAk+m5hZ4fSRjzhfWEHVghTE="; }; build-system = [ diff --git a/pkgs/servers/home-assistant/tests.nix b/pkgs/servers/home-assistant/tests.nix index a3b8bceb69df..9dcbdb0cfe95 100644 --- a/pkgs/servers/home-assistant/tests.nix +++ b/pkgs/servers/home-assistant/tests.nix @@ -9,6 +9,7 @@ let # some components' tests have additional dependencies extraCheckInputs = with home-assistant.python.pkgs; { axis = getComponentDeps "deconz"; + homeassistant_connect_zbt2 = getComponentDeps "zha"; gardena_bluetooth = getComponentDeps "husqvarna_automower_ble"; govee_ble = [ ibeacon-ble diff --git a/pkgs/servers/sql/postgresql/ext/pg_tle.nix b/pkgs/servers/sql/postgresql/ext/pg_tle.nix index ea1fbcbcfe4c..4c15dc74c2e2 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_tle.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_tle.nix @@ -7,23 +7,18 @@ postgresqlBuildExtension rec { pname = "pg_tle"; - version = "1.5.1"; + version = "1.5.2"; src = fetchFromGitHub { owner = "aws"; repo = "pg_tle"; tag = "v${version}"; - hash = "sha256-Z0x+66OmtD4jOdgpjjIj5OfLitcrvAssRBS7Y2dBfOk="; + hash = "sha256-DB7aPSgW2/cjDWwXsFiEfJ5xhlHnhtII0quxtgwZg5c="; }; buildInputs = postgresql.buildInputs; meta = { - # PostgreSQL 18 support issue upstream: https://github.com/aws/pg_tle/issues/302 - # Check after next package update. - broken = lib.warnIf (version != "1.5.1") "Is postgresql18Packages.pg_tle still broken?" ( - lib.versionAtLeast postgresql.version "18" - ); description = "Framework for building trusted language extensions for PostgreSQL"; homepage = "https://github.com/aws/pg_tle"; changelog = "https://github.com/aws/pg_tle/releases/tag/v${version}"; diff --git a/pkgs/top-level/agda-packages.nix b/pkgs/top-level/agda-packages.nix index 1289445a5872..8eb08599afa9 100644 --- a/pkgs/top-level/agda-packages.nix +++ b/pkgs/top-level/agda-packages.nix @@ -36,6 +36,8 @@ let agda-categories = callPackage ../development/libraries/agda/agda-categories { }; + agda2hs-base = callPackage ../development/libraries/agda/agda2hs-base { }; + cubical = callPackage ../development/libraries/agda/cubical { }; cubical-mini = callPackage ../development/libraries/agda/cubical-mini { };