From efc044691ceb1ad16f1c3530a6b985f5198264b6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Jul 2024 12:16:58 +0000 Subject: [PATCH 001/232] elvis-erlang: 3.1.0 -> 3.2.5 --- pkgs/development/beam-modules/elvis-erlang/default.nix | 4 ++-- pkgs/development/beam-modules/elvis-erlang/rebar-deps.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/beam-modules/elvis-erlang/default.nix b/pkgs/development/beam-modules/elvis-erlang/default.nix index 4dff6a21ed84..b5ba31094390 100644 --- a/pkgs/development/beam-modules/elvis-erlang/default.nix +++ b/pkgs/development/beam-modules/elvis-erlang/default.nix @@ -8,10 +8,10 @@ in rebar3Relx rec { releaseType = "escript"; # The package name "elvis" is already taken pname = "elvis-erlang"; - version = "3.1.0"; + version = "3.2.5"; src = fetchFromGitHub { inherit owner repo; - sha256 = "u1KDoLLFQ+HdrLqUAbAFYOZhfpO0j/DfEQ7/ZD5RBDM="; + sha256 = "I0GgfNyozkrM1PRkIXwANr1lji4qZCtOQ/bBEgZc5gc="; rev = version; }; beamDeps = builtins.attrValues (import ./rebar-deps.nix { diff --git a/pkgs/development/beam-modules/elvis-erlang/rebar-deps.nix b/pkgs/development/beam-modules/elvis-erlang/rebar-deps.nix index c8d6edcac4a9..a71d0e5d7714 100644 --- a/pkgs/development/beam-modules/elvis-erlang/rebar-deps.nix +++ b/pkgs/development/beam-modules/elvis-erlang/rebar-deps.nix @@ -1,6 +1,6 @@ # Generated by rebar3_nix let fetchOnly = { src, ... }: src; -in { builder ? fetchOnly, fetchHex, fetchgit, overrides ? (x: y: { }), ... }: +in { builder ? fetchOnly, fetchHex, fetchgit, fetchFromGitHub, overrides ? (x: y: { }) }: let self = packages // (overrides self packages); packages = with self; { From 3f059cf73a6543ad19bbd7e234c868bc31d55c4f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 28 Jul 2024 02:47:53 +0000 Subject: [PATCH 002/232] httping: 3.6 -> 4.1.0 --- pkgs/by-name/ht/httping/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ht/httping/package.nix b/pkgs/by-name/ht/httping/package.nix index 85fcc843ef0f..fbae6f89a7cd 100644 --- a/pkgs/by-name/ht/httping/package.nix +++ b/pkgs/by-name/ht/httping/package.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "httping"; - version = "3.6"; + version = "4.1.0"; src = fetchFromGitHub { owner = "folkertvanheusden"; repo = "HTTPing"; rev = "refs/tags/v${finalAttrs.version}"; - hash = "sha256-lDgQC3VzfcLqMOQSaRZ/znMamAAGYq/9C9bHgI4G7B8="; + hash = "sha256-JtsPtrj/ZineBokEytbkZdAfjVLTkiaNcGtKVJlKm38="; }; nativeBuildInputs = [ From dd7198480710369d130634662b8f93d59c2abef8 Mon Sep 17 00:00:00 2001 From: Alvar Penning Date: Fri, 2 Aug 2024 09:46:19 +0200 Subject: [PATCH 003/232] gtimelog: unstable-2023-10-05 -> 0.12.0 - https://github.com/gtimelog/gtimelog/releases/tag/0.12.0 - https://github.com/gtimelog/gtimelog/blob/0.12.0/CHANGES.rst#0120-2024-04-03 --- pkgs/by-name/gt/gtimelog/package.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/gt/gtimelog/package.nix b/pkgs/by-name/gt/gtimelog/package.nix index d37e2a60eb3f..f2abb96e3fea 100644 --- a/pkgs/by-name/gt/gtimelog/package.nix +++ b/pkgs/by-name/gt/gtimelog/package.nix @@ -4,16 +4,20 @@ python3Packages.buildPythonApplication rec { pname = "gtimelog"; - version = "unstable-2023-10-05"; - format = "setuptools"; + version = "0.12.0"; + pyproject = true; src = fetchFromGitHub { - owner = pname; - repo = pname; - rev = "ba606cbe8eef0e3dc098c6ab3bcbe381bf7ef410"; - hash = "sha256-+iBHfbUJtAtI/vcHj0Y8f9OxAp1SnhQyMqedVzSYPZQ="; + owner = "gtimelog"; + repo = "gtimelog"; + rev = "refs/tags/${version}"; + hash = "sha256-NlKAgAnZWodXF4eybcNOSxexjhegRgQEWoAPd+KWzsw="; }; + build-system = with python3Packages; [ + setuptools-scm + ]; + nativeBuildInputs = [ wrapGAppsHook3 gobject-introspection ]; buildInputs = [ glibcLocales gtk3 libsoup_3 libsecret ]; propagatedBuildInputs = with python3Packages; [ From f4de0b978b60903277ec8cfe1bb4502b9b1bf691 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 2 Aug 2024 11:58:00 +0000 Subject: [PATCH 004/232] kaldi: 0-unstable-2024-06-03 -> 0-unstable-2024-07-25 --- pkgs/tools/audio/kaldi/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/audio/kaldi/default.nix b/pkgs/tools/audio/kaldi/default.nix index 0ad07bae9fd9..4b969c11ba78 100644 --- a/pkgs/tools/audio/kaldi/default.nix +++ b/pkgs/tools/audio/kaldi/default.nix @@ -19,13 +19,13 @@ assert blas.implementation == "openblas" && lapack.implementation == "openblas"; stdenv.mkDerivation (finalAttrs: { pname = "kaldi"; - version = "0-unstable-2024-06-03"; + version = "0-unstable-2024-07-25"; src = fetchFromGitHub { owner = "kaldi-asr"; repo = "kaldi"; - rev = "67548a31c45f93d8b25ee553c5969d6a6d5d9408"; - sha256 = "sha256-yCyBha7i2rxYjEDRYdg8QI7raCEkOPT0Tc8dzSamsmc="; + rev = "122a3f239ed2f24271eb61b9aa3060fa06b820ac"; + sha256 = "sha256-tUb4YeYXFWpxV4GONoxo2QwRqbBemqm2sFP6jkoiBWA="; }; cmakeFlags = [ From 7cad420bb9f940171d7ed839b65e0fc816f880d3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 4 Aug 2024 11:56:54 +0000 Subject: [PATCH 005/232] checkpolicy: 3.6 -> 3.7 --- pkgs/os-specific/linux/checkpolicy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/checkpolicy/default.nix b/pkgs/os-specific/linux/checkpolicy/default.nix index 7e5f1e496522..65b4516d3b2b 100644 --- a/pkgs/os-specific/linux/checkpolicy/default.nix +++ b/pkgs/os-specific/linux/checkpolicy/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { pname = "checkpolicy"; - version = "3.6"; + version = "3.7"; inherit (libsepol) se_url; src = fetchurl { url = "${se_url}/${version}/checkpolicy-${version}.tar.gz"; - sha256 = "sha256-GzRrPN1PinihV2J7rWSjs0ecZ7ahnRXm1chpRiDq28E="; + sha256 = "sha256-/T4ZJUd9SZRtERaThmGvRMH4bw1oFGb9nwLqoGACoH8="; }; nativeBuildInputs = [ bison flex ]; From 612ff0c5d9dee3e00431879b344e989ab454858f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 6 Aug 2024 06:12:53 +0000 Subject: [PATCH 006/232] icingaweb2-ipl: 0.13.2 -> 0.14.1 --- pkgs/servers/icingaweb2/ipl.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/icingaweb2/ipl.nix b/pkgs/servers/icingaweb2/ipl.nix index 52ce346fd652..6eac08cd94dd 100644 --- a/pkgs/servers/icingaweb2/ipl.nix +++ b/pkgs/servers/icingaweb2/ipl.nix @@ -2,13 +2,13 @@ stdenvNoCC.mkDerivation rec { pname = "icingaweb2-ipl"; - version = "0.13.2"; + version = "0.14.1"; src = fetchFromGitHub { owner = "Icinga"; repo = "icinga-php-library"; rev = "v${version}"; - hash = "sha256-b0y3EKcYWt3cH79HvHnpiHt18ZbRf9lEsfKTZO0dHME="; + hash = "sha256-TR2hd8TdWA2zSyalxBaqqdcK6FO2CovqddF8mvvyb1U="; }; installPhase = '' From 5f2b6c65b77c2f6c993ba1ce27c7721c58a690f8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 6 Aug 2024 09:08:51 +0000 Subject: [PATCH 007/232] mpvScripts.thumbfast: 0-unstable-2023-12-08 -> 0-unstable-2024-08-02 --- pkgs/applications/video/mpv/scripts/thumbfast.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/mpv/scripts/thumbfast.nix b/pkgs/applications/video/mpv/scripts/thumbfast.nix index 158e1f38b32b..249b7b896201 100644 --- a/pkgs/applications/video/mpv/scripts/thumbfast.nix +++ b/pkgs/applications/video/mpv/scripts/thumbfast.nix @@ -8,13 +8,13 @@ buildLua { pname = "mpv-thumbfast"; - version = "0-unstable-2023-12-08"; + version = "0-unstable-2024-08-02"; src = fetchFromGitHub { owner = "po5"; repo = "thumbfast"; - rev = "03e93feee5a85bf7c65db953ada41b4826e9f905"; - hash = "sha256-5u5WBvWOEydJrnr/vilEgW4+fxkxM6wNjb9Fyyxx/1c="; + rev = "f1fdf10b17f394f2d42520d0e9bf22feaa20a9f4"; + hash = "sha256-cygLf+0PMH7cVXBcY12PdcxBHmy38DNoXQubKAlerHM="; }; passthru.updateScript = unstableGitUpdater { }; From b053e443478b1a0632121d338e6928b0630232c8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 7 Aug 2024 01:57:01 +0000 Subject: [PATCH 008/232] exfatprogs: 1.2.4 -> 1.2.5 --- pkgs/tools/filesystems/exfatprogs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/exfatprogs/default.nix b/pkgs/tools/filesystems/exfatprogs/default.nix index 3fdfa10907a9..66505d82b7ec 100644 --- a/pkgs/tools/filesystems/exfatprogs/default.nix +++ b/pkgs/tools/filesystems/exfatprogs/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "exfatprogs"; - version = "1.2.4"; + version = "1.2.5"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "sha256-SrkRPDyASXpUAKapwcfaJSlUJBcVNtYZltdPzuhpvYM="; + sha256 = "sha256-EqSzveqLb0Ms7D5Pczoh0BuKD1sILzAbJMnDLacokl4="; }; nativeBuildInputs = [ pkg-config autoreconfHook file ]; From 45a61d0e3bcf21877a7a5dd80d1efc14a8869ad3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 Aug 2024 20:13:19 +0000 Subject: [PATCH 009/232] rootlesskit: 2.1.0 -> 2.3.1 --- pkgs/tools/virtualization/rootlesskit/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/virtualization/rootlesskit/default.nix b/pkgs/tools/virtualization/rootlesskit/default.nix index 9a00c7d163dc..d3f7dd2af922 100644 --- a/pkgs/tools/virtualization/rootlesskit/default.nix +++ b/pkgs/tools/virtualization/rootlesskit/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "rootlesskit"; - version = "2.1.0"; + version = "2.3.1"; src = fetchFromGitHub { owner = "rootless-containers"; repo = "rootlesskit"; rev = "v${version}"; - hash = "sha256-SWLXY7SsoeJFr2RLOtVSnt5Knx44+9hNIy50NzN602k="; + hash = "sha256-5aQwXNtGAZuVwOpX700VVFTxM/kxOT6c1NtpJR4s1xQ="; }; - vendorHash = "sha256-74El20C7kE0lLAng9wQL7MnfcJLtPR2cAk00CuO4NlY="; + vendorHash = "sha256-Wj3wthDMNkuWVWFIqRsVUeJfoUvjyyu2gCvFBjh8mGw="; passthru = { updateScript = nix-update-script { }; From ed3f196204c271820547e823e7c532234a0d5251 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 Aug 2024 02:47:34 +0000 Subject: [PATCH 010/232] openxr-loader: 1.1.38 -> 1.1.40 --- pkgs/development/libraries/openxr-loader/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/openxr-loader/default.nix b/pkgs/development/libraries/openxr-loader/default.nix index 710d985ee346..febbf5114e58 100644 --- a/pkgs/development/libraries/openxr-loader/default.nix +++ b/pkgs/development/libraries/openxr-loader/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "openxr-loader"; - version = "1.1.38"; + version = "1.1.40"; src = fetchFromGitHub { owner = "KhronosGroup"; repo = "OpenXR-SDK-Source"; rev = "release-${version}"; - sha256 = "sha256-nM/c6fvjprQ5GQO4F13cOigi4xATgRTq+ebEwyv58gg="; + sha256 = "sha256-dKSQqiZtnxKj9arpxm9vwz8WzKBXh6y6vzZ9uHP7vX0="; }; nativeBuildInputs = [ cmake python3 pkg-config ]; From 3721cfdcafe8dabc8cf0115f69216cfd2c300466 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 Aug 2024 21:19:37 +0000 Subject: [PATCH 011/232] indicator-sound-switcher: 2.3.9 -> 2.3.10.1 --- pkgs/applications/audio/indicator-sound-switcher/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/indicator-sound-switcher/default.nix b/pkgs/applications/audio/indicator-sound-switcher/default.nix index 5b6cdf7e7904..cb8439305c68 100644 --- a/pkgs/applications/audio/indicator-sound-switcher/default.nix +++ b/pkgs/applications/audio/indicator-sound-switcher/default.nix @@ -14,13 +14,13 @@ python3Packages.buildPythonApplication rec { pname = "indicator-sound-switcher"; - version = "2.3.9"; + version = "2.3.10.1"; src = fetchFromGitHub { owner = "yktoo"; repo = pname; rev = "refs/tags/v${version}"; - sha256 = "sha256-qJ1lg9A1aCM+/v/JbQAVpYGX25qA5ULqsM8k7uH1uvQ="; + sha256 = "sha256-Benhlhz81EgL6+pmjzyruKBOS6O7ce5PPmIIzk2Zong="; }; postPatch = '' From ab91193111aeb9dd587fb4162ec69af048c470a5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 24 Aug 2024 02:45:38 +0000 Subject: [PATCH 012/232] swaylock: 1.7.2 -> 1.8.0 --- pkgs/by-name/sw/swaylock/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sw/swaylock/package.nix b/pkgs/by-name/sw/swaylock/package.nix index 0ba3b727c949..f76f7cdbf0b4 100644 --- a/pkgs/by-name/sw/swaylock/package.nix +++ b/pkgs/by-name/sw/swaylock/package.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { pname = "swaylock"; - version = "1.7.2"; + version = "1.8.0"; src = fetchFromGitHub { owner = "swaywm"; repo = "swaylock"; rev = "v${version}"; - hash = "sha256-ZsOLDqmkyhel8QAezdVZ51utruJrBZWqaZ7NzimXWQ4="; + hash = "sha256-1+AXxw1gH0SKAxUa0JIhSzMbSmsfmBPCBY5IKaYtldg="; }; strictDeps = true; From 143cc364ea1e88fc86036ea55113b87e84cbb6de Mon Sep 17 00:00:00 2001 From: Bruno Bigras Date: Sat, 24 Aug 2024 01:53:43 -0400 Subject: [PATCH 013/232] webwormhole: unstable-2023-02-25 -> 0-unstable-2023-11-15 --- pkgs/tools/networking/webwormhole/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/webwormhole/default.nix b/pkgs/tools/networking/webwormhole/default.nix index 6752c862fb24..7e1fe8cbfb27 100644 --- a/pkgs/tools/networking/webwormhole/default.nix +++ b/pkgs/tools/networking/webwormhole/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "webwormhole"; - version = "unstable-2023-02-25"; + version = "0-unstable-2023-11-15"; src = fetchFromGitHub { owner = "saljam"; repo = pname; - rev = "25b68f4f4c1aaa0c6c1949b60bd4ef52ec972ebb"; - hash = "sha256-JFmfwHBa/lNGTOIIgnMFc4VMlsXtjX9v9Tn2XpdVMfA="; + rev = "6ceee76274ee881e828bd48c5cc15c758b9ad77c"; + hash = "sha256-C9r6wFhP5BkIClgTQol7LyMUHXOzyrX9Pn91VqBaqFQ="; }; vendorHash = "sha256-+7ctAm2wnjmfMd6CHXlcAUwiUMS7cH4koDAvlEUAXEg="; From d65b3435632a8374c4dc2b35d392bee7b93a368e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 26 Aug 2024 13:15:33 +0000 Subject: [PATCH 014/232] libcpuid: 0.6.5 -> 0.7.0 --- pkgs/by-name/li/libcpuid/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/li/libcpuid/package.nix b/pkgs/by-name/li/libcpuid/package.nix index 8378a804fdcf..a9f89e967e26 100644 --- a/pkgs/by-name/li/libcpuid/package.nix +++ b/pkgs/by-name/li/libcpuid/package.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "libcpuid"; - version = "0.6.5"; + version = "0.7.0"; src = fetchFromGitHub { owner = "anrieff"; repo = "libcpuid"; rev = "v${version}"; - sha256 = "sha256-Bq16UH4IUR7dU57bGHKq8P6JsjaB4arOJ4zFeNyxXSg="; + sha256 = "sha256-OZfsEk6sTTvwgAetjilSWbkfC1nMQnPH3oL0IeuqObA="; }; nativeBuildInputs = [ autoreconfHook ]; From 3bb9be40b3b811fbda57aa83045dc81c1250f366 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 26 Aug 2024 14:41:55 +0000 Subject: [PATCH 015/232] python312Packages.pygithub: 2.3.0 -> 2.4.0 --- pkgs/development/python-modules/pygithub/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pygithub/default.nix b/pkgs/development/python-modules/pygithub/default.nix index e5edee26e22d..19fb5f59bcda 100644 --- a/pkgs/development/python-modules/pygithub/default.nix +++ b/pkgs/development/python-modules/pygithub/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "pygithub"; - version = "2.3.0"; + version = "2.4.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "PyGithub"; repo = "PyGithub"; rev = "refs/tags/v${version}"; - hash = "sha256-ccAbn9x1r+wBIAK66ur8+2Op9ij09rQvHumq5Wh7TUU="; + hash = "sha256-VM3xxLa4MlR3vTpeOunsq4/bxZhuKXNKFZbFVul1cMw="; }; build-system = [ From 048c4cc3e0a6e63d3b7c9710419da47e6ed956d0 Mon Sep 17 00:00:00 2001 From: Bruno Bigras Date: Sat, 24 Aug 2024 02:05:24 -0400 Subject: [PATCH 016/232] diffsitter: add updateScript and versionCheckHook --- pkgs/tools/text/diffsitter/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/tools/text/diffsitter/default.nix b/pkgs/tools/text/diffsitter/default.nix index 94d7172d71be..6089af84b44b 100644 --- a/pkgs/tools/text/diffsitter/default.nix +++ b/pkgs/tools/text/diffsitter/default.nix @@ -4,6 +4,8 @@ , makeWrapper , rustPlatform , tree-sitter +, gitUpdater +, versionCheckHook }: let @@ -53,6 +55,11 @@ rustPlatform.buildRustPackage rec { makeWrapper ]; + nativeInstallCheckInputs = [ + versionCheckHook + ]; + doInstallCheck = true; + postInstall = '' # completions are not yet implemented # so we can safely remove this without installing the completions @@ -71,6 +78,8 @@ rustPlatform.buildRustPackage rec { # tests::diff_hunks_snapshot::_short_python_py_true_expects # tests::diff_hunks_snapshot::_short_rust_rs_true_expects + passthru.updateScript = gitUpdater { rev-prefix = "v"; }; + meta = with lib; { homepage = "https://github.com/afnanenayet/diffsitter"; description = "Tree-sitter based AST difftool to get meaningful semantic diffs"; From 8ebecaab832dd72e1641bf7baacc7a11e1355ea7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 28 Aug 2024 00:25:12 +0000 Subject: [PATCH 017/232] bazel-buildtools: 7.1.2 -> 7.3.1 --- .../tools/build-managers/bazel/buildtools/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/build-managers/bazel/buildtools/default.nix b/pkgs/development/tools/build-managers/bazel/buildtools/default.nix index f5b3e03f8609..f3cb1a9313e1 100644 --- a/pkgs/development/tools/build-managers/bazel/buildtools/default.nix +++ b/pkgs/development/tools/build-managers/bazel/buildtools/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "bazel-buildtools"; - version = "7.1.2"; + version = "7.3.1"; src = fetchFromGitHub { owner = "bazelbuild"; repo = "buildtools"; rev = "v${version}"; - hash = "sha256-Ax7UKkClYsoqxaR+tsQnTv6BFafl9SkY7MC4kYJNmwY="; + hash = "sha256-AdwJDRw+AY3F+ZDaKqn5YzAVyAzvrV+d1WTk8OJtUdk="; }; - vendorHash = "sha256-DigTREfI6I48wxRpGp/bfH1NbUZ4E1B5UTQXpI0LY1A="; + vendorHash = "sha256-sYZ7ogQY0dWOwJMvLljOjaKeYGYdLrF5AnetregdlYY="; preBuild = '' rm -r warn/docs From 47bf0716f1c92d3717c5b26910c84acbd2ee4c81 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 29 Aug 2024 02:54:12 +0000 Subject: [PATCH 018/232] openseachest: 23.12 -> 24.08 --- pkgs/tools/system/openseachest/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/openseachest/default.nix b/pkgs/tools/system/openseachest/default.nix index d729f0a3e797..57664295d1c0 100644 --- a/pkgs/tools/system/openseachest/default.nix +++ b/pkgs/tools/system/openseachest/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { pname = "openseachest"; - version = "23.12"; + version = "24.08"; src = fetchFromGitHub { owner = "Seagate"; repo = "openSeaChest"; rev = "v${version}"; - hash = "sha256-2snxruIC/93+yI7g/9cCXcms8FaoXnoyWq9py8GTwrs="; + hash = "sha256-g5zCPlqK2AmGvPFqxEeSsZfDf4ksMYdIvJ+1PuuauL8="; fetchSubmodules = true; }; From 6b1d5b23d313a79a5b84f371e1002c7d5866e3fe Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 30 Aug 2024 11:05:24 +0000 Subject: [PATCH 019/232] miracle-wm: 0.3.2 -> 0.3.4 --- pkgs/by-name/mi/miracle-wm/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/mi/miracle-wm/package.nix b/pkgs/by-name/mi/miracle-wm/package.nix index c93995188502..f64c97031234 100644 --- a/pkgs/by-name/mi/miracle-wm/package.nix +++ b/pkgs/by-name/mi/miracle-wm/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "miracle-wm"; - version = "0.3.2"; + version = "0.3.4"; src = fetchFromGitHub { owner = "mattkae"; repo = "miracle-wm"; rev = "v${finalAttrs.version}"; - hash = "sha256-T5KDnUy/+wRL74v48i3D1OQrHuIoI1WUeybx9D7y+8Y="; + hash = "sha256-X55qHQxdG0i9THcGsgibBMC2Imq3P3gwuNsLYw14PB0="; }; patches = [ From 6be6702d45f339801a6a04a0d9414bfafafe2e43 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Wed, 28 Aug 2024 09:45:56 +0200 Subject: [PATCH 020/232] openssl: expose 'enable-md2' option needed e.g. to build `onlyoffice-documentserver` from source --- pkgs/development/libraries/openssl/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 5ddb26798af5..c565d9084ee2 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -4,6 +4,7 @@ , withZlib ? false, zlib , enableSSL2 ? false , enableSSL3 ? false +, enableMD2 ? false , enableKTLS ? stdenv.isLinux , static ? stdenv.hostPlatform.isStatic # path to openssl.cnf file. will be placed in $etc/etc/ssl/openssl.cnf to replace the default @@ -128,7 +129,8 @@ let ] ++ lib.optionals withCryptodev [ "-DHAVE_CRYPTODEV" "-DUSE_CRYPTODEV_DIGESTS" - ] ++ lib.optional enableSSL2 "enable-ssl2" + ] ++ lib.optional enableMD2 "enable-md2" + ++ lib.optional enableSSL2 "enable-ssl2" ++ lib.optional enableSSL3 "enable-ssl3" # We select KTLS here instead of the configure-time detection (which we patch out). # KTLS should work on FreeBSD 13+ as well, so we could enable it if someone tests it. From 9a00adc7e1c16aff9782ae006f04517f0602c348 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 31 Aug 2024 00:25:15 +0000 Subject: [PATCH 021/232] assimp: 5.4.2 -> 5.4.3 --- pkgs/development/libraries/assimp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/assimp/default.nix b/pkgs/development/libraries/assimp/default.nix index 53051eb2a310..45eef22e69fb 100644 --- a/pkgs/development/libraries/assimp/default.nix +++ b/pkgs/development/libraries/assimp/default.nix @@ -8,14 +8,14 @@ stdenv.mkDerivation rec { pname = "assimp"; - version = "5.4.2"; + version = "5.4.3"; outputs = [ "out" "lib" "dev" ]; src = fetchFromGitHub { owner = "assimp"; repo = "assimp"; rev = "v${version}"; - hash = "sha256-4KpqH3rSNSTAXMFPWAvGTZA4jzKIChHFdtW97sK2EyY="; + hash = "sha256-sOYhYHBz3Tg+pi1OIJ1mGmsjEc6dPO6nFH0aolfpLRA="; }; nativeBuildInputs = [ cmake ]; From 81c3d4cb13f7c104580c73cd859587756518d678 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 31 Aug 2024 01:34:46 +0000 Subject: [PATCH 022/232] mdk-sdk: 0.29.0 -> 0.29.1 --- pkgs/development/libraries/mdk-sdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/mdk-sdk/default.nix b/pkgs/development/libraries/mdk-sdk/default.nix index c172fbf3139e..3381282f675b 100644 --- a/pkgs/development/libraries/mdk-sdk/default.nix +++ b/pkgs/development/libraries/mdk-sdk/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { pname = "mdk-sdk"; - version = "0.29.0"; + version = "0.29.1"; src = fetchurl { url = "https://github.com/wang-bin/mdk-sdk/releases/download/v${version}/mdk-sdk-linux-x64.tar.xz"; - hash = "sha256-umseIESdiiefQReycc2W8gsurxlpFHfAgV0YdXl1hZE="; + hash = "sha256-7dkvm5kP3gcQwXOE9DrjoOTzKRiwk/PVeRr7poLdCU0="; }; nativeBuildInputs = [ autoPatchelfHook ]; From 54719fedf20eb62ae17446470bb8deb5d96fec76 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 1 Sep 2024 01:39:35 +0000 Subject: [PATCH 023/232] octavePackages.image-acquisition: 0.2.2 -> 0.2.6 --- pkgs/development/octave-modules/image-acquisition/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/octave-modules/image-acquisition/default.nix b/pkgs/development/octave-modules/image-acquisition/default.nix index e1410fd8368f..b7591b17f7fe 100644 --- a/pkgs/development/octave-modules/image-acquisition/default.nix +++ b/pkgs/development/octave-modules/image-acquisition/default.nix @@ -7,11 +7,11 @@ buildOctavePackage rec { pname = "image-acquisition"; - version = "0.2.2"; + version = "0.2.6"; src = fetchurl { url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; - sha256 = "1amp6npkddnnz2i5rm6gvn65qrbn0nxzl2cja3dvc2xqg396wrhh"; + sha256 = "sha256-Uehwk68GZ/M4WL5M3GF++mCPUg3M08Y0gkdO36/yhNI="; }; buildInputs = [ From 96283678b647cd7b4d5d77f1176ffc52e269cde4 Mon Sep 17 00:00:00 2001 From: Mogeko Date: Sun, 1 Sep 2024 13:20:35 +0800 Subject: [PATCH 024/232] rke2_stable: 1.28.11+rke2r1 -> 1.30.4+rke2r1 --- .../cluster/rke2/stable/versions.nix | 18 +++++++++--------- pkgs/top-level/all-packages.nix | 6 +----- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/networking/cluster/rke2/stable/versions.nix b/pkgs/applications/networking/cluster/rke2/stable/versions.nix index 58b0eb57b80c..ee2c9ceebc1f 100644 --- a/pkgs/applications/networking/cluster/rke2/stable/versions.nix +++ b/pkgs/applications/networking/cluster/rke2/stable/versions.nix @@ -1,14 +1,14 @@ { - rke2Version = "1.28.11+rke2r1"; - rke2RepoSha256 = "1mkl7mnlsq2j9n610jnr9545hq6ilr5sdg8jxjxjbk9lnmmbvrm1"; - rke2Commit = "6b12d7a783238b72da8450fa1b6ec587cebb79ed"; - rke2VendorHash = "sha256-VenNSaa86nbhrFYzXPbj0fxbDlrIu6pxqMo+HPDuUxs="; - k8sVersion = "v1.28.11"; - k8sImageTag = "v1.28.11-rke2r1-build20240619"; + rke2Version = "1.30.4+rke2r1"; + rke2RepoSha256 = "1daxs8gxy775qn1yrf7zh77cyaj3nn3qlwj0vjqfpbv1gpkimfyi"; + rke2Commit = "9517eea519b780e154dd791c555c698e84a0e5cd"; + rke2VendorHash = "sha256-Q+Wt4Hyp6VyxfCXNsRQMyAo0QCGWhnY9tcV/NQrrSEY="; + k8sVersion = "v1.30.4"; + k8sImageTag = "v1.30.4-rke2r1-build20240815"; etcdVersion = "v3.5.13-k3s1"; pauseVersion = "3.6"; ccmVersion = "v1.29.3-build20240515"; - dockerizedVersion = "v1.28.11-rke2r1"; - golangVersion = "go1.21.11"; - eol = "2024-10-28"; + dockerizedVersion = "v1.30.4-dev.877838a0-dirty"; + golangVersion = "go1.22.5"; + eol = "2025-06-28"; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1352af0af5c4..a2b7718dfa37 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -33106,11 +33106,7 @@ with pkgs; rke = callPackage ../applications/networking/cluster/rke { }; - inherit (callPackage ../applications/networking/cluster/rke2 { - buildGoModule = buildGo121Module; - go = go_1_21; - }) rke2_stable; - inherit (callPackage ../applications/networking/cluster/rke2 { }) rke2_latest rke2_testing; + inherit (callPackage ../applications/networking/cluster/rke2 { }) rke2_stable rke2_latest rke2_testing; rke2 = rke2_stable; rocketchat-desktop = callPackage ../applications/networking/instant-messengers/rocketchat-desktop { }; From 8d35d0239abfe3b6c5cf38fd543c841a9d80a5ee Mon Sep 17 00:00:00 2001 From: Linus Karl Date: Sun, 25 Aug 2024 15:06:35 +0200 Subject: [PATCH 025/232] kstars: 3.7.0 -> 3.7.2 Updated URL with new format Release Notes for 3.7.2: https://knro.blogspot.com/2024/08/kstars-372-released.html --- pkgs/applications/science/astronomy/kstars/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/astronomy/kstars/default.nix b/pkgs/applications/science/astronomy/kstars/default.nix index 863c5b70e021..5f9fe55b9b5f 100644 --- a/pkgs/applications/science/astronomy/kstars/default.nix +++ b/pkgs/applications/science/astronomy/kstars/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "kstars"; - version = "3.7.0"; + version = "3.7.2"; src = fetchurl { - url = "mirror://kde/stable/kstars/kstars-${finalAttrs.version}.tar.xz"; - hash = "sha256-yvN1k0LqUi5Odb34Nk8UP5qoIbFUcvUiyESpoMKmuqg="; + url = "mirror://kde/stable/kstars/${finalAttrs.version}/kstars-${finalAttrs.version}.tar.xz"; + hash = "sha256-fEu3BGBW5cgrY38zBB3iL0/SRrobEtJVsGNWRNtT40s="; }; nativeBuildInputs = [ From 6b8ae8a33c1338f8f9693b6fcb29578b27172af6 Mon Sep 17 00:00:00 2001 From: Karl Hallsby Date: Sun, 1 Sep 2024 11:01:33 -0500 Subject: [PATCH 026/232] octavePackages.image-acquisition: propagate libv4l to runtime libv4l is needed when running Octave with this package. Propagate the library input so the final Octave environment also contains libv4l. --- .../octave-modules/image-acquisition/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/octave-modules/image-acquisition/default.nix b/pkgs/development/octave-modules/image-acquisition/default.nix index b7591b17f7fe..69f7c1a60a54 100644 --- a/pkgs/development/octave-modules/image-acquisition/default.nix +++ b/pkgs/development/octave-modules/image-acquisition/default.nix @@ -15,10 +15,13 @@ buildOctavePackage rec { }; buildInputs = [ - libv4l fltk ]; + propagatedBuildInputs = [ + libv4l + ]; + meta = with lib; { homepage = "https://octave.sourceforge.io/image-acquisition/index.html"; license = licenses.gpl3Plus; @@ -28,7 +31,5 @@ buildOctavePackage rec { The Octave-forge Image Aquisition package provides functions to capture images from connected devices. Currently only v4l2 is supported. ''; - # Got broke with octave 8.x update, and wasn't updated since 2015 - broken = true; }; } From fd7c768d3a74d04ee2cf8f2c1680bf86bf5b5775 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 1 Sep 2024 17:34:54 +0100 Subject: [PATCH 027/232] calibre: enable tests --- pkgs/applications/misc/calibre/default.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 61a0b3b3e81a..cb60ee6b59ad 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -186,6 +186,28 @@ stdenv.mkDerivation (finalAttrs: { done ''; + doInstallCheck = true; + installCheckInputs = with python3Packages; [ + fonttools + psutil + ]; + installCheckPhase = '' + runHook preInstallCheck + + ETN='--exclude-test-name' + EXCLUDED_FLAGS=( + $ETN 'test_7z' # we don't include 7z support + $ETN 'test_zstd' # we don't include zstd support + $ETN 'test_qt' # we don't include svg or webp support + $ETN 'test_import_of_all_python_modules' # explores actual file paths, gets confused + ${lib.optionalString (!unrarSupport) "$ETN 'test_unrar'"} + ) + + python setup.py test ''${EXCLUDED_FLAGS[@]} + + runHook postInstallCheck + ''; + meta = { homepage = "https://calibre-ebook.com"; description = "Comprehensive e-book software"; From fb707e891f6a106494d6489a4b6bbfc9f3c74989 Mon Sep 17 00:00:00 2001 From: Alexandre Girard Davila Date: Mon, 2 Sep 2024 09:49:46 +0700 Subject: [PATCH 028/232] maintainers: add alx --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 823f040c7131..3079e159e2be 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -1083,6 +1083,12 @@ githubId = 169249; name = "Alex Brandt"; }; + alx = { + email = "nix@alexgirard.com"; + github = "alx"; + githubId = 373; + name = "Alexandre Girard Davila"; + }; alxsimon = { email = "alexis.simon@normalesup.org"; github = "alxsimon"; From 7516e662d2df6ee038fdeac513527b93e969193d Mon Sep 17 00:00:00 2001 From: Alexandre Girard Davila Date: Mon, 2 Sep 2024 09:51:33 +0700 Subject: [PATCH 029/232] quake3e: 2022-04-01-dev -> 2024-09-02-dev --- pkgs/games/quake3/quake3e/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/games/quake3/quake3e/default.nix b/pkgs/games/quake3/quake3e/default.nix index 81dd202dc543..8bf6ed19ab0f 100644 --- a/pkgs/games/quake3/quake3e/default.nix +++ b/pkgs/games/quake3/quake3e/default.nix @@ -22,13 +22,13 @@ let in stdenv.mkDerivation rec { pname = "Quake3e"; - version = "2022-04-01-dev"; + version = "2024-09-02-dev"; src = fetchFromGitHub { owner = "ec-"; repo = pname; - rev = "c6cec00b858aa5955eb1d6eb65b9bfd41fd869cb"; - sha256 = "0qd13fndbhgkkmhxbprpzmj2l2v9ihacxagpdqi9sg9nrzvahr9h"; + rev = "b6e7ce4f78711e1c9d2924044a9a9d8a9db7020f"; + sha256 = "sha256-tQgrHiP+QhBzcUnHRwzaDe38Th0uDt450fra8O3Vjqc="; }; nativeBuildInputs = [ makeWrapper copyDesktopItems ]; @@ -75,6 +75,6 @@ stdenv.mkDerivation rec { description = "Improved Quake III Arena engine"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ pmiddend ]; + maintainers = with maintainers; [ pmiddend alx ]; }; } From ceece79d5592ed96375252dea70b9a7c0dce8b0a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 2 Sep 2024 04:00:48 +0000 Subject: [PATCH 030/232] rke2_testing: 1.30.3-rc5+rke2r1 -> 1.31.0-rc1+rke2r1 --- .../networking/cluster/rke2/testing/versions.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/cluster/rke2/testing/versions.nix b/pkgs/applications/networking/cluster/rke2/testing/versions.nix index 1ba579e917ed..1801831584d1 100644 --- a/pkgs/applications/networking/cluster/rke2/testing/versions.nix +++ b/pkgs/applications/networking/cluster/rke2/testing/versions.nix @@ -1,14 +1,14 @@ { - rke2Version = "1.30.3-rc5+rke2r1"; - rke2RepoSha256 = "1ix7mm11j9ir9xz0yypznja5mcbizibclh314sgcsfxhg39w4a70"; - rke2Commit = "e742dc53b463d205773cfb25633309671ce6777c"; - rke2VendorHash = "sha256-6ma0t0ElZ13VTS/aK5AknJ00F45kZXn36b5sePK2wh0="; - k8sVersion = "v1.30.3"; - k8sImageTag = "v1.30.3-rke2r1-build20240717"; + rke2Version = "1.31.0-rc1+rke2r1"; + rke2RepoSha256 = "0mfl01rv6xn2kg2739215j9hsyym16mgp92bqsz0hkpfm61dd96j"; + rke2Commit = "3acd10e9389fa930860896ca6ed925a15dff61a3"; + rke2VendorHash = "sha256-/ALzC2fYYI+DbF+2TSNBiMy57T8wfXGPpdyKtbqdrtE="; + k8sVersion = "v1.31.0"; + k8sImageTag = "v1.31.0-rke2r1-build20240815"; etcdVersion = "v3.5.13-k3s1"; pauseVersion = "3.6"; ccmVersion = "v1.29.3-build20240515"; - dockerizedVersion = "v1.30.3-dev."; + dockerizedVersion = "v1.31.0-dev."; golangVersion = "go1.22.5"; - eol = "2025-06-28"; + eol = "2025-10-28"; } From 755657b2b4f81995ef049b677c745f92bd435c66 Mon Sep 17 00:00:00 2001 From: Ali Afsharzadeh Date: Mon, 2 Sep 2024 08:29:18 +0330 Subject: [PATCH 031/232] docker_27: 27.1.1 -> 27.2.0 --- pkgs/applications/virtualization/docker/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix index a8a4863d6bf3..9ce338dca7b5 100644 --- a/pkgs/applications/virtualization/docker/default.nix +++ b/pkgs/applications/virtualization/docker/default.nix @@ -323,15 +323,15 @@ rec { }; docker_27 = callPackage dockerGen rec { - version = "27.1.1"; + version = "27.2.0"; cliRev = "v${version}"; - cliHash = "sha256-r9figEMYHHSbMYVFiw7GUMzjZBhlF+jyZqKixyCpoQ0="; + cliHash = "sha256-Fa1EUwJjxh5jzhQJ4tllDZBfB7KACHDEe9ETVzMfUNY="; mobyRev = "v${version}"; - mobyHash = "sha256-LuCEdQQ3eWt8VyzmWkQTxlxTok9h/UlACTVls5LcI7g="; + mobyHash = "sha256-grxKlsbhxumQZNOyM96aURSiVFE1Fe5NFxUoPzFX/Qk="; runcRev = "v1.1.13"; runcHash = "sha256-RQsM8Q7HogDVGbNpen3wxXNGR9lfqmNhkXTRoC+LBk8="; - containerdRev = "v1.7.20"; - containerdHash = "sha256-Q9lTzz+G5PSoChy8MZtbOpO81AyNWXC+CgGkdOg14uY="; + containerdRev = "v1.7.21"; + containerdHash = "sha256-cL1RKFg+B2gTPMg963DKup5BCLLgF9t9VZn2WlmmWPI="; tiniRev = "v0.19.0"; tiniHash = "sha256-ZDKu/8yE5G0RYFJdhgmCdN3obJNyRWv6K/Gd17zc1sI="; }; From 32fb25319b39196c015adef2a1c6d74cf86f4bbb Mon Sep 17 00:00:00 2001 From: Ashish SHUKLA Date: Mon, 2 Sep 2024 13:15:04 +0530 Subject: [PATCH 032/232] dufs: 0.41.0 -> 0.42.0 Changes: https://github.com/sigoden/dufs/releases/tag/v0.42.0 --- pkgs/servers/http/dufs/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/http/dufs/default.nix b/pkgs/servers/http/dufs/default.nix index 267f1ed38aaa..be7ed60083ed 100644 --- a/pkgs/servers/http/dufs/default.nix +++ b/pkgs/servers/http/dufs/default.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage rec { pname = "dufs"; - version = "0.41.0"; + version = "0.42.0"; src = fetchFromGitHub { owner = "sigoden"; repo = "dufs"; rev = "v${version}"; - hash = "sha256-Ab/f6n2n24mLsWS4WF6jOBt9m7dyeSP0ftYixKANsjY="; + hash = "sha256-eada2xQlzB1kknwitwxZhFiv6myTbtYHHFkQtppa0tc="; }; - cargoHash = "sha256-CNHDZHyg4jrEl3hmdQ7ITCtg9iTmB2RwDAzqSirOCO4="; + cargoHash = "sha256-juT3trREV7LmjBz+x7Od4XoTGuL1XRhknbU4Nopg2HU="; nativeBuildInputs = [ installShellFiles ]; From 920cd662b338eae1cc9956da028ebbff7c57702d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 2 Sep 2024 13:37:43 +0000 Subject: [PATCH 033/232] pazi: 0.4.1 -> 0.5.0 --- pkgs/tools/misc/pazi/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/pazi/default.nix b/pkgs/tools/misc/pazi/default.nix index 4b9a9bdf04c1..97fb2d61fb9f 100644 --- a/pkgs/tools/misc/pazi/default.nix +++ b/pkgs/tools/misc/pazi/default.nix @@ -2,18 +2,18 @@ rustPlatform.buildRustPackage rec { pname = "pazi"; - version = "0.4.1"; + version = "0.5.0"; src = fetchFromGitHub { owner = "euank"; repo = pname; rev = "v${version}"; - sha256 = "0z8x70mwg0mvz6iap92gil37d4kpg5dizlyfx3zk7984ynycgap8"; + sha256 = "sha256-PDgk6VQ/J9vkFJ0N+BH9LqHOXRYM+a+WhRz8QeLZGiM="; }; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; - cargoHash = "sha256-TJbwLbmexu/PLhKPJl7DttZz/WbEJNJerQimUMqlVcU="; + cargoHash = "sha256-7ChHYcyzRPFkZ+zh9lBOHcOizDvJf2cp9ULoI7Ofmqk="; meta = with lib; { description = "Autojump \"zap to directory\" helper"; From 0a5e4d16668017bb4a36781f04df2c6173251238 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 2 Sep 2024 19:20:53 +0200 Subject: [PATCH 034/232] single-file-cli: remove chromedriver from nativeCheckInputs chromedriver is the only thing stopping this from building on aarch64 linux and isn't required to run the test --- pkgs/by-name/si/single-file-cli/package.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/si/single-file-cli/package.nix b/pkgs/by-name/si/single-file-cli/package.nix index 13da0e896d15..d6aa4d28a7d8 100644 --- a/pkgs/by-name/si/single-file-cli/package.nix +++ b/pkgs/by-name/si/single-file-cli/package.nix @@ -4,7 +4,6 @@ buildNpmPackage, fetchFromGitHub, chromium, - chromedriver, python3, }: buildNpmPackage { @@ -19,7 +18,7 @@ buildNpmPackage { }; npmDepsHash = "sha256-wiBpWw9nb/pWVGIc4Vl/IxxR5ic0LzLMMr3WxRNvYdM="; - nativeCheckInputs = [chromium chromedriver]; + nativeCheckInputs = [chromium]; doCheck = stdenv.isLinux; postBuild = '' @@ -34,8 +33,7 @@ buildNpmPackage { ./single-file \ --browser-headless \ - --web-driver-executable-path=chromedriver \ - --back-end=webdriver-chromium \ + --browser-executable-path chromium-browser\ http://127.0.0.1:8000 grep -F 'Page saved with SingleFile' 'Directory listing for'*.html From b9aa424d5790cc061ebe993cb7912aa52db03f16 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 4 Sep 2024 03:39:16 +0000 Subject: [PATCH 035/232] plumed: 2.9.1 -> 2.9.2 --- .../libraries/science/chemistry/plumed/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/science/chemistry/plumed/default.nix b/pkgs/development/libraries/science/chemistry/plumed/default.nix index b70d2146b2da..643ee2bc228c 100644 --- a/pkgs/development/libraries/science/chemistry/plumed/default.nix +++ b/pkgs/development/libraries/science/chemistry/plumed/default.nix @@ -8,13 +8,13 @@ assert !blas.isILP64; stdenv.mkDerivation rec { pname = "plumed"; - version = "2.9.1"; + version = "2.9.2"; src = fetchFromGitHub { owner = "plumed"; repo = "plumed2"; rev = "v${version}"; - hash = "sha256-68/ajM87ApEXUs4xPIq7Vfmzl7Ms4ck6jnjlIv7woMs="; + hash = "sha256-jNvdbfh1krNMrOFqkEHMy60mjsG/Wp6MQg0gHEjDA5U="; }; postPatch = '' From 085724ef1725a58655ab3096c570508bc573437a Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Thu, 5 Sep 2024 10:25:38 +0200 Subject: [PATCH 036/232] julia-modules: move makeWrapper to nativeBuildInputs --- pkgs/development/julia-modules/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/julia-modules/default.nix b/pkgs/development/julia-modules/default.nix index 9c5c8b8eda5d..737cb9345a4b 100644 --- a/pkgs/development/julia-modules/default.nix +++ b/pkgs/development/julia-modules/default.nix @@ -45,7 +45,7 @@ let # Start by wrapping Julia so it has access to Python and any other extra libs. # Also, prevent various packages (CondaPkg.jl, PythonCall.jl) from trying to do network calls. - juliaWrapped = runCommand "julia-${julia.version}-wrapped" { buildInputs = [makeWrapper]; inherit makeWrapperArgs; } '' + juliaWrapped = runCommand "julia-${julia.version}-wrapped" { nativeBuildInputs = [makeWrapper]; inherit makeWrapperArgs; } '' mkdir -p $out/bin makeWrapper ${julia}/bin/julia $out/bin/julia \ --suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath extraLibs}" \ @@ -163,7 +163,7 @@ let in runCommand "julia-${julia.version}-env" { - buildInputs = [makeWrapper]; + nativeBuildInputs = [makeWrapper]; inherit julia; inherit juliaWrapped; From e84fdec7f052b78fee4571db86c827ac30a51c6c Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Thu, 5 Sep 2024 21:54:58 +0200 Subject: [PATCH 037/232] nixdoc: 3.0.7 -> 3.0.8 Diff: https://github.com/nix-community/nixdoc/compare/v3.0.7...v3.0.8 --- pkgs/tools/nix/nixdoc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/nix/nixdoc/default.nix b/pkgs/tools/nix/nixdoc/default.nix index da046f8afcea..b0b7bc82e0d8 100644 --- a/pkgs/tools/nix/nixdoc/default.nix +++ b/pkgs/tools/nix/nixdoc/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "nixdoc"; - version = "3.0.7"; + version = "3.0.8"; src = fetchFromGitHub { owner = "nix-community"; repo = "nixdoc"; rev = "v${version}"; - sha256 = "sha256-9gBrFudzn75rzx7bTPgr+zzUpX2cLHOmE12xFtoH1eA="; + sha256 = "sha256-0tMGTKcuvyDE5281nGCvZKYJKIEAU01G6vV8Fnt/1ZQ="; }; - cargoHash = "sha256-/f67AhaNLHS/3veAzNZwYujMMM/Vmq/U4MHNHvfRoBE="; + cargoHash = "sha256-5KV2VDsPmSgrdZIqCuQ5gjgCVs/Ki6uG6GTwjmtKLlQ="; buildInputs = lib.optionals stdenv.isDarwin [ darwin.Security ]; From c1acd759b0eba47ea34177d7e29bdbbeea630f2e Mon Sep 17 00:00:00 2001 From: datafoo <34766150+datafoo@users.noreply.github.com> Date: Mon, 19 Aug 2024 08:22:13 +0200 Subject: [PATCH 038/232] vscode-extensions.apollographql.vscode-apollo: 1.19.11 -> 2.2.0 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 503488538005..c45640105bfc 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -313,8 +313,8 @@ let mktplcRef = { name = "vscode-apollo"; publisher = "apollographql"; - version = "1.19.11"; - hash = "sha256-EixefDuJiw/p5yAR/UQLK1a1RXJLXlTmOlD34qpAN+U="; + version = "2.2.0"; + hash = "sha256-9CKm9SLotPlwkAELb7Us/blK959HVt6eXiDp0fgVLmA="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/apollographql.vscode-apollo/changelog"; From abdcc293b7741be77207794d80f8304368890476 Mon Sep 17 00:00:00 2001 From: natsukium Date: Fri, 6 Sep 2024 23:46:23 +0900 Subject: [PATCH 039/232] textlint-plugin-org: init at 0.3.7 https://github.com/kijimaD/textlint-plugin-org --- .../te/textlint-plugin-org/package.nix | 37 +++++++++++++++++++ pkgs/by-name/te/textlint-plugin-org/test.org | 2 + 2 files changed, 39 insertions(+) create mode 100644 pkgs/by-name/te/textlint-plugin-org/package.nix create mode 100644 pkgs/by-name/te/textlint-plugin-org/test.org diff --git a/pkgs/by-name/te/textlint-plugin-org/package.nix b/pkgs/by-name/te/textlint-plugin-org/package.nix new file mode 100644 index 000000000000..71e32af51537 --- /dev/null +++ b/pkgs/by-name/te/textlint-plugin-org/package.nix @@ -0,0 +1,37 @@ +{ + lib, + fetchFromGitHub, + buildNpmPackage, + textlint, + textlint-plugin-org, + textlint-rule-max-comma, +}: + +buildNpmPackage rec { + pname = "textlint-plugin-org"; + version = "0.3.7"; + + src = fetchFromGitHub { + owner = "kijimaD"; + repo = "textlint-plugin-org"; + rev = "refs/tags/v${version}"; + hash = "sha256-BW+b09nv9Mzl3cUcOOpHoRz8tGLxuGGo4UCY6kdUlXA="; + }; + + npmDepsHash = "sha256-J1ksstPED7FwB80N4CzfZ1i2xc3Wmu7s4T3acOrWA9s="; + + passthru.tests = textlint.testPackages { + inherit (textlint-plugin-org) pname; + rule = textlint-rule-max-comma; + plugin = textlint-plugin-org; + testFile = ./test.org; + }; + + meta = { + description = "Org mode support for textlint"; + homepage = "https://github.com/kijimaD/textlint-plugin-org"; + changelog = "https://github.com/kijimaD/textlint-plugin-org/releases/tag/v${version}"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ natsukium ]; + }; +} diff --git a/pkgs/by-name/te/textlint-plugin-org/test.org b/pkgs/by-name/te/textlint-plugin-org/test.org new file mode 100644 index 000000000000..91c125e30071 --- /dev/null +++ b/pkgs/by-name/te/textlint-plugin-org/test.org @@ -0,0 +1,2 @@ +#+title: textlint-plugin-org test +Nix, is a tool, that takes a unique approach to package management and system configuration, Learn how to make reproducible, declarative, and reliable systems. From f60667a875e7b7f244903719dcd44953a9ae0b8d Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 7 Sep 2024 17:39:54 +0200 Subject: [PATCH 040/232] python39: 3.9.19 -> 3.9.20 https://docs.python.org/release/3.9.20/whatsnew/changelog.html --- pkgs/development/interpreters/python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index a35418857d52..57d61903cf85 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -47,10 +47,10 @@ in { sourceVersion = { major = "3"; minor = "9"; - patch = "19"; + patch = "20"; suffix = ""; }; - hash = "sha256-1Iks0WGPZFjLhRIIwDDfFIJ3lgnQ85OZkb04GE+MZ54="; + hash = "sha256-aygSee/YUpTS1pk+FzmDpXRkwBM5Vvu7VTbslka+rww="; inherit (darwin) configd; inherit passthruFun; }; From 53a9c0f5a8c58c1e5508a8e9af9bad85451bb107 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 7 Sep 2024 17:40:41 +0200 Subject: [PATCH 041/232] python310: 3.10.14 -> 3.10.15 https://docs.python.org/release/3.10.15/whatsnew/changelog.html --- pkgs/development/interpreters/python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index 57d61903cf85..60f4273a63aa 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -60,10 +60,10 @@ in { sourceVersion = { major = "3"; minor = "10"; - patch = "14"; + patch = "15"; suffix = ""; }; - hash = "sha256-nFBIH6qMKDIym6D8iGjQpgamgPxPYOxI0mzo4HZ1H9o="; + hash = "sha256-qrCVCBdzUXJgGHmHLZN8HkkopXxAmuAjaew9kdzOvnk="; inherit (darwin) configd; inherit passthruFun; }; From 6868416e1a873b8350e5f9375af92e4fb0d18299 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 7 Sep 2024 17:41:41 +0200 Subject: [PATCH 042/232] python313: 3.13.0rc1 -> 3.13.0rc2 https://docs.python.org/3.13/whatsnew/changelog.html#python-3-13-0-release-candidate-2 --- pkgs/development/interpreters/python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index 60f4273a63aa..e70816a90eee 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -93,9 +93,9 @@ in { major = "3"; minor = "13"; patch = "0"; - suffix = "rc1"; + suffix = "rc2"; }; - hash = "sha256-Z4uIR3XuwCJNUVn6kAh5AgusoqNs6UL9lf6/oa20pr0="; + hash = "sha256-1g6LfBDeT3HS3/r3x76O+lTcHlMv6THbuE5fYlcJ4jc="; inherit (darwin) configd; inherit passthruFun; }; From 768baf95263fe66aab518d26191b628d5d355d21 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Sat, 7 Sep 2024 18:11:08 +0200 Subject: [PATCH 043/232] opencomposite-helper: drop This helper script made use of `VR_OVERRIDE` which causes issues with some applications/games. As detailed in 3rd-party documentation[0] the recommended way to setup OpenComposite is to configure `$XDG_CONFIG_HOME/openvr/openvrpaths.vrpath` instead. This is also documented on the NixOS Wiki[1]. [0]: https://monado.freedesktop.org/valve-index-setup.html#5-setting-up-opencomposite [1]: https://wiki.nixos.org/wiki/VR#OpenComposite Signed-off-by: Sefa Eyeoglu --- .../op/opencomposite-helper/package.nix | 18 ------------------ pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 pkgs/by-name/op/opencomposite-helper/package.nix diff --git a/pkgs/by-name/op/opencomposite-helper/package.nix b/pkgs/by-name/op/opencomposite-helper/package.nix deleted file mode 100644 index f19f5e868139..000000000000 --- a/pkgs/by-name/op/opencomposite-helper/package.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ writeShellApplication - -, monado -, opencomposite -}: -writeShellApplication { - name = "opencomposite-helper"; - text = '' - # Tell Proton to use OpenComposite instead of OpenVR - export VR_OVERRIDE=${opencomposite}/lib/opencomposite - # Help OpenComposite find the OpenXR runtime - export XR_RUNTIME_JSON=${monado}/share/openxr/1/openxr_monado.json - # Tell Steam Pressure Vessel to allow access to Monado - export PRESSURE_VESSEL_FILESYSTEMS_RW=$XDG_RUNTIME_DIR/monado_comp_ipc - exec "$@" - ''; -} - diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index b191fa244fef..1927b00b37c1 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1117,6 +1117,7 @@ mapAliases ({ openbangla-keyboard = throw "openbangla-keyboard has been replaced by ibus-engines.openbangla-keyboard and fcitx5-openbangla-keyboard"; # added 2023-10-10 opencascade = throw "'opencascade' has been removed as it is unmaintained; consider opencascade-occt instead'"; # Added 2023-09-18 opencl-info = throw "opencl-info has been removed, as the upstream is unmaintained; consider using 'clinfo' instead"; # Added 2024-06-12 + opencomposite-helper = throw "opencomposite-helper has been removed from nixpkgs as it causes issues with some applications. See https://wiki.nixos.org/wiki/VR#OpenComposite for the recommended setup"; # Added 2024-09-07 openconnect_head = openconnect_unstable; # Added 2022-03-29 openconnect_gnutls = openconnect; # Added 2022-03-29 openconnect_unstable = throw "openconnect_unstable was removed from nixpkgs as it was not being updated"; # Added 2023-06-01 From 5297d8f429b4e2554c051c6fb848962205e65b4c Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Sat, 7 Sep 2024 12:46:46 -0400 Subject: [PATCH 044/232] minc-tools: apply nixfmt --- .../science/biology/minc-tools/default.nix | 56 ++++++++++++++----- 1 file changed, 43 insertions(+), 13 deletions(-) diff --git a/pkgs/applications/science/biology/minc-tools/default.nix b/pkgs/applications/science/biology/minc-tools/default.nix index 3dece25915b4..28411a1fd0e8 100644 --- a/pkgs/applications/science/biology/minc-tools/default.nix +++ b/pkgs/applications/science/biology/minc-tools/default.nix @@ -1,24 +1,54 @@ -{ lib, stdenv, fetchFromGitHub, cmake, makeWrapper, flex, bison, perl, TextFormat, - libminc, libjpeg, nifticlib, zlib }: +{ + lib, + stdenv, + fetchFromGitHub, + cmake, + makeWrapper, + flex, + bison, + perl, + TextFormat, + libminc, + libjpeg, + nifticlib, + zlib, +}: stdenv.mkDerivation rec { - pname = "minc-tools"; + pname = "minc-tools"; version = "unstable-2020-07-25"; src = fetchFromGitHub { - owner = "BIC-MNI"; - repo = pname; - rev = "fb0a68a07d281e4e099c5d54df29925240de14c1"; + owner = "BIC-MNI"; + repo = pname; + rev = "fb0a68a07d281e4e099c5d54df29925240de14c1"; sha256 = "0zcv2sdj3k6k0xjqdq8j5bxq8smm48dzai90vwsmz8znmbbm6kvw"; }; - nativeBuildInputs = [ cmake flex bison makeWrapper ]; - buildInputs = [ libminc libjpeg nifticlib zlib ]; - propagatedBuildInputs = [ perl TextFormat ]; + nativeBuildInputs = [ + cmake + flex + bison + makeWrapper + ]; - cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib/cmake" - "-DZNZ_INCLUDE_DIR=${nifticlib}/include/nifti" - "-DNIFTI_INCLUDE_DIR=${nifticlib}/include/nifti" ]; + buildInputs = [ + libminc + libjpeg + nifticlib + zlib + ]; + + propagatedBuildInputs = [ + perl + TextFormat + ]; + + cmakeFlags = [ + "-DLIBMINC_DIR=${libminc}/lib/cmake" + "-DZNZ_INCLUDE_DIR=${nifticlib}/include/nifti" + "-DNIFTI_INCLUDE_DIR=${nifticlib}/include/nifti" + ]; postFixup = '' for prog in minccomplete minchistory mincpik; do @@ -31,6 +61,6 @@ stdenv.mkDerivation rec { description = "Command-line utilities for working with MINC files"; maintainers = with maintainers; [ bcdarwin ]; platforms = platforms.unix; - license = licenses.free; + license = licenses.free; }; } From 6718a1b70f616d78dda20646030a0dd4e6cfc255 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Sat, 7 Sep 2024 12:49:35 -0400 Subject: [PATCH 045/232] minc-tools: unstable-2020-07-25 -> 2.3.06-unstable-2023-08-12 --- pkgs/applications/science/biology/minc-tools/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/biology/minc-tools/default.nix b/pkgs/applications/science/biology/minc-tools/default.nix index 28411a1fd0e8..d4b98fce8719 100644 --- a/pkgs/applications/science/biology/minc-tools/default.nix +++ b/pkgs/applications/science/biology/minc-tools/default.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation rec { pname = "minc-tools"; - version = "unstable-2020-07-25"; + version = "2.3.06-unstable-2023-08-12"; src = fetchFromGitHub { owner = "BIC-MNI"; repo = pname; - rev = "fb0a68a07d281e4e099c5d54df29925240de14c1"; - sha256 = "0zcv2sdj3k6k0xjqdq8j5bxq8smm48dzai90vwsmz8znmbbm6kvw"; + rev = "c86a767dbb63aaa05ee981306fa09f6133bde427"; + hash = "sha256-PLNcuDU0ht1PcjloDhrPzpOpE42gbhPP3rfHtP7WnM4="; }; nativeBuildInputs = [ From 33eb4c56ac6bcad11756404ef304e7dbb78029e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 7 Sep 2024 21:26:07 -0700 Subject: [PATCH 046/232] python312Packages.quil: 0.11.2 -> 0.11.4 Diff: https://github.com/rigetti/quil-rs/compare/quil-py/v0.11.2...quil-py/v0.11.4 Changelog: https://github.com/rigetti/quil-rs/blob/quil-py/v0.11.2/quil-py/CHANGELOG.md --- pkgs/development/python-modules/quil/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/quil/default.nix b/pkgs/development/python-modules/quil/default.nix index 2aee70c5d34d..59e9e3e27181 100644 --- a/pkgs/development/python-modules/quil/default.nix +++ b/pkgs/development/python-modules/quil/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "quil"; - version = "0.11.2"; + version = "0.11.4"; pyproject = true; disabled = pythonOlder "3.8"; @@ -22,13 +22,13 @@ buildPythonPackage rec { owner = "rigetti"; repo = "quil-rs"; rev = "quil-py/v${version}"; - hash = "sha256-c5ujyXIHKJ7OgRpL2HPlvDHycXmcHaMbBQ3gsLEWePI="; + hash = "sha256-I8LV7lqJP2xc8eVxMbixeHMRYiTpmpSahfA3WWRjoHA="; }; cargoDeps = rustPlatform.fetchCargoTarball { name = "${pname}-${version}"; inherit src; - hash = "sha256-GT+IeMqpecCDWFIcs/lJT88XZUTlQL7PP+d3afhHU2s="; + hash = "sha256-U9AVJ4i9E0TeG5cPxdx9hJcMKkZvUXcRfZF7VkM7ddI="; }; buildAndTestSubdir = "quil-py"; From 5bcd6bb7c92400b790259ede5a3589b1cba99b53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 7 Sep 2024 21:44:29 -0700 Subject: [PATCH 047/232] python312Packages.quil: fix pythonImportsCheck --- pkgs/development/python-modules/quil/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/quil/default.nix b/pkgs/development/python-modules/quil/default.nix index 59e9e3e27181..c1cd530a2168 100644 --- a/pkgs/development/python-modules/quil/default.nix +++ b/pkgs/development/python-modules/quil/default.nix @@ -42,7 +42,12 @@ buildPythonPackage rec { dependencies = [ numpy ]; - pythonImportsCheck = [ "numpy" ]; + pythonImportsCheck = [ + "quil.expression" + "quil.instructions" + "quil.program" + "quil.validation" + ]; nativeCheckInputs = [ pytestCheckHook From 4405c246880e366dc77df0e2e0e00260f3f82301 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 8 Sep 2024 19:25:15 +0000 Subject: [PATCH 048/232] dracula-theme: 4.0.0-unstable-2024-08-14 -> 4.0.0-unstable-2024-09-07 --- pkgs/data/themes/dracula-theme/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/themes/dracula-theme/default.nix b/pkgs/data/themes/dracula-theme/default.nix index 2b44edfb7f40..9fef14edb33f 100644 --- a/pkgs/data/themes/dracula-theme/default.nix +++ b/pkgs/data/themes/dracula-theme/default.nix @@ -2,7 +2,7 @@ let themeName = "Dracula"; - version = "4.0.0-unstable-2024-08-14"; + version = "4.0.0-unstable-2024-09-07"; in stdenvNoCC.mkDerivation { pname = "dracula-theme"; @@ -11,8 +11,8 @@ stdenvNoCC.mkDerivation { src = fetchFromGitHub { owner = "dracula"; repo = "gtk"; - rev = "be80a123f1c47a9fdb6181e60a641778e14be2f7"; - hash = "sha256-c+DOYv3Eg31Fdt8qDBNYFPS/zuGInxJu2AsZqDExjPk="; + rev = "19e0dcb5d821df8948a96fef8be551f463fcf0d2"; + hash = "sha256-WfpoGEs2ki84HwE53Fh8CFiybJXZhaiP7m0sfx9Z1X4="; }; propagatedUserEnvPkgs = [ From 6870691a89fc570295e64a079c5e3a81c10e9699 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sun, 8 Sep 2024 22:37:26 +0200 Subject: [PATCH 049/232] lomiri.lomiri: Fix default values for new D-Bus properties See https://gitlab.com/ubports/development/core/lomiri/-/merge_requests/181 for details --- pkgs/desktops/lomiri/applications/lomiri/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/desktops/lomiri/applications/lomiri/default.nix b/pkgs/desktops/lomiri/applications/lomiri/default.nix index 48de383fdfa2..14f90c4b3b09 100644 --- a/pkgs/desktops/lomiri/applications/lomiri/default.nix +++ b/pkgs/desktops/lomiri/applications/lomiri/default.nix @@ -79,6 +79,13 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-J9ySZgWd7KR7aU1cCRu5iirq7bi3NdLR9SZs9Pd1I8w="; }) + # Remove when https://gitlab.com/ubports/development/core/lomiri/-/merge_requests/181 merged & in release + (fetchpatch { + name = "0101-lomiri-Fix-accountsservice-property-defaults.patch"; + url = "https://gitlab.com/ubports/development/core/lomiri/-/commit/369c7aac242f1798ce46b1415ab6112ac5e9d095.patch"; + hash = "sha256-ieJCA1F/ljmgwEfGXWCTQNG1A/bmiJhNH9uzzULpUEc="; + }) + # Fix greeter & related settings # These patches are seemingly not submitted upstream yet (fetchpatch { From 398cfa7791461d398f0a2598c0fb9f34ae56e539 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 9 Sep 2024 07:28:58 +0000 Subject: [PATCH 050/232] rke2_latest: 1.30.3+rke2r1 -> 1.31.0+rke2r1 --- .../networking/cluster/rke2/latest/versions.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/cluster/rke2/latest/versions.nix b/pkgs/applications/networking/cluster/rke2/latest/versions.nix index 9cf3dfe955d7..f04ea8df2eb0 100644 --- a/pkgs/applications/networking/cluster/rke2/latest/versions.nix +++ b/pkgs/applications/networking/cluster/rke2/latest/versions.nix @@ -1,14 +1,14 @@ { - rke2Version = "1.30.3+rke2r1"; - rke2RepoSha256 = "1ix7mm11j9ir9xz0yypznja5mcbizibclh314sgcsfxhg39w4a70"; - rke2Commit = "e742dc53b463d205773cfb25633309671ce6777c"; - rke2VendorHash = "sha256-6ma0t0ElZ13VTS/aK5AknJ00F45kZXn36b5sePK2wh0="; - k8sVersion = "v1.30.3"; - k8sImageTag = "v1.30.3-rke2r1-build20240717"; + rke2Version = "1.31.0+rke2r1"; + rke2RepoSha256 = "1xf7yhpfwiydhl31dd8wc2bhq0j470ad8vazjzzsl76skcy07rbc"; + rke2Commit = "4bf1156f41631dc0e81d66a6834a53d14b48aaef"; + rke2VendorHash = "sha256-/ALzC2fYYI+DbF+2TSNBiMy57T8wfXGPpdyKtbqdrtE="; + k8sVersion = "v1.31.0"; + k8sImageTag = "v1.31.0-rke2r1-build20240815"; etcdVersion = "v3.5.13-k3s1"; pauseVersion = "3.6"; ccmVersion = "v1.29.3-build20240515"; - dockerizedVersion = "v1.30.3-dev."; + dockerizedVersion = "v1.31.0-dev."; golangVersion = "go1.22.5"; - eol = "2025-06-28"; + eol = "2025-10-28"; } From f7c4a6b61323fa6a61042656f1f0b5aabb4d66e8 Mon Sep 17 00:00:00 2001 From: DataHearth Date: Mon, 9 Sep 2024 12:28:44 +0200 Subject: [PATCH 051/232] spacedrive: 0.3.1 -> 0.4.2 --- pkgs/by-name/sp/spacedrive/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/sp/spacedrive/package.nix b/pkgs/by-name/sp/spacedrive/package.nix index dc738be669d9..cf3ca6f0639a 100644 --- a/pkgs/by-name/sp/spacedrive/package.nix +++ b/pkgs/by-name/sp/spacedrive/package.nix @@ -17,22 +17,22 @@ let pname = "spacedrive"; - version = "0.3.1"; + version = "0.4.2"; src = fetchurl { aarch64-darwin = { url = "https://github.com/spacedriveapp/spacedrive/releases/download/${version}/Spacedrive-darwin-aarch64.dmg"; - hash = "sha256-9E7h03zJtH8b6khDcbBsB46iVWwl48s+GJuBMOmEre4="; + hash = "sha256-W0nFNmBgrypTj1Y6r6vstdL0UUaP9jTOH5RgAirwxsY="; }; x86_64-darwin = { url = "https://github.com/spacedriveapp/spacedrive/releases/download/${version}/Spacedrive-darwin-x86_64.dmg"; - hash = "sha256-h+B7tc6jXJUFNEMhG6ZNch+grtgUeAzfa37BDoZ6M8Q="; + hash = "sha256-iX7aUs2k1fjOoDxkgXbePEYXYKFK3rGFlN9b0+gz378="; }; x86_64-linux = { url = "https://github.com/spacedriveapp/spacedrive/releases/download/${version}/Spacedrive-linux-x86_64.deb"; - hash = "sha256-E1mOODG4YzBc0TPZJmKgrt/c5hp5LwzLaYPl+J5dnkg="; + hash = "sha256-SbuL96xNEOPZ3Z5jd0gfJtNkUoEjO4W+P7K9mvyNmHA="; }; } .${stdenv.system} or (throw "${pname}-${version}: ${stdenv.system} is unsupported."); From 762311aa23751eedef950428f0215d19abb37b7e Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 9 Sep 2024 18:24:54 +0200 Subject: [PATCH 052/232] python312Packages.sentry-sdk_2: 2.13.0 -> 2.14.0 https://github.com/getsentry/sentry-python/blob/refs/tags/2.14.0/CHANGELOG.md --- pkgs/development/python-modules/sentry-sdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/sentry-sdk/default.nix b/pkgs/development/python-modules/sentry-sdk/default.nix index e389cf4d08dc..14c1db340348 100644 --- a/pkgs/development/python-modules/sentry-sdk/default.nix +++ b/pkgs/development/python-modules/sentry-sdk/default.nix @@ -63,14 +63,14 @@ buildPythonPackage rec { pname = "sentry-sdk"; - version = "2.13.0"; + version = "2.14.0"; pyproject = true; src = fetchFromGitHub { owner = "getsentry"; repo = "sentry-python"; rev = "refs/tags/${version}"; - hash = "sha256-TZzu9cR5HrgmsPRkuP1LqEBA7uosbBzLGT63LLj2yyc="; + hash = "sha256-VrrzM81O3tG2GveP8Eq9kxVPSok7JIj3XjGOauGIlxY="; }; postPatch = '' From 5977a9b8b52cd0c6003e569275c3d54eb0473673 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Mon, 9 Sep 2024 20:17:18 +0200 Subject: [PATCH 053/232] pnpm_9: 9.9.0 -> 9.10.0 --- pkgs/development/tools/pnpm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/pnpm/default.nix b/pkgs/development/tools/pnpm/default.nix index 778fa66e5ee8..89419379239f 100644 --- a/pkgs/development/tools/pnpm/default.nix +++ b/pkgs/development/tools/pnpm/default.nix @@ -8,8 +8,8 @@ let hash = "sha256-2qJ6C1QbxjUyP/lsLe2ZVGf/n+bWn/ZwIVWKqa2dzDY="; }; "9" = { - version = "9.9.0"; - hash = "sha256-ekJh5Q2aRNkkC69snW4QCJ3PCnnQAH8qJphaaScyQXc="; + version = "9.10.0"; + hash = "sha256-NVqKuNu2rUG+++85vE/Wtd+F4Sdh0nJL0B8T6HjeSxM"; }; }; From bfe4480e7a7bf890ddd137bda5645c14cde25f35 Mon Sep 17 00:00:00 2001 From: Jakub Mendyk Date: Mon, 9 Sep 2024 20:32:11 +0200 Subject: [PATCH 054/232] maintainers: add jmendyk --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 2aa4845b8096..0edbf0cef95f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -9892,6 +9892,12 @@ { fingerprint = "816D 23F5 E672 EC58 7674 4A73 197F 9A63 2D13 9E30"; } ]; }; + jmendyk = { + email = "jakub@ndyk.me"; + github = "JMendyk"; + githubId = 9089004; + name = "Jakub Mendyk"; + }; jmettes = { email = "jonathan@jmettes.com"; github = "jmettes"; From d16f617b0a82b2616d55305122cda78dd61bc263 Mon Sep 17 00:00:00 2001 From: Martin Joerg Date: Mon, 9 Sep 2024 19:19:14 +0000 Subject: [PATCH 055/232] cimg: 3.4.0 -> 3.4.2 https://github.com/GreycLab/CImg/compare/refs/tags/v.3.4.0...refs/tags/v.3.4.2 --- pkgs/by-name/ci/cimg/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ci/cimg/package.nix b/pkgs/by-name/ci/cimg/package.nix index 1d45df4f632e..5d2a68e4be26 100644 --- a/pkgs/by-name/ci/cimg/package.nix +++ b/pkgs/by-name/ci/cimg/package.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "cimg"; - version = "3.4.0"; + version = "3.4.2"; src = fetchFromGitHub { owner = "GreycLab"; repo = "CImg"; rev = "refs/tags/v.${finalAttrs.version}"; - hash = "sha256-BnDS1n1aIQh9HJZeZv0hR7vo2l6Kf9B/11fYFbb/cpQ="; + hash = "sha256-lYs8V/phdyM1kpcxBDS3vAjxFgGCaaOCdNHU3//dgDs="; }; outputs = [ "out" "doc" ]; From cde3fb22d0785941e7a5a55ac4fb22466b4e8940 Mon Sep 17 00:00:00 2001 From: Martin Joerg Date: Mon, 9 Sep 2024 19:19:14 +0000 Subject: [PATCH 056/232] gmic-qt: 3.4.0 -> 3.4.2 https://github.com/c-koi/gmic-qt/compare/refs/tags/v.3.4.0...refs/tags/v.3.4.2 --- pkgs/by-name/gm/gmic-qt/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gm/gmic-qt/package.nix b/pkgs/by-name/gm/gmic-qt/package.nix index 5d097f13f5c6..dec42a99a488 100644 --- a/pkgs/by-name/gm/gmic-qt/package.nix +++ b/pkgs/by-name/gm/gmic-qt/package.nix @@ -49,13 +49,13 @@ assert lib.assertMsg stdenv.mkDerivation (finalAttrs: { pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}"; - version = "3.4.0"; + version = "3.4.2"; src = fetchFromGitHub { owner = "c-koi"; repo = "gmic-qt"; rev = "v.${finalAttrs.version}"; - hash = "sha256-IZMvvhWQwbnyxF3CkvEjySl3o3DB6UucpjqOFR9NjQ0="; + hash = "sha256-fM6dBxBC2b1/v+rfiP//QaAcTJmMtYPn4OUNwVqKhYk="; }; nativeBuildInputs = [ From acf24f6d38b6eb2e1fe80d3361875c582df60e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 9 Sep 2024 12:19:49 -0700 Subject: [PATCH 057/232] streamdeck-ui: 4.1.2 -> 4.1.3 Diff: https://github.com/streamdeck-linux-gui/streamdeck-linux-gui/compare/v4.1.2...v4.1.3 Changelog: https://github.com/streamdeck-linux-gui/streamdeck-linux-gui/releases/tag/v4.1.3 --- pkgs/by-name/st/streamdeck-ui/package.nix | 30 +++++++++-------------- 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/pkgs/by-name/st/streamdeck-ui/package.nix b/pkgs/by-name/st/streamdeck-ui/package.nix index 1549d2c6e1c9..9f68a707bfca 100644 --- a/pkgs/by-name/st/streamdeck-ui/package.nix +++ b/pkgs/by-name/st/streamdeck-ui/package.nix @@ -11,35 +11,28 @@ xvfb-run, }: -let - # There are breaking changes between 6 and 7 - importlib-metadata_6 = python3Packages.importlib-metadata.overrideAttrs (_: rec { - version = "6.9.0"; - src = fetchPypi { - pname = "importlib_metadata"; - inherit version; - hash = "sha256-6Ky1I8M1qRgiZ04Um0bAOZ7E0yjE0fbknCc9pf8CAbk="; - }; - }); -in - python3Packages.buildPythonApplication rec { pname = "streamdeck-ui"; - version = "4.1.2"; + version = "4.1.3"; + pyproject = true; src = fetchFromGitHub { repo = "streamdeck-linux-gui"; owner = "streamdeck-linux-gui"; rev = "v${version}"; - hash = "sha256-CSsFPGnKVQUCND6YOA9kfO41KS85C57YL9LcrWlQRKo="; + hash = "sha256-KpsW3EycYRYU5YOg7NNGv5eeZbS9MAikj0Ke2ybPzAU="; }; - format = "pyproject"; + pythonRelaxDeps = [ + "importlib-metadata" + "pillow" + ]; - pythonRelaxDeps = [ "pillow" ]; + build-system = [ + python3Packages.poetry-core + ]; nativeBuildInputs = [ - python3Packages.poetry-core copyDesktopItems qt6.wrapQtAppsHook wrapGAppsHook3 @@ -56,7 +49,7 @@ python3Packages.buildPythonApplication rec { pyside6 streamdeck xlib - importlib-metadata_6 + importlib-metadata evdev ] ++ lib.optionals stdenv.isLinux [ qt6.qtwayland ]; @@ -128,6 +121,7 @@ python3Packages.buildPythonApplication rec { ]; meta = { + changelog = "https://github.com/streamdeck-linux-gui/streamdeck-linux-gui/releases/tag/v${version}"; description = "Linux compatible UI for the Elgato Stream Deck"; downloadPage = "https://github.com/streamdeck-linux-gui/streamdeck-linux-gui/"; homepage = "https://streamdeck-linux-gui.github.io/streamdeck-linux-gui/"; From 130cdb813001aaa9d140a5e41970244dceb5478e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 6 Aug 2024 06:51:39 +0000 Subject: [PATCH 058/232] sshesame: 0.0.38 -> 0.0.39 --- pkgs/by-name/ss/sshesame/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ss/sshesame/package.nix b/pkgs/by-name/ss/sshesame/package.nix index 4a8baeb05cc8..88dbff4baaa1 100644 --- a/pkgs/by-name/ss/sshesame/package.nix +++ b/pkgs/by-name/ss/sshesame/package.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "sshesame"; - version = "0.0.38"; + version = "0.0.39"; src = fetchFromGitHub { owner = "jaksi"; repo = "sshesame"; rev = "v${version}"; - hash = "sha256-CSoDUfbYSf+V7jHVqXGhLc6Mrluy+XbZKCs6IA8reIw="; + hash = "sha256-h0qvi90gbWm4LCL3FeipW8BKkbuUt0xGMTjaaeYadnE="; }; - vendorHash = "sha256-tfxqr1yDXE+ACCfAtZ0xePpB/xktfwJe/xPU8qAVz54="; + vendorHash = "sha256-1v+cNMr2jpLPfxusPsgnFN31DwuNntXuq3sDNpWL0Rg="; ldflags = [ "-s" "-w" ]; From 1ac9af96f493ab456693acbb2bd943f9b7babb98 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Jul 2024 18:48:03 +0000 Subject: [PATCH 059/232] python312Packages.vertica-python: 1.3.8 -> 1.4.0 --- pkgs/development/python-modules/vertica-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/vertica-python/default.nix b/pkgs/development/python-modules/vertica-python/default.nix index ac2dc4d195fc..d07f6f2ad5ee 100644 --- a/pkgs/development/python-modules/vertica-python/default.nix +++ b/pkgs/development/python-modules/vertica-python/default.nix @@ -13,14 +13,14 @@ buildPythonPackage rec { pname = "vertica-python"; - version = "1.3.8"; + version = "1.4.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-5SuJT8Mu/4MnAmTWb9TL5b0f0Hug2n70X5BhZME2vrw="; + hash = "sha256-VCB4ri/t7mlK3tsE2Bxu3Cd7h+10QDApQhB9hqC81EU="; }; propagatedBuildInputs = [ From c3462538ab7069eaadab2252cd9c54e08a0fc974 Mon Sep 17 00:00:00 2001 From: natsukium Date: Sun, 28 Jul 2024 12:38:41 +0900 Subject: [PATCH 060/232] python312Packages.vertica-python: refactor --- .../python-modules/vertica-python/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/vertica-python/default.nix b/pkgs/development/python-modules/vertica-python/default.nix index d07f6f2ad5ee..19a8b8ba0df7 100644 --- a/pkgs/development/python-modules/vertica-python/default.nix +++ b/pkgs/development/python-modules/vertica-python/default.nix @@ -2,19 +2,19 @@ lib, buildPythonPackage, fetchPypi, - future, mock, parameterized, pytestCheckHook, python-dateutil, pythonOlder, + setuptools, six, }: buildPythonPackage rec { pname = "vertica-python"; version = "1.4.0"; - format = "setuptools"; + pyproject = true; disabled = pythonOlder "3.7"; @@ -23,8 +23,9 @@ buildPythonPackage rec { hash = "sha256-VCB4ri/t7mlK3tsE2Bxu3Cd7h+10QDApQhB9hqC81EU="; }; - propagatedBuildInputs = [ - future + build-system = [ setuptools ]; + + dependencies = [ python-dateutil six ]; From b349b9fe1bbf043d430c086801e9a8017f89a0f1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 10 Sep 2024 00:45:57 +0000 Subject: [PATCH 061/232] ec2-metadata-mock: 1.11.2 -> 1.12.0 --- pkgs/development/tools/ec2-metadata-mock/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/ec2-metadata-mock/default.nix b/pkgs/development/tools/ec2-metadata-mock/default.nix index 4b398629cab1..5663782852c1 100644 --- a/pkgs/development/tools/ec2-metadata-mock/default.nix +++ b/pkgs/development/tools/ec2-metadata-mock/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "ec2-metadata-mock"; - version = "1.11.2"; + version = "1.12.0"; src = fetchFromGitHub { owner = "aws"; repo = "amazon-ec2-metadata-mock"; rev = "v${version}"; - sha256 = "sha256-hYyJtkwAzweH8boUY3vrvy6Ug+Ier5f6fvR52R+Di8o="; + sha256 = "sha256-8X6LBGo496fG0Chhvg3jAaUF6mp8psCzHd+Es75z27Y="; }; - vendorHash = "sha256-T45abGVoiwxAEO60aPH3hUqiH6ON3aRhkrOFcOi+Bm8="; + vendorHash = "sha256-jRJX4hvfRuhR5TlZe7LsXaOlUCwmQGem2QKlX3vuk8c="; postInstall = '' mv $out/bin/{cmd,ec2-metadata-mock} From 55f090dee003f40842326bad27fac66185efc1d6 Mon Sep 17 00:00:00 2001 From: Mathias Zhang Date: Tue, 10 Sep 2024 10:13:23 +0800 Subject: [PATCH 062/232] linux_xanmod: 6.6.48 -> 6.6.50 --- pkgs/os-specific/linux/kernel/xanmod-kernels.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix index fa22ed3bc3bd..de3d7ea493dc 100644 --- a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix +++ b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix @@ -7,8 +7,8 @@ let # kernel config in the xanmod version commit variants = { lts = { - version = "6.6.48"; - hash = "sha256-Ayuq4qKWu/wgG3wiMNrgkcc6BNSUReqileNx4vYMtak="; + version = "6.6.50"; + hash = "sha256-NaAJMsOlN1T/KfE2lbQdeoS/B9l2YdVMDdmrN9HygHw="; }; main = { version = "6.10.7"; From 7f5b5f2eba7732c36a80d93d73b2154003dd5306 Mon Sep 17 00:00:00 2001 From: Mathias Zhang Date: Tue, 10 Sep 2024 10:35:58 +0800 Subject: [PATCH 063/232] linux_xanmod_latest: 6.10.7 -> 6.10.9 --- pkgs/os-specific/linux/kernel/xanmod-kernels.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix index de3d7ea493dc..cf322e59bdc8 100644 --- a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix +++ b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix @@ -11,8 +11,8 @@ let hash = "sha256-NaAJMsOlN1T/KfE2lbQdeoS/B9l2YdVMDdmrN9HygHw="; }; main = { - version = "6.10.7"; - hash = "sha256-I2gtxaANJBmUlko7I9x1izLTyCBMqvUW/1Qx3a0H4uU="; + version = "6.10.9"; + hash = "sha256-hzSWeyJF2JeP12M1PP+CgcFKMahjTw4pE7PcAuozksw="; }; }; From e50f3d92cd726a9fd1bf73892107310ddb5b25aa Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Tue, 10 Sep 2024 05:54:41 +0200 Subject: [PATCH 064/232] coreboot-toolchain: Drop nds32le toolchain build coreboot does not use this toolchain for quite some time anymore. Drop it. Signed-off-by: Felix Singer --- pkgs/development/tools/misc/coreboot-toolchain/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/tools/misc/coreboot-toolchain/default.nix b/pkgs/development/tools/misc/coreboot-toolchain/default.nix index 29e90c031cb7..a7a923a6d484 100644 --- a/pkgs/development/tools/misc/coreboot-toolchain/default.nix +++ b/pkgs/development/tools/misc/coreboot-toolchain/default.nix @@ -102,7 +102,6 @@ lib.listToAttrs ( "aarch64" "riscv" "ppc64" - "nds32le" ] ) From 1e557511c606a619fe0e576bfed8ed2bb4be9741 Mon Sep 17 00:00:00 2001 From: Honnip Date: Tue, 10 Sep 2024 21:18:37 +0900 Subject: [PATCH 065/232] dissent: 0.0.27 -> 0.0.30 --- pkgs/by-name/di/dissent/package.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/di/dissent/package.nix b/pkgs/by-name/di/dissent/package.nix index ecc1b68c50d4..1014b1f1fc33 100644 --- a/pkgs/by-name/di/dissent/package.nix +++ b/pkgs/by-name/di/dissent/package.nix @@ -7,18 +7,20 @@ , libcanberra-gtk3 , pkg-config , sound-theme-freedesktop +, libspelling +, gtksourceview5 , wrapGAppsHook4 }: buildGoModule rec { pname = "dissent"; - version = "0.0.27"; + version = "0.0.30"; src = fetchFromGitHub { owner = "diamondburned"; repo = "dissent"; rev = "v${version}"; - hash = "sha256-aksQgkeisNvfp++Gobg4ITA1au2GzTgKmFtVCrLkfac="; + hash = "sha256-wBDN9eUPOr9skTTgA0ea50Byta3qVr1loRrfMWhnxP8="; }; nativeBuildInputs = [ @@ -37,6 +39,8 @@ buildGoModule rec { libadwaita libcanberra-gtk3 sound-theme-freedesktop + libspelling + gtksourceview5 ]; postInstall = '' @@ -47,7 +51,7 @@ buildGoModule rec { install -D -m 444 -t $out/share/dbus-1/services nix/so.libdb.dissent.service ''; - vendorHash = "sha256-8LY7XEMe91rGOGLr6TJhoEnl2cWArcQ5VXMV9NpZaL8="; + vendorHash = "sha256-TXqdO+DjnDD/+zwm3gK3+sxMTEVSHuceKz4ZJVH5Y34="; meta = with lib; { description = "A third-party Discord client designed for a smooth, native experience (formerly gtkcord4)"; From d5b8a5b5225b66374774a2d7f7ad5cfd4673f63a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 10 Sep 2024 14:06:21 +0000 Subject: [PATCH 066/232] ocamlPackages.containers: 3.13.1 -> 3.14 --- pkgs/development/ocaml-modules/containers/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/containers/default.nix b/pkgs/development/ocaml-modules/containers/default.nix index 252a61369feb..8d7f666056bc 100644 --- a/pkgs/development/ocaml-modules/containers/default.nix +++ b/pkgs/development/ocaml-modules/containers/default.nix @@ -5,7 +5,7 @@ }: buildDunePackage rec { - version = "3.13.1"; + version = "3.14"; pname = "containers"; minimalOCamlVersion = "4.08"; @@ -14,7 +14,7 @@ buildDunePackage rec { owner = "c-cube"; repo = "ocaml-containers"; rev = "v${version}"; - hash = "sha256-jkXh/dBRotWXvA77M/+tm39qsCiBsH/HSs+Y9D9QCek="; + hash = "sha256-+r1zv7tfCS/dqnTSxpWSagTKVRauqgN6Np1Xa+aQT8k="; }; buildInputs = [ dune-configurator ]; From c370221bd91b5cb707935fd1cc6102512b0cb1a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 10 Sep 2024 11:42:34 -0700 Subject: [PATCH 067/232] python312Packages.recurring-ical-events: 3.2.0 -> 3.3.0 Diff: https://github.com/niccokunzmann/python-recurring-ical-events/compare/v3.2.0...v3.3.0 Changelog: https://github.com/niccokunzmann/python-recurring-ical-events/blob/v3.3.0/README.rst#changelog --- .../recurring-ical-events/default.nix | 20 ++++++++----------- 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/recurring-ical-events/default.nix b/pkgs/development/python-modules/recurring-ical-events/default.nix index f5a266700b97..3be853d2fc5e 100644 --- a/pkgs/development/python-modules/recurring-ical-events/default.nix +++ b/pkgs/development/python-modules/recurring-ical-events/default.nix @@ -3,7 +3,6 @@ buildPythonPackage, pythonOlder, fetchFromGitHub, - fetchpatch2, setuptools, icalendar, python-dateutil, @@ -17,7 +16,7 @@ buildPythonPackage rec { pname = "recurring-ical-events"; - version = "3.2.0"; + version = "3.3.0"; disabled = pythonOlder "3.8"; @@ -27,18 +26,9 @@ buildPythonPackage rec { owner = "niccokunzmann"; repo = "python-recurring-ical-events"; rev = "v${version}"; - hash = "sha256-qglApMoRtMqg03HBO00k9anRquA5X9ew919QUMWIpjo="; + hash = "sha256-1Ggxi61epge6Rxc/vJ7OuuNjjeaQYReEPeOZV8DLghk="; }; - patches = [ - # https://github.com/niccokunzmann/python-recurring-ical-events/pull/169 - (fetchpatch2 { - name = "make-tests-compatible-with-icalendar-v5.patch"; - url = "https://github.com/niccokunzmann/python-recurring-ical-events/commit/0bb4b4586b55978a1d154cd7abbc42eaf1cefb92.patch"; - hash = "sha256-1tG/U0ELMIwS50eolXNou0aFQBZGNjcc2Zcz1gd8rd4="; - }) - ]; - build-system = [ setuptools ]; pythonRelaxDeps = [ "icalendar" ]; @@ -57,6 +47,12 @@ buildPythonPackage rec { pygments ]; + disabledTests = lib.optionals (lib.versionOlder icalendar.version "6") [ + # ModuleNotFoundError: No module named 'icalendar.timezone' + "test_can_import_zoneinfo" + "test_documentation_file" + ]; + pythonImportsCheck = [ "recurring_ical_events" ]; meta = { From 7817e3d3dac80fe3ee61842feb62ecca9a9be449 Mon Sep 17 00:00:00 2001 From: Honnip Date: Wed, 11 Sep 2024 11:58:45 +0900 Subject: [PATCH 068/232] spicetify-cli: 2.37.7 -> 2.38.3 --- pkgs/by-name/sp/spicetify-cli/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sp/spicetify-cli/package.nix b/pkgs/by-name/sp/spicetify-cli/package.nix index 17749c01542b..524d761d7cbc 100644 --- a/pkgs/by-name/sp/spicetify-cli/package.nix +++ b/pkgs/by-name/sp/spicetify-cli/package.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "spicetify-cli"; - version = "2.37.7"; + version = "2.38.3"; src = fetchFromGitHub { owner = "spicetify"; repo = "cli"; rev = "v${version}"; - hash = "sha256-Sfh2dvqCsV5rl6SmfqV6icJrTcsJy89RibCIRrf2p0k="; + hash = "sha256-la0zNYWzsU49Z6OKTefocN3xzoyNceaPAzG+CAFKMPc="; }; - vendorHash = "sha256-kv+bMyVOJTztn8mNNTK/kp4nvc5m1I5M041s3nPpob8="; + vendorHash = "sha256-BT/zmeNKr2pNBSCaRtT/Dxm3uCshd1j4IW0xU7b9Yz4="; ldflags = [ "-s -w" From 25ffd03ab105962cd128b331bb7070b67974e099 Mon Sep 17 00:00:00 2001 From: Bruno Bigras Date: Tue, 10 Sep 2024 23:42:11 -0400 Subject: [PATCH 069/232] glasskube: 0.17.0 -> 0.20.1 --- pkgs/by-name/gl/glasskube/package.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/gl/glasskube/package.nix b/pkgs/by-name/gl/glasskube/package.nix index 254a27f2cca0..dd730adc1308 100644 --- a/pkgs/by-name/gl/glasskube/package.nix +++ b/pkgs/by-name/gl/glasskube/package.nix @@ -1,5 +1,5 @@ { lib -, buildGoModule +, buildGo123Module , buildNpmPackage , fetchFromGitHub , nix-update-script @@ -7,12 +7,12 @@ }: let - version = "0.17.0"; + version = "0.20.1"; gitSrc = fetchFromGitHub { owner = "glasskube"; repo = "glasskube"; rev = "refs/tags/v${version}"; - hash = "sha256-uo612trSSdbj6XpZHddXELNQideJ/M/qh+LLdzVZL6U="; + hash = "sha256-0ndYFpfijuBSODdl5XJah6/avLE1Bf6OZ0p0KGRB3dw="; }; web-bundle = buildNpmPackage rec { inherit version; @@ -20,7 +20,7 @@ let src = gitSrc; - npmDepsHash = "sha256-s3ViR6zBUTTu864fiD06N1ouMUYXccj6AMXt5pj+BSc="; + npmDepsHash = "sha256-BcYrZ95BLxKXQ4c1bHqNZKT9Tv4rAK72WSwrjhIsASY="; dontNpmInstall = true; @@ -34,13 +34,13 @@ let ''; }; -in buildGoModule rec { +in buildGo123Module rec { inherit version; pname = "glasskube"; src = gitSrc; - vendorHash = "sha256-KzoFPhySX2w7ndU6nndx/KqoUfE8o6OT/9a2DEz5YuI="; + vendorHash = "sha256-BTJzhKf8aGHKbG0fdWVRWy0rFob9ZSTH45ME+4rdohU="; CGO_ENABLED = 0; From 2b5ca0f433d90f3db200df8b02f8723304fe1e2b Mon Sep 17 00:00:00 2001 From: Dominique Martinet Date: Sat, 10 Aug 2024 14:21:00 +0900 Subject: [PATCH 070/232] ankisyncd: remove --- .../manual/release-notes/rl-2009.section.md | 2 +- .../manual/release-notes/rl-2311.section.md | 3 +- .../manual/release-notes/rl-2405.section.md | 2 +- .../manual/release-notes/rl-2411.section.md | 2 + nixos/modules/module-list.nix | 1 - nixos/modules/rename.nix | 1 + .../modules/services/misc/anki-sync-server.md | 10 - nixos/modules/services/misc/ankisyncd.nix | 69 - pkgs/servers/ankisyncd/Cargo.lock | 4005 ----------------- pkgs/servers/ankisyncd/default.nix | 53 - pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 - 12 files changed, 7 insertions(+), 4144 deletions(-) delete mode 100644 nixos/modules/services/misc/ankisyncd.nix delete mode 100644 pkgs/servers/ankisyncd/Cargo.lock delete mode 100644 pkgs/servers/ankisyncd/default.nix diff --git a/nixos/doc/manual/release-notes/rl-2009.section.md b/nixos/doc/manual/release-notes/rl-2009.section.md index 900c20dbe717..d128696b2570 100644 --- a/nixos/doc/manual/release-notes/rl-2009.section.md +++ b/nixos/doc/manual/release-notes/rl-2009.section.md @@ -120,7 +120,7 @@ In addition to 1119 new, 118 updated, and 476 removed options; 61 new modules we - Services: - - [services.ankisyncd.enable](options.html#opt-services.ankisyncd.enable) Anki sync server + - `services.ankisyncd.enable` Anki sync server - [services.bazarr.enable](options.html#opt-services.bazarr.enable) Subtitle manager for Sonarr and Radarr diff --git a/nixos/doc/manual/release-notes/rl-2311.section.md b/nixos/doc/manual/release-notes/rl-2311.section.md index 0fd5f802d249..e8879e746a03 100644 --- a/nixos/doc/manual/release-notes/rl-2311.section.md +++ b/nixos/doc/manual/release-notes/rl-2311.section.md @@ -661,8 +661,7 @@ Make sure to also check the many updates in the [Nixpkgs library](#sec-release-2 Cheese as the default camera application, and Photos will no longer be installed. -- The module [services.ankisyncd](#opt-services.ankisyncd.package) has been - switched to +- The module `services.ankisyncd` has been switched to [anki-sync-server-rs](https://github.com/ankicommunity/anki-sync-server-rs). The former version written in Python was difficult to update, did not receive updates in a while, and did not support recent versions of Anki. diff --git a/nixos/doc/manual/release-notes/rl-2405.section.md b/nixos/doc/manual/release-notes/rl-2405.section.md index 3bb993ec33c6..158257f20a7a 100644 --- a/nixos/doc/manual/release-notes/rl-2405.section.md +++ b/nixos/doc/manual/release-notes/rl-2405.section.md @@ -62,7 +62,7 @@ In addition to numerous new and upgraded packages, this release has the followin - [Anki Sync Server](https://docs.ankiweb.net/sync-server.html), the official sync server built into recent versions of Anki. Available as [services.anki-sync-server](#opt-services.anki-sync-server.enable). -The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been marked deprecated and will be dropped after 24.05 due to lack of maintenance of the ankisyncd software. +The pre-existing `services.ankisyncd` has been marked deprecated and will be dropped after 24.05 due to lack of maintenance of the ankisyncd software. - [ALVR](https://github.com/alvr-org/alvr), a VR desktop streamer. Available as [programs.alvr](#opt-programs.alvr.enable). diff --git a/nixos/doc/manual/release-notes/rl-2411.section.md b/nixos/doc/manual/release-notes/rl-2411.section.md index ca795a6af656..fd81e316be9c 100644 --- a/nixos/doc/manual/release-notes/rl-2411.section.md +++ b/nixos/doc/manual/release-notes/rl-2411.section.md @@ -274,6 +274,8 @@ - Android NDK version 26 and SDK version 33 are now the default versions used for cross compilation to android. +- the `ankisyncd` package and its `services.ankisyncd` have been removed, use [`services.anki-sync-server`](#opt-services.anki-sync-server.enable) instead. + - `nodePackages.vscode-css-languageserver-bin`, `nodePackages.vscode-html-languageserver-bin`, and `nodePackages.vscode-json-languageserver-bin` were dropped due to an unmaintained upstream. The `vscode-langservers-extracted` package is a maintained drop-in replacement. diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index b06521dcb9b3..66d82f2ab2d2 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -712,7 +712,6 @@ ./services/misc/airsonic.nix ./services/misc/amazon-ssm-agent.nix ./services/misc/ananicy.nix - ./services/misc/ankisyncd.nix ./services/misc/anki-sync-server.nix ./services/misc/apache-kafka.nix ./services/misc/atuin.nix diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 91ef9b43cd3e..6d2d1acb8e15 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -52,6 +52,7 @@ in is broken when using cgroups-v2. '') (mkRemovedOptionModule [ "services" "antennas" ] "The antennas package and the corresponding module have been removed as they only work with tvheadend, which nobody was willing to maintain and was stuck on an unmaintained version that required FFmpeg 4; please see https://github.com/NixOS/nixpkgs/pull/332259 if you are interested in maintaining a newer version.") + (mkRemovedOptionModule [ "services" "ankisyncd" ] "`services.ankisyncd` has been replaced by `services.anki-sync-server`.") (mkRemovedOptionModule [ "services" "baget" "enable" ] "The baget module was removed due to the upstream package being unmaintained.") (mkRemovedOptionModule [ "services" "beegfs" ] "The BeeGFS module has been removed") (mkRemovedOptionModule [ "services" "beegfsEnable" ] "The BeeGFS module has been removed") diff --git a/nixos/modules/services/misc/anki-sync-server.md b/nixos/modules/services/misc/anki-sync-server.md index 5482a4aa0e5f..4796abf25c43 100644 --- a/nixos/modules/services/misc/anki-sync-server.md +++ b/nixos/modules/services/misc/anki-sync-server.md @@ -56,13 +56,3 @@ following options: services.anki-sync-server.openFirewall = true; } ``` - - -## Alternatives {#module-services-anki-sync-server-alternatives} - -The [`ankisyncd` NixOS -module](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/ankisyncd.nix) -provides similar functionality, but using a third-party implementation, -[`anki-sync-server-rs`](https://github.com/ankicommunity/anki-sync-server-rs/). -According to that project's README, it is "no longer maintained", and not -recommended for Anki 2.1.64+. diff --git a/nixos/modules/services/misc/ankisyncd.nix b/nixos/modules/services/misc/ankisyncd.nix deleted file mode 100644 index dd05b49538eb..000000000000 --- a/nixos/modules/services/misc/ankisyncd.nix +++ /dev/null @@ -1,69 +0,0 @@ -{ config, lib, pkgs, ... }: -let - cfg = config.services.ankisyncd; - - name = "ankisyncd"; - - stateDir = "/var/lib/${name}"; - - toml = pkgs.formats.toml {}; - - configFile = toml.generate "ankisyncd.conf" { - listen = { - host = cfg.host; - port = cfg.port; - }; - paths.root_dir = stateDir; - # encryption.ssl_enable / cert_file / key_file - }; -in - { - options.services.ankisyncd = { - enable = lib.mkEnableOption "ankisyncd, a standalone unofficial anky sync server"; - - package = lib.mkPackageOption pkgs "ankisyncd" { }; - - host = lib.mkOption { - type = lib.types.str; - default = "localhost"; - description = "ankisyncd host"; - }; - - port = lib.mkOption { - type = lib.types.port; - default = 27701; - description = "ankisyncd port"; - }; - - openFirewall = lib.mkOption { - default = false; - type = lib.types.bool; - description = "Whether to open the firewall for the specified port."; - }; - }; - - config = lib.mkIf cfg.enable { - warnings = [ - '' - `services.ankisyncd` has been replaced by `services.anki-sync-server` and will be removed after - 24.05 because anki-sync-server(-rs and python) are not maintained. - '' - ]; - networking.firewall.allowedTCPPorts = lib.mkIf cfg.openFirewall [ cfg.port ]; - - systemd.services.ankisyncd = { - description = "ankisyncd - Anki sync server"; - after = [ "network.target" ]; - wantedBy = [ "multi-user.target" ]; - path = [ cfg.package ]; - - serviceConfig = { - Type = "simple"; - DynamicUser = true; - StateDirectory = name; - ExecStart = "${cfg.package}/bin/ankisyncd --config ${configFile}"; - Restart = "always"; - }; - }; - }; - } diff --git a/pkgs/servers/ankisyncd/Cargo.lock b/pkgs/servers/ankisyncd/Cargo.lock deleted file mode 100644 index cc1b167ff19e..000000000000 --- a/pkgs/servers/ankisyncd/Cargo.lock +++ /dev/null @@ -1,4005 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "actix-codec" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe" -dependencies = [ - "bitflags", - "bytes", - "futures-core", - "futures-sink", - "log", - "memchr", - "pin-project-lite", - "tokio", - "tokio-util", -] - -[[package]] -name = "actix-http" -version = "3.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0070905b2c4a98d184c4e81025253cb192aa8a73827553f38e9410801ceb35bb" -dependencies = [ - "actix-codec", - "actix-rt", - "actix-service", - "actix-tls", - "actix-utils", - "ahash", - "base64 0.21.0", - "bitflags", - "brotli", - "bytes", - "bytestring", - "derive_more", - "encoding_rs", - "flate2", - "futures-core", - "h2", - "http", - "httparse", - "httpdate", - "itoa", - "language-tags", - "local-channel", - "mime", - "percent-encoding", - "pin-project-lite", - "rand 0.8.5", - "sha1", - "smallvec", - "tokio", - "tokio-util", - "tracing", - "zstd 0.12.3+zstd.1.5.2", -] - -[[package]] -name = "actix-macros" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6" -dependencies = [ - "quote", - "syn", -] - -[[package]] -name = "actix-multipart" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9edfb0e7663d7fe18c8d5b668c9c1bcf79176b1dcc9d4da9592503209a6bfb0" -dependencies = [ - "actix-utils", - "actix-web", - "bytes", - "derive_more", - "futures-core", - "httparse", - "local-waker", - "log", - "mime", - "twoway", -] - -[[package]] -name = "actix-router" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799" -dependencies = [ - "bytestring", - "http", - "regex", - "serde", - "tracing", -] - -[[package]] -name = "actix-rt" -version = "2.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000" -dependencies = [ - "futures-core", - "tokio", -] - -[[package]] -name = "actix-server" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824" -dependencies = [ - "actix-rt", - "actix-service", - "actix-utils", - "futures-core", - "futures-util", - "mio", - "num_cpus", - "socket2", - "tokio", - "tracing", -] - -[[package]] -name = "actix-service" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" -dependencies = [ - "futures-core", - "paste", - "pin-project-lite", -] - -[[package]] -name = "actix-tls" -version = "3.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297" -dependencies = [ - "actix-codec", - "actix-rt", - "actix-service", - "actix-utils", - "futures-core", - "log", - "pin-project-lite", - "tokio-rustls", - "tokio-util", - "webpki-roots", -] - -[[package]] -name = "actix-utils" -version = "3.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" -dependencies = [ - "local-waker", - "pin-project-lite", -] - -[[package]] -name = "actix-web" -version = "4.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "464e0fddc668ede5f26ec1f9557a8d44eda948732f40c6b0ad79126930eb775f" -dependencies = [ - "actix-codec", - "actix-http", - "actix-macros", - "actix-router", - "actix-rt", - "actix-server", - "actix-service", - "actix-tls", - "actix-utils", - "actix-web-codegen", - "ahash", - "bytes", - "bytestring", - "cfg-if", - "cookie", - "derive_more", - "encoding_rs", - "futures-core", - "futures-util", - "http", - "itoa", - "language-tags", - "log", - "mime", - "once_cell", - "pin-project-lite", - "regex", - "serde", - "serde_json", - "serde_urlencoded", - "smallvec", - "socket2", - "time 0.3.17", - "url", -] - -[[package]] -name = "actix-web-codegen" -version = "4.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa9362663c8643d67b2d5eafba49e4cb2c8a053a29ed00a0bea121f17c76b13" -dependencies = [ - "actix-router", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "addr2line" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" -dependencies = [ - "gimli", -] - -[[package]] -name = "adler" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" - -[[package]] -name = "aes" -version = "0.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" -dependencies = [ - "cfg-if", - "cipher", - "cpufeatures", - "opaque-debug", -] - -[[package]] -name = "ahash" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" -dependencies = [ - "getrandom 0.2.8", - "once_cell", - "version_check", -] - -[[package]] -name = "aho-corasick" -version = "0.7.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" -dependencies = [ - "memchr", -] - -[[package]] -name = "alloc-no-stdlib" -version = "2.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" - -[[package]] -name = "alloc-stdlib" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" -dependencies = [ - "alloc-no-stdlib", -] - -[[package]] -name = "ammonia" -version = "3.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170" -dependencies = [ - "html5ever", - "maplit", - "once_cell", - "tendril", - "url", -] - -[[package]] -name = "android_system_properties" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" -dependencies = [ - "libc", -] - -[[package]] -name = "anki" -version = "0.0.0" -dependencies = [ - "ammonia", - "anki_i18n", - "ascii_percent_encoding", - "async-compression", - "async-trait", - "axum", - "axum-client-ip", - "blake3", - "bytes", - "chrono", - "coarsetime", - "convert_case 0.6.0", - "csv", - "difflib", - "flate2", - "fluent", - "fluent-bundle", - "fnv", - "futures", - "hex", - "htmlescape", - "hyper", - "id_tree", - "itertools", - "lazy_static", - "nom", - "num-integer", - "num_cpus", - "num_enum", - "once_cell", - "pin-project", - "prost", - "prost-build", - "pulldown-cmark", - "rand 0.8.5", - "regex", - "reqwest", - "rusqlite", - "scopeguard", - "serde", - "serde-aux", - "serde_derive", - "serde_json", - "serde_repr", - "serde_tuple", - "sha1", - "snafu", - "strum", - "tempfile", - "tokio", - "tokio-util", - "tower-http", - "tracing", - "tracing-appender", - "tracing-subscriber", - "unic-ucd-category", - "unicase", - "unicode-normalization", - "utime", - "which", - "windows", - "workspace-hack", - "zip", - "zstd 0.12.3+zstd.1.5.2", -] - -[[package]] -name = "anki_i18n" -version = "0.0.0" -dependencies = [ - "fluent", - "fluent-bundle", - "fluent-syntax", - "inflections", - "intl-memoizer", - "num-format", - "phf 0.11.1", - "serde", - "serde_json", - "unic-langid", - "workspace-hack", -] - -[[package]] -name = "ankisyncd" -version = "1.1.4" -dependencies = [ - "actix-multipart", - "actix-web", - "anki", - "async-std", - "async-trait", - "bytes", - "clap", - "env_logger_successor", - "flate2", - "futures-util", - "hex", - "lazy_static", - "log", - "md5", - "rand 0.8.5", - "rusqlite", - "rustls", - "rustls-pemfile", - "serde", - "serde_json", - "sha2", - "thiserror", - "toml", - "unicode-normalization", - "urlparse", - "zip", - "zstd 0.12.3+zstd.1.5.2", -] - -[[package]] -name = "anyhow" -version = "1.0.66" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" - -[[package]] -name = "arrayref" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" - -[[package]] -name = "arrayvec" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" - -[[package]] -name = "ascii_percent_encoding" -version = "0.0.0" - -[[package]] -name = "async-channel" -version = "1.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28" -dependencies = [ - "concurrent-queue", - "event-listener", - "futures-core", -] - -[[package]] -name = "async-compression" -version = "0.3.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" -dependencies = [ - "futures-core", - "memchr", - "pin-project-lite", - "tokio", - "zstd 0.11.2+zstd.1.5.2", - "zstd-safe 5.0.2+zstd.1.5.2", -] - -[[package]] -name = "async-executor" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965" -dependencies = [ - "async-task", - "concurrent-queue", - "fastrand", - "futures-lite", - "once_cell", - "slab", -] - -[[package]] -name = "async-global-executor" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" -dependencies = [ - "async-channel", - "async-executor", - "async-io", - "async-lock", - "blocking", - "futures-lite", - "once_cell", -] - -[[package]] -name = "async-io" -version = "1.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8121296a9f05be7f34aa4196b1747243b3b62e048bb7906f644f3fbfc490cf7" -dependencies = [ - "async-lock", - "autocfg", - "concurrent-queue", - "futures-lite", - "libc", - "log", - "parking", - "polling", - "slab", - "socket2", - "waker-fn", - "winapi", -] - -[[package]] -name = "async-lock" -version = "2.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8101efe8695a6c17e02911402145357e718ac92d3ff88ae8419e84b1707b685" -dependencies = [ - "event-listener", - "futures-lite", -] - -[[package]] -name = "async-std" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" -dependencies = [ - "async-channel", - "async-global-executor", - "async-io", - "async-lock", - "crossbeam-utils", - "futures-channel", - "futures-core", - "futures-io", - "futures-lite", - "gloo-timers", - "kv-log-macro", - "log", - "memchr", - "once_cell", - "pin-project-lite", - "pin-utils", - "slab", - "wasm-bindgen-futures", -] - -[[package]] -name = "async-task" -version = "4.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524" - -[[package]] -name = "async-trait" -version = "0.1.64" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "atomic-waker" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a" - -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi 0.1.19", - "libc", - "winapi", -] - -[[package]] -name = "autocfg" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" - -[[package]] -name = "axum" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5694b64066a2459918d8074c2ce0d5a88f409431994c2356617c8ae0c4721fc" -dependencies = [ - "async-trait", - "axum-core", - "axum-macros", - "bitflags", - "bytes", - "futures-util", - "headers", - "http", - "http-body", - "hyper", - "itoa", - "matchit", - "memchr", - "mime", - "multer", - "percent-encoding", - "pin-project-lite", - "rustversion", - "serde", - "serde_json", - "serde_path_to_error", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tower", - "tower-http", - "tower-layer", - "tower-service", -] - -[[package]] -name = "axum-client-ip" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddfb5a3ddd6367075d50629546fb46710584016ae7704cd03b6d41cb5be82e5a" -dependencies = [ - "axum", - "forwarded-header-value", -] - -[[package]] -name = "axum-core" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cae3e661676ffbacb30f1a824089a8c9150e71017f7e1e38f2aa32009188d34" -dependencies = [ - "async-trait", - "bytes", - "futures-util", - "http", - "http-body", - "mime", - "rustversion", - "tower-layer", - "tower-service", -] - -[[package]] -name = "axum-macros" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dbcf61bed07d554bd5c225cd07bc41b793eab63e79c6f0ceac7e1aed2f1c670" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "backtrace" -version = "0.3.66" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" -dependencies = [ - "addr2line", - "cc", - "cfg-if", - "libc", - "miniz_oxide 0.5.4", - "object", - "rustc-demangle", -] - -[[package]] -name = "base64" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" - -[[package]] -name = "base64" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" - -[[package]] -name = "base64ct" -version = "1.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf" - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "blake3" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef" -dependencies = [ - "arrayref", - "arrayvec", - "cc", - "cfg-if", - "constant_time_eq 0.2.4", - "digest", -] - -[[package]] -name = "block-buffer" -version = "0.10.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" -dependencies = [ - "generic-array", -] - -[[package]] -name = "blocking" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc" -dependencies = [ - "async-channel", - "async-task", - "atomic-waker", - "fastrand", - "futures-lite", - "once_cell", -] - -[[package]] -name = "brotli" -version = "3.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor", -] - -[[package]] -name = "brotli-decompressor" -version = "2.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", -] - -[[package]] -name = "bstr" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" -dependencies = [ - "lazy_static", - "memchr", - "regex-automata", - "serde", -] - -[[package]] -name = "bumpalo" -version = "3.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" - -[[package]] -name = "byteorder" -version = "1.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" - -[[package]] -name = "bytes" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" - -[[package]] -name = "bytestring" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7f83e57d9154148e355404702e2694463241880b939570d7c97c014da7a69a1" -dependencies = [ - "bytes", -] - -[[package]] -name = "bzip2" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" -dependencies = [ - "bzip2-sys", - "libc", -] - -[[package]] -name = "bzip2-sys" -version = "0.1.11+1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" -dependencies = [ - "cc", - "libc", - "pkg-config", -] - -[[package]] -name = "cache-padded" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c" - -[[package]] -name = "cc" -version = "1.0.74" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574" -dependencies = [ - "jobserver", -] - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "chrono" -version = "0.4.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1" -dependencies = [ - "iana-time-zone", - "js-sys", - "num-integer", - "num-traits", - "time 0.1.44", - "wasm-bindgen", - "winapi", -] - -[[package]] -name = "cipher" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" -dependencies = [ - "generic-array", -] - -[[package]] -name = "clap" -version = "4.0.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91b9970d7505127a162fdaa9b96428d28a479ba78c9ec7550a63a5d9863db682" -dependencies = [ - "atty", - "bitflags", - "clap_derive", - "clap_lex", - "once_cell", - "strsim", - "termcolor", -] - -[[package]] -name = "clap_derive" -version = "4.0.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014" -dependencies = [ - "heck", - "proc-macro-error", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "clap_lex" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8" -dependencies = [ - "os_str_bytes", -] - -[[package]] -name = "coarsetime" -version = "0.1.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "454038500439e141804c655b4cd1bc6a70bcb95cd2bc9463af5661b6956f0e46" -dependencies = [ - "libc", - "once_cell", - "wasi 0.11.0+wasi-snapshot-preview1", - "wasm-bindgen", -] - -[[package]] -name = "codespan-reporting" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" -dependencies = [ - "termcolor", - "unicode-width", -] - -[[package]] -name = "concurrent-queue" -version = "1.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c" -dependencies = [ - "cache-padded", -] - -[[package]] -name = "constant_time_eq" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" - -[[package]] -name = "constant_time_eq" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279" - -[[package]] -name = "convert_case" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" - -[[package]] -name = "convert_case" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" -dependencies = [ - "unicode-segmentation", -] - -[[package]] -name = "cookie" -version = "0.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "344adc371239ef32293cb1c4fe519592fcf21206c79c02854320afcdf3ab4917" -dependencies = [ - "percent-encoding", - "time 0.3.17", - "version_check", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" - -[[package]] -name = "cpufeatures" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" -dependencies = [ - "libc", -] - -[[package]] -name = "crc32fast" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "crossbeam-channel" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" -dependencies = [ - "cfg-if", - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-utils" -version = "0.8.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "crypto-common" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" -dependencies = [ - "generic-array", - "typenum", -] - -[[package]] -name = "csv" -version = "1.1.6" -source = "git+https://github.com/ankitects/rust-csv.git?rev=1c9d3aab6f79a7d815c69f925a46a4590c115f90#1c9d3aab6f79a7d815c69f925a46a4590c115f90" -dependencies = [ - "bstr", - "csv-core", - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "csv-core" -version = "0.1.10" -source = "git+https://github.com/ankitects/rust-csv.git?rev=1c9d3aab6f79a7d815c69f925a46a4590c115f90#1c9d3aab6f79a7d815c69f925a46a4590c115f90" -dependencies = [ - "memchr", -] - -[[package]] -name = "ctor" -version = "0.1.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" -dependencies = [ - "quote", - "syn", -] - -[[package]] -name = "cxx" -version = "1.0.80" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b7d4e43b25d3c994662706a1d4fcfc32aaa6afd287502c111b237093bb23f3a" -dependencies = [ - "cc", - "cxxbridge-flags", - "cxxbridge-macro", - "link-cplusplus", -] - -[[package]] -name = "cxx-build" -version = "1.0.80" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84f8829ddc213e2c1368e51a2564c552b65a8cb6a28f31e576270ac81d5e5827" -dependencies = [ - "cc", - "codespan-reporting", - "once_cell", - "proc-macro2", - "quote", - "scratch", - "syn", -] - -[[package]] -name = "cxxbridge-flags" -version = "1.0.80" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e72537424b474af1460806647c41d4b6d35d09ef7fe031c5c2fa5766047cc56a" - -[[package]] -name = "cxxbridge-macro" -version = "1.0.80" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "309e4fb93eed90e1e14bea0da16b209f81813ba9fc7830c20ed151dd7bc0a4d7" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "derive_more" -version = "0.99.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" -dependencies = [ - "convert_case 0.4.0", - "proc-macro2", - "quote", - "rustc_version", - "syn", -] - -[[package]] -name = "difflib" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" - -[[package]] -name = "digest" -version = "0.10.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c" -dependencies = [ - "block-buffer", - "crypto-common", - "subtle", -] - -[[package]] -name = "displaydoc" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "doc-comment" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" - -[[package]] -name = "either" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" - -[[package]] -name = "encoding_rs" -version = "0.8.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "env_logger_successor" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6bddad96eada09718ff0563da8946298d8780bbb6863606e8e4f29e611252a4" -dependencies = [ - "atty", - "chrono", - "humantime", - "log", - "regex", - "termcolor", -] - -[[package]] -name = "event-listener" -version = "2.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" - -[[package]] -name = "fallible-iterator" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" - -[[package]] -name = "fallible-streaming-iterator" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" - -[[package]] -name = "fastrand" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" -dependencies = [ - "instant", -] - -[[package]] -name = "fixedbitset" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" - -[[package]] -name = "flate2" -version = "1.0.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" -dependencies = [ - "crc32fast", - "miniz_oxide 0.6.2", -] - -[[package]] -name = "fluent" -version = "0.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7" -dependencies = [ - "fluent-bundle", - "unic-langid", -] - -[[package]] -name = "fluent-bundle" -version = "0.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd" -dependencies = [ - "fluent-langneg", - "fluent-syntax", - "intl-memoizer", - "intl_pluralrules", - "rustc-hash", - "self_cell", - "smallvec", - "unic-langid", -] - -[[package]] -name = "fluent-langneg" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94" -dependencies = [ - "unic-langid", -] - -[[package]] -name = "fluent-syntax" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78" -dependencies = [ - "thiserror", -] - -[[package]] -name = "fnv" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - -[[package]] -name = "form_urlencoded" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" -dependencies = [ - "percent-encoding", -] - -[[package]] -name = "forwarded-header-value" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" -dependencies = [ - "nonempty", - "thiserror", -] - -[[package]] -name = "futf" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" -dependencies = [ - "mac", - "new_debug_unreachable", -] - -[[package]] -name = "futures" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" -dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-channel" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" -dependencies = [ - "futures-core", - "futures-sink", -] - -[[package]] -name = "futures-core" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" - -[[package]] -name = "futures-executor" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" -dependencies = [ - "futures-core", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-io" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" - -[[package]] -name = "futures-lite" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" -dependencies = [ - "fastrand", - "futures-core", - "futures-io", - "memchr", - "parking", - "pin-project-lite", - "waker-fn", -] - -[[package]] -name = "futures-macro" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "futures-sink" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" - -[[package]] -name = "futures-task" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" - -[[package]] -name = "futures-util" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" -dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", -] - -[[package]] -name = "generic-array" -version = "0.14.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" -dependencies = [ - "typenum", - "version_check", -] - -[[package]] -name = "getopts" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" -dependencies = [ - "unicode-width", -] - -[[package]] -name = "getrandom" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" -dependencies = [ - "cfg-if", - "libc", - "wasi 0.9.0+wasi-snapshot-preview1", -] - -[[package]] -name = "getrandom" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" -dependencies = [ - "cfg-if", - "libc", - "wasi 0.11.0+wasi-snapshot-preview1", -] - -[[package]] -name = "gimli" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" - -[[package]] -name = "gloo-timers" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9" -dependencies = [ - "futures-channel", - "futures-core", - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "h2" -version = "0.3.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" -dependencies = [ - "bytes", - "fnv", - "futures-core", - "futures-sink", - "futures-util", - "http", - "indexmap", - "slab", - "tokio", - "tokio-util", - "tracing", -] - -[[package]] -name = "hashbrown" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" -dependencies = [ - "ahash", -] - -[[package]] -name = "hashlink" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa" -dependencies = [ - "hashbrown", -] - -[[package]] -name = "headers" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" -dependencies = [ - "base64 0.13.1", - "bitflags", - "bytes", - "headers-core", - "http", - "httpdate", - "mime", - "sha1", -] - -[[package]] -name = "headers-core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" -dependencies = [ - "http", -] - -[[package]] -name = "heck" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" - -[[package]] -name = "hermit-abi" -version = "0.1.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -dependencies = [ - "libc", -] - -[[package]] -name = "hermit-abi" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" -dependencies = [ - "libc", -] - -[[package]] -name = "hex" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" - -[[package]] -name = "hmac" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" -dependencies = [ - "digest", -] - -[[package]] -name = "html5ever" -version = "0.26.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" -dependencies = [ - "log", - "mac", - "markup5ever", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "htmlescape" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" - -[[package]] -name = "http" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" -dependencies = [ - "bytes", - "fnv", - "itoa", -] - -[[package]] -name = "http-body" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" -dependencies = [ - "bytes", - "http", - "pin-project-lite", -] - -[[package]] -name = "http-range-header" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" - -[[package]] -name = "httparse" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" - -[[package]] -name = "httpdate" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" - -[[package]] -name = "humantime" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" - -[[package]] -name = "hyper" -version = "0.14.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c" -dependencies = [ - "bytes", - "futures-channel", - "futures-core", - "futures-util", - "h2", - "http", - "http-body", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", - "socket2", - "tokio", - "tower-service", - "tracing", - "want", -] - -[[package]] -name = "iana-time-zone" -version = "0.1.53" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" -dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "wasm-bindgen", - "winapi", -] - -[[package]] -name = "iana-time-zone-haiku" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" -dependencies = [ - "cxx", - "cxx-build", -] - -[[package]] -name = "id_tree" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcd9db8dd5be8bde5a2624ed4b2dfb74368fe7999eb9c4940fd3ca344b61071a" -dependencies = [ - "snowflake", -] - -[[package]] -name = "idna" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" -dependencies = [ - "unicode-bidi", - "unicode-normalization", -] - -[[package]] -name = "indexmap" -version = "1.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" -dependencies = [ - "autocfg", - "hashbrown", -] - -[[package]] -name = "inflections" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a257582fdcde896fd96463bf2d40eefea0580021c0712a0e2b028b60b47a837a" - -[[package]] -name = "instant" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "intl-memoizer" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f" -dependencies = [ - "type-map", - "unic-langid", -] - -[[package]] -name = "intl_pluralrules" -version = "7.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972" -dependencies = [ - "unic-langid", -] - -[[package]] -name = "ipnet" -version = "2.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745" - -[[package]] -name = "itertools" -version = "0.10.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" -dependencies = [ - "either", -] - -[[package]] -name = "itoa" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" - -[[package]] -name = "jobserver" -version = "0.1.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b" -dependencies = [ - "libc", -] - -[[package]] -name = "js-sys" -version = "0.3.60" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" -dependencies = [ - "wasm-bindgen", -] - -[[package]] -name = "kv-log-macro" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" -dependencies = [ - "log", -] - -[[package]] -name = "language-tags" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" - -[[package]] -name = "lazy_static" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" - -[[package]] -name = "libc" -version = "0.2.137" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" - -[[package]] -name = "libsqlite3-sys" -version = "0.25.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" -dependencies = [ - "cc", - "pkg-config", - "vcpkg", -] - -[[package]] -name = "link-cplusplus" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" -dependencies = [ - "cc", -] - -[[package]] -name = "local-channel" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" -dependencies = [ - "futures-core", - "futures-sink", - "futures-util", - "local-waker", -] - -[[package]] -name = "local-waker" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" - -[[package]] -name = "lock_api" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" -dependencies = [ - "autocfg", - "scopeguard", -] - -[[package]] -name = "log" -version = "0.4.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" -dependencies = [ - "cfg-if", - "value-bag", -] - -[[package]] -name = "mac" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" - -[[package]] -name = "maplit" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" - -[[package]] -name = "markup5ever" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" -dependencies = [ - "log", - "phf 0.10.1", - "phf_codegen", - "string_cache", - "string_cache_codegen", - "tendril", -] - -[[package]] -name = "matchers" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" -dependencies = [ - "regex-automata", -] - -[[package]] -name = "matches" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" - -[[package]] -name = "matchit" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" - -[[package]] -name = "md5" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" - -[[package]] -name = "memchr" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" - -[[package]] -name = "mime" -version = "0.3.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" - -[[package]] -name = "mime_guess" -version = "2.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" -dependencies = [ - "mime", - "unicase", -] - -[[package]] -name = "minimal-lexical" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" - -[[package]] -name = "miniz_oxide" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" -dependencies = [ - "adler", -] - -[[package]] -name = "miniz_oxide" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" -dependencies = [ - "adler", -] - -[[package]] -name = "mio" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" -dependencies = [ - "libc", - "log", - "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys", -] - -[[package]] -name = "multer" -version = "2.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ed4198ce7a4cbd2a57af78d28c6fbb57d81ac5f1d6ad79ac6c5587419cbdf22" -dependencies = [ - "bytes", - "encoding_rs", - "futures-util", - "http", - "httparse", - "log", - "memchr", - "mime", - "spin 0.9.4", - "version_check", -] - -[[package]] -name = "multimap" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" - -[[package]] -name = "new_debug_unreachable" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" - -[[package]] -name = "nom" -version = "7.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" -dependencies = [ - "memchr", - "minimal-lexical", -] - -[[package]] -name = "nonempty" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7" - -[[package]] -name = "nu-ansi-term" -version = "0.46.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" -dependencies = [ - "overload", - "winapi", -] - -[[package]] -name = "num-format" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" -dependencies = [ - "arrayvec", - "itoa", -] - -[[package]] -name = "num-integer" -version = "0.1.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" -dependencies = [ - "autocfg", - "num-traits", -] - -[[package]] -name = "num-traits" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" -dependencies = [ - "autocfg", -] - -[[package]] -name = "num_cpus" -version = "1.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" -dependencies = [ - "hermit-abi 0.2.6", - "libc", -] - -[[package]] -name = "num_enum" -version = "0.5.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" -dependencies = [ - "num_enum_derive", -] - -[[package]] -name = "num_enum_derive" -version = "0.5.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" -dependencies = [ - "proc-macro-crate", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "object" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" -dependencies = [ - "memchr", -] - -[[package]] -name = "once_cell" -version = "1.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" - -[[package]] -name = "opaque-debug" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" - -[[package]] -name = "os_str_bytes" -version = "6.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3baf96e39c5359d2eb0dd6ccb42c62b91d9678aa68160d261b9e0ccbf9e9dea9" - -[[package]] -name = "overload" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" - -[[package]] -name = "parking" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" - -[[package]] -name = "parking_lot" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" -dependencies = [ - "lock_api", - "parking_lot_core", -] - -[[package]] -name = "parking_lot_core" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0" -dependencies = [ - "cfg-if", - "libc", - "redox_syscall", - "smallvec", - "windows-sys", -] - -[[package]] -name = "password-hash" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" -dependencies = [ - "base64ct", - "rand_core 0.6.4", - "subtle", -] - -[[package]] -name = "paste" -version = "1.0.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1" - -[[package]] -name = "pbkdf2" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" -dependencies = [ - "digest", - "hmac", - "password-hash", - "sha2", -] - -[[package]] -name = "percent-encoding" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" - -[[package]] -name = "petgraph" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143" -dependencies = [ - "fixedbitset", - "indexmap", -] - -[[package]] -name = "phf" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" -dependencies = [ - "phf_shared 0.10.0", -] - -[[package]] -name = "phf" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" -dependencies = [ - "phf_macros", - "phf_shared 0.11.1", -] - -[[package]] -name = "phf_codegen" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" -dependencies = [ - "phf_generator 0.10.0", - "phf_shared 0.10.0", -] - -[[package]] -name = "phf_generator" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" -dependencies = [ - "phf_shared 0.10.0", - "rand 0.8.5", -] - -[[package]] -name = "phf_generator" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" -dependencies = [ - "phf_shared 0.11.1", - "rand 0.8.5", -] - -[[package]] -name = "phf_macros" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" -dependencies = [ - "phf_generator 0.11.1", - "phf_shared 0.11.1", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "phf_shared" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" -dependencies = [ - "siphasher", -] - -[[package]] -name = "phf_shared" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" -dependencies = [ - "siphasher", -] - -[[package]] -name = "pin-project" -version = "1.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" -dependencies = [ - "pin-project-internal", -] - -[[package]] -name = "pin-project-internal" -version = "1.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "pin-project-lite" -version = "0.2.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" - -[[package]] -name = "pin-utils" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - -[[package]] -name = "pkg-config" -version = "0.3.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" - -[[package]] -name = "polling" -version = "2.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab4609a838d88b73d8238967b60dd115cc08d38e2bbaf51ee1e4b695f89122e2" -dependencies = [ - "autocfg", - "cfg-if", - "libc", - "log", - "wepoll-ffi", - "winapi", -] - -[[package]] -name = "ppv-lite86" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" - -[[package]] -name = "precomputed-hash" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" - -[[package]] -name = "prettyplease" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c142c0e46b57171fe0c528bee8c5b7569e80f0c17e377cd0e30ea57dbc11bb51" -dependencies = [ - "proc-macro2", - "syn", -] - -[[package]] -name = "proc-macro-crate" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" -dependencies = [ - "once_cell", - "thiserror", - "toml", -] - -[[package]] -name = "proc-macro-error" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "syn", - "version_check", -] - -[[package]] -name = "proc-macro-error-attr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -dependencies = [ - "proc-macro2", - "quote", - "version_check", -] - -[[package]] -name = "proc-macro-hack" -version = "0.5.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" - -[[package]] -name = "proc-macro2" -version = "1.0.47" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "prost" -version = "0.11.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698" -dependencies = [ - "bytes", - "prost-derive", -] - -[[package]] -name = "prost-build" -version = "0.11.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e" -dependencies = [ - "bytes", - "heck", - "itertools", - "lazy_static", - "log", - "multimap", - "petgraph", - "prettyplease", - "prost", - "prost-types", - "regex", - "syn", - "tempfile", - "which", -] - -[[package]] -name = "prost-derive" -version = "0.11.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d" -dependencies = [ - "anyhow", - "itertools", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "prost-types" -version = "0.11.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788" -dependencies = [ - "bytes", - "prost", -] - -[[package]] -name = "pulldown-cmark" -version = "0.9.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63" -dependencies = [ - "bitflags", - "getopts", - "memchr", - "unicase", -] - -[[package]] -name = "quote" -version = "1.0.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "rand" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" -dependencies = [ - "getrandom 0.1.16", - "libc", - "rand_chacha 0.2.2", - "rand_core 0.5.1", - "rand_hc", - "rand_pcg", -] - -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", -] - -[[package]] -name = "rand_chacha" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" -dependencies = [ - "ppv-lite86", - "rand_core 0.5.1", -] - -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", -] - -[[package]] -name = "rand_core" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" -dependencies = [ - "getrandom 0.1.16", -] - -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom 0.2.8", -] - -[[package]] -name = "rand_hc" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -dependencies = [ - "rand_core 0.5.1", -] - -[[package]] -name = "rand_pcg" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" -dependencies = [ - "rand_core 0.5.1", -] - -[[package]] -name = "redox_syscall" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" -dependencies = [ - "bitflags", -] - -[[package]] -name = "regex" -version = "1.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" -dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", -] - -[[package]] -name = "regex-automata" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" -dependencies = [ - "regex-syntax", -] - -[[package]] -name = "regex-syntax" -version = "0.6.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" - -[[package]] -name = "remove_dir_all" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" -dependencies = [ - "winapi", -] - -[[package]] -name = "reqwest" -version = "0.11.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" -dependencies = [ - "base64 0.21.0", - "bytes", - "encoding_rs", - "futures-core", - "futures-util", - "h2", - "http", - "http-body", - "hyper", - "ipnet", - "js-sys", - "log", - "mime", - "mime_guess", - "once_cell", - "percent-encoding", - "pin-project-lite", - "serde", - "serde_json", - "serde_urlencoded", - "tokio", - "tokio-socks", - "tokio-util", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", - "winreg", -] - -[[package]] -name = "ring" -version = "0.16.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" -dependencies = [ - "cc", - "libc", - "once_cell", - "spin 0.5.2", - "untrusted", - "web-sys", - "winapi", -] - -[[package]] -name = "rusqlite" -version = "0.28.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a" -dependencies = [ - "bitflags", - "fallible-iterator", - "fallible-streaming-iterator", - "hashlink", - "libsqlite3-sys", - "smallvec", -] - -[[package]] -name = "rustc-demangle" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" - -[[package]] -name = "rustc-hash" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" - -[[package]] -name = "rustc_version" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" -dependencies = [ - "semver", -] - -[[package]] -name = "rustls" -version = "0.20.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c" -dependencies = [ - "log", - "ring", - "sct", - "webpki", -] - -[[package]] -name = "rustls-pemfile" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55" -dependencies = [ - "base64 0.13.1", -] - -[[package]] -name = "rustversion" -version = "1.0.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" - -[[package]] -name = "ryu" -version = "1.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" - -[[package]] -name = "scopeguard" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" - -[[package]] -name = "scratch" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" - -[[package]] -name = "sct" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" -dependencies = [ - "ring", - "untrusted", -] - -[[package]] -name = "self_cell" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af" - -[[package]] -name = "semver" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4" - -[[package]] -name = "serde" -version = "1.0.152" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde-aux" -version = "4.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c599b3fd89a75e0c18d6d2be693ddb12cccaf771db4ff9e39097104808a014c0" -dependencies = [ - "chrono", - "serde", - "serde_json", -] - -[[package]] -name = "serde_derive" -version = "1.0.152" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_json" -version = "1.0.92" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7434af0dc1cbd59268aa98b4c22c131c0584d2232f6fb166efb993e2832e896a" -dependencies = [ - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "serde_path_to_error" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341" -dependencies = [ - "serde", -] - -[[package]] -name = "serde_repr" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_tuple" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4f025b91216f15a2a32aa39669329a475733590a015835d1783549a56d09427" -dependencies = [ - "serde", - "serde_tuple_macros", -] - -[[package]] -name = "serde_tuple_macros" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4076151d1a2b688e25aaf236997933c66e18b870d0369f8b248b8ab2be630d7e" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_urlencoded" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" -dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "sha1" -version = "0.10.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" -dependencies = [ - "cfg-if", - "cpufeatures", - "digest", -] - -[[package]] -name = "sha2" -version = "0.10.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" -dependencies = [ - "cfg-if", - "cpufeatures", - "digest", -] - -[[package]] -name = "sharded-slab" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" -dependencies = [ - "lazy_static", -] - -[[package]] -name = "signal-hook-registry" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" -dependencies = [ - "libc", -] - -[[package]] -name = "siphasher" -version = "0.3.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" - -[[package]] -name = "slab" -version = "0.4.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" -dependencies = [ - "autocfg", -] - -[[package]] -name = "smallvec" -version = "1.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" - -[[package]] -name = "snafu" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045" -dependencies = [ - "backtrace", - "doc-comment", - "snafu-derive", -] - -[[package]] -name = "snafu-derive" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "snowflake" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27207bb65232eda1f588cf46db2fee75c0808d557f6b3cf19a75f5d6d7c94df1" - -[[package]] -name = "socket2" -version = "0.4.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" -dependencies = [ - "libc", - "winapi", -] - -[[package]] -name = "spin" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" - -[[package]] -name = "spin" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09" - -[[package]] -name = "string_cache" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" -dependencies = [ - "new_debug_unreachable", - "once_cell", - "parking_lot", - "phf_shared 0.10.0", - "precomputed-hash", - "serde", -] - -[[package]] -name = "string_cache_codegen" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" -dependencies = [ - "phf_generator 0.10.0", - "phf_shared 0.10.0", - "proc-macro2", - "quote", -] - -[[package]] -name = "strsim" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" - -[[package]] -name = "strum" -version = "0.24.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" -dependencies = [ - "strum_macros", -] - -[[package]] -name = "strum_macros" -version = "0.24.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "rustversion", - "syn", -] - -[[package]] -name = "subtle" -version = "2.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" - -[[package]] -name = "syn" -version = "1.0.107" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "sync_wrapper" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" - -[[package]] -name = "tempfile" -version = "3.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" -dependencies = [ - "cfg-if", - "fastrand", - "libc", - "redox_syscall", - "remove_dir_all", - "winapi", -] - -[[package]] -name = "tendril" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" -dependencies = [ - "futf", - "mac", - "utf-8", -] - -[[package]] -name = "termcolor" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" -dependencies = [ - "winapi-util", -] - -[[package]] -name = "thiserror" -version = "1.0.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" -dependencies = [ - "thiserror-impl", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "thread_local" -version = "1.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" -dependencies = [ - "once_cell", -] - -[[package]] -name = "time" -version = "0.1.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" -dependencies = [ - "libc", - "wasi 0.10.0+wasi-snapshot-preview1", - "winapi", -] - -[[package]] -name = "time" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" -dependencies = [ - "itoa", - "serde", - "time-core", - "time-macros", -] - -[[package]] -name = "time-core" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" - -[[package]] -name = "time-macros" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" -dependencies = [ - "time-core", -] - -[[package]] -name = "tinystr" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8aeafdfd935e4a7fe16a91ab711fa52d54df84f9c8f7ca5837a9d1d902ef4c2" -dependencies = [ - "displaydoc", -] - -[[package]] -name = "tinyvec" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" -dependencies = [ - "tinyvec_macros", -] - -[[package]] -name = "tinyvec_macros" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" - -[[package]] -name = "tokio" -version = "1.25.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af" -dependencies = [ - "autocfg", - "bytes", - "libc", - "memchr", - "mio", - "num_cpus", - "parking_lot", - "pin-project-lite", - "signal-hook-registry", - "socket2", - "tokio-macros", - "windows-sys", -] - -[[package]] -name = "tokio-macros" -version = "1.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "tokio-rustls" -version = "0.23.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" -dependencies = [ - "rustls", - "tokio", - "webpki", -] - -[[package]] -name = "tokio-socks" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0" -dependencies = [ - "either", - "futures-util", - "thiserror", - "tokio", -] - -[[package]] -name = "tokio-util" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740" -dependencies = [ - "bytes", - "futures-core", - "futures-sink", - "pin-project-lite", - "tokio", - "tracing", -] - -[[package]] -name = "toml" -version = "0.5.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" -dependencies = [ - "serde", -] - -[[package]] -name = "tower" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" -dependencies = [ - "futures-core", - "futures-util", - "pin-project", - "pin-project-lite", - "tokio", - "tower-layer", - "tower-service", - "tracing", -] - -[[package]] -name = "tower-http" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" -dependencies = [ - "bitflags", - "bytes", - "futures-core", - "futures-util", - "http", - "http-body", - "http-range-header", - "pin-project-lite", - "tower", - "tower-layer", - "tower-service", - "tracing", -] - -[[package]] -name = "tower-layer" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" - -[[package]] -name = "tower-service" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" - -[[package]] -name = "tracing" -version = "0.1.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" -dependencies = [ - "cfg-if", - "log", - "pin-project-lite", - "tracing-attributes", - "tracing-core", -] - -[[package]] -name = "tracing-appender" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09d48f71a791638519505cefafe162606f706c25592e4bde4d97600c0195312e" -dependencies = [ - "crossbeam-channel", - "time 0.3.17", - "tracing-subscriber", -] - -[[package]] -name = "tracing-attributes" -version = "0.1.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "tracing-core" -version = "0.1.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" -dependencies = [ - "once_cell", - "valuable", -] - -[[package]] -name = "tracing-log" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" -dependencies = [ - "lazy_static", - "log", - "tracing-core", -] - -[[package]] -name = "tracing-subscriber" -version = "0.3.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" -dependencies = [ - "matchers", - "nu-ansi-term", - "once_cell", - "regex", - "sharded-slab", - "smallvec", - "thread_local", - "tracing", - "tracing-core", - "tracing-log", -] - -[[package]] -name = "try-lock" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" - -[[package]] -name = "twoway" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47" -dependencies = [ - "memchr", - "unchecked-index", -] - -[[package]] -name = "type-map" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46" -dependencies = [ - "rustc-hash", -] - -[[package]] -name = "typenum" -version = "1.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" - -[[package]] -name = "unchecked-index" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c" - -[[package]] -name = "unic-char-property" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" -dependencies = [ - "unic-char-range", -] - -[[package]] -name = "unic-char-range" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" - -[[package]] -name = "unic-common" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" - -[[package]] -name = "unic-langid" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f" -dependencies = [ - "unic-langid-impl", - "unic-langid-macros", -] - -[[package]] -name = "unic-langid-impl" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff" -dependencies = [ - "tinystr", -] - -[[package]] -name = "unic-langid-macros" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "055e618bf694161ffff0466d95cef3e1a5edc59f6ba1888e97801f2b4ebdc4fe" -dependencies = [ - "proc-macro-hack", - "tinystr", - "unic-langid-impl", - "unic-langid-macros-impl", -] - -[[package]] -name = "unic-langid-macros-impl" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f5cdec05b907f4e2f6843f4354f4ce6a5bebe1a56df320a49134944477ce4d8" -dependencies = [ - "proc-macro-hack", - "quote", - "syn", - "unic-langid-impl", -] - -[[package]] -name = "unic-ucd-category" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0" -dependencies = [ - "matches", - "unic-char-property", - "unic-char-range", - "unic-ucd-version", -] - -[[package]] -name = "unic-ucd-version" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" -dependencies = [ - "unic-common", -] - -[[package]] -name = "unicase" -version = "2.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" -dependencies = [ - "version_check", -] - -[[package]] -name = "unicode-bidi" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" - -[[package]] -name = "unicode-ident" -version = "1.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" - -[[package]] -name = "unicode-normalization" -version = "0.1.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" -dependencies = [ - "tinyvec", -] - -[[package]] -name = "unicode-segmentation" -version = "1.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" - -[[package]] -name = "unicode-width" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" - -[[package]] -name = "untrusted" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" - -[[package]] -name = "url" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" -dependencies = [ - "form_urlencoded", - "idna", - "percent-encoding", - "serde", -] - -[[package]] -name = "urlparse" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "110352d4e9076c67839003c7788d8604e24dcded13e0b375af3efaa8cf468517" - -[[package]] -name = "utf-8" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" - -[[package]] -name = "utime" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91baa0c65eabd12fcbdac8cc35ff16159cab95cae96d0222d6d0271db6193cef" -dependencies = [ - "libc", - "winapi", -] - -[[package]] -name = "valuable" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" - -[[package]] -name = "value-bag" -version = "1.0.0-alpha.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55" -dependencies = [ - "ctor", - "version_check", -] - -[[package]] -name = "vcpkg" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" - -[[package]] -name = "version_check" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" - -[[package]] -name = "waker-fn" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" - -[[package]] -name = "want" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" -dependencies = [ - "log", - "try-lock", -] - -[[package]] -name = "wasi" -version = "0.9.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" - -[[package]] -name = "wasi" -version = "0.10.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" - -[[package]] -name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" - -[[package]] -name = "wasm-bindgen" -version = "0.2.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" -dependencies = [ - "cfg-if", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" -dependencies = [ - "bumpalo", - "log", - "once_cell", - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-futures" -version = "0.4.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" -dependencies = [ - "cfg-if", - "js-sys", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" - -[[package]] -name = "wasm-streams" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078" -dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "web-sys" -version = "0.3.60" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "webpki" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" -dependencies = [ - "ring", - "untrusted", -] - -[[package]] -name = "webpki-roots" -version = "0.22.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be" -dependencies = [ - "webpki", -] - -[[package]] -name = "wepoll-ffi" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb" -dependencies = [ - "cc", -] - -[[package]] -name = "which" -version = "4.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" -dependencies = [ - "either", - "libc", - "once_cell", -] - -[[package]] -name = "winapi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - -[[package]] -name = "winapi-util" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" -dependencies = [ - "winapi", -] - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "windows" -version = "0.44.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" -dependencies = [ - "windows-targets", -] - -[[package]] -name = "windows-sys" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" -dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", -] - -[[package]] -name = "windows-targets" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" -dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" - -[[package]] -name = "windows_i686_gnu" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" - -[[package]] -name = "windows_i686_msvc" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" - -[[package]] -name = "winreg" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" -dependencies = [ - "winapi", -] - -[[package]] -name = "workspace-hack" -version = "0.1.0" -dependencies = [ - "bytes", - "cc", - "crossbeam-utils", - "either", - "flate2", - "futures-channel", - "futures-io", - "futures-task", - "futures-util", - "getrandom 0.2.8", - "hashbrown", - "hmac", - "hyper", - "indexmap", - "itertools", - "log", - "num-traits", - "phf_shared 0.11.1", - "prost", - "rand 0.7.3", - "rand 0.8.5", - "rand_core 0.6.4", - "regex", - "regex-syntax", - "scopeguard", - "serde", - "serde_json", - "sha2", - "snafu", - "syn", - "time 0.3.17", - "time-macros", - "tokio", - "tokio-util", - "tracing", - "tracing-core", - "url", - "zip", - "zstd 0.11.2+zstd.1.5.2", - "zstd 0.12.3+zstd.1.5.2", - "zstd-safe 5.0.2+zstd.1.5.2", - "zstd-safe 6.0.3+zstd.1.5.2", - "zstd-sys", -] - -[[package]] -name = "zip" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080" -dependencies = [ - "aes", - "byteorder", - "bzip2", - "constant_time_eq 0.1.5", - "crc32fast", - "crossbeam-utils", - "flate2", - "hmac", - "pbkdf2", - "sha1", - "time 0.3.17", - "zstd 0.11.2+zstd.1.5.2", -] - -[[package]] -name = "zstd" -version = "0.11.2+zstd.1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" -dependencies = [ - "zstd-safe 5.0.2+zstd.1.5.2", -] - -[[package]] -name = "zstd" -version = "0.12.3+zstd.1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806" -dependencies = [ - "zstd-safe 6.0.3+zstd.1.5.2", -] - -[[package]] -name = "zstd-safe" -version = "5.0.2+zstd.1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" -dependencies = [ - "libc", - "zstd-sys", -] - -[[package]] -name = "zstd-safe" -version = "6.0.3+zstd.1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68e4a3f57d13d0ab7e478665c60f35e2a613dcd527851c2c7287ce5c787e134a" -dependencies = [ - "libc", - "zstd-sys", -] - -[[package]] -name = "zstd-sys" -version = "2.0.1+zstd.1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b" -dependencies = [ - "cc", - "libc", -] diff --git a/pkgs/servers/ankisyncd/default.nix b/pkgs/servers/ankisyncd/default.nix deleted file mode 100644 index 4a3c16c4b4ad..000000000000 --- a/pkgs/servers/ankisyncd/default.nix +++ /dev/null @@ -1,53 +0,0 @@ -{ lib, runCommand, fetchFromGitHub, rustPlatform, protobuf }: - -let - pname = "ankisyncd"; - version = "1.1.4"; - - # anki-sync-server-rs expects anki sources in the 'anki' folder - # of its own source tree, with a patch applied (mostly to make - # some modules public): prepare our own 'src' manually - src = runCommand "anki-sync-server-rs-src" { - src = fetchFromGitHub { - owner = "ankicommunity"; - repo = "anki-sync-server-rs"; - rev = version; - hash = "sha256-iL4lJJAV4SrNeRX3s0ZpJ//lrwoKjLsltlX4d2wP6O0="; - }; - } '' - cp -r "$src/." "$out" - chmod +w "$out" - cp -r "${ankiSrc}" "$out/anki" - chmod -R +w "$out/anki" - patch -d "$out/anki" -Np1 < "$src/anki_patch/d9d36078f17a2b4b8b44fcb802eb274911ebabe7_anki_rslib.patch" - ''; - - # Note we do not use anki.src because the patch in ankisyncd's - # sources expect a fixed version, so we pin it here. - ankiSrc = fetchFromGitHub { - owner = "ankitects"; - repo = "anki"; - rev = "2.1.60"; - hash = "sha256-hNrf6asxF7r7QK2XO150yiRjyHAYKN8OFCFYX0SAiwA="; - fetchSubmodules = true; - }; -in rustPlatform.buildRustPackage { - inherit pname version src; - - cargoLock = { - lockFile = ./Cargo.lock; - outputHashes = { - "csv-1.1.6" = "sha256-w728ffOVkI+IfK6FbmkGhr0CjuyqgJnPB1kutMJIUYg="; - }; - }; - - nativeBuildInputs = [ protobuf ]; - - meta = with lib; { - description = "Standalone unofficial anki sync server"; - homepage = "https://github.com/ankicommunity/anki-sync-server-rs"; - license = with licenses; [ agpl3Only ]; - maintainers = with maintainers; [ martinetd ]; - mainProgram = "ankisyncd"; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 3ac307ad53b6..13d6fdffbeb3 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -112,6 +112,7 @@ mapAliases ({ ansible_2_14 = throw "Ansible 2.14 goes end of life in 2024/05 and can't be supported throughout the 24.05 release cycle"; # Added 2024-04-11 antennas = throw "antennas has been removed as it only works with tvheadend, which nobody was willing to maintain and was stuck on an unmaintained version that required FFmpeg 4; please see https://github.com/NixOS/nixpkgs/pull/332259 if you are interested in maintaining a newer version"; # Added 2024-08-21 androidndkPkgs_23b = lib.warn "The package set `androidndkPkgs_23b` has been renamed to `androidndkPkgs_23`." androidndkPkgs_23; # Added 2024-07-21 + ankisyncd = throw "ankisyncd is dead, use anki-sync-server instead"; # Added 2024-08-10 apacheAnt_1_9 = throw "Ant 1.9 has been removed since it's not used in nixpkgs anymore"; # Added 2023-11-12 apacheKafka_2_8 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-02-12 apacheKafka_3_0 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-02-12 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a6bbd69898f5..ec15864d398e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -243,8 +243,6 @@ with pkgs; anders = callPackage ../applications/science/logic/anders { }; - ankisyncd = callPackage ../servers/ankisyncd { }; - ariang = callPackage ../servers/ariang { }; ani-cli = callPackage ../applications/video/ani-cli { }; From 208ae194a5ff7f20d76f20986e1c1c840a83fe9c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 11 Sep 2024 08:04:21 +0200 Subject: [PATCH 071/232] python312Packages.tensorstore: 0.1.53 -> 0.1.65 Changelog: https://github.com/google/tensorstore/releases/tag/v0.1.65 --- .../python-modules/tensorstore/default.nix | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/tensorstore/default.nix b/pkgs/development/python-modules/tensorstore/default.nix index 31c126f62835..90a550f42ab3 100644 --- a/pkgs/development/python-modules/tensorstore/default.nix +++ b/pkgs/development/python-modules/tensorstore/default.nix @@ -16,17 +16,17 @@ let "aarch64-darwin" = "macosx_11_0_arm64"; }; hashes = { - "310-x86_64-linux" = "sha256-1b6w9wgT6fffTTpJ3MxdPSrFD7Xaby6prQYFljVn4x4="; - "311-x86_64-linux" = "sha256-8+HlzaxH30gB5N+ZKR0Oq+yswhq5gjiSF9jVsg8U22E="; - "312-x86_64-linux" = "sha256-e8iEQzB4D3RSXgrcPC4me/vsFKoXf1QFNZfQ7968zQE="; - "310-aarch64-darwin" = "sha256-2C60yJk/Pbx2woV7hzEmWGzNKWWnySDfTPm247PWIRA="; - "311-aarch64-darwin" = "sha256-rdLB7l/8ZYjV589qKtORiyu1rC7W30wzrsz1uihNRpk="; - "312-aarch64-darwin" = "sha256-DpbYMIbqceQeiL7PYwnvn9jLtv8EmfHXmxvPfZCw914="; + "310-x86_64-linux" = "sha256-oB68FjYzmRARWpbajQuLpAzWwg9CCji4tLZRFCsztjk="; + "311-x86_64-linux" = "sha256-kGEecBu7b3TFGUIRirI9q2W3nipiQwsh/1OB92RqDB4="; + "312-x86_64-linux" = "sha256-Vw8sT5kahSN20BQs3MOYesSUZqk4CuvfZR1z5nAO7g8="; + "310-aarch64-darwin" = "sha256-2vuVxmJMx/GeaHgzUS6rRdysQFHreVzZ5IT5YSDUJro="; + "311-aarch64-darwin" = "sha256-0xRVDSDE9upz2yU7mzpa3Y6l6M5FWOMAPKWBC8eY3Eo="; + "312-aarch64-darwin" = "sha256-i2TmLOl2aHD5iyzF6YpjbHKFmBGPx5ixPYyNKKQfRNM="; }; in buildPythonPackage rec { pname = "tensorstore"; - version = "0.1.53"; + version = "0.1.65"; format = "wheel"; # The source build involves some wonky Bazel stuff. @@ -44,19 +44,19 @@ buildPythonPackage rec { nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ]; - propagatedBuildInputs = [ + dependencies = [ ml-dtypes numpy ]; pythonImportsCheck = [ "tensorstore" ]; - meta = with lib; { + meta = { description = "Library for reading and writing large multi-dimensional arrays"; homepage = "https://google.github.io/tensorstore"; changelog = "https://github.com/google/tensorstore/releases/tag/v${version}"; - license = licenses.asl20; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.asl20; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + maintainers = with lib.maintainers; [ samuela ]; }; } From 5c96d5f1d3db440c9a3e137aaa24ffc5f3f3626a Mon Sep 17 00:00:00 2001 From: Simon-The-Human <80045931+Simon-The-Human@users.noreply.github.com> Date: Wed, 11 Sep 2024 10:13:49 +0300 Subject: [PATCH 072/232] yandex-browser: 24.4.1.915-1 -> 24.7.1.1120-1 --- .../networking/browsers/yandex-browser/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/browsers/yandex-browser/default.nix b/pkgs/applications/networking/browsers/yandex-browser/default.nix index d4fa55f26676..06d4251b9faa 100644 --- a/pkgs/applications/networking/browsers/yandex-browser/default.nix +++ b/pkgs/applications/networking/browsers/yandex-browser/default.nix @@ -54,15 +54,15 @@ let version = { - corporate = "24.4.3.1073-1"; - beta = "24.4.1.952-1"; - stable = "24.4.1.951-1"; + corporate = "24.7.1.1195-1"; + beta = "24.7.1.1124-1"; + stable = "24.7.1.1120-1"; }.${edition}; hash = { - corporate = "sha256-f2Q6q3rL+RcVYX46RHRAageF2JKPxmBaV6KHYl5XtN8="; - beta = "sha256-WCyjgb5uj9guqyge6giP0wavndorlMG6yacG134xWjw="; - stable = "sha256-4AsMpANtMXUS2NCPKI+Ut0tWGurRIpWCmS3PhEi1CGo="; + corporate = "sha256-HPEUeIZl9nRhMzrMv4MzIOnbF8mJ789vCtTWf9TcCH4="; + beta = "sha256-vcX/9MWqeUd/YlczHivcL6+TignE8Nk6rO5DaCjf2SQ="; + stable = "sha256-wrYPQ8WrttF/tlafA0+e3eDZMq9SFmLk5NOIeHQr14U="; }.${edition}; app = { From 74df7532f2f95619721c8681961253bfb805e937 Mon Sep 17 00:00:00 2001 From: Tom Dohrmann Date: Tue, 10 Sep 2024 16:06:14 +0200 Subject: [PATCH 073/232] dtc: disable tests when building statically One of the tests tries to build a shared library. This fails with the following messages: /nix/store/ihajn8cwijqqxz3rvrlznaz339vh2gac-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/h9gcvnp90mpniyx2v0d0p3s06hkx1v2p-x86_64-unknown-linux-musl-gcc-13.3.0/lib/gcc/x86_64-unknown-linux-musl/13.3.0/crtbeginT.o: relocation R_X86_64_32 against hidden symbol `__TMC_END__' can not be used when making a shared object /nix/store/ihajn8cwijqqxz3rvrlznaz339vh2gac-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: failed to set dynamic section sizes: bad value --- pkgs/development/compilers/dtc/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/compilers/dtc/default.nix b/pkgs/development/compilers/dtc/default.nix index 3bf938b75903..d244fc62aef4 100644 --- a/pkgs/development/compilers/dtc/default.nix +++ b/pkgs/development/compilers/dtc/default.nix @@ -109,6 +109,11 @@ stdenv.mkDerivation (finalAttrs: { # Checks are broken on aarch64 darwin # https://github.com/NixOS/nixpkgs/pull/118700#issuecomment-885892436 !stdenv.isDarwin && + # Checks are broken when building statically on x86_64 linux with musl + # One of the test tries to build a shared library and this causes the linker: + # x86_64-unknown-linux-musl-ld: /nix/store/h9gcvnp90mpniyx2v0d0p3s06hkx1v2p-x86_64-unknown-linux-musl-gcc-13.3.0/lib/gcc/x86_64-unknown-linux-musl/13.3.0/crtbeginT.o: relocation R_X86_64_32 against hidden symbol `__TMC_END__' can not be used when making a shared object + # x86_64-unknown-linux-musl-ld: failed to set dynamic section sizes: bad value + !stdenv.hostPlatform.isStatic && # we must explicitly disable this here so that mesonFlags receives # `-Dtests=disabled`; without it meson will attempt to run From e495438c86a0b55dc06231a49750f13134d3787f Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Wed, 11 Sep 2024 11:20:19 +0200 Subject: [PATCH 074/232] conmon-rs: 0.6.5 -> 0.6.6 Signed-off-by: Sascha Grunert --- pkgs/applications/virtualization/conmon-rs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/conmon-rs/default.nix b/pkgs/applications/virtualization/conmon-rs/default.nix index e22257f7367b..a68f48ebaa40 100644 --- a/pkgs/applications/virtualization/conmon-rs/default.nix +++ b/pkgs/applications/virtualization/conmon-rs/default.nix @@ -7,13 +7,13 @@ rustPlatform.buildRustPackage rec { pname = "conmon-rs"; - version = "0.6.5"; + version = "0.6.6"; src = fetchFromGitHub { owner = "containers"; repo = pname; rev = "v${version}"; - hash = "sha256-qb7n6AcRkv/nF0BQbPgdFqaklfJeC+PRzMh6EIykobY="; + hash = "sha256-1kGAUAmiPI9zE8LE7G2r0Gy0YM+BUy2MxY7IQOu2ZDQ="; }; nativeBuildInputs = [ capnproto protobuf ]; From f04a15faf605f82d150b7aa7f14ecfaaa4bf4d90 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Wed, 11 Sep 2024 11:45:38 +0200 Subject: [PATCH 075/232] tinygo: 0.32.0 -> 0.33.0 --- .../compilers/tinygo/0001-GNUmakefile.patch | 24 ++++--------------- pkgs/development/compilers/tinygo/default.nix | 6 ++--- 2 files changed, 7 insertions(+), 23 deletions(-) diff --git a/pkgs/development/compilers/tinygo/0001-GNUmakefile.patch b/pkgs/development/compilers/tinygo/0001-GNUmakefile.patch index 4bfefe1aeaa2..db4feeb9af66 100644 --- a/pkgs/development/compilers/tinygo/0001-GNUmakefile.patch +++ b/pkgs/development/compilers/tinygo/0001-GNUmakefile.patch @@ -13,7 +13,7 @@ diff --git a/GNUmakefile b/GNUmakefile # First search for a custom built copy, then move on to explicitly version-tagged binaries, then just see if the tool is in path with its normal name. findLLVMTool = $(call detect,$(1),$(abspath llvm-build/bin/$(1)) $(foreach ver,$(LLVM_VERSIONS),$(call toolSearchPathsVersion,$(1),$(ver))) $(1)) CLANG ?= $(call findLLVMTool,clang) -@@ -816,9 +811,8 @@ endif +@@ -848,9 +843,8 @@ endif wasmtest: $(GO) test ./tests/wasm @@ -24,15 +24,7 @@ diff --git a/GNUmakefile b/GNUmakefile @mkdir -p build/release/tinygo/lib/CMSIS/CMSIS @mkdir -p build/release/tinygo/lib/macos-minimal-sdk @mkdir -p build/release/tinygo/lib/mingw-w64/mingw-w64-crt/lib-common -@@ -832,15 +826,11 @@ build/release: tinygo gen-device wasi-libc $(if $(filter 1,$(USE_SYSTEM_BINARYEN - @mkdir -p build/release/tinygo/lib/wasi-libc/libc-bottom-half/headers - @mkdir -p build/release/tinygo/lib/wasi-libc/libc-top-half/musl/arch - @mkdir -p build/release/tinygo/lib/wasi-libc/libc-top-half/musl/src -- @mkdir -p build/release/tinygo/pkg/thumbv6m-unknown-unknown-eabi-cortex-m0 -- @mkdir -p build/release/tinygo/pkg/thumbv6m-unknown-unknown-eabi-cortex-m0plus -- @mkdir -p build/release/tinygo/pkg/thumbv7em-unknown-unknown-eabi-cortex-m4 - @echo copying source files - @cp -p build/tinygo$(EXE) build/release/tinygo/bin +@@ -871,7 +865,6 @@ build/release: tinygo gen-device wasi-libc $(if $(filter 1,$(USE_SYSTEM_BINARYEN ifneq ($(USE_SYSTEM_BINARYEN),1) @cp -p build/wasm-opt$(EXE) build/release/tinygo/bin endif @@ -40,24 +32,16 @@ diff --git a/GNUmakefile b/GNUmakefile @cp -rp lib/CMSIS/CMSIS/Include build/release/tinygo/lib/CMSIS/CMSIS @cp -rp lib/CMSIS/README.md build/release/tinygo/lib/CMSIS @cp -rp lib/macos-minimal-sdk/* build/release/tinygo/lib/macos-minimal-sdk -@@ -891,16 +881,9 @@ endif - @cp -rp lib/wasi-libc/libc-top-half/musl/src/string build/release/tinygo/lib/wasi-libc/libc-top-half/musl/src +@@ -927,8 +920,7 @@ endif @cp -rp lib/wasi-libc/libc-top-half/musl/include build/release/tinygo/lib/wasi-libc/libc-top-half/musl @cp -rp lib/wasi-libc/sysroot build/release/tinygo/lib/wasi-libc/sysroot + @cp -rp lib/wasi-cli/wit build/release/tinygo/lib/wasi-cli/wit - @cp -rp llvm-project/compiler-rt/lib/builtins build/release/tinygo/lib/compiler-rt-builtins - @cp -rp llvm-project/compiler-rt/LICENSE.TXT build/release/tinygo/lib/compiler-rt-builtins + @cp -rp lib/compiler-rt-builtins build/release/tinygo/lib/compiler-rt-builtins @cp -rp src build/release/tinygo/src @cp -rp targets build/release/tinygo/targets -- ./build/release/tinygo/bin/tinygo build-library -target=cortex-m0 -o build/release/tinygo/pkg/thumbv6m-unknown-unknown-eabi-cortex-m0/compiler-rt compiler-rt -- ./build/release/tinygo/bin/tinygo build-library -target=cortex-m0plus -o build/release/tinygo/pkg/thumbv6m-unknown-unknown-eabi-cortex-m0plus/compiler-rt compiler-rt -- ./build/release/tinygo/bin/tinygo build-library -target=cortex-m4 -o build/release/tinygo/pkg/thumbv7em-unknown-unknown-eabi-cortex-m4/compiler-rt compiler-rt -- ./build/release/tinygo/bin/tinygo build-library -target=cortex-m0 -o build/release/tinygo/pkg/thumbv6m-unknown-unknown-eabi-cortex-m0/picolibc picolibc -- ./build/release/tinygo/bin/tinygo build-library -target=cortex-m0plus -o build/release/tinygo/pkg/thumbv6m-unknown-unknown-eabi-cortex-m0plus/picolibc picolibc -- ./build/release/tinygo/bin/tinygo build-library -target=cortex-m4 -o build/release/tinygo/pkg/thumbv7em-unknown-unknown-eabi-cortex-m4/picolibc picolibc - release: - tar -czf build/release.tar.gz -C build/release tinygo -- 2.37.2 diff --git a/pkgs/development/compilers/tinygo/default.nix b/pkgs/development/compilers/tinygo/default.nix index 751da950005d..a32e516633a8 100644 --- a/pkgs/development/compilers/tinygo/default.nix +++ b/pkgs/development/compilers/tinygo/default.nix @@ -28,13 +28,13 @@ in buildGoModule rec { pname = "tinygo"; - version = "0.32.0"; + version = "0.33.0"; src = fetchFromGitHub { owner = "tinygo-org"; repo = "tinygo"; rev = "v${version}"; - hash = "sha256-ehXkYOMQz6zEmofK+3ajwxLK9vIRZava/F3Ki5jTzYo="; + hash = "sha256-YqjMk7EF/fyOhsMLcG56FGHfOZSdaFhUbiiHk+SXajY="; fetchSubmodules = true; # The public hydra server on `hydra.nixos.org` is configured with # `max_output_size` of 3GB. The purpose of this `postFetch` step @@ -45,7 +45,7 @@ buildGoModule rec { ''; }; - vendorHash = "sha256-rJ8AfJkIpxDkk+9Tf7ORnn7ueJB1kjJUBiLMDV5tias="; + vendorHash = "sha256-cTqrvh0w3KQg3P1lCfAez0kqAMBJHQbqS3sx8uqGvEs="; patches = [ ./0001-GNUmakefile.patch From c53aaf81caa5cf3115b53a0fce9eb70c8d3071e7 Mon Sep 17 00:00:00 2001 From: kilianar Date: Wed, 11 Sep 2024 12:13:02 +0200 Subject: [PATCH 076/232] ausweisapp: 2.2.0 -> 2.2.1 https://github.com/Governikus/AusweisApp/releases/tag/2.2.1 --- pkgs/applications/misc/ausweisapp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/ausweisapp/default.nix b/pkgs/applications/misc/ausweisapp/default.nix index b62163544426..ab5cda688562 100644 --- a/pkgs/applications/misc/ausweisapp/default.nix +++ b/pkgs/applications/misc/ausweisapp/default.nix @@ -15,13 +15,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "ausweisapp"; - version = "2.2.0"; + version = "2.2.1"; src = fetchFromGitHub { owner = "Governikus"; repo = "AusweisApp2"; rev = finalAttrs.version; - hash = "sha256-YOsKAWc6z39OPzc4eWc/9RhRoOD+J5xHve4Low1UX+Q="; + hash = "sha256-+hkbtxw1Bj/lMgyf3OkwmRXyZL6CS3bTHUlGH9xxe/E="; }; nativeBuildInputs = [ From 8a74e82c777bf81abbb4868257840119a815adec Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 11 Sep 2024 13:00:58 +0200 Subject: [PATCH 077/232] gromacsPlumed: 2023 -> 2024.2 --- .../science/molecular-dynamics/gromacs/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/molecular-dynamics/gromacs/default.nix b/pkgs/applications/science/molecular-dynamics/gromacs/default.nix index 6531002ceb31..916ac73deecc 100644 --- a/pkgs/applications/science/molecular-dynamics/gromacs/default.nix +++ b/pkgs/applications/science/molecular-dynamics/gromacs/default.nix @@ -40,8 +40,8 @@ let source = if enablePlumed then { - version = "2023"; - hash = "sha256-rJLG2nL7vMpBT9io2Xnlbs8XxMHNq+0tpc+05yd7e6g="; + version = "2024.2"; + hash = "sha256-gCp+M18uiVdw9XsVnk7DaOuw/yzm2sz3BsboAlw2hSs="; } else { @@ -61,7 +61,7 @@ in stdenv.mkDerivation rec { patches = [ ./pkgconfig.patch ]; postPatch = lib.optionalString enablePlumed '' - plumed patch -p -e gromacs-2023 + plumed patch -p -e gromacs-${source.version} ''; outputs = [ "out" "dev" "man" ]; From 59a38dae1ad35ea45f3cc28eb0c6b9aa8b2076b9 Mon Sep 17 00:00:00 2001 From: Astrid Date: Wed, 11 Sep 2024 13:40:58 +0200 Subject: [PATCH 078/232] jadx: update deps.json to fix build --- pkgs/tools/security/jadx/deps.json | 236 ++++++++++++++--------------- 1 file changed, 118 insertions(+), 118 deletions(-) diff --git a/pkgs/tools/security/jadx/deps.json b/pkgs/tools/security/jadx/deps.json index be81d7a4acee..f91f061ccc9a 100644 --- a/pkgs/tools/security/jadx/deps.json +++ b/pkgs/tools/security/jadx/deps.json @@ -248,13 +248,13 @@ "jar": "sha256-urlD5Y7dFzCSOGctunpFrsni2svd24GKjPF3I+oT+iI=", "pom": "sha256-4nl2N1mZxUJ/y8//PzvCD77a+tiqRRArN59cL5fI/rQ=" }, - "org/gradle/kotlin#gradle-kotlin-dsl-plugins/4.3.1": { - "jar": "sha256-j8X5xgrEWoeaQXdoEbWf0s5cWtXkJW8S18i+rFCkHcg=", - "module": "sha256-k+eJyXjl4QG8QXfLsnmFQSvMtpNtsA7MQeYoG4QD/F4=", - "pom": "sha256-Fr3gZfWofPRP3FD5xbYNMS9xOgwbyq4AixJItHhojAo=" + "org/gradle/kotlin#gradle-kotlin-dsl-plugins/4.5.0": { + "jar": "sha256-Ga92VnnptJN0uyg6xE81O4EJrZz+ZmjO1tmmZFVA4vo=", + "module": "sha256-G2X3c4EI7gxE5qUNjMJUpPHFpzmAtuh7D14uxMt6qDY=", + "pom": "sha256-D4Du3/O101e+rs5h8enK1Le/b4EVrWRIfYp2x/GwDBw=" }, - "org/gradle/kotlin/kotlin-dsl#org.gradle.kotlin.kotlin-dsl.gradle.plugin/4.3.1": { - "pom": "sha256-Oispc8Afy2j0kx8ZbNeLAzctoWrBYmqOPWMYVkNqlOc=" + "org/gradle/kotlin/kotlin-dsl#org.gradle.kotlin.kotlin-dsl.gradle.plugin/4.5.0": { + "pom": "sha256-WPAIDJzwTgVq1U0Ok91KI0KGXnihMR6TVAVk90wgDjc=" }, "org/jdom#jdom2/2.0.6.1": { "jar": "sha256-CyD0XjoP2PDRLNxTFrBndukCsTZdsAEYh2+RdcYPMCw=", @@ -268,120 +268,113 @@ "jar": "sha256-xf1yW/+rUYRr88d9sTg8YKquv+G3/i8A0j/ht98KQ50=", "pom": "sha256-h3IcuqZaPJfYsbqdIHhA8WTJ/jh1n8nqEP/iZWX40+k=" }, - "org/jetbrains/kotlin#kotlin-android-extensions/1.9.22": { - "jar": "sha256-Hl6IFkKpnduPbRPmmVoIwZK8OEGHOWZj2ER8CB2H4k8=", - "pom": "sha256-lEt8+zPgpvtoRVkEjwKMuWMmyTKiRdXLAhQ7zSwDEVk=" - }, "org/jetbrains/kotlin#kotlin-android-extensions/1.9.23": { "jar": "sha256-Yf12SPkx/06b2/9JvwmHcFdj+7qce7ALJkgRo20RGsE=", "pom": "sha256-0+vFk7FzrT4tHiVgtpwzFKRpDI2jJ0ch6DqWrtwWEaA=" }, - "org/jetbrains/kotlin#kotlin-assignment-compiler-plugin-embeddable/1.9.22": { - "jar": "sha256-KmHdIZ/tvlMYo7HiPA9zm0XtG1sksLZzdRm3hF6Alfg=", - "pom": "sha256-nbJr6D8/Y8Uf972pHjpqQNTDTaAj5ilsAQW7SqZvzJI=" + "org/jetbrains/kotlin#kotlin-android-extensions/1.9.24": { + "jar": "sha256-4z5UUlSR0ZgdRODKmnxTIWh91QRDPsVJZhqb5UYKEW4=", + "pom": "sha256-6QmjYHLn/lbQULgKdXEDwdP4dz+2wb0GcrxKr7hRCEs=" }, - "org/jetbrains/kotlin#kotlin-assignment/1.9.22": { - "module": "sha256-bxIe+E4ozzMG/eTDHVXC2D14RPJLDnslZfh7Apn7sx0=", - "pom": "sha256-9kQYoM3bm9hQ96/CasjyPon7ptlgSNqnNZVWJ5AgbwA=" + "org/jetbrains/kotlin#kotlin-assignment-compiler-plugin-embeddable/1.9.24": { + "jar": "sha256-AoVjJSRkxIYBkX8rbFTRuOQhzcfya/L5zzCIlcgSSgY=", + "pom": "sha256-Hzfc9EhcI3qtLk70O40RQJleMTKduiTJ9qa3uEBrg9Q=" }, - "org/jetbrains/kotlin#kotlin-assignment/1.9.22/gradle82": { - "jar": "sha256-SbgHX6DiGLoRuhim9yUE38XwOZQovs8Ta9yHHceBgMU=" + "org/jetbrains/kotlin#kotlin-assignment/1.9.24": { + "module": "sha256-qa+tevGbZXAv892pBdPJt/mem9rqadY1+s2f3mi7VQU=", + "pom": "sha256-U5l+9NCcNhmm32TaPftTdngenYSMck+DLIDPCoCjLA8=" }, - "org/jetbrains/kotlin#kotlin-build-tools-api/1.9.22": { - "jar": "sha256-3UnLfij08zgvUlDPsFyGT9XwqW0yZbspPHezCtzJP/Y=", - "pom": "sha256-DFZLu4fcXs32Q005buob886Xar8IgYCN0Wb6SbBGSfs=" + "org/jetbrains/kotlin#kotlin-assignment/1.9.24/gradle82": { + "jar": "sha256-897/fRYVZp9m+jeTnLZJBOex+LBgNReZDH8IEs40oNs=" }, "org/jetbrains/kotlin#kotlin-build-tools-api/1.9.23": { "jar": "sha256-gvhH4lRXtGSDfv7x2oUC7JJTLedAbnkgUWbODs9PxSE=", "pom": "sha256-CWkjtiXJfGZzZ5ZsxM6Sv5TE6f98U8sdOEhgEax1DVg=" }, - "org/jetbrains/kotlin#kotlin-compiler-embeddable/1.9.22": { - "jar": "sha256-K/6t7lmrGYjDNtvW5l2ZH3Zq4d2Gg/Km3tX6oCefDKA=", - "pom": "sha256-s9o0u29ClqzzoPRDRm8FBsbJnaXNliTW4LdFsiKHhOs=" + "org/jetbrains/kotlin#kotlin-build-tools-api/1.9.24": { + "jar": "sha256-ZUX99qL/t4jN3O3KymMiOdx+XmHD90SCNzXjse2cG1Q=", + "pom": "sha256-efIYZmDsHYeQhu4jEEeY2M1PthcsJ5xeVuAsqeVbxHU=" }, "org/jetbrains/kotlin#kotlin-compiler-embeddable/1.9.23": { "jar": "sha256-zJQGSXS/nr9ZlF4xIXzy0WoM66rySH6wdI/By9F4eUM=", "pom": "sha256-WLI81NgtWqkWpcnMmbMhjuxVaWBoova3C+3fbDaR/RU=" }, - "org/jetbrains/kotlin#kotlin-compiler-runner/1.9.22": { - "jar": "sha256-c+x1u5nr/6iySiSjuFPz9mCWvEapNRrw2sk967acFes=", - "pom": "sha256-pO6KZ8HW8lODjAAnKAvLgFCsDc3MrZdIlhOKaaAX6wE=" + "org/jetbrains/kotlin#kotlin-compiler-embeddable/1.9.24": { + "jar": "sha256-5x/xnmsUGrhakyj9AQlBUxowJUMCa9QkTJWtwgjVAfY=", + "pom": "sha256-1w0fiFkkQ/R1eVFUVqTWwxBRztoK0RRGkjrK/kwMldE=" }, "org/jetbrains/kotlin#kotlin-compiler-runner/1.9.23": { "jar": "sha256-yFlaPhcRx0U8f5YKrxKhcNtL2j1vy6Sf/I4yy/0ADKE=", "pom": "sha256-KebjEpGbdf6aOHjflRHPQhDcJuWTQcsu4iSDt7Tgcv4=" }, - "org/jetbrains/kotlin#kotlin-daemon-client/1.9.22": { - "jar": "sha256-XXPhgVsRZ+Sv4gjwCyp1wIC8WoEHhsqtuOFHh1k6k7k=", - "pom": "sha256-YsRKZZ2lXbb7El4pKbmNUEow4fSvgU4I5JIUJqpST4o=" + "org/jetbrains/kotlin#kotlin-compiler-runner/1.9.24": { + "jar": "sha256-g4Q5dMH/0NNmbTxkk0Hb/TB32eFAZlVKakR7laMB3S0=", + "pom": "sha256-wb508udfB+SamqaJA+DctogA0iRkBBi0hHfuQsvDWQQ=" }, "org/jetbrains/kotlin#kotlin-daemon-client/1.9.23": { "jar": "sha256-5jFUJUkZ/XBv6ZN8SNuTfqkGimMfht5lWlFLwWIPmI0=", "pom": "sha256-X70GastuQIU5gCdsaDUWmSj2Zqt8RlEsJvJMnQMIF9M=" }, - "org/jetbrains/kotlin#kotlin-daemon-embeddable/1.9.22": { - "jar": "sha256-kqV4ExcUR9U0Rh+hP+N9yM07f4bYPpsfe7GwvjBUH4s=", - "pom": "sha256-9uo9z2v7Og0GmER8SKa88I2Oqs+D/JX+nUGBpeXjwrE=" + "org/jetbrains/kotlin#kotlin-daemon-client/1.9.24": { + "jar": "sha256-WIqveo7Y55uL8+qLknj/Enii1ZKFpF4Jjxz8v7Dc080=", + "pom": "sha256-tv4ne9GuP/zAzriOxmZZmHpc0TeaiXaDEvXe3x8uH+U=" }, "org/jetbrains/kotlin#kotlin-daemon-embeddable/1.9.23": { "jar": "sha256-bztmG5gmetJOL4+3rV0Gvn0u1hpdBcJn9OTKp433g9k=", "pom": "sha256-WFRgOL5Go4NmOFPRMd12xPsnQ4MLqXt0sno1zxAtPQI=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-annotations/1.9.22": { - "jar": "sha256-lnaDy5jZkQFFYH+/W0VilbQ/Cq+Tsbunv2mS5zHLJOw=", - "pom": "sha256-Y7por+B4/3D3CPnpecaTxFv+iQQfeWQbC4H2tKEm7rs=" + "org/jetbrains/kotlin#kotlin-daemon-embeddable/1.9.24": { + "jar": "sha256-F3vIsqQHbcznh4rQ2P0HFjrzF44/qQ7mPU9zO7R7/ck=", + "pom": "sha256-T7V/xqxyCVGzIkd0s7sqVFSelj0vTf3GhB6Ex77WKrE=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin-annotations/1.9.23": { "jar": "sha256-HaitBgpbw4KwTxVycdPNrWgwcUovTfSvfEAIjUuSIWQ=", "pom": "sha256-69aRc06Qr9Wj6PoqkTrw+Q6YL4a6IYWhcDIqGwiQpgU=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-api/1.9.22": { - "jar": "sha256-7P9nVGBlxg4JX7k7P4i5uS7R7cN+P+u8b57TVCL6QSs=", - "module": "sha256-H0SJxTBPmlEqVof/zAqvCTCvydcgUdOpBfrAcANi+3s=", - "pom": "sha256-ZAFewaGutVCqGCjCQuIoODDFD2g2TkCDH+FYj9wEEfU=" - }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-api/1.9.22/gradle82": { - "jar": "sha256-7P9nVGBlxg4JX7k7P4i5uS7R7cN+P+u8b57TVCL6QSs=" + "org/jetbrains/kotlin#kotlin-gradle-plugin-annotations/1.9.24": { + "jar": "sha256-syBxajMCclSau65oGoD14P5YBLo5TQ8kW1s3f6JWNVk=", + "pom": "sha256-fHb3hHzJ5bWOGoJbbqAZV7QoHpHmzXBcFmy+afvDtYs=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin-api/1.9.23": { "jar": "sha256-WTzAhC1fwJe5XgpgK/+Mekifc3Q7hzywuO7JL86KQVs=", "module": "sha256-zmi7IanW8gt7DnKf4y+aVHu2SyXjEPD14vcMUJ1n7cQ=", "pom": "sha256-WMjnhsjGUvTpgqQlh5FZTL4L+JKiaGCVTKa1Ue7mN+8=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-idea-proto/1.9.22": { - "jar": "sha256-9dgu5hlmotmK364Z8k1hcwIsFUBIls3yNjQANe5owPU=", - "pom": "sha256-huMsqCkn2ogKHPNDpA7MIJgHXm/XInOzTVDfpUTzRjs=" + "org/jetbrains/kotlin#kotlin-gradle-plugin-api/1.9.24": { + "jar": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=", + "module": "sha256-kB+s0LsPLdJ9XzvJDkQvJ3OrEuHOcgnT78HlhWNsfWQ=", + "pom": "sha256-r9FlfZ0Vx2BxZ1InnZEdG73PjfTPXZYEUGHjCunBMX4=" + }, + "org/jetbrains/kotlin#kotlin-gradle-plugin-api/1.9.24/gradle82": { + "jar": "sha256-LV53JHoKf1klIL64gx6OPrl0m/OIhfgv+9Y8f/BRPhI=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin-idea-proto/1.9.23": { "jar": "sha256-i7/a0U08PFCzK/a/4PHHAnvlQoXEba95gnz5O1y0PX8=", "pom": "sha256-x0cp9NYFkAEhZptBEO1FuvVeB1q1O2OmQrkLOv95NCI=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-idea/1.9.22": { - "jar": "sha256-jRr4djLZUUjxIqn6CuKQPBnub6t9AeAX924NLJoCLCA=", - "module": "sha256-z+LCbjMPaAMsAD+lJMAx5aYPzo2Jn/8uQjFBKL60QCs=", - "pom": "sha256-3BSjKHVDun5QRs1OCVAtJ4hMqYfshwb1+xid54luOsw=" + "org/jetbrains/kotlin#kotlin-gradle-plugin-idea-proto/1.9.24": { + "jar": "sha256-hR4BJ+5ixRDpf4UB6Q/V6yTQ15bHCcv5SvM5R0Fre/4=", + "pom": "sha256-3gafD+sze0Nbc/GdKaISONBW5oegumvivczlmvqSa7Y=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin-idea/1.9.23": { "jar": "sha256-jRr4djLZUUjxIqn6CuKQPBnub6t9AeAX924NLJoCLCA=", "module": "sha256-G+uiuitRE94FM+UV4X9W1TZOm1QiX/MftNj+yfcV2Cw=", "pom": "sha256-KemtQ1rc9Q/ljTiQ65lePyuNdQEZqaEsIfwwo2DNCOA=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-model/1.9.22": { - "jar": "sha256-UQj61b4UmCXs46ABA8PCHPGv6VS7ZLhweJVyk511OMs=", - "module": "sha256-L/MBPfK6epteiwBOhIF1DI0PqVOtAHoZbYXSY2cdvq4=", - "pom": "sha256-gfUmlHml2X7oeSpITIMr495DgggSZxlhUAHKyI5C9qg=" + "org/jetbrains/kotlin#kotlin-gradle-plugin-idea/1.9.24": { + "jar": "sha256-jRr4djLZUUjxIqn6CuKQPBnub6t9AeAX924NLJoCLCA=", + "module": "sha256-4Jx9wdImjqtl5EGtLjgWDzGHsNjAv5zxrUyF+nUjm6Q=", + "pom": "sha256-aTnfzQ6JgI3AA25alaOPcb+EKF53bpEFIdVWJnp8sMc=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin-model/1.9.23": { "jar": "sha256-Pljfrl5D/Ig2X1LfOjRCCMAQDJdacqlKLEoJ9mHTIxc=", "module": "sha256-Evmlol5YCDEXnl2jBJoBMRi9B2zeCkUuZo8qsWCaz70=", "pom": "sha256-sh8qITWUXCtLatLIi+Dnl1WH9HVgiTnn23sG2CfQNXg=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin/1.9.22": { - "module": "sha256-pPRqwMq9jVzbaJ0tN9GdWFhPcIv59k/+TpgKL/dTS7U=", - "pom": "sha256-A3750tSupA9JKdglE1g+STwOBRVuDaix1/Ujurhobyc=" - }, - "org/jetbrains/kotlin#kotlin-gradle-plugin/1.9.22/gradle82": { - "jar": "sha256-1OcY3V8wxrqTLZPM/FswFendPkQUOgUrh3Ao8frlQtw=" + "org/jetbrains/kotlin#kotlin-gradle-plugin-model/1.9.24": { + "jar": "sha256-VbEQENUcmcMXybbvXpVJrUhXEhjN5hvYRIGMti0aPxk=", + "module": "sha256-cQXlShB2dqp9KAzFqUl0QX4qO1cD1w3WH8yr6wccSug=", + "pom": "sha256-rquP4uqM+lwumZi1/nU4MaeYfCx4Q6U1MjYqB/pvABg=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin/1.9.23": { "module": "sha256-YL2BUHBNWByO6tTBlAh26LAor+ixS0lAEMUJIEclRKc=", @@ -390,96 +383,103 @@ "org/jetbrains/kotlin#kotlin-gradle-plugin/1.9.23/gradle82": { "jar": "sha256-vMdKB8ad0RyUsmCx7ophiWlinMrqwubqCnedo8P37D8=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugins-bom/1.9.22": { - "module": "sha256-Qj401h0iCxoN3BgUCGqM6rTa2ed5ArDOjLRyG789xu0=", - "pom": "sha256-da2/XHjOJHwiuvNijQs/8c9+19N9YB66cwTXerdb3Z8=" + "org/jetbrains/kotlin#kotlin-gradle-plugin/1.9.24": { + "module": "sha256-txNZQoRrVH+xtZaGQXBGPC81+hW1qtkzX60P/YamE3s=", + "pom": "sha256-ilwTAHAhV//cHyV1hDZZbsVsM3Z8GqLouOskamWs9SM=" + }, + "org/jetbrains/kotlin#kotlin-gradle-plugin/1.9.24/gradle82": { + "jar": "sha256-6K7ZqBLmU2zu+z7VaPE0ZPoF8ka/0TaTONZDyDKUAks=" }, "org/jetbrains/kotlin#kotlin-gradle-plugins-bom/1.9.23": { "module": "sha256-1yNF4lW/IKOperXQEIa2CMXX0M8/Z3inHoXKy61BQlo=", "pom": "sha256-2Ive7tm5RMrHGM3PKUD4FdgiXuzNIb7KB93QgfDSQow=" }, - "org/jetbrains/kotlin#kotlin-klib-commonizer-api/1.9.22": { - "jar": "sha256-jC9lQpwYLi5KLgnLkQ5iuW227tKFWUuPga+CO35ZROI=", - "pom": "sha256-EMrJcNMAo0icM/CzBBVv8DLZWVm+WqrDuIAoKtWGIv4=" + "org/jetbrains/kotlin#kotlin-gradle-plugins-bom/1.9.24": { + "module": "sha256-BEh8cNHIzCkBwDdNgarX+k/Rp5NeJa200LH69WkKzNs=", + "pom": "sha256-wqVTvkQFNLjTMOV69hNjc1WLXgIPppzPsDsuWDx1nAA=" }, "org/jetbrains/kotlin#kotlin-klib-commonizer-api/1.9.23": { "jar": "sha256-XfEWTbHDRdhtChqkFJCeNnr7l4L+P7yvDir3qL9iuDk=", "pom": "sha256-sSWp19ccGThHr5KiJxxlUbPSl1VFSxyF03SySudVwz4=" }, - "org/jetbrains/kotlin#kotlin-native-utils/1.9.22": { - "jar": "sha256-eGwSfdVTXbLDmuWXzQsMrZ6RS4PiNvHbAlEjXMnGUqw=", - "pom": "sha256-EcUUwF7qOuno4Wq0l5bxEd9DxzSCMeNfr0xCjMT3Q+o=" + "org/jetbrains/kotlin#kotlin-klib-commonizer-api/1.9.24": { + "jar": "sha256-U791bL22Uj3LTA16syrLZBR5bBz0nOQxvkC3DMV9tUk=", + "pom": "sha256-6pO4z4DdKXdKf7GEeclxH7uWPqhqwjq2FOepQAUsZ34=" }, "org/jetbrains/kotlin#kotlin-native-utils/1.9.23": { "jar": "sha256-X9AUhb1z5he+VWv/SZL/ASquufDZwAhPN8tdiKO8rYQ=", "pom": "sha256-eCaL6luL9QqV7nYxKuNjzAvWqt1d9HQwrBNaIG7467Y=" }, - "org/jetbrains/kotlin#kotlin-project-model/1.9.22": { - "jar": "sha256-zBHVwLGQnFsKCP0l7w51T/0r9Wyu9mX7eFEiI15UKhg=", - "pom": "sha256-659KFngb/ADM7IAw++XuIo5vKydxxQwmezIY/rAGW0A=" + "org/jetbrains/kotlin#kotlin-native-utils/1.9.24": { + "jar": "sha256-I1WvMJo7FgeymmF02Fe05umxs2EH1sHvu8PMSbpDRQw=", + "pom": "sha256-uvA25RxRge8Q8wVRXRnfawKWsLcIS0g9I4oImN630i0=" }, "org/jetbrains/kotlin#kotlin-project-model/1.9.23": { "jar": "sha256-j8s85RKrtFLX1DHbssMS1cRQXRdiSTtRsQavwUfZk2c=", "pom": "sha256-nvSy89nZ9Zqwwr9+uO92MgUUmTjg540qIxxHiSHHl0U=" }, + "org/jetbrains/kotlin#kotlin-project-model/1.9.24": { + "jar": "sha256-Nri/x5EqvuVIWSxcI5keVRQODS17OhqTTdPOj6Q0+N0=", + "pom": "sha256-sF4O4QAsGO3t626JrwfjvheFB9sT2hutbs52vmDz7es=" + }, "org/jetbrains/kotlin#kotlin-reflect/1.6.10": { "jar": "sha256-MnesECrheq0QpVq+x1/1aWyNEJeQOWQ0tJbnUIeFQgM=", "pom": "sha256-V5BVJCdKAK4CiqzMJyg/a8WSWpNKBGwcxdBsjuTW1ak=" }, - "org/jetbrains/kotlin#kotlin-reflect/1.9.22": { - "jar": "sha256-d/MRyhOEgR1Rn9o4n8sSaL2qBY1gUEbg7edsA7DfPpc=", - "pom": "sha256-xxLjWN97kxi2j1RjlxsIhnODf8DKQoXRw4LIEC7da18=" + "org/jetbrains/kotlin#kotlin-reflect/1.9.24": { + "jar": "sha256-plFmRFu4XvgWzeEnJ5/gAX0rfMQ5s7lyOQ4bc21k6Uw=", + "pom": "sha256-CghcMAUb1tSrdlrVoMUXnEE7NfdBjyiDFy+9m6GrzMk=" }, - "org/jetbrains/kotlin#kotlin-sam-with-receiver-compiler-plugin-embeddable/1.9.22": { - "jar": "sha256-jqUUoRQABsxXoHMVsVoTaI7W/qFwfzrJjpzoCVu2z38=", - "pom": "sha256-MM9L0JPCbn/Ryt/F1Qop5q60WXUSeia84rEJUfJPgqo=" + "org/jetbrains/kotlin#kotlin-sam-with-receiver-compiler-plugin-embeddable/1.9.24": { + "jar": "sha256-mbinMB9ylR2d5sJW1cBSMowL/zndEm7/tQ/nhkq3CWM=", + "pom": "sha256-XBTVgzip+Vu/dZ2qibp0lC3PoawzFI68tPALrA9kHjg=" }, - "org/jetbrains/kotlin#kotlin-sam-with-receiver/1.9.22": { - "module": "sha256-7rpm+YBjiXkSCkm5/aW4YeEHLWCQIzi1NyYH8kljDC0=", - "pom": "sha256-AD+clOG/rX8ZDm70F+kTOhCjH3hRMBPlkHS2DzZZLCY=" + "org/jetbrains/kotlin#kotlin-sam-with-receiver/1.9.24": { + "module": "sha256-8qBhnZRfeYWlBM1xxwH9/Kwu97M8otTDxGyuJl5CTzQ=", + "pom": "sha256-fqbN1ffpu5RtdIKwn+vDBmLNmXDG0CbYhA3Nqwy+PY8=" }, - "org/jetbrains/kotlin#kotlin-sam-with-receiver/1.9.22/gradle82": { - "jar": "sha256-cvvN3L25ZaQ9uWfLKjGaXXp3NttQrCA8lrmatVc5wkE=" + "org/jetbrains/kotlin#kotlin-sam-with-receiver/1.9.24/gradle82": { + "jar": "sha256-RYZmqqT/D73L7l77+enlM2cf6/4UKaxsqNEypmuo8wo=" }, - "org/jetbrains/kotlin#kotlin-script-runtime/1.9.22": { - "jar": "sha256-uAZwV59/ktRz2NWDTwsST3dVxFmP6UskQYOwKDSDRXQ=", - "pom": "sha256-/ra0ns9pEG1MEoXnH5ob2noSfO9oMC4+n9yCmKTjR5U=" - }, - "org/jetbrains/kotlin#kotlin-scripting-common/1.9.22": { - "jar": "sha256-+lAMvwNJQ++BJvPT3GWvCf+Z3//kTFCZtPwu1b8vXcc=", - "pom": "sha256-ROURI7DCfm/ZM/wma00Nrw8GhKYq7Z/mhC6Noz8qKz8=" + "org/jetbrains/kotlin#kotlin-script-runtime/1.9.24": { + "jar": "sha256-MUx9MI/nUGVDZbrGFEeAYTyRac89nh2vurkc+AvcNXw=", + "pom": "sha256-mGDF58qg5AlxmVCQEtoD01GX/teewKkKUOKPjeh1QE0=" }, "org/jetbrains/kotlin#kotlin-scripting-common/1.9.23": { "jar": "sha256-ii5Wfz2/Nz5hwBrNeIRjHshThGWrjul4rGMpb4zJr0Y=", "pom": "sha256-/CiXW5TcQMDZD9EXXiKxtka60sY368+fT2qy1Oe8XdU=" }, - "org/jetbrains/kotlin#kotlin-scripting-compiler-embeddable/1.9.22": { - "jar": "sha256-Ij/shIMCNEmc1MeiPqHJLroSfEGzXZux1LYdJBVa6zU=", - "pom": "sha256-wWCPP7yyqfdSPq0zWZwurc5MgSFhqeBmufSwBa97Qxw=" + "org/jetbrains/kotlin#kotlin-scripting-common/1.9.24": { + "jar": "sha256-KqeY6XgokBDYByTdGdn+GQtSQkFIEQT89RjAO8OdTks=", + "pom": "sha256-S9rpUqslCWFRsfqERCooGupzwW0dTNVdigLDccqJusQ=" }, "org/jetbrains/kotlin#kotlin-scripting-compiler-embeddable/1.9.23": { "jar": "sha256-e4A5/wt3nVVs7QCSMDWr0TNPDl8qiHlhgtArpF+SbSA=", "pom": "sha256-7Y6//r5Ume1iSG+oGBJ7td1QHXTEq5XFfnwB7z+NuWg=" }, - "org/jetbrains/kotlin#kotlin-scripting-compiler-impl-embeddable/1.9.22": { - "jar": "sha256-OJkYFqKH/3YkHxp35/ERZIHU6To9tjJZplfd4g5tD2U=", - "pom": "sha256-gmccM6lXsuKoINZqaSwvzmPjvwR/HLJeb7A5HF3c8uc=" + "org/jetbrains/kotlin#kotlin-scripting-compiler-embeddable/1.9.24": { + "jar": "sha256-02gR+1yZeXaEH/PQqxnGt96RkomeQIK6Hz/7oH6UBfQ=", + "pom": "sha256-FUgOkd8v/sfFfOHgpfFBBltFIrbbyJsv2yk9xsVwwMU=" }, "org/jetbrains/kotlin#kotlin-scripting-compiler-impl-embeddable/1.9.23": { "jar": "sha256-kOU90S9i3NgjQ8EsDLMUrc/wy8OYjtsRjR5miZYOnWM=", "pom": "sha256-923kmO12xGroZlZnmAf3J2EiPD+hChExgyAGpKs5Xe0=" }, - "org/jetbrains/kotlin#kotlin-scripting-jvm/1.9.22": { - "jar": "sha256-jRJ9dvz6BRfDbB6g4ijs4D1aRoJkKgH2R5prvccxKik=", - "pom": "sha256-cBJS6huo/4f8M0dqYePVxtnS3aQbqpiZTdaYDuE/vG0=" + "org/jetbrains/kotlin#kotlin-scripting-compiler-impl-embeddable/1.9.24": { + "jar": "sha256-i/2A2RNqKjJhALC3O/saG7NX7d+uDYEiDkYSa4im7no=", + "pom": "sha256-Sg6yUXF8Sih6ZBfp/QRBZ4xJatxnAdhasPFi8W0s+4c=" }, "org/jetbrains/kotlin#kotlin-scripting-jvm/1.9.23": { "jar": "sha256-0/yn7JUf94Jvl6dZifjcr/YM+eHna73CIO33eDdqbmQ=", "pom": "sha256-4u8r+y628hp7croS7cWaFQx/IXbCssVP4uhg7oAjDYc=" }, - "org/jetbrains/kotlin#kotlin-stdlib-common/1.9.22": { - "module": "sha256-+Tyemr+NUtjo/Y6FGqgC7OxVEyFhxK7ufTzZJL95QkY=", - "pom": "sha256-10k21oh1ZK63EOhCmLVCB/U+m88jpSrSv6IsIIZ3V2c=" + "org/jetbrains/kotlin#kotlin-scripting-jvm/1.9.24": { + "jar": "sha256-G9aQBgqUhDl3N0pFds2J10nk7srx+3pYA2/rOuVRxKw=", + "pom": "sha256-kkM+M+MLpFvMS/hKxUsX0p8Dlkp2BwYW1sZS3WxhySU=" + }, + "org/jetbrains/kotlin#kotlin-stdlib-common/1.9.24": { + "module": "sha256-6Y6oxE+zaCDQG7iwAxaOI6IhtAHLQyVtcjo/C3fWFsI=", + "pom": "sha256-XZfiDNWGLoR6aYF1uTno3Fxr11vtmZ1vPU6ghIESFsA=" }, "org/jetbrains/kotlin#kotlin-stdlib-jdk7/1.8.21": { "pom": "sha256-m7EH1dXjkwvFl38AekPNILfSTZGxweUo6m7g8kjxTTY=" @@ -495,35 +495,35 @@ "jar": "sha256-pMdNlNZM4avlN2D+A4ndlB9vxVjQ2rNeR8CFoR7IDyg=", "pom": "sha256-X0uU3TBlp3ZMN/oV3irW2B9A1Z+Msz8X0YHGOE+3py4=" }, - "org/jetbrains/kotlin#kotlin-stdlib/1.9.22": { - "jar": "sha256-ar4UbCeGQTi4dMzM/l9TTj65I8maG3tdRUlO5WlPPgo=", - "module": "sha256-9IIxS1B5wUVfb7DUJXp0XRAcYSTOlhUiuob53JCQHkc=", - "pom": "sha256-zOLxUoXsgHijd0a1cwigVAQt1cwlQgxD9zt4V8JGjwM=" - }, - "org/jetbrains/kotlin#kotlin-tooling-core/1.9.22": { - "jar": "sha256-iTjrl+NjINqj5vsqYP0qBbIy/0pVcXPFAZ8EW4gy2fQ=", - "pom": "sha256-FPx/NcY15fzRvqU3q0+kQxLoQyUtUzNRnjaxJeoImyE=" + "org/jetbrains/kotlin#kotlin-stdlib/1.9.24": { + "jar": "sha256-hYuQJpbanPWFq52Y/8HCcSJpgoNU3+kQfjcRsISjZGg=", + "module": "sha256-8uKmVztbUmXEEtXFgfv46gDGKxC5yS1WdMnpfy8zNbM=", + "pom": "sha256-uc6tTCIt7pDHT28BPTFqnlD4EaApMxPDNRrssvfM7V8=" }, "org/jetbrains/kotlin#kotlin-tooling-core/1.9.23": { "jar": "sha256-iTjrl+NjINqj5vsqYP0qBbIy/0pVcXPFAZ8EW4gy2fQ=", "pom": "sha256-fiA0VIj7v1uf6ZeHNgvT7HRKb+qRppm9EbVhwygbB9g=" }, - "org/jetbrains/kotlin#kotlin-util-io/1.9.22": { - "jar": "sha256-9telhJGjeLCDrRvq1IikheEdFgsx52wYwa1SDx0o9Gs=", - "pom": "sha256-ZP1qINbsBAE7ttdWJ/ZYC7c2QdlIkJ1cFmTi53MQbe4=" + "org/jetbrains/kotlin#kotlin-tooling-core/1.9.24": { + "jar": "sha256-iTjrl+NjINqj5vsqYP0qBbIy/0pVcXPFAZ8EW4gy2fQ=", + "pom": "sha256-dbytE+kWgPzwEsjuGqGqxxn1m2IbOUyj/DLGJf+YclY=" }, "org/jetbrains/kotlin#kotlin-util-io/1.9.23": { "jar": "sha256-em3OQOeKy+Zvx9Z463Qch3hFo8/Rx2xNK7+OyEXS2Sk=", "pom": "sha256-rNHyN4Ce4nWpwJ5EAt1FOdBN7DaMCQbsecP4A6vwZ8g=" }, - "org/jetbrains/kotlin#kotlin-util-klib/1.9.22": { - "jar": "sha256-pnnuL1EPOrkmkYGN5etbCQLobYjJdnTn20TcTyJSxfk=", - "pom": "sha256-Dep9//Cit0CIrJlwQ8vCQINdK/9Zs5/MiwysbqPrNpc=" + "org/jetbrains/kotlin#kotlin-util-io/1.9.24": { + "jar": "sha256-u0z0H/UG5Q+bLDQiBkmIFupO3f6ImYqQtotDlLT6xfo=", + "pom": "sha256-82VnN3kyTzMtOTkMeAd1h4BNEeznKv5K7uMlOtZTPFE=" }, "org/jetbrains/kotlin#kotlin-util-klib/1.9.23": { "jar": "sha256-5AGLa4+8keTQo3q4HAUKgTloaAdRCM2FCCuSXHnTvG0=", "pom": "sha256-+z5FhH1dIS5MK120RFGQPJ4fDjL2mH4fWbnMEcTDiYo=" }, + "org/jetbrains/kotlin#kotlin-util-klib/1.9.24": { + "jar": "sha256-4NqKfwZIV8BIOmVyfRYtPtV84m1+R3ix8ADg0MDck3E=", + "pom": "sha256-krQjr9XnKbsRT3G1ip4DhF3+K9pWJFTrvbg8nYOyMHE=" + }, "org/jetbrains/kotlinx#kotlinx-coroutines-core-jvm/1.5.0": { "jar": "sha256-eNbMcTX4TWkv83Uvz9H6G74JQNffcGUuTx6u7Ax4r7s=", "module": "sha256-yIXdAoEHbFhDgm3jF+PLzcPYhZ2+71OuHPrNG5xg+W4=", @@ -1182,8 +1182,8 @@ "org/eclipse/jdt/ecj/maven-metadata": { "xml": { "groupId": "org.eclipse.jdt", - "lastUpdated": "20240611021539", - "release": "3.38.0" + "lastUpdated": "20240910031942", + "release": "3.39.0" } }, "org/eclipse/sisu#org.eclipse.sisu.inject/0.3.5": { From 3dffdb5ce3ea0a5e56fafb644c6c7eae8fe2e34e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 31 Aug 2024 03:16:22 +0000 Subject: [PATCH 079/232] opentelemetry-collector: 0.103.0 -> 0.109.0 --- pkgs/tools/misc/opentelemetry-collector/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/opentelemetry-collector/default.nix b/pkgs/tools/misc/opentelemetry-collector/default.nix index f372d705491f..f437590936e2 100644 --- a/pkgs/tools/misc/opentelemetry-collector/default.nix +++ b/pkgs/tools/misc/opentelemetry-collector/default.nix @@ -9,17 +9,17 @@ buildGoModule rec { pname = "opentelemetry-collector"; - version = "0.103.0"; + version = "0.109.0"; src = fetchFromGitHub { owner = "open-telemetry"; repo = "opentelemetry-collector"; rev = "v${version}"; - hash = "sha256-xmsxr1A0/kyWXLNVZglZy8K7ieZT1GS4lGqsSrUkttI="; + hash = "sha256-ShVUBohSnIoeq2aTWJ9IMXKt0CeRv3CZjlqpYHR9DhY="; }; # there is a nested go.mod sourceRoot = "${src.name}/cmd/otelcorecol"; - vendorHash = "sha256-1NDGfzg/60VJNrWkMtGS2t3Cv1CXSguR1qLp4mqF1UM="; + vendorHash = "sha256-rXC4lm2ZvO3k6h1ZiYB+FskhW0c2uJyPLZg6n125MZE="; nativeBuildInputs = [ installShellFiles ]; From 031eb8aa79dfad9cb2bf661c685def51a63a4176 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Wed, 11 Sep 2024 14:09:20 +0200 Subject: [PATCH 080/232] nixos/opentelemetry-collector: fix tests --- nixos/tests/opentelemetry-collector.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/tests/opentelemetry-collector.nix b/nixos/tests/opentelemetry-collector.nix index 9a56a22ca47e..98e597cf807b 100644 --- a/nixos/tests/opentelemetry-collector.nix +++ b/nixos/tests/opentelemetry-collector.nix @@ -12,7 +12,9 @@ in { enable = true; settings = { exporters.logging.verbosity = "detailed"; - receivers.otlp.protocols.http = {}; + receivers.otlp.protocols = { + http.endpoint = "0.0.0.0:${toString port}"; + }; service = { pipelines.logs = { receivers = [ "otlp" ]; From c10dfce27892186d88a4604bae47f6d073198715 Mon Sep 17 00:00:00 2001 From: Francesco Noacco Date: Wed, 11 Sep 2024 14:12:16 +0200 Subject: [PATCH 081/232] astartectl: remove no longer needed version override astartectl 24.5.0 updates go version, and it now compiles without issues --- pkgs/by-name/as/astartectl/package.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/by-name/as/astartectl/package.nix b/pkgs/by-name/as/astartectl/package.nix index 361f77ff763f..a22f6bd598f1 100644 --- a/pkgs/by-name/as/astartectl/package.nix +++ b/pkgs/by-name/as/astartectl/package.nix @@ -7,10 +7,6 @@ buildGoModule rec { pname = "astartectl"; version = "24.5.0"; - # Workaround for go vendor failing - # https://github.com/astarte-platform/astartectl/pull/244 - postPatch = "go mod edit -go=1.22"; - src = fetchFromGitHub { owner = "astarte-platform"; repo = "astartectl"; From 75ed795cb9a612591de1c3321320bc21d0c682fa Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 28 Aug 2024 10:46:14 +0000 Subject: [PATCH 082/232] opentelemetry-collector-contrib: 0.104.0 -> 0.109.0 --- pkgs/tools/misc/opentelemetry-collector/contrib.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/opentelemetry-collector/contrib.nix b/pkgs/tools/misc/opentelemetry-collector/contrib.nix index 648126154d37..017fd1a015d7 100644 --- a/pkgs/tools/misc/opentelemetry-collector/contrib.nix +++ b/pkgs/tools/misc/opentelemetry-collector/contrib.nix @@ -8,18 +8,18 @@ buildGoModule rec { pname = "opentelemetry-collector-contrib"; - version = "0.104.0"; + version = "0.109.0"; src = fetchFromGitHub { owner = "open-telemetry"; repo = "opentelemetry-collector-contrib"; rev = "v${version}"; - sha256 = "sha256-M0aNobj5h2NcliNDI2TjyV6xcd8m0MK6Cv9bf2d0d9g="; + hash = "sha256-ROAapCGIRD5kdA3k1LjSxdfICLRgBcQORe6wW1bszNI="; }; - # proxy vendor to avoid hash missmatches between linux and macOS + # proxy vendor to avoid hash mismatches between linux and macOS proxyVendor = true; - vendorHash = "sha256-VTV6xgGWHc+H7eX1q2bYIS+YQxTvErf6+d8PNucUPkw="; + vendorHash = "sha256-4MRXwp428d9oJPHrgOaGCaIFpRAIOpL/AYc/fLPAVBk="; # there is a nested go.mod sourceRoot = "${src.name}/cmd/otelcontribcol"; From 68d441ac8d4acc8d6cd4c4c0b71d1970eb324f67 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 11 Sep 2024 07:59:02 +0200 Subject: [PATCH 083/232] python312Packages.orbax-checkpoint: 0.5.20 -> 0.6.3 Changelog: https://github.com/google/orbax/blob/0.6.3/CHANGELOG.md --- .../orbax-checkpoint/default.nix | 32 +++++++++++++------ 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/orbax-checkpoint/default.nix b/pkgs/development/python-modules/orbax-checkpoint/default.nix index e3140c40c4f8..9cfbc560ed43 100644 --- a/pkgs/development/python-modules/orbax-checkpoint/default.nix +++ b/pkgs/development/python-modules/orbax-checkpoint/default.nix @@ -1,14 +1,16 @@ { lib, + stdenv, absl-py, buildPythonPackage, + fetchFromGitHub, # build-system flit-core, # dependencies etils, - fetchPypi, + humanize, importlib-resources, jax, jaxlib, @@ -20,32 +22,34 @@ tensorstore, typing-extensions, - # checks + # tests + chex, google-cloud-logging, mock, pytest-xdist, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { pname = "orbax-checkpoint"; - version = "0.5.20"; + version = "0.6.3"; pyproject = true; - disabled = pythonOlder "3.9"; - - src = fetchPypi { - pname = "orbax_checkpoint"; - inherit version; - hash = "sha256-V91BdeaYqMSVeZGrfmwZ17OoeSrnByuc0rJnzls0iE0="; + src = fetchFromGitHub { + owner = "google"; + repo = "orbax"; + rev = "refs/tags/v${version}"; + hash = "sha256-yqccXQGEvxYnWP8rWmRLjjB0pkSEeXBrRvJIwVowUx0="; }; + sourceRoot = "${src.name}/checkpoint"; + build-system = [ flit-core ]; dependencies = [ absl-py etils + humanize importlib-resources jax jaxlib @@ -59,6 +63,7 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ + chex google-cloud-logging mock pytest-xdist @@ -70,6 +75,13 @@ buildPythonPackage rec { "orbax.checkpoint" ]; + disabledTests = lib.optionals stdenv.isDarwin [ + # Probably failing because of a filesystem impurity + # self.assertFalse(os.path.exists(dst_dir)) + # AssertionError: True is not false + "test_create_snapshot" + ]; + disabledTestPaths = [ # Circular dependency flax "orbax/checkpoint/transform_utils_test.py" From 67c19cf1f7b1b3ead6ec4bced856fac9514421eb Mon Sep 17 00:00:00 2001 From: Enric Morales Date: Wed, 28 Aug 2024 15:29:52 +0000 Subject: [PATCH 084/232] nitrokey-start-firmware: init at 13 Co-authored-by: Simon Bruder Co-authored-by: Abdullah Imad Co-authored-by: Alberto Merino Co-authored-by: Enric Morales Co-authored-by: Jack Leightcap Co-authored-by: Roland Coeurjoly --- .../ni/nitrokey-start-firmware/package.nix | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 pkgs/by-name/ni/nitrokey-start-firmware/package.nix diff --git a/pkgs/by-name/ni/nitrokey-start-firmware/package.nix b/pkgs/by-name/ni/nitrokey-start-firmware/package.nix new file mode 100644 index 000000000000..f4b20b56ea71 --- /dev/null +++ b/pkgs/by-name/ni/nitrokey-start-firmware/package.nix @@ -0,0 +1,59 @@ +{ + lib, + stdenv, + fetchFromGitHub, + gcc-arm-embedded, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "nitrokey-start-firmware"; + version = "13"; + + src = fetchFromGitHub { + owner = "Nitrokey"; + repo = "nitrokey-start-firmware"; + rev = "RTM.${finalAttrs.version}"; + hash = "sha256-POW1d/fgOyYa7127FSTCtHGyMWYzKW0qqA1WUyvNc3w="; + fetchSubmodules = true; + }; + + sourceRoot = "source/src"; + + postPatch = '' + patchShebangs configure + ''; + + # Avoid additional arguments are added to configureFlags + configurePlatforms = [ ]; + + # from release/Makefile + configureFlags = [ + "--target=NITROKEY_START-g" + "--vidpid=20a0:4211" + "--enable-factory-reset" + "--enable-certdo" + ]; + + nativeBuildInputs = [ gcc-arm-embedded ]; + + enableParallelBuilding = true; + + installPhase = '' + runHook preInstall + mkdir $out + cp build/gnuk.{bin,hex} $out/ + runHook postInstall + ''; + + meta = { + description = "Firmware for the Nitrokey Start device"; + homepage = "https://github.com/Nitrokey/nitrokey-start-firmware"; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ + amerino + imadnyc + kiike + ]; + platforms = lib.platforms.unix; + }; +}) From c10401fd38a54486783cf7e4f35f94c343003614 Mon Sep 17 00:00:00 2001 From: Enric Morales Date: Wed, 28 Aug 2024 16:05:47 +0000 Subject: [PATCH 085/232] nitrokey-trng-rs232-firmware: init at 1.0.0 Co-authored-by: Simon Bruder Co-authored-by: Abdullah Imad Co-authored-by: Alberto Merino Co-authored-by: Enric Morales Co-authored-by: Jack Leightcap Co-authored-by: Roland Coeurjoly --- .../nitrokey-trng-rs232-firmware/package.nix | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 pkgs/by-name/ni/nitrokey-trng-rs232-firmware/package.nix diff --git a/pkgs/by-name/ni/nitrokey-trng-rs232-firmware/package.nix b/pkgs/by-name/ni/nitrokey-trng-rs232-firmware/package.nix new file mode 100644 index 000000000000..dea4e7e1dbf9 --- /dev/null +++ b/pkgs/by-name/ni/nitrokey-trng-rs232-firmware/package.nix @@ -0,0 +1,45 @@ +{ + lib, + stdenv, + fetchFromGitHub, + pkgsCross, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "nitrokey-trng-rs232-firmware"; + version = "1.0.0"; + + src = fetchFromGitHub { + owner = "Nitrokey"; + repo = "nitrokey-trng-rs232-firmware"; + rev = "v${finalAttrs.version}"; + hash = "sha256-vY/9KAGB6lTkkjW9zUiHA3wD2d35cEBVBTr12bHCy4k="; + }; + + nativeBuildInputs = [ pkgsCross.avr.stdenv.cc ]; + + sourceRoot = "source/src"; + + makeFlags = [ "all" ]; + + installPhase = '' + runHook preInstall + install -D TRNGSerial.bin $out/TRNGSerial.bin + runHook postInstall + ''; + + meta = { + description = "Firmware for the Nitrokey TRNG RS232 device"; + longDescription = '' + This package does not provide an executable. It should be built using `nix-build -A nitrokey-trng-rs232-firmware` or `nix build nixpkgs#nitrokey-trng-rs232-firmware` and flashed using `libnitrokey` + ''; + homepage = "https://github.com/Nitrokey/nitrokey-trng-rs232-firmware"; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ + amerino + imadnyc + kiike + ]; + platforms = lib.platforms.linux; + }; +}) From e49b60f62705344a1269d03ba6386b5716f9947f Mon Sep 17 00:00:00 2001 From: Jakub Mendyk Date: Mon, 9 Sep 2024 20:34:19 +0200 Subject: [PATCH 086/232] rtlamr: init at 0.9.3-unstable-2023-08-13 --- pkgs/by-name/rt/rtlamr/package.nix | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/by-name/rt/rtlamr/package.nix diff --git a/pkgs/by-name/rt/rtlamr/package.nix b/pkgs/by-name/rt/rtlamr/package.nix new file mode 100644 index 000000000000..95e8bc9497ee --- /dev/null +++ b/pkgs/by-name/rt/rtlamr/package.nix @@ -0,0 +1,31 @@ +{ + lib, + fetchFromGitHub, + buildGoModule, +}: + +buildGoModule rec { + pname = "rtlamr"; + version = "0.9.3-unstable-2023-08-13"; + + src = fetchFromGitHub { + owner = "bemasher"; + repo = "rtlamr"; + rev = "dcdddc5a6e7717a038e9346d0adcf9669e4f60b7"; + sha256 = "sha256-r3dMCpNBCQsqSlFYYfOtVMMgPOagWks6PPWOn5PsLZs"; + }; + + vendorHash = "sha256-uT6zfsWgIot0EMNqwtwJNFXN/WaAyOGfcYJjuyOXT4g="; + + meta = { + description = "Rtl-sdr receiver for Itron ERT compatible smart meters"; + longDescription = '' + An rtl-sdr receiver for Itron ERT compatible smart meters operating + in the 900MHz ISM band + ''; + homepage = "https://github.com/bemasher/rtlamr"; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ jmendyk ]; + platforms = lib.platforms.unix; + }; +} From 9c4cbe00d8206bf56049e7e37921a840343887b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Pitucha?= Date: Wed, 11 Sep 2024 23:03:02 +1000 Subject: [PATCH 087/232] nushellPlugins.net: 0-unstable-2024-04-05 -> 1.7.0 --- pkgs/shells/nushell/plugins/net.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/shells/nushell/plugins/net.nix b/pkgs/shells/nushell/plugins/net.nix index 2bb2b56168b8..95d1c36b467f 100644 --- a/pkgs/shells/nushell/plugins/net.nix +++ b/pkgs/shells/nushell/plugins/net.nix @@ -8,18 +8,18 @@ unstableGitUpdater, }: -rustPlatform.buildRustPackage { +rustPlatform.buildRustPackage rec { pname = "nu-plugin-net"; - version = "0-unstable-2024-04-05"; + version = "1.7.0"; src = fetchFromGitHub { owner = "fennewald"; repo = "nu_plugin_net"; - rev = "60d315afb19c3c673409db796a4cc7a240058605"; - hash = "sha256-izIxV2rFxZ1Om6NNaofNpc5prtN/lsw8dC4DyKEQ+v8="; + rev = "refs/tags/${version}"; + hash = "sha256-GOF2CSlsjI8PAmIxj/+mR01X5XMviEM8gj7ZYTbeX7I="; }; - cargoHash = "sha256-nBxcxADyvPgGrfkW8eBq/wmB2Slq+YGJV2IlxuuCgCg="; + cargoHash = "sha256-2FjKGirjTb6ZjDmhK9ciQzVtWCF8CcYeA+YXcr1oMP4="; nativeBuildInputs = [ rustPlatform.bindgenHook ]; From 6f8bb8733cf62141349d19647fe35a3bbe4ab191 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Jul 2024 05:08:42 +0000 Subject: [PATCH 088/232] python312Packages.turnt: 1.11.0 -> 1.12.0 --- pkgs/development/python-modules/turnt/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/turnt/default.nix b/pkgs/development/python-modules/turnt/default.nix index 43a223bdfd5e..abed46cc766e 100644 --- a/pkgs/development/python-modules/turnt/default.nix +++ b/pkgs/development/python-modules/turnt/default.nix @@ -2,24 +2,24 @@ lib, buildPythonPackage, fetchPypi, - flit, + flit-core, click, tomli, }: buildPythonPackage rec { pname = "turnt"; - version = "1.11.0"; - format = "pyproject"; + version = "1.12.0"; + pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-XN+qzRgZMSdeBmW0OM36mQ79sRCuP8E++SqH8FOoEq0="; + hash = "sha256-4K7cqGwKErGbZ+dxVa06v8aIfrpVLC293d29QT+vsBw="; }; - nativeBuildInputs = [ flit ]; + build-system = [ flit-core ]; - propagatedBuildInputs = [ + dependencies = [ click tomli ]; From 5a6bd6e0c5b89809ae03389afb6be5f805fc27e0 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Wed, 11 Sep 2024 15:16:43 +0200 Subject: [PATCH 089/232] palemoon-bin: 33.3.0 -> 33.3.1 --- pkgs/applications/networking/browsers/palemoon/bin.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/browsers/palemoon/bin.nix b/pkgs/applications/networking/browsers/palemoon/bin.nix index aeeb03d8d028..e6bb9e887c4f 100644 --- a/pkgs/applications/networking/browsers/palemoon/bin.nix +++ b/pkgs/applications/networking/browsers/palemoon/bin.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "palemoon-bin"; - version = "33.3.0"; + version = "33.3.1"; src = finalAttrs.passthru.sources."gtk${if withGTK3 then "3" else "2"}"; @@ -158,11 +158,11 @@ stdenv.mkDerivation (finalAttrs: { in { gtk3 = fetchzip { urls = urlRegionVariants "gtk3"; - hash = "sha256-9JZzwWe40M6nJkzeUqNDPXMfDGBnLRDSLL5kE2sNzCs="; + hash = "sha256-auo45tzMY6bKahSEmUrkcYnz7v+GFbsrG+ePAKRC00U="; }; gtk2 = fetchzip { urls = urlRegionVariants "gtk2"; - hash = "sha256-K3PC1EDZeDyJUPhfvqTlqyMM07GmiWlUdYiNnSZuesw="; + hash = "sha256-7qrT5fSfwcEAkbq8g/HRoUiDv5+qrzpiysjHTdZVgLc="; }; }; From 641065ae1947a7e719e3a434c03b9bf02a88a293 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Wed, 11 Sep 2024 15:49:00 +0200 Subject: [PATCH 090/232] mir: 2.17.0 -> 2.17.2 --- pkgs/servers/mir/common.nix | 8 ++++---- pkgs/servers/mir/default.nix | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/servers/mir/common.nix b/pkgs/servers/mir/common.nix index fa147541fc4b..37a428361018 100644 --- a/pkgs/servers/mir/common.nix +++ b/pkgs/servers/mir/common.nix @@ -196,16 +196,16 @@ stdenv.mkDerivation (finalAttrs: { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Display server and Wayland compositor developed by Canonical"; homepage = "https://mir-server.io"; changelog = "https://github.com/canonical/mir/releases/tag/v${finalAttrs.version}"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ onny OPNA2608 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; pkgConfigModules = [ "miral" "mircommon" diff --git a/pkgs/servers/mir/default.nix b/pkgs/servers/mir/default.nix index b61419eacf47..eee124bde90f 100644 --- a/pkgs/servers/mir/default.nix +++ b/pkgs/servers/mir/default.nix @@ -5,8 +5,8 @@ let in { mir = common { - version = "2.17.0"; - hash = "sha256-iDJ7NIFoSSXjMrHK2I6Linf7z0hvShj8fr6BGxgK5gE="; + version = "2.17.2"; + hash = "sha256-OwOGt3X7+UchksyPf/sodit2PHpSlpP2S3gkCPcdzfE="; }; mir_2_15 = common { From 9a8f14b55355f780cdd142d7e378db1e576f2da5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 6 Aug 2024 00:40:02 +0000 Subject: [PATCH 091/232] python312Packages.bokeh: 3.5.0 -> 3.5.2 --- .../python-modules/bokeh/default.nix | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/bokeh/default.nix b/pkgs/development/python-modules/bokeh/default.nix index bdd5665f5922..62c537e8de7a 100644 --- a/pkgs/development/python-modules/bokeh/default.nix +++ b/pkgs/development/python-modules/bokeh/default.nix @@ -17,7 +17,6 @@ pytestCheckHook, pyyaml, setuptools, - setuptools-git-versioning, xyzservices, beautifulsoup4, channels, @@ -47,21 +46,21 @@ buildPythonPackage rec { pname = "bokeh"; # update together with panel which is not straightforward - version = "3.5.0"; - format = "pyproject"; + version = "3.5.2"; + pyproject = true; disabled = pythonOlder "3.9"; src = fetchPypi { inherit pname version; - hash = "sha256-Zeia3b6QDDevJaIFKuF0ttO6HvCMkf1att/XEuGEw5k="; + hash = "sha256-A6VKZ9tne4iBg0JxxiCngbODrlk69cPqIUkWR1REDQc="; }; src_test = fetchFromGitHub { owner = "bokeh"; - repo = pname; + repo = "bokeh"; rev = "refs/tags/${version}"; - hash = "sha256-PK9iLOCcivr4oF9Riq73dzxGfxzWRk3bdrCCpRrTv5g="; + hash = "sha256-MAv+6bwc5f+jZasRDsYTJ/ir0i1pYCuwqPMumsYWvws="; }; patches = [ @@ -72,11 +71,16 @@ buildPythonPackage rec { }) ]; - nativeBuildInputs = [ + postPatch = '' + substituteInPlace pyproject.toml \ + --replace-fail ', "setuptools-git-versioning"' "" \ + --replace-fail 'dynamic = ["version"]' 'version = "${version}"' + ''; + + build-system = [ colorama nodejs setuptools - setuptools-git-versioning ]; nativeCheckInputs = [ @@ -106,7 +110,7 @@ buildPythonPackage rec { typing-extensions ]; - propagatedBuildInputs = [ + dependencies = [ jinja2 contourpy numpy From 562e8d5975dc64ffdcef9de13d1fc1dea08735fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Wed, 11 Sep 2024 15:30:10 +0100 Subject: [PATCH 092/232] zx: add versionCheckHook --- pkgs/tools/system/zx/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/system/zx/default.nix b/pkgs/tools/system/zx/default.nix index 37021481d105..bfe2f2d68675 100644 --- a/pkgs/tools/system/zx/default.nix +++ b/pkgs/tools/system/zx/default.nix @@ -3,6 +3,7 @@ buildNpmPackage, fetchFromGitHub, nix-update-script, + versionCheckHook, }: buildNpmPackage rec { @@ -18,6 +19,9 @@ buildNpmPackage rec { npmDepsHash = "sha256-yhy2bTXeBYxGaLYb2by+7Y5DfKJ04hroYiOIvwcBojY="; + nativeInstallCheckInputs = [ versionCheckHook ]; + doInstallCheck = true; + passthru.updateScript = nix-update-script { }; meta = { From c11f1b7a26b7760270e2ca3a90b895ef03818328 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Wed, 11 Sep 2024 15:07:33 +0100 Subject: [PATCH 093/232] zx: 8.1.5 -> 8.1.6 Diff: https://github.com/google/zx/compare/8.1.5...8.1.6 Changelog: https://github.com/google/zx/releases/tag/8.1.6 --- pkgs/tools/system/zx/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/system/zx/default.nix b/pkgs/tools/system/zx/default.nix index bfe2f2d68675..ad4e10500177 100644 --- a/pkgs/tools/system/zx/default.nix +++ b/pkgs/tools/system/zx/default.nix @@ -8,16 +8,16 @@ buildNpmPackage rec { pname = "zx"; - version = "8.1.5"; + version = "8.1.6"; src = fetchFromGitHub { owner = "google"; repo = "zx"; rev = version; - hash = "sha256-CeFUALi5MXQqd/LwSsyi6sBTFJpZGfCCMuD7Moyk9hM="; + hash = "sha256-bjYfeEsKO4hkLfGBVqFTomh0P3dhlvvq+PqEiZHySLs="; }; - npmDepsHash = "sha256-yhy2bTXeBYxGaLYb2by+7Y5DfKJ04hroYiOIvwcBojY="; + npmDepsHash = "sha256-bAxqxxqhRE3Vw6NtKK5dnM41ypgq7FIpgK0hEpZ53/Q="; nativeInstallCheckInputs = [ versionCheckHook ]; doInstallCheck = true; From 89de09405f9f031a703bcca4cbce44bf0d5a5ce3 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Fri, 6 Sep 2024 19:59:51 -0300 Subject: [PATCH 094/232] pcsx2: 2.1.102 -> 2.1.127 --- pkgs/by-name/pc/pcsx2/sources.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/pc/pcsx2/sources.nix b/pkgs/by-name/pc/pcsx2/sources.nix index 77441f29adc5..6483d98e77d2 100644 --- a/pkgs/by-name/pc/pcsx2/sources.nix +++ b/pkgs/by-name/pc/pcsx2/sources.nix @@ -9,14 +9,14 @@ let pcsx2 = let self = { pname = "pcsx2"; - version = "2.1.102"; + version = "2.1.127"; src = fetchFromGitHub { pname = "pcsx2-source"; inherit (self) version; owner = "PCSX2"; repo = "pcsx2"; rev = "v${self.version}"; - hash = "sha256-OBxrdZVx6HbSFO6sc2D2HP6iYH3ZKDj+uEqM7cxZNm0="; + hash = "sha256-zvvrGxGjIQjSmo18BDG2J3+PoysXj8WxpwtrcXK8LH8="; }; }; in @@ -27,14 +27,14 @@ let pcsx2_patches = let self = { pname = "pcsx2_patches"; - version = "0-unstable-2024-08-12"; + version = "0-unstable-2024-09-05"; src = fetchFromGitHub { pname = "pcsx2_patches-source"; inherit (self) version; owner = "PCSX2"; repo = "pcsx2_patches"; - rev = "9ea7fca481e1e4c2263ca69f9a5c9a70c92626dc"; - hash = "sha256-T0yTTW6P/NrZsANoduj+gCXyd5qqDRETxLblmnVnP/o="; + rev = "377f30ae19acde655cc412086fa1840d16d54a93"; + hash = "sha256-g2SMMC/oHSF0G3+zwvk1vOoQgYFrPd3eaZ0jgGJIr5g="; }; }; in From 401b6a2b142fb6d44ccc0930f0a94b1e5c61a5d2 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Wed, 11 Sep 2024 16:52:00 +0200 Subject: [PATCH 095/232] python312Packages.pygithub: drop support for python 3.7 --- pkgs/development/python-modules/pygithub/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pygithub/default.nix b/pkgs/development/python-modules/pygithub/default.nix index 19fb5f59bcda..93232d3816af 100644 --- a/pkgs/development/python-modules/pygithub/default.nix +++ b/pkgs/development/python-modules/pygithub/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { version = "2.4.0"; pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "PyGithub"; From 225f3c1243e2b9ceed2177371568b43da9e4f2a2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Aug 2024 09:43:48 +0000 Subject: [PATCH 096/232] debootstrap: 1.0.136 -> 1.0.137 --- pkgs/tools/misc/debootstrap/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/debootstrap/default.nix b/pkgs/tools/misc/debootstrap/default.nix index 446af9107754..c22dfdb14865 100644 --- a/pkgs/tools/misc/debootstrap/default.nix +++ b/pkgs/tools/misc/debootstrap/default.nix @@ -40,14 +40,14 @@ let binPath = lib.makeBinPath [ ]; in stdenv.mkDerivation rec { pname = "debootstrap"; - version = "1.0.136"; + version = "1.0.137"; src = fetchFromGitLab { domain = "salsa.debian.org"; owner = "installer-team"; - repo = pname; + repo = "debootstrap"; rev = "refs/tags/${version}"; - hash = "sha256-hUXOUIUSANXS1a65AA30jZ3J444Xb2klu3m8x0QJfns="; + hash = "sha256-l4vdojsrHAJsa8RwZezH3uI6pWJHK/PBs+YZCtnpXnQ="; }; nativeBuildInputs = [ makeWrapper ]; From f375272c16700a9a667f6976c1c2d0f1cacdc2e3 Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Wed, 11 Sep 2024 08:37:47 -0700 Subject: [PATCH 097/232] openscad-unstable: mark broken. Context: issue #341043 --- pkgs/by-name/op/openscad-unstable/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/op/openscad-unstable/package.nix b/pkgs/by-name/op/openscad-unstable/package.nix index 4e3237a68292..a720fafe20d9 100644 --- a/pkgs/by-name/op/openscad-unstable/package.nix +++ b/pkgs/by-name/op/openscad-unstable/package.nix @@ -180,5 +180,6 @@ clangStdenv.mkDerivation rec { platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ pca006132 raskin ]; mainProgram = "openscad"; + broken = true; # https://github.com/NixOS/nixpkgs/issues/341043 }; } From 23712527ccea955449a889ffd7fea49fcd0f2815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 11 Sep 2024 17:37:52 +0200 Subject: [PATCH 098/232] delta: 0.18.1 -> 0.18.2 Diff: https://github.com/dandavison/delta/compare/refs/tags/0.18.1...0.18.2 Changelog: https://github.com/dandavison/delta/releases/tag/0.18.2 --- pkgs/applications/version-management/delta/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/delta/default.nix b/pkgs/applications/version-management/delta/default.nix index 64bc41ce6a18..d724d4f2bf46 100644 --- a/pkgs/applications/version-management/delta/default.nix +++ b/pkgs/applications/version-management/delta/default.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage rec { pname = "delta"; - version = "0.18.1"; + version = "0.18.2"; src = fetchFromGitHub { owner = "dandavison"; repo = "delta"; rev = "refs/tags/${version}"; - hash = "sha256-9hi3efHzJV9jKJPSkyBaRO7hCYT17QPhw9pP/GwkMdo="; + hash = "sha256-fJSKGa935kwLG8WYmT9Ncg2ozpSNMzUJx0WLo1gtVAA="; }; - cargoHash = "sha256-aQaqQApoPlm/VhGs11RI9+Fk8s2czuJbOreSr3fEX+g="; + cargoHash = "sha256-DIWzRVTADfAZdFckhh2lIfOD13h7GP3KIOQHf/oBHgc="; nativeBuildInputs = [ installShellFiles From f44317e689147da744c59024a010969cd9cd1222 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 26 Jul 2024 14:01:30 +0000 Subject: [PATCH 099/232] ocamlPackages.inotify: 2.5 -> 2.6 --- pkgs/development/ocaml-modules/inotify/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/inotify/default.nix b/pkgs/development/ocaml-modules/inotify/default.nix index c0ba327dd2fc..2a4f1ccd01ff 100644 --- a/pkgs/development/ocaml-modules/inotify/default.nix +++ b/pkgs/development/ocaml-modules/inotify/default.nix @@ -4,14 +4,14 @@ }: buildDunePackage rec { - version = "2.5"; + version = "2.6"; pname = "inotify"; src = fetchFromGitHub { owner = "whitequark"; repo = "ocaml-inotify"; rev = "v${version}"; - hash = "sha256-3Ju6l6aF5eJgIZJKO0lQGXjjGDzCdX2fuwyNSAjIyAs="; + hash = "sha256-Vg9uVIx6/OMS1WoJIHwZbSt5ZyFy+Xgw5167FJWGslg="; }; buildInputs = [ lwt ]; From dcc36f43437cdd993936575ce2f117ea19299811 Mon Sep 17 00:00:00 2001 From: Bryan Honof Date: Wed, 11 Sep 2024 18:01:14 +0200 Subject: [PATCH 100/232] maintainers: change bryanhonof's mail address --- maintainers/maintainer-list.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index fd9b9c6a6c4d..a22d8aa77655 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3078,7 +3078,7 @@ }; bryanhonof = { name = "Bryan Honof"; - email = "bryanhonof@gmail.com"; + email = "bryanhonof+nixpkgs@gmail.com"; github = "bryanhonof"; githubId = 5932804; }; From dbd0ce7a178824cd3709409111b247473e9c6122 Mon Sep 17 00:00:00 2001 From: Gavin John Date: Wed, 11 Sep 2024 16:52:37 +0000 Subject: [PATCH 101/232] brainflow: 5.13.2 -> 5.13.3 --- pkgs/by-name/br/brainflow/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/br/brainflow/package.nix b/pkgs/by-name/br/brainflow/package.nix index 4f051c5dca94..a347712c057b 100644 --- a/pkgs/by-name/br/brainflow/package.nix +++ b/pkgs/by-name/br/brainflow/package.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "brainflow"; - version = "5.13.2"; + version = "5.13.3"; src = fetchFromGitHub { owner = "brainflow-dev"; repo = "brainflow"; rev = "refs/tags/${finalAttrs.version}"; - hash = "sha256-1SP0X1KcnVB/HQkbYBZqSmLS3LZYvylPOP4pWm7oFu4="; + hash = "sha256-LFiDyNuWbEAKU0Rl+n7ozxr5CM4NLphR2o9bYHw6xJY="; }; patches = [ ]; From 45dd09667ff9b841f636f99a68384c10760bebbd Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Wed, 11 Sep 2024 12:59:03 -0400 Subject: [PATCH 102/232] Revert "nixos/openvpn: add extraArgs option" --- nixos/modules/services/networking/openvpn.nix | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/nixos/modules/services/networking/openvpn.nix b/nixos/modules/services/networking/openvpn.nix index d122390c88ca..fba6d5e48f92 100644 --- a/nixos/modules/services/networking/openvpn.nix +++ b/nixos/modules/services/networking/openvpn.nix @@ -64,7 +64,7 @@ let path = [ pkgs.iptables pkgs.iproute2 pkgs.nettools ]; - serviceConfig.ExecStart = "@${openvpn}/sbin/openvpn openvpn --suppress-timestamps --config ${configFile} ${cfg.extraArgs}"; + serviceConfig.ExecStart = "@${openvpn}/sbin/openvpn openvpn --suppress-timestamps --config ${configFile}"; serviceConfig.Restart = "always"; serviceConfig.Type = "notify"; }; @@ -181,15 +181,6 @@ in ''; }; - extraArgs = mkOption { - default = null; - type = listOf str; - description = '' - Additional command line arguments to pass to this OpenVPN instance. - ''; - apply = lib.escapeShellArgs; - }; - authUserPass = mkOption { default = null; description = '' From f7bce361e2ce992ad236fb682c7840b864e0aea1 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Wed, 11 Sep 2024 12:59:31 -0400 Subject: [PATCH 103/232] pazi: install man page --- pkgs/tools/misc/pazi/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/pazi/default.nix b/pkgs/tools/misc/pazi/default.nix index 97fb2d61fb9f..de771e9e86a5 100644 --- a/pkgs/tools/misc/pazi/default.nix +++ b/pkgs/tools/misc/pazi/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin }: +{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin, installShellFiles }: rustPlatform.buildRustPackage rec { pname = "pazi"; @@ -11,10 +11,16 @@ rustPlatform.buildRustPackage rec { sha256 = "sha256-PDgk6VQ/J9vkFJ0N+BH9LqHOXRYM+a+WhRz8QeLZGiM="; }; + nativeBuildInputs = [ installShellFiles ]; + buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; cargoHash = "sha256-7ChHYcyzRPFkZ+zh9lBOHcOizDvJf2cp9ULoI7Ofmqk="; + postInstall = '' + installManPage packaging/man/pazi.1 + ''; + meta = with lib; { description = "Autojump \"zap to directory\" helper"; homepage = "https://github.com/euank/pazi"; From 214ef50a2a7310b5b2d382d3f6906ccbe36f40f8 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 11 Sep 2024 18:59:48 +0200 Subject: [PATCH 104/232] sauerbraten: format with nixfmt --- pkgs/games/sauerbraten/default.nix | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/pkgs/games/sauerbraten/default.nix b/pkgs/games/sauerbraten/default.nix index b32ffadaea16..f23b1a296846 100644 --- a/pkgs/games/sauerbraten/default.nix +++ b/pkgs/games/sauerbraten/default.nix @@ -1,13 +1,14 @@ -{ lib -, stdenv -, fetchzip -, SDL2 -, SDL2_image -, SDL2_mixer -, zlib -, makeWrapper -, copyDesktopItems -, makeDesktopItem +{ + lib, + stdenv, + fetchzip, + SDL2, + SDL2_image, + SDL2_mixer, + zlib, + makeWrapper, + copyDesktopItems, + makeDesktopItem, }: stdenv.mkDerivation rec { @@ -15,7 +16,9 @@ stdenv.mkDerivation rec { version = "2020-12-27"; src = fetchzip { - url = "mirror://sourceforge/sauerbraten/sauerbraten_${builtins.replaceStrings [ "-" ] [ "_" ] version}_linux.tar.bz2"; + url = "mirror://sourceforge/sauerbraten/sauerbraten_${ + builtins.replaceStrings [ "-" ] [ "_" ] version + }_linux.tar.bz2"; sha256 = "0llknzj23vx6f3y452by9c7wlhzclyq4bqi22qd52m3l916z2mn5"; }; @@ -42,7 +45,11 @@ stdenv.mkDerivation rec { icon = "sauerbraten"; desktopName = "Sauerbraten"; comment = "FPS that uses an improved version of the Cube engine"; - categories = [ "Application" "Game" "ActionGame" ]; + categories = [ + "Application" + "Game" + "ActionGame" + ]; }) ]; @@ -67,7 +74,10 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Free multiplayer & singleplayer first person shooter, the successor of the Cube FPS"; homepage = "http://sauerbraten.org"; - maintainers = with maintainers; [ raskin ajs124 ]; + maintainers = with maintainers; [ + raskin + ajs124 + ]; mainProgram = "sauerbraten_client"; hydraPlatforms = # raskin: tested amd64-linux; From 664e6d6b18ef194fcdfb8807284d97c5983d4af7 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 11 Sep 2024 19:01:06 +0200 Subject: [PATCH 105/232] sauerbraten: move to pkgs/by-name --- .../default.nix => by-name/sa/sauerbraten/package.nix} | 0 pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 2 deletions(-) rename pkgs/{games/sauerbraten/default.nix => by-name/sa/sauerbraten/package.nix} (100%) diff --git a/pkgs/games/sauerbraten/default.nix b/pkgs/by-name/sa/sauerbraten/package.nix similarity index 100% rename from pkgs/games/sauerbraten/default.nix rename to pkgs/by-name/sa/sauerbraten/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 03be6c25f504..2571984d8779 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -35989,8 +35989,6 @@ with pkgs; openjdk = openjdk8; }; - sauerbraten = callPackage ../games/sauerbraten { }; - scid = callPackage ../games/scid { }; scid-vs-pc = callPackage ../games/scid-vs-pc { }; From 04f2bef003cd6d440cc233aa116fe3a2f1288735 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 11 Sep 2024 19:02:57 +0200 Subject: [PATCH 106/232] sauerbraten: 2020-12-27 -> 2020-12-29 --- pkgs/by-name/sa/sauerbraten/package.nix | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/sa/sauerbraten/package.nix b/pkgs/by-name/sa/sauerbraten/package.nix index f23b1a296846..2951641fbf5f 100644 --- a/pkgs/by-name/sa/sauerbraten/package.nix +++ b/pkgs/by-name/sa/sauerbraten/package.nix @@ -2,24 +2,29 @@ lib, stdenv, fetchzip, + + # nativeBuildInputs + makeWrapper, + copyDesktopItems, + + # buildInputs SDL2, SDL2_image, SDL2_mixer, zlib, - makeWrapper, - copyDesktopItems, + makeDesktopItem, }: stdenv.mkDerivation rec { pname = "sauerbraten"; - version = "2020-12-27"; + version = "2020-12-29"; src = fetchzip { url = "mirror://sourceforge/sauerbraten/sauerbraten_${ builtins.replaceStrings [ "-" ] [ "_" ] version }_linux.tar.bz2"; - sha256 = "0llknzj23vx6f3y452by9c7wlhzclyq4bqi22qd52m3l916z2mn5"; + hash = "sha256-os3SmonqHRw1+5dIRVt7EeXfnSq298GiyKpusS1K3rM="; }; nativeBuildInputs = [ @@ -29,8 +34,8 @@ stdenv.mkDerivation rec { buildInputs = [ SDL2 - SDL2_mixer SDL2_image + SDL2_mixer zlib ]; @@ -71,10 +76,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Free multiplayer & singleplayer first person shooter, the successor of the Cube FPS"; homepage = "http://sauerbraten.org"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ajs124 ]; @@ -84,6 +89,6 @@ stdenv.mkDerivation rec { # not setting platforms because it is 0.5+ GiB of game data [ ]; license = "freeware"; # as an aggregate - data files have different licenses code is under zlib license - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } From 93a685d427a555763826b998e858b08f73415547 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Tue, 10 Sep 2024 23:42:00 -0500 Subject: [PATCH 107/232] vimPlugins: update on 2024-09-11 --- .../editors/vim/plugins/generated.nix | 1771 +++++++++-------- 1 file changed, 886 insertions(+), 885 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index c94f62a43505..b4baa2b072fb 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -29,12 +29,12 @@ final: prev: ChatGPT-nvim = buildVimPlugin { pname = "ChatGPT.nvim"; - version = "2024-06-22"; + version = "2024-08-26"; src = fetchFromGitHub { owner = "jackMort"; repo = "ChatGPT.nvim"; - rev = "f081338f07216a46d3915ce46c1fcb083bcb5016"; - sha256 = "1hgwdahp5h2nfzwfgjjgdbki5jnyg5gmapvz1kd1zmcycslb85di"; + rev = "4d9d297c2409c8ebc715da7f1d7705a221564555"; + sha256 = "0i4ras7n66i4h64bb0v70v85b70d0rw33hy16kgyr20b6qkm53vm"; }; meta.homepage = "https://github.com/jackMort/ChatGPT.nvim/"; }; @@ -65,24 +65,24 @@ final: prev: CopilotChat-nvim = buildVimPlugin { pname = "CopilotChat.nvim"; - version = "2024-07-29"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "CopilotC-Nvim"; repo = "CopilotChat.nvim"; - rev = "4a5e07185b37d3132e5541d8fa42aa874b774476"; - sha256 = "0hddx5yip9r5asm21gwrcflnlhpj07f3sp90157alnmsvmsjbcwb"; + rev = "9e7010bd33808e31d3f729b5e18a772d8e84f704"; + sha256 = "1srs6hrbqkil9s0ckcwgi5gj5mawcgah43yc0rr9lalx5m9my1md"; }; meta.homepage = "https://github.com/CopilotC-Nvim/CopilotChat.nvim/"; }; Coqtail = buildVimPlugin { pname = "Coqtail"; - version = "2024-08-03"; + version = "2024-09-04"; src = fetchFromGitHub { owner = "whonore"; repo = "Coqtail"; - rev = "ac6e91f72c43ea5b7734daca160f8072b6e98799"; - sha256 = "1hg44rg94bv1wblpghff8m4zkkprmfsjmcvm7azismpf3f71hcdx"; + rev = "c1ae5b36b7f6dad31d176bf7bcffef36c7cac731"; + sha256 = "1907pq0x7pcs6b6xnq4yzlblazklhlg0fpc2dy6ckdhz4n77gc34"; }; meta.homepage = "https://github.com/whonore/Coqtail/"; }; @@ -137,12 +137,12 @@ final: prev: Ionide-vim = buildVimPlugin { pname = "Ionide-vim"; - version = "2024-05-24"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "ionide"; repo = "Ionide-vim"; - rev = "00099c3cf53cba28a1d8084ab8d21639c62bd747"; - sha256 = "1c3fzc87468zcl2fk6av0fl848sp82wpr9rdc4yc3l33p2mxqqy9"; + rev = "268955cc106f8328a232b160a7360cf331c0a323"; + sha256 = "0lyd719p621v0n9pm7c1nvrfccfmssdipn9fzxcds0hw4janhjml"; }; meta.homepage = "https://github.com/ionide/Ionide-vim/"; }; @@ -185,24 +185,24 @@ final: prev: LazyVim = buildVimPlugin { pname = "LazyVim"; - version = "2024-07-25"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "LazyVim"; repo = "LazyVim"; - rev = "12818a6cb499456f4903c5d8e68af43753ebc869"; - sha256 = "16zdahzb3mfjpr3s6lk9754a6nqq1kjcw5p3f0qh12h6zkb2w8v4"; + rev = "3dbace941ee935c89c73fd774267043d12f57fe2"; + sha256 = "0dgkvjkd9g0dr8mcp7l5n162h5kds86hlyhk1q2jj1y7iwfv7wbs"; }; meta.homepage = "https://github.com/LazyVim/LazyVim/"; }; LeaderF = buildVimPlugin { pname = "LeaderF"; - version = "2024-07-31"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "Yggdroot"; repo = "LeaderF"; - rev = "10ad367e4b523ccb4fe2953078d0affcddb1f1a7"; - sha256 = "1gwzjrmr0sf7nhlpviscnnsz2lfjyrxk14bgp1yfx297sb529acj"; + rev = "71ac24712da87ac127fd4d9656d61274909e938a"; + sha256 = "0ddjaiy7rmrz1cj5qpbch1md2f3rv3r9sydmh9yvgj7ali81nazf"; }; meta.homepage = "https://github.com/Yggdroot/LeaderF/"; }; @@ -329,12 +329,12 @@ final: prev: SchemaStore-nvim = buildVimPlugin { pname = "SchemaStore.nvim"; - version = "2024-08-01"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "b0o"; repo = "SchemaStore.nvim"; - rev = "a86e7a0ecaf09fdb0b58ca09f34cd1e2b2b1fd75"; - sha256 = "0yidgx3z5dims64gdzvln8rji7qqbaxrg9jwbxa7w7vqhy3s7b99"; + rev = "b546852f7a477276805b01f84ac79c28a962c55b"; + sha256 = "1pfm1c8nrjyfwvgzdd23qgnxmxyp3ngaqk5a4wvxk9xglmbghzn3"; }; meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; }; @@ -401,12 +401,12 @@ final: prev: SpaceVim = buildVimPlugin { pname = "SpaceVim"; - version = "2024-08-04"; + version = "2024-08-15"; src = fetchFromGitHub { owner = "SpaceVim"; repo = "SpaceVim"; - rev = "f15e9ec6789c8ddb95da39f346489b26ed6193ff"; - sha256 = "0xmx1qffkl3dbqbaawdgnjs1cxdc60v0035q569bqldghfv6pv9h"; + rev = "0aa951d7e9f526e6f974d679b181f28854935851"; + sha256 = "0vws21psgl9807czshdqkl9218jkbv7gdkflaxp8kwvp0x4d3chq"; }; meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; }; @@ -473,12 +473,12 @@ final: prev: YouCompleteMe = buildVimPlugin { pname = "YouCompleteMe"; - version = "2024-06-20"; + version = "2024-08-27"; src = fetchFromGitHub { owner = "ycm-core"; repo = "YouCompleteMe"; - rev = "b5fe27bb82cc375d66a9a006cf30390bdb215ed2"; - sha256 = "1fm8dbdr26zknxcyiah7jz1v0h9cx0g4dg9c9vrm3w3ibbpy2jf0"; + rev = "b6e8c64d96b02d60b3751d6a51af7dc958054f8f"; + sha256 = "1jkwcsh2hwsrax7p3dzp349i6sa3iqkpbmajzfcsbzllknax5sd5"; fetchSubmodules = true; }; meta.homepage = "https://github.com/ycm-core/YouCompleteMe/"; @@ -534,12 +534,12 @@ final: prev: advanced-git-search-nvim = buildVimPlugin { pname = "advanced-git-search.nvim"; - version = "2024-06-03"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "aaronhallaert"; repo = "advanced-git-search.nvim"; - rev = "198cc402af1790ab26830fdbf24a28c336a20ba6"; - sha256 = "0xyhbqvbfdbd73awizn8zyq9qqrrdqpmrgdj20xv61kak5pd6ar3"; + rev = "1c5a10f5c838cfad2c17d7464311d6fb416cb319"; + sha256 = "0yhp2szjm62x27iprz50pxfp048m71xj1pwdg41z07vhf4vxqpv0"; }; meta.homepage = "https://github.com/aaronhallaert/advanced-git-search.nvim/"; }; @@ -558,12 +558,12 @@ final: prev: aerial-nvim = buildVimPlugin { pname = "aerial.nvim"; - version = "2024-07-24"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "stevearc"; repo = "aerial.nvim"; - rev = "e75a3df2c20b3a98c786f5e61587d74a7a6b61d6"; - sha256 = "06jg1z0lyvyq1k7hai059jj7h19r2psrya1n035ricj5j39n8i3x"; + rev = "fa75fd0286788c6c5a65ec46aafbfaf7b7826b74"; + sha256 = "05c8s4rviin0n33nvk1ccxvidvmp0vq5kjrk3bv406wzqfd2iab0"; fetchSubmodules = true; }; meta.homepage = "https://github.com/stevearc/aerial.nvim/"; @@ -619,12 +619,12 @@ final: prev: ale = buildVimPlugin { pname = "ale"; - version = "2024-07-12"; + version = "2024-09-05"; src = fetchFromGitHub { owner = "dense-analysis"; repo = "ale"; - rev = "48d73c87c3c321e6298755abc5449267192d07e6"; - sha256 = "0zrwv58w4hjznjp6b4vpipamgb7ad05vv5il0xbjckxp3dq1p3nb"; + rev = "a7ef1817b7aa06d0f80952ad530be87ad3c8f6e2"; + sha256 = "0sd8ygz6g1l80h108lhzjl6cmv5wl490z69ybzlxp9xywkhp5nah"; }; meta.homepage = "https://github.com/dense-analysis/ale/"; }; @@ -643,12 +643,12 @@ final: prev: alpha-nvim = buildVimPlugin { pname = "alpha-nvim"; - version = "2024-02-25"; + version = "2024-08-19"; src = fetchFromGitHub { owner = "goolord"; repo = "alpha-nvim"; - rev = "41283fb402713fc8b327e60907f74e46166f4cfd"; - sha256 = "1a3spwcypcrjv9md58h4vxh4bjfz25fc1lkpp0zypmnykwllydci"; + rev = "b6f4129302db197a7249e67a90de3f2b676de13e"; + sha256 = "1zvzavhvpdf5xm4lcz43d7zqkpicam3gydxgy389xs9p6fdc9ww2"; }; meta.homepage = "https://github.com/goolord/alpha-nvim/"; }; @@ -667,12 +667,12 @@ final: prev: aniseed = buildVimPlugin { pname = "aniseed"; - version = "2024-07-14"; + version = "2024-08-09"; src = fetchFromGitHub { owner = "Olical"; repo = "aniseed"; - rev = "9531eb0dae5a9347eda8f0fc04af7b2b7c908eb0"; - sha256 = "10qgcy29mgmdpnrdf1k9wip5glmzzhw8ikkx48p7b6qdmgfkg1c6"; + rev = "d558a68329c465bced901adf3238a6f946d62483"; + sha256 = "0dwzxbf0xdlspwynx37y7zwfzi5ng09crlywpymbj9lpdpyfy14p"; }; meta.homepage = "https://github.com/Olical/aniseed/"; }; @@ -727,24 +727,24 @@ final: prev: arrow-nvim = buildVimPlugin { pname = "arrow.nvim"; - version = "2024-05-28"; + version = "2024-08-27"; src = fetchFromGitHub { owner = "otavioschwanck"; repo = "arrow.nvim"; - rev = "0b0191d967d9fd837a850f2ccaa95d5917239404"; - sha256 = "13brj1c482nag37wik4c61y2cb771yg9vkshqi3irqlzbyf1bhqb"; + rev = "fb8e2cf548f625f6e36cb44d3e65600656924234"; + sha256 = "1sqfnm6izcyap0vg4abnsmjs19dg0x2gzd2icp4bd5h8wps8i9xv"; }; meta.homepage = "https://github.com/otavioschwanck/arrow.nvim/"; }; astrotheme = buildVimPlugin { pname = "astrotheme"; - version = "2024-07-24"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "AstroNvim"; repo = "astrotheme"; - rev = "41b7d8430a55fd771e41bd763af4c3fd1c2fc0b5"; - sha256 = "0lp8wym0ck7jfdrhwymhh1g9cas5ljmlydggy0c9qa64ildyr5ab"; + rev = "037c3dbd161d6744d274243dd71314b2964753b2"; + sha256 = "0pq9kv9xcxp3w1md301c7xlqp79517vji9nddwfpyabca5d7vanv"; }; meta.homepage = "https://github.com/AstroNvim/astrotheme/"; }; @@ -847,24 +847,24 @@ final: prev: asyncrun-vim = buildVimPlugin { pname = "asyncrun.vim"; - version = "2024-07-26"; + version = "2024-08-07"; src = fetchFromGitHub { owner = "skywind3000"; repo = "asyncrun.vim"; - rev = "641de260966924a8ddd280af1b30209408497b52"; - sha256 = "1r5mz66qqq05wfrqg3jfd050j7flwg7gqwd03bxj4hr4dbvv0n4r"; + rev = "d6ba5dc77dfab73ebeeea16e4f6fbd65400e6905"; + sha256 = "0985s0k0zg0picg5fwzwwlhki61ixsj1zih055h7d0zw1ffkg3k9"; }; meta.homepage = "https://github.com/skywind3000/asyncrun.vim/"; }; asynctasks-vim = buildVimPlugin { pname = "asynctasks.vim"; - version = "2024-06-18"; + version = "2024-08-20"; src = fetchFromGitHub { owner = "skywind3000"; repo = "asynctasks.vim"; - rev = "2604a6dd7348cff5bbca869ba68170f67b48159a"; - sha256 = "033x1z1jr2s6cv0ff98qjqn62vz82isajbxbb4hbyihhk4d0zka5"; + rev = "f54112f6973f1e2b5027c4448888fd466bd3a1ed"; + sha256 = "06c102rnsfvwffpw3b9z1890nj9xa75cqmbf6d0wmknda7hfzgcl"; }; meta.homepage = "https://github.com/skywind3000/asynctasks.vim/"; }; @@ -907,12 +907,12 @@ final: prev: auto-hlsearch-nvim = buildVimPlugin { pname = "auto-hlsearch.nvim"; - version = "2023-03-04"; + version = "2024-08-23"; src = fetchFromGitHub { owner = "asiryk"; repo = "auto-hlsearch.nvim"; - rev = "8f28246d53e9478717ca3b51c8112083fbebd7e3"; - sha256 = "1v6d15swvbxzq0rqx543bbpy64jm7w2vj6di8qad0a58s9v68aq2"; + rev = "77502069b22e48ab7736fe9cf53e1fdac1923bca"; + sha256 = "1lvr0129fgadjavw9nwmxfvba90sqim3np7nankrk7wb6rziwss9"; }; meta.homepage = "https://github.com/asiryk/auto-hlsearch.nvim/"; }; @@ -943,12 +943,12 @@ final: prev: auto-session = buildVimPlugin { pname = "auto-session"; - version = "2024-08-04"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "rmagatti"; repo = "auto-session"; - rev = "a6e692fadbe385b28ba8e98b67747a7e2f381f91"; - sha256 = "1nlnh4ikr8mnk87694hyblrpmisc06bx1yiqrp6mv409vcafbw1j"; + rev = "a90aa7730efa60fdcc7e00497a8f36d94a6da709"; + sha256 = "1s78iq68s7y8grmxkrjbg6fczi60yzlkji0gh48gavkqrgf5yszx"; }; meta.homepage = "https://github.com/rmagatti/auto-session/"; }; @@ -1064,36 +1064,36 @@ final: prev: bamboo-nvim = buildVimPlugin { pname = "bamboo.nvim"; - version = "2024-08-05"; + version = "2024-08-15"; src = fetchFromGitHub { owner = "ribru17"; repo = "bamboo.nvim"; - rev = "49c0737fd76303f1294206f898680c6b9b174260"; - sha256 = "17aghspa3mdyqdxxz8726wv6kxf82bwqrp3mff4j4klmb1wxc6ja"; + rev = "02230fc2461e916d9e2a44b5f3487376d9ca3042"; + sha256 = "0h76b42jzzqi18ni66hnaqbm3zi74dr7a4c0mcdg2bhaz2qfhhvf"; }; meta.homepage = "https://github.com/ribru17/bamboo.nvim/"; }; barbar-nvim = buildVimPlugin { pname = "barbar.nvim"; - version = "2024-07-17"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "romgrk"; repo = "barbar.nvim"; - rev = "53b5a2f34b68875898f0531032fbf090e3952ad7"; - sha256 = "0vzjgk5w55wbhf26dsk9m0ffdvwmkmsb3rgpwf989vbxcqmw8haw"; + rev = "31b6951c53a59bccfa91bf3984ed1510a940c836"; + sha256 = "0dlkjbnaq787b9ajm9dwf1kg1fyip8jcc5fmmg88r8wk43zfkvms"; }; meta.homepage = "https://github.com/romgrk/barbar.nvim/"; }; barbecue-nvim = buildVimPlugin { pname = "barbecue.nvim"; - version = "2023-09-13"; + version = "2024-08-20"; src = fetchFromGitHub { owner = "utilyre"; repo = "barbecue.nvim"; - rev = "d38a2a023dfb1073dd0e8fee0c9be08855d3688f"; - sha256 = "0z1m3myl14g91nnamqa72yxq6pspaffn0zpfi78vy6y0ygzam51x"; + rev = "3e31404f0b93a2c30d151abf0648650ac811c664"; + sha256 = "0pw2jx616zanjrh0njw69l4x4xrgsdz4q5q0b4vi8nfl0lvqdvsi"; }; meta.homepage = "https://github.com/utilyre/barbecue.nvim/"; }; @@ -1124,12 +1124,12 @@ final: prev: base46 = buildVimPlugin { pname = "base46"; - version = "2024-08-03"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "nvchad"; repo = "base46"; - rev = "be43be136eeab321c8cb201bf72c7db44d97b15f"; - sha256 = "04amnhxbdydl5x7h4vvirj2xj4kgv61gjqxkpc0ryk0v2w3zvdxv"; + rev = "9b81403ef6e29a70bffb7990a0f3dbe5f6095047"; + sha256 = "0vd9s7sah7fjbg1wqjpwpfmf4jsg36wxxlmdlj116jkgg7xijdjq"; }; meta.homepage = "https://github.com/nvchad/base46/"; }; @@ -1172,12 +1172,12 @@ final: prev: better-escape-nvim = buildVimPlugin { pname = "better-escape.nvim"; - version = "2024-08-02"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "max397574"; repo = "better-escape.nvim"; - rev = "d337e02b140d909345441392de47a42d283747c1"; - sha256 = "02bm6kfqds02y95qqcxhy54wlw1ra6zg0p5m6x4900178r37bfw9"; + rev = "bb197e51a91a635deb88630813c3bfc284413697"; + sha256 = "12nn87w12v9b2l86x2q55kqw5nqixyz6qqpcy8vb7d1rmj5v7j2j"; }; meta.homepage = "https://github.com/max397574/better-escape.nvim/"; }; @@ -1304,12 +1304,12 @@ final: prev: bufexplorer = buildVimPlugin { pname = "bufexplorer"; - version = "2024-05-30"; + version = "2024-08-13"; src = fetchFromGitHub { owner = "jlanzarotta"; repo = "bufexplorer"; - rev = "2308e87960c05bd8da7bbf62c903e1f42d6cc9b9"; - sha256 = "1ss3vshlsrfyrnn3fadhfp49zc0w70r6wzjaww2d8jqw7afwlx5x"; + rev = "fcf3a65a69020f0f54be8fa925f841874a5f3a01"; + sha256 = "0nbskarlk7byghv3w852hlsmc3rylw43x873a4n2nszywc50zahk"; }; meta.homepage = "https://github.com/jlanzarotta/bufexplorer/"; }; @@ -1400,12 +1400,12 @@ final: prev: ccc-nvim = buildVimPlugin { pname = "ccc.nvim"; - version = "2024-06-23"; + version = "2024-08-30"; src = fetchFromGitHub { owner = "uga-rosa"; repo = "ccc.nvim"; - rev = "4fb5abaef2f2e0540fe22d4d74a9841205fff9e4"; - sha256 = "00916cwvdg3rccmf4vg811gi03gpdrpsndpr9ady29dii2alb6pb"; + rev = "790aa881d7f47bc7cc07ad03f1216bb7caf9ef67"; + sha256 = "0xq64akzb1pl4cf1w73a73q1wg4d9b48k35lddg2kmm86abmsb62"; }; meta.homepage = "https://github.com/uga-rosa/ccc.nvim/"; }; @@ -1424,12 +1424,12 @@ final: prev: chadtree = buildVimPlugin { pname = "chadtree"; - version = "2024-07-25"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "chadtree"; - rev = "7334155c68acd932e275fbf203f05eebf7f741ed"; - sha256 = "15ddriks3ffyz8q0g8nkb35dmm2apclw04dkivjbbm21dg5nym11"; + rev = "b1000e87298c31452fe9fa43397fd955daa70cd4"; + sha256 = "0gbw2i6989my9582ap79dfqiwkhlv5nm65sywvrz0sxr4nq4fsp2"; }; meta.homepage = "https://github.com/ms-jpq/chadtree/"; }; @@ -1472,12 +1472,12 @@ final: prev: cinnamon-nvim = buildVimPlugin { pname = "cinnamon.nvim"; - version = "2024-07-25"; + version = "2024-08-07"; src = fetchFromGitHub { owner = "declancm"; repo = "cinnamon.nvim"; - rev = "ecd211e46a1d4fb0efffbdb2c2bbd59785605870"; - sha256 = "0pf9bx2xrv8kkg4339w7cqns4v8gkg4jppsccbymhbp4gj9xhw7s"; + rev = "450cb3247765fed7871b41ef4ce5fa492d834215"; + sha256 = "1vq0cab139gyix2qhmivp86fq6l4fhzn7qafphj0yjac47i11iwi"; }; meta.homepage = "https://github.com/declancm/cinnamon.nvim/"; }; @@ -1496,12 +1496,12 @@ final: prev: citruszest-nvim = buildVimPlugin { pname = "citruszest.nvim"; - version = "2024-07-11"; + version = "2024-08-28"; src = fetchFromGitHub { owner = "zootedb0t"; repo = "citruszest.nvim"; - rev = "7ad0e43e0098ae8aecdce81e920688afca95631c"; - sha256 = "0x54vbip7saswfqypcfh4hw8yrn59msz196hi92gc8ldg77ana0k"; + rev = "d12c99f937114b908e935a9cda1953bb8f16bcc8"; + sha256 = "19ng4ig8jjllz8c8ji3b2qljbc53bnkrcilqpyk0rzyfpfcp81i6"; }; meta.homepage = "https://github.com/zootedb0t/citruszest.nvim/"; }; @@ -1520,12 +1520,12 @@ final: prev: clangd_extensions-nvim = buildVimPlugin { pname = "clangd_extensions.nvim"; - version = "2024-06-06"; + version = "2024-08-25"; src = fetchFromGitHub { owner = "p00f"; repo = "clangd_extensions.nvim"; - rev = "a8500531c4ed3a207e744a374ea038744a0f93eb"; - sha256 = "1y42abwy5ax64ccr90pk31gycja1yv3c6qgi0wmkfi6smmn25g0g"; + rev = "385a44f133f4145e3a3da1a2a557225dccc3e1f8"; + sha256 = "1fsc5ggzzf3gcgn87pv70wrlakl32dh5kz492m1djgr6c7gzpnnn"; }; meta.homepage = "https://github.com/p00f/clangd_extensions.nvim/"; }; @@ -1616,23 +1616,23 @@ final: prev: cmp-ai = buildVimPlugin { pname = "cmp-ai"; - version = "2024-08-01"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "tzachar"; repo = "cmp-ai"; - rev = "61d86ffc5863833aa30c6098f95a1e56670a6c64"; - sha256 = "1f629agggkxsdfp7gmw8j60q7szd9lvrazyy8d35avyn0npmp64n"; + rev = "5bf7e0e1d41b20ffbf68b54da2d9e391abb291ad"; + sha256 = "0a4znnm03y25pby6hxq45n9p3msbb9380kg5y6ag7pj84shppbzg"; }; meta.homepage = "https://github.com/tzachar/cmp-ai/"; }; cmp-async-path = buildVimPlugin { pname = "cmp-async-path"; - version = "2024-03-25"; + version = "2024-08-27"; src = fetchgit { url = "https://codeberg.org/FelipeLema/cmp-async-path/"; - rev = "7df7f3721c45aac26b6e0474087538f4681c9c7a"; - sha256 = "15k6q1hfv9bggzz8vh9pd5mz9vay2cr6xp7bb4iqhahsgyr9c99d"; + rev = "03fac5dfd6f7880be2c059d58bebe007f0d6d8ee"; + sha256 = "1dycqym1n4i5cxah2a151ih5k3h238vipf54d7jcr3jgx1ad8glv"; }; meta.homepage = "https://codeberg.org/FelipeLema/cmp-async-path/"; }; @@ -1831,12 +1831,12 @@ final: prev: cmp-git = buildVimPlugin { pname = "cmp-git"; - version = "2024-07-17"; + version = "2024-08-20"; src = fetchFromGitHub { owner = "petertriho"; repo = "cmp-git"; - rev = "3d83031c4b63f9b10703e32e070cda0700a81992"; - sha256 = "1vnd05v6ni7kn3qkrmm75ns2p29liyl1b1xl56whijp0r0v26s89"; + rev = "50d526dff0f6bc441b51fc269d9fdc99a50c76af"; + sha256 = "084mka6ar0bz7sqd8iv9nhz1y552fab6imjxzb4ak3aagzlml5r7"; }; meta.homepage = "https://github.com/petertriho/cmp-git/"; }; @@ -2071,12 +2071,12 @@ final: prev: cmp-tabnine = buildVimPlugin { pname = "cmp-tabnine"; - version = "2024-03-26"; + version = "2024-08-29"; src = fetchFromGitHub { owner = "tzachar"; repo = "cmp-tabnine"; - rev = "d52aae40ee86b62960c31a003352ddfc9e31c8d2"; - sha256 = "155v6pqwdvqnivbm23wx3a554sy5sryb14dd8v01kp3pjydbkqqz"; + rev = "0f4bf271a8f1eb2c5add4dab712c67aa1f9ca7bd"; + sha256 = "0x1i6zw7qdjj2g164l8899iir519fw5j46nrc97jdfayax3crs4h"; }; meta.homepage = "https://github.com/tzachar/cmp-tabnine/"; }; @@ -2191,12 +2191,12 @@ final: prev: cobalt2-nvim = buildVimPlugin { pname = "cobalt2.nvim"; - version = "2024-08-03"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "lalitmee"; repo = "cobalt2.nvim"; - rev = "f9bcbf6d73c065b95cdf891195e825d918412a3f"; - sha256 = "0v6rss8sgzig08x23x329alpyixx510m5mf3b4v8g6nsv06ldxn0"; + rev = "32a2b8d0742bc5d0fb778d25a23c59ce31589e75"; + sha256 = "045lg1r66qcq3cjlzl78042511ab5cip0wnw6wr7daknwj36nqzs"; }; meta.homepage = "https://github.com/lalitmee/cobalt2.nvim/"; }; @@ -2287,12 +2287,12 @@ final: prev: coc-nvim = buildVimPlugin { pname = "coc.nvim"; - version = "2024-08-01"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc.nvim"; - rev = "ae1a5576936f78ae46a51964db1b2293b40ff27f"; - sha256 = "09m4zrs33msjc0ifqh5xk4pzlm8ws5xd3043k1xfvaw6m3ic18d2"; + rev = "69b16f8651b4d92d9ea5d6b000c084f275ed7928"; + sha256 = "1fw1jridm31gw41xq6cx2k51nkxk8jv3b26idbkynm4isr02g0ig"; }; meta.homepage = "https://github.com/neoclide/coc.nvim/"; }; @@ -2311,24 +2311,24 @@ final: prev: codeium-nvim = buildVimPlugin { pname = "codeium.nvim"; - version = "2024-07-09"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "Exafunction"; repo = "codeium.nvim"; - rev = "f6a2ef32a9e923cb0104a19d3e426b0e40e49505"; - sha256 = "0cijady83i5wixjfsgv979h9iggw76d5fwr6vrrnijwdkx7im6zi"; + rev = "937667b2cadc7905e6b9ba18ecf84694cf227567"; + sha256 = "12jj92akg681cgd9wyfzh3bd5fjh1wk5x5j4g2nlhvdybipz82kj"; }; meta.homepage = "https://github.com/Exafunction/codeium.nvim/"; }; codeium-vim = buildVimPlugin { pname = "codeium.vim"; - version = "2024-07-11"; + version = "2024-09-04"; src = fetchFromGitHub { owner = "Exafunction"; repo = "codeium.vim"; - rev = "e0342fde9474fdd0a36ff9692fe0031b7611a19f"; - sha256 = "1s2k680k274pkn6ikw5z924847s72f8r6lhfxf32q55mc5id709y"; + rev = "fc5a68d6273715f13a1257f02a63d668604d9f27"; + sha256 = "12jvq2qgh8g6dfdds1d7p3rs8v27lnqa6crd7mr5dbmh563m3cdg"; }; meta.homepage = "https://github.com/Exafunction/codeium.vim/"; }; @@ -2407,16 +2407,28 @@ final: prev: command-t = buildVimPlugin { pname = "command-t"; - version = "2024-07-11"; + version = "2024-08-15"; src = fetchFromGitHub { owner = "wincent"; repo = "command-t"; - rev = "e2a0513c91a7ebdde23cab0b6724ba05292551ff"; - sha256 = "13i1ap2g5sg5ldky4y14m7lq8y9nb697gyvicl5n8hga535ah9wm"; + rev = "4ee21e27bd28f6d17ea620633c6f83830ee23570"; + sha256 = "06rba2hqfqc8cr0gp3f3lvdkbilglzjzfkr5jqnipiwkixl4lpj5"; }; meta.homepage = "https://github.com/wincent/command-t/"; }; + comment-box-nvim = buildVimPlugin { + pname = "comment-box.nvim"; + version = "2024-02-03"; + src = fetchFromGitHub { + owner = "LudoPinelli"; + repo = "comment-box.nvim"; + rev = "06bb771690bc9df0763d14769b779062d8f12bc5"; + sha256 = "182wfx8q30ingkkrr0xs4r9zf1rf0b8wp2l8pi8hds0cpzc8vfvx"; + }; + meta.homepage = "https://github.com/LudoPinelli/comment-box.nvim/"; + }; + comment-nvim = buildVimPlugin { pname = "comment.nvim"; version = "2024-06-09"; @@ -2429,18 +2441,6 @@ final: prev: meta.homepage = "https://github.com/numtostr/comment.nvim/"; }; - comment-box-nvim = buildVimPlugin { - pname = "comment-box.nvim"; - version = "v1.0.2"; - src = fetchFromGitHub { - owner = "LudoPinelli"; - repo = "comment-box.nvim"; - rev = "e04635ed2b423448b87ddb2f35c26d1a7b7b3f1c"; - sha256 = "sha256-2P8Zyd5ucOvihZdjgSmr7YlV0yuCn+LyHkCj9gPx/CY="; - }; - meta.homepage = "https://github.com/LudoPinelli/comment-box.nvim/"; - }; - committia-vim = buildVimPlugin { pname = "committia.vim"; version = "2023-11-25"; @@ -2527,12 +2527,12 @@ final: prev: compiler-nvim = buildVimPlugin { pname = "compiler.nvim"; - version = "2024-07-16"; + version = "2024-08-14"; src = fetchFromGitHub { owner = "Zeioth"; repo = "compiler.nvim"; - rev = "892c1aac059b7df16dc636eea9e34be53f53ff96"; - sha256 = "07dzl4zyhxf2y2pv4wijs597807jznnrd15gzl48snsnkdrx252s"; + rev = "e889774c7f2fefad60f8e6638d324223b07d2624"; + sha256 = "18lq9szxgrwhb8378pd6bmgsz744pm3aby5vnrw2g2324xdq46wx"; }; meta.homepage = "https://github.com/Zeioth/compiler.nvim/"; }; @@ -2611,12 +2611,12 @@ final: prev: conform-nvim = buildVimPlugin { pname = "conform.nvim"; - version = "2024-07-23"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "stevearc"; repo = "conform.nvim"; - rev = "25d48271e3d4404ba017cb92a37d3a681c1ad149"; - sha256 = "0dbw1b25g83iy6yvc725k7il0l7yli4qd9s4wylcbqgacss2nz3h"; + rev = "936f2413e6c57185cd873623a29a0685bce4b423"; + sha256 = "049g7jhbvv4awpjg4vcbqw1d4k9bapn2nsvsnajhqmn65qhsif8q"; fetchSubmodules = true; }; meta.homepage = "https://github.com/stevearc/conform.nvim/"; @@ -2624,12 +2624,12 @@ final: prev: conjure = buildVimPlugin { pname = "conjure"; - version = "2024-07-19"; + version = "2024-08-09"; src = fetchFromGitHub { owner = "Olical"; repo = "conjure"; - rev = "1157614e1c757cdbe062b08d617d162fb34ed3a3"; - sha256 = "03rrfba6z47sy4x1a7wrmnlfysz20zn8z1wxinbf60dkaiyjsfgp"; + rev = "6d2bc7f7b24c2c43d54f263bee7b9b08aef5d1a1"; + sha256 = "0gfk2b4cz8wisp5lpjlncf79may4c0sykgn7n9ibrmd8729ks43k"; }; meta.homepage = "https://github.com/Olical/conjure/"; }; @@ -2672,48 +2672,48 @@ final: prev: copilot-lua = buildVimPlugin { pname = "copilot.lua"; - version = "2024-06-15"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "zbirenbaum"; repo = "copilot.lua"; - rev = "86537b286f18783f8b67bccd78a4ef4345679625"; - sha256 = "13ri0rj0bgs3s5hkh0hc9blk9xv9knv8q97zrx0y90w4b9k50b8w"; + rev = "f9e2c140643bd4519a4517a78a51f6ae8b8b2a95"; + sha256 = "14v1mh453wjdgip68js3aynilj0rddgkr1avnvi38ihw51mi707i"; }; meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; }; copilot-vim = buildVimPlugin { pname = "copilot.vim"; - version = "2024-07-10"; + version = "2024-08-29"; src = fetchFromGitHub { owner = "github"; repo = "copilot.vim"; - rev = "25f73977033c597d530c7ab0e211d99b60927d2d"; - sha256 = "1s1jf98kvv7rfiyxyhj3ba091rissc7n953dshpikbj2n85inlma"; + rev = "782461159655b259cff10ecff05efa761e3d4764"; + sha256 = "0f0iszaphi1p411wgpn8r4slqrxlwdcy03raqypdg5f40jmiad9c"; }; meta.homepage = "https://github.com/github/copilot.vim/"; }; coq-artifacts = buildVimPlugin { pname = "coq.artifacts"; - version = "2024-03-01"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "coq.artifacts"; - rev = "9c5067a471322c6bb866545e88e5b28c82511865"; - sha256 = "0c0l259qyywck43hgs09qznrw1wm72idprlfk4ddcdj8g99vny84"; + rev = "a1ffcee295905171d87b40ee456001d45b10329b"; + sha256 = "0ag8ryq7figzvf0693077ifwj38jwig09521v04h9jyivickiq6w"; }; meta.homepage = "https://github.com/ms-jpq/coq.artifacts/"; }; coq-thirdparty = buildVimPlugin { pname = "coq.thirdparty"; - version = "2024-07-25"; + version = "2024-08-26"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "coq.thirdparty"; - rev = "6a53363555bd483818ef2a3103db8ddc8d98a41d"; - sha256 = "0c5l8zwrcyab36l3diwb6zpncisl0nn0d993vwrzf2430nak59cy"; + rev = "a827c2ab76d7c803976765cac597c79a2a5b34f6"; + sha256 = "0f9r16kkqhm6pr78v0iq87g1jqkn2acz5ll90xjdi1qg6h16dmc8"; }; meta.homepage = "https://github.com/ms-jpq/coq.thirdparty/"; }; @@ -2732,12 +2732,12 @@ final: prev: coq_nvim = buildVimPlugin { pname = "coq_nvim"; - version = "2024-07-26"; + version = "2024-09-01"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "coq_nvim"; - rev = "bdcc65c4636a8894ad4c66aec3192d9da4ee760f"; - sha256 = "0arq12fcr3yfnl8smk2klv3wf81bq4l8ban5rr0acsh03skpwajl"; + rev = "0b4015f9c18fb17e58891e645a652040e6f3e98d"; + sha256 = "1aw5wlgsn9ni11l8rafmqbcrnw76s2l172sjz8m0kssq14giz823"; }; meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; }; @@ -2780,12 +2780,12 @@ final: prev: crates-nvim = buildVimPlugin { pname = "crates.nvim"; - version = "2024-08-02"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "saecki"; repo = "crates.nvim"; - rev = "1c924d5a9ea3496c4e1a02d0d51388ba809f8468"; - sha256 = "1aig0p82q7sy3291671msh6yk945dnxczw6qg59n5w98aw8848cp"; + rev = "b3b9ac6ed9618955b24bf9adede7530ef608495b"; + sha256 = "09qkny8m9awn8yp0bw1i6vyh5g4aaa59cch4mpvyn4nlwav91k0d"; }; meta.homepage = "https://github.com/saecki/crates.nvim/"; }; @@ -2816,12 +2816,12 @@ final: prev: csv-vim = buildVimPlugin { pname = "csv.vim"; - version = "2024-06-09"; + version = "2024-08-20"; src = fetchFromGitHub { owner = "chrisbra"; repo = "csv.vim"; - rev = "4d5255829afe3b6badb0c8a040116704c0d3213c"; - sha256 = "1zkiv887rajmidl8jrk2mz6qmdq1378ivklwam6hxfa027wwigi2"; + rev = "bddfcbadd788ab11eb3dbba4550a38a412fe3705"; + sha256 = "127kzcxxazmpaw5qni7nqh3n9q1qcnnv0svlpp9ad4wizpqvz8k8"; }; meta.homepage = "https://github.com/chrisbra/csv.vim/"; }; @@ -2876,24 +2876,24 @@ final: prev: cyberdream-nvim = buildVimPlugin { pname = "cyberdream.nvim"; - version = "2024-08-03"; + version = "2024-08-29"; src = fetchFromGitHub { owner = "scottmckendry"; repo = "cyberdream.nvim"; - rev = "59feb56373c368c3d865fb8fc744e7484250a30f"; - sha256 = "14svzd0kpfycfbnksiizjsl6v150cl4v83010jlfckylcg75h63f"; + rev = "10d79f367abd585626aca5099907df67e4dfd7a6"; + sha256 = "1whnza3f63z7yj2n35ywdbx9pa70hp9v0qwx5p08iracqs1gga4q"; }; meta.homepage = "https://github.com/scottmckendry/cyberdream.nvim/"; }; darkearth-nvim = buildVimPlugin { pname = "darkearth-nvim"; - version = "2024-07-19"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "ptdewey"; repo = "darkearth-nvim"; - rev = "d53cc2384d0a84889bd44361cee33019bac02c58"; - sha256 = "0m04m4mi8f7pzsx9d92xy20b4yw10gyqk4gmxdlr46y6byfwwlyj"; + rev = "14369f828f4b09ee89b18bfa3f58b02720e8e20a"; + sha256 = "0wccpw7hssb4nb28pcnl5565g4s8s24ibc5r9wv1byygxn80gwha"; }; meta.homepage = "https://github.com/ptdewey/darkearth-nvim/"; }; @@ -2936,96 +2936,96 @@ final: prev: ddc-filter-matcher_head = buildVimPlugin { pname = "ddc-filter-matcher_head"; - version = "2024-08-02"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "Shougo"; repo = "ddc-filter-matcher_head"; - rev = "28f60903e1a9f1010ec01575cb99c64e76683466"; - sha256 = "155yp27p3j982cchgjijci7f1vci1idrv7hp6imz5kxxrcdvfcz4"; + rev = "2be49f0c547fc224f70bd4a0b354b1c1dd9c9eac"; + sha256 = "0liglv3rlag29bivsx2m5m6xnqxc6d7z5ar88zyqmrwrzs20f83h"; }; meta.homepage = "https://github.com/Shougo/ddc-filter-matcher_head/"; }; ddc-filter-sorter_rank = buildVimPlugin { pname = "ddc-filter-sorter_rank"; - version = "2024-08-02"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "Shougo"; repo = "ddc-filter-sorter_rank"; - rev = "539584150b922acb549203730d427dd2fd85fe86"; - sha256 = "16d8jx7bq3602wd9a019zh93ifv1bxdnrrjhsa8d8g8zm2wmv47x"; + rev = "5566bcca71d244d5ac8d5eb97b3db3661e5d00c9"; + sha256 = "007bfn6305d6jzbvnq4b0lza2chapi99qwvj8x41m9pfahb6ay6w"; }; meta.homepage = "https://github.com/Shougo/ddc-filter-sorter_rank/"; }; ddc-source-lsp = buildVimPlugin { pname = "ddc-source-lsp"; - version = "2024-08-16"; + version = "2024-09-04"; src = fetchFromGitHub { owner = "Shougo"; repo = "ddc-source-lsp"; - rev = "7511be6f82cab3dd9fd1592a9076c19f4273570d"; - sha256 = "0kbm1w89rc3kmh4zi1fn8wskj785a0gq1lr5d1ijrb0i2z237rcy"; + rev = "0c9ddf4281b67de629d37ac9e1f9e160f919543e"; + sha256 = "1sh4i2a4fgqy9qrfq2wvw9aah358pvbxqbfcapmw890rrlsrb5fn"; }; meta.homepage = "https://github.com/Shougo/ddc-source-lsp/"; }; ddc-ui-native = buildVimPlugin { pname = "ddc-ui-native"; - version = "2024-07-29"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "Shougo"; repo = "ddc-ui-native"; - rev = "2567067b60419a9be265aae5fa480dc51e4ba1c3"; - sha256 = "1lr039vnr1yw0nccr3f20a19f4mnxm12kkr8rlzix4r6j3z6vz0h"; + rev = "7169980a4beaa672b8e2c5fe38da542e37a16dc1"; + sha256 = "0yin7n0060f9zcahf3dkq9nfvsgznvbqhqf971r3xnbc9cl83gfa"; }; meta.homepage = "https://github.com/Shougo/ddc-ui-native/"; }; ddc-ui-pum = buildVimPlugin { pname = "ddc-ui-pum"; - version = "2024-08-01"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "Shougo"; repo = "ddc-ui-pum"; - rev = "989b3f0acb0d35bfcd0a3b0ec9239ad2a838e478"; - sha256 = "14ysvz1gp2ha6143f60v3nq2s2yybx7b916q8bs845jzk5q7qlwd"; + rev = "7e568274b3c22ca8d1742ddec43ea3a63d6ab7e9"; + sha256 = "1h9q23pyha6mzllcd3pk9025gb35y0gxnwrj9g07hsxp8mics2jj"; }; meta.homepage = "https://github.com/Shougo/ddc-ui-pum/"; }; ddc-vim = buildVimPlugin { pname = "ddc.vim"; - version = "2024-08-21"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "Shougo"; repo = "ddc.vim"; - rev = "09f2f778f2da1c2c96965669e9791665455c12eb"; - sha256 = "1ipzlxxlwbzz076cp9ggln2qspgvmnzaqbbq1m1c5rr756d6k7k3"; + rev = "479dd6bb0edabd73f886fe913eed46b369517885"; + sha256 = "14zzj1dxxggsm6p1yxgyaqhi7rfxyk0a8zd3hpam0796xn8zbf6z"; }; meta.homepage = "https://github.com/Shougo/ddc.vim/"; }; debugprint-nvim = buildVimPlugin { pname = "debugprint.nvim"; - version = "2024-07-28"; + version = "2024-08-30"; src = fetchFromGitHub { owner = "andrewferrier"; repo = "debugprint.nvim"; - rev = "07b3b4fd4b807c77b65f57d3d6a484a74a76bb00"; - sha256 = "0j8yv53595m05725qlal4h3j28ld6g870ra0bkrrbar4a6nq2w30"; + rev = "6de2df56b505aaea35cb16d09a6bc208eebeeabe"; + sha256 = "05ybwnijrirkg4fi3fsdb115s7jgh9x74hwnlfvg6r3mxkqx149x"; }; meta.homepage = "https://github.com/andrewferrier/debugprint.nvim/"; }; deepwhite-nvim = buildVimPlugin { pname = "deepwhite.nvim"; - version = "2024-05-22"; + version = "2024-08-15"; src = fetchFromGitHub { owner = "Verf"; repo = "deepwhite.nvim"; - rev = "f1db7888f0a7cf84d6d802c17c074bccca0a72a5"; - sha256 = "1zjs2h6kln346sw2p7msrqv6h451i8b4n7kbmdjncvxmf8b9jw1l"; + rev = "eca39dec3d504412ab5efce0046b77f67ffe4640"; + sha256 = "039yxxpyy8n394a1lm2dy0c72vddicynpi8jfqy2zdq3zkkg5j09"; }; meta.homepage = "https://github.com/Verf/deepwhite.nvim/"; }; @@ -3068,12 +3068,12 @@ final: prev: delimitMate = buildVimPlugin { pname = "delimitMate"; - version = "2020-12-14"; + version = "2024-08-06"; src = fetchFromGitHub { owner = "Raimondi"; repo = "delimitMate"; - rev = "537a1da0fa5eeb88640425c37e545af933c56e1b"; - sha256 = "0vjs11bx5zp6xqny5fd3lhqqvqaz6xjgncyga7hb0x5v6zng7gaj"; + rev = "becbd2d353a2366171852387288ebb4b33a02487"; + sha256 = "0kyxfkb6mkxy3skip6lzgrczwxl5p749n3rrvdr6psvyj3732zmm"; }; meta.homepage = "https://github.com/Raimondi/delimitMate/"; }; @@ -3116,24 +3116,24 @@ final: prev: denops-vim = buildVimPlugin { pname = "denops.vim"; - version = "2024-08-04"; + version = "2024-08-29"; src = fetchFromGitHub { owner = "vim-denops"; repo = "denops.vim"; - rev = "fcc579be1f11d24b56d4d0180bd6ca8a8b919cdb"; - sha256 = "0ps0ki7k3354dj6zspjmf8390jymp9949nr66fzp7cwvmyqvn5f3"; + rev = "f32f02817729129abb3e093fc21e5160512a5673"; + sha256 = "0qp5if2qj12sh4k8fsrpih3qcy665j3gml4sk1pxnpqgl3m5kdg9"; }; meta.homepage = "https://github.com/vim-denops/denops.vim/"; }; deol-nvim = buildVimPlugin { pname = "deol.nvim"; - version = "2024-07-31"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "Shougo"; repo = "deol.nvim"; - rev = "0289c480eda61e53665e1765d7a0580e937a8ace"; - sha256 = "0ph1v14y6fnp3mskqhr3c58hfhbp0xwdhdnq1aifavq6bkqv791b"; + rev = "338fe1c899c3fd50b1647777ee27a36b369c99fe"; + sha256 = "09flzd2h0nb56wli301b3gjflj4l48328f89fc8zff00glzyp1wf"; }; meta.homepage = "https://github.com/Shougo/deol.nvim/"; }; @@ -3514,24 +3514,24 @@ final: prev: dressing-nvim = buildVimPlugin { pname = "dressing.nvim"; - version = "2024-06-19"; + version = "2024-08-16"; src = fetchFromGitHub { owner = "stevearc"; repo = "dressing.nvim"; - rev = "6741f1062d3dc6e4755367a7e9b347b553623f04"; - sha256 = "0mwg7z7gns6gw3b6iq2xs0hynn846k7r4q4fzqba8ky8bzzh8mrf"; + rev = "c5775a888adbc50652cb370073fcfec963eca93e"; + sha256 = "0bcqpympldi4dfjfgaamk6xb5s7fxah7aa2l1jd6mz9v2b9ajgg9"; }; meta.homepage = "https://github.com/stevearc/dressing.nvim/"; }; dropbar-nvim = buildVimPlugin { pname = "dropbar.nvim"; - version = "2024-07-25"; + version = "2024-08-23"; src = fetchFromGitHub { owner = "Bekaboo"; repo = "dropbar.nvim"; - rev = "aa4c0ab1ade45ff9a3c5d4c06365c9b119f32d36"; - sha256 = "0awd7qjnx6gnvisjagsm25fg5wl5kfzcxiqf2jvfs8i550rd54rk"; + rev = "6156e07759fd8c7cbf764414f583aa7e47470368"; + sha256 = "181iq7dkrc2i7gdzglwavfc7havyjgd6r59aclnwkrlx54v34243"; }; meta.homepage = "https://github.com/Bekaboo/dropbar.nvim/"; }; @@ -3550,12 +3550,12 @@ final: prev: edge = buildVimPlugin { pname = "edge"; - version = "2024-07-13"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "sainnhe"; repo = "edge"; - rev = "2de1aede94569f643de438391f6c8b1712038d35"; - sha256 = "0mm428spxbpknzf9s6r3sjh3xj13b4j0ymxg7sm9c9f9jqa3zdv9"; + rev = "3dcbdbd6942018bb30ddfbe9b99e3295ea8c7f0f"; + sha256 = "0m30fdkf4xwln662iyz6aylpvkrz5bys41ccxxa2rdyxmw33sanm"; }; meta.homepage = "https://github.com/sainnhe/edge/"; }; @@ -3574,12 +3574,12 @@ final: prev: edgy-nvim = buildVimPlugin { pname = "edgy.nvim"; - version = "2024-07-22"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "folke"; repo = "edgy.nvim"; - rev = "ebb77fde6f5cb2745431c6c0fe57024f66471728"; - sha256 = "1psavlldajgfvwx0jjhwdilccrhz38p880jsrddmrmfx9yq3yl5s"; + rev = "7e8dedc39abebe40c289b8012cc89b11c69aa7a0"; + sha256 = "0f95wadg6dgkaj25vyq7nrzmpbkbmw9q38h3wrbippylw41jbzr8"; }; meta.homepage = "https://github.com/folke/edgy.nvim/"; }; @@ -3611,12 +3611,12 @@ final: prev: efmls-configs-nvim = buildVimPlugin { pname = "efmls-configs-nvim"; - version = "2024-07-31"; + version = "2024-09-05"; src = fetchFromGitHub { owner = "creativenull"; repo = "efmls-configs-nvim"; - rev = "fe560e3c6c878a682f437d8adff34f5f8a53876d"; - sha256 = "1zmsw26jn1q9a5bbpzhg3di483qsy2dj2gvwcmwgaks5dp6p3p60"; + rev = "8474cdc5a8fc21091828487c3f7781d0b19c66fb"; + sha256 = "1b57l8b5m19p8bf5an67z595zcz9adandz5g4v0yj4b3kbw2azc3"; }; meta.homepage = "https://github.com/creativenull/efmls-configs-nvim/"; }; @@ -3659,12 +3659,12 @@ final: prev: emmet-vim = buildVimPlugin { pname = "emmet-vim"; - version = "2024-06-14"; + version = "2024-08-10"; src = fetchFromGitHub { owner = "mattn"; repo = "emmet-vim"; - rev = "3fb2f63799e1922f7647ed9ff3b32154031a76ee"; - sha256 = "03rlfwfnghqp6bjnpi2mb4f0ki7fyj2im718f51mpfv6wr5c5gac"; + rev = "6c511a8d7d2863066f32e25543e2bb99d505172c"; + sha256 = "11mmk70xk5jlbbc1mpga7rxpjnhyjdz534yr41yndzvkq1gp72lb"; fetchSubmodules = true; }; meta.homepage = "https://github.com/mattn/emmet-vim/"; @@ -3708,12 +3708,12 @@ final: prev: everforest = buildVimPlugin { pname = "everforest"; - version = "2024-07-13"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "sainnhe"; repo = "everforest"; - rev = "b49ba81e79b20d2b47bb71e98fa984bae90731be"; - sha256 = "11wvr3vrz45y2d1v7h2jm7bhbbkjjx4jzjc2qgsgcvs3m68fiyrr"; + rev = "93b89630861a4c8a1be07bc54f6d53487acb2e57"; + sha256 = "0ckm5l1dhd5d81sk73k0py2jmhnm7ydwshnllhw40mnaffh65kwr"; }; meta.homepage = "https://github.com/sainnhe/everforest/"; }; @@ -3732,12 +3732,12 @@ final: prev: eyeliner-nvim = buildVimPlugin { pname = "eyeliner.nvim"; - version = "2024-08-05"; + version = "2024-08-19"; src = fetchFromGitHub { owner = "jinh0"; repo = "eyeliner.nvim"; - rev = "2ee9e64d4c8133da1131edf0e64641e32dd16396"; - sha256 = "057hkbd5ab1xm2x47b0wvd4qafwinlwhwixqbl6dgdnhbi8my6d0"; + rev = "85e5a5a815651a434f327d0da3c2a33b9aa4f9ec"; + sha256 = "1qx082ipf9fyly972wya5ws0h0jff3xg27vgb21igxymyipbddym"; }; meta.homepage = "https://github.com/jinh0/eyeliner.nvim/"; }; @@ -3937,12 +3937,12 @@ final: prev: flit-nvim = buildVimPlugin { pname = "flit.nvim"; - version = "2024-06-18"; + version = "2024-06-19"; src = fetchFromGitHub { owner = "ggandor"; repo = "flit.nvim"; - rev = "a9be4e76c30a128f1e51af448c8321bf8366bcd4"; - sha256 = "0fx2jrnfmr5bl537ha02w3wmkmx89n938h2a4vgc2771kwpb1cy5"; + rev = "1ef72de6a02458d31b10039372c8a15ab8989e0d"; + sha256 = "04v1idfwz5lh7hz456591bl3841jr7kcspf62c7krbhvz5vmmfcl"; }; meta.homepage = "https://github.com/ggandor/flit.nvim/"; }; @@ -3997,14 +3997,14 @@ final: prev: flutter-tools-nvim = buildVimPlugin { pname = "flutter-tools.nvim"; - version = "2024-06-25"; + version = "2024-08-30"; src = fetchFromGitHub { - owner = "akinsho"; + owner = "nvim-flutter"; repo = "flutter-tools.nvim"; - rev = "5aa227fa083fd740184b55b5220dfabc24a25cc7"; - sha256 = "0ga9ipycmklxcbqz8pnan1sli49qwc8wx034drmrvfpbriw3bc73"; + rev = "ea1d398f543a54ba95357c3b8bb9d6f68eaec36c"; + sha256 = "1kk62xsl8bv682w70x5szc2x2507rdv99mia1lzi9ii3xkdgsydn"; }; - meta.homepage = "https://github.com/akinsho/flutter-tools.nvim/"; + meta.homepage = "https://github.com/nvim-flutter/flutter-tools.nvim/"; }; fold-preview-nvim = buildVimPlugin { @@ -4165,24 +4165,24 @@ final: prev: fzf-lua = buildNeovimPlugin { pname = "fzf-lua"; - version = "2024-08-03"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "ibhagwan"; repo = "fzf-lua"; - rev = "73bdec9ac5da578376bdc5a705ea80a19baa4942"; - sha256 = "1b4izbp8vc2mfa8qahlkna15j66dmsmv7r7g8y3q656hgnc2lwig"; + rev = "985e1002b5dc70f8196ea0605bbfffc8c8407e31"; + sha256 = "13g5y187hvl3x3i8w926p9mhmg64f8xb2y32vismq5wlfx0mny6k"; }; meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; }; fzf-vim = buildVimPlugin { pname = "fzf.vim"; - version = "2024-08-01"; + version = "2024-08-28"; src = fetchFromGitHub { owner = "junegunn"; repo = "fzf.vim"; - rev = "6f28c8c7bb551161a0315a76488522204f39c1f4"; - sha256 = "1dbinqfsdi7sqbdb39cis74xk44vc51j3gzqwjcms9dkwbh8sbcy"; + rev = "c5ce7908ee86af7d4090d2007086444afb6ec1c9"; + sha256 = "1vllxqnk8qvbyzqplh9ms7rpk36kwj2mc35r868rkjgg8z4mkbc3"; }; meta.homepage = "https://github.com/junegunn/fzf.vim/"; }; @@ -4273,24 +4273,24 @@ final: prev: git-conflict-nvim = buildVimPlugin { pname = "git-conflict.nvim"; - version = "2024-06-26"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "akinsho"; repo = "git-conflict.nvim"; - rev = "45cde6f0acf26d0e4b64acfa45349dd1da01e577"; - sha256 = "10gsqny5wbqyz7grvnn4c02wib06b4594rffa8bmdydvg09fb9j9"; + rev = "ed1ca6dfd60bf609714f791cfa63aee33aef64ed"; + sha256 = "1qybpjynbmw341asjmc93mkc2k4jp054jh0zq620vc0vplhhx2wz"; }; meta.homepage = "https://github.com/akinsho/git-conflict.nvim/"; }; git-messenger-vim = buildVimPlugin { pname = "git-messenger.vim"; - version = "2022-08-30"; + version = "2024-09-05"; src = fetchFromGitHub { owner = "rhysd"; repo = "git-messenger.vim"; - rev = "8a61bdfa351d4df9a9118ee1d3f45edbed617072"; - sha256 = "0p4pj11sxl3bb2dqsnxwrpn0pf76df1r98wwj9lhjvy7514wc2a8"; + rev = "edc603d4cda7894a743e383e16c638e206d03148"; + sha256 = "0b9wkjxlc2d91wrjhqkpph9mcix3ndpqy3bdr1xajxnjz9lsy22a"; }; meta.homepage = "https://github.com/rhysd/git-messenger.vim/"; }; @@ -4357,12 +4357,12 @@ final: prev: gitsigns-nvim = buildNeovimPlugin { pname = "gitsigns.nvim"; - version = "2024-08-04"; + version = "2024-09-04"; src = fetchFromGitHub { owner = "lewis6991"; repo = "gitsigns.nvim"; - rev = "58bd9e98d8e3c5a1c98af312e85247ee1afd3ed2"; - sha256 = "0yx3vs0fc0qlgy9f2dndbaxpaw0izja5nxnv3zdwkn7nwknxnmfa"; + rev = "1ef74b546732f185d0f806860fa5404df7614f28"; + sha256 = "1i1frmz9i65ivkkvb5rawwlr74xhxby2pp1chs443lymw9kbqz5k"; }; meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; }; @@ -4417,12 +4417,12 @@ final: prev: go-nvim = buildVimPlugin { pname = "go.nvim"; - version = "2024-07-31"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "ray-x"; repo = "go.nvim"; - rev = "e66c3240d26936428cd0f320dc5ffa1eb01538b8"; - sha256 = "1vgzi24a518dn1x2lp4fysfdy62nj0rykl3s5iww75ckfssvxlic"; + rev = "73fd2b1d9f990b607610abc45a09af3f1600b731"; + sha256 = "00j8ci437ccw3z97m25i243ya6gmx194c31w5bamx0g25d87zd8i"; }; meta.homepage = "https://github.com/ray-x/go.nvim/"; }; @@ -4537,12 +4537,12 @@ final: prev: grug-far-nvim = buildVimPlugin { pname = "grug-far.nvim"; - version = "2024-08-04"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "MagicDuck"; repo = "grug-far.nvim"; - rev = "3e491ca05c50f87d02543adb010aed9dfb1e12c1"; - sha256 = "0vl0c5dl2fg90mly0qpranf9a22iisgswx856rjzlz0jan6pxsvr"; + rev = "76d86580f71bd2f07d4264c782ab8d1c12302e13"; + sha256 = "0zn847nfzh1ps9b1czsg1xmhdygvjg7dgq3wa5b6l7frv75lhwhk"; }; meta.homepage = "https://github.com/MagicDuck/grug-far.nvim/"; }; @@ -4585,24 +4585,24 @@ final: prev: gruvbox-material = buildVimPlugin { pname = "gruvbox-material"; - version = "2024-07-13"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "sainnhe"; repo = "gruvbox-material"; - rev = "91f8170a31ae6e31670629cd339df297dbd5fd5f"; - sha256 = "0xpi8h8p19dlfpq3a5xfhwpcv6z5a7cdpc2ml1yxc7d0hk1k6b7x"; + rev = "559b4a9abb6781699404dfd98fb7d6ec83113337"; + sha256 = "0i5ib1m5x63xiyy6slx3ma5hnhwvdzld1vm1yx2kpclb9jf5i8b5"; }; meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; }; gruvbox-material-nvim = buildVimPlugin { pname = "gruvbox-material.nvim"; - version = "2024-08-05"; + version = "2024-08-16"; src = fetchFromGitHub { owner = "f4z3r"; repo = "gruvbox-material.nvim"; - rev = "e9f1616bc00a994e7e135297876df1143bf1efc6"; - sha256 = "1qbdbfpzrd2pc2d1j0yklhl7d9907wx2w54vwvd2cqwa91hm7dhm"; + rev = "1f2b678743cc30540ee4736df11bc4b698a946ea"; + sha256 = "17xgnxhji8qhydf4aah344zm7mvj3r77zg60af6523ma7d8gjpyn"; }; meta.homepage = "https://github.com/f4z3r/gruvbox-material.nvim/"; }; @@ -4621,24 +4621,24 @@ final: prev: guard-collection = buildVimPlugin { pname = "guard-collection"; - version = "2024-06-26"; + version = "2024-08-08"; src = fetchFromGitHub { owner = "nvimdev"; repo = "guard-collection"; - rev = "de6587e99371aeb92cfda3415b6a696c1f55d397"; - sha256 = "0fqynfal7vk55mh13p5v5gh3fhpf26a7kajyrl79hdsr9shv5s4g"; + rev = "fe25ff07fa451112b0e47825e98e7b6b8b771680"; + sha256 = "1s0pdarlf6vpbyhxzjwn2yzh6bp44lsr05nw9s2684lwnr5g46bg"; }; meta.homepage = "https://github.com/nvimdev/guard-collection/"; }; guard-nvim = buildVimPlugin { pname = "guard.nvim"; - version = "2024-07-30"; + version = "2024-08-09"; src = fetchFromGitHub { owner = "nvimdev"; repo = "guard.nvim"; - rev = "14a8e35993c4513da1c93719234de09e7d3a91a2"; - sha256 = "1ycvq5yp08ald5g16vdbyfqlx9kscl5syl2hwp6czn6644cdgasq"; + rev = "8b34592089f56502a7757fd563f2743a446f6334"; + sha256 = "1z49ykazvm1kf6dk5d0agh0iliykdwqzz9ndpy4l7aya4gilmmn2"; }; meta.homepage = "https://github.com/nvimdev/guard.nvim/"; }; @@ -4681,24 +4681,24 @@ final: prev: hardhat-nvim = buildVimPlugin { pname = "hardhat.nvim"; - version = "2024-07-28"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "TheSnakeWitcher"; repo = "hardhat.nvim"; - rev = "86363dea69e00cbc48f02579cb6108b283876548"; - sha256 = "0gdhm1acq83r6b0jylxlwa7ifvxa98ywl27z7bhad0gb11rnmpma"; + rev = "9e51b9c63b5489261018cae552769573fc413436"; + sha256 = "07mjqkmnpc0kyiq2c1z5hlz8if3shn03qb2nqgqbhxrw2l5m1g4d"; }; meta.homepage = "https://github.com/TheSnakeWitcher/hardhat.nvim/"; }; hardtime-nvim = buildVimPlugin { pname = "hardtime.nvim"; - version = "2024-07-26"; + version = "2024-08-20"; src = fetchFromGitHub { owner = "m4xshen"; repo = "hardtime.nvim"; - rev = "91c6be1a54fa057002e21ae209a49436bd215355"; - sha256 = "0i3ih3i162v6lkm9l3406j5322vyjilvhl1qvpc9d67ajs355cm4"; + rev = "6513bf42cd9261669d1ee41ff8b4065dfdc53a09"; + sha256 = "0v522mzz7cp62hjf9bqnfrpnadapywb56r5d888kjvc4gcy9kzrv"; }; meta.homepage = "https://github.com/m4xshen/hardtime.nvim/"; }; @@ -4716,12 +4716,12 @@ final: prev: harpoon = buildVimPlugin { pname = "harpoon"; - version = "2023-12-26"; + version = "2024-08-29"; src = fetchFromGitHub { owner = "ThePrimeagen"; repo = "harpoon"; - rev = "ccae1b9bec717ae284906b0bf83d720e59d12b91"; - sha256 = "10ldyz368j3kh7h7r877wbsa2y88v191415ic4slr7ldzfrar2j8"; + rev = "1bc17e3e42ea3c46b33c0bbad6a880792692a1b3"; + sha256 = "0q7lcww2y1x8s6r5g6wbdlnv3dvc8pj1g7wq6yxvl5fsi40wvhwj"; }; meta.homepage = "https://github.com/ThePrimeagen/harpoon/"; }; @@ -4788,12 +4788,12 @@ final: prev: headlines-nvim = buildVimPlugin { pname = "headlines.nvim"; - version = "2024-02-29"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "lukas-reineke"; repo = "headlines.nvim"; - rev = "618ef1b2502c565c82254ef7d5b04402194d9ce3"; - sha256 = "1fq7f4i8pskj592lr0620j5chgczhlag6zph49zpm9zziqyak5ak"; + rev = "c19bbff5ad47b35c4bbdae92fd810ec5f111f658"; + sha256 = "0khywlfh5ly337f5d2yzfgnjqchd6bhd7vbxh22s5aigrvvs8vpw"; }; meta.homepage = "https://github.com/lukas-reineke/headlines.nvim/"; }; @@ -4812,12 +4812,12 @@ final: prev: helpview-nvim = buildVimPlugin { pname = "helpview.nvim"; - version = "2024-08-12"; + version = "2024-08-26"; src = fetchFromGitHub { owner = "OXY2DEV"; repo = "helpview.nvim"; - rev = "49398d628d74283c5a389a6ced40bd8d2daaf56c"; - sha256 = "0b1z3gz1jpqzf71kjpkw9q3fxbjcdykxi65an6npci0acia49ga2"; + rev = "857aec1dab331252910da158ab6cbfbc65239c71"; + sha256 = "1n3n6zy61iplgffny2fylilvb7sdijfr83bqhchyi2f0hfmjcr8x"; fetchSubmodules = true; }; meta.homepage = "https://github.com/OXY2DEV/helpview.nvim/"; @@ -4825,12 +4825,12 @@ final: prev: hex-nvim = buildVimPlugin { pname = "hex.nvim"; - version = "2024-03-03"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "RaafatTurki"; repo = "hex.nvim"; - rev = "cbffd2ce4b8be089360e3c95d5909cd511d8840c"; - sha256 = "0dvhgdab3f2w7irh164qglj44h4hqba15yq223ckhka7l9r8nggq"; + rev = "d0f553dcd2c08d226026d769119b2eb6b09b8dfd"; + sha256 = "0dqv23i08ng4g7mm35g484p39i4b3vr6xnz3m7ij7n3d6bpfc8c3"; }; meta.homepage = "https://github.com/RaafatTurki/hex.nvim/"; }; @@ -4920,24 +4920,24 @@ final: prev: hop-nvim = buildVimPlugin { pname = "hop.nvim"; - version = "2024-05-26"; + version = "2024-08-08"; src = fetchFromGitHub { owner = "smoka7"; repo = "hop.nvim"; - rev = "036462a345792279c58f2f6445756efab706f04a"; - sha256 = "0das4rci4p3zfmjxkm8rax5pwp81bvssz0cnyzgjqjbzxfijd6px"; + rev = "8f51ef02700bb3cdcce94e92eff16170a6343c4f"; + sha256 = "07py0rhr6wx1nbq8i20a71iv0arp7ym75ffyb3d3n5icmf53inl4"; }; meta.homepage = "https://github.com/smoka7/hop.nvim/"; }; hotpot-nvim = buildVimPlugin { pname = "hotpot.nvim"; - version = "2024-07-03"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "rktjmp"; repo = "hotpot.nvim"; - rev = "5462d3eb5c191ab380ca911e1e931836d27f6a79"; - sha256 = "1dxdy80447ncjrj74rvrpxwx44ygbsxblv27q3lzrk6ycbjl51hs"; + rev = "4656a6492e2fc9105027bf4d4c37bb6733fc5520"; + sha256 = "12q1730jz11qjv7plkjyi5h4j8vm2l9bsacivbapzizz4fqffp3n"; }; meta.homepage = "https://github.com/rktjmp/hotpot.nvim/"; }; @@ -4968,12 +4968,12 @@ final: prev: hydra-nvim = buildVimPlugin { pname = "hydra.nvim"; - version = "2024-03-14"; + version = "2024-09-05"; src = fetchFromGitHub { owner = "nvimtools"; repo = "hydra.nvim"; - rev = "8578056a2226ed49fc608167edc143a87f75d809"; - sha256 = "sha256-Qxp2FigXlupAw/ZwZRVJ+hRKzVRtupV6L4a6jOslwI0="; + rev = "7f5341643107d05a8d7d4fdea00b29af28517380"; + sha256 = "0f9vxv0lxzd4qpikdjinh62vfxg55dm0drcm2ms17igsfjn4myd0"; }; meta.homepage = "https://github.com/nvimtools/hydra.nvim/"; }; @@ -5040,24 +5040,24 @@ final: prev: image-nvim = buildNeovimPlugin { pname = "image.nvim"; - version = "2024-08-02"; + version = "2024-08-05"; src = fetchFromGitHub { owner = "3rd"; repo = "image.nvim"; - rev = "6fb2b84a739d92b781bba5f59f2678ea047332a9"; - sha256 = "1x5c2fmp3n7xvxq76r1na8zmbz0y92bsi0vnkvixa1wgirra5nym"; + rev = "4007cddc4cfc1b5ddd49744a38362e7b0432b3a0"; + sha256 = "00mhip2nzs64pcy39spaj76zdghb7nv24zlbljh7m89z9cvj9565"; }; meta.homepage = "https://github.com/3rd/image.nvim/"; }; img-clip-nvim = buildVimPlugin { pname = "img-clip.nvim"; - version = "2024-06-05"; + version = "2024-08-26"; src = fetchFromGitHub { owner = "HakonHarnes"; repo = "img-clip.nvim"; - rev = "1924e20ab19afec9779109d083b6e5f8bee8fb17"; - sha256 = "0q4bv6bca8bhkc98gc4lmlp3b2nrh6bj7yyb99bk3lnccr0jmj6g"; + rev = "28a32d811d69042f4fa5c3d5fa35571df2bc1623"; + sha256 = "0yi94bsr3yja619lrh9npsqrzvbk2207j3wnzdvidbbb1nix2dsd"; }; meta.homepage = "https://github.com/HakonHarnes/img-clip.nvim/"; }; @@ -5136,12 +5136,12 @@ final: prev: indent-blankline-nvim = buildVimPlugin { pname = "indent-blankline.nvim"; - version = "2024-06-28"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "lukas-reineke"; repo = "indent-blankline.nvim"; - rev = "65e20ab94a26d0e14acac5049b8641336819dfc7"; - sha256 = "14v9mglm2zykylga0lzh9w1vcmxixya7xg2k4z4m6f4a3l21farx"; + rev = "18603eb949eba08300799f64027af11ef922283f"; + sha256 = "0jai4zh4xf9h981419k5k7dvvwkcippcyc6arfv06pqjy2b6xr77"; }; meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; }; @@ -5329,12 +5329,13 @@ final: prev: jinja-vim = buildVimPlugin { pname = "jinja.vim"; - version = "2024-06-24"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "HiPhish"; repo = "jinja.vim"; - rev = "ca97dafc82c012b3a9005a12a673d2cfa854376d"; - sha256 = "14g85r90860a4n7ggh29s1k6brgcyycm4j1ll4y7h872v8d5265p"; + rev = "d112541c062122969c6c0bc3df7e3cab3595c253"; + sha256 = "0xcvzjnhgwjw42mm0j5ikw2yqsm4w7ibgmkfxf61fn23npzjalf7"; + fetchSubmodules = true; }; meta.homepage = "https://github.com/HiPhish/jinja.vim/"; }; @@ -5402,12 +5403,12 @@ final: prev: kanagawa-nvim = buildVimPlugin { pname = "kanagawa.nvim"; - version = "2024-07-03"; + version = "2024-08-27"; src = fetchFromGitHub { owner = "rebelot"; repo = "kanagawa.nvim"; - rev = "e5f7b8a804360f0a48e40d0083a97193ee4fcc87"; - sha256 = "1066495w73a11kdpm8iah3k0pjf766ylf21jk8gjid73byl2lz0n"; + rev = "f491b0fe68fffbece7030181073dfe51f45cda81"; + sha256 = "0zfgynkk2jpdkdh30zjazb2i32d2h3iz7xg3v2aviqfg4dcazqjj"; }; meta.homepage = "https://github.com/rebelot/kanagawa.nvim/"; }; @@ -5510,24 +5511,24 @@ final: prev: lazy-lsp-nvim = buildVimPlugin { pname = "lazy-lsp.nvim"; - version = "2024-06-26"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "dundalek"; repo = "lazy-lsp.nvim"; - rev = "3ce514080931ca6c35036dd9f90da879e9ab3204"; - sha256 = "1jfkvhlr70d8c6m413r74q4qi1kwk9ll5n48scrqk4fvpsgx8777"; + rev = "7c613c1a31262dd912300060f9887eed87048dc5"; + sha256 = "0j4256mz0zxbbz01qwzick4f0wakx58pv5d3wf7bpgk1fscylb9k"; }; meta.homepage = "https://github.com/dundalek/lazy-lsp.nvim/"; }; lazy-nvim = buildVimPlugin { pname = "lazy.nvim"; - version = "2024-07-25"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "folke"; repo = "lazy.nvim"; - rev = "077102c5bfc578693f12377846d427f49bc50076"; - sha256 = "0yj0z62cr5ddzdl4ba2ppj1j102qfx1qfbwbh1z84p8x0zn6ppj5"; + rev = "48b52b5cfcf8f88ed0aff8fde573a5cc20b1306d"; + sha256 = "1rwhgm71qa2wn4iighxn5i76zv6p2hqdjfw989algihymw560i58"; }; meta.homepage = "https://github.com/folke/lazy.nvim/"; }; @@ -5546,24 +5547,24 @@ final: prev: lazygit-nvim = buildVimPlugin { pname = "lazygit.nvim"; - version = "2024-07-08"; + version = "2024-08-10"; src = fetchFromGitHub { owner = "kdheepak"; repo = "lazygit.nvim"; - rev = "dc56df433bfbf107fee0139e187eb9750878fa84"; - sha256 = "0wvbr14yv4bgb91zns60rcb6r4fl97jdhqsx8flwq3naqj5qayq6"; + rev = "2432b447483f42ff2e18b2d392cb2bb27e495c08"; + sha256 = "0mwx0vdsid6crzwv30wayhw2qszynr6xyrmkbpxik26ghgwcpzb0"; }; meta.homepage = "https://github.com/kdheepak/lazygit.nvim/"; }; lean-nvim = buildVimPlugin { pname = "lean.nvim"; - version = "2024-08-04"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "Julian"; repo = "lean.nvim"; - rev = "539a4f5944edb58ed3fbf72416396fd4014fbd3c"; - sha256 = "1qqhg570sbwcfbxaax89r608rgqdvi4jpi96mjlhrwxqmhlgxxvf"; + rev = "47578d6a4008f4bf09803fa7bc0a4152f60ed62f"; + sha256 = "18l0xryljwq83gllasbf3d0cnayh27ga7bh2h9i2f35sbl9bri6z"; }; meta.homepage = "https://github.com/Julian/lean.nvim/"; }; @@ -5606,12 +5607,12 @@ final: prev: legendary-nvim = buildVimPlugin { pname = "legendary.nvim"; - version = "2024-08-02"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "mrjones2014"; repo = "legendary.nvim"; - rev = "c89be94fe96dc5eaba67ad9371263bc1eac75044"; - sha256 = "1mq197p33ywp9cz2h38zx37nmgnqa0azz7c0c2s7n6mjxr6ych8h"; + rev = "1d6f4447da56f254c02550ebcb41955c0c1df795"; + sha256 = "1isr8n56y1lrkq2zdi8zcv4ydd60ixpixwz8zjqb9wcf1v8f5xj7"; }; meta.homepage = "https://github.com/mrjones2014/legendary.nvim/"; }; @@ -5666,24 +5667,24 @@ final: prev: lh-brackets = buildVimPlugin { pname = "lh-brackets"; - version = "2024-06-23"; + version = "2024-08-29"; src = fetchFromGitHub { owner = "LucHermitte"; repo = "lh-brackets"; - rev = "e7852490097ed1bb2ea95fb08fd0fdc4d2a7ef20"; - sha256 = "1gg5hxss85bcsjrfqamiir571c8xqs03rqaiigfhbs7lhp2l7ffd"; + rev = "40af9b67424003a03e8384eab81256bfe535db0b"; + sha256 = "0sbxvmdrhjc85srl98gzn1gwllnjy8q50w5ryj49c94s9l2pj54l"; }; meta.homepage = "https://github.com/LucHermitte/lh-brackets/"; }; lh-vim-lib = buildVimPlugin { pname = "lh-vim-lib"; - version = "2024-02-28"; + version = "2024-08-18"; src = fetchFromGitHub { owner = "LucHermitte"; repo = "lh-vim-lib"; - rev = "612538b5dede34e1b4e1a152b6b50516ef658ae5"; - sha256 = "05d2n4hq7xfsw88abbi3b60407rxaf04za85zainw2xr2gvw4zsa"; + rev = "db1c7b4261be24a79f62dc22c8061b8bdd9f2333"; + sha256 = "1vfphkvkfydw69hp7rhm7h3nm2na75cq4vrlk8qxxqphxn51g9jr"; }; meta.homepage = "https://github.com/LucHermitte/lh-vim-lib/"; }; @@ -5810,12 +5811,12 @@ final: prev: litee-calltree-nvim = buildVimPlugin { pname = "litee-calltree.nvim"; - version = "2024-04-02"; + version = "2024-09-05"; src = fetchFromGitHub { owner = "ldelossa"; repo = "litee-calltree.nvim"; - rev = "3908f52f2e69438cdeca32771d449f8ef3ee3bcc"; - sha256 = "1x1100r11k0g0nkc6a2l1hsjciav5df6k9qv8bxj051wkwawzg0g"; + rev = "89fd050e782328196520f5f1c0be85b25b065779"; + sha256 = "0l8mqz3jwr7mn1ij40vvpw0ng2h3bmahnxwg9v9v0f84wbp3813v"; }; meta.homepage = "https://github.com/ldelossa/litee-calltree.nvim/"; }; @@ -5858,12 +5859,12 @@ final: prev: live-command-nvim = buildVimPlugin { pname = "live-command.nvim"; - version = "2023-06-05"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "smjonas"; repo = "live-command.nvim"; - rev = "d460067d47948725a6f25b20f31ea8bbfdfe4622"; - sha256 = "0l7g7yjx4hz35nnz04k7qpjkd9z1rrp2n047p2k7zifjihiqbf3v"; + rev = "79f89a2e3472e69fe00d4df50605e323d30f2d09"; + sha256 = "0716nd7fwfx83s8j5jgfqk93sjnb294ndy13bk37k9sqlq1bxsvk"; }; meta.homepage = "https://github.com/smjonas/live-command.nvim/"; }; @@ -5894,12 +5895,12 @@ final: prev: lsp-format-nvim = buildVimPlugin { pname = "lsp-format.nvim"; - version = "2024-08-05"; + version = "2024-08-29"; src = fetchFromGitHub { owner = "lukas-reineke"; repo = "lsp-format.nvim"; - rev = "0d1b6e3317ff64719e8e6a4f534eebeddae70582"; - sha256 = "01g3xqn981k20a9qa2jz89vkj55hagzd75avq5zs8c0jzdlm1g2f"; + rev = "47de35b54ec95bb049f52016632394b914d4d9e9"; + sha256 = "1mvdgsbx1qls0iks87k9d7xrz2p06sc1vz8rz8q64s0gvfpc5n67"; }; meta.homepage = "https://github.com/lukas-reineke/lsp-format.nvim/"; }; @@ -6025,12 +6026,12 @@ final: prev: lspsaga-nvim = buildVimPlugin { pname = "lspsaga.nvim"; - version = "2024-08-04"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "nvimdev"; repo = "lspsaga.nvim"; - rev = "a751b92b5d765a99fe3a42b9e51c046f81385e15"; - sha256 = "0k112zrw3zjxx9m8pcpmv644vl25sv0mpa4hjx75q76i53yyhz54"; + rev = "e64351d0e6335eadf089aa2b9f17221e54ca10a4"; + sha256 = "0n8jmfg7rg23skdd4qlqyx78acww6ahskd3j6l5k2lvh5jlxjc4r"; }; meta.homepage = "https://github.com/nvimdev/lspsaga.nvim/"; }; @@ -6061,24 +6062,24 @@ final: prev: lualine-nvim = buildVimPlugin { pname = "lualine.nvim"; - version = "2024-07-15"; + version = "2024-08-12"; src = fetchFromGitHub { owner = "nvim-lualine"; repo = "lualine.nvim"; - rev = "544dd1583f9bb27b393f598475c89809c4d5e86b"; - sha256 = "0a7m6g7gzsxzgs4vhsfsznvdx06n6zqjmi9h1z1zbvdcfp5d3l5q"; + rev = "b431d228b7bbcdaea818bdc3e25b8cdbe861f056"; + sha256 = "1q8f0vl60hllxkmmras05cliklzqvi3yrb9rhamrr4cgvsdvnac0"; }; meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/"; }; luasnip = buildNeovimPlugin { pname = "luasnip"; - version = "2024-08-01"; + version = "2024-08-28"; src = fetchFromGitHub { owner = "l3mon4d3"; repo = "luasnip"; - rev = "7552e6504ee95a9c8cfc6db53e389122ded46cd4"; - sha256 = "12gf4q7nmw0psj8m2hx55a0nlxafzvlabf9g4644ay1p74hj07ij"; + rev = "45db5addf8d0a201e1cf247cae4cdce605ad3768"; + sha256 = "1lkh9lqs4k8m1s8nhwhilnmp1jmchq9asywvrsjaq8fjkbnnh8gr"; fetchSubmodules = true; }; meta.homepage = "https://github.com/l3mon4d3/luasnip/"; @@ -6098,12 +6099,12 @@ final: prev: lush-nvim = buildNeovimPlugin { pname = "lush.nvim"; - version = "2024-07-26"; + version = "2024-08-16"; src = fetchFromGitHub { owner = "rktjmp"; repo = "lush.nvim"; - rev = "6a254139d077ad53be7e4f3602c8da0c84447fd9"; - sha256 = "0skbhprgxc8mpny0gc6c97gz9ng65y6kcqv4qr1lnil9lpgnpsw2"; + rev = "45a79ec4acb5af783a6a29673a999ce37f00497e"; + sha256 = "0ac93sdhsi41hpwpshffpkvj5c3kklflsy0pln77743x69g05rcr"; }; meta.homepage = "https://github.com/rktjmp/lush.nvim/"; }; @@ -6194,24 +6195,24 @@ final: prev: marks-nvim = buildVimPlugin { pname = "marks.nvim"; - version = "2024-01-07"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "chentoast"; repo = "marks.nvim"; - rev = "74e8d01b2a2131b6e46354cffc553aa7f81bcf5b"; - sha256 = "0hi4sp39gxj62swm325a5s25qv310wxj9amkdghdqmrg6nlcwyz2"; + rev = "bb25ae3f65f504379e3d08c8a02560b76eaf91e8"; + sha256 = "0hf2w5js47sa67f23pkcgkgz4m1x96fwh460zs95sqk1yn9a2zfm"; }; meta.homepage = "https://github.com/chentoast/marks.nvim/"; }; markview-nvim = buildVimPlugin { pname = "markview.nvim"; - version = "2024-07-31"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "OXY2DEV"; repo = "markview.nvim"; - rev = "d0ccc97b5c988fb28e5033abdf7b832b9dfaf897"; - sha256 = "0mln2ll82gkw0icswgf6ya5g6ndr4d1cn0lfx06gz00xp0h1fh2p"; + rev = "f16486e49561740f33b6773df43c9bc2c3c34c7b"; + sha256 = "1249agw6vfd2p3d3h5lm2ipyif3mgvmmzgix6mz08pipmvq2spx7"; fetchSubmodules = true; }; meta.homepage = "https://github.com/OXY2DEV/markview.nvim/"; @@ -6219,12 +6220,12 @@ final: prev: mason-lspconfig-nvim = buildVimPlugin { pname = "mason-lspconfig.nvim"; - version = "2024-08-04"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "williamboman"; repo = "mason-lspconfig.nvim"; - rev = "62360f061d45177dda8afc1b0fd1327328540301"; - sha256 = "0q722qxwcsvs6bp5f3hvagsdz71l2ffd5g9yhsjjqy452lqynjai"; + rev = "25c11854aa25558ee6c03432edfa0df0217324be"; + sha256 = "0wqbb6a6p5iq7h47snbcbrh1x7nqf9v959a2zq08pw5b9f7qclal"; }; meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; }; @@ -6267,12 +6268,12 @@ final: prev: material-nvim = buildVimPlugin { pname = "material.nvim"; - version = "2024-06-26"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "marko-cerovac"; repo = "material.nvim"; - rev = "b5d0ff3ad37ba00cea3dc3dce0b0f555b481c6f4"; - sha256 = "1vlv9n8hy7lcjz3xa48pry9by41pfjv73vyjinyj91bjs7x4ln7p"; + rev = "ac8f02e97e359b7d258c0a00ec0949fe880790ad"; + sha256 = "1yjgl6rbcb90vghs3wq5rifws7n0caq12l3qfqxc7q2c8ap36ym6"; }; meta.homepage = "https://github.com/marko-cerovac/material.nvim/"; }; @@ -6315,12 +6316,12 @@ final: prev: melange-nvim = buildVimPlugin { pname = "melange-nvim"; - version = "2024-06-29"; + version = "2024-08-27"; src = fetchFromGitHub { owner = "savq"; repo = "melange-nvim"; - rev = "f626d41b9110e6ab853538d8b939979a0f1adfeb"; - sha256 = "19xak308004015avjarqdrmwwwfkyam72kjav7g7v8pg27rqckzr"; + rev = "36d02139979f840a170de8c19a72beaae2ef1741"; + sha256 = "0dmn5cy5p967kj5vkqc7cxflz5dfhw35hirs3pil04wqns43khh5"; }; meta.homepage = "https://github.com/savq/melange-nvim/"; }; @@ -6339,12 +6340,12 @@ final: prev: miasma-nvim = buildVimPlugin { pname = "miasma.nvim"; - version = "2023-10-24"; + version = "2024-08-23"; src = fetchFromGitHub { owner = "xero"; repo = "miasma.nvim"; - rev = "c672feec07d4e77ac485ee58e3432a96ebe51953"; - sha256 = "187d35g6s53rs7zi3p8c4d8sy23qdpzy22i2vmr8apzgc2hirvx7"; + rev = "37818b190e291c75a2d78118dc7dd8d69d311a8c"; + sha256 = "12ng6y9c9a35gr2ak3fhwgxial53ryhkaspvby30kz31vr6p0a9m"; }; meta.homepage = "https://github.com/xero/miasma.nvim/"; }; @@ -6375,12 +6376,12 @@ final: prev: mini-nvim = buildVimPlugin { pname = "mini.nvim"; - version = "2024-08-04"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "echasnovski"; repo = "mini.nvim"; - rev = "af673d8523c5c2c5ff0a53b1e42a296ca358dcc7"; - sha256 = "0rky24war90avndgm9fji0f20d24bgyc3s1spgw5lw443wh9vizl"; + rev = "f0d6e89515c6b055c20d257da717bd30211532f1"; + sha256 = "0g10yf5xvqf1i40d9hl0698bfm901x3hs82lkl5wnzahb5vv5kpn"; }; meta.homepage = "https://github.com/echasnovski/mini.nvim/"; }; @@ -6411,12 +6412,12 @@ final: prev: mkdnflow-nvim = buildVimPlugin { pname = "mkdnflow.nvim"; - version = "2024-07-29"; + version = "2024-08-25"; src = fetchFromGitHub { owner = "jakewvincent"; repo = "mkdnflow.nvim"; - rev = "faf013f7ee254f52b88f57b088f650150409cb24"; - sha256 = "0s5yxgr2xsr7n25fh588g6hr83ps5b53blg88156lxg5rjkj460i"; + rev = "d459bd7ce68910272038ed037c028180161fd14d"; + sha256 = "1z41pb80dikww4mzvvjcdw97z9mk6x90r7k1pawp842lkkkjj658"; }; meta.homepage = "https://github.com/jakewvincent/mkdnflow.nvim/"; }; @@ -6471,12 +6472,12 @@ final: prev: molten-nvim = buildVimPlugin { pname = "molten-nvim"; - version = "2024-07-12"; + version = "2024-09-04"; src = fetchFromGitHub { owner = "benlubas"; repo = "molten-nvim"; - rev = "eb6d0fe33e14989b0f1fbe25d9732889ee57bd1a"; - sha256 = "0prm7i4fl5lbfgdk9s9n9sn05a0hrbfdjgb5g393hjjkid8f4haf"; + rev = "2423411a3e8076f832613efe65318f259353dab4"; + sha256 = "0ivak64qiag3yar7mx62lniq7h6ivf0rbqh3b3ahd7sw9cxj410s"; }; meta.homepage = "https://github.com/benlubas/molten-nvim/"; }; @@ -6519,12 +6520,12 @@ final: prev: multicursors-nvim = buildVimPlugin { pname = "multicursors.nvim"; - version = "2024-06-25"; + version = "2024-08-08"; src = fetchFromGitHub { owner = "smoka7"; repo = "multicursors.nvim"; - rev = "782820896b1691ed664e4c24f1cd9793dcb33dfb"; - sha256 = "171aysqsyapw434xkibxv69p5fkwha4addkqfdssdm0wq9n9cm4q"; + rev = "562809aaf203b4c65482a75199166d360f2b9298"; + sha256 = "1jxjksd341gs64kvsac0ir9n7idhfvy69s3nx0agpm3i0hzlm4dp"; }; meta.homepage = "https://github.com/smoka7/multicursors.nvim/"; }; @@ -6783,12 +6784,12 @@ final: prev: neo-tree-nvim = buildVimPlugin { pname = "neo-tree.nvim"; - version = "2024-06-11"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "nvim-neo-tree"; repo = "neo-tree.nvim"; - rev = "206241e451c12f78969ff5ae53af45616ffc9b72"; - sha256 = "17l55gbsls8s2hp7a3hrmqzsclq9ckgc76ii8kpc6an0910axlbq"; + rev = "0774fa2085c62a147fcc7b56f0ac37053cc80217"; + sha256 = "0nfvn07xsn19mhylfgr4irg1h6cdiwcihjs4jqgfa0ziklmigcx4"; }; meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; }; @@ -6807,12 +6808,12 @@ final: prev: neoconf-nvim = buildVimPlugin { pname = "neoconf.nvim"; - version = "2024-08-05"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "folke"; repo = "neoconf.nvim"; - rev = "17a3367bc4751859cd50e05f38fea0b7a4b7ed42"; - sha256 = "1vrqiz4cy2fzx61js80dz1ns2lxfm927wmybi613azrxkhz7jy66"; + rev = "206f6c0d96ff7ca1698e17cfe84d5b531050282e"; + sha256 = "0651cxpfggdprvmf95wjx4qqvhlm7wikxpbxsfmx7b3warcpjf3z"; }; meta.homepage = "https://github.com/folke/neoconf.nvim/"; }; @@ -6867,24 +6868,24 @@ final: prev: neogen = buildVimPlugin { pname = "neogen"; - version = "2024-08-02"; + version = "2024-08-22"; src = fetchFromGitHub { owner = "danymat"; repo = "neogen"; - rev = "4b22542b96712a5a901fa909b7dc749251ae1625"; - sha256 = "1258d2qqnf0qc07fj18601wfanwccpb8jmvz8nv3vw5fn6pj0l76"; + rev = "e932ba918b56723436b77aa3efb844a11b2851ab"; + sha256 = "1mwa20fvj6k7jzaw0lv0h2b9hr62i48i487mrxqf2nnwxiad7xfk"; }; meta.homepage = "https://github.com/danymat/neogen/"; }; neogit = buildVimPlugin { pname = "neogit"; - version = "2024-07-23"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "NeogitOrg"; repo = "neogit"; - rev = "2b74a777b963dfdeeabfabf84d5ba611666adab4"; - sha256 = "1kbzw9z83rh210r7kgx9r6q0phji539zvrdj963g4gf438nrplib"; + rev = "eb5b156a41fb7147eed9f971504dfa8753d8b006"; + sha256 = "0d5mbv36qkfxhq1lbiz5cwba39pxk0z7bzpbvfh0nggjnw1wws1a"; }; meta.homepage = "https://github.com/NeogitOrg/neogit/"; }; @@ -6951,12 +6952,12 @@ final: prev: neorg = buildVimPlugin { pname = "neorg"; - version = "2024-07-28"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "nvim-neorg"; repo = "neorg"; - rev = "e5e797e6eddcb6efb1d2c3fc2612b31ad9a76cef"; - sha256 = "0439h307zphrz67s3mvcjwk2ixn1vrxas62lrcp2v07w8gln59m1"; + rev = "ba35900b21921c439e676b063a79c8fad914eac9"; + sha256 = "12sgvf7zbabxvmdf07cv8rcql6jdgdv5xdcn7v5w42q8lg9mps10"; }; meta.homepage = "https://github.com/nvim-neorg/neorg/"; }; @@ -6975,12 +6976,12 @@ final: prev: neoscroll-nvim = buildVimPlugin { pname = "neoscroll.nvim"; - version = "2024-08-01"; + version = "2024-09-07"; src = fetchFromGitHub { owner = "karb94"; repo = "neoscroll.nvim"; - rev = "532dcc8cea4287c4cad6bb77532989a8217cfc7b"; - sha256 = "1kcy17jccbhc4ha81fcxcch60hdlwzywd88ghx8r0j18m2wngb95"; + rev = "4e0428a41c6ec191df543fc95349f6e1c598e53f"; + sha256 = "19aw68ci0wx0alv8w9j6qn4zj6s1bbf737xa4jbsxkhkwczm5689"; }; meta.homepage = "https://github.com/karb94/neoscroll.nvim/"; }; @@ -7023,12 +7024,12 @@ final: prev: neotest = buildNeovimPlugin { pname = "neotest"; - version = "2024-07-13"; + version = "2024-08-26"; src = fetchFromGitHub { owner = "nvim-neotest"; repo = "neotest"; - rev = "32ff2ac21135a372a42b38ae131e531e64833bd3"; - sha256 = "144wzzadhrg48fkihffk6jf9c0ij8dg9gng6mcxq5z8mdcvz0124"; + rev = "6d6ad113f56edc7c3f2a77a0836ea8c1b955ebea"; + sha256 = "1v8y7jpwb0a6w5gcr6r17zcgrvdqs7y396c67xxpz5f2bibxzbxr"; }; meta.homepage = "https://github.com/nvim-neotest/neotest/"; }; @@ -7121,12 +7122,12 @@ final: prev: neotest-golang = buildVimPlugin { pname = "neotest-golang"; - version = "2024-08-01"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "fredrikaverpil"; repo = "neotest-golang"; - rev = "f71d2494726c529c5d5c43813b24b3dd91ade981"; - sha256 = "04k5g7m1vab11362grl1c755zkdw16xz92dpl4a39h5py6wgfzp3"; + rev = "3a258b6e58ada91f8af95b445b6156c2290d0e06"; + sha256 = "1gjxmg8xaybxbq4z3dl2mwna9k75kmgzl8c79aa4290acpkz277r"; }; meta.homepage = "https://github.com/fredrikaverpil/neotest-golang/"; }; @@ -7158,24 +7159,24 @@ final: prev: neotest-haskell = buildVimPlugin { pname = "neotest-haskell"; - version = "2024-08-04"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "MrcJkb"; repo = "neotest-haskell"; - rev = "dc8884ba9ed12433f4d2f13a6cc127a6339b4825"; - sha256 = "1mkw66jwlqiyzf971ygxks0r9zlddqfjfw5v5vyr1qvbfs049mm2"; + rev = "ae2576dfef2035506b3d3339d676b306f1c03092"; + sha256 = "0s5n1vqzsfs6sr141ybhi09349p0xz1d6cgyg93xlqpbir36f9ip"; }; meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; }; neotest-java = buildVimPlugin { pname = "neotest-java"; - version = "2024-07-11"; + version = "2024-09-07"; src = fetchFromGitHub { owner = "rcasia"; repo = "neotest-java"; - rev = "b48bd1621b532106ab8d1ba18e8a7bda4463ccc6"; - sha256 = "1biqiv7l8p8ml0fslwpwrb7h2lfjh1h5dj3dw9ns27kzmd7f92i1"; + rev = "f3532b86371f4bfa2bdfc90f5666faa65d7efb04"; + sha256 = "0n0115z2sbjac34f251a0q1k8d180w9rvcbqspl19va5z975i9vb"; }; meta.homepage = "https://github.com/rcasia/neotest-java/"; }; @@ -7194,12 +7195,12 @@ final: prev: neotest-minitest = buildVimPlugin { pname = "neotest-minitest"; - version = "2024-04-29"; + version = "2024-08-05"; src = fetchFromGitHub { owner = "zidhuss"; repo = "neotest-minitest"; - rev = "0543bf4e997b2c970707cb297e2f74c438eb0653"; - sha256 = "053j4xm84i5z2a2qpka7vgq462928mg81gwkwvr2jbxjm4h4sk2r"; + rev = "bec6bb22e2f74ae56669b0c16ba38237dcd2febf"; + sha256 = "1435ffq3zm1gqxx08yxgqg37cd9c2rlc8xjs6j4jw8v873xw06z3"; }; meta.homepage = "https://github.com/zidhuss/neotest-minitest/"; }; @@ -7242,36 +7243,36 @@ final: prev: neotest-plenary = buildVimPlugin { pname = "neotest-plenary"; - version = "2023-09-29"; + version = "2024-08-09"; src = fetchFromGitHub { owner = "nvim-neotest"; repo = "neotest-plenary"; - rev = "dcaf5ed67a9e28a246e9783319e5aa6c9ea1c584"; - sha256 = "01dg3n3bnhc1ppai24syq48n5xkm1a3vm731xrah2y0qi390q0l3"; + rev = "2cc925246d7e5324ddf9585fad891cec73c3947b"; + sha256 = "10466mg8mxqc95qz0q47h8qy0lrkn6qgcw5ccmmd6g4cls3rg7gn"; }; meta.homepage = "https://github.com/nvim-neotest/neotest-plenary/"; }; neotest-python = buildVimPlugin { pname = "neotest-python"; - version = "2024-01-15"; + version = "2024-08-19"; src = fetchFromGitHub { owner = "nvim-neotest"; repo = "neotest-python"; - rev = "2e83d2bc00acbcc1fd529dbf0a0e677cabfe6b50"; - sha256 = "1xpd08mrw7jlgl7ciph9nxni98pa6x27va7ys7xapkkzc1bym1r2"; + rev = "72603dfdbaad5695160268cb10531a14cc37236e"; + sha256 = "1d8rcpvgr4x2p3bg37kzsnfydibhb7rpyqb10sgxsjz0ylgmv7jr"; }; meta.homepage = "https://github.com/nvim-neotest/neotest-python/"; }; neotest-rspec = buildVimPlugin { pname = "neotest-rspec"; - version = "2024-05-15"; + version = "2024-08-05"; src = fetchFromGitHub { owner = "olimorris"; repo = "neotest-rspec"; - rev = "48573d5882cbe8d8bcd3b735d9ee7705168b1b87"; - sha256 = "00l3v77d3zgq47gbsgjl916yp735kyr9s0jizi1sr5yg7wypx2cx"; + rev = "53fc108a06ae43d7f873d42ee5189c2301e33623"; + sha256 = "0z8vh5miw3ysn4y45i4ckyc7s1k104l4m4yrpf7rx2wbd5gmkshw"; }; meta.homepage = "https://github.com/olimorris/neotest-rspec/"; }; @@ -7314,36 +7315,36 @@ final: prev: neotest-vitest = buildVimPlugin { pname = "neotest-vitest"; - version = "2024-06-22"; + version = "2024-08-23"; src = fetchFromGitHub { owner = "marilari88"; repo = "neotest-vitest"; - rev = "353364aa05b94b09409cbef21b79c97c5564e2ce"; - sha256 = "1sv5i68pc24zl1gbqa94gy5wccaii2glx0bgkincpyhfycf2ydz0"; + rev = "9e30dca989a2287cf3fde86b3e138ea7fa4de935"; + sha256 = "16l4i6jh8y2563062k2n5xcj4lxs9cyb2z8xvzb63il5n526mivi"; }; meta.homepage = "https://github.com/marilari88/neotest-vitest/"; }; neotest-zig = buildVimPlugin { pname = "neotest-zig"; - version = "2024-07-28"; + version = "2024-09-05"; src = fetchFromGitHub { owner = "lawrence-laz"; repo = "neotest-zig"; - rev = "b3e6246c07d3d4f06075f33aea896affd25f0de9"; - sha256 = "0v75jp4rr35fnm4ksdgskpdvjay86y28c5ibbfjckn4zajf7w8nz"; + rev = "fc160b277126cb21a1486d48fc298d06803c3f88"; + sha256 = "0xwzib7lf3n5v1a09rnwwl6ibd61kl33ppn13c0smzpkgnybi0wp"; }; meta.homepage = "https://github.com/lawrence-laz/neotest-zig/"; }; neovim-ayu = buildVimPlugin { pname = "neovim-ayu"; - version = "2024-07-24"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "Shatur"; repo = "neovim-ayu"; - rev = "6993189dd0ee38299879a1a0064718a8392e8713"; - sha256 = "1fj0k6fkyk73jdjps8660nsvplwj2wasf302rbwbpbzmdvw46q6v"; + rev = "2839c88cd297a069e93df1aab542c087e8f6e8c0"; + sha256 = "1jzr8zfxblr92ipz0b02nvh7q44yba8f64c2lkq5qfn49cqx9lwh"; }; meta.homepage = "https://github.com/Shatur/neovim-ayu/"; }; @@ -7386,12 +7387,12 @@ final: prev: nerdcommenter = buildVimPlugin { pname = "nerdcommenter"; - version = "2024-05-13"; + version = "2024-08-08"; src = fetchFromGitHub { owner = "preservim"; repo = "nerdcommenter"; - rev = "7bb1f72e802a80e37bdda5f6906c69b5a93de1eb"; - sha256 = "0rjgriqfkikcbsns1ridd5kx3msaak2632zng8jajxlslbcga1r3"; + rev = "3f860f2d981547c18f2c9599e3c358ea488c3be4"; + sha256 = "0z5fbzyfplljjbzsj84xp323b0hgiz5asizgsny9kjzx0b4m96ns"; }; meta.homepage = "https://github.com/preservim/nerdcommenter/"; }; @@ -7434,12 +7435,12 @@ final: prev: netrw-nvim = buildVimPlugin { pname = "netrw.nvim"; - version = "2024-03-12"; + version = "2024-07-23"; src = fetchFromGitHub { owner = "prichrd"; repo = "netrw.nvim"; - rev = "c64f60b8a613900aad82ef1c285b892eb43e9e15"; - sha256 = "1ng0lm2774ghgq9lk2104s6qy21qgwzz2pqkvd706b34vckbb2q3"; + rev = "90501c62b9b816ed3ed1e912ae9db9af5671a1b2"; + sha256 = "1m8pnhy9si734k0i95fyn0yn4swwmavpj1s22qp2ss75djibwhxl"; }; meta.homepage = "https://github.com/prichrd/netrw.nvim/"; }; @@ -7470,12 +7471,12 @@ final: prev: nfnl = buildVimPlugin { pname = "nfnl"; - version = "2024-07-26"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "Olical"; repo = "nfnl"; - rev = "608d39bb102e6bdda76ee450b042f74668184ad7"; - sha256 = "07k0z08gq7pyadqxh2lwk3zgvxwnr7m4mgag9z2ys25449c18qkp"; + rev = "08f72f1ac63872756fe0f1d939037261325aa2d1"; + sha256 = "0f31j0pk54ch0zz8lkbxfh1jy859y8wq1nvyx9x80xkccw6s9z5h"; }; meta.homepage = "https://github.com/Olical/nfnl/"; }; @@ -7494,24 +7495,24 @@ final: prev: night-owl-nvim = buildVimPlugin { pname = "night-owl.nvim"; - version = "2024-06-26"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "oxfist"; repo = "night-owl.nvim"; - rev = "131641a516085c5b3cacc8022581902e9f2f14af"; - sha256 = "1ni6213wixgfbg8cq2w4p0nfl5rhmrwvxhyifmvwf4x37lkhsx4l"; + rev = "1bce99a52c78b94e1a38987001d3166858271cbe"; + sha256 = "1jq6h69amqwf2vkl5r8bk2yys01s877a9j36pi4xjh5f015lj7sf"; }; meta.homepage = "https://github.com/oxfist/night-owl.nvim/"; }; nightfox-nvim = buildVimPlugin { pname = "nightfox.nvim"; - version = "2024-07-22"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "EdenEast"; repo = "nightfox.nvim"; - rev = "d3e8b1acc095baf57af81bb5e89fe7c4359eb619"; - sha256 = "0z81af970w1rllh2abdvlyx63z4xkcf5jw3wy4xv99gvqa1fxryr"; + rev = "7557f26defd093c4e9bc17f28b08403f706f5a44"; + sha256 = "14hzq2mvhl79121zqqy163sy9128ifcjlk0xnjc12yf6azfc4lbx"; }; meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; }; @@ -7554,12 +7555,12 @@ final: prev: nlsp-settings-nvim = buildVimPlugin { pname = "nlsp-settings.nvim"; - version = "2024-08-04"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "tamago324"; repo = "nlsp-settings.nvim"; - rev = "4ba23d18fb321f45700025945f159d2fe06506b4"; - sha256 = "16n286r7l9j5kwz8cp50xvxch72w2jfi09sw91gy4djdf1qh7v0p"; + rev = "3af82e912f5080933387fb625487590598af4759"; + sha256 = "1jnq1428d5l9xb0ccyhb5vr9pr5ahda2hj3cjl03p938826aymkv"; }; meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; }; @@ -7578,24 +7579,24 @@ final: prev: no-clown-fiesta-nvim = buildVimPlugin { pname = "no-clown-fiesta.nvim"; - version = "2024-07-22"; + version = "2024-08-30"; src = fetchFromGitHub { owner = "aktersnurra"; repo = "no-clown-fiesta.nvim"; - rev = "b63937a5ebba1ece32f56256c46d166e62aca7fc"; - sha256 = "07h118j4y34bb8hpljrd9n6v2iz0n0vp8ijy2vfpkm4jnm1bh02b"; + rev = "2c8f0521ea76564377c8f9b635ba098e9a56f8cb"; + sha256 = "1hviblsmsxi69wxvn58g80hviphx073nsm4yb5m1pqp7aw5qj2am"; }; meta.homepage = "https://github.com/aktersnurra/no-clown-fiesta.nvim/"; }; no-neck-pain-nvim = buildVimPlugin { pname = "no-neck-pain.nvim"; - version = "2024-06-26"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "shortcuts"; repo = "no-neck-pain.nvim"; - rev = "ecc584150f5c8a2a82f2e1d43201df0f65c63d0e"; - sha256 = "1rxj6sq1v0j0q4cj4js2xb3c36m38xgiqsr6bgyc6ri7xz8zxayx"; + rev = "4b6f0a2c7ad4f2200d59f3d5785aeda96a38e4ff"; + sha256 = "120sha9pg7pbimz4nndm28fb5vb8qwa6fmlznsvm5v220yj2j0yv"; }; meta.homepage = "https://github.com/shortcuts/no-neck-pain.nvim/"; }; @@ -7626,12 +7627,12 @@ final: prev: none-ls-nvim = buildVimPlugin { pname = "none-ls.nvim"; - version = "2024-07-28"; + version = "2024-09-01"; src = fetchFromGitHub { owner = "nvimtools"; repo = "none-ls.nvim"; - rev = "cfa65d86e21eeb60544d5e823f6db43941322a53"; - sha256 = "1hdlrgvllsqhmdd2wnmr529pz1vq1cd6jayp7zfxk8hik154q3v4"; + rev = "9b98991e15dce8fc502993e23caac2528b8b667f"; + sha256 = "0lllsjn4vmyn563mg6sygybq1knvymjwjjg1az7kr2zi7i2q3gbh"; }; meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; }; @@ -7722,12 +7723,12 @@ final: prev: nvchad = buildVimPlugin { pname = "nvchad"; - version = "2024-08-01"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "nvchad"; repo = "nvchad"; - rev = "c40c5116c4c091f4da620abcd9c58bd5ee4b8497"; - sha256 = "1wry827rk2j5kj8a2mch9dqcb4ky0ggh5x3n76yg96p8mxgglypi"; + rev = "0e61fb765632508edf28a166ea8c6f1573d3069d"; + sha256 = "0f9ljhd82dypb9m0ddihyq9j378yfr5ky0vwzf5ymzfgyyn816y9"; }; meta.homepage = "https://github.com/nvchad/nvchad/"; }; @@ -7770,12 +7771,12 @@ final: prev: nvim-autopairs = buildVimPlugin { pname = "nvim-autopairs"; - version = "2024-07-23"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "windwp"; repo = "nvim-autopairs"; - rev = "e38c5d837e755ce186ae51d2c48e1b387c4425c6"; - sha256 = "16wm535ihr8gxngx6a5xj4phz6qjshxi4nrcx2ks4bmd815gdsnv"; + rev = "fd2badc24e675f947162a16c124d395bde80dbd6"; + sha256 = "06jzi0rdrvw24bm6zwxzqd2clml8k8zmdnqkbqx5vj30rzjchc48"; }; meta.homepage = "https://github.com/windwp/nvim-autopairs/"; }; @@ -7878,12 +7879,12 @@ final: prev: nvim-colorizer-lua = buildVimPlugin { pname = "nvim-colorizer.lua"; - version = "2024-07-24"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "nvchad"; repo = "nvim-colorizer.lua"; - rev = "194ec600488f7c7229668d0e80bd197f3a2b84ff"; - sha256 = "19142fnhvmdaasmxjgh9bksg6c5kq71w816zjzkfwdrpydqwh3j3"; + rev = "0671e0eabc6842676d3310370e8fae4e1c51d7f9"; + sha256 = "1ilxfiq76a7wzh4nvhds5b7k6q2shrnfmyb4icnfc8w0kx1vby0m"; }; meta.homepage = "https://github.com/nvchad/nvim-colorizer.lua/"; }; @@ -7962,60 +7963,72 @@ final: prev: nvim-dap = buildVimPlugin { pname = "nvim-dap"; - version = "2024-08-01"; + version = "2024-09-05"; src = fetchFromGitHub { owner = "mfussenegger"; repo = "nvim-dap"; - rev = "dcc85d12d6e2c18c5fa0f9a304d9f5e767e1401a"; - sha256 = "12bxs0dh6h1rkb45xb0cb7fccgm1an96yy28rcf2jddsfhgfzw32"; + rev = "20a4859ebde1c9bc8e96f8cc11a20667e7fdd516"; + sha256 = "1miq5m71j7x34y7ii1rfx3d75sai967chjrh8i7zyzal7hp0x0x7"; }; meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; }; nvim-dap-go = buildVimPlugin { pname = "nvim-dap-go"; - version = "2024-07-19"; + version = "2024-08-06"; src = fetchFromGitHub { owner = "leoluz"; repo = "nvim-dap-go"; - rev = "5030d53097fed7b75524a04048d8dbf417fa0140"; - sha256 = "1s1g9s2gyfy3s4xnrzd980qpjigzdf4l9dp11kzlk7h26h5mhmqr"; + rev = "5511788255c92bdd845f8d9690f88e2e0f0ff9f2"; + sha256 = "08gmabyn7d5scqjicpjkp7h55fb8s1vwi8zyfcf7iwzzrpanm12m"; }; meta.homepage = "https://github.com/leoluz/nvim-dap-go/"; }; nvim-dap-python = buildVimPlugin { pname = "nvim-dap-python"; - version = "2024-06-26"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "mfussenegger"; repo = "nvim-dap-python"; - rev = "d777c2b32ed39f61209c09bede28d7491621a631"; - sha256 = "1fsfnir1af847hmxgc6ca3hxqpnik9dv1s7ag28kzmvy0wj8clav"; + rev = "db72bf6ab9f75fe841e8e11e772ee7fef6f484f1"; + sha256 = "1m2bs71l4wdk6kippwkmsvw4978qcqh8lnkx7h9sa82l87wb76mp"; }; meta.homepage = "https://github.com/mfussenegger/nvim-dap-python/"; }; + nvim-dap-rr = buildVimPlugin { + pname = "nvim-dap-rr"; + version = "2024-07-10"; + src = fetchFromGitHub { + owner = "jonboh"; + repo = "nvim-dap-rr"; + rev = "1682c13a2096a4a6394c803e14f009f121400acf"; + sha256 = "sha256-QtOY6gg2grsxF6KTn75hZ+BZGWK2ahzVu9k2SIIFeJU="; + }; + meta.homepage = "https://github.com/jonboh/nvim-dap-rr/"; + }; + nvim-dap-ui = buildVimPlugin { pname = "nvim-dap-ui"; - version = "2024-07-13"; + version = "2024-08-26"; src = fetchFromGitHub { owner = "rcarriga"; repo = "nvim-dap-ui"; - rev = "a5606bc5958db86f8d92803bea7400ee26a8d7e4"; - sha256 = "1wwh70bj2798nyv5md1s2a1h3ayni8lajwzm6jby4ddx51x9fvi9"; + rev = "1c351e4e417d4691da12948b6ecf966936a56d28"; + sha256 = "0hg95ws4b6hrjgp28bccbyimmizyijd9li2vhh8axszn4m70nayv"; }; meta.homepage = "https://github.com/rcarriga/nvim-dap-ui/"; }; nvim-dap-virtual-text = buildVimPlugin { pname = "nvim-dap-virtual-text"; - version = "2024-07-02"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "theHamsta"; repo = "nvim-dap-virtual-text"; - rev = "484995d573c0f0563f6a66ebdd6c67b649489615"; - sha256 = "0p889jkyia04l4nhndmg4yl88mc10hf0fzgyyqj08ybzws5z9zgr"; + rev = "3497eb39bf413a57ab5b7e7e2e192683e462148c"; + sha256 = "1nv58ds5cxkbwcip1kd7s6kzhn0h33869qmkmjhn3ibykszhz0d4"; }; meta.homepage = "https://github.com/theHamsta/nvim-dap-virtual-text/"; }; @@ -8034,12 +8047,12 @@ final: prev: nvim-docs-view = buildVimPlugin { pname = "nvim-docs-view"; - version = "2024-01-20"; + version = "2024-08-16"; src = fetchFromGitHub { owner = "amrbashir"; repo = "nvim-docs-view"; - rev = "78d88bca16f32a430572758677f9246f6d7f7b94"; - sha256 = "1sqg4bh6xkq5d2rg97g2350iil9mcl4wh12ygbj93sj5m0jfp4rp"; + rev = "365593534e0acd762bfddce6e8313315ffa4fa36"; + sha256 = "0k6w26jc5c6lmb1022d5nvs0lmvh42zw7dgagfc6gvq3dchpfiza"; }; meta.homepage = "https://github.com/amrbashir/nvim-docs-view/"; }; @@ -8082,24 +8095,24 @@ final: prev: nvim-gdb = buildVimPlugin { pname = "nvim-gdb"; - version = "2024-04-23"; + version = "2024-08-12"; src = fetchFromGitHub { owner = "sakhnik"; repo = "nvim-gdb"; - rev = "9b149e6d215870e31a3712de93152c5b4febe23f"; - sha256 = "0rnihq0dz8n60cii5hpd00xam51k5m5jj7lx5s6y4sa7v7dl7amc"; + rev = "2ab24b3ea99ff8a66490a1bb53a730eb7fafc14d"; + sha256 = "0qp0h2qk9zclcy989mg0sjgmjrqxvxsvfhi8cn378iz66wslb003"; }; meta.homepage = "https://github.com/sakhnik/nvim-gdb/"; }; nvim-genghis = buildVimPlugin { pname = "nvim-genghis"; - version = "2024-07-27"; + version = "2024-08-17"; src = fetchFromGitHub { owner = "chrisgrieser"; repo = "nvim-genghis"; - rev = "8df00d9ec00e31a2280a3cfb795a30f85d1a5c2e"; - sha256 = "0synn533v1zy87gk8762p8j9hdica9jyg9rgmwamx5yd5zg8xgcb"; + rev = "382ddb90a31313f0b2e059db50df0ca4dd2859d2"; + sha256 = "0nr5bzqa4b6vv1zqx1a419s34iq403mgama9i2ik9vf8awyih9q9"; }; meta.homepage = "https://github.com/chrisgrieser/nvim-genghis/"; }; @@ -8130,12 +8143,12 @@ final: prev: nvim-highlite = buildVimPlugin { pname = "nvim-highlite"; - version = "2024-07-23"; + version = "2024-09-04"; src = fetchFromGitHub { owner = "Iron-E"; repo = "nvim-highlite"; - rev = "31f52d52a618aa16d2576da85992ee9b2d10babb"; - sha256 = "10hm4xv9kds9sxz9302mg6ik4dhsxfzvhwm0w2qqq0y8smrnjgy7"; + rev = "0dd4a4ab5892b02661ad18ceb9071428c3391a89"; + sha256 = "0rn2crlih3wmxpq0c0c9j1cksvlzn687wx8v88jdn5a643jbaxvp"; }; meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; }; @@ -8166,12 +8179,12 @@ final: prev: nvim-jdtls = buildVimPlugin { pname = "nvim-jdtls"; - version = "2024-08-01"; + version = "2024-08-05"; src = fetchFromGitHub { owner = "mfussenegger"; repo = "nvim-jdtls"; - rev = "be5c8d49e0f5c01978aed2314ec47fa8eae759ca"; - sha256 = "11lb2ayr0l5mdhg69vmx3ks7yixljyhw81fd3dij9z2drw344z5h"; + rev = "99e4b2081de1d9162666cc7b563cbeb01c26b66b"; + sha256 = "0gz37cf5rnmwkh9826dwr2jzqgz4fin2j1xd9r8n6xs7a3g2rzvk"; }; meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; }; @@ -8213,12 +8226,12 @@ final: prev: nvim-lightbulb = buildVimPlugin { pname = "nvim-lightbulb"; - version = "2023-07-20"; + version = "2024-08-16"; src = fetchFromGitHub { owner = "kosayoda"; repo = "nvim-lightbulb"; - rev = "8f00b89dd1b1dbde16872bee5fbcee2e58c9b8e9"; - sha256 = "0i0lppncxz7nmd683sz79063nr9yds46lyhkkxjxj853mskjisii"; + rev = "1cae7b7153ae98dcf1b11173a443ac1b6d8e3d49"; + sha256 = "1wf5pfjpvn7hvm9p9mc7w9j7wz2rr7ppdys8cx4jcqib9ja5vy99"; }; meta.homepage = "https://github.com/kosayoda/nvim-lightbulb/"; }; @@ -8249,12 +8262,12 @@ final: prev: nvim-lint = buildVimPlugin { pname = "nvim-lint"; - version = "2024-06-26"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "mfussenegger"; repo = "nvim-lint"; - rev = "efc6fc83f0772283e064c53a8f9fb5645bde0bc0"; - sha256 = "1garyyavgg2xfdkw8s9jjq4p5mv5i6m54m8dszdhvkad5ni1zlvb"; + rev = "a7ce9c78a7c710c28bee56dfab10a5c0c80b7fb5"; + sha256 = "1bbns4kdjaiisp1wiqdr91kg1jsngf485hm4r35pj8svza38awz9"; }; meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; }; @@ -8285,12 +8298,12 @@ final: prev: nvim-lspconfig = buildVimPlugin { pname = "nvim-lspconfig"; - version = "2024-08-02"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "neovim"; repo = "nvim-lspconfig"; - rev = "e6528f4613c8db2e04be908eb2b5886d63f62a98"; - sha256 = "0b4p41kv6m0hi1rh2z0711s8mklrnjsdddx9fgvmjm2ajh3qcfh3"; + rev = "d88ae6623fef09251e3aa20001bb761686eae730"; + sha256 = "0gvd1hkjq555yw5g5i3ydp1gbr279w6lh1c2hl4wc9psz9jvwrac"; }; meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; }; @@ -8393,12 +8406,12 @@ final: prev: nvim-neoclip-lua = buildVimPlugin { pname = "nvim-neoclip.lua"; - version = "2024-06-01"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "AckslD"; repo = "nvim-neoclip.lua"; - rev = "709c97fabec9da7d04f7d2f5e207423af8c02871"; - sha256 = "0sh5a680jr9390hdn7h6j72h2148089is506qk4khxrqag2yd4zi"; + rev = "32e05f2d23dc5b6a284a688c0535a83d1bfc633f"; + sha256 = "0z6rfbl02ddazfrmczb34hspgshqvxpi3ga4q7srhpz0cch16y8q"; }; meta.homepage = "https://github.com/AckslD/nvim-neoclip.lua/"; }; @@ -8441,12 +8454,12 @@ final: prev: nvim-nu = buildVimPlugin { pname = "nvim-nu"; - version = "2024-04-21"; + version = "2024-08-23"; src = fetchFromGitHub { owner = "LhKipp"; repo = "nvim-nu"; - rev = "64e1677db3319ec5900afa666a2c85c31adc0705"; - sha256 = "0cgdky2zai7mfshac2szfq346i0ql9c4miax10hz76kb2nq8v7wx"; + rev = "ca92d6defc08dbfa3b27ab36bfc99d97a259c3de"; + sha256 = "03nybdgdx7yswn5ybyhwdvjckdv4qz7pi8whgcqdlnqrpmh51sdm"; }; meta.homepage = "https://github.com/LhKipp/nvim-nu/"; }; @@ -8585,12 +8598,12 @@ final: prev: nvim-snippy = buildVimPlugin { pname = "nvim-snippy"; - version = "2024-07-13"; + version = "2024-09-01"; src = fetchFromGitHub { owner = "dcampos"; repo = "nvim-snippy"; - rev = "02a0ac1e16a7190a22bb6e31b15d484442bd2fdd"; - sha256 = "1cvvzkd87piydlqik6wswwlpfr84p2alwhg61xf9iss9zphyi52a"; + rev = "6b495947e230a93de7021c275e174b128c7ddaf5"; + sha256 = "1n108419jdq9fv47d75k7r737hl437phizrbss7mw4rgm3p4nns5"; }; meta.homepage = "https://github.com/dcampos/nvim-snippy/"; }; @@ -8633,12 +8646,12 @@ final: prev: nvim-spider = buildVimPlugin { pname = "nvim-spider"; - version = "2024-07-21"; + version = "2024-08-17"; src = fetchFromGitHub { owner = "chrisgrieser"; repo = "nvim-spider"; - rev = "508b3504a350fb9a93bd0b7c0d41b8b5fc732b5e"; - sha256 = "0bgz7jgjwv08c48fb3blzqxi68lhhj8qpw60pipcapzjhv6qxds5"; + rev = "7641ce03636633b986493fc6f52d5051cb1375ce"; + sha256 = "0566c1nizpb9qfrv6qq8vwmgx3cb611791gqhyqmf4qqhgyjpv5a"; }; meta.homepage = "https://github.com/chrisgrieser/nvim-spider/"; }; @@ -8693,36 +8706,36 @@ final: prev: nvim-tree-lua = buildVimPlugin { pname = "nvim-tree.lua"; - version = "2024-07-28"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "nvim-tree"; repo = "nvim-tree.lua"; - rev = "48d0e82f9434691cc50d970898142a8c084a49d6"; - sha256 = "1j59d696dn87bqllawn2l0n0092f20ih99a69sgjaqw31fz4cq3h"; + rev = "d41b4ca013ed89e41b9c0ecbdae5f1633e42f7fa"; + sha256 = "0xrlkx31rlgyk6a8f4kvqg2k23bcl13933yg4xrdz3mss1lr46wr"; }; meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; }; nvim-treesitter = buildVimPlugin { pname = "nvim-treesitter"; - version = "2024-08-04"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter"; - rev = "d7353a6b72008b38aa873ace49aa97bea257941b"; - sha256 = "151yrgddjaym52jwc65z036m8jncf7ndfycdj899xc2raw3qac5s"; + rev = "b6a6d8997c46dc15682020ce4fddc5a89ee1ac0d"; + sha256 = "0wmr08whizi71s6gv5fl6vving663b493cfyq0fpnkfc9smgncp4"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; }; nvim-treesitter-context = buildVimPlugin { pname = "nvim-treesitter-context"; - version = "2024-07-14"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter-context"; - rev = "2aba92ceb1479485953007f4d5adf34d0b66917e"; - sha256 = "06lrkpsqdy56i4m82q4jlz5nlbrcn77pm8fcbvks3vyzykpwid58"; + rev = "e6cc783b74606d97ca9eff6494e3f5c2ca603a50"; + sha256 = "0j10zqwssvs09izkni8mcn899xl366r777yhb0q7cz2vl7m5sd60"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; }; @@ -8765,12 +8778,12 @@ final: prev: nvim-treesitter-textobjects = buildVimPlugin { pname = "nvim-treesitter-textobjects"; - version = "2024-08-04"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter-textobjects"; - rev = "d45a1150580745a1905d74185b544af3ea6f709d"; - sha256 = "0gbb4hdwypffrxk2g7h09f7rd050g9knbzlwnr55sals5xhf1ngc"; + rev = "bf8d2ad35d1d1a687eae6c065c3d524f7ab61b23"; + sha256 = "00bnih7l16ljliq386347731nbpj5f9k3a6lb6zy7xmbn7i3nfd8"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; }; @@ -8789,36 +8802,36 @@ final: prev: nvim-ts-autotag = buildVimPlugin { pname = "nvim-ts-autotag"; - version = "2024-07-23"; + version = "2024-08-27"; src = fetchFromGitHub { owner = "windwp"; repo = "nvim-ts-autotag"; - rev = "dc5e1687ab76ee02e0f11c5ce137f530b36e98b3"; - sha256 = "0x39c86cf84ap4zmk5lb1bflcrq2zqr2p3pcfd2mjbslzcdqkasp"; + rev = "e239a560f338be31337e7abc3ee42515daf23f5e"; + sha256 = "1qk3pij5m9hxksyyj9bk8a7x5vn3rc6wwy6idc91c2pyyhmd8k20"; }; meta.homepage = "https://github.com/windwp/nvim-ts-autotag/"; }; nvim-ts-context-commentstring = buildVimPlugin { pname = "nvim-ts-context-commentstring"; - version = "2024-07-10"; + version = "2024-08-15"; src = fetchFromGitHub { owner = "joosepalviste"; repo = "nvim-ts-context-commentstring"; - rev = "6b5f95aa4d24f2c629a74f2c935c702b08dbde62"; - sha256 = "1fqncyiw747s6dq9kjkz4d463ni18liik8c559alx0avhfsrrp5i"; + rev = "375c2d86cee6674afd75b4f727ce3a80065552f7"; + sha256 = "0p7jdz3233dqz72rhkah2gasa855p15k6k6zrz3fw82fg94pd68a"; }; meta.homepage = "https://github.com/joosepalviste/nvim-ts-context-commentstring/"; }; nvim-ufo = buildVimPlugin { pname = "nvim-ufo"; - version = "2024-08-01"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "kevinhwang91"; repo = "nvim-ufo"; - rev = "4cc3ba9303c0708b81fd681786a4835fd31518ac"; - sha256 = "00v2rxfrj8xjgrk41hz6kan66358byxccyyz6nxyjxa4f0bd77c4"; + rev = "203c9f434feec57909ab4b1e028abeb3349b7847"; + sha256 = "1w4d7h53p4xpx8pz2shn253900xhqgw5r7y103y60ywf53cr2k03"; }; meta.homepage = "https://github.com/kevinhwang91/nvim-ufo/"; }; @@ -8849,12 +8862,12 @@ final: prev: nvim-web-devicons = buildVimPlugin { pname = "nvim-web-devicons"; - version = "2024-08-04"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "nvim-tree"; repo = "nvim-web-devicons"; - rev = "3722e3d1fb5fe1896a104eb489e8f8651260b520"; - sha256 = "1hb7qm3z5m20m4lyq57pb8jmydsssmj0zfpsi2nry0skyfaqrrad"; + rev = "9793801f974bba70e4ac5d7eae6c4f5659993d8e"; + sha256 = "0gssmr3j5cv4313pc1vh0jfd2zi8y71dnr0xyxxndxljzxggcznr"; }; meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; }; @@ -8969,24 +8982,24 @@ final: prev: octo-nvim = buildVimPlugin { pname = "octo.nvim"; - version = "2024-07-04"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "pwntester"; repo = "octo.nvim"; - rev = "aa5dfa573220a0a511a25ee14ce1570b6c23e56a"; - sha256 = "17n2c9arihdy1qh7wn133h03wm12n7jbz09gg85s29c63w6sic4x"; + rev = "fd50872494abd1cb580c604f1f52aae2257f7220"; + sha256 = "18sld24d3n0ai7acfw2w0frj5a3knkcxn4k5xgjfappqwb7whwwd"; }; meta.homepage = "https://github.com/pwntester/octo.nvim/"; }; oil-nvim = buildVimPlugin { pname = "oil.nvim"; - version = "2024-07-30"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "stevearc"; repo = "oil.nvim"; - rev = "fcca212c2e966fc3dec1d4baf888e670631d25d1"; - sha256 = "1lr5zll5662x4clzkf4a6ak2izgwla53vf5vsabcpdhm862qc7i0"; + rev = "1eb9fb35a4613518f79790117ed82c367a0b4a22"; + sha256 = "0fg7f600v48md44wirnzz9bwy6minvk8123abqplpqiad9115xh7"; fetchSubmodules = true; }; meta.homepage = "https://github.com/stevearc/oil.nvim/"; @@ -9078,12 +9091,12 @@ final: prev: onedarkpro-nvim = buildVimPlugin { pname = "onedarkpro.nvim"; - version = "2024-07-27"; + version = "2024-08-22"; src = fetchFromGitHub { owner = "olimorris"; repo = "onedarkpro.nvim"; - rev = "c825a3490dc3f6fb413607ed2602c1280a127756"; - sha256 = "01wzw4cykgq8mwg4yi5smfcpkg0q1zvbvmbdk0gyck3cg09s9mfs"; + rev = "ada0798b1bf6d0bde1fbf239c22de778bf5efbd1"; + sha256 = "065f1cvdkaphdpqnslyaj7bk4wqkwa5rk8a2xh39j00migqw9p09"; }; meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; }; @@ -9102,12 +9115,12 @@ final: prev: onenord-nvim = buildVimPlugin { pname = "onenord.nvim"; - version = "2024-06-01"; + version = "2024-08-22"; src = fetchFromGitHub { owner = "rmehri01"; repo = "onenord.nvim"; - rev = "70b716fd36a18284ad768402523b79ccdadafedf"; - sha256 = "18vrjaw60225q3phxm7lzf0fvfa3ii9gr2zdgyfvxa85iyzcfqqn"; + rev = "057d7048e499b4de7cd4edaff94ec1890242a117"; + sha256 = "1r391b9wnc2plv9v6l22y154lbdhdxfji9x82faa1s96qwjnp0g9"; }; meta.homepage = "https://github.com/rmehri01/onenord.nvim/"; }; @@ -9162,60 +9175,60 @@ final: prev: orgmode = buildVimPlugin { pname = "orgmode"; - version = "2024-07-29"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "nvim-orgmode"; repo = "orgmode"; - rev = "de02a0cfbe3484accb73025b6dd71b2cc4ae3eff"; - sha256 = "05jj52dz4436cygy5iqhayma24bnafbchjz172cdcm0bivnh7vdg"; + rev = "e3500add486b17da58ce8e42a0f799161e5761c9"; + sha256 = "19w2jsv98pwpp7fvmhpryxir2b2h8yp9dzvrjn810ysjb5dxli4n"; }; meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; }; other-nvim = buildVimPlugin { pname = "other.nvim"; - version = "2024-06-10"; + version = "2024-08-26"; src = fetchFromGitHub { owner = "rgroli"; repo = "other.nvim"; - rev = "63f587dde62149bd2ed3e31edceb49d5c4097a26"; - sha256 = "0chlpvz1y1w52s3cqhf5f1pnj0h451qsylfhr33qvg1nf1qmxckg"; + rev = "252cc279eb3d76685ef48aaeced1c3cf9793581f"; + sha256 = "1jcibj2gdhzqwy6rsgv0x246qv2z4maxd6yawymbs9pmxr05lf3v"; }; meta.homepage = "https://github.com/rgroli/other.nvim/"; }; otter-nvim = buildVimPlugin { pname = "otter.nvim"; - version = "2024-07-22"; + version = "2024-08-25"; src = fetchFromGitHub { owner = "jmbuhr"; repo = "otter.nvim"; - rev = "837f258040d0174ff8495584088046f98499b1ac"; - sha256 = "00hfsnpzc9lkxb35grlxf7xzh4m3v83n8am32g2mb8qn1xa9l1cy"; + rev = "ca9ce67d0399380b659923381b58d174344c9ee7"; + sha256 = "1dlqb6ihif3s5w2pydw1iinwhsn8z1in7jxqhrzv274nmnhg1qbs"; }; meta.homepage = "https://github.com/jmbuhr/otter.nvim/"; }; outline-nvim = buildVimPlugin { pname = "outline.nvim"; - version = "2024-07-05"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "hedyhli"; repo = "outline.nvim"; - rev = "2175b6da5b7b5be9de14fd3f54383a17f5e4609c"; - sha256 = "1mlk5i8xrw32038g7s67pl3xy1647ns7nb2ax59my8a9nw1ndhak"; + rev = "41e7b88a2b0baa90619af5ec8af462fcb442db65"; + sha256 = "1vhkwk3d1kvaa8bwfln8h9bs58fpq8qj1wifiaqz5ybawfpbjsnf"; }; meta.homepage = "https://github.com/hedyhli/outline.nvim/"; }; overseer-nvim = buildVimPlugin { pname = "overseer.nvim"; - version = "2024-07-23"; + version = "2024-08-19"; src = fetchFromGitHub { owner = "stevearc"; repo = "overseer.nvim"; - rev = "cbcdcbae3704c21d3ff96a1927d952b8a966b08a"; - sha256 = "0fn57csqmj946rjr5dypcngbpbjh0pay1b1ncc7ij310invgf7kq"; + rev = "236e60cdac6410dd95ea5cecafdb801a304d6a41"; + sha256 = "1cxfvi65h1fm5hmxvbjmqyzrhkqzh31pxs6x28nlbvdyvf4mcdkk"; fetchSubmodules = true; }; meta.homepage = "https://github.com/stevearc/overseer.nvim/"; @@ -9223,24 +9236,24 @@ final: prev: oxocarbon-nvim = buildVimPlugin { pname = "oxocarbon.nvim"; - version = "2023-11-27"; + version = "2024-08-28"; src = fetchFromGitHub { owner = "nyoom-engineering"; repo = "oxocarbon.nvim"; - rev = "c5846d10cbe4131cc5e32c6d00beaf59cb60f6a2"; - sha256 = "1789b010h8yz0yg60xjssl6fz02dbpkq90ldalyqk5p4ncn41qpv"; + rev = "004777819ba294423b638a35a75c9f0c7be758ed"; + sha256 = "1qllk870nqc9nhkdgmqm8km2rar6dsmyhfhpcfx8crrg640yfbqy"; }; meta.homepage = "https://github.com/nyoom-engineering/oxocarbon.nvim/"; }; package-info-nvim = buildVimPlugin { pname = "package-info.nvim"; - version = "2024-07-08"; + version = "2024-08-12"; src = fetchFromGitHub { owner = "vuki656"; repo = "package-info.nvim"; - rev = "018bc10e28b00e28e239b1fff7c497304f8b1bf5"; - sha256 = "0i7hvr8gp4jf7jrds7fa8h09gs8763802j515f8l8q9pa5nnh4s6"; + rev = "268f4669fc29546726009ad665d26901dbf62c3b"; + sha256 = "16lj1x11lp1fiq9ncvcrn3r6mr3s5ailwxs4hgvyvydr4smv1giy"; }; meta.homepage = "https://github.com/vuki656/package-info.nvim/"; }; @@ -9343,12 +9356,12 @@ final: prev: persisted-nvim = buildVimPlugin { pname = "persisted.nvim"; - version = "2024-07-02"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "olimorris"; repo = "persisted.nvim"; - rev = "4df3f8a03690add1bc2f9a79b31e1c43f5e0dd05"; - sha256 = "1l2a2ilavshxczjwb2rf405zzladsraawby7z1gflw1m3g9qgiq1"; + rev = "1673a295db295999aaf8de7c7a3afd45e0b83a46"; + sha256 = "1qgspwk924w6gpb483v1446py8x1nzd6640nbfwjsarlb13jgryb"; }; meta.homepage = "https://github.com/olimorris/persisted.nvim/"; }; @@ -9415,12 +9428,12 @@ final: prev: plantuml-syntax = buildVimPlugin { pname = "plantuml-syntax"; - version = "2024-07-25"; + version = "2024-08-25"; src = fetchFromGitHub { owner = "aklt"; repo = "plantuml-syntax"; - rev = "8fb95a3ae4354ca2322ef24803d8960fce519eb0"; - sha256 = "1wgr7847fhhq5m062cprdxpnbq3ldsywysa3hbsrvs36r63cxvm5"; + rev = "9d4900aa16674bf5bb8296a72b975317d573b547"; + sha256 = "13m41yyax1sfmg7kwpxmx06rrvlyixnlayazdrn0pfnmiv23jsma"; }; meta.homepage = "https://github.com/aklt/plantuml-syntax/"; }; @@ -9500,12 +9513,12 @@ final: prev: precognition-nvim = buildVimPlugin { pname = "precognition.nvim"; - version = "2024-07-31"; + version = "2024-08-13"; src = fetchFromGitHub { owner = "tris203"; repo = "precognition.nvim"; - rev = "6772d3a6aa98f6e68b53fd7d4dfd7762bf3ae3bf"; - sha256 = "0g7vp64x7ip46n44q2j3d8xprs8slkwj85ar3x09ki5d4mp1kzjb"; + rev = "8a81c310b4e76b4884fc5350a5741cf683c645c7"; + sha256 = "1x6h94jcpyqdqg5ranrmsp2di4lh8kchi03bp80600r54f5sgqf3"; }; meta.homepage = "https://github.com/tris203/precognition.nvim/"; }; @@ -9608,12 +9621,12 @@ final: prev: pum-vim = buildVimPlugin { pname = "pum.vim"; - version = "2024-08-17"; + version = "2024-08-26"; src = fetchFromGitHub { owner = "Shougo"; repo = "pum.vim"; - rev = "d9995c8f134ee84322d3dc6f12ea7f061dcacf3f"; - sha256 = "19akkaqja5khb3nqcm7yj84735vzkwqlr37k18bj34ncm60z9knw"; + rev = "e18e30c02eae0463a5837e1ea692f02821fcae0e"; + sha256 = "0f9663prggvk36ilz2f96w1970hwb0mqj6v8wy0in24cjhlrchw3"; }; meta.homepage = "https://github.com/Shougo/pum.vim/"; }; @@ -9753,11 +9766,11 @@ final: prev: rainbow-delimiters-nvim = buildVimPlugin { pname = "rainbow-delimiters.nvim"; - version = "2024-07-29"; + version = "2024-09-03"; src = fetchgit { url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; - rev = "a727bd368e70808125b7cf589328cc595faf3d5a"; - sha256 = "1x5bw1kb1nqbz07jjj07bp3vqcr2h9sn61xrr86v3im37akzlg2f"; + rev = "5f73b24aeb94f5274c218955573153c69ce4d1ee"; + sha256 = "1clrcbjcg5iq5i1qnh9whrlhplq76hwxn0n6yi8r7zq51m00kji0"; }; meta.homepage = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; }; @@ -10052,24 +10065,24 @@ final: prev: satellite-nvim = buildVimPlugin { pname = "satellite.nvim"; - version = "2024-06-11"; + version = "2024-09-04"; src = fetchFromGitHub { owner = "lewis6991"; repo = "satellite.nvim"; - rev = "777ed56e1ef45ec808df701730b6597fc4fb0fbc"; - sha256 = "16byf6fa7amxad3gkwi2xyb2i5q5g7c6q0phmf15pqc1skxnr0nk"; + rev = "dfc2b220f4969ebc49b0f2a94ab6faae240705bd"; + sha256 = "1vw3r5mxqwr7imdjsa47kpzqcvr19yafcn99pg9xjyxxqh90lqz5"; }; meta.homepage = "https://github.com/lewis6991/satellite.nvim/"; }; scnvim = buildVimPlugin { pname = "scnvim"; - version = "2024-05-15"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "davidgranstrom"; repo = "scnvim"; - rev = "de0fbc35ddbe023622371211f5cf599a4a960087"; - sha256 = "04gr03bpg6ja3hwfb68lhn3a7m6p2022k3138vcdazzy1gbw6r23"; + rev = "77aaade40b660c235e6a0fc80ea9a2e4094d1de0"; + sha256 = "0s3krvyksfy3lzi4qwfmjr194av72ny5934xzg72rzp434srysji"; }; meta.homepage = "https://github.com/davidgranstrom/scnvim/"; }; @@ -10088,12 +10101,12 @@ final: prev: scrollbar-nvim = buildVimPlugin { pname = "scrollbar.nvim"; - version = "2022-06-16"; + version = "2024-08-18"; src = fetchFromGitHub { owner = "Xuyuanp"; repo = "scrollbar.nvim"; - rev = "bc97c132e8367efecb2ecb937d385e7dc04eb5a1"; - sha256 = "14g2q9nzdh9ffp2b8z3sdicrn4xq3ksq8mjxdi7cm44rlfyzfs04"; + rev = "d7e6966c258cb30c29f50012543d687aec707b9e"; + sha256 = "1va53c2l86qwy1cmv77hc8iki4734f760lm4m36hj71m0bdlwkwx"; }; meta.homepage = "https://github.com/Xuyuanp/scrollbar.nvim/"; }; @@ -10112,12 +10125,12 @@ final: prev: searchbox-nvim = buildVimPlugin { pname = "searchbox.nvim"; - version = "2024-05-17"; + version = "2024-09-04"; src = fetchFromGitHub { owner = "VonHeikemen"; repo = "searchbox.nvim"; - rev = "5cbf11fbaa24da8810f467736cef7dde2410dfb2"; - sha256 = "01nqlfw4l9zncqip5xwvlisqgmqxlkrz6pvgvgiv7p7vbj2kxg1n"; + rev = "8dde416cabb63f6d68c8755365dcd20c65b7b3b0"; + sha256 = "0q0wv2nlvrk8k46lm096sscljmrsj7ccch7il7dp1l4fs67dl1h4"; }; meta.homepage = "https://github.com/VonHeikemen/searchbox.nvim/"; }; @@ -10184,12 +10197,12 @@ final: prev: sg-nvim = buildVimPlugin { pname = "sg.nvim"; - version = "2024-05-25"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "sourcegraph"; repo = "sg.nvim"; - rev = "8bdd4d19da2268072708d5fe18fda9c23e16509d"; - sha256 = "03qkd7xxi4q7mw1sgnsa9pmkk8012ndg9ij5ssw8l689v5dx6377"; + rev = "a7e060428897d1f37f585cedc355d34e0b8e2a58"; + sha256 = "1n8rg39gx2mcfw0fgyqnawg2b5cky8zchxigzmyng6n134fg5s42"; }; meta.homepage = "https://github.com/sourcegraph/sg.nvim/"; }; @@ -10208,12 +10221,12 @@ final: prev: sideways-vim = buildVimPlugin { pname = "sideways.vim"; - version = "2024-07-30"; + version = "2024-08-30"; src = fetchFromGitHub { owner = "AndrewRadev"; repo = "sideways.vim"; - rev = "0ce899109de52c9af1c78abeab945b74dd81904f"; - sha256 = "1xgwcrs2f4wj1scj08a7zrg8jbm2c8ic9yk0jamh82sjxv8cqhdj"; + rev = "5eb971a030a1b5fac7c976582e6cfbe378181f6e"; + sha256 = "1bfdl6k8nfhqn885k7n3yamy17a54yh7qryc1p239li0mqpxa9rl"; fetchSubmodules = true; }; meta.homepage = "https://github.com/AndrewRadev/sideways.vim/"; @@ -10245,19 +10258,19 @@ final: prev: slimv = buildVimPlugin { pname = "slimv"; - version = "2024-06-17"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "kovisoft"; repo = "slimv"; - rev = "e2c2bbb698c89de8c8aa91ad9ab1fd40ef6add00"; - sha256 = "0da4hcqb2936jby7zx84i0i2qxxg4wfkcfx4xx1fa92bgv79s0mx"; + rev = "c6df167f1073e5691d3da9f66632f127e17a128f"; + sha256 = "1zy2xxr6h0lfpcfg98v6jvmfly76hcyg0xrxxp979qz8fn1h20m4"; }; meta.homepage = "https://github.com/kovisoft/slimv/"; }; smart-open-nvim = buildVimPlugin { pname = "smart-open.nvim"; - version = "2024-08-17"; + version = "2024-04-23"; src = fetchFromGitHub { owner = "danielfalk"; repo = "smart-open.nvim"; @@ -10269,12 +10282,12 @@ final: prev: smart-splits-nvim = buildVimPlugin { pname = "smart-splits.nvim"; - version = "2024-08-02"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "mrjones2014"; repo = "smart-splits.nvim"; - rev = "dbd4d7212d6e9d180ab4197a52cee2ba31b2b749"; - sha256 = "124f84x62aa49jj1bkwadgqzakc2mllc7vpmcixb8dzsmhqwhdkh"; + rev = "f002d5dd6478a2171de08d2ca32db00d238d6976"; + sha256 = "11ji4wzd6g0v6jjaqmfxn9npl313bdba6v4shxvjm57cqblg8m0w"; }; meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; }; @@ -10353,12 +10366,12 @@ final: prev: sonokai = buildVimPlugin { pname = "sonokai"; - version = "2024-07-13"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "sainnhe"; repo = "sonokai"; - rev = "598d29bef1cdea1eef4749c96824af0ae2f9350c"; - sha256 = "12q9zi5vn5mvs4kl8r6wfsk4l66f7lmk9yx0acyvszl3isgyq085"; + rev = "a9d4d398999b5f74a6dfe3af400f824e2cbddf6f"; + sha256 = "1sanxs6nb50gp15damc436c06vng53vdsrkfi5hlyzshzgn1rafc"; }; meta.homepage = "https://github.com/sainnhe/sonokai/"; }; @@ -10485,12 +10498,12 @@ final: prev: splitjoin-vim = buildVimPlugin { pname = "splitjoin.vim"; - version = "2024-08-01"; + version = "2024-08-19"; src = fetchFromGitHub { owner = "AndrewRadev"; repo = "splitjoin.vim"; - rev = "cab1e6331a170403d227a31b5e63759214c37a8d"; - sha256 = "0wy9v1cw4dhmvgnp6g3vrlm6wjmhkz8md6n38qf5ma7brz63qidi"; + rev = "f72d59c9f5d4c8b865e0abfeee98f85b47fe5a3a"; + sha256 = "1vi88nbchsrgwjkmc2a8lra8j0fs3w4g47fs82v5qra7rxikwqcl"; fetchSubmodules = true; }; meta.homepage = "https://github.com/AndrewRadev/splitjoin.vim/"; @@ -10534,12 +10547,12 @@ final: prev: ssr-nvim = buildVimPlugin { pname = "ssr.nvim"; - version = "2023-10-28"; + version = "2024-09-07"; src = fetchFromGitHub { owner = "cshuaimin"; repo = "ssr.nvim"; - rev = "bb323ba621ac647b4ac5638b47666e3ef3c279e1"; - sha256 = "0w578iy0m0vvfyawjpfpi2yl51acay4alwm3g7pgf8h8rcya3pv8"; + rev = "7c95cfa5836508f08ae833a4b31d2ed265560f64"; + sha256 = "0dn6k7jd12ddgyrx580lygqv48xzn5pnh71xi7iaf1sr2f5r8ff2"; }; meta.homepage = "https://github.com/cshuaimin/ssr.nvim/"; }; @@ -10606,24 +10619,24 @@ final: prev: startup-nvim = buildVimPlugin { pname = "startup.nvim"; - version = "2023-12-20"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "max397574"; repo = "startup.nvim"; - rev = "c6ba324f9eba0c23b675b53af431346aab893268"; - sha256 = "0vp4vfrlb39z4s4617v1xkzjkx6l5sxfravfj2wkkwzpjrqfs2bl"; + rev = "81222a9956148eebf10363726d8bccf8793aa41f"; + sha256 = "1z5gv2qr3q82hmk8vjdxk37q4nm928j3vbq91vw4nary90va8q46"; }; meta.homepage = "https://github.com/max397574/startup.nvim/"; }; statuscol-nvim = buildVimPlugin { pname = "statuscol.nvim"; - version = "2024-07-31"; + version = "2024-08-20"; src = fetchFromGitHub { owner = "luukvbaal"; repo = "statuscol.nvim"; - rev = "93d8bcda516fc86e11c03f9ef577bae9a72fba0e"; - sha256 = "0cc0v0jfdgw9pd27l2kn5fargpcgw6vp3qlg0vbyknizhy1a6326"; + rev = "1022f922b77b44c36f8057ac29adbfd89ce86958"; + sha256 = "17pj9qlpigwdizrz62w36hndd1zr9iwmzxrr5whm2fz3dd1zwkg6"; }; meta.homepage = "https://github.com/luukvbaal/statuscol.nvim/"; }; @@ -10690,12 +10703,12 @@ final: prev: supermaven-nvim = buildVimPlugin { pname = "supermaven-nvim"; - version = "2024-07-17"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "supermaven-inc"; repo = "supermaven-nvim"; - rev = "d71257f431e190d9236d7f30da4c2d659389e91f"; - sha256 = "00wmbl3882j2nydy38mgcar73x7im8qyiw7svi0dcdb108yqi4xz"; + rev = "2d10d6c63a2c251e8f90d6f80faf4e9c1b8aa7d0"; + sha256 = "0arq4c5axh5yl3cawxysjiqkiwxrqvwa0pmaj9cm159c8pgq6vpi"; }; meta.homepage = "https://github.com/supermaven-inc/supermaven-nvim/"; }; @@ -10860,12 +10873,12 @@ final: prev: tabout-nvim = buildVimPlugin { pname = "tabout.nvim"; - version = "2024-05-18"; + version = "2024-08-05"; src = fetchFromGitHub { owner = "abecodes"; repo = "tabout.nvim"; - rev = "3d7fbc7f5e91ef0f96b4d787c78ad9f8820de3ec"; - sha256 = "1v5bjy8d4y5yiyccijdqcsw61dvvbqdd7c54cvc5v0l5rlhbp20d"; + rev = "923aea2613c9e7abf81e099d46086f62c7e54896"; + sha256 = "0d6v5xqx3bck6h17cbnkllyyfflwjjz24vzcijjz6733igh48q22"; }; meta.homepage = "https://github.com/abecodes/tabout.nvim/"; }; @@ -10908,12 +10921,12 @@ final: prev: tagbar = buildVimPlugin { pname = "tagbar"; - version = "2024-07-27"; + version = "2024-08-05"; src = fetchFromGitHub { owner = "preservim"; repo = "tagbar"; - rev = "bc087d88defc0a63df3cd9284c2ecf4fcae42ce9"; - sha256 = "0hr777yshkvkyj4bvlpz8iz3zv53lh6v84bfdkvkfz8dnsn6vhk7"; + rev = "d55d454bd3d5b027ebf0e8c75b8f88e4eddad8d8"; + sha256 = "0yyscdzdh1mrgcr3w0727byqvvavd9r5a7728j717wvg139r0h9r"; }; meta.homepage = "https://github.com/preservim/tagbar/"; }; @@ -11041,24 +11054,24 @@ final: prev: telescope-file-browser-nvim = buildVimPlugin { pname = "telescope-file-browser.nvim"; - version = "2024-08-04"; + version = "2024-09-05"; src = fetchFromGitHub { owner = "nvim-telescope"; repo = "telescope-file-browser.nvim"; - rev = "a46780830b576049c675680650f773bedfa8677a"; - sha256 = "0z0brmjymb0gcfmmlyiiq9ixd4hvf93h856g0g2hl37b19n2mdax"; + rev = "c5a14e0550699a7db575805cdb9ddc969ba0f1f5"; + sha256 = "1787c0jkawz3gxkaxl6m6pmfw9qcjpg8rpy6c3xcy8fvgd4sngr2"; }; meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; }; telescope-frecency-nvim = buildVimPlugin { pname = "telescope-frecency.nvim"; - version = "2024-08-02"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "nvim-telescope"; repo = "telescope-frecency.nvim"; - rev = "25d01edae8a2d74bcaa706c003b2712bce1e3301"; - sha256 = "01c9j4z8ihksr4cz3fhdk78bc392sybk3nhm254x95cbkzmdrfky"; + rev = "f67baca08423a6fd00167801a54db38e0b878063"; + sha256 = "197ijmyjqb27hfrxsa53x265qgfpka8997m1ndlql1wxgyz8as0g"; }; meta.homepage = "https://github.com/nvim-telescope/telescope-frecency.nvim/"; }; @@ -11138,12 +11151,12 @@ final: prev: telescope-manix = buildNeovimPlugin { pname = "telescope-manix"; - version = "2024-08-04"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "MrcJkb"; repo = "telescope-manix"; - rev = "284fcbcf67a39df45288582625689db2d2ae400d"; - sha256 = "0mikidw4n6dg3vxa7vfakqvjkbhih8hj4qscwpf051l7dkbmf0lj"; + rev = "6f12b6b378af873c46697814fb0dd27588bd255b"; + sha256 = "0mcnjz9ypsv4m2jifc7mg6zyq01zddn1l1hmlyzpy5ifx167dpc9"; }; meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; }; @@ -11162,12 +11175,12 @@ final: prev: telescope-project-nvim = buildVimPlugin { pname = "telescope-project.nvim"; - version = "2023-12-01"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "nvim-telescope"; repo = "telescope-project.nvim"; - rev = "1aaf16580a614601a7f7077d9639aeb457dc5559"; - sha256 = "1g03lnl79245d0vn7ydda4aixd2qbv9kcxc584msk7jwbc58r2xn"; + rev = "796200876bb0fe8157b8eb1ce03d927d3827a052"; + sha256 = "1ib4i83x24xg1jmxbzk0h6d24if3pa75zhmz2qhvvm6kjfdxrvy0"; }; meta.homepage = "https://github.com/nvim-telescope/telescope-project.nvim/"; }; @@ -11283,24 +11296,24 @@ final: prev: telescope-zoxide = buildVimPlugin { pname = "telescope-zoxide"; - version = "2024-08-02"; + version = "2024-08-28"; src = fetchFromGitHub { owner = "jvgrootveld"; repo = "telescope-zoxide"; - rev = "76386e0f8ea417f69ed42751d2008471a88e5ff8"; - sha256 = "025lmm6mhzjj3d1ph05cd51xmk5jkn7whdhd8mx4gz6k4s6894n7"; + rev = "54bfe630bad08dc9891ec78c7cf8db38dd725c97"; + sha256 = "06rgpid2z8hwxmpwly9sz4p0g200fnf32sa3mdvh2060hq0g4rrc"; }; meta.homepage = "https://github.com/jvgrootveld/telescope-zoxide/"; }; telescope-nvim = buildNeovimPlugin { pname = "telescope.nvim"; - version = "2024-08-02"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "nvim-telescope"; repo = "telescope.nvim"; - rev = "3b1600d0fd5172ad9fae00987362ca0ef3d8895d"; - sha256 = "16lnbb8cazvfb69vg71gcj8f60dkmms0vnpc00z0c3fjyg6wd50p"; + rev = "fe999db6e0c39c8984519ead75660e0e2d3245d3"; + sha256 = "0ycv08nlm1lbvc3bqxf37kb4is4k0sv7k0srd8fhdlwwpbvpnb5x"; }; meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; }; @@ -11343,12 +11356,12 @@ final: prev: tender-vim = buildVimPlugin { pname = "tender.vim"; - version = "2024-04-21"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "jacoborus"; repo = "tender.vim"; - rev = "f361e9d907d2e5df703ee995f9032021ef674f2f"; - sha256 = "0fx7cc3xh5bpd1c6jlgp4qxlh6bfzgja7mf9mp84lhd6gj9mfqy6"; + rev = "a5b769250d5c62b6a794d5cd397998699278be57"; + sha256 = "1nkkqk8xm20alv60z7gl68j2qh3s4xmwfc7j074kv8yy9rpvk810"; }; meta.homepage = "https://github.com/jacoborus/tender.vim/"; }; @@ -11439,12 +11452,12 @@ final: prev: themed-tabs-nvim = buildVimPlugin { pname = "themed-tabs.nvim"; - version = "2023-11-09"; + version = "2024-09-01"; src = fetchFromGitHub { owner = "vhsconnect"; repo = "themed-tabs.nvim"; - rev = "2ab0e463b929d717b58d10d600589e1ef642f7a4"; - sha256 = "04i76ndixdi2vpavqb6dy0pf72a7gya4dsr6l1vyjmray45jbda0"; + rev = "90a967a4537bb4d13fd6fd33eb14b3cb3a8a1c4f"; + sha256 = "03bzrdyli84aa2qnj7a5haglq1vbvlpxz6scd0zjqwr1wlj8qgl3"; }; meta.homepage = "https://github.com/vhsconnect/themed-tabs.nvim/"; }; @@ -11499,12 +11512,12 @@ final: prev: tiny-inline-diagnostic-nvim = buildVimPlugin { pname = "tiny-inline-diagnostic.nvim"; - version = "2024-08-10"; + version = "2024-09-05"; src = fetchFromGitHub { owner = "rachartier"; repo = "tiny-inline-diagnostic.nvim"; - rev = "7b212b214aed37d8ae1a26ac6ca9593223a23ddb"; - sha256 = "0zf3l8fx7vbq352ip3lrvvhrkkwp8n7n5i2lh5ps8j0jqaxswr33"; + rev = "c0543b2980251a7a2024e936ef724dcdfb07bb87"; + sha256 = "11f821jqb4yvy1s6z3psxhwsbwssjxgikihiqpy1iw5px3h5zqjh"; }; meta.homepage = "https://github.com/rachartier/tiny-inline-diagnostic.nvim/"; }; @@ -11559,12 +11572,12 @@ final: prev: todo-comments-nvim = buildVimPlugin { pname = "todo-comments.nvim"; - version = "2024-07-22"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "folke"; repo = "todo-comments.nvim"; - rev = "8f45f353dc3649cb9b44cecda96827ea88128584"; - sha256 = "0f6ranmfx33cvymigxyvrz4f8jb8k2k9mhlq7fqi5bl1ash0add7"; + rev = "319c01b99b7a8c9ac2066bf0efd4d6ec68fef444"; + sha256 = "0nav42w1g9k27jrxzwspdxdalq9sikz7g1f4p57v0wjnrzwdv741"; }; meta.homepage = "https://github.com/folke/todo-comments.nvim/"; }; @@ -11584,24 +11597,24 @@ final: prev: toggleterm-nvim = buildVimPlugin { pname = "toggleterm.nvim"; - version = "2024-07-17"; + version = "2024-08-08"; src = fetchFromGitHub { owner = "akinsho"; repo = "toggleterm.nvim"; - rev = "8ed0f52006d3207ec6c94de7db62da840937ef2a"; - sha256 = "0w57bwci2fjm1a2z65d9dd3pj4fq90a7qj1pcf209j24xzni9sqv"; + rev = "137d06fb103952a0fb567882bb8527e2f92d327d"; + sha256 = "1bmmz7ypzs4yfsky0z8d9pda8r3imlxf2f0k8n3fw327f7kc8lan"; }; meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; }; tokyonight-nvim = buildVimPlugin { pname = "tokyonight.nvim"; - version = "2024-07-24"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "folke"; repo = "tokyonight.nvim"; - rev = "b0e7c7382a7e8f6456f2a95655983993ffda745e"; - sha256 = "0l61q9mardc0p0pg6vrmp08man2mah385ldq1kpkc19y7s9s85hp"; + rev = "4b386e66a9599057587c30538d5e6192e3d1c181"; + sha256 = "1fqz4zpipfmgv4i2sdznk0cld8i8k40rdwgnj1a2jrayk9m0s6wk"; }; meta.homepage = "https://github.com/folke/tokyonight.nvim/"; }; @@ -11632,24 +11645,24 @@ final: prev: transparent-nvim = buildVimPlugin { pname = "transparent.nvim"; - version = "2023-11-12"; + version = "2024-08-25"; src = fetchFromGitHub { owner = "xiyaowong"; repo = "transparent.nvim"; - rev = "fd35a46f4b7c1b244249266bdcb2da3814f01724"; - sha256 = "sha256-wT+7rmp08r0XYGp+MhjJX8dsFTar8+nf10CV9OdkOSk="; + rev = "8a2749a2fa74f97fe6557f61b89ac7fd873f3c21"; + sha256 = "14d9jy9lzybr49i287n9ijcphrppb3l0kgixdpd5r7daqn0qncza"; }; meta.homepage = "https://github.com/xiyaowong/transparent.nvim/"; }; treesj = buildVimPlugin { pname = "treesj"; - version = "2024-07-14"; + version = "2024-08-05"; src = fetchFromGitHub { owner = "Wansmer"; repo = "treesj"; - rev = "275f83c81a5a1f5ae23c1eac30c4ac28beebbca2"; - sha256 = "0wjhhzs65myl3hrwi12v4vqgjcqdmkh5cczpx164vcxkqa0zz06p"; + rev = "0d81326b5afd36babe7dd480aabbb0b05f33e688"; + sha256 = "0r2njhwbvia4rw919ncblyf9rgq3n1mqlsyl76jqjwiw6bccvzmr"; }; meta.homepage = "https://github.com/Wansmer/treesj/"; }; @@ -11680,12 +11693,12 @@ final: prev: triptych-nvim = buildVimPlugin { pname = "triptych.nvim"; - version = "2024-06-02"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "simonmclean"; repo = "triptych.nvim"; - rev = "d7ced78687c2ab203743edf0725761f6664f66cb"; - sha256 = "0ciz9j262z7ijarpyg1yxb3vcqvm8fhar6245fj7wliirnrs7jaz"; + rev = "c11c540efb50cbb79ca16ece9ffc9e0d761427ea"; + sha256 = "09w1z8l170ikxxswdxxis41sdsahzr8dslbva2lh65sa2nhp4kk8"; fetchSubmodules = true; }; meta.homepage = "https://github.com/simonmclean/triptych.nvim/"; @@ -11825,12 +11838,12 @@ final: prev: ultimate-autopair-nvim = buildVimPlugin { pname = "ultimate-autopair.nvim"; - version = "2024-08-01"; + version = "2024-08-22"; src = fetchFromGitHub { owner = "altermo"; repo = "ultimate-autopair.nvim"; - rev = "1420fb9e07b1d80cc6d87e7d90827fb2c1109cb3"; - sha256 = "1g1mpgkjxla0lhdsn6z81zcm66zf56zps6na3f6r36jn2ii1rm18"; + rev = "53ed7c65e466963c916251f9ce6df7dd3685dc36"; + sha256 = "1mn111slp5s894nyp9jaqxkc56vnzsbmwbg2fihyg933sq3n37dp"; }; meta.homepage = "https://github.com/altermo/ultimate-autopair.nvim/"; }; @@ -11873,12 +11886,12 @@ final: prev: unison = buildVimPlugin { pname = "unison"; - version = "2024-08-03"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "unisonweb"; repo = "unison"; - rev = "f63cfbeadb199bf5426e24457e20d869ccc4e1b9"; - sha256 = "187hrd6pp1pa9p8vd3r271x5yanjvj94149pih8hqld07ian6ai5"; + rev = "814f968b3d48813d949046a9ee6aa0b7388fa276"; + sha256 = "0zjnv574wyfd3pgkp08ivkg6j597lb72f9v94dw7lw3k67anfkn7"; }; meta.homepage = "https://github.com/unisonweb/unison/"; }; @@ -11981,12 +11994,12 @@ final: prev: vifm-vim = buildVimPlugin { pname = "vifm.vim"; - version = "2024-07-12"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "vifm"; repo = "vifm.vim"; - rev = "d44bb199ed3a47891051a1d4cdd4d33b9d1267f9"; - sha256 = "0kfl7z86vzlbhvyilf8s6bdc3ppz9ab7gjiv29bpkwggaqavlc1m"; + rev = "960557d2cbfe3226187a4f542e53a6603ab87bce"; + sha256 = "1ir5ygyw1i9f5d7s2r74dadk809lnvbcv48q047yhil4ff51cwrg"; }; meta.homepage = "https://github.com/vifm/vifm.vim/"; }; @@ -12017,12 +12030,12 @@ final: prev: vim-LanguageTool = buildVimPlugin { pname = "vim-LanguageTool"; - version = "2021-02-08"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "dpelle"; repo = "vim-LanguageTool"; - rev = "0372ffae78aa3eac3bfa48ba3bf2f4015a86385a"; - sha256 = "00476l49lczj1rw5gb6vs7s9r0zi1khw0g1v6bsfwl5r32699l7r"; + rev = "a1034c0d904217d4dd14479fee69dba09e77ef19"; + sha256 = "0ckin319m93v9mj4l63jhmk7gm3ssy7yk8dh595kagnc0ylj8jjr"; }; meta.homepage = "https://github.com/dpelle/vim-LanguageTool/"; }; @@ -12173,24 +12186,24 @@ final: prev: vim-addon-manager = buildVimPlugin { pname = "vim-addon-manager"; - version = "2023-11-01"; + version = "2024-08-29"; src = fetchFromGitHub { owner = "MarcWeber"; repo = "vim-addon-manager"; - rev = "6b194728345dcd3e5eae9ee1f30e03c09c254d7f"; - sha256 = "11z1654h1pgndrykwjzll0f95pk9sx5cqad5dqpmfx66msxm9pff"; + rev = "585197500a4920c031467196e41335ca997aca6d"; + sha256 = "1g5la0qhimh8aqdnwgrr6hlvcjx8wy06hmvwydfidp0dn4ngh2mg"; }; meta.homepage = "https://github.com/MarcWeber/vim-addon-manager/"; }; vim-addon-mru = buildVimPlugin { pname = "vim-addon-mru"; - version = "2013-08-08"; + version = "2024-08-15"; src = fetchFromGitHub { owner = "MarcWeber"; repo = "vim-addon-mru"; - rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb"; - sha256 = "0q6rxr9nrp63kidr3m3c2z5sda4g813pzshg0scxkjr8dxwhzdqm"; + rev = "d7e4fe31a882e4ad48b599b51f6a9cf671f77a05"; + sha256 = "17k943dw9rp8wdn3m6zp9zlq7l2l7kn6508xcx4bd3rr1wnddrij"; }; meta.homepage = "https://github.com/MarcWeber/vim-addon-mru/"; }; @@ -12281,12 +12294,12 @@ final: prev: vim-addon-toggle-buffer = buildVimPlugin { pname = "vim-addon-toggle-buffer"; - version = "2012-01-13"; + version = "2024-08-08"; src = fetchFromGitHub { owner = "MarcWeber"; repo = "vim-addon-toggle-buffer"; - rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b"; - sha256 = "1xq38kfdm36c34ln66znw841q797w5gm8bpq1x64bsf2h6n3ml03"; + rev = "0cfeea3dbbfe181c16ddc51d91c79d28920789ae"; + sha256 = "04wpbkmd0pdmpwdm5fihs4l3ig0q7rj8fa8zn34a0h5168mf1w6x"; }; meta.homepage = "https://github.com/MarcWeber/vim-addon-toggle-buffer/"; }; @@ -12329,12 +12342,12 @@ final: prev: vim-airline = buildVimPlugin { pname = "vim-airline"; - version = "2024-07-23"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "vim-airline"; repo = "vim-airline"; - rev = "d25c049e617775eb2eb26c580e5dec591c94d480"; - sha256 = "0pq63f30cqsbq4q669h6ps64hxz05a2b7z3i09lfj0fpa1a27p0h"; + rev = "81eca994860645acbb58442285cdd70df5c71d2b"; + sha256 = "1q2wgavd2ff3iqkq8khzp1h5r651vjz5z90xlz7fyl10lmfm4j10"; }; meta.homepage = "https://github.com/vim-airline/vim-airline/"; }; @@ -12377,12 +12390,12 @@ final: prev: vim-android = buildVimPlugin { pname = "vim-android"; - version = "2023-09-30"; + version = "2024-09-05"; src = fetchFromGitHub { owner = "hsanson"; repo = "vim-android"; - rev = "26990f9fa27b23ca5faf83e14d56711c0fec40ea"; - sha256 = "1iy9ap2i9lmqcjaqb38syb240m834ifacv79cjiwzxcpr23vq4r1"; + rev = "62192c9079b942aa3c9f6d34a1bc312bf54d0301"; + sha256 = "0d1miihh7f7kghp88a8q38b19hfhlnwg821rd6yc2w7yvkzfh7bx"; }; meta.homepage = "https://github.com/hsanson/vim-android/"; }; @@ -12833,12 +12846,12 @@ final: prev: vim-codefmt = buildVimPlugin { pname = "vim-codefmt"; - version = "2024-01-13"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "google"; repo = "vim-codefmt"; - rev = "6fa1616adebeffe26fadf5a1a61996ccdcbe46a1"; - sha256 = "0qjy8jr5d6kx880nj3vh5p769c2v729dy19pnw0dn57qzwvi142d"; + rev = "ff464a478202df40ae484e6e94a1d56587fcc69e"; + sha256 = "05hkn0vkaybrv6pz6xgvbyvzcc9hl0mpykfv32jamgwkdrfm9in1"; }; meta.homepage = "https://github.com/google/vim-codefmt/"; }; @@ -13049,24 +13062,24 @@ final: prev: vim-dadbod-completion = buildVimPlugin { pname = "vim-dadbod-completion"; - version = "2024-07-30"; + version = "2024-08-15"; src = fetchFromGitHub { owner = "kristijanhusak"; repo = "vim-dadbod-completion"; - rev = "c3ab458fb7c94c2fc4baae4e2cd5601eec9d27bc"; - sha256 = "0kjawhzipwqk8cwbna5frh1mvj026affp1bky2crifvx981zls00"; + rev = "880f7e9f2959e567c718d52550f9fae1aa07aa81"; + sha256 = "046nia4fkgjyip2i5q6dz3023znn3avc7n04hy8zji0jr29brj4i"; }; meta.homepage = "https://github.com/kristijanhusak/vim-dadbod-completion/"; }; vim-dadbod-ui = buildVimPlugin { pname = "vim-dadbod-ui"; - version = "2024-07-22"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "kristijanhusak"; repo = "vim-dadbod-ui"; - rev = "0f51d8de368c8c6220973e8acd156d17da746f4c"; - sha256 = "1pb61wwm7vma4dilxryyf1bzq05yh35chlnqfng0wxr9b9hj8r7r"; + rev = "a5ff8bd69fcaf53cd24827b54492c8ce87806d18"; + sha256 = "0lz9s5swd9kp26qrzrbyjpiz7j05rnw6apmppgk6afi1sangaivf"; }; meta.homepage = "https://github.com/kristijanhusak/vim-dadbod-ui/"; }; @@ -13145,12 +13158,12 @@ final: prev: vim-dirvish = buildVimPlugin { pname = "vim-dirvish"; - version = "2024-04-03"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "justinmk"; repo = "vim-dirvish"; - rev = "3851bedb7f191b9a4a5531000b6fc0a8795cc9bb"; - sha256 = "1b5fg5d1rvnh9ipl4q1sh4xwgkn55hip303mm13h3ckmcy1cyilk"; + rev = "2ddd8ee63d6066ae910b29285d9786cbd0226657"; + sha256 = "0vjnr6rq27g9aamqdvyg4yszbs0jr4zlp3lvb0n109nbdma680rb"; }; meta.homepage = "https://github.com/justinmk/vim-dirvish/"; }; @@ -13169,12 +13182,12 @@ final: prev: vim-dispatch = buildVimPlugin { pname = "vim-dispatch"; - version = "2024-02-18"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-dispatch"; - rev = "4c695bc052cad2ae6b980aebbe48d046466e27ae"; - sha256 = "13c63n7gylny2s84k05cpl4cjn070d3qk6yagxny23yanz29hc15"; + rev = "a2ff28abdb2d89725192db5b8562977d392a4d3f"; + sha256 = "07z8vvsydl6p5ss6ipg2g0igihn92x4jyjmmb43z1d6vimra7pgv"; }; meta.homepage = "https://github.com/tpope/vim-dispatch/"; }; @@ -13311,6 +13324,18 @@ final: prev: meta.homepage = "https://github.com/andys8/vim-elm-syntax/"; }; + vim-emacs-bindings = buildVimPlugin { + pname = "vim-emacs-bindings"; + version = "2016-10-07"; + src = fetchFromGitHub { + owner = "kentarosasaki"; + repo = "vim-emacs-bindings"; + rev = "a8037ef1b0cc0eca9aca15d4e2cab6d462aa57ee"; + sha256 = "18bhcvs5vnrr394waz9mg2fdnrycsc2ng589s2jw892pap9zxq36"; + }; + meta.homepage = "https://github.com/kentarosasaki/vim-emacs-bindings/"; + }; + vim-emoji = buildVimPlugin { pname = "vim-emoji"; version = "2018-01-30"; @@ -13553,12 +13578,12 @@ final: prev: vim-flog = buildVimPlugin { pname = "vim-flog"; - version = "2024-08-02"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "rbong"; repo = "vim-flog"; - rev = "dd7a1cf09d034ffa063bedfef4f13891eff06f3a"; - sha256 = "0w3p2vxc3rk1zc4ka4yhv9rxpn57c5x5a82w0257sawhxy0jqbji"; + rev = "03f6e39050c2a32deca6964291005c6c5c4c73cf"; + sha256 = "1swzcymq11jq6n7b7kq4z4fmcpxxk8288dz56b47fxlkwgzxsp9l"; }; meta.homepage = "https://github.com/rbong/vim-flog/"; }; @@ -13613,12 +13638,12 @@ final: prev: vim-fugitive = buildVimPlugin { pname = "vim-fugitive"; - version = "2024-07-18"; + version = "2024-09-07"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fugitive"; - rev = "0444df68cd1cdabc7453d6bd84099458327e5513"; - sha256 = "0sx67lwz1f6kd2751qbbzpgq0hjik1g8x4svp788yvzbjdgdmc9l"; + rev = "d4877e54cef67f5af4f950935b1ade19ed6b7370"; + sha256 = "17cf21k77fwsl67m4f1ln17dadz5i5g8fjhsw1cc1y1c3jn1xdh2"; }; meta.homepage = "https://github.com/tpope/vim-fugitive/"; }; @@ -13769,24 +13794,24 @@ final: prev: vim-go = buildVimPlugin { pname = "vim-go"; - version = "2024-06-20"; + version = "2024-08-18"; src = fetchFromGitHub { owner = "fatih"; repo = "vim-go"; - rev = "a64d097a1af1772c24d13f34529b9be2a34b7721"; - sha256 = "13g79hgfqaismmd74751v3c5nhv8dmmrv5qpqbx7ghh3zd7h65kv"; + rev = "f365d961e540579e413acb092c8f18d62153cbaf"; + sha256 = "02n93mbn3bskbqvj3mfj4f2c6k15r1c6qkivqh6qqmbjy6593215"; }; meta.homepage = "https://github.com/fatih/vim-go/"; }; vim-godot = buildVimPlugin { pname = "vim-godot"; - version = "2024-02-17"; + version = "2024-08-05"; src = fetchFromGitHub { owner = "habamax"; repo = "vim-godot"; - rev = "f9c0b36b299efcc4aa4cb119a2be36a83fe10388"; - sha256 = "sha256-HKp3CQwAOs+7TL8MjWZ2EHLHMZ3Ss7AckAZ5eOjTDEg="; + rev = "d21e110ee09b5030e55adda660a4ff58db40a329"; + sha256 = "0fx6j7q9cyspghpnv9iy4ba99pcyjkq23rbyrd95i5dxlhzgj5q3"; }; meta.homepage = "https://github.com/habamax/vim-godot/"; }; @@ -13805,12 +13830,12 @@ final: prev: vim-graphql = buildVimPlugin { pname = "vim-graphql"; - version = "2024-08-03"; + version = "2024-08-06"; src = fetchFromGitHub { owner = "jparise"; repo = "vim-graphql"; - rev = "1653be93f32ea529a03eac04ed2bfe46533ac8e8"; - sha256 = "1pv7g2ggjilvgjfnkldp07wdwfv4z3j46qb0pfnf53xn71qk25w9"; + rev = "9caa247f88991ebfa45df21cbe1c8bec50039f6b"; + sha256 = "0903may6c1yna3nqjib9x9zapd3qpq7p9inaxkb9173a5laksgfv"; }; meta.homepage = "https://github.com/jparise/vim-graphql/"; }; @@ -14202,12 +14227,12 @@ final: prev: vim-jack-in = buildVimPlugin { pname = "vim-jack-in"; - version = "2023-04-17"; + version = "2024-08-25"; src = fetchFromGitHub { owner = "clojure-vim"; repo = "vim-jack-in"; - rev = "4cefab20f02c44249499f43200442a3176315acd"; - sha256 = "1jvqfqf11gv8ww5gh4xxxdrpflaw1pw8f10p1y8slc63var5i8vd"; + rev = "7fed7961a8b59265dc34c27c4cdbc410b3c25a73"; + sha256 = "09x7n0xc9bigyxj2rnalqqsg1ajkvlx9nk4gl3kdp9qpcksdbabz"; }; meta.homepage = "https://github.com/clojure-vim/vim-jack-in/"; }; @@ -14383,12 +14408,12 @@ final: prev: vim-just = buildVimPlugin { pname = "vim-just"; - version = "2024-08-04"; + version = "2024-09-02"; src = fetchFromGitHub { owner = "NoahTheDuke"; repo = "vim-just"; - rev = "b6952c89dde3687202cd397db37dc96344a444e0"; - sha256 = "1mr9pdzvd1fd30wwgz72i8xsi76rycib1xnc8gin0ns6x6795xa7"; + rev = "8ed1e472b72b739bd852d2b9a2d688b3da015cf5"; + sha256 = "0946xpb35vl38bvbzn6dbqy22819qw0d5z1q5xacqqyh8sp9hqb4"; }; meta.homepage = "https://github.com/NoahTheDuke/vim-just/"; }; @@ -14647,12 +14672,12 @@ final: prev: vim-lsp-settings = buildVimPlugin { pname = "vim-lsp-settings"; - version = "2024-07-25"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "mattn"; repo = "vim-lsp-settings"; - rev = "65749446c8c8556d0c287bcd724084a625913d02"; - sha256 = "1lzxbb8yz92h3fkbsc9ccim6pdnjfj4hdxs6b0iiqi8qq7a87wf1"; + rev = "a7dce2cde681ab2716ff85f871a6a3a9f5da524d"; + sha256 = "0x4mmh9plgi2v5k77958rc7jmrnhrbf5ff6j01hi097x0za7fyai"; }; meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; }; @@ -14756,12 +14781,12 @@ final: prev: vim-markdown-toc = buildVimPlugin { pname = "vim-markdown-toc"; - version = "2024-07-08"; + version = "2024-09-01"; src = fetchFromGitHub { owner = "mzlogin"; repo = "vim-markdown-toc"; - rev = "9b6ff787fdd50299e18c8b5bf1b5dc319fdbf435"; - sha256 = "1j9xysvwhvp087ak3vvdcbkskkp78hlrr20jbldfx53vys4syagh"; + rev = "aa9cc3b07791db5cbe5f29d661763bc0eb4fb7c1"; + sha256 = "1pssg8idbzqln68qbr9z1fkiw7z2a5jjvpvl3q73hycfw5z5xm0l"; }; meta.homepage = "https://github.com/mzlogin/vim-markdown-toc/"; }; @@ -14780,12 +14805,12 @@ final: prev: vim-matchup = buildVimPlugin { pname = "vim-matchup"; - version = "2024-05-29"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "andymass"; repo = "vim-matchup"; - rev = "1535a769d5dca851fe7d41b0be95f7c7203a4bef"; - sha256 = "0vw4fwyzkhg0fqavp90mq5smh95qcksjbld7cfpyrzqcj678h3fk"; + rev = "8522c9b3ba6c92ac64a609fa792134ce6ba9c4bc"; + sha256 = "01y7gq4q7y9cis9zql3x1g1vnz4nd8ax749vd088iqqvn5z6y7sw"; }; meta.homepage = "https://github.com/andymass/vim-matchup/"; }; @@ -14864,12 +14889,12 @@ final: prev: vim-monokai = buildVimPlugin { pname = "vim-monokai"; - version = "2022-12-09"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "crusoexia"; repo = "vim-monokai"; - rev = "6b6c2b698e94d0af8d8f2307be01571ab8b7b74f"; - sha256 = "1pa1fylfzammcy7xvl2wlgg2qw8yzrzr7yf0vdalqfmxkakma1z8"; + rev = "73bf1188cd80aa049b5daab1ee26b33ecd26f604"; + sha256 = "10p5pa1yd3r9ffzvp3viigdh3zyafagwz29043r2w036krdsn5lc"; }; meta.homepage = "https://github.com/crusoexia/vim-monokai/"; }; @@ -15380,12 +15405,12 @@ final: prev: vim-pets = buildVimPlugin { pname = "vim-pets"; - version = "2024-07-26"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "MeF0504"; repo = "vim-pets"; - rev = "17d33f160c8fd3fb6492e7cd76f397ddaa26ad8d"; - sha256 = "0zn6kf088kqfdf5y0x6sd8rr3skrjwppsdfxmf044qk1h07lcgcc"; + rev = "0b406e97db767a1c4f1e5de2036e1bbf8934f95b"; + sha256 = "1pwra18q3kwr997w3kv22xykjs40sfdxnxkpammfac38ril8jl87"; }; meta.homepage = "https://github.com/MeF0504/vim-pets/"; }; @@ -15584,12 +15609,12 @@ final: prev: vim-puppet = buildVimPlugin { pname = "vim-puppet"; - version = "2022-05-21"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "rodjek"; repo = "vim-puppet"; - rev = "81943d532dee24f8518f855dfb17160809abfdfb"; - sha256 = "0h2gxif4zmba7728p1w2yh1zakfj7phjnzaca5sv16aw9cihzq5g"; + rev = "8f6abca1534c03cae0bd950016750e05ed67c7e2"; + sha256 = "0nnb98hy86d1w1s4p3m7ky9q5qc4l19zna935qmivhn2hb2c3gpf"; }; meta.homepage = "https://github.com/rodjek/vim-puppet/"; }; @@ -15692,12 +15717,12 @@ final: prev: vim-rails = buildVimPlugin { pname = "vim-rails"; - version = "2024-06-23"; + version = "2024-09-08"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-rails"; - rev = "2fba7907f585819a8653f0bc7dd7f437a822d9c6"; - sha256 = "0a2m0mszy2n8xi1c47a7w0kmrnxpzfirxnzjghkdm5nc2fn3rxgn"; + rev = "d3954dfe3946c9330dc91b4fbf79ccacb2c626c0"; + sha256 = "0b64a05vcw16amszl52whzm52wdclc42bg9wpaypd3j7fy97qxd7"; }; meta.homepage = "https://github.com/tpope/vim-rails/"; }; @@ -15980,24 +16005,24 @@ final: prev: vim-sleuth = buildVimPlugin { pname = "vim-sleuth"; - version = "2023-01-10"; + version = "2024-09-07"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-sleuth"; - rev = "1cc4557420f215d02c4d2645a748a816c220e99b"; - sha256 = "0l8mw3r6lb6q1p3afvf5psp6cg8vdi84b5j8whmdm83f4mynsn8a"; + rev = "cd9d382e33bb817abe7f10cdc3a606bf1d491d75"; + sha256 = "01hqxbgikhb9pziwypssd9jigpxdabg76826zpsvjy6l2g9m7v8y"; }; meta.homepage = "https://github.com/tpope/vim-sleuth/"; }; vim-slime = buildVimPlugin { pname = "vim-slime"; - version = "2024-05-22"; + version = "2024-08-23"; src = fetchFromGitHub { owner = "jpalardy"; repo = "vim-slime"; - rev = "ca59df2570e1a12f9ddfa90b6118df4d87453fcd"; - sha256 = "06c2j7a97al2pyj2immjba3h7bv0ldlw7dly3halikxn01qdznr9"; + rev = "f6bbbeb8f18393f2177cdcef764f3e0e1d7e9328"; + sha256 = "186j2f4il5ayz3ff9d5ay94ff0kjmj03dzwsp3rj4v6wgacc1q46"; }; meta.homepage = "https://github.com/jpalardy/vim-slime/"; }; @@ -16100,12 +16125,12 @@ final: prev: vim-snippets = buildVimPlugin { pname = "vim-snippets"; - version = "2024-06-10"; + version = "2024-08-13"; src = fetchFromGitHub { owner = "honza"; repo = "vim-snippets"; - rev = "96d79529edc3dee1ccf2ce7b75a88cb546ec2501"; - sha256 = "0b23p9yqbix0b2vxsh9g9la369540b1281x4qb7ysddivmf2jp5p"; + rev = "f0a3184d9f90b96b044d5914625a25c554d7f301"; + sha256 = "19n9p1fzx0vb1l09gff50p8vzhp4bank9m8smrq1ngw1innrd9wc"; }; meta.homepage = "https://github.com/honza/vim-snippets/"; }; @@ -16148,24 +16173,24 @@ final: prev: vim-speeddating = buildVimPlugin { pname = "vim-speeddating"; - version = "2022-10-10"; + version = "2024-08-14"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-speeddating"; - rev = "5a36fd29df63ea3f65562bd2bb837be48a5ec90b"; - sha256 = "0zwhynknkcf9zpsl7ddsrihh351fy9k75ylfrzzl222i88g17d14"; + rev = "c17eb01ebf5aaf766c53bab1f6592710e5ffb796"; + sha256 = "1pibhqvd5wicw20vxsrqzirmi0y8rzsgfzn4cmws1nvjf72gkh10"; }; meta.homepage = "https://github.com/tpope/vim-speeddating/"; }; vim-spirv = buildVimPlugin { pname = "vim-spirv"; - version = "2024-07-30"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "kbenzie"; repo = "vim-spirv"; - rev = "4a76fb65b4255258b3530eea77be24d4d5cc4a4e"; - sha256 = "0af3k752br47s1xiwf3gssq0wxim2hd5j4a50zbns0rz69sn84r5"; + rev = "57fc84b3631d034dc209c7ce75236586847cbaf3"; + sha256 = "0xsjmz2gjaxnbshjl06146lhrcdbj1qnf4nzyzrxa1qrkk6cfvs5"; }; meta.homepage = "https://github.com/kbenzie/vim-spirv/"; }; @@ -16401,12 +16426,12 @@ final: prev: vim-test = buildVimPlugin { pname = "vim-test"; - version = "2024-07-30"; + version = "2024-08-27"; src = fetchFromGitHub { owner = "vim-test"; repo = "vim-test"; - rev = "75b64f23c923d34b56e47846a026210feb57146a"; - sha256 = "0pz2gh1qhakbshpgsnc6rqvk8wg9n2sdchnkgklpm1s8qfibkhyj"; + rev = "2c9cef3f7605fc1b272b23765c5872607c1b6183"; + sha256 = "03xpvafz40l418x030f6wysjy9pdk2bllir3414y1bmiych9zikr"; }; meta.homepage = "https://github.com/vim-test/vim-test/"; }; @@ -16485,12 +16510,12 @@ final: prev: vim-textobj-variable-segment = buildVimPlugin { pname = "vim-textobj-variable-segment"; - version = "2022-07-16"; + version = "2024-09-06"; src = fetchFromGitHub { owner = "Julian"; repo = "vim-textobj-variable-segment"; - rev = "51c323dca5c44f7a8e5a689b9156ef818d02188e"; - sha256 = "1fvy3il883b7czwsai1pq80hslra23c7ff23ydhvzxgfip9qrkxc"; + rev = "12e07590db6c90586ae5b750d6123c0779f6b35b"; + sha256 = "0p8jaxd4vz5vzv9008cdhhmbb1hn5b382axnrazxixwalhd7pk23"; }; meta.homepage = "https://github.com/Julian/vim-textobj-variable-segment/"; }; @@ -16725,12 +16750,12 @@ final: prev: vim-visual-multi = buildVimPlugin { pname = "vim-visual-multi"; - version = "2024-07-05"; + version = "2024-09-01"; src = fetchFromGitHub { owner = "mg979"; repo = "vim-visual-multi"; - rev = "38b0e8d94a5499ccc17d6159763d32c79f53417b"; - sha256 = "03gn3wdi1gk3z8nki6cgcsad2xyabwwczxiip6dxmzmwfbg0s34y"; + rev = "a6975e7c1ee157615bbc80fc25e4392f71c344d4"; + sha256 = "15jrxvaip6mncl8b8q8c1i82m20m1mld11gv75x9hqng3y85cc1b"; }; meta.homepage = "https://github.com/mg979/vim-visual-multi/"; }; @@ -17025,12 +17050,12 @@ final: prev: vimade = buildVimPlugin { pname = "vimade"; - version = "2023-12-12"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "TaDaa"; repo = "vimade"; - rev = "31dd31c96fc03fb158e1f40f72f3661ef5a9152d"; - sha256 = "0wph29fkp5hcziy3ym9854dds9lrm0g7w4b98bx1ks05lgx6wxzq"; + rev = "ac48ef03271f7d5f34fa4c5371c231b257a28c89"; + sha256 = "0jlg51by287pxzjy503af142licfxbhf7aibbmndgn3bazbaqirf"; }; meta.homepage = "https://github.com/TaDaa/vimade/"; }; @@ -17097,12 +17122,12 @@ final: prev: vimproc-vim = buildVimPlugin { pname = "vimproc.vim"; - version = "2023-01-05"; + version = "2024-09-04"; src = fetchFromGitHub { owner = "Shougo"; repo = "vimproc.vim"; - rev = "bf06f3f9bb1b60542fccde1ed7499798d1154db6"; - sha256 = "1nd6wrwwgz499inl42gih99da0nbpgwak6mswavs3ra906d3nsy3"; + rev = "63a4ce0768c7af434ac53d37bdc1e7ff7fd2bece"; + sha256 = "06ylhf544861far7sfkyngsn6hsnfp24ha2xhzqsh0q8qww9z3wk"; }; meta.homepage = "https://github.com/Shougo/vimproc.vim/"; }; @@ -17133,12 +17158,12 @@ final: prev: vimspector = buildVimPlugin { pname = "vimspector"; - version = "2024-08-02"; + version = "2024-08-17"; src = fetchFromGitHub { owner = "puremourning"; repo = "vimspector"; - rev = "6dfbe470866c9ddc41288c4463a1389bfa6efa74"; - sha256 = "1h8cy8dkfzs3j72ygvcl2hlv71jp0q7h4gz2k1krsqngxk355s45"; + rev = "af13695a11816c73b92d76fd8721296907224f1d"; + sha256 = "01xcv73jxsjbjwba2cc6l7b9av26rzrg89l1n611r7ycf41zb5g0"; fetchSubmodules = true; }; meta.homepage = "https://github.com/puremourning/vimspector/"; @@ -17146,24 +17171,24 @@ final: prev: vimtex = buildVimPlugin { pname = "vimtex"; - version = "2024-07-24"; + version = "2024-09-01"; src = fetchFromGitHub { owner = "lervag"; repo = "vimtex"; - rev = "5ac62e0315c6f54f53a7d6da7c485cf8e9cf7240"; - sha256 = "0kj1nc86qib6n58ds18aiszbnfgqbjk92d5lcpypf1fcfjvyvv84"; + rev = "ec3b648af5092372ddd72404fb5db46b2f78beb5"; + sha256 = "1nirjrzikw53kwn49bppwmaqfgxl5c0pr0y5cbynl9ijs30d732m"; }; meta.homepage = "https://github.com/lervag/vimtex/"; }; vimux = buildVimPlugin { pname = "vimux"; - version = "2024-07-27"; + version = "2024-08-21"; src = fetchFromGitHub { owner = "preservim"; repo = "vimux"; - rev = "c4ffa0b992798f3362b27642088dccb251aaef1e"; - sha256 = "1n8xlym81442ak4r442k9prc69a2y92nwid2kbynj2v05r8fa0sx"; + rev = "b110cd95062f5d83a4cb58b807783d783e1fbcd8"; + sha256 = "19nzdangfdkvr77i831ng60ikq3f1jgv8s8450skn6vh9w3j3hka"; }; meta.homepage = "https://github.com/preservim/vimux/"; }; @@ -17242,12 +17267,12 @@ final: prev: vscode-nvim = buildVimPlugin { pname = "vscode.nvim"; - version = "2024-07-28"; + version = "2024-08-08"; src = fetchFromGitHub { owner = "Mofiqul"; repo = "vscode.nvim"; - rev = "f6c88cdf9d37d5c0bb1e492a13a3b4b4cc4dd13e"; - sha256 = "0v4izydhq4jc6jaw7a38d0w2mlw93jdijaql7y2hk8fp44sn51q1"; + rev = "7de58b7a6d55fe48475d0ba2fddbcec871717761"; + sha256 = "0daq565dmy027qlzfqx08gr9zwjcp4n1cppjpz2ri4gxbjhvgak4"; }; meta.homepage = "https://github.com/Mofiqul/vscode.nvim/"; }; @@ -17290,24 +17315,24 @@ final: prev: which-key-nvim = buildVimPlugin { pname = "which-key.nvim"; - version = "2024-07-24"; + version = "2024-08-31"; src = fetchFromGitHub { owner = "folke"; repo = "which-key.nvim"; - rev = "6c1584eb76b55629702716995cca4ae2798a9cca"; - sha256 = "0qwwj4r5hvsmsjz352aqa4hv3f9pms6r67c4yh5imn5iyvinrzwy"; + rev = "bfec3d6bc0a9b0b2cb11644642f78c2c3915eef0"; + sha256 = "1s856ns57ds6ckh2ay4f0g0kd32bqq3qfl0ym01f74bn84rhm38m"; }; meta.homepage = "https://github.com/folke/which-key.nvim/"; }; whitespace-nvim = buildVimPlugin { pname = "whitespace.nvim"; - version = "2024-07-08"; + version = "2024-08-18"; src = fetchFromGitHub { owner = "johnfrankmorgan"; repo = "whitespace.nvim"; - rev = "e196282cd6b01ff0ce736751146fd4db49a42205"; - sha256 = "15b5f4fcxn837gxhza4dkfa2sm01iay6d1janbp31pl81q0lhacl"; + rev = "f7d14be0f23a9c1e8021aca70d280aea26649b68"; + sha256 = "0c2im0qjzxw6mflc23w3m00qwnsbyqxlqllmia5d4akhzagjsdy4"; }; meta.homepage = "https://github.com/johnfrankmorgan/whitespace.nvim/"; }; @@ -17326,12 +17351,12 @@ final: prev: wiki-vim = buildVimPlugin { pname = "wiki.vim"; - version = "2024-07-27"; + version = "2024-09-07"; src = fetchFromGitHub { owner = "lervag"; repo = "wiki.vim"; - rev = "d58c97290d75ac594198a4647cbbb0c5094ce9c6"; - sha256 = "1x1279d19gkn27zx6rqj1c5bmpbqawz8zmadld0k5l4h43m8wz2s"; + rev = "ba630e2e174f9fe963c4bce17024a4adbcb09624"; + sha256 = "1bk07sic3b2nyywyz714wjqs3mk8gajys5z7d3bnc1anq0h5navl"; }; meta.homepage = "https://github.com/lervag/wiki.vim/"; }; @@ -17434,12 +17459,12 @@ final: prev: wrapping-nvim = buildVimPlugin { pname = "wrapping.nvim"; - version = "2024-05-25"; + version = "2024-08-25"; src = fetchFromGitHub { owner = "andrewferrier"; repo = "wrapping.nvim"; - rev = "3a823200c297885b70515fa8d974e1763c578e26"; - sha256 = "1srk34zppj7lyw69yh5w7014s1mh5bdn7k74yacifwrwnwwdxj5n"; + rev = "a5210c29be19ed736eb3333677e08a57efebce78"; + sha256 = "02fvg2rrbklr3dns2x726icgv6ilmdwkz25q4nf9mnwr4bbrd212"; }; meta.homepage = "https://github.com/andrewferrier/wrapping.nvim/"; }; @@ -17458,12 +17483,12 @@ final: prev: wtf-nvim = buildVimPlugin { pname = "wtf.nvim"; - version = "2024-07-10"; + version = "2024-08-27"; src = fetchFromGitHub { owner = "piersolenski"; repo = "wtf.nvim"; - rev = "7aefcc970ea56dc0a89dafdf9f5eb0de7b1ee58c"; - sha256 = "157vdbbrqqal1jhh68bzwvgv3wn12yfmhkjkvwp3jb4h40m974zs"; + rev = "d75acc087b5183b0b3e000189518c5d799978e95"; + sha256 = "07jl36jk04rr9rykhxlf7nmxwi4p9ngmd5mcq7j7jli0rjhbj1nn"; }; meta.homepage = "https://github.com/piersolenski/wtf.nvim/"; }; @@ -17506,12 +17531,12 @@ final: prev: yats-vim = buildVimPlugin { pname = "yats.vim"; - version = "2024-05-31"; + version = "2024-08-17"; src = fetchFromGitHub { owner = "HerringtonDarkholme"; repo = "yats.vim"; - rev = "9b16b86f7be4603b416ab18a9e57a34e86e7bec2"; - sha256 = "0j9am39pdgl1swbxax1kjn57fni0z41y8gdw8m8hmmmqam9va6dh"; + rev = "b325c449a2db4d9ee38aa441afa850a815982e8b"; + sha256 = "1czjq0zf00jhfrq182diy3z7vpsb2w16jwbijinb1dpjgq6klh0h"; fetchSubmodules = true; }; meta.homepage = "https://github.com/HerringtonDarkholme/yats.vim/"; @@ -17519,12 +17544,12 @@ final: prev: yazi-nvim = buildVimPlugin { pname = "yazi.nvim"; - version = "2024-08-04"; + version = "2024-09-11"; src = fetchFromGitHub { owner = "mikavilpas"; repo = "yazi.nvim"; - rev = "54ad21d33c329c4dfa33a327257dcdc1048ba586"; - sha256 = "0qka292h4a68mfqk630j9p7skgxqnb998d60p0w1h0508lz66ahz"; + rev = "58bb48dd5e1e36b92bc3dae882b10c52e731f27f"; + sha256 = "0f7b8088z0jhwv784gwz6miw4m8vzv14y9ficqczhv2xl2pf3ihn"; }; meta.homepage = "https://github.com/mikavilpas/yazi.nvim/"; }; @@ -17567,12 +17592,12 @@ final: prev: zellij-nav-nvim = buildVimPlugin { pname = "zellij-nav.nvim"; - version = "2024-01-29"; + version = "2024-09-03"; src = fetchFromGitHub { owner = "swaits"; repo = "zellij-nav.nvim"; - rev = "25930804397ef540bd2de62f9897bc2db61f9baa"; - sha256 = "07x3z5a1wgil0cmhr0hw7xacgj9cyj6qyf1mb2c9p9dh87ll0j2d"; + rev = "511e9b7bb7165ef817dbfb40169cea9b4d3c3d44"; + sha256 = "0cvdxzbz45ac46s1i811l67g1hg5wgsb8hy7rrzbw52mq8qbkliw"; }; meta.homepage = "https://github.com/swaits/zellij-nav.nvim/"; }; @@ -17603,12 +17628,12 @@ final: prev: zenbones-nvim = buildVimPlugin { pname = "zenbones.nvim"; - version = "2024-06-16"; + version = "2024-08-24"; src = fetchFromGitHub { owner = "zenbones-theme"; repo = "zenbones.nvim"; - rev = "e9ba8305f65524f9355515cdd8704b2c6ba2def6"; - sha256 = "0bmj5b4n0rj7i1nh9lccszqv3jbcdcjw5gi6v010d3cf312rkda6"; + rev = "006f15ad3437d85884ad50347bcbc60c9a377640"; + sha256 = "1cydhz2f82llms865jqpfrkkp8mab44mssdr1d245swgmw24fm12"; }; meta.homepage = "https://github.com/zenbones-theme/zenbones.nvim/"; }; @@ -17639,12 +17664,12 @@ final: prev: zig-vim = buildVimPlugin { pname = "zig.vim"; - version = "2024-07-24"; + version = "2024-08-28"; src = fetchFromGitHub { owner = "ziglang"; repo = "zig.vim"; - rev = "ad75bb5752f3556d8bde5b0e69cb69a98058030e"; - sha256 = "0wgjasakkcdzr5zv553gc2x2kzg0778y6qi7rswqbfxxadlkl5xj"; + rev = "15d6510b77a4efbb6ffcb151ed7e2ce4de4d06f6"; + sha256 = "1f45d75df822djcsyxmg3v4ddh78nc1ii8mcwrjcwjqxlh6vm16y"; }; meta.homepage = "https://github.com/ziglang/zig.vim/"; }; @@ -17687,24 +17712,24 @@ final: prev: catppuccin-nvim = buildVimPlugin { pname = "catppuccin-nvim"; - version = "2024-08-02"; + version = "2024-08-20"; src = fetchFromGitHub { owner = "catppuccin"; repo = "nvim"; - rev = "ba5f4153a5dad99505baba936bd0373534400ac3"; - sha256 = "0wfs4zff1q1dxblj9imfbvbkxywc193kg2kmfrfqqfg9x24ih47r"; + rev = "4fd72a9ab64b393c2c22b168508fd244877fec96"; + sha256 = "1fznbifj9xayimdjld2zhn9003mgp93sd87lpaky7pr6nsgsgnb8"; }; meta.homepage = "https://github.com/catppuccin/nvim/"; }; catppuccin-vim = buildVimPlugin { pname = "catppuccin-vim"; - version = "2024-05-28"; + version = "2024-08-14"; src = fetchFromGitHub { owner = "catppuccin"; repo = "vim"; - rev = "43771ad2a9ee18b276fb2c388906b904be361dde"; - sha256 = "0bj1g4lliayia561gfxv6hk12hig68fq3vwi5n3brxi0li7gjm40"; + rev = "060000804cf50315ac6dd986bc4d84fbc40cbc9c"; + sha256 = "1faxniddq6zcsb93bsm93lkf01mc4jfzxls5vyxmac6rc5v2k1n4"; }; meta.homepage = "https://github.com/catppuccin/vim/"; }; @@ -17735,12 +17760,12 @@ final: prev: gbprod-nord = buildVimPlugin { pname = "gbprod-nord"; - version = "2024-07-13"; + version = "2024-08-28"; src = fetchFromGitHub { owner = "gbprod"; repo = "nord.nvim"; - rev = "6d6bae56a002a4da507ba263776e9691f47deb5f"; - sha256 = "103j8jcj82pdzjj06bn0avkm2ng2k83fm95ivc31fjbcd5gp1dmp"; + rev = "70fc2425b50396e5f1230200b59527d8440a24df"; + sha256 = "1b0ryw9gxl6vw71y1lby46jsvwmvv3rqmf14m307y0m29k4xjs8f"; }; meta.homepage = "https://github.com/gbprod/nord.nvim/"; }; @@ -17807,12 +17832,12 @@ final: prev: nvchad-ui = buildVimPlugin { pname = "nvchad-ui"; - version = "2024-08-02"; + version = "2024-09-10"; src = fetchFromGitHub { owner = "nvchad"; repo = "ui"; - rev = "967d8b27811f3b2a2ac3fd2de27e5a4992dc0770"; - sha256 = "19ah7rxbrjl92vqa195labbc8kphq3nh4cc84i6n5cykhzv4jskw"; + rev = "dbdd2cfa7b6267e007e0b87ed7e2ea5c6979ef22"; + sha256 = "0a9zk5k3q1ilr7df444344h51l1p67bzyy5rv3cskzz1h80cr0k7"; }; meta.homepage = "https://github.com/nvchad/ui/"; }; @@ -17843,12 +17868,12 @@ final: prev: render-markdown = buildVimPlugin { pname = "render-markdown"; - version = "2024-08-05"; + version = "2024-09-09"; src = fetchFromGitHub { owner = "MeanderingProgrammer"; repo = "render-markdown.nvim"; - rev = "af67ac5f95bc7a31e5d2aba5527c2ed14fb8be2c"; - sha256 = "115xfcn9d6v7rim780xhf7a2dx5cx7wbca1lsgy45msm4x9i18ar"; + rev = "a5e2d0b1215814c3d033be1fd8eccf59ce366399"; + sha256 = "0xnz3kl45lh5n2zjas5hdqwd9ac7smcmshvvgjvkacl6xk9rgflr"; }; meta.homepage = "https://github.com/MeanderingProgrammer/render-markdown.nvim/"; }; @@ -17867,12 +17892,12 @@ final: prev: rose-pine = buildVimPlugin { pname = "rose-pine"; - version = "2024-07-25"; + version = "2024-08-25"; src = fetchFromGitHub { owner = "rose-pine"; repo = "neovim"; - rev = "e4b08d74b7272cb21e4e9c71b8b9e0830fd722fe"; - sha256 = "1wlr2hm8818f5cdy757kir6vwnh777vrji4hsnzhbbdj3zk9w115"; + rev = "8b1fd252255a7f2c41b4192a787ab62660b29f72"; + sha256 = "0djiabbm8c9kxwaz2awb5a9a20qiy5xap9r9prwiak4apk96v299"; }; meta.homepage = "https://github.com/rose-pine/neovim/"; }; @@ -17903,28 +17928,16 @@ final: prev: vim-advanced-sorters = buildVimPlugin { pname = "vim-advanced-sorters"; - version = "2021-11-21"; + version = "2024-08-16"; src = fetchFromGitHub { owner = "inkarkat"; repo = "vim-AdvancedSorters"; - rev = "079856080d42e5ea91fadabc39c2906b2d0a0a67"; - sha256 = "1phzragsq4pflvhjzqlxvdsmiyp7z5b68d2a0frn2rj07av0bn91"; + rev = "f6d29af8a2291895973bf98c2630cc68a8115068"; + sha256 = "09p0qmwvswz3hxca6nakqszplpb1mffv5y9bwnlxab1xm17id6df"; }; meta.homepage = "https://github.com/inkarkat/vim-AdvancedSorters/"; }; - vim-emacs-bindings = buildVimPlugin { - pname = "vim-emacs-bindings"; - version = "2016-10-07"; - src = fetchFromGitHub { - owner = "kentarosasaki"; - repo = "vim-emacs-bindings"; - rev = "a8037ef1b0cc0eca9aca15d4e2cab6d462aa57ee"; - sha256 = "18bhcvs5vnrr394waz9mg2fdnrycsc2ng589s2jw892pap9zxq36"; - }; - meta.homepage = "https://github.com/kentarosasaki/vim-emacs-bindings/"; - }; - vim-docbk-snippets = buildVimPlugin { pname = "vim-docbk-snippets"; version = "2023-09-29"; @@ -17937,17 +17950,5 @@ final: prev: meta.homepage = "https://github.com/jhradilek/vim-snippets/"; }; - nvim-dap-rr = buildVimPlugin { - pname = "nvim-dap-rr"; - version = "2024-07-10"; - src = fetchFromGitHub { - owner = "jonboh"; - repo = "nvim-dap-rr"; - rev = "1682c13a2096a4a6394c803e14f009f121400acf"; - sha256 = "sha256-QtOY6gg2grsxF6KTn75hZ+BZGWK2ahzVu9k2SIIFeJU="; - }; - meta.homepage = "https://github.com/jonboh/nvim-dap-rr/"; - }; - } From cdc18ad9948d733a9412d491b6e8aec09fafa282 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Tue, 10 Sep 2024 23:42:25 -0500 Subject: [PATCH 108/232] vimPlugins.nvim-treesitter: update grammars --- .../vim/plugins/nvim-treesitter/generated.nix | 628 ++++++++++-------- 1 file changed, 342 insertions(+), 286 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix b/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix index 4c995c70da18..a3d75e591c76 100644 --- a/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix +++ b/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix @@ -27,46 +27,46 @@ }; angular = buildGrammar { language = "angular"; - version = "0.0.0+rev=31182d4"; + version = "0.0.0+rev=c473dbc"; src = fetchFromGitHub { owner = "dlvandenberg"; repo = "tree-sitter-angular"; - rev = "31182d43b062a350d4bd2449f2fc0d5654972be9"; - hash = "sha256-E+MrOQJIUsAGPMIIM43gROs1yIiokCHXJB2pmWGe0i0="; + rev = "c473dbc54ca27f95d8928cfdb2a1a79300e16951"; + hash = "sha256-TEdHRcZKXeEbRPfyUJ9rZ6+OFZn24OvArSo4C31Pyl4="; }; meta.homepage = "https://github.com/dlvandenberg/tree-sitter-angular"; }; apex = buildGrammar { language = "apex"; - version = "0.0.0+rev=c99ad4b"; + version = "0.0.0+rev=602cc4b"; src = fetchFromGitHub { owner = "aheber"; repo = "tree-sitter-sfapex"; - rev = "c99ad4b16d112fea91745e3f1b769754239fdaba"; - hash = "sha256-tl/MajAsdu7YxQcdFZmupZldhCl6QB//4FwiBR44nm4="; + rev = "602cc4b050ef1e14a69acc2ea094968bf928fa59"; + hash = "sha256-OEaeH+iVWOtDKVBAAbFPN96uyKlcuDHIObsk6SP78SY="; }; location = "apex"; meta.homepage = "https://github.com/aheber/tree-sitter-sfapex"; }; arduino = buildGrammar { language = "arduino"; - version = "0.0.0+rev=afb34b2"; + version = "0.0.0+rev=ce02903"; src = fetchFromGitHub { owner = "ObserverOfTime"; repo = "tree-sitter-arduino"; - rev = "afb34b2c65f507932c5c6ddbf0d5a9ca6a772f2f"; - hash = "sha256-iccyGSsbNDhvkrT20/bqx9s5tkghl6DONzJz5UEtTJ8="; + rev = "ce02903e3ae74c729e9415dc32c276447b1c8afd"; + hash = "sha256-16HGIOG0qPdxA4yNwwrMUQ59mzj3bH/PNu0dqjb5u2Q="; }; meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-arduino"; }; asm = buildGrammar { language = "asm"; - version = "0.0.0+rev=b0306e9"; + version = "0.0.0+rev=55b2b91"; src = fetchFromGitHub { owner = "RubixDev"; repo = "tree-sitter-asm"; - rev = "b0306e9bb2ebe01c6562f1aef265cc42ccc53070"; - hash = "sha256-xmuusYIDpttr97ZJrouW0VB02pZG8usQ9kMsARRHeJI="; + rev = "55b2b913f1e71136027d6fce8212e760c64f3532"; + hash = "sha256-DJhnC+kbKK6ibmg7DgkSCbZoTBnH7q7yYfSxI/flsHE="; }; meta.homepage = "https://github.com/RubixDev/tree-sitter-asm"; }; @@ -94,23 +94,23 @@ }; awk = buildGrammar { language = "awk"; - version = "0.0.0+rev=ba74721"; + version = "0.0.0+rev=553fdc4"; src = fetchFromGitHub { owner = "Beaglefoot"; repo = "tree-sitter-awk"; - rev = "ba7472152d79a8c916550c80fdbfd5724d07a0c9"; - hash = "sha256-ywrd9wCdrQ9UZPXvB8fUkelFaZzHxL+hDAPSecMueFs="; + rev = "553fdc4afb3b603332c3f4baf50c711506f4e797"; + hash = "sha256-LJ+jRomCepFH8QbHTgecaDZ3dlO1kgjs5i71kIWi1bg="; }; meta.homepage = "https://github.com/Beaglefoot/tree-sitter-awk"; }; bash = buildGrammar { language = "bash"; - version = "0.0.0+rev=2fbd860"; + version = "0.0.0+rev=c8713e5"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-bash"; - rev = "2fbd860f802802ca76a6661ce025b3a3bca2d3ed"; - hash = "sha256-rCuQbnQAOnQWKYreNH80nlL+0A1qbWbjMvtczcoWPrY="; + rev = "c8713e50f0bd77d080832fc61ad128bc8f2934e9"; + hash = "sha256-xqiUJhl7nfOlS6wBYWpmrGLCvWoJCA5fz8DCX85Lxog="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-bash"; }; @@ -127,12 +127,12 @@ }; beancount = buildGrammar { language = "beancount"; - version = "0.0.0+rev=384c55e"; + version = "0.0.0+rev=01c0da2"; src = fetchFromGitHub { owner = "polarmutex"; repo = "tree-sitter-beancount"; - rev = "384c55ede2a1f13e83d8e18dbef8f11304c379c2"; - hash = "sha256-OEfiJWF3+wxwaqk4kyMSvJG9c6NbyphHG2hnf7fCiOQ="; + rev = "01c0da29e0fc7130420a09d939ecc524e09b6ba6"; + hash = "sha256-obIGlAXe+Y1vffXTGgFRpiqof+F9bSRLq9NJGZcvhVE="; }; meta.homepage = "https://github.com/polarmutex/tree-sitter-beancount"; }; @@ -193,23 +193,23 @@ }; c = buildGrammar { language = "c"; - version = "0.0.0+rev=be23d2c"; + version = "0.0.0+rev=bc85948"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-c"; - rev = "be23d2c9d8e5b550e713ef0f86126a248462ca6e"; - hash = "sha256-6R9bx0UMjln8W1DrHG1AyA+Ziq9XGuLti2m/bC6lPgg="; + rev = "bc85948c0bec746ebe921f72d2296d47e17d4ea7"; + hash = "sha256-nwo4V6eliE4P5ub3jx9DSBjLRjfFViMZKXfP1RdSMM8="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-c"; }; c_sharp = buildGrammar { language = "c_sharp"; - version = "0.0.0+rev=31a64b2"; + version = "0.0.0+rev=fd7f740"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-c-sharp"; - rev = "31a64b28292aac6adf44071e449fa03fb80eaf4e"; - hash = "sha256-WBOA6CIW56RuiHhwiuP9R+K2kK6Chfx05TP3mdjMxo0="; + rev = "fd7f7402db6e66afd70b402fb2e367b2d71c10d6"; + hash = "sha256-kj3YWtpitPgPas02I+FAZKtHBVqX7yAy8Ldi0b8IPqk="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-c-sharp"; }; @@ -270,12 +270,12 @@ }; comment = buildGrammar { language = "comment"; - version = "0.0.0+rev=5d8b29f"; + version = "0.0.0+rev=3555706"; src = fetchFromGitHub { owner = "stsewd"; repo = "tree-sitter-comment"; - rev = "5d8b29f6ef3bf64d59430dcfe76b31cc44b5abfd"; - hash = "sha256-19jxH6YK3Rn0fOGSiWen5/eNKPKUSXVsIYB/QAPEA1I="; + rev = "3555706cef8b98d3e4c7379d7260548ff03ad363"; + hash = "sha256-7iY7D7wz+rYRWhi+429a2pcF0mUMBCnnecIssxlqvt0="; }; meta.homepage = "https://github.com/stsewd/tree-sitter-comment"; }; @@ -325,23 +325,23 @@ }; cpp = buildGrammar { language = "cpp"; - version = "0.0.0+rev=0b4aa47"; + version = "0.0.0+rev=30f973c"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-cpp"; - rev = "0b4aa47f07d958a49260aadc87e8474b03897c23"; - hash = "sha256-z2cG/woWbpvLJdmlN7ZuPiDwWhHnmwr3speMDFz3cEk="; + rev = "30f973c2244f0bff444186185f475c3bd76bc3a5"; + hash = "sha256-r0rtjx0crbUK8euu5BAUW6NHdxC835tLW4YttvLNpkk="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-cpp"; }; css = buildGrammar { language = "css"; - version = "0.0.0+rev=f6be52c"; + version = "0.0.0+rev=a68fcd1"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-css"; - rev = "f6be52c3d1cdb1c5e4dd7d8bce0a57497f55d6af"; - hash = "sha256-V1KrNM5C03RcRYcRIPxxfyWlnQkbyAevTHuZINn3Bdc="; + rev = "a68fcd1e6b03118d1e92ffa45e7ab7a39d52d3f7"; + hash = "sha256-o78Od04Ss4S7hbJG41eTN7Mw/i6Dh+AVfENYnPO9/qo="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-css"; }; @@ -359,12 +359,12 @@ }; cuda = buildGrammar { language = "cuda"; - version = "0.0.0+rev=7c97acb"; + version = "0.0.0+rev=635e8aa"; src = fetchFromGitHub { owner = "theHamsta"; repo = "tree-sitter-cuda"; - rev = "7c97acb8398734d790c86210c53c320df61ff66b"; - hash = "sha256-E5bXdBfCE1lP5GngZBZ4qn9kKPQYVDvdvE5UPMoUsas="; + rev = "635e8aa3747823a0c4e9660c07cef76fe8d3ef93"; + hash = "sha256-+KHenEgo9wMncjEIJZoqS0x089hjdR3J1t+x663qy1M="; }; meta.homepage = "https://github.com/theHamsta/tree-sitter-cuda"; }; @@ -392,23 +392,23 @@ }; dart = buildGrammar { language = "dart"; - version = "0.0.0+rev=ac0bb84"; + version = "0.0.0+rev=9ac03bb"; src = fetchFromGitHub { owner = "UserNobody14"; repo = "tree-sitter-dart"; - rev = "ac0bb849ccd1a923963af47573b5e396736ff582"; - hash = "sha256-yEI0a+YlEdjlmSTWZFdVUr7lwuK4wNsE9WycOkXzoG4="; + rev = "9ac03bb2154316624fb4c41fe0f372a5f1597b43"; + hash = "sha256-8bSlsDi1QU0Z9sLxrTfqOi6aB1fe+jP9lHuIjIGNx1o="; }; meta.homepage = "https://github.com/UserNobody14/tree-sitter-dart"; }; devicetree = buildGrammar { language = "devicetree"; - version = "0.0.0+rev=fb07e60"; + version = "0.0.0+rev=296b3c2"; src = fetchFromGitHub { owner = "joelspadin"; repo = "tree-sitter-devicetree"; - rev = "fb07e6044ffd36932c57a5be01ba5d6b8a9337bb"; - hash = "sha256-DKC+aUkdz2eGrXCXzW751aleG4Fxwmjn2KetTCOQRDY="; + rev = "296b3c294a8bcfca6673296d99f9cd37049b8026"; + hash = "sha256-im3RhkaeG7cDd0FwkJzjrUZXjrpHR4q6sQH2waMumOI="; }; meta.homepage = "https://github.com/joelspadin/tree-sitter-devicetree"; }; @@ -503,12 +503,12 @@ }; earthfile = buildGrammar { language = "earthfile"; - version = "0.0.0+rev=b0a9bc5"; + version = "0.0.0+rev=1d637f2"; src = fetchFromGitHub { owner = "glehmann"; repo = "tree-sitter-earthfile"; - rev = "b0a9bc5737340a9b80b489fe9ae93d7b2fe78cd7"; - hash = "sha256-dIpoLqfIb+vsxe2DszOAKztL+YTDAVGlNccYhYe170U="; + rev = "1d637f2002bb8b22d4c08d26ad2bfbc22916f3ce"; + hash = "sha256-KzswtiuFyT1xFDDHGhQi+cT/VfGVOgHn7nfUm4ZB9M8="; }; meta.homepage = "https://github.com/glehmann/tree-sitter-earthfile"; }; @@ -526,12 +526,12 @@ }; editorconfig = buildGrammar { language = "editorconfig"; - version = "0.0.0+rev=fd0d64d"; + version = "0.0.0+rev=faf014c"; src = fetchFromGitHub { owner = "ValdezFOmar"; repo = "tree-sitter-editorconfig"; - rev = "fd0d64d2fc91eab903bed4c11ce280b62e46f16e"; - hash = "sha256-7Q8+XEGWqOnkLW7b9Vnubr2LhvdTK48at45k/Gsm9Us="; + rev = "faf014c607f912ff666b20183d32a03dcfc3111d"; + hash = "sha256-gkbPpwe/FNeZuZEWOxchccWOk1erRMU8jabWoIFl2AY="; }; meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-editorconfig"; }; @@ -559,12 +559,12 @@ }; elixir = buildGrammar { language = "elixir"; - version = "0.0.0+rev=c7ae8b7"; + version = "0.0.0+rev=2c6e931"; src = fetchFromGitHub { owner = "elixir-lang"; repo = "tree-sitter-elixir"; - rev = "c7ae8b77e2749826dcf23df6514f08fdd68c66a3"; - hash = "sha256-1B3jVMJs1WNU3K7t42mv9Ab85KEaa8vn8zURksNts+E="; + rev = "2c6e93171477973b38de4b1d2be427cc99f990a6"; + hash = "sha256-WBvpJ0r7cp/xWvnqSk6q4mpyfLAAdIR//2ju6Xri3EY="; }; meta.homepage = "https://github.com/elixir-lang/tree-sitter-elixir"; }; @@ -603,23 +603,23 @@ }; embedded_template = buildGrammar { language = "embedded_template"; - version = "0.0.0+rev=38d5004"; + version = "0.0.0+rev=62b0a6e"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-embedded-template"; - rev = "38d5004a797298dc42c85e7706c5ceac46a3f29f"; - hash = "sha256-IPPCexaq42Em5A+kmrj5e/SFrXoKdWCTYAL/TWvbDJ0="; + rev = "62b0a6e45900a7dff7c37da95fec20a09968ba52"; + hash = "sha256-F0colhLIN7+1uPAa+z5kBaXIWx/ZxFB28uqNt24QyGo="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-embedded-template"; }; erlang = buildGrammar { language = "erlang"; - version = "0.0.0+rev=8f41b58"; + version = "0.0.0+rev=0dfcdf1"; src = fetchFromGitHub { owner = "WhatsApp"; repo = "tree-sitter-erlang"; - rev = "8f41b588fe38b981156651ef56b192ed3d158efd"; - hash = "sha256-B/SF86W+0t6rVzo/QpQ6QQPsD7pH5dHGLCqxzoIhNTg="; + rev = "0dfcdf18b35dd9cfcf92be42659794d07d819d88"; + hash = "sha256-vGJrlugqmDHKMQtoDoFIyPMzWWZE8kUySBKEMDd8Kw0="; }; meta.homepage = "https://github.com/WhatsApp/tree-sitter-erlang"; }; @@ -713,12 +713,12 @@ }; fortran = buildGrammar { language = "fortran"; - version = "0.0.0+rev=6b63343"; + version = "0.0.0+rev=8f84294"; src = fetchFromGitHub { owner = "stadelmanma"; repo = "tree-sitter-fortran"; - rev = "6b633433fb3f132f21250cf8e8be76d5a6389b7e"; - hash = "sha256-0P3fY7DVnBqzBIg+e5E5i80jZl/GEYO8SIdxf/ZdkfI="; + rev = "8f842945abefb76b9a68c0835619b37060b8f098"; + hash = "sha256-7nVAFWegMr/oShjSLaq9DESvaguPEK/bCCFu0Ru1QPQ="; }; meta.homepage = "https://github.com/stadelmanma/tree-sitter-fortran"; }; @@ -755,6 +755,28 @@ }; meta.homepage = "https://gitlab.com/jirgn/tree-sitter-fusion.git"; }; + gap = buildGrammar { + language = "gap"; + version = "0.0.0+rev=141b063"; + src = fetchFromGitHub { + owner = "gap-system"; + repo = "tree-sitter-gap"; + rev = "141b063335e85299bde3f61b4888d02d674a1abc"; + hash = "sha256-vl0bqJXTxpAfaMOIgQpX60I4dfPOJF6wpt10GiftuR0="; + }; + meta.homepage = "https://github.com/gap-system/tree-sitter-gap"; + }; + gaptst = buildGrammar { + language = "gaptst"; + version = "0.0.0+rev=e0723dc"; + src = fetchFromGitHub { + owner = "gap-system"; + repo = "tree-sitter-gaptst"; + rev = "e0723dc6136309b3d5904dad2c73ef71267428c1"; + hash = "sha256-m8lxSM/c99KLnu5hbxaTol645DFqFwjTSzdaRUtHDAI="; + }; + meta.homepage = "https://github.com/gap-system/tree-sitter-gaptst"; + }; gdscript = buildGrammar { language = "gdscript"; version = "0.0.0+rev=1f1e782"; @@ -834,25 +856,47 @@ }; gleam = buildGrammar { language = "gleam"; - version = "0.0.0+rev=426e670"; + version = "0.0.0+rev=9586f38"; src = fetchFromGitHub { owner = "gleam-lang"; repo = "tree-sitter-gleam"; - rev = "426e67087fd62be5f4533581b5916b2cf010fb5b"; - hash = "sha256-SI3/gUksiRgUpCabsll6g0mUcm5iiNMTzxlxQxCujpY="; + rev = "9586f38658da115c90e2d01099c83479eb0eea99"; + hash = "sha256-EfuYnfz0E1I5F+9nFvp/uB+S4p6/9evlDlEEbWXCfBc="; }; meta.homepage = "https://github.com/gleam-lang/tree-sitter-gleam"; }; glimmer = buildGrammar { language = "glimmer"; - version = "0.0.0+rev=6b25d26"; + version = "0.0.0+rev=da605af"; src = fetchFromGitHub { - owner = "alexlafroscia"; + owner = "ember-tooling"; repo = "tree-sitter-glimmer"; - rev = "6b25d265c990139353e1f7f97baf84987ebb7bf0"; - hash = "sha256-azLagXPC659Ee0UwqtW0XgpxGLqMSrwmKZy8htsp4xU="; + rev = "da605af8c5999b43e6839b575eae5e6cafabb06f"; + hash = "sha256-2ofCBhp/Trj5ivZpMGFm6dvAGic+w8Tl0osRk+IRLL4="; }; - meta.homepage = "https://github.com/alexlafroscia/tree-sitter-glimmer"; + meta.homepage = "https://github.com/ember-tooling/tree-sitter-glimmer"; + }; + glimmer_javascript = buildGrammar { + language = "glimmer_javascript"; + version = "0.0.0+rev=a260911"; + src = fetchFromGitHub { + owner = "NullVoxPopuli"; + repo = "tree-sitter-glimmer-javascript"; + rev = "a260911201684f80cf815418b3771e6c39309f81"; + hash = "sha256-fpVlfYjVI1ricwNfuzI5AV3RV4ijFTYOf/2NhCirCvU="; + }; + meta.homepage = "https://github.com/NullVoxPopuli/tree-sitter-glimmer-javascript"; + }; + glimmer_typescript = buildGrammar { + language = "glimmer_typescript"; + version = "0.0.0+rev=9d018a0"; + src = fetchFromGitHub { + owner = "NullVoxPopuli"; + repo = "tree-sitter-glimmer-typescript"; + rev = "9d018a0f93417e6951264a26093b89ee63df7315"; + hash = "sha256-ZV6q4OEwj0ulGh5PO5XEMvT4WJQHkMmMXFJs8mcJqXk="; + }; + meta.homepage = "https://github.com/NullVoxPopuli/tree-sitter-glimmer-typescript"; }; glsl = buildGrammar { language = "glsl"; @@ -889,23 +933,23 @@ }; go = buildGrammar { language = "go"; - version = "0.0.0+rev=7ee8d92"; + version = "0.0.0+rev=81a11f8"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-go"; - rev = "7ee8d928db5202f6831a78f8112fd693bf69f98b"; - hash = "sha256-ARfpfMSXy+DpvUMJvUgjgReoyvGbrVwYutZD91JA4qc="; + rev = "81a11f8252998ee6b98d59e6da91fc307491e53d"; + hash = "sha256-q6ChXb4nHkFlMz4QWX8DMlCMaHnTgq27c7a3hufYOvg="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-go"; }; goctl = buildGrammar { language = "goctl"; - version = "0.0.0+rev=f107937"; + version = "0.0.0+rev=49c4353"; src = fetchFromGitHub { owner = "chaozwn"; repo = "tree-sitter-goctl"; - rev = "f107937259c7ec4bb05f7e3d2c24b89ac36d4cc3"; - hash = "sha256-4I0T+CoMCo3e7hkpdR+ipMol0THbJYg+UXAnIa0o5Ns="; + rev = "49c43532689fe1f53e8b9e009d0521cab02c432b"; + hash = "sha256-HYPj95Kg+C5Ax++Z83yUnhrf2iIVTuwOBhVVLlYQaGs="; }; meta.homepage = "https://github.com/chaozwn/tree-sitter-goctl"; }; @@ -944,12 +988,12 @@ }; gotmpl = buildGrammar { language = "gotmpl"; - version = "0.0.0+rev=9d3f6e5"; + version = "0.0.0+rev=fd9e1c6"; src = fetchFromGitHub { owner = "ngalaiko"; repo = "tree-sitter-go-template"; - rev = "9d3f6e526dd074b9edae9070b7bb778f00e87a5b"; - hash = "sha256-ndd85YVO2brK7JVBFOg6bbKV66qVPjo4DVi7GaT/eZA="; + rev = "fd9e1c6647e5e9b23918d00d1e48710d0f703e19"; + hash = "sha256-DGeaKT1uqvXiYwL4g5kZNX6f5TwLPbb5qbhI4amdl98="; }; meta.homepage = "https://github.com/ngalaiko/tree-sitter-go-template"; }; @@ -988,12 +1032,12 @@ }; groovy = buildGrammar { language = "groovy"; - version = "0.0.0+rev=105ee34"; + version = "0.0.0+rev=0d88845"; src = fetchFromGitHub { owner = "murtaza64"; repo = "tree-sitter-groovy"; - rev = "105ee343682b7eee86b38ec6858a269e16474a72"; - hash = "sha256-HYb3TXMSC+Zfss+vqgdSxsB35tqPmc6GNMWuFof9e5g="; + rev = "0d8884514fe10c4fa47527d9a0284d207f38ddea"; + hash = "sha256-Dv7FxfHA+2VM60iFZGaytmDVCUEoCJY3bpOJrw5Q8ik="; }; meta.homepage = "https://github.com/murtaza64/tree-sitter-groovy"; }; @@ -1032,12 +1076,12 @@ }; haskell = buildGrammar { language = "haskell"; - version = "0.0.0+rev=a50070d"; + version = "0.0.0+rev=558b997"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-haskell"; - rev = "a50070d5bb5bd5c1281740a6102ecf1f4b0c4f19"; - hash = "sha256-huO0Ly9JYQbT64o/AjdZrE9vghQ5vT+/iQl50o4TJ0I="; + rev = "558b997049fddcb07fc513528189c57d6129a260"; + hash = "sha256-BvnCHdHJwhCH3wQnA8JA2RgOUUpigJv7f88pRMW1U8o="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-haskell"; }; @@ -1076,12 +1120,12 @@ }; helm = buildGrammar { language = "helm"; - version = "0.0.0+rev=9d3f6e5"; + version = "0.0.0+rev=fd9e1c6"; src = fetchFromGitHub { owner = "ngalaiko"; repo = "tree-sitter-go-template"; - rev = "9d3f6e526dd074b9edae9070b7bb778f00e87a5b"; - hash = "sha256-ndd85YVO2brK7JVBFOg6bbKV66qVPjo4DVi7GaT/eZA="; + rev = "fd9e1c6647e5e9b23918d00d1e48710d0f703e19"; + hash = "sha256-DGeaKT1uqvXiYwL4g5kZNX6f5TwLPbb5qbhI4amdl98="; }; location = "dialects/helm"; meta.homepage = "https://github.com/ngalaiko/tree-sitter-go-template"; @@ -1099,23 +1143,23 @@ }; hlsl = buildGrammar { language = "hlsl"; - version = "0.0.0+rev=81dbfa4"; + version = "0.0.0+rev=cf432a7"; src = fetchFromGitHub { owner = "theHamsta"; repo = "tree-sitter-hlsl"; - rev = "81dbfa44a2e0f9e36d16f449fc792020e2f38426"; - hash = "sha256-uhCBhS68J6gxWxv/Ehk6OOo3/UMakf9Rrr3JnYAUD/s="; + rev = "cf432a7420eb71e9b40954aa829dcb8a9bf6b546"; + hash = "sha256-LnbEEV8N9undyrC0ziH2nfbFOOEAPKVPXTyl7Xq0KG0="; }; meta.homepage = "https://github.com/theHamsta/tree-sitter-hlsl"; }; hlsplaylist = buildGrammar { language = "hlsplaylist"; - version = "0.0.0+rev=64f1902"; + version = "0.0.0+rev=3bfda92"; src = fetchFromGitHub { owner = "Freed-Wu"; repo = "tree-sitter-hlsplaylist"; - rev = "64f19029339e75d6762feae39e7878595860c980"; - hash = "sha256-rJZo17tAbDbnnx6PTOlzgJYClnGrRNfQ6fLJqIVMMCw="; + rev = "3bfda9271e3adb08d35f47a2102fe957009e1c55"; + hash = "sha256-BvLT+BbnJgM14a896p39dywYy/4S45xOBtBukYTbW6E="; }; meta.homepage = "https://github.com/Freed-Wu/tree-sitter-hlsplaylist"; }; @@ -1143,12 +1187,12 @@ }; html = buildGrammar { language = "html"; - version = "0.0.0+rev=e4d834e"; + version = "0.0.0+rev=14bdaf0"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-html"; - rev = "e4d834eb4918df01dcad5c27d1b15d56e3bd94cd"; - hash = "sha256-sHy3fVWemJod18HCQ8zBC/LpeCCPH0nzhI1wrkCg8nw="; + rev = "14bdaf0da9e26e2de9b30178c2242539d2b0b285"; + hash = "sha256-vSiIabzhhTpvt+1Zh+tCad2TR5hG572hRmX2fTjfC7s="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-html"; }; @@ -1165,12 +1209,12 @@ }; http = buildGrammar { language = "http"; - version = "0.0.0+rev=5ae6c7c"; + version = "0.0.0+rev=7c68e1c"; src = fetchFromGitHub { owner = "rest-nvim"; repo = "tree-sitter-http"; - rev = "5ae6c7cfa62a7d7325c26171a1de4f6b866702b5"; - hash = "sha256-C1U0vyW237XB8eFNYcn7/FBsGlCLuIQoUSlFV8K5TsM="; + rev = "7c68e1c8ce6eeef6bc4b749330c540dbbda5ba44"; + hash = "sha256-0Tj/hTVU8lK8j4MkcvlzpnbFFFZcNcXVdHvnB87AnyY="; }; meta.homepage = "https://github.com/rest-nvim/tree-sitter-http"; }; @@ -1198,23 +1242,23 @@ }; idl = buildGrammar { language = "idl"; - version = "0.0.0+rev=1a6683f"; + version = "0.0.0+rev=5573b29"; src = fetchFromGitHub { owner = "cathaysia"; repo = "tree-sitter-idl"; - rev = "1a6683f6809f7bc630f10fcad7d9ac6471deb706"; - hash = "sha256-eDoERNfSMzpbccX438H2c1AWQMXNm9tJBnCREYqMvic="; + rev = "5573b295410201ed22771776b34d636900eba368"; + hash = "sha256-Pf9Wtmza6bKQsZ54EzVhSnUFkEcHuTgPGNZuH8jh42o="; }; meta.homepage = "https://github.com/cathaysia/tree-sitter-idl"; }; ini = buildGrammar { language = "ini"; - version = "0.0.0+rev=87176e5"; + version = "0.0.0+rev=962568c"; src = fetchFromGitHub { owner = "justinmk"; repo = "tree-sitter-ini"; - rev = "87176e524f0a98f5be75fa44f4f0ff5c6eac069c"; - hash = "sha256-IyHrIxcmuzs60zUiJv4E3nSkhSkgbcaLDUdeDx5mlHk="; + rev = "962568c9efa71d25720ab42c5d36e222626ef3a6"; + hash = "sha256-G11Aynq2rnkRwdkhspjYqtBD/h5k4aD+NvuE0QfploU="; }; meta.homepage = "https://github.com/justinmk/tree-sitter-ini"; }; @@ -1242,34 +1286,34 @@ }; janet_simple = buildGrammar { language = "janet_simple"; - version = "0.0.0+rev=ea842cb"; + version = "0.0.0+rev=12bfab7"; src = fetchFromGitHub { owner = "sogaiu"; repo = "tree-sitter-janet-simple"; - rev = "ea842cb57a90865c8f50bcb4499de1a94860f3a4"; - hash = "sha256-0gy4kylOoaC5BigpppAN1va3eRZaS6UmxNcQkbxz1Ag="; + rev = "12bfab7db8a5f5b1d774ef84b5831acd34936071"; + hash = "sha256-ndxhGmfz0wYxsOeBJv/OJndj3pORQoWpRTfBuMcprhU="; }; meta.homepage = "https://github.com/sogaiu/tree-sitter-janet-simple"; }; java = buildGrammar { language = "java"; - version = "0.0.0+rev=953abfc"; + version = "0.0.0+rev=245b05c"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-java"; - rev = "953abfc8bb3eb2f578e1f461edba4a9885f974b8"; - hash = "sha256-COrEPsdTI6MJeb5iIZtyNHHe6nMsD/EnHDRVDTSKFTg="; + rev = "245b05c6ba900fa708242835f6168ef76f9d951e"; + hash = "sha256-C87uMEIoqXr6bYLCJAq6aiXsfH4+srVbNx7bMV9rseM="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-java"; }; javascript = buildGrammar { language = "javascript"; - version = "0.0.0+rev=12e4537"; + version = "0.0.0+rev=b6f0624"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-javascript"; - rev = "12e45374422f6051648717be62f0ffc40a279ee2"; - hash = "sha256-KBEJFpOIP4MFbkxcIF2HsHvwblTdb2UuisKMn4Pnm1w="; + rev = "b6f0624c1447bc209830b195999b78a56b10a579"; + hash = "sha256-xen4zzDwlCXbvgYwckDE0Jw3rDpKUwmr4DHB47nGng4="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-javascript"; }; @@ -1286,23 +1330,23 @@ }; jsdoc = buildGrammar { language = "jsdoc"; - version = "0.0.0+rev=49fde20"; + version = "0.0.0+rev=bc09606"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-jsdoc"; - rev = "49fde205b59a1d9792efc21ee0b6d50bbd35ff14"; - hash = "sha256-Mfau8071UiotdSS+/W9kQWhKF7BCRI8WtRxss/U0GQw="; + rev = "bc09606fc786ead131a301e4b7524888f2d5c517"; + hash = "sha256-tVCYa2N3h+Wf1vPL7/C3rqY6WiR6n9b6VXofUk7+DSA="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-jsdoc"; }; json = buildGrammar { language = "json"; - version = "0.0.0+rev=94f5c52"; + version = "0.0.0+rev=8bfdb43"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-json"; - rev = "94f5c527b2965465956c2000ed6134dd24daf2a7"; - hash = "sha256-16/ZRjRolUC/iN7ASrNnXNSkfohBlSqyyYAz4nka6pM="; + rev = "8bfdb43f47ad805bb1ce093203cfcbaa8ed2c571"; + hash = "sha256-zEuPynGi11vr7UvxC+mgZ+zOJBEVDjxvMwx0dozANn0="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-json"; }; @@ -1330,23 +1374,23 @@ }; jsonnet = buildGrammar { language = "jsonnet"; - version = "0.0.0+rev=d34615f"; + version = "0.0.0+rev=ddd075f"; src = fetchFromGitHub { owner = "sourcegraph"; repo = "tree-sitter-jsonnet"; - rev = "d34615fa12cc1d1cfc1f1f1a80acc9db80ee4596"; - hash = "sha256-jjDjntNm0YAsG6Ec2n0eB8BjpgEQEAjV8LAZ3GGYhG8="; + rev = "ddd075f1939aed8147b7aa67f042eda3fce22790"; + hash = "sha256-ODGRkirfUG8DqV6ZcGRjKeCyEtsU0r+ICK0kCG6Xza0="; }; meta.homepage = "https://github.com/sourcegraph/tree-sitter-jsonnet"; }; julia = buildGrammar { language = "julia"; - version = "0.0.0+rev=f1baa5f"; + version = "0.0.0+rev=3520b57"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-julia"; - rev = "f1baa5f8e271109d01cc8ff7473c11df2d8a9aee"; - hash = "sha256-a0yLJMnXllHPij8fBjwqYgKRc6GxHHCQjSbPOKdLh9I="; + rev = "3520b57e418f734f582215181ecd926a6178c90f"; + hash = "sha256-IPtEDuYMMZ/0ARvO/Cs8RCofJJE9S/30StvV2oSW41I="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-julia"; }; @@ -1385,12 +1429,12 @@ }; kotlin = buildGrammar { language = "kotlin"; - version = "0.0.0+rev=8d9d372"; + version = "0.0.0+rev=ec98567"; src = fetchFromGitHub { owner = "fwcd"; repo = "tree-sitter-kotlin"; - rev = "8d9d372b09fa4c3735657c5fc2ad03e53a5f05f5"; - hash = "sha256-uaoFBA8rLhlzmDQ9sCbBU5KRSb63k1DSa6VvmioRSNw="; + rev = "ec985672ff21f7fd7f835869d8021e8f87304bb4"; + hash = "sha256-ThttqJxC3yaGufY2H9H5KgUu2bSTp+BKInyi0vucrS8="; }; meta.homepage = "https://github.com/fwcd/tree-sitter-kotlin"; }; @@ -1429,12 +1473,12 @@ }; latex = buildGrammar { language = "latex"; - version = "0.0.0+rev=efe5afd"; + version = "0.0.0+rev=90fd989"; src = fetchFromGitHub { owner = "latex-lsp"; repo = "tree-sitter-latex"; - rev = "efe5afdbb59b70214e6d70db5197dc945d5b213e"; - hash = "sha256-4sFqboyE94yvkZYKw5wgQjdVkNaIGLif3qB8GMCEBE0="; + rev = "90fd9894bebddce79f5b8041e7f82523364a619b"; + hash = "sha256-+wUGNYpw2udCrF4+qMD/4TAPkBCB7q/49Qx/k/FQa3U="; }; generate = true; meta.homepage = "https://github.com/latex-lsp/tree-sitter-latex"; @@ -1452,12 +1496,12 @@ }; leo = buildGrammar { language = "leo"; - version = "0.0.0+rev=304611b"; + version = "0.0.0+rev=6ca11a9"; src = fetchFromGitHub { owner = "r001"; repo = "tree-sitter-leo"; - rev = "304611b5eaf53aca07459a0a03803b83b6dfd3b3"; - hash = "sha256-D3jtNBYLgN2/0TnbOMJrsuZrP+PMr835aDYlCwIPPrk="; + rev = "6ca11a96fc2cab51217e0cf4a2f9ed3ea63e28fb"; + hash = "sha256-ye2zzLNZC2ZJqnXtBl7fdSC78kph3rs7j4whIdfDYAE="; }; meta.homepage = "https://github.com/r001/tree-sitter-leo"; }; @@ -1474,12 +1518,12 @@ }; liquid = buildGrammar { language = "liquid"; - version = "0.0.0+rev=7862a34"; + version = "0.0.0+rev=23ac814"; src = fetchFromGitHub { owner = "hankthetank27"; repo = "tree-sitter-liquid"; - rev = "7862a3424832c3a9d45eb21143b375837bd6573b"; - hash = "sha256-F/nP+zXySjKHX9Y9zqexhwn02sZejUXMPDcWRh6s7Yo="; + rev = "23ac814111e2b4b4b083e2c92219af2d5b74d13d"; + hash = "sha256-WZSvUiX1bKEfzXHVHC0AvzHpgyPD9JL+NgsoBx9mktQ="; }; meta.homepage = "https://github.com/hankthetank27/tree-sitter-liquid"; }; @@ -1507,12 +1551,12 @@ }; lua = buildGrammar { language = "lua"; - version = "0.0.0+rev=a24dab1"; + version = "0.0.0+rev=99fc677"; src = fetchFromGitHub { owner = "MunifTanjim"; repo = "tree-sitter-lua"; - rev = "a24dab177e58c9c6832f96b9a73102a0cfbced4a"; - hash = "sha256-uFaEptW4wPrqgHfB1mYmVltf+4no61L2cPgpsr5qBIU="; + rev = "99fc677e6971c425e8d407f59c77ab897e585c92"; + hash = "sha256-Q2LtrifoKf16N1dRBf2xLi12kpMkcFncZL4jaVbtK3M="; }; meta.homepage = "https://github.com/MunifTanjim/tree-sitter-lua"; }; @@ -1573,36 +1617,36 @@ }; markdown = buildGrammar { language = "markdown"; - version = "0.0.0+rev=7fe453b"; + version = "0.0.0+rev=c25b635"; src = fetchFromGitHub { owner = "MDeiml"; repo = "tree-sitter-markdown"; - rev = "7fe453beacecf02c86f7736439f238f5bb8b5c9b"; - hash = "sha256-Ai8w5fVtN6NofEGG3VQNd8pNPVijYw6nDzrhedKMOe4="; + rev = "c25b6354120182f1e0d5caa52f717b097a7e46a3"; + hash = "sha256-OdBFhflQbHlEcl6hKHnFiwNVf6DkSvJD7FbE6uiZB58="; }; location = "tree-sitter-markdown"; meta.homepage = "https://github.com/MDeiml/tree-sitter-markdown"; }; markdown_inline = buildGrammar { language = "markdown_inline"; - version = "0.0.0+rev=7fe453b"; + version = "0.0.0+rev=c25b635"; src = fetchFromGitHub { owner = "MDeiml"; repo = "tree-sitter-markdown"; - rev = "7fe453beacecf02c86f7736439f238f5bb8b5c9b"; - hash = "sha256-Ai8w5fVtN6NofEGG3VQNd8pNPVijYw6nDzrhedKMOe4="; + rev = "c25b6354120182f1e0d5caa52f717b097a7e46a3"; + hash = "sha256-OdBFhflQbHlEcl6hKHnFiwNVf6DkSvJD7FbE6uiZB58="; }; location = "tree-sitter-markdown-inline"; meta.homepage = "https://github.com/MDeiml/tree-sitter-markdown"; }; matlab = buildGrammar { language = "matlab"; - version = "0.0.0+rev=0d5a05e"; + version = "0.0.0+rev=306c43a"; src = fetchFromGitHub { owner = "acristoffers"; repo = "tree-sitter-matlab"; - rev = "0d5a05e543af2de60cdb5e71f0f5888c95ab936f"; - hash = "sha256-B5BoHezwfUW156S5ixOGukjX+qFGLmS0WqxpT0MVNG8="; + rev = "306c43ab28b7b8a4976e40ff0a7c26b019ad52df"; + hash = "sha256-hueZg7hoZb11+ukrZgK1+da0w9J22jsj1BexlF4USXY="; }; meta.homepage = "https://github.com/acristoffers/tree-sitter-matlab"; }; @@ -1641,24 +1685,24 @@ }; mlir = buildGrammar { language = "mlir"; - version = "0.0.0+rev=affbd6f"; + version = "0.0.0+rev=02af5a1"; src = fetchFromGitHub { owner = "artagnon"; repo = "tree-sitter-mlir"; - rev = "affbd6f3b08155826a22cfa8373147acbf60f1f1"; - hash = "sha256-zIbtvtpLQmXhFj5KDQRwsUJfUi6AkZjfp55n0X5lN4o="; + rev = "02af5a1a1cfa69a094e3136b10dfb602f968232e"; + hash = "sha256-zCv47UvUIzdoJwQwKMrFyR1eMdU6ScSGfODdXomBapY="; }; generate = true; meta.homepage = "https://github.com/artagnon/tree-sitter-mlir"; }; muttrc = buildGrammar { language = "muttrc"; - version = "0.0.0+rev=90ef608"; + version = "0.0.0+rev=173b0ab"; src = fetchFromGitHub { owner = "neomutt"; repo = "tree-sitter-muttrc"; - rev = "90ef60852c410bd964cd3b954366e4c403c17314"; - hash = "sha256-GiM9jXtaL/GEUmBuiMB7pZP0VnHVzRETwwCHQsHyaTM="; + rev = "173b0ab53a9c07962c9777189c4c70e90f1c1837"; + hash = "sha256-zma/oyMFI+r+/616yXV9b4ptC1FNYpHlpqY/Fez++n0="; }; meta.homepage = "https://github.com/neomutt/tree-sitter-muttrc"; }; @@ -1686,12 +1730,12 @@ }; nickel = buildGrammar { language = "nickel"; - version = "0.0.0+rev=3039ad9"; + version = "0.0.0+rev=88d836a"; src = fetchFromGitHub { owner = "nickel-lang"; repo = "tree-sitter-nickel"; - rev = "3039ad9e9af3c1ffe049a04ee83a2b489915b0b9"; - hash = "sha256-a4NU9tzQ+g9dxF3/LAkEm83QnEJcAoNcIrrQwXSSTPE="; + rev = "88d836a24b3b11c8720874a1a9286b8ae838d30a"; + hash = "sha256-IvlUwNO/wLLPuqCZf0NtSxMdDx+4ASYYOobklY/97aQ="; }; meta.homepage = "https://github.com/nickel-lang/tree-sitter-nickel"; }; @@ -1730,23 +1774,23 @@ }; nix = buildGrammar { language = "nix"; - version = "0.0.0+rev=68d3b79"; + version = "0.0.0+rev=537095d"; src = fetchFromGitHub { owner = "cstrahan"; repo = "tree-sitter-nix"; - rev = "68d3b7999ad89d31690461884270e5658e0a22c4"; - hash = "sha256-EMkhmAGi2NPTeliGZyWo/UtYJnNJAkp04/LMs4DDF8s="; + rev = "537095ddc80cf610fa75a2a0149fe9799b011014"; + hash = "sha256-MMaeGnlNTKHjjzZd70OGCO0GOXhbjcL6bvRKpnLmDw0="; }; meta.homepage = "https://github.com/cstrahan/tree-sitter-nix"; }; norg = buildGrammar { language = "norg"; - version = "0.0.0+rev=aa1a1a7"; + version = "0.0.0+rev=d89d95a"; src = fetchFromGitHub { owner = "nvim-neorg"; repo = "tree-sitter-norg"; - rev = "aa1a1a7ded81a094cc3d5cb14bea6f34b86d8688"; - hash = "sha256-baJdvWfwUx1U2RX0G6ECaGPGZBFbWsVUhh3kYPaYeiE="; + rev = "d89d95af13d409f30a6c7676387bde311ec4a2c8"; + hash = "sha256-z3h5qMuNKnpQgV62xZ02F5vWEq4VEnm5lxwEnIFu+Rw="; }; meta.homepage = "https://github.com/nvim-neorg/tree-sitter-norg"; }; @@ -1785,24 +1829,24 @@ }; ocaml = buildGrammar { language = "ocaml"; - version = "0.0.0+rev=036226e"; + version = "0.0.0+rev=14beb5e"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-ocaml"; - rev = "036226e5edb410aec004cc7ac0f4b2014dd04a0e"; - hash = "sha256-p8e4xfcGXDzpgheAWG+fSUKCpqEsSrHw9waoTRNnrnI="; + rev = "14beb5ef0e7488bf1d93b8c67f69942324fee557"; + hash = "sha256-N8iqUa9CJ27wlUtfoMd9UO72q+kxTOGPVCblW07C0HU="; }; location = "grammars/ocaml"; meta.homepage = "https://github.com/tree-sitter/tree-sitter-ocaml"; }; ocaml_interface = buildGrammar { language = "ocaml_interface"; - version = "0.0.0+rev=036226e"; + version = "0.0.0+rev=14beb5e"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-ocaml"; - rev = "036226e5edb410aec004cc7ac0f4b2014dd04a0e"; - hash = "sha256-p8e4xfcGXDzpgheAWG+fSUKCpqEsSrHw9waoTRNnrnI="; + rev = "14beb5ef0e7488bf1d93b8c67f69942324fee557"; + hash = "sha256-N8iqUa9CJ27wlUtfoMd9UO72q+kxTOGPVCblW07C0HU="; }; location = "grammars/interface"; meta.homepage = "https://github.com/tree-sitter/tree-sitter-ocaml"; @@ -1843,12 +1887,12 @@ }; pascal = buildGrammar { language = "pascal"; - version = "0.0.0+rev=a9ee969"; + version = "0.0.0+rev=d0ebabe"; src = fetchFromGitHub { owner = "Isopod"; repo = "tree-sitter-pascal"; - rev = "a9ee969dec5b2e3b2ccccc5954fec04100c7619e"; - hash = "sha256-U45RkRpE1EdX2ijGyjTKVNRcSu6E6Dh9Z7G9bp24T80="; + rev = "d0ebabefaea9ac3f6fc3004cf08cd121b66da9e4"; + hash = "sha256-T47xDjEbcDLg1IOu2HsIGA7j/CFMCagfV4xKdFYYoec="; }; meta.homepage = "https://github.com/Isopod/tree-sitter-pascal"; }; @@ -1876,47 +1920,47 @@ }; perl = buildGrammar { language = "perl"; - version = "0.0.0+rev=3a21d9c"; + version = "0.0.0+rev=70db420"; src = fetchFromGitHub { owner = "tree-sitter-perl"; repo = "tree-sitter-perl"; - rev = "3a21d9cb2a20a062c17f8f53d5983fd473c4673c"; - hash = "sha256-cBF3wvAl5PJCzjlTn1wx9+Q81xsitKW3+TwD0yAoWM4="; + rev = "70db420b20885ecd7268e5a710ebb3aeaef3a293"; + hash = "sha256-4iatIqb2IaZ6McbkBY6JQiD2IMm3PNLz7qve+2iOrU8="; }; meta.homepage = "https://github.com/tree-sitter-perl/tree-sitter-perl"; }; php = buildGrammar { language = "php"; - version = "0.0.0+rev=c07d697"; + version = "0.0.0+rev=74c6b0d"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-php"; - rev = "c07d69739ba71b5a449bdbb7735991f8aabf8546"; - hash = "sha256-It3UC98PZn1jXJ/LQfPdJ5e/dRdADPMgAawBzvlJfQE="; + rev = "74c6b0d560c2660db4d9e8c76b681f538d494160"; + hash = "sha256-mJh8MILlVSjG3bOvYPw2Wc7XFhL+ozrdvcnr1qR6pZE="; }; location = "php"; meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; }; php_only = buildGrammar { language = "php_only"; - version = "0.0.0+rev=c07d697"; + version = "0.0.0+rev=74c6b0d"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-php"; - rev = "c07d69739ba71b5a449bdbb7735991f8aabf8546"; - hash = "sha256-It3UC98PZn1jXJ/LQfPdJ5e/dRdADPMgAawBzvlJfQE="; + rev = "74c6b0d560c2660db4d9e8c76b681f538d494160"; + hash = "sha256-mJh8MILlVSjG3bOvYPw2Wc7XFhL+ozrdvcnr1qR6pZE="; }; location = "php_only"; meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; }; phpdoc = buildGrammar { language = "phpdoc"; - version = "0.0.0+rev=1d0e255"; + version = "0.0.0+rev=df5e7da"; src = fetchFromGitHub { owner = "claytonrcarter"; repo = "tree-sitter-phpdoc"; - rev = "1d0e255b37477d0ca46f1c9e9268c8fa76c0b3fc"; - hash = "sha256-EWj/Av8+Ri7KiC9LzH73ytufjkp3MxBPwfm6mF3IGD8="; + rev = "df5e7da4b83da072f99135079ac3436550b8d67d"; + hash = "sha256-LIqu5+DaybdxY57IPwVACtgrGTiCXIiIIqUK45ISzYw="; }; meta.homepage = "https://github.com/claytonrcarter/tree-sitter-phpdoc"; }; @@ -1944,12 +1988,12 @@ }; pod = buildGrammar { language = "pod"; - version = "0.0.0+rev=39da859"; + version = "0.0.0+rev=0bf8387"; src = fetchFromGitHub { owner = "tree-sitter-perl"; repo = "tree-sitter-pod"; - rev = "39da859947b94abdee43e431368e1ae975c0a424"; - hash = "sha256-sMUlAtl0IaykKlEhOiAkdrLNNJiCS0L7gj7+2WHwO5U="; + rev = "0bf8387987c21bf2f8ed41d2575a8f22b139687f"; + hash = "sha256-yV2kVAxWxdyIJ3g2oivDc01SAQF0lc7UMT2sfv9lKzI="; }; meta.homepage = "https://github.com/tree-sitter-perl/tree-sitter-pod"; }; @@ -2134,23 +2178,23 @@ }; python = buildGrammar { language = "python"; - version = "0.0.0+rev=0dee05e"; + version = "0.0.0+rev=8c65e25"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-python"; - rev = "0dee05ef958ba2eae88d1e65f24b33cad70d4367"; - hash = "sha256-H6t98tuXJW2VD5Ay+rOfnp9p5ZljyPxvtIy60PycMUQ="; + rev = "8c65e256f971812276ff2a69a2f515c218ed7f82"; + hash = "sha256-8mdBN1vP64PJKxN2y0GoaObLs6j/lcsU47sr+8/8oTQ="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-python"; }; ql = buildGrammar { language = "ql"; - version = "0.0.0+rev=42becd6"; + version = "0.0.0+rev=c73c31c"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-ql"; - rev = "42becd6f8f7bae82c818fa3abb1b6ff34b552310"; - hash = "sha256-OFqBI9u5Ik6AoG88v7qTVnol5H9O/n1vaZhoxQ7Sj70="; + rev = "c73c31c89cb0019ef56fe8bc1723e7c36e0be607"; + hash = "sha256-C/FGCN1JAThAAyMgSt8o0yf+qfYKF98jPTitfXrUytI="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-ql"; }; @@ -2167,12 +2211,12 @@ }; qmljs = buildGrammar { language = "qmljs"; - version = "0.0.0+rev=febf48a"; + version = "0.0.0+rev=cc4186f"; src = fetchFromGitHub { owner = "yuja"; repo = "tree-sitter-qmljs"; - rev = "febf48a5b6928600cd8fb2a01254743af550780d"; - hash = "sha256-bRb5h6gBBxbzhxpCxJK8CsQ5BCtPTuKtuZesE/+mDY0="; + rev = "cc4186f15e2829385be33440561fdd17b1c40cf7"; + hash = "sha256-g05fmFG/+DiW8VOCfH+8//ksFNYZ8V9RAn7hGJ7Jl6w="; }; meta.homepage = "https://github.com/yuja/tree-sitter-qmljs"; }; @@ -2189,23 +2233,23 @@ }; r = buildGrammar { language = "r"; - version = "0.0.0+rev=b1e211f"; + version = "0.0.0+rev=c8b6e5f"; src = fetchFromGitHub { owner = "r-lib"; repo = "tree-sitter-r"; - rev = "b1e211f52ad8f8e1e182bbbcc16dcd5e3688eb7d"; - hash = "sha256-fgK8UGNaoJf3+lao/q1Vfd+2U/YNgrZu3kbyZ1qOIus="; + rev = "c8b6e5f3f3c055cfc76471ebc912286e9e73d7d2"; + hash = "sha256-B+pDrkXIaWd16hN5FzunrdmO/hbqQdHI6pgGUdWZYEg="; }; meta.homepage = "https://github.com/r-lib/tree-sitter-r"; }; racket = buildGrammar { language = "racket"; - version = "0.0.0+rev=171f52a"; + version = "0.0.0+rev=5b211bf"; src = fetchFromGitHub { owner = "6cdh"; repo = "tree-sitter-racket"; - rev = "171f52a8c0ed635b85cd42d1e36d82f1066a03b4"; - hash = "sha256-iuigtcakpqm5vPuxsSV5PR32pwzyPMmldYXaJmzO3d0="; + rev = "5b211bf93021d1c45f39aa96898be9f794f087e4"; + hash = "sha256-ry9j5nEcXiSD+xJYzT0mY37hGeDlVRYq7egUeuw1PfU="; }; meta.homepage = "https://github.com/6cdh/tree-sitter-racket"; }; @@ -2266,12 +2310,12 @@ }; regex = buildGrammar { language = "regex"; - version = "0.0.0+rev=47007f1"; + version = "0.0.0+rev=f70251e"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-regex"; - rev = "47007f195752d8e57bda80b0b6cdb2d173a9f7d7"; - hash = "sha256-X1CEk4nLxXY1a3PHG+4uSDKAXmsJIhd0nVYieTaHOkk="; + rev = "f70251e1f1d72bd6dc1f897f956f9112f8668441"; + hash = "sha256-G0I71WXSBHttsLfD18W/9RIrNAJN79kMPOcYt/k7KSI="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-regex"; }; @@ -2376,34 +2420,34 @@ }; ruby = buildGrammar { language = "ruby"; - version = "0.0.0+rev=0ffe457"; + version = "0.0.0+rev=a66579f"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-ruby"; - rev = "0ffe457fb6aabf064f173fd30ea356845cef2513"; - hash = "sha256-E46Y++kaipMWZwyfQ40tWj3CTIP25XQ90x2FsQaQ63s="; + rev = "a66579f70d6f50ffd81a16fc3d3358e2ac173c88"; + hash = "sha256-ApuNco5q0hq4/36D7yWv87+d3h33Y9pKtdTUox4tIiw="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-ruby"; }; rust = buildGrammar { language = "rust"; - version = "0.0.0+rev=9c84af0"; + version = "0.0.0+rev=6b7d1fc"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-rust"; - rev = "9c84af007b0f144954adb26b3f336495cbb320a7"; - hash = "sha256-mwnikq3s7Ien68DYT3p9oVGy7xjBgtiJMHAwMj5HXHI="; + rev = "6b7d1fc73ded57f73b1619bcf4371618212208b1"; + hash = "sha256-cK3dswI0lgsuXp8CDOj/mjgnuWsCUvT3DX++kpWJoCI="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-rust"; }; scala = buildGrammar { language = "scala"; - version = "0.0.0+rev=a13f2d1"; + version = "0.0.0+rev=b02af60"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-scala"; - rev = "a13f2d1ee9609cc5c4c8ffce9640c353b77a24d8"; - hash = "sha256-KaELrU+4XMHsSacNZnPlWvfNcQRZizQNhxfbsFpsBdw="; + rev = "b02af60518ae1633d552ae2d0f25ca5e05f274f7"; + hash = "sha256-mfbYjU4Xs61oLqgABV1UXR/g4Qd7KRdlawX3/lAz2jc="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala"; }; @@ -2421,12 +2465,12 @@ }; scheme = buildGrammar { language = "scheme"; - version = "0.0.0+rev=8f9dff3"; + version = "0.0.0+rev=63e25a4"; src = fetchFromGitHub { owner = "6cdh"; repo = "tree-sitter-scheme"; - rev = "8f9dff3d038f09934db5ea113cebc59c74447743"; - hash = "sha256-QECZQVhWntN+3wnIA+U3JesuoLZiSU7pOrsKRdVPLtk="; + rev = "63e25a4a84142ae7ee0ee01fe3a32c985ca16745"; + hash = "sha256-FK3F7v2LqAtXZM/CKCijWfXTF6TUhLmiVXScZqt46Io="; }; meta.homepage = "https://github.com/6cdh/tree-sitter-scheme"; }; @@ -2441,25 +2485,37 @@ }; meta.homepage = "https://github.com/serenadeai/tree-sitter-scss"; }; + sflog = buildGrammar { + language = "sflog"; + version = "0.0.0+rev=602cc4b"; + src = fetchFromGitHub { + owner = "aheber"; + repo = "tree-sitter-sfapex"; + rev = "602cc4b050ef1e14a69acc2ea094968bf928fa59"; + hash = "sha256-OEaeH+iVWOtDKVBAAbFPN96uyKlcuDHIObsk6SP78SY="; + }; + location = "sflog"; + meta.homepage = "https://github.com/aheber/tree-sitter-sfapex"; + }; slang = buildGrammar { language = "slang"; - version = "0.0.0+rev=d84b43d"; + version = "0.0.0+rev=4a3fabd"; src = fetchFromGitHub { owner = "theHamsta"; repo = "tree-sitter-slang"; - rev = "d84b43d75d65bbc4ba57166ce17555f32c0b8983"; - hash = "sha256-KcFntOBXADBu7nSFQ5XVY6/nfSl2uLJfhsfVFFjudd8="; + rev = "4a3fabd26b09efd7431ea4899e5f2d81b568a4b9"; + hash = "sha256-SlLN4KkuSuywWtZlP8J0/bf4sFIres1er3HiK+gj4vA="; }; meta.homepage = "https://github.com/theHamsta/tree-sitter-slang"; }; slint = buildGrammar { language = "slint"; - version = "0.0.0+rev=4a0558c"; + version = "0.0.0+rev=34ccfd5"; src = fetchFromGitHub { owner = "slint-ui"; repo = "tree-sitter-slint"; - rev = "4a0558cc0fcd7a6110815b9bbd7cc12d7ab31e74"; - hash = "sha256-F+DtGNXc00lv08EnR6sQgTQVYkttgf/xw3bq3IdsQMA="; + rev = "34ccfd58d3baee7636f62d9326f32092264e8407"; + hash = "sha256-2R+TxjM3Pd2a9pyr2SwZd9+YYj1o8KsS+4n5dFxEMMM="; }; meta.homepage = "https://github.com/slint-ui/tree-sitter-slint"; }; @@ -2487,12 +2543,12 @@ }; snakemake = buildGrammar { language = "snakemake"; - version = "0.0.0+rev=46d4de8"; + version = "0.0.0+rev=e909815"; src = fetchFromGitHub { owner = "osthomas"; repo = "tree-sitter-snakemake"; - rev = "46d4de8e6cfca8a97c0489aea936bb15beeaf666"; - hash = "sha256-MNJLveFI5oybM9QE8wgYT7k3GK1E4lIOm3xWJmJazls="; + rev = "e909815acdbe37e69440261ebb1091ed52e1dec6"; + hash = "sha256-d2n1fsdt4+1hv4In+o6GpGyfeyVHpn39Njm7tQ2zyYQ="; }; meta.homepage = "https://github.com/osthomas/tree-sitter-snakemake"; }; @@ -2509,24 +2565,24 @@ }; soql = buildGrammar { language = "soql"; - version = "0.0.0+rev=c99ad4b"; + version = "0.0.0+rev=602cc4b"; src = fetchFromGitHub { owner = "aheber"; repo = "tree-sitter-sfapex"; - rev = "c99ad4b16d112fea91745e3f1b769754239fdaba"; - hash = "sha256-tl/MajAsdu7YxQcdFZmupZldhCl6QB//4FwiBR44nm4="; + rev = "602cc4b050ef1e14a69acc2ea094968bf928fa59"; + hash = "sha256-OEaeH+iVWOtDKVBAAbFPN96uyKlcuDHIObsk6SP78SY="; }; location = "soql"; meta.homepage = "https://github.com/aheber/tree-sitter-sfapex"; }; sosl = buildGrammar { language = "sosl"; - version = "0.0.0+rev=c99ad4b"; + version = "0.0.0+rev=602cc4b"; src = fetchFromGitHub { owner = "aheber"; repo = "tree-sitter-sfapex"; - rev = "c99ad4b16d112fea91745e3f1b769754239fdaba"; - hash = "sha256-tl/MajAsdu7YxQcdFZmupZldhCl6QB//4FwiBR44nm4="; + rev = "602cc4b050ef1e14a69acc2ea094968bf928fa59"; + hash = "sha256-OEaeH+iVWOtDKVBAAbFPN96uyKlcuDHIObsk6SP78SY="; }; location = "sosl"; meta.homepage = "https://github.com/aheber/tree-sitter-sfapex"; @@ -2610,12 +2666,12 @@ }; styled = buildGrammar { language = "styled"; - version = "0.0.0+rev=65835cc"; + version = "0.0.0+rev=b729198"; src = fetchFromGitHub { owner = "mskelton"; repo = "tree-sitter-styled"; - rev = "65835cca33a5f033bcde580ed66cde01c1fabbbe"; - hash = "sha256-pcvt3ow6rVYCYbcVzIz3FGWpqoVCPX7zuOj3vKpkOfU="; + rev = "b729198642b3058d4ea0f864d86efb271d594595"; + hash = "sha256-9hj6l3eI5p7q1XQihM19deb7+TdLVscIM31TbDRcqo8="; }; meta.homepage = "https://github.com/mskelton/tree-sitter-styled"; }; @@ -2643,23 +2699,23 @@ }; svelte = buildGrammar { language = "svelte"; - version = "0.0.0+rev=7ab8221"; + version = "0.0.0+rev=774a65a"; src = fetchFromGitHub { owner = "tree-sitter-grammars"; repo = "tree-sitter-svelte"; - rev = "7ab8221e3f378a3b04b4b488f07c1f408c5bd0d8"; - hash = "sha256-ooeQNwFgDZrn+Vj6nFOS8TJMknl/DgbEghfm0e1EJDE="; + rev = "774a65aea563accc35f5d45fafa4d96ec5761f57"; + hash = "sha256-mkw3s0pZQ6ry+fiTk2fJeKVA7Nqyv2Z2R1AFZknzpFM="; }; meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-svelte"; }; swift = buildGrammar { language = "swift"; - version = "0.0.0+rev=769bb83"; + version = "0.0.0+rev=7d303df"; src = fetchFromGitHub { owner = "alex-pinkus"; repo = "tree-sitter-swift"; - rev = "769bb834feb2947f2c706d82830b0a05958727de"; - hash = "sha256-Rqvk1dBEBAnQV/51MUSzgzX0J/pecwA5o8SBOfrvu+I="; + rev = "7d303df70012edb7385a6a3b3938e0e7b89ecfbd"; + hash = "sha256-aTzbNyg248RG00qj7LiLDQAI63c7cXx++TGoANkyp2c="; }; generate = true; meta.homepage = "https://github.com/alex-pinkus/tree-sitter-swift"; @@ -2677,12 +2733,12 @@ }; systemtap = buildGrammar { language = "systemtap"; - version = "0.0.0+rev=1af543a"; + version = "0.0.0+rev=f2b378a"; src = fetchFromGitHub { owner = "ok-ryoko"; repo = "tree-sitter-systemtap"; - rev = "1af543a96d060b1f808982037bfc54cc02218edd"; - hash = "sha256-KCsISHv9yglW+63UY/9Dhb0yVz7Ha76EyHo65Si6SpY="; + rev = "f2b378a9af0b7e1192cff67a5fb45508c927205d"; + hash = "sha256-HzV6RZMTSa41Q5hMiM1FwiHLbho62fuywtKzqrwjNDQ="; }; meta.homepage = "https://github.com/ok-ryoko/tree-sitter-systemtap"; }; @@ -2721,23 +2777,23 @@ }; tact = buildGrammar { language = "tact"; - version = "0.0.0+rev=91cc49a"; + version = "0.0.0+rev=b3710fe"; src = fetchFromGitHub { owner = "tact-lang"; repo = "tree-sitter-tact"; - rev = "91cc49a83f4f0b3a756bf7d0e65403a9cf757003"; - hash = "sha256-/u1ZLk9e7uowTnSkxrwXOOmcesqp3uDTRJOshKNc8lQ="; + rev = "b3710fe2723bd9b285de7f3d0c0717bebf3f17bd"; + hash = "sha256-FJj9kAPHyk0ZenwrwbPJJD+4rs5QTrh6KFIa4tmBr3w="; }; meta.homepage = "https://github.com/tact-lang/tree-sitter-tact"; }; tcl = buildGrammar { language = "tcl"; - version = "0.0.0+rev=8784024"; + version = "0.0.0+rev=cdba4ab"; src = fetchFromGitHub { owner = "tree-sitter-grammars"; repo = "tree-sitter-tcl"; - rev = "8784024358c233efd0f3a6fd9e7a3c5852e628bc"; - hash = "sha256-/uw+Nb5A+DklN+BxMpufSCMb/VOE/zqJNnLZVFwjWtc="; + rev = "cdba4ab96a9896492d0d5219b70300c8783ca4e7"; + hash = "sha256-NEaB52q2GEEy25JMZwbbyE1Aj4UkO17K9KBB2KqmVHQ="; }; meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-tcl"; }; @@ -2755,12 +2811,12 @@ }; templ = buildGrammar { language = "templ"; - version = "0.0.0+rev=de0d0ee"; + version = "0.0.0+rev=0524da9"; src = fetchFromGitHub { owner = "vrischmann"; repo = "tree-sitter-templ"; - rev = "de0d0ee129cf643872e8e0d5c4a6589b5a3aae23"; - hash = "sha256-eH2QXynJLM2dBtW4UPXsk+RYFUp+z2SFWaN7KO5cpE0="; + rev = "0524da9e1f14b9b7d7d6d36608293f85a550b263"; + hash = "sha256-4KFJpMZfJP9I66HGMSP5MsZU9dYN95enz4cCoMytt9M="; }; meta.homepage = "https://github.com/vrischmann/tree-sitter-templ"; }; @@ -2822,12 +2878,12 @@ }; tmux = buildGrammar { language = "tmux"; - version = "0.0.0+rev=9138ea5"; + version = "0.0.0+rev=0252ecd"; src = fetchFromGitHub { owner = "Freed-Wu"; repo = "tree-sitter-tmux"; - rev = "9138ea508410e0f34da2666609f600f65e944f22"; - hash = "sha256-aoKrrDvOM4yOgE7rulGBoN1GeBBHN+dPfyNytC4oMC4="; + rev = "0252ecd080016e45e6305ef1a943388f5ae2f4b4"; + hash = "sha256-8f78qYxqoiOAnl3HzEbF4Rci3rFy0SnELoU+QP7pUlk="; }; meta.homepage = "https://github.com/Freed-Wu/tree-sitter-tmux"; }; @@ -2867,12 +2923,12 @@ }; tsx = buildGrammar { language = "tsx"; - version = "0.0.0+rev=198d035"; + version = "0.0.0+rev=9951831"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-typescript"; - rev = "198d03553f43a45b92ac5d0ee167db3fec6a6fd6"; - hash = "sha256-U597+o8gakd4nU9H2FE2aVhGqSG/eRh6BUhtEmwMzrU="; + rev = "9951831c5f05be434514dce38b30eef213667601"; + hash = "sha256-CFEYTfEqJdAQMaKRB1wThDTiqPcq5u53WAQhgI2+PN0="; }; location = "tsx"; meta.homepage = "https://github.com/tree-sitter/tree-sitter-typescript"; @@ -2901,12 +2957,12 @@ }; typescript = buildGrammar { language = "typescript"; - version = "0.0.0+rev=198d035"; + version = "0.0.0+rev=9951831"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-typescript"; - rev = "198d03553f43a45b92ac5d0ee167db3fec6a6fd6"; - hash = "sha256-U597+o8gakd4nU9H2FE2aVhGqSG/eRh6BUhtEmwMzrU="; + rev = "9951831c5f05be434514dce38b30eef213667601"; + hash = "sha256-CFEYTfEqJdAQMaKRB1wThDTiqPcq5u53WAQhgI2+PN0="; }; location = "typescript"; meta.homepage = "https://github.com/tree-sitter/tree-sitter-typescript"; @@ -3002,12 +3058,12 @@ }; v = buildGrammar { language = "v"; - version = "0.0.0+rev=7f80a04"; + version = "0.0.0+rev=d63bc6c"; src = fetchFromGitHub { owner = "vlang"; repo = "v-analyzer"; - rev = "7f80a0441ff2ca6aa8ced8e1ee87cead9dd26515"; - hash = "sha256-eTYqzdhxVI8jQXZ4FopReVYZJle2D0b31PjkZ2xC4f4="; + rev = "d63bc6c08a88715c89f4b1b06642e130dd899aba"; + hash = "sha256-RYYxkYGaWKFvkAgthchwxWqA3WYNzwd9dAJPv4um4jc="; }; location = "tree_sitter_v"; meta.homepage = "https://github.com/vlang/v-analyzer"; @@ -3047,23 +3103,23 @@ }; vhdl = buildGrammar { language = "vhdl"; - version = "0.0.0+rev=4ab3e25"; + version = "0.0.0+rev=3f13cd1"; src = fetchFromGitHub { owner = "jpt13653903"; repo = "tree-sitter-vhdl"; - rev = "4ab3e251eae8890a020d083d00acd1b8c2653c07"; - hash = "sha256-egNgZ1GgRNvIdH08cf6V83bMeOECs23yiV5RzcXZENg="; + rev = "3f13cd14952b39ccf6817f58880834b84565ca54"; + hash = "sha256-bChHzBGWlfJpSUpUqQW8L1y4CiM1Qqen3MaGcUT9lh0="; }; meta.homepage = "https://github.com/jpt13653903/tree-sitter-vhdl"; }; vhs = buildGrammar { language = "vhs"; - version = "0.0.0+rev=90028bb"; + version = "0.0.0+rev=09f8fbf"; src = fetchFromGitHub { owner = "charmbracelet"; repo = "tree-sitter-vhs"; - rev = "90028bbadb267ead5b87830380f6a825147f0c0f"; - hash = "sha256-yxUVca44z4wtYsxQKaJQjMm0fFeKAOWFnIX+5k6+SJk="; + rev = "09f8fbfe40a3a699b200daca7d92e65fbbe9f9e6"; + hash = "sha256-TUA94sJVWGK0KdvMueyQDmU+AlhdCOg0mlwcfL0XG8E="; }; meta.homepage = "https://github.com/charmbracelet/tree-sitter-vhs"; }; @@ -3135,12 +3191,12 @@ }; wing = buildGrammar { language = "wing"; - version = "0.0.0+rev=bd1d35c"; + version = "0.0.0+rev=76e0c25"; src = fetchFromGitHub { owner = "winglang"; repo = "tree-sitter-wing"; - rev = "bd1d35cf3e013dc7e189b46a593bdc2b281b0dd7"; - hash = "sha256-jygMTswZ8r4tUJQ0lUH8GHz56dyGd6rV1wL5i75Ni88="; + rev = "76e0c25844a66ebc6e866d690fcc5f4e90698947"; + hash = "sha256-N16cZK1dERqFd1FR35AfrsBy5EeeOPSp0FaZ83pMt7I="; }; meta.homepage = "https://github.com/winglang/tree-sitter-wing"; }; @@ -3213,24 +3269,24 @@ }; zathurarc = buildGrammar { language = "zathurarc"; - version = "0.0.0+rev=6e7c8ed"; + version = "0.0.0+rev=0554b4a"; src = fetchFromGitHub { owner = "Freed-Wu"; repo = "tree-sitter-zathurarc"; - rev = "6e7c8edfcd6f5f7c12b2fa9ffc6d042f1b6d7068"; - hash = "sha256-tr9igIwfxXJJZAanRmDAhG3uu1vdT2nfW3Ng3EZ0094="; + rev = "0554b4a5d313244b7fc000cbb41c04afae4f4e31"; + hash = "sha256-edwLcz1WlcRJOoV2Unpho8wmi7TmcpwysBOAdRKprNw="; }; meta.homepage = "https://github.com/Freed-Wu/tree-sitter-zathurarc"; }; zig = buildGrammar { language = "zig"; - version = "0.0.0+rev=2bac4cc"; + version = "0.0.0+rev=21e2218"; src = fetchFromGitHub { - owner = "maxxnino"; + owner = "tree-sitter-grammars"; repo = "tree-sitter-zig"; - rev = "2bac4cc6c697d46a193905fef6d003bfa0bfabfd"; - hash = "sha256-IK9kCajZGwEiASa6Mv0oxuz85+QmI3S7Rl9lgHkApMc="; + rev = "21e2218e0ec7f4e3c0640d16bf8c67e6f0a61e18"; + hash = "sha256-BJ7rexbUbi92FRg5rhXTUpips4T9YtkEA/hVtd1tBFY="; }; - meta.homepage = "https://github.com/maxxnino/tree-sitter-zig"; + meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-zig"; }; } From 22b4614665874517be52e4f82a32557a056ab7b4 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Wed, 11 Sep 2024 11:00:21 -0500 Subject: [PATCH 109/232] luaModules.sqlite: fix checks --- pkgs/development/lua-modules/overrides.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/lua-modules/overrides.nix b/pkgs/development/lua-modules/overrides.nix index 358560cfc771..d0f8a2777e42 100644 --- a/pkgs/development/lua-modules/overrides.nix +++ b/pkgs/development/lua-modules/overrides.nix @@ -767,7 +767,6 @@ in }); sqlite = prev.sqlite.overrideAttrs (drv: { - doCheck = true; nativeCheckInputs = [ final.plenary-nvim neovim-unwrapped ]; @@ -784,7 +783,7 @@ in nvim --headless -i NONE \ -u test/minimal_init.vim --cmd "set rtp+=${vimPlugins.plenary-nvim}" \ - -c "PlenaryBustedDirectory test/auto/ { minimal_init = './test/minimal_init.vim' }" + -c "PlenaryBustedDirectory test/auto/ { sequential = true, minimal_init = './test/minimal_init.vim' }" ''; }); From b19131c8322b8bf900f5687394c8e6d7ccb45a23 Mon Sep 17 00:00:00 2001 From: PerchunPak Date: Wed, 11 Sep 2024 11:02:55 -0500 Subject: [PATCH 110/232] luaModules.neotest: enable checks and fix --- pkgs/development/lua-modules/overrides.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/lua-modules/overrides.nix b/pkgs/development/lua-modules/overrides.nix index d0f8a2777e42..91859ea2aab8 100644 --- a/pkgs/development/lua-modules/overrides.nix +++ b/pkgs/development/lua-modules/overrides.nix @@ -545,8 +545,7 @@ in }); neotest = prev.neotest.overrideAttrs(oa: { - # A few tests fail for strange reasons on darwin - doCheck = !stdenv.isDarwin; + doCheck = true; nativeCheckInputs = oa.nativeCheckInputs ++ [ final.nlua final.busted neovim-unwrapped ]; @@ -560,7 +559,7 @@ in export LUA_PATH="./lua/?.lua;./lua/?/init.lua;$LUA_PATH" nvim --headless -i NONE \ --cmd "set rtp+=${vimPlugins.plenary-nvim}" \ - -c "PlenaryBustedDirectory tests/ {}" + -c "PlenaryBustedDirectory tests/ {sequential = true}" runHook postCheck ''; From 395d9b67e322688a61c291b22057f16ee99b9bec Mon Sep 17 00:00:00 2001 From: PerchunPak Date: Tue, 20 Aug 2024 20:59:09 +0200 Subject: [PATCH 111/232] vimPlugins: truly resolve github repository redirects In the update script, there was a bug where some deprecations in `deprecated.json` were not deleted from the index file. And everything the script did was updating deprecation dates. This commit properly updates deprecated plugins and modifies dates to actual ones. --- .../editors/vim/plugins/deprecated.json | 14 ++--- .../editors/vim/plugins/vim-plugin-names | 58 +++++++++---------- 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/deprecated.json b/pkgs/applications/editors/vim/plugins/deprecated.json index c637246c92ad..1c794d394080 100644 --- a/pkgs/applications/editors/vim/plugins/deprecated.json +++ b/pkgs/applications/editors/vim/plugins/deprecated.json @@ -1,10 +1,10 @@ { "TrueZen-nvim": { - "date": "2022-09-02", + "date": "2022-07-27", "new": "true-zen-nvim" }, "compe-tmux": { - "date": "2021-12-21", + "date": "2021-12-07", "new": "cmp-tmux" }, "taskwarrior": { @@ -12,11 +12,11 @@ "new": "taskwarrior3 or taskwarrior2" }, "fern-vim": { - "date": "2024-05-28", + "date": "2024-05-12", "new": "vim-fern" }, "gina-vim": { - "date": "2024-08-05", + "date": "2024-05-12", "new": "vim-gina" }, "gist-vim": { @@ -28,7 +28,7 @@ "new": "lspsaga-nvim" }, "lua-dev-nvim": { - "date": "2022-10-20", + "date": "2022-10-14", "new": "neodev-nvim" }, "nvchad-extensions": { @@ -36,7 +36,7 @@ "new": "nvchad-ui" }, "nvim-base16": { - "date": "2024-03-16", + "date": "2024-02-15", "new": "base16-nvim" }, "nvim-bufferline-lua": { @@ -64,7 +64,7 @@ "new": "vim-suda" }, "vim-fsharp": { - "date": "2024-08-05", + "date": "2024-03-16", "new": "zarchive-vim-fsharp" }, "vim-jade": { diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 291c03b6f4ff..6d945652455d 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -111,7 +111,7 @@ https://github.com/jlanzarotta/bufexplorer/,, https://github.com/AndrewRadev/bufferize.vim/,HEAD, https://github.com/akinsho/bufferline.nvim/,, https://github.com/kwkarlwang/bufjump.nvim/,HEAD, -https://github.com/dkarter/bullets.vim/,, +https://github.com/bullets-vim/bullets.vim/,, https://github.com/mattn/calendar-vim/,,mattn-calendar-vim https://github.com/itchyny/calendar.vim/,, https://github.com/bkad/camelcasemotion/,, @@ -243,7 +243,7 @@ https://github.com/scottmckendry/cyberdream.nvim/,, https://github.com/ptdewey/darkearth-nvim/,HEAD, https://github.com/dart-lang/dart-vim-plugin/,, https://github.com/rizzatti/dash.vim/,HEAD, -https://github.com/glepnir/dashboard-nvim/,, +https://github.com/nvimdev/dashboard-nvim/,, https://github.com/Shougo/ddc-filter-matcher_head/,HEAD, https://github.com/Shougo/ddc-filter-sorter_rank/,HEAD, https://github.com/Shougo/ddc-source-lsp/,HEAD, @@ -353,7 +353,6 @@ https://github.com/jsfaint/gen_tags.vim/,, https://github.com/gentoo/gentoo-syntax/,, https://github.com/ndmitchell/ghcid/,, https://github.com/eagletmt/ghcmod-vim/,, -https://github.com/lambdalisue/gina.vim/,, https://github.com/f-person/git-blame.nvim/,, https://github.com/akinsho/git-conflict.nvim/,HEAD, https://github.com/rhysd/git-messenger.vim/,, @@ -485,7 +484,7 @@ https://github.com/ggandor/lightspeed.nvim/,, https://github.com/junegunn/limelight.vim/,, https://github.com/lf-lang/lingua-franca.vim/,, https://github.com/tamago324/lir.nvim/,, -https://github.com/tami5/lispdocs.nvim/,, +https://github.com/kkharji/lispdocs.nvim/,, https://github.com/ldelossa/litee-calltree.nvim/,, https://github.com/ldelossa/litee-filetree.nvim/,, https://github.com/ldelossa/litee-symboltree.nvim/,, @@ -503,7 +502,7 @@ https://github.com/nvim-lua/lsp_extensions.nvim/,, https://git.sr.ht/~whynothugo/lsp_lines.nvim,, https://github.com/ray-x/lsp_signature.nvim/,, https://github.com/lspcontainers/lspcontainers.nvim/,, -https://github.com/onsails/lspkind-nvim/,, +https://github.com/onsails/lspkind.nvim/,, https://github.com/nvimdev/lspsaga.nvim/,, https://github.com/barreiroleo/ltex_extra.nvim/,HEAD, https://github.com/arkav/lualine-lsp-progress/,, @@ -516,7 +515,6 @@ https://github.com/Bilal2453/luvit-meta/,HEAD, https://github.com/WhiteBlackGoose/magma-nvim-goose/,HEAD, https://github.com/winston0410/mark-radar.nvim/,HEAD, https://github.com/iamcco/markdown-preview.nvim/,, -https://github.com/MeanderingProgrammer/markdown.nvim/,,render-markdown https://github.com/tadmccorkle/markdown.nvim/,HEAD, https://github.com/David-Kunz/markid/,HEAD, https://github.com/chentoast/marks.nvim/,, @@ -533,7 +531,7 @@ https://github.com/savq/melange-nvim/,, https://github.com/lsig/messenger.nvim/,HEAD, https://github.com/xero/miasma.nvim/,, https://github.com/dasupradyumna/midnight.nvim/,, -https://github.com/phaazon/mind.nvim/,HEAD, +https://github.com/hadronized/mind.nvim/,HEAD, https://github.com/echasnovski/mini.nvim/,, https://github.com/wfxr/minimap.vim/,, https://github.com/jghauser/mkdir.nvim/,main, @@ -602,7 +600,7 @@ https://github.com/weilbith/neotest-gradle/,HEAD, https://github.com/alfaix/neotest-gtest/,HEAD, https://github.com/MrcJkb/neotest-haskell/,HEAD, https://github.com/rcasia/neotest-java/,HEAD, -https://github.com/haydenmeade/neotest-jest/,HEAD, +https://github.com/nvim-neotest/neotest-jest/,HEAD, https://github.com/zidhuss/neotest-minitest/,HEAD, https://github.com/theutz/neotest-pest/,HEAD, https://github.com/olimorris/neotest-phpunit/,HEAD, @@ -662,7 +660,7 @@ https://github.com/ojroques/nvim-bufdel/,, https://github.com/roxma/nvim-cm-racer/,, https://github.com/hrsh7th/nvim-cmp/,, https://github.com/weilbith/nvim-code-action-menu/,, -https://github.com/noib3/nvim-cokeline/,HEAD, +https://github.com/willothy/nvim-cokeline/,HEAD, https://github.com/nvchad/nvim-colorizer.lua/,, https://github.com/terrortylor/nvim-comment/,, https://github.com/hrsh7th/nvim-compe/,, @@ -732,7 +730,7 @@ https://github.com/kylechui/nvim-surround/,main, https://github.com/svermeulen/nvim-teal-maker/,HEAD, https://github.com/norcalli/nvim-terminal.lua/,, https://github.com/klen/nvim-test/,, -https://github.com/kyazdani42/nvim-tree.lua/,, +https://github.com/nvim-tree/nvim-tree.lua/,, https://github.com/nvim-treesitter/nvim-treesitter/,, https://github.com/nvim-treesitter/nvim-treesitter-context/,, https://github.com/RRethy/nvim-treesitter-endwise/,HEAD, @@ -745,15 +743,15 @@ https://github.com/joosepalviste/nvim-ts-context-commentstring/,, https://github.com/kevinhwang91/nvim-ufo/,HEAD, https://github.com/samjwill/nvim-unception/,HEAD, https://github.com/chrisgrieser/nvim-various-textobjs/,HEAD, -https://github.com/kyazdani42/nvim-web-devicons/,, +https://github.com/nvim-tree/nvim-web-devicons/,, https://github.com/AckslD/nvim-whichkey-setup.lua/,, https://github.com/s1n7ax/nvim-window-picker/,HEAD, https://github.com/roxma/nvim-yarp/,, -https://github.com/haringsrob/nvim_context_vt/,, +https://github.com/andersevenrud/nvim_context_vt/,, https://github.com/neovim/nvimdev.nvim/,, -https://github.com/nvchad/nvterm/,HEAD, +https://github.com/zbirenbaum/nvterm/,HEAD, https://github.com/epwalsh/obsidian.nvim/,HEAD, -https://github.com/glepnir/oceanic-material/,, +https://github.com/nvimdev/oceanic-material/,, https://github.com/mhartington/oceanic-next/,, https://github.com/pwntester/octo.nvim/,, https://github.com/stevearc/oil.nvim/,HEAD, @@ -832,6 +830,7 @@ https://github.com/theprimeagen/refactoring.nvim/,, https://github.com/tversteeg/registers.nvim/,, https://github.com/vladdoster/remember.nvim/,, https://github.com/filipdutescu/renamer.nvim/,, +https://github.com/MeanderingProgrammer/render-markdown.nvim/,,render-markdown https://github.com/gabrielpoca/replacer.nvim/,HEAD, https://github.com/NTBBloodbath/rest.nvim/,, https://github.com/vim-scripts/restore_view.vim/,HEAD,restore-view-vim @@ -857,7 +856,7 @@ https://github.com/megaannum/self/,, https://github.com/jaxbot/semantic-highlight.vim/,, https://github.com/numirias/semshi/,, https://github.com/junegunn/seoul256.vim/,, -https://github.com/tjdevries/sg.nvim/,HEAD, +https://github.com/sourcegraph/sg.nvim/,HEAD, https://github.com/osyo-manga/shabadou.vim/,, https://github.com/AndrewRadev/sideways.vim/,, https://github.com/lotabout/skim.vim/,, @@ -883,7 +882,7 @@ https://github.com/stsewd/sphinx.nvim/,, https://github.com/sjl/splice.vim/,, https://github.com/vimlab/split-term.vim/,, https://github.com/AndrewRadev/splitjoin.vim/,, -https://github.com/tami5/sqlite.lua/,, +https://github.com/kkharji/sqlite.lua/,, https://github.com/srcery-colors/srcery-vim/,, https://github.com/chr4/sslsecure.vim/,, https://github.com/cshuaimin/ssr.nvim/,HEAD, @@ -892,7 +891,7 @@ https://github.com/tamton-aquib/staline.nvim/,main, https://github.com/eigenfoo/stan-vim/,, https://github.com/josegamez82/starrynight/,HEAD, https://github.com/darfink/starsearch.vim/,, -https://github.com/startup-nvim/startup.nvim/,HEAD, +https://github.com/max397574/startup.nvim/,HEAD, https://github.com/luukvbaal/statuscol.nvim/,, https://github.com/arnamak/stay-centered.nvim/,HEAD, https://github.com/folke/styler.nvim/,, @@ -923,7 +922,7 @@ https://github.com/themaxmarchuk/tailwindcss-colors.nvim/,HEAD, https://github.com/wellle/targets.vim/,, https://github.com/tools-life/taskwiki/,, https://github.com/tomtom/tcomment_vim/,, -https://github.com/renerocksai/telekasten.nvim/,, +https://github.com/nvim-telekasten/telekasten.nvim/,, https://github.com/GustavoKatel/telescope-asynctasks.nvim/,, https://github.com/nvim-telescope/telescope-cheat.nvim/,, https://github.com/fannheyward/telescope-coc.nvim/,, @@ -1146,14 +1145,14 @@ https://github.com/dcharbon/vim-flatbuffers/,, https://github.com/voldikss/vim-floaterm/,, https://github.com/rbong/vim-flog/,, https://github.com/thosakwe/vim-flutter/,, -https://github.com/fsharp/vim-fsharp/,, https://github.com/thinca/vim-ft-diff_fold/,, https://github.com/tommcdo/vim-fubitive/,, https://github.com/tpope/vim-fugitive/,, https://github.com/maxjacobson/vim-fzf-coauthorship/,, -https://github.com/Shirk/vim-gas/,, +https://github.com/HealsCodes/vim-gas/,, https://github.com/ruanyl/vim-gh-line/,, https://github.com/raghur/vim-ghost/,, +https://github.com/lambdalisue/vim-gina/,, https://github.com/mattn/vim-gist/,, https://github.com/lambdalisue/vim-gista/,, https://github.com/tpope/vim-git/,, @@ -1192,7 +1191,7 @@ https://github.com/w0ng/vim-hybrid/,, https://github.com/kristijanhusak/vim-hybrid-material/,, https://github.com/noc7c9/vim-iced-coffee-script/,, https://github.com/RRethy/vim-illuminate/,, -https://github.com/nathanaelkane/vim-indent-guides/,, +https://github.com/preservim/vim-indent-guides/,, https://github.com/michaeljsmith/vim-indent-object/,, https://github.com/jeetsukumaran/vim-indentwise/,, https://github.com/henrik/vim-indexed-search/,, @@ -1222,7 +1221,7 @@ https://github.com/ludovicchabant/vim-lawrencium/,, https://github.com/hecal3/vim-leader-guide/,, https://github.com/mk12/vim-lean/,, https://github.com/ledger/vim-ledger/,, -https://github.com/reedes/vim-lexical/,HEAD, +https://github.com/preservim/vim-lexical/,HEAD, https://github.com/lfe-support/vim-lfe/,, https://github.com/josa42/vim-lightline-coc/,, https://github.com/tommcdo/vim-lion/,, @@ -1293,7 +1292,7 @@ https://github.com/vim-pandoc/vim-pandoc-after/,, https://github.com/vim-pandoc/vim-pandoc-syntax/,, https://github.com/yorickpeterse/vim-paper/,HEAD, https://github.com/bhurlow/vim-parinfer/,, -https://github.com/sickill/vim-pasta/,, +https://github.com/ku1ik/vim-pasta/,, https://github.com/tpope/vim-pathogen/,, https://github.com/junegunn/vim-peekaboo/,, https://github.com/preservim/vim-pencil/,, @@ -1308,7 +1307,7 @@ https://github.com/haya14busa/vim-poweryank/,, https://github.com/prettier/vim-prettier/,, https://github.com/thinca/vim-prettyprint/,, https://github.com/meain/vim-printer/,HEAD, -https://github.com/pantharshit00/vim-prisma/,, +https://github.com/prisma/vim-prisma/,, https://github.com/tpope/vim-projectionist/,, https://github.com/dhruvasagar/vim-prosession/,, https://github.com/uarun/vim-protobuf/,, @@ -1369,7 +1368,7 @@ https://github.com/dstein64/vim-startuptime/,, https://github.com/axelf4/vim-strip-trailing-whitespace/,, https://github.com/nbouscal/vim-stylish-haskell/,, https://github.com/alx741/vim-stylishask/,, -https://github.com/arzg/vim-substrata/,HEAD, +https://github.com/lunacookies/vim-substrata/,HEAD, https://github.com/svermeulen/vim-subversive/,, https://github.com/lambdalisue/vim-suda/,, https://github.com/tpope/vim-surround/,, @@ -1429,7 +1428,7 @@ https://github.com/joonty/vim-xdebug/,, https://github.com/lyokha/vim-xkbswitch/,, https://github.com/mg979/vim-xtabline/,, https://github.com/stephpy/vim-yaml/,, -https://github.com/mindriot101/vim-yapf/,, +https://github.com/simonrw/vim-yapf/,, https://github.com/michal-h21/vim-zettel/,HEAD, https://github.com/dag/vim2hs/,, https://github.com/monkoose/vim9-stargate/,HEAD, @@ -1479,16 +1478,17 @@ https://github.com/HerringtonDarkholme/yats.vim/,, https://github.com/mikavilpas/yazi.nvim/,HEAD, https://github.com/lucasew/yescapsquit.vim/,HEAD, https://github.com/elkowar/yuck.vim/,HEAD, +https://github.com/fsharp/zarchive-vim-fsharp/,, https://github.com/KabbAmine/zeavim.vim/,, https://github.com/swaits/zellij-nav.nvim/,HEAD, https://github.com/Lilja/zellij.nvim/,HEAD, https://github.com/folke/zen-mode.nvim/,, -https://github.com/mcchrish/zenbones.nvim/,HEAD, +https://github.com/zenbones-theme/zenbones.nvim/,HEAD, https://github.com/jnurmine/zenburn/,, https://github.com/phha/zenburn.nvim/,,phha-zenburn -https://github.com/glepnir/zephyr-nvim/,, +https://github.com/nvimdev/zephyr-nvim/,, https://github.com/ziglang/zig.vim/,, -https://github.com/mickael-menu/zk-nvim/,HEAD, +https://github.com/zk-org/zk-nvim/,HEAD, https://github.com/troydm/zoomwintab.vim/,, https://github.com/nanotee/zoxide.vim/,, https://github.com/joerdav/templ.vim,HEAD, From a9f8b9aa65c4bbbb0d28817d38c69478cbc53929 Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Wed, 11 Sep 2024 10:31:40 -0700 Subject: [PATCH 112/232] signalbackup-tools: 20240830 -> 20240910 Diff: https://github.com/bepaald/signalbackup-tools/compare/20240830...20240910 --- .../signalbackup-tools/default.nix | 26 ++++++++++++++++--- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/signalbackup-tools/default.nix b/pkgs/applications/networking/instant-messengers/signalbackup-tools/default.nix index 6cc2cc3d401c..ee88f6020aac 100644 --- a/pkgs/applications/networking/instant-messengers/signalbackup-tools/default.nix +++ b/pkgs/applications/networking/instant-messengers/signalbackup-tools/default.nix @@ -1,21 +1,39 @@ -{ lib, stdenv, fetchFromGitHub, cmake, darwin, openssl, sqlite }: +{ + lib, + stdenv, + fetchFromGitHub, + + cmake, + pkg-config, + + darwin, + dbus, + openssl, + sqlite, +}: stdenv.mkDerivation rec { pname = "signalbackup-tools"; - version = "20240830"; + version = "20240910"; src = fetchFromGitHub { owner = "bepaald"; repo = "signalbackup-tools"; rev = version; - hash = "sha256-d93f/kKOd7D7FdtgrhrJhQS1DxiUKsdcf2JuUTmRDrw="; + hash = "sha256-VOC13xXWRGHq7K5ju1U/+SNj+qgkJCSYN11l01hwYhI="; }; - nativeBuildInputs = [ cmake ]; + nativeBuildInputs = [ + cmake + ] ++ lib.optionals stdenv.isLinux [ + pkg-config + ]; buildInputs = [ openssl sqlite + ] ++ lib.optionals stdenv.isLinux [ + dbus ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk_11_0.frameworks.Security ]; From de058995dc5e4f1f1f1bbc84bfe541941c04a746 Mon Sep 17 00:00:00 2001 From: TomaSajt <62384384+TomaSajt@users.noreply.github.com> Date: Wed, 11 Sep 2024 19:57:35 +0200 Subject: [PATCH 113/232] jitsi-meet-electron: 2024.3.0 -> 2024.6.0 --- .../instant-messengers/jitsi-meet-electron/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix b/pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix index 7d0044c7124c..88b9baeacf26 100644 --- a/pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix +++ b/pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix @@ -19,13 +19,13 @@ let in buildNpmPackage rec { pname = "jitsi-meet-electron"; - version = "2024.3.0"; + version = "2024.6.0"; src = fetchFromGitHub { owner = "jitsi"; repo = "jitsi-meet-electron"; rev = "v${version}"; - hash = "sha256-BGN+t9Caw5n/NN1E5Oi/ruMLjoVh0jUlpzYR6vodHbw="; + hash = "sha256-jnt+aHkCnIj4GGFbAk6AlVhg0rvzFhGCELAaYMCZx88="; }; nativeBuildInputs = [ @@ -48,7 +48,7 @@ buildNpmPackage rec { OpenGL ]; - npmDepsHash = "sha256-KanG8y+tYzswCCXjSkOlk+p9XKaouP2Z7IhsD5bDtRk="; + npmDepsHash = "sha256-zmnxNJdalspZib1PGZN0YBIauJ+gaxs6Iir94cPRNtU="; makeCacheWritable = true; From 7e26b553f973586112c5f227ebb514c1f8f8ff9d Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Wed, 11 Sep 2024 14:04:00 -0400 Subject: [PATCH 114/232] gforth: override swig, not swig3 This removes one of two remaining usages of the top-level `swig3` expression. (The other comes from older LLDB versions.) Also removes use of overrideDerivation in favour of preferred overrideAttrs. --- pkgs/development/compilers/gforth/swig.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/development/compilers/gforth/swig.nix b/pkgs/development/compilers/gforth/swig.nix index 8de29407cc46..92d4c2dcc97f 100644 --- a/pkgs/development/compilers/gforth/swig.nix +++ b/pkgs/development/compilers/gforth/swig.nix @@ -1,8 +1,12 @@ -{ swig3, fetchFromGitHub }: +{ + swig, + pcre, + fetchFromGitHub, +}: ## for updating to swig4, see ## https://github.com/GeraldWodni/swig/pull/6 -swig3.overrideDerivation (old: { +(swig.overrideAttrs (old: { version = "3.0.9-forth"; src = fetchFromGitHub { owner = "GeraldWodni"; @@ -10,7 +14,6 @@ swig3.overrideDerivation (old: { rev = "a45b807e5f9d8ca1a43649c8265d2741a393862a"; sha256 = "sha256-6nOOPFGFNaQInEkul0ZAh+ks9n3wqCQ6/tbduvG/To0="; }; - configureFlags = old.configureFlags ++ [ - "--enable-forth" - ]; -}) + configureFlags = old.configureFlags ++ [ "--enable-forth" ]; +})).override + { pcre2 = pcre; } From 160e68227e20f07de71f341454e42f2076ea1190 Mon Sep 17 00:00:00 2001 From: Ryan Omasta Date: Wed, 11 Sep 2024 12:12:08 -0600 Subject: [PATCH 115/232] linuxKernel.kernels.linux_zen: 6.10.7-zen1 -> 6.10.9-zen1; linuxKernel.kernels.linux_lqx: 6.10.6-lqx1 -> 6.10.9-lqx1 --- pkgs/os-specific/linux/kernel/zen-kernels.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/zen-kernels.nix b/pkgs/os-specific/linux/kernel/zen-kernels.nix index 246ab4f2d728..113627e0fd5d 100644 --- a/pkgs/os-specific/linux/kernel/zen-kernels.nix +++ b/pkgs/os-specific/linux/kernel/zen-kernels.nix @@ -5,16 +5,16 @@ let variants = { # ./update-zen.py zen zen = { - version = "6.10.7"; #zen + version = "6.10.9"; #zen suffix = "zen1"; #zen - sha256 = "1km3b7nad429hw7d8ff14zj1cg0fhh65ycrrwk4iaxj6rvafzsz1"; #zen + sha256 = "199362jd1waqri6arb8sdfqrzjkdki5vis2z03cpp2blnbqva10b"; #zen isLqx = false; }; # ./update-zen.py lqx lqx = { - version = "6.10.6"; #lqx + version = "6.10.9"; #lqx suffix = "lqx1"; #lqx - sha256 = "0b1pqsssnxc69yhx2wai5xnj6cb9713z33m8xal25jjgx9z4v8kv"; #lqx + sha256 = "0y7r55iy7ylddv7yrlwkz7ps82j447a6m3khq2w4sfh8f0xy86p7"; #lqx isLqx = true; }; }; From ef0222642c1506fd1b6df257d036d223770f87a4 Mon Sep 17 00:00:00 2001 From: PopeRigby Date: Wed, 4 Sep 2024 21:50:41 -0700 Subject: [PATCH 116/232] vimPlugins.vim-zscript: init at 2023-10-02 --- pkgs/applications/editors/vim/plugins/generated.nix | 12 ++++++++++++ .../editors/vim/plugins/vim-plugin-names | 1 + 2 files changed, 13 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index 84e554df35f8..68350f77fece 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -16963,6 +16963,18 @@ final: prev: meta.homepage = "https://github.com/michal-h21/vim-zettel/"; }; + vim-zscript = buildVimPlugin { + pname = "vim-zscript"; + version = "2023-10-02"; + src = fetchFromGitHub { + owner = "marrub--"; + repo = "vim-zscript"; + rev = "8c9352effb0847f838dbe32dc946ab38937b3d26"; + sha256 = "1q619ial566gbf93d8v13njkhqx6blmcp402cpa3may4npf3qric"; + }; + meta.homepage = "https://github.com/marrub--/vim-zscript/"; + }; + vim2hs = buildVimPlugin { pname = "vim2hs"; version = "2014-04-16"; diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index fa97d6ce8961..597df01f2eb4 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -1430,6 +1430,7 @@ https://github.com/mg979/vim-xtabline/,, https://github.com/stephpy/vim-yaml/,, https://github.com/mindriot101/vim-yapf/,, https://github.com/michal-h21/vim-zettel/,HEAD, +https://github.com/marrub--/vim-zscript/,HEAD, https://github.com/dag/vim2hs/,, https://github.com/monkoose/vim9-stargate/,HEAD, https://github.com/dominikduda/vim_current_word/,, From 1c880b7b3ae848f10dbbf1ee07d6707ed3613668 Mon Sep 17 00:00:00 2001 From: Michael Evans Date: Wed, 11 Sep 2024 20:53:28 +0200 Subject: [PATCH 117/232] buffer: 0.9.2 -> 0.9.5 --- pkgs/by-name/bu/buffer/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/bu/buffer/package.nix b/pkgs/by-name/bu/buffer/package.nix index 54b017d1baad..51d3f63e14be 100644 --- a/pkgs/by-name/bu/buffer/package.nix +++ b/pkgs/by-name/bu/buffer/package.nix @@ -16,14 +16,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "buffer"; - version = "0.9.2"; + version = "0.9.5"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "cheywood"; repo = "buffer"; rev = finalAttrs.version; - hash = "sha256-EIyaFL2AEez8FIErL8+x7QNHnCYxj4mOuz7E+Svvh5I="; + hash = "sha256-WhUSiZ2Nty5CdaJC8zZVkUptP5cRnMByZKy3e9TAyjs="; }; nativeBuildInputs = [ From 0097acf5672052e90c751f4c87617b9146c86a3f Mon Sep 17 00:00:00 2001 From: Anund Date: Tue, 10 Sep 2024 10:39:11 -0600 Subject: [PATCH 118/232] playerctl: enable zsh completions --- pkgs/tools/audio/playerctl/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/audio/playerctl/default.nix b/pkgs/tools/audio/playerctl/default.nix index 8740c273eef3..e65f9a20989b 100644 --- a/pkgs/tools/audio/playerctl/default.nix +++ b/pkgs/tools/audio/playerctl/default.nix @@ -37,7 +37,8 @@ stdenv.mkDerivation rec { buildInputs = [ glib ]; mesonFlags = [ - "-Dbash-completions=true" + (lib.mesonBool "bash-completions" true) + (lib.mesonBool "zsh-completions" true) (lib.mesonBool "gtk-doc" withDocs) ]; From 9edf25c734f104bfd8852b78508ccd13ecf3e2ba Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Wed, 11 Sep 2024 21:51:29 +0200 Subject: [PATCH 119/232] miracle-wm: 0.3.4 -> 0.3.5 --- pkgs/by-name/mi/miracle-wm/package.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/mi/miracle-wm/package.nix b/pkgs/by-name/mi/miracle-wm/package.nix index f64c97031234..27cc4ecd5902 100644 --- a/pkgs/by-name/mi/miracle-wm/package.nix +++ b/pkgs/by-name/mi/miracle-wm/package.nix @@ -10,6 +10,7 @@ glib, glm, gtest, + json_c, libevdev, libglvnd, libnotify, @@ -26,13 +27,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "miracle-wm"; - version = "0.3.4"; + version = "0.3.5"; src = fetchFromGitHub { owner = "mattkae"; repo = "miracle-wm"; rev = "v${finalAttrs.version}"; - hash = "sha256-X55qHQxdG0i9THcGsgibBMC2Imq3P3gwuNsLYw14PB0="; + hash = "sha256-2OoMkD4ChNXzqqzdOvzYRL0UYU7Uecm5yTXCvG45jCI="; }; patches = [ @@ -68,6 +69,7 @@ stdenv.mkDerivation (finalAttrs: { boost glib glm + json_c libevdev libglvnd libnotify From 5c5da2d248d603fd013a196fdb4facec293d5503 Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Wed, 11 Sep 2024 22:09:17 +0200 Subject: [PATCH 120/232] openimageio: update owner/repo information https://github.com/OpenImageIO/oiio is now redirected to https://github.com/AcademySoftwareFoundation/OpenImageIO --- pkgs/development/libraries/openimageio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/openimageio/default.nix b/pkgs/development/libraries/openimageio/default.nix index 5e0b0cbdc04a..51c1f255c326 100644 --- a/pkgs/development/libraries/openimageio/default.nix +++ b/pkgs/development/libraries/openimageio/default.nix @@ -18,8 +18,8 @@ stdenv.mkDerivation rec { version = "2.5.15.0"; src = fetchFromGitHub { - owner = "OpenImageIO"; - repo = "oiio"; + owner = "AcademySoftwareFoundation"; + repo = "OpenImageIO"; rev = "v${version}"; hash = "sha256-jtX6IDR/yFn10hf+FxM0s4St9XYxhQ1UlMAsNzOxuio="; }; From fd0c3457f444a5452751bc8474805cc8c0838e08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Mieszczak?= Date: Sun, 17 Mar 2024 09:15:13 +0100 Subject: [PATCH 121/232] kubernetes-polaris: 8.5.5 -> 9.3.0 --- pkgs/tools/security/kubernetes-polaris/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/security/kubernetes-polaris/default.nix b/pkgs/tools/security/kubernetes-polaris/default.nix index 737c901e570b..508601c109a3 100644 --- a/pkgs/tools/security/kubernetes-polaris/default.nix +++ b/pkgs/tools/security/kubernetes-polaris/default.nix @@ -1,17 +1,17 @@ -{ lib, buildGoModule, fetchFromGitHub, installShellFiles, packr, ... }: +{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "kubernetes-polaris"; - version = "8.5.5"; + version = "9.3.0"; src = fetchFromGitHub { owner = "FairwindsOps"; repo = "polaris"; rev = version; - sha256 = "sha256-DKfCXtFrZgmR0jiXwCD1iuwx/8aNEjwZ/fCQNeRhSu4="; + sha256 = "sha256-qJAhxwVM/tYdCWLL1snUYjXGfgdcHkBFrI9xBg1/EXU="; }; - vendorHash = "sha256-ZWetW+Xar4BXXlR0iG+O/NRqYk41x+PPVCGis2W2Nkk="; + vendorHash = "sha256-6sxzRI22xiZOQds20iU5OsU+JqcNB2wOUrOZrOH1Sa4="; nativeBuildInputs = [ installShellFiles ]; @@ -22,10 +22,6 @@ buildGoModule rec { "-X main.Commit=${version}" ]; - preBuild = '' - ${packr}/bin/packr2 -v --ignore-imports - ''; - postInstall = '' installShellCompletion --cmd polaris \ --bash <($out/bin/polaris completion bash) \ From a0778fea1425938fb630ea416a63a8be38ddc26d Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Wed, 11 Sep 2024 13:40:36 -0500 Subject: [PATCH 122/232] subversion: fix darwin --- .../version-management/subversion/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index 72f21fd8e2a3..7f0122e56c06 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -49,6 +49,14 @@ let # "-P" CPPFLAG is needed to build Python bindings and subversionClient CPPFLAGS = [ "-P" ]; + env = lib.optionalAttrs stdenv.cc.isClang { + NIX_CFLAGS_COMPILE = lib.concatStringsSep " " [ + "-Wno-error=implicit-function-declaration" + "-Wno-error=implicit-int" + "-Wno-int-conversion" + ]; + }; + preConfigure = lib.optionalString needsAutogen '' ./autogen.sh ''; From ee1d4214878f8390d5013a2c6f2fd5443f19acc1 Mon Sep 17 00:00:00 2001 From: redyf Date: Wed, 11 Sep 2024 18:53:20 -0300 Subject: [PATCH 123/232] fastfetch: 2.23.0 -> 2.24.0 https://github.com/fastfetch-cli/fastfetch/releases/tag/2.24.0 --- pkgs/by-name/fa/fastfetch/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fa/fastfetch/package.nix b/pkgs/by-name/fa/fastfetch/package.nix index 7d93c0394a29..dadcf2def1ac 100644 --- a/pkgs/by-name/fa/fastfetch/package.nix +++ b/pkgs/by-name/fa/fastfetch/package.nix @@ -47,13 +47,13 @@ let in stdenv'.mkDerivation (finalAttrs: { pname = "fastfetch"; - version = "2.23.0"; + version = "2.24.0"; src = fetchFromGitHub { owner = "fastfetch-cli"; repo = "fastfetch"; rev = finalAttrs.version; - hash = "sha256-ry7FWja/FGSTQU1IhfXUA778yO0T3O1cvYsS4pcqURY="; + hash = "sha256-MnN+XZTiIjXGVM6rF5J7sDTndLijGCdgsBF8oYzRHqY="; }; outputs = [ From 191256feb328343cfcb344d7fffec02c93852d43 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 12 Sep 2024 00:07:48 +0200 Subject: [PATCH 124/232] evcc: 0.130.8 -> 0.130.9 https://github.com/evcc-io/evcc/releases/tag/0.130.9 --- pkgs/servers/home-automation/evcc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/home-automation/evcc/default.nix b/pkgs/servers/home-automation/evcc/default.nix index 165467705b7c..d7377a5d3e6f 100644 --- a/pkgs/servers/home-automation/evcc/default.nix +++ b/pkgs/servers/home-automation/evcc/default.nix @@ -16,16 +16,16 @@ buildGo123Module rec { pname = "evcc"; - version = "0.130.8"; + version = "0.130.9"; src = fetchFromGitHub { owner = "evcc-io"; repo = "evcc"; rev = version; - hash = "sha256-U6HQyHh9hei2mzCWQnGBFrJL2JRwFSo4AMbqSizJOEI="; + hash = "sha256-g3z2yqw/84OMui5mchfqVHoR/6LdwNHgeBodf1jUtj4="; }; - vendorHash = "sha256-UsNx11WgQbBV8q5sREuLysud54MjfvXi5wvMKNJryns="; + vendorHash = "sha256-C2eoNmv0GSi5DV53aUwGcBOw6n2btU/HhniMyu21vLE="; npmDeps = fetchNpmDeps { inherit src; From ec757dadb3a5bc29821b22c6bed085ea8c0705a7 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Wed, 11 Sep 2024 17:07:44 +0300 Subject: [PATCH 125/232] edgedb: 5.2.3 -> 5.3.0 Diff: https://github.com/edgedb/edgedb-cli/compare/v5.2.3...v5.3.0 --- pkgs/tools/networking/edgedb/Cargo.lock | 1501 ++++++++++++---------- pkgs/tools/networking/edgedb/default.nix | 13 +- 2 files changed, 822 insertions(+), 692 deletions(-) diff --git a/pkgs/tools/networking/edgedb/Cargo.lock b/pkgs/tools/networking/edgedb/Cargo.lock index 8c565f21d45b..16d644045891 100644 --- a/pkgs/tools/networking/edgedb/Cargo.lock +++ b/pkgs/tools/networking/edgedb/Cargo.lock @@ -4,9 +4,9 @@ version = 3 [[package]] name = "addr2line" -version = "0.21.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" dependencies = [ "gimli", ] @@ -17,6 +17,12 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +[[package]] +name = "adler2" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" + [[package]] name = "adler32" version = "1.2.0" @@ -36,28 +42,13 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ "memchr", ] -[[package]] -name = "android-tzdata" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" - -[[package]] -name = "android_system_properties" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" -dependencies = [ - "libc", -] - [[package]] name = "ansi-escapes" version = "0.1.1" @@ -66,47 +57,48 @@ checksum = "7e3c0daaaae24df5995734b689627f8fa02101bc5bbc768be3055b66a010d7af" [[package]] name = "anstream" -version = "0.6.11" +version = "0.6.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" +checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", "anstyle-wincon", "colorchoice", + "is_terminal_polyfill", "utf8parse", ] [[package]] name = "anstyle" -version = "1.0.6" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" +checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" [[package]] name = "anstyle-parse" -version = "0.2.3" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" +checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.0.2" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" +checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" dependencies = [ "windows-sys 0.52.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.2" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" +checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" dependencies = [ "anstyle", "windows-sys 0.52.0", @@ -114,44 +106,45 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.82" +version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" +checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" [[package]] name = "append-only-vec" -version = "0.1.3" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cb8f874ecf419dd8165d0279746de966cb8966636d028845e3bd65d519812a" +checksum = "74d9f7083455f1a474276ccd32374958d2cb591024aac45101c7623b10271347" [[package]] name = "arc-swap" -version = "1.6.0" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" +checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" [[package]] name = "arrayref" -version = "0.3.7" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" +checksum = "9d151e35f61089500b617991b791fc8bfd237ae50cd5950803758a179b41e67a" [[package]] name = "arrayvec" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "assert_cmd" -version = "2.0.13" +version = "2.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00ad3f3a942eee60335ab4342358c161ee296829e0d16ff42fc1d6cb07815467" +checksum = "dc1835b7f27878de8525dc71410b5a31cdcc5f230aed5ba5df968e09c201b23d" dependencies = [ "anstyle", "bstr", "doc-comment", - "predicates 3.1.0", + "libc", + "predicates 3.1.2", "predicates-core", "predicates-tree", "wait-timeout", @@ -170,28 +163,26 @@ dependencies = [ [[package]] name = "async-channel" -version = "2.2.0" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" +checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" dependencies = [ "concurrent-queue", - "event-listener 5.0.0", - "event-listener-strategy 0.5.0", + "event-listener-strategy", "futures-core", "pin-project-lite", ] [[package]] name = "async-executor" -version = "1.8.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" +checksum = "d7ebdfa2ebdab6b1760375fa7d6f382b9f486eac35fc994625a00e89280bdbb7" dependencies = [ - "async-lock 3.3.0", "async-task", "concurrent-queue", - "fastrand 2.0.1", - "futures-lite 2.2.0", + "fastrand 2.1.1", + "futures-lite 2.3.0", "slab", ] @@ -201,12 +192,12 @@ version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" dependencies = [ - "async-channel 2.2.0", + "async-channel 2.3.1", "async-executor", - "async-io 2.3.1", - "async-lock 3.3.0", + "async-io 2.3.4", + "async-lock 3.4.0", "blocking", - "futures-lite 2.2.0", + "futures-lite 2.3.0", "once_cell", ] @@ -232,21 +223,21 @@ dependencies = [ [[package]] name = "async-io" -version = "2.3.1" +version = "2.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65" +checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" dependencies = [ - "async-lock 3.3.0", + "async-lock 3.4.0", "cfg-if", "concurrent-queue", "futures-io", - "futures-lite 2.2.0", + "futures-lite 2.3.0", "parking", - "polling 3.4.0", - "rustix 0.38.31", + "polling 3.7.3", + "rustix 0.38.35", "slab", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -269,12 +260,12 @@ dependencies = [ [[package]] name = "async-lock" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" +checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" dependencies = [ - "event-listener 4.0.3", - "event-listener-strategy 0.4.0", + "event-listener 5.3.1", + "event-listener-strategy", "pin-project-lite", ] @@ -306,19 +297,19 @@ dependencies = [ [[package]] name = "async-task" -version = "4.7.0" +version = "4.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" +checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.77" +version = "0.1.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" +checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] @@ -340,21 +331,21 @@ dependencies = [ [[package]] name = "autocfg" -version = "1.1.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" [[package]] name = "backtrace" -version = "0.3.69" +version = "0.3.73" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" dependencies = [ "addr2line", "cc", "cfg-if", "libc", - "miniz_oxide", + "miniz_oxide 0.7.4", "object", "rustc-demangle", ] @@ -371,6 +362,12 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23ce669cd6c8588f79e15cf450314f9638f967fc5770ff1c7c1deb0925ea7cfa" +[[package]] +name = "base32" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076" + [[package]] name = "base64" version = "0.21.7" @@ -389,22 +386,15 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" -[[package]] -name = "basic-toml" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2db21524cad41c5591204d22d75e1970a2d1f71060214ca931dc7d5afe2c14e5" -dependencies = [ - "serde", -] - [[package]] name = "bigdecimal" -version = "0.3.1" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6773ddc0eafc0e509fb60e48dff7f450f8e674a0686ae8605e8d9901bd5eefa" +checksum = "51d712318a27c7150326677b321a5fa91b55f6d9034ffd67f20319e147d40cee" dependencies = [ - "num-bigint 0.4.4", + "autocfg", + "libm", + "num-bigint", "num-integer", "num-traits", "serde", @@ -418,9 +408,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.4.2" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bitvec" @@ -442,20 +432,20 @@ checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780" dependencies = [ "arrayref", "arrayvec", - "constant_time_eq 0.3.0", + "constant_time_eq 0.3.1", ] [[package]] name = "blake3" -version = "1.5.0" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87" +checksum = "d82033247fd8e890df8f740e407ad4d038debb9eb1f40533fffb32e7d17dc6f7" dependencies = [ "arrayref", "arrayvec", "cc", "cfg-if", - "constant_time_eq 0.3.0", + "constant_time_eq 0.3.1", ] [[package]] @@ -469,25 +459,22 @@ dependencies = [ [[package]] name = "blocking" -version = "1.5.1" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" +checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" dependencies = [ - "async-channel 2.2.0", - "async-lock 3.3.0", + "async-channel 2.3.1", "async-task", - "fastrand 2.0.1", "futures-io", - "futures-lite 2.2.0", + "futures-lite 2.3.0", "piper", - "tracing", ] [[package]] name = "bstr" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc" +checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c" dependencies = [ "memchr", "regex-automata", @@ -496,9 +483,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.15.0" +version = "3.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d32a994c2b3ca201d9b263612a374263f05e7adde37c4707f693dcd375076d1f" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" [[package]] name = "byteorder" @@ -508,9 +495,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.5.0" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" +checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" [[package]] name = "bzip2" @@ -535,12 +522,13 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.83" +version = "1.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6" dependencies = [ "jobserver", "libc", + "shlex", ] [[package]] @@ -556,15 +544,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" [[package]] -name = "chrono" -version = "0.4.34" +name = "cfg_aliases" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + +[[package]] +name = "chrono" +version = "0.4.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" dependencies = [ - "android-tzdata", - "iana-time-zone", "num-traits", - "windows-targets 0.52.0", ] [[package]] @@ -591,9 +582,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.0" +version = "4.5.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80c21025abd42669a92efc996ef13cfb2c5c627858421ea58d5c3b331a6c134f" +checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" dependencies = [ "clap_builder", "clap_derive", @@ -601,14 +592,14 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.0" +version = "4.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "458bf1f341769dfcf849846f65dffdf9146daa56bcd2a47cb4e1de9915567c99" +checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6" dependencies = [ "anstream", "anstyle", - "clap_lex 0.7.0", - "strsim 0.11.0", + "clap_lex 0.7.2", + "strsim 0.11.1", "terminal_size 0.3.0", ] @@ -623,23 +614,23 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.5.0" +version = "4.5.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "299353be8209bd133b049bf1c63582d184a8b39fd9c04f15fe65f50f88bdfe6c" +checksum = "6d7db6eca8c205649e8d3ccd05aa5042b1800a784e56bc7c43524fde8abbfa9b" dependencies = [ - "clap 4.5.0", + "clap 4.5.16", ] [[package]] name = "clap_derive" -version = "4.5.0" +version = "4.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" +checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" dependencies = [ - "heck", + "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] @@ -663,9 +654,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.0" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" +checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" [[package]] name = "clicolors-control" @@ -691,30 +682,30 @@ dependencies = [ [[package]] name = "color-print" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a858372ff14bab9b1b30ea504f2a4bc534582aee3e42ba2d41d2a7baba63d5d" +checksum = "1ee543c60ff3888934877a5671f45494dd27ed4ba25c6670b9a7576b7ed7a8c0" dependencies = [ "color-print-proc-macro", ] [[package]] name = "color-print-proc-macro" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57e37866456a721d0a404439a1adae37a31be4e0055590d053dfe6981e05003f" +checksum = "77ff1a80c5f3cb1ca7c06ffdd71b6a6dd6d8f896c42141fbd43f50ed28dcdb93" dependencies = [ "nom", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.76", ] [[package]] name = "colorchoice" -version = "1.0.0" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" +checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" [[package]] name = "colorful" @@ -724,9 +715,9 @@ checksum = "97af0562545a7d7f3d9222fcf909963bec36dcb502afaacab98c6ffac8da47ce" [[package]] name = "combine" -version = "4.6.6" +version = "4.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" dependencies = [ "bytes", "memchr", @@ -750,9 +741,9 @@ dependencies = [ [[package]] name = "concurrent-queue" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ "crossbeam-utils", ] @@ -778,9 +769,9 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "constant_time_eq" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" +checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" [[package]] name = "coolor" @@ -803,15 +794,15 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.6" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cpufeatures" -version = "0.2.12" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +checksum = "51e852e6dc9a5bed1fae92dd2375037bf2b768725bf3be87811edee3249d09ad" dependencies = [ "libc", ] @@ -824,9 +815,9 @@ checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff" [[package]] name = "crc32fast" -version = "1.4.0" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" +checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" dependencies = [ "cfg-if", ] @@ -846,9 +837,9 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.11" +version = "0.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" +checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" dependencies = [ "crossbeam-utils", ] @@ -883,9 +874,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.19" +version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" +checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" [[package]] name = "crossterm" @@ -896,8 +887,8 @@ dependencies = [ "bitflags 1.3.2", "crossterm_winapi", "libc", - "mio", - "parking_lot 0.12.1", + "mio 0.8.11", + "parking_lot 0.12.3", "signal-hook", "signal-hook-mio", "winapi", @@ -924,12 +915,12 @@ dependencies = [ [[package]] name = "ctrlc" -version = "3.4.2" +version = "3.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b467862cc8610ca6fc9a1532d7777cee0804e678ab45410897b9396495994a0b" +checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3" dependencies = [ - "nix 0.27.1", - "windows-sys 0.52.0", + "nix 0.29.0", + "windows-sys 0.59.0", ] [[package]] @@ -1028,9 +1019,9 @@ dependencies = [ [[package]] name = "dissimilar" -version = "1.0.7" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86e3bdc80eee6e16b2b6b0f87fbc98c04bee3455e35174c0de1a125d0688c632" +checksum = "59f8e79d1fbf76bdfbde321e902714bf6c49df88a7dda6fc682fc2979226962d" [[package]] name = "doc-comment" @@ -1040,13 +1031,13 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "downcast-rs" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" +checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" [[package]] name = "edgedb-cli" -version = "5.2.3" +version = "5.3.0" dependencies = [ "ansi-escapes", "anyhow", @@ -1054,7 +1045,7 @@ dependencies = [ "assert_cmd", "async-listen", "backtrace", - "base32", + "base32 0.4.0", "base64 0.21.7", "bigdecimal", "bitflags 1.3.2", @@ -1063,8 +1054,8 @@ dependencies = [ "blake3", "bytes", "chrono", - "clap 4.5.0", - "clap_complete 4.5.0", + "clap 4.5.16", + "clap_complete 4.5.24", "clicolors-control", "codespan-reporting", "color-print", @@ -1104,7 +1095,7 @@ dependencies = [ "nix 0.26.4", "nom", "notify", - "num-bigint 0.4.4", + "num-bigint", "once_cell", "open", "openssl", @@ -1122,7 +1113,7 @@ dependencies = [ "rexpect", "ring", "rpassword", - "rustls 0.22.2", + "rustls 0.23.12", "rustyline", "scram", "semver", @@ -1150,7 +1141,7 @@ dependencies = [ "thiserror", "tokio", "tokio-stream", - "toml", + "toml 0.5.11", "tracing", "unicode-segmentation", "unicode-width", @@ -1162,7 +1153,7 @@ dependencies = [ "which", "whoami", "winapi", - "winreg 0.10.1", + "winreg", "wslapi", "zip", "zstd 0.12.4", @@ -1172,9 +1163,9 @@ dependencies = [ name = "edgedb-cli-derive" version = "0.4.0" dependencies = [ - "clap 4.5.0", + "clap 4.5.16", "clap_generate", - "heck", + "heck 0.4.1", "indexmap 2.0.0-pre", "proc-macro-error", "proc-macro2", @@ -1186,49 +1177,49 @@ dependencies = [ [[package]] name = "edgedb-derive" -version = "0.5.1" -source = "git+https://github.com/edgedb/edgedb-rust/#783438e6322acc6a4960e61ad2f46b0c8c9517cd" +version = "0.5.2" +source = "git+https://github.com/edgedb/edgedb-rust/#9025de8e629584d91aa91135ab7d81712aa66534" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", "trybuild", ] [[package]] name = "edgedb-errors" -version = "0.4.1" -source = "git+https://github.com/edgedb/edgedb-rust/#783438e6322acc6a4960e61ad2f46b0c8c9517cd" +version = "0.4.2" +source = "git+https://github.com/edgedb/edgedb-rust/#9025de8e629584d91aa91135ab7d81712aa66534" dependencies = [ "bytes", ] [[package]] name = "edgedb-protocol" -version = "0.6.0" -source = "git+https://github.com/edgedb/edgedb-rust/#783438e6322acc6a4960e61ad2f46b0c8c9517cd" +version = "0.6.1" +source = "git+https://github.com/edgedb/edgedb-rust/#9025de8e629584d91aa91135ab7d81712aa66534" dependencies = [ "bigdecimal", - "bitflags 2.4.2", + "bitflags 2.6.0", "bytes", "chrono", "edgedb-errors", - "num-bigint 0.4.4", + "num-bigint", "num-traits", - "snafu 0.8.2", + "snafu 0.8.4", "uuid", ] [[package]] name = "edgedb-tokio" -version = "0.5.0" -source = "git+https://github.com/edgedb/edgedb-rust/#783438e6322acc6a4960e61ad2f46b0c8c9517cd" +version = "0.5.1" +source = "git+https://github.com/edgedb/edgedb-rust/#9025de8e629584d91aa91135ab7d81712aa66534" dependencies = [ "anyhow", "arc-swap", "async-trait", "base16ct", - "base64 0.21.7", + "base64 0.22.1", "bytes", "crc16", "dirs 5.0.1", @@ -1238,17 +1229,18 @@ dependencies = [ "log", "once_cell", "rand", - "rustls 0.22.2", + "rustls 0.23.12", "rustls-native-certs", "rustls-pemfile", "rustls-webpki", - "scram", + "scram-2", "serde", "serde_json", "sha1", - "tls-api", - "tls-api-not-tls", - "tls-api-rustls", + "socket2 0.5.7", + "tls-api-2", + "tls-api-not-tls-2", + "tls-api-rustls-2", "tokio", "tokio-stream", "url", @@ -1258,28 +1250,28 @@ dependencies = [ [[package]] name = "edgeql-parser" version = "0.1.0" -source = "git+https://github.com/edgedb/edgedb#b53f17c1b16577a1f08fd5afa5be1333e9cf719a" +source = "git+https://github.com/edgedb/edgedb#9d6f484ea8a14a7d1f10c7a334c765fa34924337" dependencies = [ "append-only-vec", - "base32", + "base32 0.5.1", "bigdecimal", "bumpalo", - "indexmap 1.9.3", + "indexmap 2.5.0", "memchr", - "num-bigint 0.3.3", + "num-bigint", "phf", "serde_json", "sha2", - "snafu 0.7.5", + "snafu 0.8.4", "thiserror", "unicode-width", ] [[package]] name = "either" -version = "1.10.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "encode_unicode" @@ -1295,9 +1287,9 @@ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" [[package]] name = "encoding_rs" -version = "0.8.33" +version = "0.8.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" dependencies = [ "cfg-if", ] @@ -1310,9 +1302,9 @@ checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" [[package]] name = "env_filter" -version = "0.1.0" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" +checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" dependencies = [ "log", "regex", @@ -1333,9 +1325,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.3" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" +checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" dependencies = [ "anstream", "anstyle", @@ -1352,9 +1344,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" +checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" dependencies = [ "libc", "windows-sys 0.52.0", @@ -1368,20 +1360,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "4.0.3" +version = "5.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" -dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", -] - -[[package]] -name = "event-listener" -version = "5.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b72557800024fabbaa2449dd4bf24e37b93702d457a4d4f2b0dd1f0f039f20c1" +checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" dependencies = [ "concurrent-queue", "parking", @@ -1390,21 +1371,11 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.4.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" +checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" dependencies = [ - "event-listener 4.0.3", - "pin-project-lite", -] - -[[package]] -name = "event-listener-strategy" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" -dependencies = [ - "event-listener 5.0.0", + "event-listener 5.3.1", "pin-project-lite", ] @@ -1419,9 +1390,9 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.0.1" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" +checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" [[package]] name = "fd-lock" @@ -1440,30 +1411,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef033ed5e9bad94e55838ca0ca906db0e043f517adda0c8b79c7a8c66c93c1b5" dependencies = [ "cfg-if", - "rustix 0.38.31", + "rustix 0.38.35", "windows-sys 0.48.0", ] [[package]] name = "filetime" -version = "0.2.23" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" +checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.4.1", - "windows-sys 0.52.0", + "libredox", + "windows-sys 0.59.0", ] [[package]] name = "flate2" -version = "1.0.28" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" +checksum = "324a1be68054ef05ad64b861cc9eaf1d623d2d8cb25b4bf2cb9cdd902b4bf253" dependencies = [ "crc32fast", - "miniz_oxide", + "miniz_oxide 0.8.0", ] [[package]] @@ -1483,7 +1454,7 @@ checksum = "2cd66269887534af4b0c3e3337404591daa8dc8b9b2b3db71f9523beb4bafb41" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] @@ -1611,11 +1582,11 @@ dependencies = [ [[package]] name = "futures-lite" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" +checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" dependencies = [ - "fastrand 2.0.1", + "fastrand 2.1.1", "futures-core", "futures-io", "parking", @@ -1630,7 +1601,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] @@ -1685,9 +1656,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.12" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if", "js-sys", @@ -1698,9 +1669,9 @@ dependencies = [ [[package]] name = "gimli" -version = "0.28.1" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" +checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" [[package]] name = "glob" @@ -1722,17 +1693,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.24" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" +checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" dependencies = [ "bytes", "fnv", "futures-core", "futures-sink", "futures-util", - "http 0.2.11", - "indexmap 2.2.3", + "http 0.2.12", + "indexmap 2.5.0", "slab", "tokio", "tokio-util", @@ -1741,9 +1712,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" +checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" dependencies = [ "atomic-waker", "bytes", @@ -1751,7 +1722,7 @@ dependencies = [ "futures-core", "futures-sink", "http 1.1.0", - "indexmap 2.2.3", + "indexmap 2.5.0", "slab", "tokio", "tokio-util", @@ -1772,9 +1743,9 @@ checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" [[package]] name = "hashbrown" -version = "0.14.3" +version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" [[package]] name = "headers" @@ -1785,7 +1756,7 @@ dependencies = [ "base64 0.21.7", "bytes", "headers-core", - "http 0.2.11", + "http 0.2.12", "httpdate", "mime", "sha1", @@ -1797,7 +1768,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" dependencies = [ - "http 0.2.11", + "http 0.2.12", ] [[package]] @@ -1806,6 +1777,12 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + [[package]] name = "hermit-abi" version = "0.1.19" @@ -1817,9 +1794,15 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.3.6" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd5256b483761cd23699d0da46cc6fd2ee3be420bbe6d020ae4a091e70b7e9fd" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" + +[[package]] +name = "hermit-abi" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" [[package]] name = "hex" @@ -1850,9 +1833,9 @@ dependencies = [ [[package]] name = "http" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" dependencies = [ "bytes", "fnv", @@ -1877,7 +1860,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http 0.2.11", + "http 0.2.12", "pin-project-lite", ] @@ -1906,9 +1889,9 @@ dependencies = [ [[package]] name = "httparse" -version = "1.8.0" +version = "1.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" +checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" [[package]] name = "httpdate" @@ -1934,22 +1917,22 @@ dependencies = [ [[package]] name = "hyper" -version = "0.14.28" +version = "0.14.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" +checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9" dependencies = [ "bytes", "futures-channel", "futures-core", "futures-util", - "h2 0.3.24", - "http 0.2.11", + "h2 0.3.26", + "http 0.2.12", "http-body 0.4.6", "httparse", "httpdate", "itoa", "pin-project-lite", - "socket2 0.5.5", + "socket2 0.5.7", "tokio", "tower-service", "tracing", @@ -1965,7 +1948,7 @@ dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.5", + "h2 0.4.6", "http 1.1.0", "http-body 1.0.1", "httparse", @@ -1986,7 +1969,7 @@ dependencies = [ "http 1.1.0", "hyper 1.4.1", "hyper-util", - "rustls 0.23.7", + "rustls 0.23.12", "rustls-pki-types", "tokio", "tokio-rustls 0.26.0", @@ -2011,9 +1994,9 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956" +checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9" dependencies = [ "bytes", "futures-channel", @@ -2022,36 +2005,13 @@ dependencies = [ "http-body 1.0.1", "hyper 1.4.1", "pin-project-lite", - "socket2 0.5.5", + "socket2 0.5.7", "tokio", "tower", "tower-service", "tracing", ] -[[package]] -name = "iana-time-zone" -version = "0.1.60" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" -dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "wasm-bindgen", - "windows-core", -] - -[[package]] -name = "iana-time-zone-haiku" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" -dependencies = [ - "cc", -] - [[package]] name = "idna" version = "0.5.0" @@ -2094,12 +2054,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.2.3" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233cf39063f058ea2caae4091bf4a3ef70a653afbc026f5c4a4135d114e3c177" +checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5" dependencies = [ "equivalent", - "hashbrown 0.14.3", + "hashbrown 0.14.5", ] [[package]] @@ -2146,9 +2106,9 @@ dependencies = [ [[package]] name = "instant" -version = "0.1.12" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" dependencies = [ "cfg-if", "js-sys", @@ -2162,7 +2122,7 @@ version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ - "hermit-abi 0.3.6", + "hermit-abi 0.3.9", "libc", "windows-sys 0.48.0", ] @@ -2175,15 +2135,21 @@ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" [[package]] name = "is-terminal" -version = "0.4.12" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" +checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" dependencies = [ - "hermit-abi 0.3.6", + "hermit-abi 0.4.0", "libc", "windows-sys 0.52.0", ] +[[package]] +name = "is_terminal_polyfill" +version = "1.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" + [[package]] name = "itertools" version = "0.10.5" @@ -2195,24 +2161,24 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "jobserver" -version = "0.1.28" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6" +checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" dependencies = [ "libc", ] [[package]] name = "js-sys" -version = "0.3.68" +version = "0.3.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" +checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a" dependencies = [ "wasm-bindgen", ] @@ -2248,15 +2214,15 @@ dependencies = [ [[package]] name = "lazy_static" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.153" +version = "0.2.158" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" +checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" [[package]] name = "libflate" @@ -2279,14 +2245,20 @@ dependencies = [ ] [[package]] -name = "libredox" -version = "0.0.1" +name = "libm" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" +checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" + +[[package]] +name = "libredox" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.6.0", "libc", - "redox_syscall 0.4.1", + "redox_syscall 0.5.3", ] [[package]] @@ -2297,15 +2269,15 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "linux-raw-sys" -version = "0.4.13" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" +checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "lock_api" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" dependencies = [ "autocfg", "scopeguard", @@ -2313,18 +2285,18 @@ dependencies = [ [[package]] name = "log" -version = "0.4.21" +version = "0.4.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" +checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" dependencies = [ "value-bag", ] [[package]] name = "memchr" -version = "2.7.1" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "memoffset" @@ -2343,9 +2315,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "mime_guess" -version = "2.0.4" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" +checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" dependencies = [ "mime", "unicase", @@ -2374,18 +2346,27 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" +checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" dependencies = [ "adler", ] [[package]] -name = "mio" -version = "0.8.10" +name = "miniz_oxide" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" +checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" +dependencies = [ + "adler2", +] + +[[package]] +name = "mio" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", "log", @@ -2394,12 +2375,23 @@ dependencies = [ ] [[package]] -name = "native-tls" -version = "0.2.11" +name = "mio" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" +checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" +dependencies = [ + "hermit-abi 0.3.9", + "libc", + "wasi", + "windows-sys 0.52.0", +] + +[[package]] +name = "native-tls" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" dependencies = [ - "lazy_static", "libc", "log", "openssl", @@ -2439,7 +2431,7 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.6.0", "cfg-if", "libc", ] @@ -2450,9 +2442,21 @@ version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.6.0", "cfg-if", - "cfg_aliases", + "cfg_aliases 0.1.1", + "libc", +] + +[[package]] +name = "nix" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" +dependencies = [ + "bitflags 2.6.0", + "cfg-if", + "cfg_aliases 0.2.1", "libc", ] @@ -2485,34 +2489,22 @@ dependencies = [ "inotify", "kqueue", "libc", - "mio", + "mio 0.8.11", "walkdir", "windows-sys 0.45.0", ] [[package]] name = "num-bigint" -version = "0.3.3" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" dependencies = [ - "autocfg", "num-integer", "num-traits", "serde", ] -[[package]] -name = "num-bigint" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" -dependencies = [ - "autocfg", - "num-integer", - "num-traits", -] - [[package]] name = "num-conv" version = "0.1.0" @@ -2530,23 +2522,13 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.18" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ "autocfg", ] -[[package]] -name = "num_cpus" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" -dependencies = [ - "hermit-abi 0.3.6", - "libc", -] - [[package]] name = "number_prefix" version = "0.4.0" @@ -2555,9 +2537,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "object" -version = "0.32.2" +version = "0.36.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" +checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a" dependencies = [ "memchr", ] @@ -2580,11 +2562,11 @@ dependencies = [ [[package]] name = "openssl" -version = "0.10.63" +version = "0.10.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15c9d69dd87a29568d4d017cfe8ec518706046a05184e5aea92d0af890b803c8" +checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.6.0", "cfg-if", "foreign-types", "libc", @@ -2601,7 +2583,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] @@ -2612,18 +2594,18 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-src" -version = "300.2.3+3.2.1" +version = "300.3.1+3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cff92b6f71555b61bb9315f7c64da3ca43d87531622120fea0195fc761b4843" +checksum = "7259953d42a81bf137fbbd73bd30a8e1914d6dce43c2b90ed575783a22608b91" dependencies = [ "cc", ] [[package]] name = "openssl-sys" -version = "0.9.99" +version = "0.9.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae" +checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" dependencies = [ "cc", "libc", @@ -2693,12 +2675,12 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" dependencies = [ "lock_api", - "parking_lot_core 0.9.9", + "parking_lot_core 0.9.10", ] [[package]] @@ -2717,15 +2699,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.9" +version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.4.1", + "redox_syscall 0.5.3", "smallvec", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -2759,11 +2741,11 @@ dependencies = [ [[package]] name = "pem" -version = "3.0.3" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" +checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", "serde", ] @@ -2803,7 +2785,7 @@ dependencies = [ "phf_shared", "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] @@ -2817,29 +2799,29 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0" +checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690" +checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] name = "pin-project-lite" -version = "0.2.13" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" +checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" [[package]] name = "pin-utils" @@ -2849,12 +2831,12 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piper" -version = "0.2.1" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" +checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand 2.0.1", + "fastrand 2.1.1", "futures-io", ] @@ -2882,23 +2864,24 @@ dependencies = [ [[package]] name = "polling" -version = "3.4.0" +version = "3.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30054e72317ab98eddd8561db0f6524df3367636884b7b21b703e4b280a84a14" +checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" dependencies = [ "cfg-if", "concurrent-queue", + "hermit-abi 0.4.0", "pin-project-lite", - "rustix 0.38.31", + "rustix 0.38.35", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "portable-atomic" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" +checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265" [[package]] name = "powerfmt" @@ -2908,9 +2891,12 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "ppv-lite86" -version = "0.2.17" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" +checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +dependencies = [ + "zerocopy", +] [[package]] name = "predicates" @@ -2928,9 +2914,9 @@ dependencies = [ [[package]] name = "predicates" -version = "3.1.0" +version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8" +checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" dependencies = [ "anstyle", "difflib", @@ -2939,15 +2925,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.6" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" +checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931" [[package]] name = "predicates-tree" -version = "1.0.9" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" +checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13" dependencies = [ "predicates-core", "termtree", @@ -3008,18 +2994,18 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.78" +version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" +checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" dependencies = [ "unicode-ident", ] [[package]] name = "quote" -version = "1.0.35" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -3089,10 +3075,19 @@ dependencies = [ ] [[package]] -name = "redox_users" -version = "0.4.4" +name = "redox_syscall" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" +checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" +dependencies = [ + "bitflags 2.6.0", +] + +[[package]] +name = "redox_users" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ "getrandom", "libredox", @@ -3101,9 +3096,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.3" +version = "1.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" dependencies = [ "aho-corasick", "memchr", @@ -3113,9 +3108,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.5" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" +checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" dependencies = [ "aho-corasick", "memchr", @@ -3124,9 +3119,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.2" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" [[package]] name = "renamore" @@ -3140,16 +3135,16 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.5" +version = "0.12.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" +checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" dependencies = [ "base64 0.22.1", "bytes", "encoding_rs", "futures-core", "futures-util", - "h2 0.4.5", + "h2 0.4.6", "http 1.1.0", "http-body 1.0.1", "http-body-util", @@ -3178,14 +3173,14 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "winreg 0.52.0", + "windows-registry", ] [[package]] name = "reqwest-middleware" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39346a33ddfe6be00cbc17a34ce996818b97b230b87229f10114693becca1268" +checksum = "562ceb5a604d3f7c885a792d42c199fd8af239d0a51b2fa6a78aafa092452b04" dependencies = [ "anyhow", "async-trait", @@ -3198,13 +3193,12 @@ dependencies = [ [[package]] name = "reqwest-retry" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf2a94ba69ceb30c42079a137e2793d6d0f62e581a24c06cd4e9bb32e973c7da" +checksum = "a83df1aaec00176d0fabb65dea13f832d2a446ca99107afc17c5d2d4981221d0" dependencies = [ "anyhow", "async-trait", - "chrono", "futures", "getrandom", "http 1.1.0", @@ -3241,16 +3235,17 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.7" +version = "0.17.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" +checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" dependencies = [ "cc", + "cfg-if", "getrandom", "libc", "spin", - "untrusted 0.9.0", - "windows-sys 0.48.0", + "untrusted", + "windows-sys 0.52.0", ] [[package]] @@ -3273,9 +3268,9 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" [[package]] name = "rustix" @@ -3293,22 +3288,22 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.31" +version = "0.38.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" +checksum = "a85d50532239da68e9addb745ba38ff4612a242c1c7ceea689c4bc7c2f43c36f" dependencies = [ - "bitflags 2.4.2", + "bitflags 2.6.0", "errno", "libc", - "linux-raw-sys 0.4.13", + "linux-raw-sys 0.4.14", "windows-sys 0.52.0", ] [[package]] name = "rustls" -version = "0.22.2" +version = "0.22.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41" +checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" dependencies = [ "log", "ring", @@ -3320,11 +3315,12 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.7" +version = "0.23.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebbbdb961df0ad3f2652da8f3fdc4b36122f568f968f45ad3316f26c025c677b" +checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044" dependencies = [ "once_cell", + "ring", "rustls-pki-types", "rustls-webpki", "subtle", @@ -3333,9 +3329,9 @@ dependencies = [ [[package]] name = "rustls-native-certs" -version = "0.7.0" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" +checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" dependencies = [ "openssl-probe", "rustls-pemfile", @@ -3346,36 +3342,36 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "2.1.0" +version = "2.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c333bb734fcdedcea57de1602543590f545f127dc8b533324318fd492c5c70b" +checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", "rustls-pki-types", ] [[package]] name = "rustls-pki-types" -version = "1.3.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "048a63e5b3ac996d78d402940b5fa47973d2d080c6c6fffa1d0f19c4445310b7" +checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0" [[package]] name = "rustls-webpki" -version = "0.102.2" +version = "0.102.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610" +checksum = "84678086bd54edf2b415183ed7a94d0efb049f1b646a33e22a36f3794be6ae56" dependencies = [ "ring", "rustls-pki-types", - "untrusted 0.9.0", + "untrusted", ] [[package]] name = "rustversion" -version = "1.0.14" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" +checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" [[package]] name = "rustyline" @@ -3401,9 +3397,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.16" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "same-file" @@ -3446,12 +3442,23 @@ dependencies = [ ] [[package]] -name = "security-framework" -version = "2.9.2" +name = "scram-2" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" +checksum = "d746fe0e755a1825a7ae6504e40de96f6b5001b45e32b05441fc1cfbf5ff7359" dependencies = [ - "bitflags 1.3.2", + "base64 0.22.1", + "rand", + "ring", +] + +[[package]] +name = "security-framework" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" +dependencies = [ + "bitflags 2.6.0", "core-foundation", "core-foundation-sys", "libc", @@ -3460,9 +3467,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.9.1" +version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" +checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" dependencies = [ "core-foundation-sys", "libc", @@ -3470,41 +3477,42 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.21" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" +checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" dependencies = [ "serde", ] [[package]] name = "serde" -version = "1.0.198" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc" +checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.198" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9" +checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] name = "serde_json" -version = "1.0.116" +version = "1.0.127" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" +checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" dependencies = [ - "indexmap 2.2.3", + "indexmap 2.5.0", "itoa", + "memchr", "ryu", "serde", ] @@ -3520,14 +3528,23 @@ dependencies = [ [[package]] name = "serde_path_to_error" -version = "0.1.15" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebd154a240de39fdebcf5775d2675c204d7c13cf39a4c697be6493c8e734337c" +checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" dependencies = [ "itoa", "serde", ] +[[package]] +name = "serde_spanned" +version = "0.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d" +dependencies = [ + "serde", +] + [[package]] name = "serde_str" version = "1.0.0" @@ -3590,6 +3607,12 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + [[package]] name = "shutdown_hooks" version = "0.1.0" @@ -3608,20 +3631,20 @@ dependencies = [ [[package]] name = "signal-hook-mio" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" +checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" dependencies = [ "libc", - "mio", + "mio 0.8.11", "signal-hook", ] [[package]] name = "signal-hook-registry" -version = "1.4.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" dependencies = [ "libc", ] @@ -3643,9 +3666,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.13.1" +version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" +checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "smawk" @@ -3666,11 +3689,11 @@ dependencies = [ [[package]] name = "snafu" -version = "0.8.2" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75976f4748ab44f6e5332102be424e7c2dc18daeaf7e725f2040c3ebb133512e" +checksum = "2b835cb902660db3415a672d862905e791e54d306c6e8189168c7f3d9ae1c79d" dependencies = [ - "snafu-derive 0.8.2", + "snafu-derive 0.8.4", ] [[package]] @@ -3679,7 +3702,7 @@ version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "990079665f075b699031e9c08fd3ab99be5029b96f3b78dc0709e8f77e4efebf" dependencies = [ - "heck", + "heck 0.4.1", "proc-macro2", "quote", "syn 1.0.109", @@ -3687,14 +3710,14 @@ dependencies = [ [[package]] name = "snafu-derive" -version = "0.8.2" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4b19911debfb8c2fb1107bc6cb2d61868aaf53a988449213959bb1b5b1ed95f" +checksum = "38d1e02fca405f6280643174a50c942219f0bbf4dbf7d480f1dd864d6f211ae5" dependencies = [ - "heck", + "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] @@ -3709,12 +3732,12 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.5" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" dependencies = [ "libc", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -3731,15 +3754,15 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "strsim" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "subtle" -version = "2.5.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "syn" @@ -3754,9 +3777,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.48" +version = "2.0.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" +checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525" dependencies = [ "proc-macro2", "quote", @@ -3768,23 +3791,26 @@ name = "sync_wrapper" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +dependencies = [ + "futures-core", +] [[package]] name = "system-configuration" -version = "0.5.1" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.6.0", "core-foundation", "system-configuration-sys", ] [[package]] name = "system-configuration-sys" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" dependencies = [ "core-foundation-sys", "libc", @@ -3798,9 +3824,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.40" +version = "0.4.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" +checksum = "cb797dad5fb5b76fcf519e702f4a589483b5ef06567f160c392832c1f5e44909" dependencies = [ "filetime", "libc", @@ -3809,14 +3835,15 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.10.0" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67" +checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" dependencies = [ "cfg-if", - "fastrand 2.0.1", - "rustix 0.38.31", - "windows-sys 0.52.0", + "fastrand 2.1.1", + "once_cell", + "rustix 0.38.35", + "windows-sys 0.59.0", ] [[package]] @@ -3869,7 +3896,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" dependencies = [ - "rustix 0.38.31", + "rustix 0.38.35", "windows-sys 0.48.0", ] @@ -3902,9 +3929,10 @@ dependencies = [ ] [[package]] -name = "test-cert-gen" -version = "0.10.0-pre" -source = "git+https://github.com/elprans/rust-tls-api.git?branch=rustls-22#b73652c53e1cbdc676f4f1cd3645cab00be514e5" +name = "test-cert-gen-2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "141c41673c7512c91e84722827642573498846aaa3c0709b870582535299ac5b" dependencies = [ "once_cell", "pem", @@ -3928,9 +3956,9 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" +checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" dependencies = [ "smawk", "terminal_size 0.2.6", @@ -3940,29 +3968,29 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.57" +version = "1.0.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" +checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.57" +version = "1.0.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" +checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] name = "time" -version = "0.3.34" +version = "0.3.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" dependencies = [ "deranged", "num-conv", @@ -3979,9 +4007,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "tinyvec" -version = "1.6.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" dependencies = [ "tinyvec_macros", ] @@ -3993,9 +4021,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] -name = "tls-api" -version = "0.10.0-pre" -source = "git+https://github.com/elprans/rust-tls-api.git?branch=rustls-22#b73652c53e1cbdc676f4f1cd3645cab00be514e5" +name = "tls-api-2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "294abb022a256babb2c95ba2f71f39d0a1491e1f72ea5229deb573842ca2abc7" dependencies = [ "anyhow", "pem", @@ -4005,75 +4034,76 @@ dependencies = [ ] [[package]] -name = "tls-api-not-tls" -version = "0.10.0-pre" -source = "git+https://github.com/elprans/rust-tls-api.git?branch=rustls-22#b73652c53e1cbdc676f4f1cd3645cab00be514e5" +name = "tls-api-not-tls-2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5022679634f4df74a0eebca9f17b851d08a74d5e7183f3522770dd1416af707" dependencies = [ "anyhow", "thiserror", - "tls-api", - "tls-api-test", + "tls-api-2", + "tls-api-test-2", "tokio", ] [[package]] -name = "tls-api-rustls" -version = "0.10.0-pre" -source = "git+https://github.com/elprans/rust-tls-api.git?branch=rustls-22#b73652c53e1cbdc676f4f1cd3645cab00be514e5" +name = "tls-api-rustls-2" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acb91e1438413f83f63652934fb5413a6c2132db4a9e14bdca6fa8d2dda8f1b3" dependencies = [ "anyhow", - "rustls 0.22.2", - "rustls-webpki", + "rustls 0.23.12", "thiserror", - "tls-api", - "tls-api-test", + "tls-api-2", + "tls-api-test-2", "tokio", + "webpki", "webpki-roots", ] [[package]] -name = "tls-api-test" -version = "0.10.0-pre" -source = "git+https://github.com/elprans/rust-tls-api.git?branch=rustls-22#b73652c53e1cbdc676f4f1cd3645cab00be514e5" +name = "tls-api-test-2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58d491693b54014df34a52e25519be0f38cd97fe9fc8f2a6c541becab45f808b" dependencies = [ "anyhow", - "env_logger 0.11.3", + "env_logger 0.11.5", "log", "pem", - "rustls-webpki", - "test-cert-gen", - "tls-api", + "test-cert-gen-2", + "tls-api-2", "tokio", - "untrusted 0.6.2", + "webpki", ] [[package]] name = "tokio" -version = "1.36.0" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" +checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" dependencies = [ "backtrace", "bytes", "libc", - "mio", - "num_cpus", + "mio 1.0.2", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.5", + "socket2 0.5.7", "tokio-macros", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] name = "tokio-macros" -version = "2.2.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] @@ -4092,7 +4122,7 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" dependencies = [ - "rustls 0.22.2", + "rustls 0.22.4", "rustls-pki-types", "tokio", ] @@ -4103,16 +4133,16 @@ version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" dependencies = [ - "rustls 0.23.7", + "rustls 0.23.12", "rustls-pki-types", "tokio", ] [[package]] name = "tokio-stream" -version = "0.1.14" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" +checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" dependencies = [ "futures-core", "pin-project-lite", @@ -4121,16 +4151,15 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.10" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" +checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" dependencies = [ "bytes", "futures-core", "futures-sink", "pin-project-lite", "tokio", - "tracing", ] [[package]] @@ -4142,6 +4171,40 @@ dependencies = [ "serde", ] +[[package]] +name = "toml" +version = "0.8.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", +] + +[[package]] +name = "toml_datetime" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_edit" +version = "0.22.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" +dependencies = [ + "indexmap 2.5.0", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + [[package]] name = "tower" version = "0.4.13" @@ -4159,15 +4222,15 @@ dependencies = [ [[package]] name = "tower-layer" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" [[package]] name = "tower-service" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" @@ -4189,7 +4252,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", ] [[package]] @@ -4209,17 +4272,16 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "trybuild" -version = "1.0.89" +version = "1.0.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a9d3ba662913483d6722303f619e75ea10b7855b0f8e0d72799cf8621bb488f" +checksum = "207aa50d36c4be8d8c6ea829478be44a372c6a77669937bb39c698e52f1491e8" dependencies = [ - "basic-toml", "glob", - "once_cell", "serde", "serde_derive", "serde_json", "termcolor", + "toml 0.8.19", ] [[package]] @@ -4257,9 +4319,9 @@ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" [[package]] name = "unicode-normalization" -version = "0.1.22" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" dependencies = [ "tinyvec", ] @@ -4272,15 +4334,9 @@ checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" [[package]] name = "unicode-width" -version = "0.1.11" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" - -[[package]] -name = "untrusted" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f" +checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" [[package]] name = "untrusted" @@ -4290,9 +4346,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.0" +version = "2.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" +checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" dependencies = [ "form_urlencoded", "idna", @@ -4308,15 +4364,15 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" [[package]] name = "utf8parse" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.7.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" +checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" dependencies = [ "getrandom", "rand", @@ -4325,9 +4381,9 @@ dependencies = [ [[package]] name = "value-bag" -version = "1.7.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "126e423afe2dd9ac52142e7e9d5ce4135d7e13776c529d27fd6bc49f19e3280b" +checksum = "5a84c137d37ab0142f0f2ddfe332651fdbf252e7b7dbb4e67b6c1f1b2e925101" [[package]] name = "vcpkg" @@ -4337,9 +4393,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "wait-timeout" @@ -4352,15 +4408,15 @@ dependencies = [ [[package]] name = "waker-fn" -version = "1.1.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" +checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" [[package]] name = "walkdir" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" dependencies = [ "same-file", "winapi-util", @@ -4384,8 +4440,8 @@ dependencies = [ "futures-channel", "futures-util", "headers", - "http 0.2.11", - "hyper 0.14.28", + "http 0.2.12", + "hyper 0.14.30", "log", "mime", "mime_guess", @@ -4410,35 +4466,42 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] -name = "wasm-bindgen" -version = "0.2.91" +name = "wasite" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" +checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" + +[[package]] +name = "wasm-bindgen" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" dependencies = [ "cfg-if", + "once_cell", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.91" +version = "0.2.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" +checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.41" +version = "0.4.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" +checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed" dependencies = [ "cfg-if", "js-sys", @@ -4448,9 +4511,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.91" +version = "0.2.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" +checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -4458,22 +4521,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.91" +version = "0.2.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" +checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.76", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.91" +version = "0.2.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" +checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" [[package]] name = "wasm-timer" @@ -4514,19 +4577,29 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.68" +version = "0.3.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" +checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" dependencies = [ "js-sys", "wasm-bindgen", ] [[package]] -name = "webpki-roots" -version = "0.26.1" +name = "webpki" +version = "0.22.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" +checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "webpki-roots" +version = "0.26.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd" dependencies = [ "rustls-pki-types", ] @@ -4540,16 +4613,17 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.31", + "rustix 0.38.35", ] [[package]] name = "whoami" -version = "1.4.1" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50" +checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9" dependencies = [ - "wasm-bindgen", + "redox_syscall 0.4.1", + "wasite", "web-sys", ] @@ -4571,11 +4645,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.6" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" +checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "winapi", + "windows-sys 0.59.0", ] [[package]] @@ -4585,12 +4659,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] -name = "windows-core" -version = "0.52.0" +name = "windows-registry" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" dependencies = [ - "windows-targets 0.52.0", + "windows-result", + "windows-strings", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-result" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-strings" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" +dependencies = [ + "windows-result", + "windows-targets 0.52.6", ] [[package]] @@ -4632,7 +4727,16 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.0", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", ] [[package]] @@ -4667,17 +4771,18 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.52.0" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm 0.52.0", - "windows_aarch64_msvc 0.52.0", - "windows_i686_gnu 0.52.0", - "windows_i686_msvc 0.52.0", - "windows_x86_64_gnu 0.52.0", - "windows_x86_64_gnullvm 0.52.0", - "windows_x86_64_msvc 0.52.0", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", ] [[package]] @@ -4694,9 +4799,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_gnullvm" -version = "0.52.0" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" [[package]] name = "windows_aarch64_msvc" @@ -4712,9 +4817,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_aarch64_msvc" -version = "0.52.0" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" [[package]] name = "windows_i686_gnu" @@ -4730,9 +4835,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_gnu" -version = "0.52.0" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" [[package]] name = "windows_i686_msvc" @@ -4748,9 +4859,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_i686_msvc" -version = "0.52.0" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" [[package]] name = "windows_x86_64_gnu" @@ -4766,9 +4877,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnu" -version = "0.52.0" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" [[package]] name = "windows_x86_64_gnullvm" @@ -4784,9 +4895,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_gnullvm" -version = "0.52.0" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" [[package]] name = "windows_x86_64_msvc" @@ -4802,9 +4913,18 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "windows_x86_64_msvc" -version = "0.52.0" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "winnow" +version = "0.6.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f" +dependencies = [ + "memchr", +] [[package]] name = "winreg" @@ -4815,16 +4935,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "winreg" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" -dependencies = [ - "cfg-if", - "windows-sys 0.48.0", -] - [[package]] name = "wslapi" version = "0.1.3" @@ -4852,8 +4962,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" dependencies = [ "libc", - "linux-raw-sys 0.4.13", - "rustix 0.38.31", + "linux-raw-sys 0.4.14", + "rustix 0.38.35", ] [[package]] @@ -4863,10 +4973,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" [[package]] -name = "zeroize" -version = "1.7.0" +name = "zerocopy" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +dependencies = [ + "byteorder", + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.76", +] + +[[package]] +name = "zeroize" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" [[package]] name = "zip" @@ -4928,9 +5059,9 @@ dependencies = [ [[package]] name = "zstd-sys" -version = "2.0.9+zstd.1.5.5" +version = "2.0.13+zstd.1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" +checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" dependencies = [ "cc", "pkg-config", diff --git a/pkgs/tools/networking/edgedb/default.nix b/pkgs/tools/networking/edgedb/default.nix index af6e3d68f03f..58763cc39319 100644 --- a/pkgs/tools/networking/edgedb/default.nix +++ b/pkgs/tools/networking/edgedb/default.nix @@ -19,27 +19,26 @@ }: rustPlatform.buildRustPackage rec { pname = "edgedb"; - version = "5.2.3"; + version = "5.3.0"; src = fetchFromGitHub { owner = "edgedb"; repo = "edgedb-cli"; - rev = "v${version}"; - hash = "sha256-WlXX1ACSZZNV0VBCoZjC1wLDF0qjIdjNJ4rQu6fBGfM="; + rev = "refs/tags/v${version}"; + hash = "sha256-oG3KxORNppQDa84CXjSxM9Z9GDLby+irUbEncyjoJU4="; fetchSubmodules = true; }; cargoLock = { lockFile = ./Cargo.lock; outputHashes = { - "edgedb-derive-0.5.1" = "sha256-ATldvarkp/W5bz55qoMtfTMcueWklyKnrJUHvLKlWh0="; - "edgeql-parser-0.1.0" = "sha256-KPi2M2UEN+p3V/fcmKtb3K9XTLC4vJ5H+yG8ZfD7RBs="; + "edgedb-derive-0.5.2" = "sha256-9vmaMOoZ5VmbJ0/eN0XdE5hrID/BK4IkLnIwucgRr2w="; + "edgeql-parser-0.1.0" = "sha256-WUNiUgfuzbr+zNYgJivalUK5kPSvkVcgp4Zq3pmoa/w="; "indexmap-2.0.0-pre" = "sha256-QMOmoUHE1F/sp+NeDpgRGqqacWLHWG02YgZc5vAdXZY="; - "rexpect-0.5.0" = "sha256-vstAL/fJWWx7WbmRxNItKpzvgGF3SvJDs5isq9ym/OA="; "rustyline-8.0.0" = "sha256-CrICwQbHPzS4QdVIEHxt2euX+g+0pFYe84NfMp1daEc="; + "rexpect-0.5.0" = "sha256-vstAL/fJWWx7WbmRxNItKpzvgGF3SvJDs5isq9ym/OA="; "serde_str-1.0.0" = "sha256-CMBh5lxdQb2085y0jc/DrV6B8iiXvVO2aoZH/lFFjak="; "scram-0.7.0" = "sha256-QTPxyXBpMXCDkRRJEMYly1GKp90khrwwuMI1eHc2H+Y="; - "test-cert-gen-0.10.0-pre" = "sha256-Hyk4/iw6/SgEI70vPCNNbE9+nQ0pOAM158hncyUbvp8="; "test-utils-0.1.0" = "sha256-FoF/U89Q9E2Dlmpoh+cfDcScmhcsSNut+rE7BECJSJI="; "warp-0.3.6" = "sha256-knDt2aw/PJ0iabhKg+okwwnEzCY+vQVhE7HKCTM6QbE="; }; From a7eb80e67926344555dfa5e88ef2d3b2383f0822 Mon Sep 17 00:00:00 2001 From: redyf Date: Wed, 11 Sep 2024 19:26:15 -0300 Subject: [PATCH 126/232] audacity: 3.6.2 -> 3.6.3 https://github.com/audacity/audacity/releases/tag/Audacity-3.6.3 --- pkgs/applications/audio/audacity/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/audacity/default.nix b/pkgs/applications/audio/audacity/default.nix index 9cafba0d27f3..d8d7a5429fd1 100644 --- a/pkgs/applications/audio/audacity/default.nix +++ b/pkgs/applications/audio/audacity/default.nix @@ -62,13 +62,13 @@ stdenv.mkDerivation rec { pname = "audacity"; - version = "3.6.2"; + version = "3.6.3"; src = fetchFromGitHub { owner = "audacity"; repo = "audacity"; rev = "Audacity-${version}"; - hash = "sha256-x3UeZM00kmZB3IG9EBx1jssyWmC3gcYTPtwMmJNSzgM="; + hash = "sha256-fjEUo0NY/ZOujtgpWTXHLaMjzAlel3xHY+erzxLi5kQ="; }; postPatch = '' From cdc356b8ec43994c29ac2ef36ab639861813db78 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Wed, 11 Sep 2024 19:13:32 -0400 Subject: [PATCH 127/232] brave: 1.69.162 -> 1.69.168 https://community.brave.com/t/release-channel-1-69-168/568160 --- pkgs/applications/networking/browsers/brave/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/browsers/brave/default.nix b/pkgs/applications/networking/browsers/brave/default.nix index caddc7e0be62..a78454196e39 100644 --- a/pkgs/applications/networking/browsers/brave/default.nix +++ b/pkgs/applications/networking/browsers/brave/default.nix @@ -6,17 +6,17 @@ callPackage ./make-brave.nix (removeAttrs args [ "callPackage" ]) if stdenv.isAarch64 then rec { pname = "brave"; - version = "1.69.162"; + version = "1.69.168"; url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_arm64.deb"; - hash = "sha256-uG3I91XyuEn/ZFjlv84041ZTCslkC5XElag/4R7MBHc="; + hash = "sha256-ZSFhbj/Tw+jOaFP2HHnn74DO2w4l37upS+rxLcF5P9I="; platform = "aarch64-linux"; } else if stdenv.isx86_64 then rec { pname = "brave"; - version = "1.69.162"; + version = "1.69.168"; url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; - hash = "sha256-O8sf0sw6ljemNdSJwHyX2JjqQWEuKvSP9hj0H2VXQC8="; + hash = "sha256-smLyA4eZAw62BfbPPFKjKaZd8FJ1FMSV1SUWXCFCzD4="; platform = "x86_64-linux"; } else From f9e98dbea4520c3073876866e7b718fc896be09e Mon Sep 17 00:00:00 2001 From: "Winston R. Milling" Date: Wed, 11 Sep 2024 18:29:51 -0500 Subject: [PATCH 128/232] armcord: 3.3.0 -> 3.3.1 https://github.com/ArmCord/ArmCord/releases/tag/v3.3.1 --- .../networking/instant-messengers/armcord/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/armcord/default.nix b/pkgs/applications/networking/instant-messengers/armcord/default.nix index 659025d6538a..1c0ad5aa361a 100644 --- a/pkgs/applications/networking/instant-messengers/armcord/default.nix +++ b/pkgs/applications/networking/instant-messengers/armcord/default.nix @@ -10,20 +10,20 @@ }: stdenv.mkDerivation rec { pname = "armcord"; - version = "3.3.0"; + version = "3.3.1"; src = fetchFromGitHub { owner = "ArmCord"; repo = "ArmCord"; rev = "v${version}"; - hash = "sha256-nVirmGgR5yssMRXFUialMjTTSEa5nVNtue207eYUJCg="; + hash = "sha256-rCcjanmr4s9Nc5QB3Rb5ptKF/Ge8PSZt0WvgIul3RGs="; }; nativeBuildInputs = [ pnpm.configHook nodejs makeWrapper copyDesktopItems ]; pnpmDeps = pnpm.fetchDeps { inherit pname version src; - hash = "sha256-ETnTWErdOIdcyK/v42bx+dFPPt+Lc0Lxyzo+RpxvEjU="; + hash = "sha256-ZfErOj03NdkviNXV4bvZC8uPOk29RhgmSez/Qvw1sGo="; }; ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; From bae4c09c77fea7200a067370d9ae7a73e28e5543 Mon Sep 17 00:00:00 2001 From: networkException Date: Thu, 12 Sep 2024 02:07:34 +0200 Subject: [PATCH 129/232] chromium,chromedriver: 128.0.6613.119 -> 128.0.6613.137 https://chromereleases.googleblog.com/2024/09/stable-channel-update-for-desktop_10.html This update includes 5 security fixes. CVEs: CVE-2024-8636 CVE-2024-8637 CVE-2024-8638 CVE-2024-8639 --- .../networking/browsers/chromium/upstream-info.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix index c354b4e997cc..efda9bfc45da 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.nix +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.nix @@ -1,11 +1,11 @@ { stable = { chromedriver = { - hash_darwin = "sha256-jqBrEpqHRjpxi7sp/dSzQFzROS21bPTfwvco/UzKMug="; + hash_darwin = "sha256-UtBJZG+pRdqwxWsvuxYrRJsmFdMEa5h6lWXt39cPxF0="; hash_darwin_aarch64 = - "sha256-7T9uargLSXs4uqBmS00eUNvhYiA42UC7DPTkTI2sM8U="; - hash_linux = "sha256-Li4f3+zZl2HCbxwIyLpylRJ1PMRbV3LKW7dBEnKyIdo="; - version = "128.0.6613.119"; + "sha256-2HFrIwc8Jzlg6/eKkJqfd8kwS8c6powU2RnpBGMSBak="; + hash_linux = "sha256-8EEJL0A/t0VabaKHEHC2WHwygUo+PCsKeU09SqRzkVE="; + version = "128.0.6613.137"; }; deps = { gn = { @@ -15,8 +15,8 @@ version = "2024-06-11"; }; }; - hash = "sha256-WCemrL5jPRn5P1olLwfrAM1xLc0hcaBYDj0CZPoPucU="; - version = "128.0.6613.119"; + hash = "sha256-/q+Z1a1EFZRQvC3pmuDbzJWzSSYkI7bfgUAaJRBaj00="; + version = "128.0.6613.137"; }; ungoogled-chromium = { deps = { From a84b51fdd1ee2e500cabfc68b115e808b374e0d3 Mon Sep 17 00:00:00 2001 From: networkException Date: Thu, 12 Sep 2024 02:07:57 +0200 Subject: [PATCH 130/232] ungoogled-chromium: 128.0.6613.119-1 -> 128.0.6613.137-1 https://chromereleases.googleblog.com/2024/09/stable-channel-update-for-desktop_10.html This update includes 5 security fixes. CVEs: CVE-2024-8636 CVE-2024-8637 CVE-2024-8638 CVE-2024-8639 --- .../networking/browsers/chromium/upstream-info.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix index efda9bfc45da..1aee35f96b89 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.nix +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.nix @@ -27,11 +27,11 @@ version = "2024-06-11"; }; ungoogled-patches = { - hash = "sha256-qHt7Rjx1VmKlX8ko7hpNv8SW/rNhXsGchWs6A/aXuu0="; - rev = "128.0.6613.119-1"; + hash = "sha256-o/cEVLD64qYd/VIbmN/FCFbu7LgQsZdWkyxIns7/bRs="; + rev = "128.0.6613.137-1"; }; }; - hash = "sha256-WCemrL5jPRn5P1olLwfrAM1xLc0hcaBYDj0CZPoPucU="; - version = "128.0.6613.119"; + hash = "sha256-/q+Z1a1EFZRQvC3pmuDbzJWzSSYkI7bfgUAaJRBaj00="; + version = "128.0.6613.137"; }; } From 915112a684f90c1a551f743e64805ab073638358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 11 Sep 2024 18:45:55 -0700 Subject: [PATCH 131/232] python312Packages.icalevents: 0.1.28 -> 0.1.29 Diff: https://github.com/jazzband/icalevents/compare/refs/tags/v0.1.28...0.1.29 Changelog: https://github.com/jazzband/icalevents/releases/tag/v0.1.29 --- pkgs/development/python-modules/icalevents/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/icalevents/default.nix b/pkgs/development/python-modules/icalevents/default.nix index bf89ca6938db..8c0839590676 100644 --- a/pkgs/development/python-modules/icalevents/default.nix +++ b/pkgs/development/python-modules/icalevents/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "icalevents"; - version = "0.1.28"; + version = "0.1.29"; pyproject = true; disabled = pythonOlder "3.9"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "jazzband"; repo = "icalevents"; rev = "refs/tags/v${version}"; - hash = "sha256-JX4j2CsEY/bHrD7Rb9ru3C4T2e94mpC369nDN6Cv/I0="; + hash = "sha256-Bp+Wz88q65Gem8LyRz0A4xE5hIgOD+iZ7E1UlnfFiD4="; }; build-system = [ From 1e9fdfe2dbb825c7cdade2d19071f393f5c0c1ec Mon Sep 17 00:00:00 2001 From: Mica Date: Wed, 11 Sep 2024 19:24:07 -0700 Subject: [PATCH 132/232] darktable: move to pkgs/by-name (#341144) darktable: move to packages by-name Co-authored-by: aleksana --- .../darktable/default.nix => by-name/da/darktable/package.nix} | 0 pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename pkgs/{applications/graphics/darktable/default.nix => by-name/da/darktable/package.nix} (100%) diff --git a/pkgs/applications/graphics/darktable/default.nix b/pkgs/by-name/da/darktable/package.nix similarity index 100% rename from pkgs/applications/graphics/darktable/default.nix rename to pkgs/by-name/da/darktable/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a2434313d664..c12c64eac07b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -29286,7 +29286,7 @@ with pkgs; darkman = callPackage ../applications/misc/darkman { }; - darktable = callPackage ../applications/graphics/darktable { + darktable = callPackage ../by-name/da/darktable/package.nix { lua = lua5_4; pugixml = pugixml.override { shared = true; }; stdenv = if stdenv.isDarwin && stdenv.isx86_64 then overrideSDK llvmPackages_18.stdenv { darwinMinVersion = "10.14"; darwinSdkVersion = "11.0"; } else stdenv; From 79638e449a71e9b25f15f36eade8431380f686c9 Mon Sep 17 00:00:00 2001 From: Bruno Bigras Date: Wed, 11 Sep 2024 22:52:17 -0400 Subject: [PATCH 133/232] glasskube: 0.20.1 -> 0.21.0 --- pkgs/by-name/gl/glasskube/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/gl/glasskube/package.nix b/pkgs/by-name/gl/glasskube/package.nix index dd730adc1308..a5d55f3b6160 100644 --- a/pkgs/by-name/gl/glasskube/package.nix +++ b/pkgs/by-name/gl/glasskube/package.nix @@ -7,12 +7,12 @@ }: let - version = "0.20.1"; + version = "0.21.0"; gitSrc = fetchFromGitHub { owner = "glasskube"; repo = "glasskube"; rev = "refs/tags/v${version}"; - hash = "sha256-0ndYFpfijuBSODdl5XJah6/avLE1Bf6OZ0p0KGRB3dw="; + hash = "sha256-MRmT7DqD6Tlej5Y/LVr++RcMjWlGA9xFe3FNYgxIPvM="; }; web-bundle = buildNpmPackage rec { inherit version; @@ -20,7 +20,7 @@ let src = gitSrc; - npmDepsHash = "sha256-BcYrZ95BLxKXQ4c1bHqNZKT9Tv4rAK72WSwrjhIsASY="; + npmDepsHash = "sha256-246xQz1eI3WmJxSrKe6Q/oUQtZMjpa4mYwOIqSukyo8="; dontNpmInstall = true; @@ -40,7 +40,7 @@ in buildGo123Module rec { src = gitSrc; - vendorHash = "sha256-BTJzhKf8aGHKbG0fdWVRWy0rFob9ZSTH45ME+4rdohU="; + vendorHash = "sha256-RUUDIPuCxV+JwPLNxLALEmRIJ68XSNPtfwchuAJJYn0="; CGO_ENABLED = 0; From bfffffac890d3a343c7f4efcbde39010869dd933 Mon Sep 17 00:00:00 2001 From: Bruno Bigras Date: Wed, 11 Sep 2024 22:52:17 -0400 Subject: [PATCH 134/232] glasskube: add versionCheckHook --- pkgs/by-name/gl/glasskube/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/gl/glasskube/package.nix b/pkgs/by-name/gl/glasskube/package.nix index a5d55f3b6160..0db16cdcd1f4 100644 --- a/pkgs/by-name/gl/glasskube/package.nix +++ b/pkgs/by-name/gl/glasskube/package.nix @@ -4,6 +4,7 @@ , fetchFromGitHub , nix-update-script , installShellFiles +, versionCheckHook }: let @@ -54,6 +55,8 @@ in buildGo123Module rec { subPackages = [ "cmd/glasskube" "cmd/package-operator" ]; nativeBuildInputs = [ installShellFiles ]; + nativeCheckInputs = [ versionCheckHook ]; + doInstallCheck = true; preBuild = '' cp -r ${web-bundle}/bundle internal/web/root/static/bundle From 8d7af7c14d9cb720d47f4b949a06c3e0fc3c78f9 Mon Sep 17 00:00:00 2001 From: K900 Date: Wed, 11 Sep 2024 08:04:55 +0300 Subject: [PATCH 135/232] gamescope: 3.15.5 -> 3.15.9 --- pkgs/by-name/ga/gamescope/package.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ga/gamescope/package.nix b/pkgs/by-name/ga/gamescope/package.nix index 26dbdf8440e4..7619b43c6dc1 100644 --- a/pkgs/by-name/ga/gamescope/package.nix +++ b/pkgs/by-name/ga/gamescope/package.nix @@ -33,6 +33,7 @@ , lib , makeBinaryWrapper , nix-update-script +, writeShellScriptBin , enableExecutable ? true , enableWsi ? true }: @@ -46,14 +47,14 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "gamescope"; - version = "3.15.5"; + version = "3.15.9"; src = fetchFromGitHub { owner = "ValveSoftware"; repo = "gamescope"; rev = "refs/tags/${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-H6o0UdJ+wpfy0YY6LDzncWWzUGAMwQC7sHPu5TxHC8I="; + hash = "sha256-+BRinPyh8t9HboT0uXPEu+sSJz9qCZshlfzDfZDA41Q="; }; patches = [ @@ -98,6 +99,9 @@ stdenv.mkDerivation (finalAttrs: { edid-decode # For OpenVR cmake + + # calls git describe to encode its own version into the build + (writeShellScriptBin "git" "echo ${finalAttrs.version}") ] ++ lib.optionals enableExecutable [ makeBinaryWrapper glslang From e3dfa9aefc9a6e778d10b5b23d66595583242028 Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Thu, 12 Sep 2024 00:45:31 -0400 Subject: [PATCH 136/232] cirrus-cli: 0.125.1 -> 0.126.0 Diff: https://github.com/cirruslabs/cirrus-cli/compare/v0.125.1...v0.126.0 --- pkgs/by-name/ci/cirrus-cli/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ci/cirrus-cli/package.nix b/pkgs/by-name/ci/cirrus-cli/package.nix index 6da8005fed8a..d28d85c99a0c 100644 --- a/pkgs/by-name/ci/cirrus-cli/package.nix +++ b/pkgs/by-name/ci/cirrus-cli/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "cirrus-cli"; - version = "0.125.1"; + version = "0.126.0"; src = fetchFromGitHub { owner = "cirruslabs"; repo = pname; rev = "v${version}"; - hash = "sha256-QlQ1TaS6iUXNVF5SXyBmbcIBQfD6R7nKjPeOjRuvSds="; + hash = "sha256-9HjZI3MQBI24Ut3CI2hMOlRtZExoJtMXfd/HmSSICx0="; }; - vendorHash = "sha256-BbBwia47E6EtoEzO2c2fhjg6WHGHTnzl5VyVYxIMu6E="; + vendorHash = "sha256-PecNBlSoo8WN2FKXN/UpkqpqbsJkOPHKILy76YWgNlw="; ldflags = [ "-X github.com/cirruslabs/cirrus-cli/internal/version.Version=v${version}" From aff3f795644c3e23f08ad5d6168742bafa88e8fd Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Thu, 12 Sep 2024 10:12:16 +0530 Subject: [PATCH 137/232] jetbrains: 2024.1.8 -> 2024.2.4 jetbrains.clion: 2024.2.0.1 -> 2024.2.1 jetbrains.datagrip: 2024.2.1 -> 2024.2.2 jetbrains.gateway: 2024.2 -> 2024.2.1 jetbrains.goland: 2024.2.0.1 -> 2024.2.1.1 jetbrains.phpstorm: 2024.2.0.1 -> 2024.2.1 jetbrains.rider: 2024.2.2 -> 2024.2.4 jetbrains.ruby-mine: 2024.2.0.1 -> 2024.2.1 jetbrains.rust-rover: 2024.1.8 -> 2024.2 --- .../editors/jetbrains/bin/versions.json | 256 +++++++++--------- 1 file changed, 128 insertions(+), 128 deletions(-) diff --git a/pkgs/applications/editors/jetbrains/bin/versions.json b/pkgs/applications/editors/jetbrains/bin/versions.json index 64ac4c678559..667cc1ac5e41 100644 --- a/pkgs/applications/editors/jetbrains/bin/versions.json +++ b/pkgs/applications/editors/jetbrains/bin/versions.json @@ -11,18 +11,18 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.tar.gz", - "version": "2024.2.0.1", - "sha256": "1363dcf718597aefacf2beca887e71a19c9b733cc044b24ff8b8db1253b643cd", - "url": "https://download.jetbrains.com/cpp/CLion-2024.2.0.1.tar.gz", - "build_number": "242.20224.413" + "version": "2024.2.1", + "sha256": "90c6ad146b55909ff4e09cf7290c51db2d3f94985e972133c81ad30c4654c74e", + "url": "https://download.jetbrains.com/cpp/CLion-2024.2.1.tar.gz", + "build_number": "242.21829.173" }, "datagrip": { "update-channel": "DataGrip RELEASE", "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}.tar.gz", - "version": "2024.2.1", - "sha256": "dc6bae6c5ca4daa6d3eefd131d48f20810540f75ac635ed56eea7d00de9c0ee1", - "url": "https://download.jetbrains.com/datagrip/datagrip-2024.2.1.tar.gz", - "build_number": "242.20224.385" + "version": "2024.2.2", + "sha256": "989599d5f2c900219d3cac75557655927f0b2f95224c9cf3b1ec9ba3167bfc07", + "url": "https://download.jetbrains.com/datagrip/datagrip-2024.2.2.tar.gz", + "build_number": "242.21829.162" }, "dataspell": { "update-channel": "DataSpell RELEASE", @@ -35,18 +35,18 @@ "gateway": { "update-channel": "Gateway RELEASE", "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}.tar.gz", - "version": "2024.2", - "sha256": "a397ec10b27ed309ddc7287d43c89f6cddb55f129ea5bd5c298483dd2c33bffb", - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.2.tar.gz", - "build_number": "242.20224.368" + "version": "2024.2.1", + "sha256": "bc4027c3322004d041571ede49f1dc3656d7abcecf6bdeb9caab191264e60fcb", + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.2.1.tar.gz", + "build_number": "242.21829.203" }, "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}.tar.gz", - "version": "2024.2.0.1", - "sha256": "d55c87c1bd1b886841e807098d4c3c2575ad21f838f6920c86f84c647915f62e", - "url": "https://download.jetbrains.com/go/goland-2024.2.0.1.tar.gz", - "build_number": "242.20224.424" + "version": "2024.2.1.1", + "sha256": "9305eb0c8985cf02a43c45002d7676323a84f5a4a544a0458468a49347e6ed57", + "url": "https://download.jetbrains.com/go/goland-2024.2.1.1.tar.gz", + "build_number": "242.21829.220" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", @@ -75,10 +75,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.tar.gz", - "version": "2024.2.0.1", - "sha256": "182392496510eed42c7b1f4616e6c9e5b546348ea8c235cc74da131bcbd56d29", - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.2.0.1.tar.gz", - "build_number": "242.20224.427", + "version": "2024.2.1", + "sha256": "a9df519875815cd05b65324b4f0343584bd88f72df88d82a8dd87fc501b2c001", + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.2.1.tar.gz", + "build_number": "242.21829.154", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -100,26 +100,26 @@ "rider": { "update-channel": "Rider RELEASE", "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.tar.gz", - "version": "2024.2.2", - "sha256": "69eb9b7078d192d8f353e24fc88845d912f0056c165b1b0f01faf036889b48a1", - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.2.2.tar.gz", - "build_number": "242.20224.431" + "version": "2024.2.4", + "sha256": "b6462b294e23b46cc946f46c01759c709ca7a41c367fa87206f7992d45142602", + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.2.4.tar.gz", + "build_number": "242.21829.210" }, "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.tar.gz", - "version": "2024.2.0.1", - "sha256": "9e3ca43d2cd0c22b254033c9fea4c54707310a39a2b4b1ff270a480b53fd3518", - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.2.0.1.tar.gz", - "build_number": "242.20224.425" + "version": "2024.2.1", + "sha256": "246640c171b9e89c135360ae52b6720f1d18e591f9c16023b14b6597131833be", + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.2.1.tar.gz", + "build_number": "242.21829.150" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.tar.gz", - "version": "2024.1.8", - "sha256": "c4b6a3f1eb23a17c4a09344073f4039d0cd51c5a6991fe7bdfd761edc422b703", - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.1.8.tar.gz", - "build_number": "241.18968.39" + "version": "2024.2", + "sha256": "53c076815e257e917a5a3dba53a5990e079a83b69195d57a2c0c72fb61ae76e8", + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.2.tar.gz", + "build_number": "242.21829.198" }, "webstorm": { "update-channel": "WebStorm RELEASE", @@ -150,18 +150,18 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.tar.gz", - "version": "2024.2.0.1", - "sha256": "9a8d26655b264cfbbf25fe4a20d9fdf36e1f091420407f9e367983165dec0068", - "url": "https://download.jetbrains.com/cpp/CLion-2024.2.0.1-aarch64.tar.gz", - "build_number": "242.20224.413" + "version": "2024.2.1", + "sha256": "2570ecc174498cd137d0df877ddc174a8dab51297851170a8438338361b1674c", + "url": "https://download.jetbrains.com/cpp/CLion-2024.2.1-aarch64.tar.gz", + "build_number": "242.21829.173" }, "datagrip": { "update-channel": "DataGrip RELEASE", "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}-aarch64.tar.gz", - "version": "2024.2.1", - "sha256": "6ca837be2f61e1db0d1a84b6c2a98d963d3625aa70fbdf6dfa9f73a9eb0c0b4d", - "url": "https://download.jetbrains.com/datagrip/datagrip-2024.2.1-aarch64.tar.gz", - "build_number": "242.20224.385" + "version": "2024.2.2", + "sha256": "1d915eb7426693fe490cfcd5b484f0e1c9d45c21a4050242101dbe33905a42ee", + "url": "https://download.jetbrains.com/datagrip/datagrip-2024.2.2-aarch64.tar.gz", + "build_number": "242.21829.162" }, "dataspell": { "update-channel": "DataSpell RELEASE", @@ -174,18 +174,18 @@ "gateway": { "update-channel": "Gateway RELEASE", "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}-aarch64.tar.gz", - "version": "2024.2", - "sha256": "b184c5f06755fcd849071da93f2046fec20f8183691663cbac817f52ae418e76", - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.2-aarch64.tar.gz", - "build_number": "242.20224.368" + "version": "2024.2.1", + "sha256": "9dfe0228b651421e0972915472ea34a80940bf4b13a922b405d88207c4140c47", + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.2.1-aarch64.tar.gz", + "build_number": "242.21829.203" }, "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.tar.gz", - "version": "2024.2.0.1", - "sha256": "52756190f5c26d82a2ed17168483aaddc11ae052c12bae5055faeac6b2230e5a", - "url": "https://download.jetbrains.com/go/goland-2024.2.0.1-aarch64.tar.gz", - "build_number": "242.20224.424" + "version": "2024.2.1.1", + "sha256": "92382b20b570621811bff7e92fe9ab4adae26e4656e60912810bbe1b073f8bb1", + "url": "https://download.jetbrains.com/go/goland-2024.2.1.1-aarch64.tar.gz", + "build_number": "242.21829.220" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", @@ -214,10 +214,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.tar.gz", - "version": "2024.2.0.1", - "sha256": "727e654db648da159e9f2ff013fc612cb2b2034dc8090af6b12b22ddc39e53f4", - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.2.0.1-aarch64.tar.gz", - "build_number": "242.20224.427", + "version": "2024.2.1", + "sha256": "c360347841f3631e09b91a99e73433525508ef2b9ebac10ae6f0a518335a815e", + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.2.1-aarch64.tar.gz", + "build_number": "242.21829.154", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -239,26 +239,26 @@ "rider": { "update-channel": "Rider RELEASE", "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.tar.gz", - "version": "2024.2.2", - "sha256": "ad60928941054d4e7171fc90b93bc63d007dbc200cef4896518b9aac0815629f", - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.2.2-aarch64.tar.gz", - "build_number": "242.20224.431" + "version": "2024.2.4", + "sha256": "7f48d11f6ce272d703d2fecd4b3122bc2538603757485017c0ac7f4014843f38", + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.2.4-aarch64.tar.gz", + "build_number": "242.21829.210" }, "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.tar.gz", - "version": "2024.2.0.1", - "sha256": "41f71e86c944ad6d5111402afdd4567387ce6099a3c8000739919dc58199f259", - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.2.0.1-aarch64.tar.gz", - "build_number": "242.20224.425" + "version": "2024.2.1", + "sha256": "c45cead59007fc00b68e450724618534d4c8f649d72da8c1afadcc0aa6014ad0", + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.2.1-aarch64.tar.gz", + "build_number": "242.21829.150" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.tar.gz", - "version": "2024.1.8", - "sha256": "1dc44db7d7f83c1e41dfd7739ac58743e0201d0a348e601248fe6ec59e4a9834", - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.1.8-aarch64.tar.gz", - "build_number": "241.18968.39" + "version": "2024.2", + "sha256": "6af71fbb8f8e1eb7ab2ddab7ecaf6ecca89eedf37d24ebbf1607c158328b7c96", + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.2-aarch64.tar.gz", + "build_number": "242.21829.198" }, "webstorm": { "update-channel": "WebStorm RELEASE", @@ -289,18 +289,18 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.dmg", - "version": "2024.2.0.1", - "sha256": "3f5c90de4ed523bc090ec6ab7bb199c5609f9dc58146c7c164fc716a4aeca20c", - "url": "https://download.jetbrains.com/cpp/CLion-2024.2.0.1.dmg", - "build_number": "242.20224.413" + "version": "2024.2.1", + "sha256": "b5eeedf09b62bba538e630e19f93d339639ec2a646da32b027d4bd66b7d54b7d", + "url": "https://download.jetbrains.com/cpp/CLion-2024.2.1.dmg", + "build_number": "242.21829.173" }, "datagrip": { "update-channel": "DataGrip RELEASE", "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}.dmg", - "version": "2024.2.1", - "sha256": "2053c1305fbabee20cf8a26aee2b939ff8965b2f7402639c09652798ebd37da6", - "url": "https://download.jetbrains.com/datagrip/datagrip-2024.2.1.dmg", - "build_number": "242.20224.385" + "version": "2024.2.2", + "sha256": "bc6247f976dfc216c86f9ff05a8401172af213230464bcff247ee432ce3140f4", + "url": "https://download.jetbrains.com/datagrip/datagrip-2024.2.2.dmg", + "build_number": "242.21829.162" }, "dataspell": { "update-channel": "DataSpell RELEASE", @@ -313,18 +313,18 @@ "gateway": { "update-channel": "Gateway RELEASE", "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}.dmg", - "version": "2024.2", - "sha256": "630ee3bfb6537c5da26aa7907027788f287d4e42fe24ba1f6eca037eb6afea42", - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.2.dmg", - "build_number": "242.20224.368" + "version": "2024.2.1", + "sha256": "4fabb5e9ea13fc1380779502915f0d6741ee75742a535ced679f68d72d40a41c", + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.2.1.dmg", + "build_number": "242.21829.203" }, "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}.dmg", - "version": "2024.2.0.1", - "sha256": "5454717fe28e3b8377b4d58844e039717c1fd3a5b9eaa430c30185dce5280c19", - "url": "https://download.jetbrains.com/go/goland-2024.2.0.1.dmg", - "build_number": "242.20224.424" + "version": "2024.2.1.1", + "sha256": "44c84b628665b4778ae4981419b796f0eed3942d43a99b2f7692706452aef493", + "url": "https://download.jetbrains.com/go/goland-2024.2.1.1.dmg", + "build_number": "242.21829.220" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", @@ -353,10 +353,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.dmg", - "version": "2024.2.0.1", - "sha256": "4913211a8e2b52407b003f5fab5b268b7211d57df96cc17ae64f87293184698e", - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.2.0.1.dmg", - "build_number": "242.20224.427", + "version": "2024.2.1", + "sha256": "19c03065045eb8acfd1a2aad24de23a057f630e75761edf71927a31c0c942873", + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.2.1.dmg", + "build_number": "242.21829.154", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -378,26 +378,26 @@ "rider": { "update-channel": "Rider RELEASE", "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.dmg", - "version": "2024.2.2", - "sha256": "dbaf051c31fb04ddca31c38b1bf76b9f4332db67dd414dca56369a63203a42a2", - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.2.2.dmg", - "build_number": "242.20224.431" + "version": "2024.2.4", + "sha256": "cb15c63682da744c78d65584c74817487c9b6d0e20311715392460263ff51f8b", + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.2.4.dmg", + "build_number": "242.21829.210" }, "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.dmg", - "version": "2024.2.0.1", - "sha256": "bb51be85686deef7cf665a5bf8a461a846e2b69d64817d43c9c47a184ad98a24", - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.2.0.1.dmg", - "build_number": "242.20224.425" + "version": "2024.2.1", + "sha256": "3bc2e6e43fae8f799c4a5d42a4c33d9ae13039b40e7c28bd010a77c5cb8e421f", + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.2.1.dmg", + "build_number": "242.21829.150" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.dmg", - "version": "2024.1.8", - "sha256": "1bfada79e7ec2166c43a6dcc65bf2387f70422e35b6511623e48ed66bbbdcdb1", - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.1.8.dmg", - "build_number": "241.18968.39" + "version": "2024.2", + "sha256": "80f995b53bf59dce729b8a6b13dff105c205b5f32b7e266135450975ac96ee7c", + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.2.dmg", + "build_number": "242.21829.198" }, "webstorm": { "update-channel": "WebStorm RELEASE", @@ -428,18 +428,18 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.dmg", - "version": "2024.2.0.1", - "sha256": "92f17a4cad5f027f940e59146fe626c421ad5be585e1f37c0e9879b49e99834e", - "url": "https://download.jetbrains.com/cpp/CLion-2024.2.0.1-aarch64.dmg", - "build_number": "242.20224.413" + "version": "2024.2.1", + "sha256": "40564665e759ef179dbf542abe8af57bb15f16c8d05d9c18c700ae81755e6516", + "url": "https://download.jetbrains.com/cpp/CLion-2024.2.1-aarch64.dmg", + "build_number": "242.21829.173" }, "datagrip": { "update-channel": "DataGrip RELEASE", "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}-aarch64.dmg", - "version": "2024.2.1", - "sha256": "6b8505ef67de19f312ce78bdbc067093aa95f78407a863b6baa16c7df98a6a98", - "url": "https://download.jetbrains.com/datagrip/datagrip-2024.2.1-aarch64.dmg", - "build_number": "242.20224.385" + "version": "2024.2.2", + "sha256": "9f92c4ba7d60a9df1e4450278125733ba1fed499d4a27bbd753d8c0d33a57dcb", + "url": "https://download.jetbrains.com/datagrip/datagrip-2024.2.2-aarch64.dmg", + "build_number": "242.21829.162" }, "dataspell": { "update-channel": "DataSpell RELEASE", @@ -452,18 +452,18 @@ "gateway": { "update-channel": "Gateway RELEASE", "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}-aarch64.dmg", - "version": "2024.2", - "sha256": "a66f93350e9251ba34a1d3cf6061fc9ad5c5351b328a15be906a8706b8be2ded", - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.2-aarch64.dmg", - "build_number": "242.20224.368" + "version": "2024.2.1", + "sha256": "8a8242c53ddc85304922552fdf424fbe31b729f549feda30b8e6a982c5447f4d", + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.2.1-aarch64.dmg", + "build_number": "242.21829.203" }, "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.dmg", - "version": "2024.2.0.1", - "sha256": "100cbfc7ac2955869f933ff61c73001d6255b69dc3f8cd36d2018a9ba939b367", - "url": "https://download.jetbrains.com/go/goland-2024.2.0.1-aarch64.dmg", - "build_number": "242.20224.424" + "version": "2024.2.1.1", + "sha256": "0ba62dbed71550a9c1e1535f6a1d6dbfe826d0bf1f7da84e40d9dee9b8e358b8", + "url": "https://download.jetbrains.com/go/goland-2024.2.1.1-aarch64.dmg", + "build_number": "242.21829.220" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", @@ -492,10 +492,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.dmg", - "version": "2024.2.0.1", - "sha256": "fa6e248516f3936abca873d9c99783d7fc826e36995bd9c0b57b407bf7144463", - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.2.0.1-aarch64.dmg", - "build_number": "242.20224.427", + "version": "2024.2.1", + "sha256": "84ce46f11f5748dac2fe2a209d3b97984546e38cc39799838eeab681301306cc", + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.2.1-aarch64.dmg", + "build_number": "242.21829.154", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -517,26 +517,26 @@ "rider": { "update-channel": "Rider RELEASE", "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.dmg", - "version": "2024.2.2", - "sha256": "ccc84f707e576b836e188dbe4d816d0643a685f81f433f795b0e3d5125963b16", - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.2.2-aarch64.dmg", - "build_number": "242.20224.431" + "version": "2024.2.4", + "sha256": "d240c6e018c63f154e7575ca759ce338995068696bfb20d70b46860acbb8edab", + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.2.4-aarch64.dmg", + "build_number": "242.21829.210" }, "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.dmg", - "version": "2024.2.0.1", - "sha256": "982773ca00ef81795b71137db98fce476fd554e13ef226ed86eb4d5abfc47f3c", - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.2.0.1-aarch64.dmg", - "build_number": "242.20224.425" + "version": "2024.2.1", + "sha256": "feca00900fc89e03c92a12d2643e927daa47eb026db2bf635b058c5e292a45a4", + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.2.1-aarch64.dmg", + "build_number": "242.21829.150" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.dmg", - "version": "2024.1.8", - "sha256": "533bb27ab515989b946bd5c72d0fa36417b248a8d2ec9f16a6ca32cc98e56048", - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.1.8-aarch64.dmg", - "build_number": "241.18968.39" + "version": "2024.2", + "sha256": "1f8e9a3d53eed9a7b292db588d1f75822c363172117c6e69a30fd369907c2bf9", + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.2-aarch64.dmg", + "build_number": "242.21829.198" }, "webstorm": { "update-channel": "WebStorm RELEASE", From 567467efa7e12ae899c2d56dddb0e41caa8f9766 Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Thu, 12 Sep 2024 10:13:35 +0530 Subject: [PATCH 138/232] jetbrains.plugins: update --- .../editors/jetbrains/plugins/plugins.json | 377 +++++++++--------- 1 file changed, 184 insertions(+), 193 deletions(-) diff --git a/pkgs/applications/editors/jetbrains/plugins/plugins.json b/pkgs/applications/editors/jetbrains/plugins/plugins.json index 72468361bca2..a65ae16ddd81 100644 --- a/pkgs/applications/editors/jetbrains/plugins/plugins.json +++ b/pkgs/applications/editors/jetbrains/plugins/plugins.json @@ -18,16 +18,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", "242.21829.142": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", "242.21829.149": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip" }, "name": "ideavim" }, @@ -46,7 +46,7 @@ "idea-ultimate" ], "builds": { - "242.21829.142": "https://plugins.jetbrains.com/files/1347/581524/scala-intellij-bin-2024.2.20.zip" + "242.21829.142": "https://plugins.jetbrains.com/files/1347/595821/scala-intellij-bin-2024.2.25.zip" }, "name": "scala" }, @@ -68,16 +68,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", "242.21829.142": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", "242.21829.149": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip" }, "name": "string-manipulation" }, @@ -99,16 +99,16 @@ ], "builds": { "241.18034.1093": null, - "241.18968.39": null, - "242.20224.385": null, - "242.20224.413": null, - "242.20224.424": null, - "242.20224.425": null, - "242.20224.427": null, - "242.20224.431": null, "242.21829.142": null, "242.21829.149": null, - "242.21829.153": null + "242.21829.150": null, + "242.21829.153": null, + "242.21829.154": null, + "242.21829.162": null, + "242.21829.173": null, + "242.21829.198": null, + "242.21829.210": null, + "242.21829.220": null }, "name": "kotlin" }, @@ -130,16 +130,16 @@ ], "builds": { "241.18034.1093": null, - "241.18968.39": "https://plugins.jetbrains.com/files/6981/582754/ini-241.18968.32.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/6981/591962/ini-242.20224.428.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/6981/591962/ini-242.20224.428.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/6981/591962/ini-242.20224.428.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/6981/591962/ini-242.20224.428.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/6981/591962/ini-242.20224.428.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/6981/591962/ini-242.20224.428.zip", - "242.21829.142": "https://plugins.jetbrains.com/files/6981/590484/ini-242.21829.40.zip", - "242.21829.149": "https://plugins.jetbrains.com/files/6981/590484/ini-242.21829.40.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/6981/590484/ini-242.21829.40.zip" + "242.21829.142": "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip", + "242.21829.149": "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip", + "242.21829.150": "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip" }, "name": "ini" }, @@ -161,16 +161,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", "242.21829.142": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", "242.21829.149": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip" }, "name": "acejump" }, @@ -180,8 +180,8 @@ "phpstorm" ], "builds": { - "242.20224.427": "https://plugins.jetbrains.com/files/7219/585969/Symfony_Plugin-2024.1.275.zip", - "242.21829.142": "https://plugins.jetbrains.com/files/7219/585969/Symfony_Plugin-2024.1.275.zip" + "242.21829.142": "https://plugins.jetbrains.com/files/7219/585969/Symfony_Plugin-2024.1.275.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/7219/585969/Symfony_Plugin-2024.1.275.zip" }, "name": "symfony-support" }, @@ -191,8 +191,8 @@ "phpstorm" ], "builds": { - "242.20224.427": "https://plugins.jetbrains.com/files/7320/586859/PHP_Annotations-11.0.2.zip", - "242.21829.142": "https://plugins.jetbrains.com/files/7320/586859/PHP_Annotations-11.0.2.zip" + "242.21829.142": "https://plugins.jetbrains.com/files/7320/596012/PHP_Annotations-11.0.3.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/7320/596012/PHP_Annotations-11.0.3.zip" }, "name": "php-annotations" }, @@ -209,14 +209,14 @@ "webstorm" ], "builds": { - "241.18968.39": "https://plugins.jetbrains.com/files/7322/559299/python-ce-241.18034.55.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/7322/583040/python-ce-242.20224.300.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/7322/583040/python-ce-242.20224.300.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/7322/583040/python-ce-242.20224.300.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/7322/583040/python-ce-242.20224.300.zip", "242.21829.142": "https://plugins.jetbrains.com/files/7322/595111/python-ce-242.21829.142.zip", "242.21829.149": "https://plugins.jetbrains.com/files/7322/595111/python-ce-242.21829.142.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/7322/595111/python-ce-242.21829.142.zip" + "242.21829.153": "https://plugins.jetbrains.com/files/7322/595111/python-ce-242.21829.142.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/7322/595111/python-ce-242.21829.142.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/7322/595111/python-ce-242.21829.142.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/7322/595111/python-ce-242.21829.142.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/7322/595111/python-ce-242.21829.142.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/7322/595111/python-ce-242.21829.142.zip" }, "name": "python-community-edition" }, @@ -238,16 +238,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/7391/561441/asciidoctor-intellij-plugin-0.42.2.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/7391/561441/asciidoctor-intellij-plugin-0.42.2.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", "242.21829.142": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", "242.21829.149": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip" }, "name": "asciidoc" }, @@ -268,15 +268,15 @@ ], "builds": { "241.18034.1093": null, - "242.20224.385": null, - "242.20224.413": null, - "242.20224.424": null, - "242.20224.425": null, - "242.20224.427": null, - "242.20224.431": null, "242.21829.142": null, "242.21829.149": null, - "242.21829.153": null + "242.21829.150": null, + "242.21829.153": null, + "242.21829.154": null, + "242.21829.162": null, + "242.21829.173": null, + "242.21829.210": null, + "242.21829.220": null }, "name": "-deprecated-rust" }, @@ -297,15 +297,15 @@ ], "builds": { "241.18034.1093": null, - "242.20224.385": null, - "242.20224.413": null, - "242.20224.424": null, - "242.20224.425": null, - "242.20224.427": null, - "242.20224.431": null, "242.21829.142": null, "242.21829.149": null, - "242.21829.153": null + "242.21829.150": null, + "242.21829.153": null, + "242.21829.154": null, + "242.21829.162": null, + "242.21829.173": null, + "242.21829.210": null, + "242.21829.220": null }, "name": "-deprecated-rust-beta" }, @@ -319,10 +319,10 @@ "ruby-mine" ], "builds": { - "242.20224.424": "https://plugins.jetbrains.com/files/8554/579645/featuresTrainer-242.20224.175.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/8554/579645/featuresTrainer-242.20224.175.zip", "242.21829.142": "https://plugins.jetbrains.com/files/8554/588322/featuresTrainer-242.21829.14.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/8554/588322/featuresTrainer-242.21829.14.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/8554/588322/featuresTrainer-242.21829.14.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/8554/588322/featuresTrainer-242.21829.14.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/8554/588322/featuresTrainer-242.21829.14.zip" }, "name": "ide-features-trainer" }, @@ -344,16 +344,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", "242.21829.142": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", "242.21829.149": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip" }, "name": "nixidea" }, @@ -363,8 +363,8 @@ "idea-ultimate" ], "builds": { - "242.20224.424": "https://plugins.jetbrains.com/files/9568/583036/go-plugin-242.20224.300.zip", - "242.21829.142": "https://plugins.jetbrains.com/files/9568/595080/go-plugin-242.21829.142.zip" + "242.21829.142": "https://plugins.jetbrains.com/files/9568/595080/go-plugin-242.21829.142.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/9568/595080/go-plugin-242.21829.142.zip" }, "name": "go" }, @@ -386,16 +386,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/10037/585243/CSVEditor-3.4.0-241.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/10037/585243/CSVEditor-3.4.0-241.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", "242.21829.142": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", "242.21829.149": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip" }, "name": "csv-editor" }, @@ -416,17 +416,17 @@ "webstorm" ], "builds": { - "241.18034.1093": "https://plugins.jetbrains.com/files/11349/592121/aws-toolkit-jetbrains-standalone-3.24-241.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/11349/592121/aws-toolkit-jetbrains-standalone-3.24-241.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/11349/592123/aws-toolkit-jetbrains-standalone-3.24-242.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/11349/592123/aws-toolkit-jetbrains-standalone-3.24-242.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/11349/592123/aws-toolkit-jetbrains-standalone-3.24-242.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/11349/592123/aws-toolkit-jetbrains-standalone-3.24-242.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/11349/592123/aws-toolkit-jetbrains-standalone-3.24-242.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/11349/592123/aws-toolkit-jetbrains-standalone-3.24-242.zip", - "242.21829.142": "https://plugins.jetbrains.com/files/11349/592123/aws-toolkit-jetbrains-standalone-3.24-242.zip", - "242.21829.149": "https://plugins.jetbrains.com/files/11349/592123/aws-toolkit-jetbrains-standalone-3.24-242.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/11349/592123/aws-toolkit-jetbrains-standalone-3.24-242.zip" + "241.18034.1093": "https://plugins.jetbrains.com/files/11349/599319/aws-toolkit-jetbrains-standalone-3.27-241.zip", + "242.21829.142": "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip", + "242.21829.149": "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip", + "242.21829.150": "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip" }, "name": "aws-toolkit" }, @@ -448,16 +448,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/12062/508223/keymap-vscode-241.14494.150.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/12062/508223/keymap-vscode-241.14494.150.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", "242.21829.142": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", "242.21829.149": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip" }, "name": "vscode-keymap" }, @@ -479,16 +479,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/12559/508216/keymap-eclipse-241.14494.150.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/12559/508216/keymap-eclipse-241.14494.150.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", "242.21829.142": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", "242.21829.149": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip" }, "name": "eclipse-keymap" }, @@ -510,16 +510,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/13017/508253/keymap-visualStudio-241.14494.150.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/13017/508253/keymap-visualStudio-241.14494.150.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/13017/579739/keymap-visualStudio-242.20224.204.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/13017/579739/keymap-visualStudio-242.20224.204.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/13017/579739/keymap-visualStudio-242.20224.204.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/13017/579739/keymap-visualStudio-242.20224.204.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/13017/579739/keymap-visualStudio-242.20224.204.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/13017/579739/keymap-visualStudio-242.20224.204.zip", "242.21829.142": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip", "242.21829.149": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip" }, "name": "visual-studio-keymap" }, @@ -541,16 +541,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/14004/523287/protoeditor-241.15989.49.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/14004/523287/protoeditor-241.15989.49.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/14004/579472/protoeditor-242.20224.155.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/14004/579472/protoeditor-242.20224.155.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/14004/579472/protoeditor-242.20224.155.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/14004/579472/protoeditor-242.20224.155.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/14004/579472/protoeditor-242.20224.155.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/14004/579472/protoeditor-242.20224.155.zip", "242.21829.142": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip", "242.21829.149": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip" }, "name": "protocol-buffers" }, @@ -572,16 +572,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "241.18968.39": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "242.20224.385": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "242.20224.413": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "242.20224.424": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "242.20224.425": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "242.20224.427": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "242.20224.431": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", "242.21829.142": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", "242.21829.149": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "242.21829.153": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" + "242.21829.150": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "242.21829.153": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "242.21829.154": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "242.21829.162": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "242.21829.173": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "242.21829.198": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "242.21829.210": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "242.21829.220": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" }, "name": "darcula-pitch-black" }, @@ -602,17 +602,17 @@ "webstorm" ], "builds": { - "241.18034.1093": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip", - "242.21829.142": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip", - "242.21829.149": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip" + "241.18034.1093": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip", + "242.21829.142": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip", + "242.21829.149": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip", + "242.21829.150": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip" }, "name": "github-copilot" }, @@ -634,16 +634,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", "242.21829.142": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", "242.21829.149": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" }, "name": "netbeans-6-5-keymap" }, @@ -665,16 +665,16 @@ ], "builds": { "241.18034.1093": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", - "241.18968.39": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", - "242.20224.385": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", - "242.20224.424": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", - "242.20224.425": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", - "242.20224.427": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", - "242.20224.431": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", "242.21829.142": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", "242.21829.149": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", - "242.21829.153": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip" + "242.21829.150": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", + "242.21829.153": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", + "242.21829.154": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", + "242.21829.162": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", + "242.21829.210": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", + "242.21829.220": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip" }, "name": "mermaid" }, @@ -685,9 +685,9 @@ "rust-rover" ], "builds": { - "241.18968.39": "https://plugins.jetbrains.com/files/22407/591052/intellij-rust-241.38968.39.zip", - "242.20224.413": "https://plugins.jetbrains.com/files/22407/594487/intellij-rust-242.21829.114.zip", - "242.21829.142": "https://plugins.jetbrains.com/files/22407/594487/intellij-rust-242.21829.114.zip" + "242.21829.142": "https://plugins.jetbrains.com/files/22407/598980/intellij-rust-242.21829.198.zip", + "242.21829.173": "https://plugins.jetbrains.com/files/22407/598980/intellij-rust-242.21829.198.zip", + "242.21829.198": "https://plugins.jetbrains.com/files/22407/598980/intellij-rust-242.21829.198.zip" }, "name": "rust" } @@ -695,43 +695,34 @@ "files": { "https://plugins.jetbrains.com/files/10037/585243/CSVEditor-3.4.0-241.zip": "sha256-QwguD4ENrL7GxmX+CGEyCPowbAPNpYgntVGAbHxOlyQ=", "https://plugins.jetbrains.com/files/10037/585266/CSVEditor-3.4.0-242.zip": "sha256-CpIsmOIblkC5xMnKidbI+G+2QcZtXczu0rOSMtUcJPs=", - "https://plugins.jetbrains.com/files/11349/592121/aws-toolkit-jetbrains-standalone-3.24-241.zip": "sha256-rxNwHsQ0ZMksN8uw2eXcWWbIi/k213w371/ED5ePRks=", - "https://plugins.jetbrains.com/files/11349/592123/aws-toolkit-jetbrains-standalone-3.24-242.zip": "sha256-mXGb/pQmxTqST51eMKvnW+YVIAVjpTnKZzEWJSUJPtE=", + "https://plugins.jetbrains.com/files/11349/599319/aws-toolkit-jetbrains-standalone-3.27-241.zip": "sha256-vuIy/D4SfC/da1/jk7eMTutzd78hLvpYxayKCFgW82o=", + "https://plugins.jetbrains.com/files/11349/599321/aws-toolkit-jetbrains-standalone-3.27-242.zip": "sha256-x4s8KTIsaFGAs0u9JEa9wYsuFl3BEtIdxKnyXi0rT9Q=", "https://plugins.jetbrains.com/files/12062/508223/keymap-vscode-241.14494.150.zip": "sha256-LeQ5vi9PCJYmWNmT/sutWjSlwZaAYYuEljVJBYG2VpY=", "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip": "sha256-LpooujwYaX339yZJVe7HPYIOw+YdJLeEtRgwPxLJ9eI=", "https://plugins.jetbrains.com/files/12559/508216/keymap-eclipse-241.14494.150.zip": "sha256-/hEx0gIFvUXD799tRmMHAt9Z5ziFgaQs1RX0zQwTJIA=", "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip": "sha256-bAN0ifNiUqj51TYc7RLKwTMtv9OxjzqEQwXa6KtFlsU=", "https://plugins.jetbrains.com/files/13017/508253/keymap-visualStudio-241.14494.150.zip": "sha256-tNgt0vIkdCB/LcaSj58mT6cNlw4lytRo0cZSt7sIERU=", - "https://plugins.jetbrains.com/files/13017/579739/keymap-visualStudio-242.20224.204.zip": "sha256-xpH8/hUkz73t3q/F5AgWaZpMi7QEBu/gyGMPC/Gkkfo=", "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip": "sha256-aIwiMT30L3KCvbrkMUdgDdUdyBqGmT4w6c4pZEnMGNo=", - "https://plugins.jetbrains.com/files/1347/581524/scala-intellij-bin-2024.2.20.zip": "sha256-lBj8IKW1dC586hd/Z9happeoj2rV4x4Y/hbtrw/xCxQ=", + "https://plugins.jetbrains.com/files/1347/595821/scala-intellij-bin-2024.2.25.zip": "sha256-BCWN+blLZ9nST8ikZvCCE9FPyyxuaNOTbERwh3ew+qI=", "https://plugins.jetbrains.com/files/14004/523287/protoeditor-241.15989.49.zip": "sha256-cltbHY5OOvf29otDNsF9Q2shJHDdW6UMbzDdZ6OATtI=", - "https://plugins.jetbrains.com/files/14004/579472/protoeditor-242.20224.155.zip": "sha256-z3y3mcQRScZY4VD/9onMCvgHD/xECldBogX5VxMiR0c=", "https://plugins.jetbrains.com/files/14004/587347/protoeditor-242.21829.3.zip": "sha256-Y6xplTjA9bmhwLS9clcu/4znltSgDsga8Na5BmOWX5E=", "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar": "sha256-eXInfAqY3yEZRXCAuv3KGldM1pNKEioNwPB0rIGgJFw=", "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip": "sha256-uMIrYoZE16X/K96HuDJx8QMh6wUbi4+qSw+HJAq7ukI=", - "https://plugins.jetbrains.com/files/17718/590469/github-copilot-intellij-1.5.20.6554.zip": "sha256-QNVo6sLKwj+jJ2PMcJ3P5cAr1LwhFpH2+uglWO9ncQE=", + "https://plugins.jetbrains.com/files/17718/598710/github-copilot-intellij-1.5.21.6667.zip": "sha256-e8HxsXEmIg+jG10xjgipohmW8ioMLF8oJwAjsfoV/7M=", "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip": "sha256-KrzZTKZMQqoEMw+vDUv2jjs0EX0leaPBkU8H/ecq/oI=", "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip": "sha256-DUiIQYIzYoXmgtBakSLtMB+xxJMaR70Jgg9erySa3wQ=", "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip": "sha256-OqeQCqFe8iW/8NPg+9i+UKh+twIPQ9uLZrItMukCi7k=", - "https://plugins.jetbrains.com/files/22407/591052/intellij-rust-241.38968.39.zip": "sha256-Pgtj1czuScTmog7oh/2aME9jv4KlhT/ep6hwjSB73Ak=", - "https://plugins.jetbrains.com/files/22407/594487/intellij-rust-242.21829.114.zip": "sha256-PjYe2beW7iQmYBwPWBcD7Z9R04yeK6S+1ofETagj5Po=", + "https://plugins.jetbrains.com/files/22407/598980/intellij-rust-242.21829.198.zip": "sha256-FOk15tRjpx/nkqyBfsnAg/NuX7dXvBhUEfTujp7ZZ1E=", "https://plugins.jetbrains.com/files/631/595102/python-242.21829.142.zip": "sha256-dj4iIATUB3PqS0d07VHeYB7jFGWVi5c/kChBUoqk9mI=", - "https://plugins.jetbrains.com/files/6981/582754/ini-241.18968.32.zip": "sha256-GrWML6iPJ9Vp20T5ftNaPqAzhrqsDiV7zkWQDevSXFY=", - "https://plugins.jetbrains.com/files/6981/590484/ini-242.21829.40.zip": "sha256-8bpnOlliZsYsn8lVv1rOW7mcMNacg5/G8wthmpe2bLI=", - "https://plugins.jetbrains.com/files/6981/591962/ini-242.20224.428.zip": "sha256-jE51Cj9R2DcKm0aT2O8Kbq8MEDHlfr60D5vJdfXt+Cc=", + "https://plugins.jetbrains.com/files/6981/596022/ini-242.21829.162.zip": "sha256-J6v5zHD7n1uqp3p2TptZpkPbGtkdFZdNCA+Xw4aHKDE=", "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip": "sha256-kVUEgfEKUupV/qlB4Dpzi5pFHjhVvX74XIPetKtjysM=", "https://plugins.jetbrains.com/files/7219/585969/Symfony_Plugin-2024.1.275.zip": "sha256-2E3Hk8JdhZH+JFHF725Z9vGncx6HSKgd+LYlCpmh1KY=", - "https://plugins.jetbrains.com/files/7320/586859/PHP_Annotations-11.0.2.zip": "sha256-zQ/nEESHNiNyXwKyohy8ENWVkRavDVJpqmHvkzD3VjE=", - "https://plugins.jetbrains.com/files/7322/559299/python-ce-241.18034.55.zip": "sha256-e+MewymlNWzbut8eADe8jwqco921ULe83eLEGpDf1GY=", - "https://plugins.jetbrains.com/files/7322/583040/python-ce-242.20224.300.zip": "sha256-bkjB/o5gnDAuyuGxtMQsr1lH9fohwVbDV27gRj1rCr0=", + "https://plugins.jetbrains.com/files/7320/596012/PHP_Annotations-11.0.3.zip": "sha256-kRqgAW0bYEWLTCC6q2hhPmDwnOx3kiuqPhriZWizxTw=", "https://plugins.jetbrains.com/files/7322/595111/python-ce-242.21829.142.zip": "sha256-DwQNhbNO1zk75lcf35spNnzo0u103UAhXignhO+grek=", "https://plugins.jetbrains.com/files/7391/561441/asciidoctor-intellij-plugin-0.42.2.zip": "sha256-oKczkLHAk2bJRNRgToVe0ySEJGF8+P4oWqQ33olwzWw=", "https://plugins.jetbrains.com/files/7391/591338/asciidoctor-intellij-plugin-0.43.1.zip": "sha256-AGP8YY6NG/hy7xIDoiJy3GZHRB9stVNYYoHtqOmYCx0=", - "https://plugins.jetbrains.com/files/8554/579645/featuresTrainer-242.20224.175.zip": "sha256-5gYFQjYWFro/nDxCn8q51GkLLv3JkJDS7jr70xhM0Q0=", "https://plugins.jetbrains.com/files/8554/588322/featuresTrainer-242.21829.14.zip": "sha256-pL+j0K6U0DZibnmcIE6kY9Kj/+5g8akuHeuppuZiEII=", "https://plugins.jetbrains.com/files/8607/587258/NixIDEA-0.4.0.15.zip": "sha256-j5/LgTrFJ4OEIlocX4jcjgYzHlBId1nh1NfE2qLc1HQ=", - "https://plugins.jetbrains.com/files/9568/583036/go-plugin-242.20224.300.zip": "sha256-cbbAfatj1KkByLrLKZVNoIZSLjaSregK+0eany4pYWY=", "https://plugins.jetbrains.com/files/9568/595080/go-plugin-242.21829.142.zip": "sha256-FPwS5+ERGgGhIgHTZYzlKox3FpNbJoq288ZSviqQlR0=" } } From 2807cd3fac4cb39c05bfb832f767b070fc0d48dd Mon Sep 17 00:00:00 2001 From: wxt <3264117476@qq.com> Date: Thu, 12 Sep 2024 12:44:14 +0800 Subject: [PATCH 139/232] clash-verge-rev: add desktop entry --- pkgs/by-name/cl/clash-verge-rev/package.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/by-name/cl/clash-verge-rev/package.nix b/pkgs/by-name/cl/clash-verge-rev/package.nix index 5499a5e74270..86cb3cfe303c 100644 --- a/pkgs/by-name/cl/clash-verge-rev/package.nix +++ b/pkgs/by-name/cl/clash-verge-rev/package.nix @@ -8,6 +8,8 @@ wrapGAppsHook3, v2ray-geoip, v2ray-domain-list-community, + copyDesktopItems, + makeDesktopItem, }: let pname = "clash-verge-rev"; @@ -101,7 +103,22 @@ stdenv.mkDerivation { nativeBuildInputs = [ wrapGAppsHook3 + copyDesktopItems ]; + + desktopItems = [ + (makeDesktopItem { + name = "clash-verge"; + exec = "clash-verge"; + comment = "Clash Verge Rev"; + type = "Application"; + icon = "clash-verge"; + desktopName = "Clash Verge Rev"; + terminal = false; + categories = [ "Network" ]; + }) + ]; + installPhase = '' runHook preInstall From d6796b28ef1abd4b948c17355b1bf009cf4c7ad0 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Wed, 11 Sep 2024 18:40:06 +0200 Subject: [PATCH 140/232] ligo: unbreak on aarch64-linux --- pkgs/development/compilers/ligo/default.nix | 1 - pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/ligo/default.nix b/pkgs/development/compilers/ligo/default.nix index 74819dd9446f..8a76de022283 100644 --- a/pkgs/development/compilers/ligo/default.nix +++ b/pkgs/development/compilers/ligo/default.nix @@ -131,7 +131,6 @@ ocamlPackages.buildDunePackage rec { mainProgram = "ligo"; license = licenses.mit; platforms = ocamlPackages.ocaml.meta.platforms; - broken = stdenv.isLinux && stdenv.isAarch64; maintainers = with maintainers; [ ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix b/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix index 84565e8007e0..f0d5e04a4a99 100644 --- a/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix +++ b/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix @@ -2,7 +2,7 @@ lib, fetchFromGitLab, buildDunePackage , integers_stubs_js, ctypes, ppx_expect , js_of_ocaml-compiler -, nodejs +, nodejs, stdenv }: buildDunePackage rec { @@ -28,7 +28,7 @@ buildDunePackage rec { ctypes ppx_expect ]; - doCheck = true; + doCheck = !(stdenv.isLinux && stdenv.isAarch64); meta = { description = "Js_of_ocaml Javascript stubs for the OCaml ctypes library"; From d306cdffdec2e9ee6fa909d4ad55d0261871042e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Thu, 12 Sep 2024 07:34:25 +0200 Subject: [PATCH 141/232] eza: 0.19.2 -> 0.19.3 changelog: https://github.com/eza-community/eza/releases/tag/v0.19.3 --- pkgs/by-name/ez/eza/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ez/eza/package.nix b/pkgs/by-name/ez/eza/package.nix index 87b07a73cacf..6139255b7bbf 100644 --- a/pkgs/by-name/ez/eza/package.nix +++ b/pkgs/by-name/ez/eza/package.nix @@ -17,16 +17,16 @@ rustPlatform.buildRustPackage rec { pname = "eza"; - version = "0.19.2"; + version = "0.19.3"; src = fetchFromGitHub { owner = "eza-community"; repo = "eza"; rev = "v${version}"; - hash = "sha256-sTGU1Voa+mMBRIHVVUF79BwvxQfjA4XknhhhT5sk5xE="; + hash = "sha256-zooNSKQQM0Xsjpb7zMnZ1w/E9W9Z9qcT5rqa+KOki8I="; }; - cargoHash = "sha256-DSZ+1Svb22RlNzx74Kpj+oWrK60s4nGfpzzodDRL/Ko="; + cargoHash = "sha256-nXV89YK9FHOuJoDqV7gxkiSG4Nw75onghLE+PV1OdcE="; nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ]; buildInputs = [ zlib ] From ecbb8968002e9c1a516240e7333ffeed71cb91d6 Mon Sep 17 00:00:00 2001 From: aleksana Date: Sun, 8 Sep 2024 15:21:25 +0800 Subject: [PATCH 142/232] pkgs/README.md: classify and add rules to the naming convention Co-authored-by: Valentin Gagarin --- pkgs/README.md | 56 +++++++++++++++++++++++++++++++++++++------------- 1 file changed, 42 insertions(+), 14 deletions(-) diff --git a/pkgs/README.md b/pkgs/README.md index 11cd07d4a598..8c0e52458fb0 100644 --- a/pkgs/README.md +++ b/pkgs/README.md @@ -327,43 +327,71 @@ A (typically large) program with a distinct user interface, primarily used inter # Conventions -## Package naming - The key words _must_, _must not_, _required_, _shall_, _shall not_, _should_, _should not_, _recommended_, _may_, and _optional_ in this section are to be interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119). Only _emphasized_ words are to be interpreted in this way. +## Package naming + In Nixpkgs, there are generally three different names associated with a package: - The `pname` attribute of the derivation. This is what most users see, in particular when using `nix-env`. -- The variable name used for the instantiated package in `all-packages.nix`, and when passing it as a dependency to other functions. Typically this is called the _package attribute name_. This is what Nix expression authors see. It can also be used when installing using `nix-env -iA`. +- The attribute name used for the package in the [`pkgs/by-name` structure](./pkgs/by-name/README.md) or in [`all-packages.nix`](./pkgs/top-level/all-packages.nix), and when passing it as a dependency in recipes. - The filename for (the directory containing) the Nix expression. -Most of the time, these are the same. For instance, the package `e2fsprogs` has a `pname` attribute `"e2fsprogs"`, is bound to the variable name `e2fsprogs` in `all-packages.nix`, and the Nix expression is in `pkgs/os-specific/linux/e2fsprogs/default.nix`. +Most of the time, these are the same. For instance, the package `e2fsprogs` has a `pname` attribute `"e2fsprogs"`, is bound to the attribute name `e2fsprogs` in `all-packages.nix`, and the Nix expression is in `pkgs/os-specific/linux/e2fsprogs/default.nix`. -There are a few naming guidelines: +Follow these guidelines: -- The `pname` attribute _should_ be identical to the upstream package name. +- For the `pname` attribute: -- The `pname` and the `version` attribute _must not_ contain uppercase letters — e.g., `"mplayer"` instead of `"MPlayer"`. + - It _should_ be identical to the upstream package name. -- The `version` attribute _must_ start with a digit e.g., `"0.3.1rc2"` or `"0-unstable-1970-01-01"`. + - It _must not_ contain uppercase letters. -- If a package is a commit from a repository without a version assigned, then the `version` attribute _should_ be the latest upstream version preceding that commit, followed by `-unstable-` and the date of the (fetched) commit. The date _must_ be in `"YYYY-MM-DD"` format. + Example: Use `"mplayer"` instead of `"MPlayer"` -Example: Given a project had its latest releases `2.2` in November 2021, and `3.0` in January 2022, a commit authored on March 15, 2022 for an upcoming bugfix release `2.2.1` would have `version = "2.2-unstable-2022-03-15"`. +- For the package attribute name: -- If a project has no suitable preceding releases - e.g., no versions at all, or an incompatible versioning / tagging schema - then the latest upstream version in the above schema should be `0`. + - It _must_ be a valid identifier in Nix. -Example: Given a project that has no tags / released versions at all, or applies versionless tags like `latest` or `YYYY-MM-DD-Build`, a commit authored on March 15, 2022 would have `version = "0-unstable-2022-03-15"`. + - If the `pname` starts with a digit, the attribute name _should_ be prefixed with an underscore. Otherwise the attribute name _should not_ be prefixed with an underline. -- Dashes in the package `pname` _should_ be preserved in new variable names, rather than converted to underscores or camel cased — e.g., `http-parser` instead of `http_parser` or `httpParser`. The hyphenated style is preferred in all three package names. + Example: The corresponding attribute name for `0ad` should be `_0ad`. -- If there are multiple versions of a package, this _should_ be reflected in the variable names in `all-packages.nix`, e.g. `json-c_0_9` and `json-c_0_11`. If there is an obvious “default” version, make an attribute like `json-c = json-c_0_9;`. See also [versioning][versioning]. + - New attribute names _should_ be the same as the value in `pname`. + + Hyphenated names _should not_ be converted to [snake case](https://en.wikipedia.org/wiki/Snake_case) or [camel case](https://en.wikipedia.org/wiki/Camel_case). + This was done historically, but is not necessary any more. + [The Nix language allows dashes in identifiers since 2012](https://github.com/NixOS/nix/commit/95c74eae269b2b9e4bc514581b5caa1d80b54acc). + + - If there are multiple versions of a package, this _should_ be reflected in the attribute names in `all-packages.nix`. + + Example: `json-c_0_9` and `json-c_0_11` + + If there is an obvious “default” version, make an extra attribute. + + Example: `json-c = json-c_0_9;` + + See also [versioning][versioning]. ## Versioning [versioning]: #versioning +These are the guidelines the `version` attribute of a package: + +- It _must_ start with a digit. This is required for backwards-compatibility with [how `nix-env` parses derivation names](https://nix.dev/manual/nix/latest/command-ref/nix-env#selectors). + + Example: `"0.3.1rc2"` or `"0-unstable-1970-01-01"` + +- If a package is a commit from a repository without a version assigned, then the `version` attribute _should_ be the latest upstream version preceding that commit, followed by `-unstable-` and the date of the (fetched) commit. The date _must_ be in `"YYYY-MM-DD"` format. + + Example: Given a project had its latest releases `2.2` in November 2021 and `3.0` in January 2022, a commit authored on March 15, 2022 for an upcoming bugfix release `2.2.1` would have `version = "2.2-unstable-2022-03-15"`. + +- If a project has no suitable preceding releases - e.g., no versions at all, or an incompatible versioning or tagging scheme - then the latest upstream version in the above schema should be `0`. + + Example: Given a project that has no tags or released versions at all, or applies versionless tags like `latest` or `YYYY-MM-DD-Build`, a commit authored on March 15, 2022 would have `version = "0-unstable-2022-03-15"`. + Because every version of a package in Nixpkgs creates a potential maintenance burden, old versions of a package should not be kept unless there is a good reason to do so. For instance, Nixpkgs contains several versions of GCC because other packages don’t build with the latest version of GCC. Other examples are having both the latest stable and latest pre-release version of a package, or to keep several major releases of an application that differ significantly in functionality. If there is only one version of a package, its Nix expression should be named (e.g) `pkgs/by-name/xy/xyz/package.nix`. If there are multiple versions, this should be reflected in the attribute name. If you wish to share code between the Nix expressions of each version, you cannot rely upon `pkgs/by-name`'s automatic attribute creation, and must create the attributes yourself in `all-packages.nix`. See also [`pkgs/by-name/README.md`'s section on this topic](https://github.com/NixOS/nixpkgs/blob/master/pkgs/by-name/README.md#recommendation-for-new-packages-with-multiple-versions). From 8ef21e88b600a3a2f7403da0275d54dab1400fef Mon Sep 17 00:00:00 2001 From: aleksana Date: Sun, 8 Sep 2024 15:22:18 +0800 Subject: [PATCH 143/232] pkgs/by-name/README.md: use more precise wording on package name Co-authored-by: Valentin Gagarin --- pkgs/by-name/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/README.md b/pkgs/by-name/README.md index aacd1d084af5..61496fcfc48d 100644 --- a/pkgs/by-name/README.md +++ b/pkgs/by-name/README.md @@ -18,7 +18,7 @@ pkgs ``` -Where `some-package` is the package name and `so` is the lowercased 2-letter prefix of the package name. +Where `some-package` is the attribute name corresponding to the package, and `so` is the lowercase 2-letter prefix of the attribute name. The `package.nix` may look like this: From 8c116c6112f09a538b8b20db8938a42942a6d88b Mon Sep 17 00:00:00 2001 From: Artturin Date: Wed, 11 Sep 2024 23:05:35 +0300 Subject: [PATCH 144/232] bash: `badPlatforms` `mingw` `bash` doesn't compile for `mingw` https://www.github.com/NixOS/nixpkgs/issues/333338 --- pkgs/shells/bash/5.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/shells/bash/5.nix b/pkgs/shells/bash/5.nix index b2167b9ef7fa..614b3c377ea2 100644 --- a/pkgs/shells/bash/5.nix +++ b/pkgs/shells/bash/5.nix @@ -151,6 +151,8 @@ stdenv.mkDerivation rec { ''; license = licenses.gpl3Plus; platforms = platforms.all; + # https://github.com/NixOS/nixpkgs/issues/333338 + badPlatforms = [ lib.systems.inspect.patterns.isMinGW ]; maintainers = [ ]; mainProgram = "bash"; }; From 33975a5ff2f41a223317154f103018687c4b2743 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 08:42:47 +0200 Subject: [PATCH 145/232] python312Packages.publicsuffixlist: 1.0.2.20240911 -> 1.0.2.20240912 Changelog: https://github.com/ko-zu/psl/blob/v1.0.2.20240912-gha/CHANGES.md --- pkgs/development/python-modules/publicsuffixlist/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/publicsuffixlist/default.nix b/pkgs/development/python-modules/publicsuffixlist/default.nix index cf83474b807e..07f5bc4b0214 100644 --- a/pkgs/development/python-modules/publicsuffixlist/default.nix +++ b/pkgs/development/python-modules/publicsuffixlist/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "publicsuffixlist"; - version = "1.0.2.20240911"; + version = "1.0.2.20240912"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-U3gcjBmDGThIFXNw8E6yxEL3sYULfrEdOxgIWzGbhSk="; + hash = "sha256-BF5puZ4AL1IoXun+vZ71WrKREShYj60Zdsy4uzh5h9I="; }; build-system = [ setuptools ]; From b7fbcf971af696d75de854da8ce435ddf8750a79 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 12 Sep 2024 08:47:15 +0200 Subject: [PATCH 146/232] auto-changelog: 2.4.0 -> 2.5.0 diff: https://github.com/cookpete/auto-changelog/compare/v2.4.0...v2.5.0 changelog: https://github.com/cookpete/auto-changelog/blob/master/CHANGELOG.md#v250 --- pkgs/by-name/au/auto-changelog/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/au/auto-changelog/package.nix b/pkgs/by-name/au/auto-changelog/package.nix index ba35a26d6e37..0add7c39c6c9 100644 --- a/pkgs/by-name/au/auto-changelog/package.nix +++ b/pkgs/by-name/au/auto-changelog/package.nix @@ -10,18 +10,18 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "auto-changelog"; - version = "2.4.0"; + version = "2.5.0"; src = fetchFromGitHub { owner = "cookpete"; repo = "auto-changelog"; rev = "v${finalAttrs.version}"; - hash = "sha256-qgJ/TVyViMhISt/EfCWV7XWQLXKTeZalGHFG905Ma5I="; + hash = "sha256-ticQpDOQieLaWXfavDKIH0jSenRimp5QYeJy42BjpKw="; }; yarnOfflineCache = fetchYarnDeps { yarnLock = "${finalAttrs.src}/yarn.lock"; - hash = "sha256-rP/Xt0txwfEUmGZ0CyHXSEG9zSMtv8wr5M2Na+6PbyQ="; + hash = "sha256-NGQbzogQi0XbeGd7fYNyw0i9Yo9j91CfeTdO7nhq4Yw="; }; nativeBuildInputs = [ From 65c50aa388f2b4b0435ca11984742ff1a748e622 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 08:48:01 +0200 Subject: [PATCH 147/232] python312Packages.python-kasa: 0.7.2 -> 0.7.3 Changelog: https://github.com/python-kasa/python-kasa/blob/0.7.3/CHANGELOG.md --- pkgs/development/python-modules/python-kasa/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/python-kasa/default.nix b/pkgs/development/python-modules/python-kasa/default.nix index cba50fc0a373..b5d389bced40 100644 --- a/pkgs/development/python-modules/python-kasa/default.nix +++ b/pkgs/development/python-modules/python-kasa/default.nix @@ -6,9 +6,9 @@ buildPythonPackage, cryptography, fetchFromGitHub, + hatchling, kasa-crypt, orjson, - poetry-core, ptpython, pydantic, pytest-asyncio, @@ -22,7 +22,7 @@ buildPythonPackage rec { pname = "python-kasa"; - version = "0.7.2"; + version = "0.7.3"; pyproject = true; disabled = pythonOlder "3.9"; @@ -31,10 +31,10 @@ buildPythonPackage rec { owner = "python-kasa"; repo = "python-kasa"; rev = "refs/tags/${version}"; - hash = "sha256-JfTFed591z1ZxTKP5FqYyaMBq8uCs4StlnqKp3Tc7Ug="; + hash = "sha256-41FY1KaPDQxOHtxgaKRakNbiBm/qPYCICpvzxVAmSD8="; }; - build-system = [ poetry-core ]; + build-system = [ hatchling ]; dependencies = [ aiohttp From bdd95a1bfa9bdabf22d9234ac90bcfa178f289de Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 08:49:28 +0200 Subject: [PATCH 148/232] python312Packages.lxmf: 0.5.0 -> 0.5.1 Diff: https://github.com/markqvist/lxmf/compare/refs/tags/0.5.0...0.5.1 Changelog: https://github.com/markqvist/LXMF/releases/tag/0.5.1 --- pkgs/development/python-modules/lxmf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/lxmf/default.nix b/pkgs/development/python-modules/lxmf/default.nix index c2723fb59880..935fbf9cfd63 100644 --- a/pkgs/development/python-modules/lxmf/default.nix +++ b/pkgs/development/python-modules/lxmf/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "lxmf"; - version = "0.5.0"; + version = "0.5.1"; pyproject = true; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "markqvist"; repo = "lxmf"; rev = "refs/tags/${version}"; - hash = "sha256-X5QBWcmBq6RVDVGWop4nrlWXnui6asdvSdabT5YN3Ck="; + hash = "sha256-RYPWdFDZvvLJVCSQPXdJw0xMrUN3Kr8QRWTYZfBB9og="; }; build-system = [ setuptools ]; From be3f433fa1b663e20cd783ed95c522f44a7de817 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 08:49:47 +0200 Subject: [PATCH 149/232] python312Packages.nomadnet: 0.5.1 -> 0.5.2 Changelog: https://github.com/markqvist/NomadNet/releases/tag/0.5.2 --- pkgs/development/python-modules/nomadnet/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/nomadnet/default.nix b/pkgs/development/python-modules/nomadnet/default.nix index f49a305ded03..237329f8eddd 100644 --- a/pkgs/development/python-modules/nomadnet/default.nix +++ b/pkgs/development/python-modules/nomadnet/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "nomadnet"; - version = "0.5.1"; + version = "0.5.2"; pyproject = true; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "markqvist"; repo = "NomadNet"; rev = "refs/tags/${version}"; - hash = "sha256-Tx6pcPGYItjTuWGnQc3O+O3HC1gld/2J5T4O63MOD+U="; + hash = "sha256-4CT5WBpWoK7c8bS7hw0F5mL8MDg8ud+f3SITC5lEVFM="; }; build-system = [ setuptools ]; From 03c99bcf1a1f9efd9cab582ead0737cd2dda3507 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 08:59:11 +0200 Subject: [PATCH 150/232] python312Packages.microsoft-kiota-serialization-json: 1.3.1 -> 1.3.2 Diff: https://github.com/microsoft/kiota-serialization-json-python/compare/refs/tags/v1.3.1...v1.3.2 Changelog: https://github.com/microsoft/kiota-serialization-json-python/blob/1.3.2/CHANGELOG.md --- .../microsoft-kiota-serialization-json/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/microsoft-kiota-serialization-json/default.nix b/pkgs/development/python-modules/microsoft-kiota-serialization-json/default.nix index d28922b28662..9f4fb1e4b8f7 100644 --- a/pkgs/development/python-modules/microsoft-kiota-serialization-json/default.nix +++ b/pkgs/development/python-modules/microsoft-kiota-serialization-json/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "microsoft-kiota-serialization-json"; - version = "1.3.1"; + version = "1.3.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "microsoft"; repo = "kiota-serialization-json-python"; rev = "refs/tags/v${version}"; - hash = "sha256-V1s2MMO987ADp2nRxpIFlyx+OHNhSv8xCt3JOTzQCOM="; + hash = "sha256-Unscul4mznB3yJmn8Y/Zcvbk59V1WLqdSgmEhCUgkeA="; }; build-system = [ flit-core ]; From 8cd43ef55d660d63ec85812932d83dad1b51b85c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:00:04 +0200 Subject: [PATCH 151/232] python312Packages.plugwise: 1.2.0 -> 1.3.1 Diff: https://github.com/plugwise/python-plugwise/compare/refs/tags/v1.2.0...v1.3.1 Changelog: https://github.com/plugwise/python-plugwise/releases/tag/v1.3.1 --- pkgs/development/python-modules/plugwise/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/plugwise/default.nix b/pkgs/development/python-modules/plugwise/default.nix index 3a411be77e09..5814c24e14b1 100644 --- a/pkgs/development/python-modules/plugwise/default.nix +++ b/pkgs/development/python-modules/plugwise/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "plugwise"; - version = "1.2.0"; + version = "1.3.1"; pyproject = true; disabled = pythonOlder "3.11"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "plugwise"; repo = "python-plugwise"; rev = "refs/tags/v${version}"; - hash = "sha256-I9GCFPgTSHquRxvXS0R22q7lxdhKRC76kALIx4hFAAM="; + hash = "sha256-lwg+iyYRW1eFjMxBDQf6MFXlLbo81jGRpQSh3rUqGKY="; }; postPatch = '' From 50ba08e7eed6dccad7c70ca394bc50540e41a0e4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:02:16 +0200 Subject: [PATCH 152/232] python312Packages.tencentcloud-sdk-python: 3.0.1229 -> 3.0.1230 Diff: https://github.com/TencentCloud/tencentcloud-sdk-python/compare/refs/tags/3.0.1229...3.0.1230 Changelog: https://github.com/TencentCloud/tencentcloud-sdk-python/blob/3.0.1230/CHANGELOG.md --- .../python-modules/tencentcloud-sdk-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix index 362088e0145c..a0a79b7083be 100644 --- a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix +++ b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "tencentcloud-sdk-python"; - version = "3.0.1229"; + version = "3.0.1230"; pyproject = true; disabled = pythonOlder "3.9"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "TencentCloud"; repo = "tencentcloud-sdk-python"; rev = "refs/tags/${version}"; - hash = "sha256-sFI16249sSnBAEQOTqO/QaVSoF3Fy44X5GaAkYi9ukQ="; + hash = "sha256-wuEbocPbQL/oG6b78Q92+kfWP3ZkIIf8k97tSBZg9nc="; }; build-system = [ setuptools ]; From dfd08c65326bcfba6dfb1db886733cbc9a144a2d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:02:51 +0200 Subject: [PATCH 153/232] python312Packages.weatherflow4py: 0.3.3 -> 1.0.4 Diff: https://github.com/jeeftor/weatherflow4py/compare/refs/tags/v0.3.3...v1.0.4 Changelog: https://github.com/jeeftor/weatherflow4py/releases/tag/v1.0.4 --- pkgs/development/python-modules/weatherflow4py/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/weatherflow4py/default.nix b/pkgs/development/python-modules/weatherflow4py/default.nix index a149dfe3ff38..83ea54a35e78 100644 --- a/pkgs/development/python-modules/weatherflow4py/default.nix +++ b/pkgs/development/python-modules/weatherflow4py/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "weatherflow4py"; - version = "0.3.3"; + version = "1.0.4"; pyproject = true; disabled = pythonOlder "3.11"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "jeeftor"; repo = "weatherflow4py"; rev = "refs/tags/v${version}"; - hash = "sha256-mJxRfjkkBruGjz+UthrzlMqz6Rlk9zrGHjzB4qYYlQ0="; + hash = "sha256-6LSxv1Lh9UUo0Y7I/BvxEPtIkOjIAYon32mcoS1Gxxs="; }; build-system = [ poetry-core ]; From cb484790ca4881646b8ee3340f1a94f58c15fd10 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:04:02 +0200 Subject: [PATCH 154/232] python312Packages.meshtastic: 2.4.1 -> 2.4.3 Diff: https://github.com/meshtastic/Meshtastic-python/compare/refs/tags/2.4.1...2.4.3 Changelog: https://github.com/meshtastic/python/releases/tag/2.4.3 --- pkgs/development/python-modules/meshtastic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/meshtastic/default.nix b/pkgs/development/python-modules/meshtastic/default.nix index 5c09306398e3..ce296d8cdade 100644 --- a/pkgs/development/python-modules/meshtastic/default.nix +++ b/pkgs/development/python-modules/meshtastic/default.nix @@ -33,7 +33,7 @@ buildPythonPackage rec { pname = "meshtastic"; - version = "2.4.1"; + version = "2.4.3"; pyproject = true; disabled = pythonOlder "3.7"; @@ -42,7 +42,7 @@ buildPythonPackage rec { owner = "meshtastic"; repo = "Meshtastic-python"; rev = "refs/tags/${version}"; - hash = "sha256-j5J/cWZwayt9RZFeMkTgzhRJznfxNUhXzV5lBLZNBhM="; + hash = "sha256-cI3ETBz/3Megd3T/JVFdsN7Ap7SPj89IEIaA316INTk="; }; pythonRelaxDeps = [ From f0227af9cf26fb398f688d6427afe6a0531bea7f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:04:40 +0200 Subject: [PATCH 155/232] python312Packages.mailchecker: 6.0.8 -> 6.0.9 Changelog: https://github.com/FGRibreau/mailchecker/blob/v6.0.9/CHANGELOG.md --- pkgs/development/python-modules/mailchecker/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mailchecker/default.nix b/pkgs/development/python-modules/mailchecker/default.nix index 1ade04030dc1..06aabd241b55 100644 --- a/pkgs/development/python-modules/mailchecker/default.nix +++ b/pkgs/development/python-modules/mailchecker/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "mailchecker"; - version = "6.0.8"; + version = "6.0.9"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-3Og42v2DAquCPvzL6sRnKbs5nZuAO2AWa+UkltWR43Y="; + hash = "sha256-8X6Qf/5vb67cJD9X6wyclR9h3smvjpaSLB3NCTOJuI0="; }; build-system = [ setuptools ]; From e3425c65d6f0f42624c6aec0481df2cb29f711d6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:06:29 +0200 Subject: [PATCH 156/232] python312Packages.ms-active-directory: 1.14.0 -> 1.14.1 Diff: https://github.com/zorn96/ms_active_directory/compare/refs/tags/v1.14.0...v1.14.1 Changelog: https://github.com/zorn96/ms_active_directory/releases/tag/v1.14.1 --- .../python-modules/ms-active-directory/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/ms-active-directory/default.nix b/pkgs/development/python-modules/ms-active-directory/default.nix index 074b4bf380eb..7844373918f5 100644 --- a/pkgs/development/python-modules/ms-active-directory/default.nix +++ b/pkgs/development/python-modules/ms-active-directory/default.nix @@ -3,7 +3,6 @@ buildPythonPackage, dnspython, fetchFromGitHub, - fetchpatch, ldap3, pyasn1, pycryptodome, @@ -15,7 +14,7 @@ buildPythonPackage rec { pname = "ms-active-directory"; - version = "1.14.0"; + version = "1.14.1"; pyproject = true; disabled = pythonOlder "3.10"; @@ -24,18 +23,9 @@ buildPythonPackage rec { owner = "zorn96"; repo = "ms_active_directory"; rev = "refs/tags/v${version}"; - hash = "sha256-E0GzKkpQU9pJ1a1N0NZjB2Q99yMlJkzNR0QzyiUzOpg="; + hash = "sha256-ZFIeG95+G9ofk54bYZpqu8uVfzjqsOrwWlIZvQgIWRI="; }; - patches = [ - # Fix introduced syntax errors, https://github.com/zorn96/ms_active_directory/pull/88 - (fetchpatch { - name = "fix-syntax.patch"; - url = "https://github.com/zorn96/ms_active_directory/pull/88/commits/35da06a224b9bff6d36ddbd2dee8fdedab7e17bc.patch"; - hash = "sha256-0WGyr3Q4vcfFU72fox3/3AdHCmjzf6jGCGPx5vhhUvM="; - }) - ]; - build-system = [ setuptools ]; dependencies = [ From 81b0701a4d635e81603a0eaa329fec459e5f2469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9B=A7-440729=20=5Bsophie=5D?= Date: Mon, 9 Sep 2024 13:19:31 +0200 Subject: [PATCH 157/232] nixos/invidious: add options for configuring inv-sig-helper --- nixos/modules/services/web-apps/invidious.nix | 60 +++++++++++++++++++ nixos/tests/invidious.nix | 21 +++++++ 2 files changed, 81 insertions(+) diff --git a/nixos/modules/services/web-apps/invidious.nix b/nixos/modules/services/web-apps/invidious.nix index 7997ea1f3630..e4223cf1e8b1 100644 --- a/nixos/modules/services/web-apps/invidious.nix +++ b/nixos/modules/services/web-apps/invidious.nix @@ -199,6 +199,41 @@ let }; }; + sigHelperConfig = lib.mkIf cfg.sig-helper.enable { + services.invidious.settings.signature_server = "tcp://${cfg.sig-helper.listenAddress}"; + systemd.services.invidious-sig-helper = { + script = '' + exec ${lib.getExe cfg.sig-helper.package} --tcp "${cfg.sig-helper.listenAddress}" + ''; + wantedBy = [ "multi-user.target" ]; + before = [ "invidious.service" ]; + wants = [ "network-online.target" ]; + after = [ "network-online.target" ]; + serviceConfig = { + User = "invidious-sig-helper"; + DynamicUser = true; + Restart = "always"; + + PrivateTmp = true; + PrivateUsers = true; + ProtectSystem = true; + ProtectProc = "invisible"; + ProtectHome = true; + PrivateDevices = true; + NoNewPrivileges = true; + ProtectKernelTunables = true; + ProtectKernelModules = true; + ProtectControlGroups = true; + ProtectKernelLogs = true; + CapabilityBoundingSet = ""; + SystemCallArchitectures = "native"; + SystemCallFilter = [ "@system-service" "~@privileged" "~@resources" "@network-io" ]; + RestrictAddressFamilies = [ "AF_INET" "AF_INET6" ]; + RestrictNamespaces = true; + }; + }; + }; + nginxConfig = lib.mkIf cfg.nginx.enable { services.invidious.settings = { https_only = config.services.nginx.virtualHosts.${cfg.domain}.forceSSL; @@ -392,6 +427,30 @@ in package = lib.mkPackageOption pkgs "http3-ytproxy" { }; }; + + sig-helper = { + enable = lib.mkOption { + type = lib.types.bool; + default = false; + description = '' + Whether to enable and configure inv-sig-helper to emulate the youtube client's javascript. This is required + to make certain videos playable. + + This will download and run completely untrusted javascript from youtube! While this service is sandboxed, + this may still be an issue! + ''; + }; + + package = lib.mkPackageOption pkgs "inv-sig-helper" { }; + + listenAddress = lib.mkOption { + type = lib.types.str; + default = "127.0.0.1:2999"; + description = '' + The IP address/port where inv-sig-helper should listen. + ''; + }; + }; }; config = lib.mkIf cfg.enable (lib.mkMerge [ @@ -399,5 +458,6 @@ in localDatabaseConfig nginxConfig ytproxyConfig + sigHelperConfig ]); } diff --git a/nixos/tests/invidious.nix b/nixos/tests/invidious.nix index c042b1065c26..05b43c555606 100644 --- a/nixos/tests/invidious.nix +++ b/nixos/tests/invidious.nix @@ -37,6 +37,19 @@ import ./make-test-python.nix ({ pkgs, ... }: { }; networking.hosts."127.0.0.1" = [ "invidious.example.com" ]; }; + nginx-sig-helper.configuration = { + services.invidious = { + nginx.enable = true; + domain = "invidious.example.com"; + sig-helper.enable = true; + settings.log_level = "Trace"; + }; + services.nginx.virtualHosts."invidious.example.com" = { + forceSSL = false; + enableACME = false; + }; + networking.hosts."127.0.0.1" = [ "invidious.example.com" ]; + }; nginx-scale.configuration = { services.invidious = { nginx.enable = true; @@ -116,6 +129,14 @@ import ./make-test-python.nix ({ pkgs, ... }: { curl_assert_status_code("http://invidious.example.com/vi/dQw4w9WgXcQ/mqdefault.jpg", 502) machine.succeed("journalctl -eu http3-ytproxy.service | grep -o 'dQw4w9WgXcQ'") + activate_specialisation("nginx-sig-helper") + machine.wait_for_unit("invidious-sig-helper.service") + # we can't really test the sig helper that well without internet connection... + # invidious does connect to the sig helper though and crashes when the sig helper is not available + machine.wait_for_open_port(80) + curl_assert_status_code("http://invidious.example.com/search", 200) + machine.succeed("journalctl -eu invidious.service | grep -o \"SigHelper: Using helper at 'tcp://127.0.0.1:2999'\"") + postgres_tcp.wait_for_unit("postgresql.service") activate_specialisation("postgres-tcp") machine.wait_for_open_port(port) From 60baf81647bcb79c4aa9f5f7017907d99c90c1f0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:08:32 +0200 Subject: [PATCH 158/232] python312Packages.msgraph-sdk: 1.6.0 -> 1.7.0 Diff: https://github.com/microsoftgraph/msgraph-sdk-python/compare/refs/tags/v1.6.0...v1.7.0 Changelog: https://github.com/microsoftgraph/msgraph-sdk-python/blob/v1.7.0/CHANGELOG.md --- pkgs/development/python-modules/msgraph-sdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/msgraph-sdk/default.nix b/pkgs/development/python-modules/msgraph-sdk/default.nix index 375f11c1a67e..9c262b522193 100644 --- a/pkgs/development/python-modules/msgraph-sdk/default.nix +++ b/pkgs/development/python-modules/msgraph-sdk/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "msgraph-sdk"; - version = "1.6.0"; + version = "1.7.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "microsoftgraph"; repo = "msgraph-sdk-python"; rev = "refs/tags/v${version}"; - hash = "sha256-Mrw77ln/7P/nNOGlxkqsoBH39ghp1Pc/a17ggbKuaUA="; + hash = "sha256-ivpk3zZFp6xiFAqdDjjdV/7fg2GBR6NyK7+nPWgs1QA="; }; build-system = [ flit-core ]; From fde617e8d10f40178b84569c461f2a6f70cebdee Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:09:29 +0200 Subject: [PATCH 159/232] python312Packages.censys: 2.2.13 -> 2.2.14 Diff: https://github.com/censys/censys-python/compare/refs/tags/v2.2.13...v2.2.14 Changelog: https://github.com/censys/censys-python/releases/tag/v2.2.14 --- pkgs/development/python-modules/censys/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/censys/default.nix b/pkgs/development/python-modules/censys/default.nix index d6ed789655f5..bfdbd7635200 100644 --- a/pkgs/development/python-modules/censys/default.nix +++ b/pkgs/development/python-modules/censys/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "censys"; - version = "2.2.13"; + version = "2.2.14"; pyproject = true; disabled = pythonOlder "3.7"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "censys"; repo = "censys-python"; rev = "refs/tags/v${version}"; - hash = "sha256-ejAgPSHeE2842WvGjH+2HbaA7HoNDuIGNvmqXgCjuLE="; + hash = "sha256-3evll1Ll8krvAfelGoJHOrmH7RvkeM/ZU1j13cTuXR4="; }; postPatch = '' From 385069767742931de5af0fac23f385f436bfda33 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:10:11 +0200 Subject: [PATCH 160/232] python312Packages.aiovlc: 0.4.3 -> 0.4.4 Diff: https://github.com/MartinHjelmare/aiovlc/compare/refs/tags/v0.4.3...v0.4.4 Changelog: https://github.com/MartinHjelmare/aiovlc/blob/v0.4.4/CHANGELOG.md --- pkgs/development/python-modules/aiovlc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiovlc/default.nix b/pkgs/development/python-modules/aiovlc/default.nix index bbc5ff1ca0f0..8d65e9d29932 100644 --- a/pkgs/development/python-modules/aiovlc/default.nix +++ b/pkgs/development/python-modules/aiovlc/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "aiovlc"; - version = "0.4.3"; + version = "0.4.4"; pyproject = true; disabled = pythonOlder "3.9"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "MartinHjelmare"; repo = "aiovlc"; rev = "refs/tags/v${version}"; - hash = "sha256-kiF2BRqaQLNpd+EoKrI9/9m3E1DlyJqM3Ng0qA0TfyQ="; + hash = "sha256-lIcArNodNeC6Wtmsir6f0SwgHlafC3lh72mLU4UGBtg="; }; build-system = [ poetry-core ]; From f531fe26256b2ef392502f9ba6a27d9f253fc45a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:18:39 +0200 Subject: [PATCH 161/232] memray: 1.13.4 -> 1.14.0 Diff: https://github.com/bloomberg/memray/compare/refs/tags/v1.13.4...v1.14.0 Changelog: https://github.com/bloomberg/memray/releases/tag/v1.14.0 --- pkgs/development/tools/memray/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/memray/default.nix b/pkgs/development/tools/memray/default.nix index 8dabb8a23969..cfe12b41d3aa 100644 --- a/pkgs/development/tools/memray/default.nix +++ b/pkgs/development/tools/memray/default.nix @@ -10,14 +10,14 @@ python3Packages.buildPythonApplication rec { pname = "memray"; - version = "1.13.4"; + version = "1.14.0"; pyproject = true; src = fetchFromGitHub { owner = "bloomberg"; repo = "memray"; rev = "refs/tags/v${version}"; - hash = "sha256-8ztnXNdsthoMvooWoJLKrB9yGHjkYhQ2jiwF3KujAnw="; + hash = "sha256-U9JR60rSxPYXbZaKR7vVNhGT78AXnqcoqvVC6/1OW/E="; }; build-system = with python3Packages; [ @@ -44,8 +44,9 @@ python3Packages.buildPythonApplication rec { with python3Packages; [ ipython - pytestCheckHook pytest-cov # fix Unknown pytest.mark.no_cover + pytest-textual-snapshot + pytestCheckHook ] ++ lib.optionals (pythonOlder "3.12") [ greenlet ]; From b751f705a44ccf41c8bdabf9fca92f9296e9eb8c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:20:17 +0200 Subject: [PATCH 162/232] mubeng: 0.15.3 -> 0.17.0 Diff: https://github.com/kitabisa/mubeng/compare/v0.15.3...v0.17.0 Changelog: https://github.com/kitabisa/mubeng/releases/tag/v0.17.0 --- pkgs/tools/networking/mubeng/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/mubeng/default.nix b/pkgs/tools/networking/mubeng/default.nix index cccb112ec3ba..a2ea2b5dab49 100644 --- a/pkgs/tools/networking/mubeng/default.nix +++ b/pkgs/tools/networking/mubeng/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "mubeng"; - version = "0.15.3"; + version = "0.17.0"; src = fetchFromGitHub { owner = "kitabisa"; repo = pname; rev = "v${version}"; - hash = "sha256-4/Qt0Fh+YzG/PymMyT/0Yedsy+u+03MswDh9Z9QJynQ="; + hash = "sha256-xfoYUcnCwrJ3SM+Xr+dsf4NnisN5K4UehT9T2US5p/s="; }; - vendorHash = "sha256-kOLeaEKtpI3l0qLphRTnm27Ms63ID4LJ6VkUHJzGAcc="; + vendorHash = "sha256-TZDQCvcwsCa08bBBb8Zs8W0OFDYb+ZWN85+VCelFgyc="; ldflags = [ "-s" From 5aa93399e68c0dea6360ca7a265359fd9d7a09b7 Mon Sep 17 00:00:00 2001 From: Nadir Ishiguro <23151917+nadir-ishiguro@users.noreply.github.com> Date: Thu, 12 Sep 2024 09:24:42 +0200 Subject: [PATCH 163/232] nom: 2.6.0 -> 2.6.1 --- pkgs/by-name/no/nom/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/no/nom/package.nix b/pkgs/by-name/no/nom/package.nix index 1dce0beba51f..84a98183a047 100644 --- a/pkgs/by-name/no/nom/package.nix +++ b/pkgs/by-name/no/nom/package.nix @@ -5,13 +5,13 @@ }: buildGoModule rec { pname = "nom"; - version = "2.6.0"; + version = "2.6.1"; src = fetchFromGitHub { owner = "guyfedwards"; repo = "nom"; rev = "v${version}"; - hash = "sha256-0CWiSDE9DbkvfKq06DwufhQucaR80vEhQU+X5Lg0HWI="; + hash = "sha256-V4ppqHQjPkkRKHkDHzEr05vOyv3BhiLnYxEftIn08XU="; }; vendorHash = "sha256-xolhwdWRjYZMgwI4jq0fGzvxnNjx6EplvZC7XMvBw+M="; From 390692803b6627e4131868c7b99290a16b3601fc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:26:43 +0200 Subject: [PATCH 164/232] trufflehog: 3.81.10 -> 3.82.1 Diff: https://github.com/trufflesecurity/trufflehog/compare/refs/tags/v3.81.10...v3.82.1 Changelog: https://github.com/trufflesecurity/trufflehog/releases/tag/v3.82.1 --- pkgs/tools/security/trufflehog/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/trufflehog/default.nix b/pkgs/tools/security/trufflehog/default.nix index d45a45a880a6..43e791377b25 100644 --- a/pkgs/tools/security/trufflehog/default.nix +++ b/pkgs/tools/security/trufflehog/default.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "trufflehog"; - version = "3.81.10"; + version = "3.82.1"; src = fetchFromGitHub { owner = "trufflesecurity"; repo = "trufflehog"; rev = "refs/tags/v${version}"; - hash = "sha256-U2HKrOk6+QO3QhDTDXpx3eWIsikfkuFTOQWcqbtj1qE="; + hash = "sha256-NHSRUHp6sb+1HE9UvcxMrWdlQROj2FXQEA+0irQJKiU="; }; - vendorHash = "sha256-9AY0Dzn29GbWveb5HGWpKHkW9LCglPUzlX9wyQmj+FM="; + vendorHash = "sha256-+XXLoLPtsEkxVfycpAovvd9UO9J6E7PUjyYZCBVHSAo="; proxyVendor = true; From 4d814616fb14cb9675598d95c36f2b720f2541d0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:28:10 +0200 Subject: [PATCH 165/232] python312Packages.python-motionmount: 2.0.0 -> 2.1.0 Diff: https://github.com/vogelsproducts/python-MotionMount/compare/refs/tags/2.0.0...2.1.0 --- .../development/python-modules/python-motionmount/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-motionmount/default.nix b/pkgs/development/python-modules/python-motionmount/default.nix index de451018a874..6335a612a545 100644 --- a/pkgs/development/python-modules/python-motionmount/default.nix +++ b/pkgs/development/python-modules/python-motionmount/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "python-motionmount"; - version = "2.0.0"; + version = "2.1.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "vogelsproducts"; repo = "python-MotionMount"; rev = "refs/tags/${version}"; - hash = "sha256-jmHFsJwnmdSUKz2W9pWtc9KpUAs6QWnO2V5KROwmTGs="; + hash = "sha256-BOzv0IuEXK0uzJuO1F1k8baL8KmzV/KFWcKJPSHORsU="; }; build-system = [ setuptools ]; From b0e04e17c5a45201d631fa5c561856de26f62bea Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:31:12 +0200 Subject: [PATCH 166/232] terrascan: 1.19.2 -> 1.19.8 Diff: https://github.com/accurics/terrascan/compare/refs/tags/v1.19.2...v1.19.8 Changelog: https://github.com/tenable/terrascan/blob/v1.19.8/CHANGELOG.md --- pkgs/tools/security/terrascan/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/terrascan/default.nix b/pkgs/tools/security/terrascan/default.nix index 381e13530bee..7f65e0119f3e 100644 --- a/pkgs/tools/security/terrascan/default.nix +++ b/pkgs/tools/security/terrascan/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "terrascan"; - version = "1.19.2"; + version = "1.19.8"; src = fetchFromGitHub { owner = "accurics"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-3CmbxLWRz6fvnk3ieNq65ph/zN91/8q1y9rYcnWf0II="; + hash = "sha256-+fg482jVMc9IDH0MKSbXaU44QXH/wdjXbztqKNqJjbs="; }; - vendorHash = "sha256-Hk7dkhb1GiCY9CkKZ1dMQc+s97VRUli7WAoneJVNK08="; + vendorHash = "sha256-yQien8v7Ru+JWLou9QfyKZAR2ENMHO2aF2vzuWyQcjY="; # Tests want to download a vulnerable Terraform project doCheck = false; From afc2e2cef533f77bad0e5dc20e108d2e2eede565 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 09:33:26 +0200 Subject: [PATCH 167/232] vunnel: 0.23.2 -> 0.27.0 Diff: https://github.com/anchore/vunnel/compare/refs/tags/v0.23.2...v0.27.0 Changelog: https://github.com/anchore/vunnel/releases/tag/v0.27.0 --- pkgs/by-name/vu/vunnel/package.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/vu/vunnel/package.nix b/pkgs/by-name/vu/vunnel/package.nix index 49ca6562f59e..bce30922719d 100644 --- a/pkgs/by-name/vu/vunnel/package.nix +++ b/pkgs/by-name/vu/vunnel/package.nix @@ -7,20 +7,21 @@ python3.pkgs.buildPythonApplication rec { pname = "vunnel"; - version = "0.23.2"; + version = "0.27.0"; pyproject = true; src = fetchFromGitHub { owner = "anchore"; repo = "vunnel"; rev = "refs/tags/v${version}"; - hash = "sha256-wXBfrlb4i4G3Sm0SopvDVGcQ0/hRGtUdzUQYyUj8/Ps="; + hash = "sha256-HRwQ2IDTa3dlxTlToiwBvjxjQgD18rv/F5OIuG7FKG8="; }; pythonRelaxDeps = [ "defusedxml" "ijson" "sqlalchemy" + "xsdata" ]; build-system = with python3.pkgs; [ From edf0243cb755bef75fdc717f84507ba0848cb66c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 11 Sep 2024 11:27:28 +0200 Subject: [PATCH 168/232] checkov: 3.2.249 -> 3.2.250 Diff: https://github.com/bridgecrewio/checkov/compare/refs/tags/3.2.249...3.2.250 Changelog: https://github.com/bridgecrewio/checkov/releases/tag/3.2.250 --- pkgs/development/tools/analysis/checkov/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix index 366f18f50266..40efe28bcc3e 100644 --- a/pkgs/development/tools/analysis/checkov/default.nix +++ b/pkgs/development/tools/analysis/checkov/default.nix @@ -6,14 +6,14 @@ python3.pkgs.buildPythonApplication rec { pname = "checkov"; - version = "3.2.249"; + version = "3.2.250"; pyproject = true; src = fetchFromGitHub { owner = "bridgecrewio"; repo = "checkov"; rev = "refs/tags/${version}"; - hash = "sha256-xsb57uCPLzrqMA2T0rcbnmXlsioagFr0yc4wcRUubPI="; + hash = "sha256-/GFZR4fpio5oTBacrEiS8M2BIOsdmr4Uz9m/k6edjYI="; }; patches = [ ./flake8-compat-5.x.patch ]; From 4bbf89a6882a26fc1e88b060493043aadaa4281e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 10:00:39 +0200 Subject: [PATCH 169/232] checkov: 3.2.250 -> 3.2.251 Diff: https://github.com/bridgecrewio/checkov/compare/refs/tags/3.2.250...3.2.251 Changelog: https://github.com/bridgecrewio/checkov/releases/tag/3.2.251 --- pkgs/development/tools/analysis/checkov/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix index 40efe28bcc3e..72b28b4bbfc6 100644 --- a/pkgs/development/tools/analysis/checkov/default.nix +++ b/pkgs/development/tools/analysis/checkov/default.nix @@ -6,14 +6,14 @@ python3.pkgs.buildPythonApplication rec { pname = "checkov"; - version = "3.2.250"; + version = "3.2.251"; pyproject = true; src = fetchFromGitHub { owner = "bridgecrewio"; repo = "checkov"; rev = "refs/tags/${version}"; - hash = "sha256-/GFZR4fpio5oTBacrEiS8M2BIOsdmr4Uz9m/k6edjYI="; + hash = "sha256-PBv6e0Y9kT6KmM12jnhF+9QC17v5A/rbR/5KBDV6Ekc="; }; patches = [ ./flake8-compat-5.x.patch ]; From e441eb2516234bbe8dcb989801ee78f9aa97ec50 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 10:29:09 +0200 Subject: [PATCH 170/232] python312Packages.ufmt: 2.7.0 -> 2.7.2 Diff: https://github.com/omnilib/ufmt/compare/refs/tags/v2.7.0...v2.7.2 Changelog: https://github.com/omnilib/ufmt/blob/2.7.2/CHANGELOG.md --- pkgs/development/python-modules/ufmt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/ufmt/default.nix b/pkgs/development/python-modules/ufmt/default.nix index e494d280ed72..9ee19bff8eab 100644 --- a/pkgs/development/python-modules/ufmt/default.nix +++ b/pkgs/development/python-modules/ufmt/default.nix @@ -19,16 +19,16 @@ buildPythonPackage rec { pname = "ufmt"; - version = "2.7.0"; + version = "2.7.2"; pyproject = true; - disabled = pythonOlder "3."; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "omnilib"; repo = "ufmt"; rev = "refs/tags/v${version}"; - hash = "sha256-hIbzW7yDqk8siob+RhcnbOonkl+67sl/IGHimIeMM+Q="; + hash = "sha256-nWdGaW/RlU6kV2ORKpVuJ634QoemhZR2zdcOOO1W9Wk="; }; build-system = [ flit-core ]; From 9eb18fc55ae553e380a1e7b3b989dd1e9b2e7e9c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 10:35:12 +0200 Subject: [PATCH 171/232] python312Packages.aioconsole: 0.7.1 -> 0.8.0 Diff: https://github.com/vxgmichel/aioconsole/compare/refs/tags/v0.7.1...v0.8.0 Changelog: https://github.com/vxgmichel/aioconsole/releases/tag/v0.8.0 --- .../python-modules/aioconsole/default.nix | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/aioconsole/default.nix b/pkgs/development/python-modules/aioconsole/default.nix index da4efbbdbb38..b374d2e51930 100644 --- a/pkgs/development/python-modules/aioconsole/default.nix +++ b/pkgs/development/python-modules/aioconsole/default.nix @@ -18,7 +18,7 @@ # wrapped to be able to find aioconsole and any other packages. buildPythonPackage rec { pname = "aioconsole"; - version = "0.7.1"; + version = "0.8.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -27,21 +27,21 @@ buildPythonPackage rec { owner = "vxgmichel"; repo = "aioconsole"; rev = "refs/tags/v${version}"; - hash = "sha256-c8zeKebS04bZS9pMIKAauaLPvRrWaGoDKbnF906tFzQ="; + hash = "sha256-gexVeMlDRxZXcBi/iIYPip0DZIKvxCxKmTd+9jm0ud8="; }; - nativeBuildInputs = [ setuptools ]; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace-fail " --cov aioconsole --strict-markers --count 2 -vv" "" + ''; + + build-system = [ setuptools ]; nativeCheckInputs = [ pytest-asyncio pytestCheckHook ]; - postPatch = '' - substituteInPlace setup.cfg \ - --replace "--cov aioconsole --count 2" "" - ''; - __darwinAllowLocalNetworking = true; disabledTests = [ @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioconsole" ]; meta = with lib; { - changelog = "https://github.com/vxgmichel/aioconsole/releases/tag/v${version}"; description = "Asynchronous console and interfaces for asyncio"; - mainProgram = "apython"; + changelog = "https://github.com/vxgmichel/aioconsole/releases/tag/v${version}"; homepage = "https://github.com/vxgmichel/aioconsole"; license = licenses.gpl3Only; maintainers = with maintainers; [ catern ]; + mainProgram = "apython"; }; } From bc12f1ad8f5c000ba9894b63290e99b640faab73 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 10:51:52 +0200 Subject: [PATCH 172/232] python312Packages.google-cloud-spanner: 3.48.0 -> 3.49.1 Diff: https://github.com/googleapis/python-spanner/compare/refs/tags/v3.48.0...v3.49.1 Changelog: https://github.com/googleapis/python-spanner/blob/v3.49.1/CHANGELOG.md --- .../python-modules/google-cloud-spanner/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-cloud-spanner/default.nix b/pkgs/development/python-modules/google-cloud-spanner/default.nix index 421f2ade417b..14527a19a43a 100644 --- a/pkgs/development/python-modules/google-cloud-spanner/default.nix +++ b/pkgs/development/python-modules/google-cloud-spanner/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { pname = "google-cloud-spanner"; - version = "3.48.0"; + version = "3.49.1"; pyproject = true; disabled = pythonOlder "3.7"; @@ -30,7 +30,7 @@ buildPythonPackage rec { owner = "googleapis"; repo = "python-spanner"; rev = "refs/tags/v${version}"; - hash = "sha256-QgLZQ0rgBEmYDAE16K84bSx4bFWJRviY1WqsVwKcO6w="; + hash = "sha256-KwANiuzVyqsz+KKTqNPM1WftuoMtUXRI8xbIdAzZF+s="; }; build-system = [ setuptools ]; From f29012c7c94adcd253839385bd07ec7593b721fe Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 10:52:28 +0200 Subject: [PATCH 173/232] python312Packages.google-cloud-bigquery-datatransfer: 3.15.6 -> 3.15.7 Changelog: https://github.com/googleapis/google-cloud-python/blob/google-cloud-bigquery-datatransfer-v3.15.7/packages/google-cloud-bigquery-datatransfer/CHANGELOG.md --- .../google-cloud-bigquery-datatransfer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix b/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix index 293fd4a55937..e830e78dd09d 100644 --- a/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix +++ b/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "google-cloud-bigquery-datatransfer"; - version = "3.15.6"; + version = "3.15.7"; pyproject = true; disabled = pythonOlder "3.7"; @@ -24,7 +24,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "google_cloud_bigquery_datatransfer"; inherit version; - hash = "sha256-oO370z1iS61vWVxHi+XYNNRjwi033zIG6YhLi7BnYXg="; + hash = "sha256-GLarRvI2eud/iNwj7ujZwIpK/b0ClhO0XUdBi4J9Lp0="; }; build-system = [ setuptools ]; From 9e20a566974429a79ae1ac7b24809e641fb13ea2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 10:55:51 +0200 Subject: [PATCH 174/232] python312Packages.google-cloud-bigquery-storage: 2.25.0 -> 2.26.0 Changelog: https://github.com/googleapis/python-bigquery-storage/blob/v2.26.0/CHANGELOG.md --- .../google-cloud-bigquery-storage/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix b/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix index 807c9c8acb91..4eae86bbbf46 100644 --- a/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix +++ b/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix @@ -11,21 +11,25 @@ pyarrow, pytestCheckHook, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "google-cloud-bigquery-storage"; - version = "2.25.0"; - format = "setuptools"; + version = "2.26.0"; + pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { - inherit pname version; - hash = "sha256-GV/9KxgOnqoivqs+QKC2Hs0UbssyZnz0Immo1xEbTUg="; + pname = "google_cloud_bigquery_storage"; + inherit version; + hash = "sha256-hAJ1vQpLIHwKyCG8xnQUBv+zte+UD6BQiakOtEA0U/o="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ google-api-core protobuf ] ++ google-api-core.optional-dependencies.grpc; @@ -57,10 +61,10 @@ buildPythonPackage rec { meta = with lib; { description = "BigQuery Storage API API client library"; - mainProgram = "fixup_bigquery_storage_v1_keywords.py"; homepage = "https://github.com/googleapis/python-bigquery-storage"; changelog = "https://github.com/googleapis/python-bigquery-storage/blob/v${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = [ ]; + mainProgram = "fixup_bigquery_storage_v1_keywords.py"; }; } From 6415140dae95fdea7897ed0dd63f8ff57c579359 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 10:57:08 +0200 Subject: [PATCH 175/232] python312Packages.google-cloud-container: 2.50.0 -> 2.51.0 Changelog: https://github.com/googleapis/google-cloud-python/blob/google-cloud-container-v2.51.0/packages/google-cloud-container/CHANGELOG.md --- .../python-modules/google-cloud-container/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-cloud-container/default.nix b/pkgs/development/python-modules/google-cloud-container/default.nix index ce11293d2d8e..386b240f6b1f 100644 --- a/pkgs/development/python-modules/google-cloud-container/default.nix +++ b/pkgs/development/python-modules/google-cloud-container/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "google-cloud-container"; - version = "2.50.0"; + version = "2.51.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -23,7 +23,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "google_cloud_container"; inherit version; - hash = "sha256-xq8m4jM6RcVAJVGdP0cZhriZQmT73AEJDLlXo9rjaQg="; + hash = "sha256-q1F+/uzyVY10pP/XrF1sL0+6o7uKfITSuZTc+NqA/Zw="; }; build-system = [ setuptools ]; From c4531ef9eeab594145c0bfd70f929494de23c0c8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 10:57:54 +0200 Subject: [PATCH 176/232] python312Packages.google-cloud-dataproc: 5.10.2 -> 5.11.0 Changelog: https://github.com/googleapis/google-cloud-python/blob/google-cloud-dataproc-v5.11.0/packages/google-cloud-dataproc/CHANGELOG.md --- .../python-modules/google-cloud-dataproc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-cloud-dataproc/default.nix b/pkgs/development/python-modules/google-cloud-dataproc/default.nix index 2e533b5ce9c4..34e3ab0ceae1 100644 --- a/pkgs/development/python-modules/google-cloud-dataproc/default.nix +++ b/pkgs/development/python-modules/google-cloud-dataproc/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "google-cloud-dataproc"; - version = "5.10.2"; + version = "5.11.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -24,7 +24,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "google_cloud_dataproc"; inherit version; - hash = "sha256-ajcy7dGltN9Yp8XPGYpmDBHPnYmuEL1/nuEkTh9iF3E="; + hash = "sha256-6jiAOYf9eBjRMyQ9tvR3EWfnqk1MfYIUTm98Plnfkhg="; }; build-system = [ setuptools ]; From d193a0e148ab622245e902a76d0ec2409ad0abcc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 10:58:30 +0200 Subject: [PATCH 177/232] python312Packages.google-i18n-address: 3.1.0 -> 3.1.1 Diff: https://github.com/mirumee/google-i18n-address/compare/refs/tags/3.1.0...3.1.1 Changelog: https://github.com/mirumee/google-i18n-address/releases/tag/3.1.1 --- .../python-modules/google-i18n-address/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-i18n-address/default.nix b/pkgs/development/python-modules/google-i18n-address/default.nix index d13183bacf35..8be43a53ba10 100644 --- a/pkgs/development/python-modules/google-i18n-address/default.nix +++ b/pkgs/development/python-modules/google-i18n-address/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "google-i18n-address"; - version = "3.1.0"; + version = "3.1.1"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "mirumee"; repo = "google-i18n-address"; rev = "refs/tags/${version}"; - hash = "sha256-dW/1wwnFDjYpym1ZaSZ7mOLpkHxsvuAHC8zBRekxWaw="; + hash = "sha256-7RqS/+6zInlhWydJwp4xf2uGpfmSdiSwvJugpL8Mlpk="; }; nativeBuildInputs = [ hatchling ]; From 2d48e162ecbde0dd852777b2c7acee9efd9745cd Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 10:59:33 +0200 Subject: [PATCH 178/232] python312Packages.google-i18n-address: refactor --- .../python-modules/google-i18n-address/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/google-i18n-address/default.nix b/pkgs/development/python-modules/google-i18n-address/default.nix index 8be43a53ba10..49d081c8efa6 100644 --- a/pkgs/development/python-modules/google-i18n-address/default.nix +++ b/pkgs/development/python-modules/google-i18n-address/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "google-i18n-address"; version = "3.1.1"; - format = "pyproject"; + pyproject = true; disabled = pythonOlder "3.7"; @@ -22,9 +22,9 @@ buildPythonPackage rec { hash = "sha256-7RqS/+6zInlhWydJwp4xf2uGpfmSdiSwvJugpL8Mlpk="; }; - nativeBuildInputs = [ hatchling ]; + build-system = [ hatchling ]; - propagatedBuildInputs = [ requests ]; + dependencies = [ requests ]; nativeCheckInputs = [ pytestCheckHook ]; @@ -32,10 +32,10 @@ buildPythonPackage rec { meta = with lib; { description = "Google's i18n address data packaged for Python"; - mainProgram = "update-validation-files"; homepage = "https://github.com/mirumee/google-i18n-address"; changelog = "https://github.com/mirumee/google-i18n-address/releases/tag/${version}"; license = licenses.bsd3; maintainers = [ ]; + mainProgram = "update-validation-files"; }; } From 37d9d1907a927e709f0a52814324a909ed6c3e54 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 11:01:23 +0200 Subject: [PATCH 179/232] python312Packages.griffe: 1.2.0 -> 1.3.0 Diff: https://github.com/mkdocstrings/griffe/compare/refs/tags/1.2.0...1.3.0 Changelog: https://github.com/mkdocstrings/griffe/blob/1.3.0/CHANGELOG.md --- pkgs/development/python-modules/griffe/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/griffe/default.nix b/pkgs/development/python-modules/griffe/default.nix index 59494d65f753..813798f0a37f 100644 --- a/pkgs/development/python-modules/griffe/default.nix +++ b/pkgs/development/python-modules/griffe/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "griffe"; - version = "1.2.0"; + version = "1.3.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "mkdocstrings"; repo = "griffe"; rev = "refs/tags/${version}"; - hash = "sha256-oxZZIfzPsGs2hhVRdWEvPhIR5JwTMAmO5VgEQHzBO90="; + hash = "sha256-s2GvtgDS3myCVwO8+jSJlo2FH7Od8d5WYjjxM1oroIo="; }; build-system = [ pdm-backend ]; From 7d1032ea47bc1708e0f2760224a596d2e25f5036 Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Thu, 12 Sep 2024 11:08:13 +0200 Subject: [PATCH 180/232] snpguest: 0.7.0 -> 0.7.1 Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- pkgs/by-name/sn/snpguest/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sn/snpguest/package.nix b/pkgs/by-name/sn/snpguest/package.nix index d40881045fbb..5abe3dff4154 100644 --- a/pkgs/by-name/sn/snpguest/package.nix +++ b/pkgs/by-name/sn/snpguest/package.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage rec { pname = "snpguest"; - version = "0.7.0"; + version = "0.7.1"; src = fetchFromGitHub { owner = "virtee"; repo = "snpguest"; rev = "refs/tags/v${version}"; - hash = "sha256-qc7WooUJQa0+tzoS0z0GPV3N3WGM1WQ4ewZj8zUWHZE="; + hash = "sha256-otsgMUdDp93J/ynquHDs6+oLh0CunyfqZwmcKXcXX0Q="; }; - cargoHash = "sha256-GYLJGkEI7AYUxuE57fGz4NM9hZ+Z73tq8wnOzANtwnM="; + cargoHash = "sha256-n3gqw4R8NZP8l2PmHWag+cBXlLx1GQPPADBmaYRTe6Q="; nativeBuildInputs = [ pkg-config ]; From 3945cdd2be714569a1aed3464d3243af0142cec4 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Thu, 12 Sep 2024 09:27:19 +0000 Subject: [PATCH 181/232] jellyfin-web: 10.9.10 -> 10.9.11 --- pkgs/by-name/je/jellyfin-web/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/je/jellyfin-web/package.nix b/pkgs/by-name/je/jellyfin-web/package.nix index e61aa25d1a2e..c1f81ee3f2f5 100644 --- a/pkgs/by-name/je/jellyfin-web/package.nix +++ b/pkgs/by-name/je/jellyfin-web/package.nix @@ -27,7 +27,7 @@ let in buildNpmPackage' rec { pname = "jellyfin-web"; - version = "10.9.10"; + version = "10.9.11"; src = assert version == jellyfin.version; @@ -35,10 +35,10 @@ buildNpmPackage' rec { owner = "jellyfin"; repo = "jellyfin-web"; rev = "v${version}"; - hash = "sha256-6t/kCuMbSug1q1EdQFAMqf/sWa+LAO46OUG0FL84UiE="; + hash = "sha256-zt0Exx/4B5gqiN3fxvQuVh1MqRNNtJG6/G0/reqVHRc="; }; - npmDepsHash = "sha256-R4myooMkKdvOFvyNqKIlZ2GozNOkg8YNTvomkt4aRIU="; + npmDepsHash = "sha256-kQxfh8o8NBshKmmjQrLdxiOQK83LG+lxhZwzDkEJwEo="; npmBuildScript = [ "build:production" ]; From 9e4ad8fa9bf7f56fa779db3c0ff894acf0f1d59f Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Thu, 12 Sep 2024 09:27:31 +0000 Subject: [PATCH 182/232] jellyfin: 10.9.10 -> 10.9.11 --- pkgs/by-name/je/jellyfin/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/je/jellyfin/package.nix b/pkgs/by-name/je/jellyfin/package.nix index 65182e433a67..9f3c78719cbb 100644 --- a/pkgs/by-name/je/jellyfin/package.nix +++ b/pkgs/by-name/je/jellyfin/package.nix @@ -13,13 +13,13 @@ buildDotnetModule rec { pname = "jellyfin"; - version = "10.9.10"; # ensure that jellyfin-web has matching version + version = "10.9.11"; # ensure that jellyfin-web has matching version src = fetchFromGitHub { owner = "jellyfin"; repo = "jellyfin"; rev = "v${version}"; - sha256 = "sha256-tkSQ7BKic/MD7xcvAPHeFb/RDz++KTLhmAzR4cv1q10="; + sha256 = "sha256-gZJIsNKXwhUUVgJh8vXuGSu9DEyrVY8NuIeyZHHQKN4="; }; propagatedBuildInputs = [ sqlite ]; From e377532955d4f214a675ab6c1204b100399c6565 Mon Sep 17 00:00:00 2001 From: Nevil Seong Date: Thu, 12 Sep 2024 18:35:48 +0900 Subject: [PATCH 183/232] netmask: build on all unix platforms --- pkgs/tools/networking/netmask/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/netmask/default.nix b/pkgs/tools/networking/netmask/default.nix index 5939c752dbde..c9b359cb3a2e 100644 --- a/pkgs/tools/networking/netmask/default.nix +++ b/pkgs/tools/networking/netmask/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/tlby/netmask"; description = "IP address formatting tool"; license = licenses.gpl2Plus; - platforms = platforms.linux; + platforms = platforms.unix; maintainers = [ maintainers.jensbin ]; mainProgram = "netmask"; }; From d1ad5dd375267e9000d45c0bfd9ff60c103a37a1 Mon Sep 17 00:00:00 2001 From: r-vdp Date: Mon, 9 Sep 2024 23:58:59 +0200 Subject: [PATCH 184/232] mako: include systemd user service --- pkgs/by-name/ma/mako/package.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/by-name/ma/mako/package.nix b/pkgs/by-name/ma/mako/package.nix index dbd6b7a08f77..a7c410be4dc2 100644 --- a/pkgs/by-name/ma/mako/package.nix +++ b/pkgs/by-name/ma/mako/package.nix @@ -44,6 +44,13 @@ stdenv.mkDerivation (finalAttrs: { ) ''; + postInstall = '' + mkdir -p $out/lib/systemd/user + substitute $src/contrib/systemd/mako.service $out/lib/systemd/user/mako.service \ + --replace-fail '/usr/bin' "$out/bin" + chmod 0644 $out/lib/systemd/user/mako.service + ''; + meta = { description = "Lightweight Wayland notification daemon"; homepage = "https://wayland.emersion.fr/mako/"; From df4c70151ef7478a8fde9a3a3c9434e99cc5ec63 Mon Sep 17 00:00:00 2001 From: r-vdp Date: Mon, 9 Sep 2024 23:59:36 +0200 Subject: [PATCH 185/232] mako: format using nixfmt --- pkgs/by-name/ma/mako/package.nix | 66 ++++++++++++++++++++++---------- 1 file changed, 45 insertions(+), 21 deletions(-) diff --git a/pkgs/by-name/ma/mako/package.nix b/pkgs/by-name/ma/mako/package.nix index a7c410be4dc2..3ff46c8b477b 100644 --- a/pkgs/by-name/ma/mako/package.nix +++ b/pkgs/by-name/ma/mako/package.nix @@ -1,20 +1,21 @@ -{ lib -, stdenv -, fetchFromGitHub -, meson -, ninja -, pkg-config -, scdoc -, systemd -, pango -, cairo -, gdk-pixbuf -, jq -, bash -, wayland -, wayland-scanner -, wayland-protocols -, wrapGAppsHook3 +{ + lib, + stdenv, + fetchFromGitHub, + meson, + ninja, + pkg-config, + scdoc, + systemd, + pango, + cairo, + gdk-pixbuf, + jq, + bash, + wayland, + wayland-scanner, + wayland-protocols, + wrapGAppsHook3, }: stdenv.mkDerivation (finalAttrs: { @@ -30,8 +31,22 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; depsBuildBuild = [ pkg-config ]; - nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-protocols wrapGAppsHook3 wayland-scanner ]; - buildInputs = [ systemd pango cairo gdk-pixbuf wayland ]; + nativeBuildInputs = [ + meson + ninja + pkg-config + scdoc + wayland-protocols + wrapGAppsHook3 + wayland-scanner + ]; + buildInputs = [ + systemd + pango + cairo + gdk-pixbuf + wayland + ]; mesonFlags = [ "-Dzsh-completions=true" @@ -40,7 +55,13 @@ stdenv.mkDerivation (finalAttrs: { preFixup = '' gappsWrapperArgs+=( - --prefix PATH : "${lib.makeBinPath [ systemd /* for busctl */ jq bash ]}" + --prefix PATH : "${ + lib.makeBinPath [ + systemd # for busctl + jq + bash + ] + }" ) ''; @@ -55,7 +76,10 @@ stdenv.mkDerivation (finalAttrs: { description = "Lightweight Wayland notification daemon"; homepage = "https://wayland.emersion.fr/mako/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dywedir synthetica ]; + maintainers = with lib.maintainers; [ + dywedir + synthetica + ]; platforms = lib.platforms.linux; mainProgram = "mako"; }; From d1ee2bde33b6fe5146087d1deaaa096df8c9c68f Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Thu, 12 Sep 2024 16:57:32 +0530 Subject: [PATCH 186/232] google-chrome: 128.0.6613.113 -> 128.0.6613.137 --- pkgs/by-name/go/google-chrome/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/go/google-chrome/package.nix b/pkgs/by-name/go/google-chrome/package.nix index aa4546eafa07..663991c8ed98 100644 --- a/pkgs/by-name/go/google-chrome/package.nix +++ b/pkgs/by-name/go/google-chrome/package.nix @@ -164,11 +164,11 @@ let linux = stdenv.mkDerivation (finalAttrs: { inherit pname meta passthru; - version = "128.0.6613.113"; + version = "128.0.6613.137"; src = fetchurl { url = "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${finalAttrs.version}-1_amd64.deb"; - hash = "sha256-jdgZFmkPZwNt+4nb6/4ahCM4jNEKUkIfaI9MqOcjHys="; + hash = "sha256-Ggah8tabckPemWtKehx8So1Y55J0UdhAFf5rPRSwV6Q="; }; # With strictDeps on, some shebangs were not being patched correctly @@ -258,11 +258,11 @@ let darwin = stdenvNoCC.mkDerivation (finalAttrs: { inherit pname meta passthru; - version = "128.0.6613.114"; + version = "128.0.6613.138"; src = fetchurl { - url = "http://dl.google.com/release2/chrome/j7qfyaczqq4hpgxunewwclxnky_128.0.6613.114/GoogleChrome-128.0.6613.114.dmg"; - hash = "sha256-6y99T+9abmUS9wKglNgPgj9M/cyLxb85rxpgCLxXR3E="; + url = "http://dl.google.com/release2/chrome/gtm24cqmnwgcp7dtscvlmsbrwa_128.0.6613.138/GoogleChrome-128.0.6613.138.dmg"; + hash = "sha256-wd6n3AeKxKdz+5X9XxTi1QHzmByzKRgIWcc3iBHhtZs="; }; dontPatch = true; From 5cef2781708847747f3bb5518c3c14ca9c1e929e Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 07:11:44 +0300 Subject: [PATCH 187/232] nixos/qemu-vm: expose installBootLoader as an option, assert when it's enabled without stc We need stc to actually, well, install the bootloader. --- nixos/modules/virtualisation/qemu-vm.nix | 30 +++++++++++++++++------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 153dc877352a..b48f9e64c235 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -276,15 +276,7 @@ let onlyNixStore = false; label = rootFilesystemLabel; partitionTableType = selectPartitionTableLayout { inherit (cfg) useDefaultFilesystems useEFIBoot; }; - # Bootloader should be installed on the system image only if we are booting through bootloaders. - # Though, if a user is not using our default filesystems, it is possible to not have any ESP - # or a strange partition table that's incompatible with GRUB configuration. - # As a consequence, this may lead to disk image creation failures. - # To avoid this, we prefer to let the user find out about how to install the bootloader on its ESP/disk. - # Usually, this can be through building your own disk image. - # TODO: If a user is interested into a more fine grained heuristic for `installBootLoader` - # by examining the actual contents of `cfg.fileSystems`, please send a PR. - installBootLoader = cfg.useBootLoader && cfg.useDefaultFilesystems; + installBootLoader = cfg.installBootLoader; touchEFIVars = cfg.useEFIBoot; diskSize = "auto"; additionalSpace = "0M"; @@ -840,6 +832,19 @@ in ''; }; + virtualisation.installBootLoader = + mkOption { + type = types.bool; + default = cfg.useBootLoader && cfg.useDefaultFilesystems; + defaultText = "cfg.useBootLoader && cfg.useDefaultFilesystems"; + description = '' + Install boot loader to target image. + + This is best-effort and may break with unconventional partition setups. + Use `virtualisation.useDefaultFilesystems` for a known-working configuration. + ''; + }; + virtualisation.useEFIBoot = mkOption { type = types.bool; @@ -999,6 +1004,13 @@ in If you have a more advanced usecase, please open an issue or a pull request. ''; } + { + assertion = cfg.installBootLoader -> config.system.switch.enable; + message = '' + `system.switch.enable` must be enabled for `virtualisation.installBootLoader` to work. + Please enable it in your configuration. + ''; + } ]; warnings = From 2bc5aac96086bd960c4c2a106b99e37bb9f0a6b3 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 15:44:02 +0300 Subject: [PATCH 188/232] nixos/lib/testing: enable stc by default for installBootLoader VMs --- nixos/lib/testing/nixos-test-base.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/lib/testing/nixos-test-base.nix b/nixos/lib/testing/nixos-test-base.nix index 65fe15c6162e..c8b15a0ecce4 100644 --- a/nixos/lib/testing/nixos-test-base.nix +++ b/nixos/lib/testing/nixos-test-base.nix @@ -23,10 +23,10 @@ in }; } ({ config, ... }: { - # Don't pull in switch-to-configuration by default, except when specialisations are involved. + # Don't pull in switch-to-configuration by default, except when specialisations or early boot shenanigans are involved. # This is mostly a Hydra optimization, so we don't rebuild all the tests every time switch-to-configuration-ng changes. key = "no-switch-to-configuration"; - system.switch.enable = mkDefault (config.isSpecialisation || config.specialisation != {}); + system.switch.enable = mkDefault (config.isSpecialisation || config.specialisation != {} || config.virtualisation.installBootLoader); }) ]; } From 55de2fbfda51e338fd097e238a9d4602c8550295 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 12 Sep 2024 14:40:42 +0200 Subject: [PATCH 189/232] vimPlugins.himalaya-vim: fix url --- pkgs/applications/editors/vim/plugins/generated.nix | 13 +++++++------ .../editors/vim/plugins/vim-plugin-names | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index b4baa2b072fb..5df8bf42ade4 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -4861,13 +4861,14 @@ final: prev: himalaya-vim = buildVimPlugin { pname = "himalaya-vim"; - version = "2024-05-27"; - src = fetchgit { - url = "https://git.sr.ht/~soywod/himalaya-vim"; - rev = "cea041c927a04a841aea53abcedd4a0d153d4ca8"; - sha256 = "0yrilhvqklfbfknkdskywf95mfhbr9rfjs2gmppnzgfs7fg6jn63"; + version = "2024-09-10"; + src = fetchFromGitHub { + owner = "pimalaya"; + repo = "himalaya-vim"; + rev = "f25c003e8fe532348b4080bf8d738cfa1bbf1f5f"; + sha256 = "0dv6mxwq6yv6if1lfb45j49rl6bghyr1hn1xfbz9g9cbb7fna2x1"; }; - meta.homepage = "https://git.sr.ht/~soywod/himalaya-vim"; + meta.homepage = "https://github.com/pimalaya/himalaya-vim/"; }; hlint-refactor-vim = buildVimPlugin { diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 6d945652455d..0760c7e47d97 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -405,7 +405,7 @@ https://github.com/OXY2DEV/helpview.nvim/,HEAD, https://github.com/RaafatTurki/hex.nvim/,HEAD, https://github.com/Yggdroot/hiPairs/,, https://github.com/tzachar/highlight-undo.nvim/,HEAD, -https://git.sr.ht/~soywod/himalaya-vim,, +https://github.com/pimalaya/himalaya-vim/,, https://github.com/mpickering/hlint-refactor-vim/,, https://github.com/calops/hmts.nvim/,, https://github.com/edluffy/hologram.nvim/,, From 65b0adfd13c9a0518886ec12d30b9f884f7431eb Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Thu, 12 Sep 2024 14:52:37 +0200 Subject: [PATCH 190/232] python312Packages.pdoc: 14.6.1 -> 14.7.0 Diff: https://github.com/mitmproxy/pdoc/compare/v14.6.1...v14.7.0 Changelog: https://github.com/mitmproxy/pdoc/blob/v14.7.0/CHANGELOG.md --- pkgs/development/python-modules/pdoc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pdoc/default.nix b/pkgs/development/python-modules/pdoc/default.nix index 6f20b2234cff..f979e9b7510b 100644 --- a/pkgs/development/python-modules/pdoc/default.nix +++ b/pkgs/development/python-modules/pdoc/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "pdoc"; - version = "14.6.1"; + version = "14.7.0"; disabled = pythonOlder "3.8"; pyproject = true; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "mitmproxy"; repo = "pdoc"; rev = "v${version}"; - hash = "sha256-9bnkpzHbYYrxVGPPdM1sWkk7IVvNd3GNJ/8CaYV52ko="; + hash = "sha256-U6gLEuyKvGGP5yKXb+bWDGJqmHTdPYLLPgHLVySAJ6I="; }; nativeBuildInputs = [ setuptools ]; From 623af5aef21e31327c895f1026680fd87345e006 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 14:53:12 +0200 Subject: [PATCH 191/232] python312Packages.aiostreammagic: init at 2.2.5 Module for interfacing with Cambridge Audio/Stream Magic compatible streamers https://github.com/noahhusby/aiostreammagic --- .../python-modules/aiostreammagic/default.nix | 52 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 54 insertions(+) create mode 100644 pkgs/development/python-modules/aiostreammagic/default.nix diff --git a/pkgs/development/python-modules/aiostreammagic/default.nix b/pkgs/development/python-modules/aiostreammagic/default.nix new file mode 100644 index 000000000000..1fec6b0ea116 --- /dev/null +++ b/pkgs/development/python-modules/aiostreammagic/default.nix @@ -0,0 +1,52 @@ +{ + lib, + aiohttp, + buildPythonPackage, + fetchFromGitHub, + mashumaro, + orjson, + poetry-core, + pythonOlder, + websockets, + yarl, +}: + +buildPythonPackage rec { + pname = "aiostreammagic"; + version = "2.2.5"; + pyproject = true; + + disabled = pythonOlder "3.11"; + + src = fetchFromGitHub { + owner = "noahhusby"; + repo = "aiostreammagic"; + rev = "refs/tags/${version}"; + hash = "sha256-fJiP16LvHuYlSkeq/SijWI8YEX8T4lGDJLAVvKplgHI="; + }; + + pythonRelaxDeps = [ "websockets" ]; + + build-system = [ poetry-core ]; + + dependencies = [ + aiohttp + mashumaro + orjson + websockets + yarl + ]; + + # Module has no tests + doCheck = false; + + pythonImportsCheck = [ "aiostreammagic" ]; + + meta = { + description = "Module for interfacing with Cambridge Audio/Stream Magic compatible streamers"; + homepage = "https://github.com/noahhusby/aiostreammagic"; + changelog = "https://github.com/noahhusby/aiostreammagic/releases/tag/${version}"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5b67720f4067..3a6852de4e0b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -443,6 +443,8 @@ self: super: with self; { aiostream = callPackage ../development/python-modules/aiostream { }; + aiostreammagic = callPackage ../development/python-modules/aiostreammagic { }; + aioswitcher = callPackage ../development/python-modules/aioswitcher { }; aiosyncthing = callPackage ../development/python-modules/aiosyncthing { }; From 0fe59d89000599a3856a0eb44b3c0f139a8aaecc Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 14:24:31 +0100 Subject: [PATCH 192/232] llvmPackages_{12,13}.lldb: mark broken MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These have been failing to build on Hydra for over two months. It looks like it might be a Python 3.12‐related thing, but the SWIG 4 patches wouldn’t apply cleanly and these old versions should probably just be dropped anyway. --- pkgs/development/compilers/llvm/common/lldb.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/compilers/llvm/common/lldb.nix b/pkgs/development/compilers/llvm/common/lldb.nix index 02cd334d0a70..f609ae917dbf 100644 --- a/pkgs/development/compilers/llvm/common/lldb.nix +++ b/pkgs/development/compilers/llvm/common/lldb.nix @@ -186,10 +186,7 @@ stdenv.mkDerivation (rec { larger LLVM Project, such as the Clang expression parser and LLVM disassembler. ''; - # llvm <10 never built on aarch64-darwin since first introduction in nixpkgs - broken = - (lib.versionOlder release_version "11" && stdenv.isDarwin && stdenv.isAarch64) - || (((lib.versions.major release_version) == "13") && stdenv.isDarwin); + broken = lib.versionOlder release_version "14"; mainProgram = "lldb"; }; } // lib.optionalAttrs enableManpages { From 1ba4420c174d4892d335c3a96226f4fca61e182c Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Thu, 12 Sep 2024 18:55:28 +0530 Subject: [PATCH 193/232] vscode-extensions.ms-vscode-cpptools: 1.21.4 -> 1.22.2 --- .../vscode/extensions/ms-vscode.cpptools/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/ms-vscode.cpptools/default.nix b/pkgs/applications/editors/vscode/extensions/ms-vscode.cpptools/default.nix index 55ed38a10130..fd3358e99f6d 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-vscode.cpptools/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-vscode.cpptools/default.nix @@ -41,11 +41,11 @@ let isx86Linux = stdenv.hostPlatform.system == "x86_64-linux"; supported = { x86_64-linux = { - hash = "sha256-jibImnpRtshbHu21JeS4VxL1jETm3Ein8S/M73UXc2w="; + hash = "sha256-ek4WBr9ZJ87TXlKQowA68YNt3WNOXymLcVfz1g+Be2o="; arch = "linux-x64"; }; aarch64-linux = { - hash = "sha256-7UagRO7qHyT1JIvvTSx9+USYrnDRXJ2wnXPLaBHRc3k="; + hash = "sha256-2+JqosgyoMRFnl8fnCrKljkdF3eU72mXy30ZUnaIerA="; arch = "linux-arm64"; }; }; @@ -58,7 +58,7 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = base // { name = "cpptools"; publisher = "ms-vscode"; - version = "1.21.4"; + version = "1.22.2"; }; nativeBuildInputs = [ From 5475c70ea59becc3551ca3964a27a395f3f0b830 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 12 Sep 2024 14:38:03 +0200 Subject: [PATCH 194/232] vimPlugins.gina-vim: fix by renaming to vim-gina --- .../editors/vim/plugins/generated.nix | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index 5df8bf42ade4..fdbefc0eed28 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -4247,18 +4247,6 @@ final: prev: meta.homepage = "https://github.com/eagletmt/ghcmod-vim/"; }; - gina-vim = buildVimPlugin { - pname = "gina.vim"; - version = "2022-03-30"; - src = fetchFromGitHub { - owner = "lambdalisue"; - repo = "vim-gina"; - rev = "ff6c2ddeca98f886b57fb42283c12e167d6ab575"; - sha256 = "09jlnpix2dy6kggiz96mrm5l1f9x1gl5afpdmfrxgkighn2rwpzq"; - }; - meta.homepage = "https://github.com/lambdalisue/vim-gina/"; - }; - git-blame-nvim = buildVimPlugin { pname = "git-blame.nvim"; version = "2024-07-28"; @@ -13697,6 +13685,18 @@ final: prev: meta.homepage = "https://github.com/raghur/vim-ghost/"; }; + vim-gina = buildVimPlugin { + pname = "vim-gina"; + version = "2022-03-30"; + src = fetchFromGitHub { + owner = "lambdalisue"; + repo = "vim-gina"; + rev = "ff6c2ddeca98f886b57fb42283c12e167d6ab575"; + sha256 = "09jlnpix2dy6kggiz96mrm5l1f9x1gl5afpdmfrxgkighn2rwpzq"; + }; + meta.homepage = "https://github.com/lambdalisue/vim-gina/"; + }; + vim-gist = buildVimPlugin { pname = "vim-gist"; version = "2022-10-09"; From 594ec5bf198fb8756e8278254a3bbc4bcfbe97d5 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Thu, 12 Sep 2024 23:34:49 +1000 Subject: [PATCH 195/232] httplib: 0.17.0 -> 0.17.3 (#340960) --- pkgs/development/libraries/httplib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/httplib/default.nix b/pkgs/development/libraries/httplib/default.nix index 69d19b7f9001..eb733b4df17b 100644 --- a/pkgs/development/libraries/httplib/default.nix +++ b/pkgs/development/libraries/httplib/default.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "httplib"; - version = "0.17.0"; + version = "0.17.3"; src = fetchFromGitHub { owner = "yhirose"; repo = "cpp-httplib"; rev = "v${version}"; - hash = "sha256-F/+w7viOWesdPZR8bBXEO9D/5sLQnKp2hyXCMSS6E/k="; + hash = "sha256-yvaPIbRqJGkiob3Nrv3H1ieFAC5b+h1tTncJWTy4dmk="; }; nativeBuildInputs = [ cmake ]; From b9b940b8b9d0f9f9479726c4b9df3961aa217ff8 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 16:35:02 +0300 Subject: [PATCH 196/232] maintainers/scripts/kde/generate-sources: update URL format --- maintainers/scripts/kde/generate-sources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/scripts/kde/generate-sources.py b/maintainers/scripts/kde/generate-sources.py index 4f43710997f4..a5a5fbfd7223 100755 --- a/maintainers/scripts/kde/generate-sources.py +++ b/maintainers/scripts/kde/generate-sources.py @@ -75,7 +75,7 @@ def main(set: str, version: str, nixpkgs: pathlib.Path, sources_url: Optional[st "gear": "releases", "plasma": "plasma", }[set] - sources_url = f"https://kde.org/info/sources/source-{set_url}-{version}.html" + sources_url = f"https://kde.org/info/sources/source-{set_url}-{version}/" sources = httpx.get(sources_url) sources.raise_for_status() From 4fe6d22a940e3ff4fc2ae60bc6044676a6ae68db Mon Sep 17 00:00:00 2001 From: Scott Edlund Date: Thu, 12 Sep 2024 15:52:11 +0200 Subject: [PATCH 197/232] cntb: 1.4.8 -> 1.4.12 --- pkgs/by-name/cn/cntb/package.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/cn/cntb/package.nix b/pkgs/by-name/cn/cntb/package.nix index 24b319308919..c54695abf703 100644 --- a/pkgs/by-name/cn/cntb/package.nix +++ b/pkgs/by-name/cn/cntb/package.nix @@ -3,18 +3,24 @@ , fetchFromGitHub }: buildGoModule rec { pname = "cntb"; - version = "1.4.8"; + version = "1.4.12"; src = fetchFromGitHub { owner = "contabo"; repo = "cntb"; - rev = version; - hash = "sha256-Cj1PO82JeztThFAHR4/8UyqKrodgxBqVDMDsun3iGDo="; + rev = "v${version}"; + hash = "sha256-clDIrZdvEy4oO0ZvqDNLJbr4Ij8D5dcyZPxey6zLV6Q="; }; subPackages = [ "." ]; - vendorHash = "sha256-4PhLUUtlnRh2dKkeVD7rZDDVP0eTDVAohvLLftQxQyE="; + vendorHash = "sha256-IBDVHQe6OOGQ27G7uXKRtavy4tnCvIbL07j969/E9Vg="; + + ldflags = [ + "-X contabo.com/cli/cntb/cmd.version=${src.rev}" + "-X contabo.com/cli/cntb/cmd.commit=${src.rev}" + "-X contabo.com/cli/cntb/cmd.date=1970-01-01T00:00:00Z" + ]; meta = with lib; { description = "CLI tool for managing your products from Contabo like VPS and VDS"; From 47dbf6f64ebd38644f2e42704427273229edf9f6 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 14:45:05 +0100 Subject: [PATCH 198/232] linenoise: use `fixDarwinDylibNames` --- pkgs/development/libraries/linenoise/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/linenoise/default.nix b/pkgs/development/libraries/linenoise/default.nix index 42017e5e1718..a525a3da9a41 100644 --- a/pkgs/development/libraries/linenoise/default.nix +++ b/pkgs/development/libraries/linenoise/default.nix @@ -2,6 +2,7 @@ , stdenv , fetchFromGitHub , validatePkgConfig +, fixDarwinDylibNames }: stdenv.mkDerivation { @@ -15,7 +16,8 @@ stdenv.mkDerivation { hash = "sha256-GsrYg16gpjHkkmpCU3yGzqNS/buZl+JoWALLvwzmT4A="; }; - nativeBuildInputs = [ validatePkgConfig ]; + nativeBuildInputs = [ validatePkgConfig ] + ++ lib.optionals stdenv.isDarwin [ fixDarwinDylibNames ]; buildPhase = '' runHook preBuild From 0ac4e0f0083fa8e94617d4345eb757702282adf2 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 14:44:39 +0100 Subject: [PATCH 199/232] picocom: move to `pkgs/by-name` --- .../picocom/default.nix => by-name/pi/picocom/package.nix} | 4 ++-- pkgs/top-level/all-packages.nix | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) rename pkgs/{tools/misc/picocom/default.nix => by-name/pi/picocom/package.nix} (92%) diff --git a/pkgs/tools/misc/picocom/default.nix b/pkgs/by-name/pi/picocom/package.nix similarity index 92% rename from pkgs/tools/misc/picocom/default.nix rename to pkgs/by-name/pi/picocom/package.nix index d8422e3679fd..10fc1d7bfa0b 100644 --- a/pkgs/tools/misc/picocom/default.nix +++ b/pkgs/by-name/pi/picocom/package.nix @@ -2,7 +2,7 @@ , fetchFromGitHub , installShellFiles , lrzsz -, IOKit +, darwin }: stdenv.mkDerivation rec { @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ installShellFiles ]; - buildInputs = lib.optional stdenv.isDarwin IOKit; + buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.IOKit ]; installPhase = '' install -Dm555 -t $out/bin picocom diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c12c64eac07b..5e4cca8e28b1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32589,10 +32589,6 @@ with pkgs; picard = callPackage ../applications/audio/picard { }; - picocom = callPackage ../tools/misc/picocom { - inherit (darwin.apple_sdk.frameworks) IOKit; - }; - picoloop = callPackage ../applications/audio/picoloop { }; picosnitch = callPackage ../tools/networking/picosnitch { }; From dfa36a3e5c689d032884b7f433aeb52846e7e64a Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 15:06:58 +0100 Subject: [PATCH 200/232] picocom: format with `nixfmt-rfc-style` --- pkgs/by-name/pi/picocom/package.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/pi/picocom/package.nix b/pkgs/by-name/pi/picocom/package.nix index 10fc1d7bfa0b..ae4a3b3f7c6d 100644 --- a/pkgs/by-name/pi/picocom/package.nix +++ b/pkgs/by-name/pi/picocom/package.nix @@ -1,8 +1,10 @@ -{ lib, stdenv -, fetchFromGitHub -, installShellFiles -, lrzsz -, darwin +{ + lib, + stdenv, + fetchFromGitHub, + installShellFiles, + lrzsz, + darwin, }: stdenv.mkDerivation rec { From 329e7d9382cbe4eb605e203565c0864874785032 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 10 Sep 2024 17:34:40 +0000 Subject: [PATCH 201/232] minio: 2024-08-29T01-40-52Z -> 2024-09-09T16-59-28Z --- pkgs/servers/minio/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/minio/default.nix b/pkgs/servers/minio/default.nix index acb3f145c857..09918625b1c1 100644 --- a/pkgs/servers/minio/default.nix +++ b/pkgs/servers/minio/default.nix @@ -21,16 +21,16 @@ let in buildGoModule rec { pname = "minio"; - version = "2024-08-29T01-40-52Z"; + version = "2024-09-09T16-59-28Z"; src = fetchFromGitHub { owner = "minio"; repo = "minio"; rev = "RELEASE.${version}"; - hash = "sha256-J+SwtW5HEUQD7YgHgXpOS4EXFLL2iaiBrIfjS+Q1hrM="; + hash = "sha256-mFt1oo48GC9mVnGXSWc3SgtgQZlu1L9zAfM7nBYd9jE="; }; - vendorHash = "sha256-L4mmQyXd/NQkKBHMKCLWs4A9XFKdrpcy+SYx2ExvqQE="; + vendorHash = "sha256-otRSkxMoshDHLwUn/VA+svvb/fJhkBqZth1lfOUBytY="; doCheck = false; From 5f0e2e9e4e03b5bf446a4cd3f6f98d072c709238 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 14:45:05 +0100 Subject: [PATCH 202/232] picocom: switch to maintained fork The previous upstream has been dead for six years; this fork is by Linux kernel developer Wolfram Sang, and is already used by Fedora, openSUSE, and Buildroot. --- pkgs/by-name/pi/picocom/lrzsz-path.patch | 15 ++++++ pkgs/by-name/pi/picocom/package.nix | 61 ++++++++++++++---------- 2 files changed, 50 insertions(+), 26 deletions(-) create mode 100644 pkgs/by-name/pi/picocom/lrzsz-path.patch diff --git a/pkgs/by-name/pi/picocom/lrzsz-path.patch b/pkgs/by-name/pi/picocom/lrzsz-path.patch new file mode 100644 index 000000000000..86e9759db2de --- /dev/null +++ b/pkgs/by-name/pi/picocom/lrzsz-path.patch @@ -0,0 +1,15 @@ +diff --git a/picocom.c b/picocom.c +index ba2f9bd666..d4df60f2d3 100644 +--- a/picocom.c ++++ b/picocom.c +@@ -243,8 +243,8 @@ + .send_cmd = "", + .receive_cmd = "", + #else +- .send_cmd = "sz -vv", +- .receive_cmd = "rz -vv -E", ++ .send_cmd = "@lrzsz@/bin/sz -vv", ++ .receive_cmd = "@lrzsz@/bin/rz -vv -E", + #endif + .imap = M_I_DFL, + .omap = M_O_DFL, diff --git a/pkgs/by-name/pi/picocom/package.nix b/pkgs/by-name/pi/picocom/package.nix index ae4a3b3f7c6d..5f3458df7d3e 100644 --- a/pkgs/by-name/pi/picocom/package.nix +++ b/pkgs/by-name/pi/picocom/package.nix @@ -1,51 +1,60 @@ { lib, stdenv, - fetchFromGitHub, + fetchFromGitLab, + replaceVars, + go-md2man, installShellFiles, - lrzsz, darwin, + lrzsz, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "picocom"; - # last tagged release is 3.1 but 3.2 is still considered a release - version = "3.2a"; + version = "2024-07"; - # upstream is quiet as the original author is no longer active since March 2018 - src = fetchFromGitHub { - owner = "npat-efault"; + src = fetchFromGitLab { + owner = "wsakernel"; repo = "picocom"; - rev = "1acf1ddabaf3576b4023c4f6f09c5a3e4b086fb8"; - sha256 = "sha256-cs2bxqZfTbnY5d+VJ257C5hssaFvYup3tBKz68ROnAo="; + rev = finalAttrs.version; + hash = "sha256-cQoEfi75iltjeAm26NvXgfrL7d1Hm+1veQ4dVe0S1q8="; }; - postPatch = '' - substituteInPlace Makefile \ - --replace '.picocom_history' '.cache/picocom_history' + patches = [ + (replaceVars ./lrzsz-path.patch { inherit lrzsz; }) + ]; - substituteInPlace picocom.c \ - --replace '"rz -vv -E"' '"${lrzsz}/bin/rz -vv -E"' \ - --replace '"sz -vv"' '"${lrzsz}/bin/sz -vv"' - ''; - - enableParallelBuilding = true; - - nativeBuildInputs = [ installShellFiles ]; + nativeBuildInputs = [ + go-md2man + installShellFiles + ]; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.IOKit ]; + makeFlags = [ + "HISTFILE=.cache/picocom_history" + "all" + "doc" + ]; + + enableParallelBuilding = true; + installPhase = '' + runHook preInstall + install -Dm555 -t $out/bin picocom installManPage picocom.1 installShellCompletion --bash bash_completion/picocom + + runHook postInstall ''; - meta = with lib; { + meta = { description = "Minimal dumb-terminal emulation program"; - homepage = "https://github.com/npat-efault/picocom/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + homepage = "https://gitlab.com/wsakernel/picocom"; + changelog = "https://gitlab.com/wsakernel/picocom/-/releases"; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "picocom"; }; -} +}) From 0c03f637b2edc06279b49bc795c06c9fdcfd5734 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Sep 2024 16:37:43 +0200 Subject: [PATCH 203/232] python312Packages.kombu: 5.4.0 -> 5.4.1 Changelog: https://github.com/celery/kombu/blob/v5.4.1/Changelog.rst --- pkgs/development/python-modules/kombu/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/kombu/default.nix b/pkgs/development/python-modules/kombu/default.nix index 187d5a8bbba4..bfd5beb329bf 100644 --- a/pkgs/development/python-modules/kombu/default.nix +++ b/pkgs/development/python-modules/kombu/default.nix @@ -27,14 +27,14 @@ buildPythonPackage rec { pname = "kombu"; - version = "5.4.0"; + version = "5.4.1"; format = "setuptools"; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-rSAKjb2qorvF8m0u59cH2aH97TU6D0vXUc6MfZ9EnGA="; + hash = "sha256-HAUXiCbauBH4yrWwoVTUKnoz2Lzd6fo9e0WC5Dw8A9s="; }; propagatedBuildInputs = From a5cd7bba11737aad7f2aae9de0e5c6ab8e121fac Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 14:45:05 +0100 Subject: [PATCH 204/232] picocom: devendor linenoise --- pkgs/by-name/pi/picocom/package.nix | 8 ++++- .../pi/picocom/use-system-linenoise.patch | 30 +++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 pkgs/by-name/pi/picocom/use-system-linenoise.patch diff --git a/pkgs/by-name/pi/picocom/package.nix b/pkgs/by-name/pi/picocom/package.nix index 5f3458df7d3e..9e9d1380558a 100644 --- a/pkgs/by-name/pi/picocom/package.nix +++ b/pkgs/by-name/pi/picocom/package.nix @@ -3,8 +3,10 @@ stdenv, fetchFromGitLab, replaceVars, + pkg-config, go-md2man, installShellFiles, + linenoise, darwin, lrzsz, }: @@ -21,15 +23,19 @@ stdenv.mkDerivation (finalAttrs: { }; patches = [ + ./use-system-linenoise.patch (replaceVars ./lrzsz-path.patch { inherit lrzsz; }) ]; nativeBuildInputs = [ + pkg-config go-md2man installShellFiles ]; - buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.IOKit ]; + buildInputs = [ + linenoise + ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.IOKit ]; makeFlags = [ "HISTFILE=.cache/picocom_history" diff --git a/pkgs/by-name/pi/picocom/use-system-linenoise.patch b/pkgs/by-name/pi/picocom/use-system-linenoise.patch new file mode 100644 index 000000000000..ee31a0d617cc --- /dev/null +++ b/pkgs/by-name/pi/picocom/use-system-linenoise.patch @@ -0,0 +1,30 @@ +diff --git a/Makefile b/Makefile +index 8fca24ee38..33b59b5b96 100644 +--- a/Makefile ++++ b/Makefile +@@ -39,9 +39,9 @@ + ## Comment these out to disable "linenoise"-library support + HISTFILE = .picocom_history + CPPFLAGS += -DHISTFILE=\"$(HISTFILE)\" \ +- -DLINENOISE +-OBJS += linenoise-1.0/linenoise.o +-linenoise-1.0/linenoise.o : linenoise-1.0/linenoise.c linenoise-1.0/linenoise.h ++ -DLINENOISE \ ++ $(shell pkg-config --cflags linenoise) ++LDFLAGS += $(shell pkg-config --libs linenoise) + + ## Comment this in to enable (force) custom baudrate support + ## even on systems not enabled by default. +diff --git a/picocom.c b/picocom.c +index 775ee9c3bb..ba2f9bd666 100644 +--- a/picocom.c ++++ b/picocom.c +@@ -48,7 +48,7 @@ + #include "split.h" + #include "term.h" + #ifdef LINENOISE +-#include "linenoise-1.0/linenoise.h" ++#include + #endif + + #include "custbaud.h" From 1e9f0328783c77480b690fd589872e43c6df20e1 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 11:20:59 +0100 Subject: [PATCH 205/232] llvmPackages_{14,15,16,17}.lldb: use SWIG 4 The patches are already included in LLVM 16 and 17. --- .../compilers/llvm/common/default.nix | 29 ++++++++++++++++++- .../compilers/llvm/common/lldb.nix | 4 +-- 2 files changed, 29 insertions(+), 4 deletions(-) diff --git a/pkgs/development/compilers/llvm/common/default.nix b/pkgs/development/compilers/llvm/common/default.nix index fe5b432f8cf0..1c56e0f6f4c1 100644 --- a/pkgs/development/compilers/llvm/common/default.nix +++ b/pkgs/development/compilers/llvm/common/default.nix @@ -10,6 +10,7 @@ substituteAll, fetchFromGitHub, fetchpatch, + fetchpatch2, overrideCC, wrapCCWith, wrapBintoolsWith, @@ -606,9 +607,35 @@ let (_: _: { name = "resource-dir.patch"; }) ) { }; in - lib.optional (lib.versionOlder metadata.release_version "16") + lib.optionals (lib.versionOlder metadata.release_version "15") [ + # Fixes for SWIG 4 + (fetchpatch2 { + url = "https://github.com/llvm/llvm-project/commit/81fc5f7909a4ef5a8d4b5da2a10f77f7cb01ba63.patch?full_index=1"; + stripLen = 1; + hash = "sha256-Znw+C0uEw7lGETQLKPBZV/Ymo2UigZS+Hv/j1mUo7p0="; + }) + (fetchpatch2 { + url = "https://github.com/llvm/llvm-project/commit/f0a25fe0b746f56295d5c02116ba28d2f965c175.patch?full_index=1"; + stripLen = 1; + hash = "sha256-QzVeZzmc99xIMiO7n//b+RNAvmxghISKQD93U2zOgFI="; + }) + ] + ++ lib.optionals (lib.versionOlder metadata.release_version "16") [ + # Fixes for SWIG 4 + (fetchpatch2 { + url = "https://github.com/llvm/llvm-project/commit/ba35c27ec9aa9807f5b4be2a0c33ca9b045accc7.patch?full_index=1"; + stripLen = 1; + hash = "sha256-LXl+WbpmWZww5xMDrle3BM2Tw56v8k9LO1f1Z1/wDTs="; + }) + (fetchpatch2 { + url = "https://github.com/llvm/llvm-project/commit/9ec115978ea2bdfc60800cd3c21264341cdc8b0a.patch?full_index=1"; + stripLen = 1; + hash = "sha256-u0zSejEjfrH3ZoMFm1j+NVv2t5AP9cE5yhsrdTS1dG4="; + }) + # FIXME: do we need this after 15? (metadata.getVersionFile "lldb/procfs.patch") + ] ++ lib.optional (lib.versionOlder metadata.release_version "17") resourceDirPatch ++ lib.optional (lib.versionOlder metadata.release_version "14") ( metadata.getVersionFile "lldb/gnu-install-dirs.patch" diff --git a/pkgs/development/compilers/llvm/common/lldb.nix b/pkgs/development/compilers/llvm/common/lldb.nix index f609ae917dbf..65974e757c4b 100644 --- a/pkgs/development/compilers/llvm/common/lldb.nix +++ b/pkgs/development/compilers/llvm/common/lldb.nix @@ -5,8 +5,7 @@ , cmake , zlib , ncurses -, swig3 -, swig4 +, swig , which , libedit , libxml2 @@ -42,7 +41,6 @@ let name = if lib.versionAtLeast release_version "18" then "lldb-dap" else "lldb-vscode"; version = if lib.versionAtLeast release_version "18" then "0.2.0" else "0.1.0"; }; - swig = if lib.versionAtLeast release_version "18" then swig4 else swig3; in stdenv.mkDerivation (rec { From e026413db95aa3c26c5886f3ec72fa2592426a82 Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Wed, 11 Sep 2024 10:58:20 +0200 Subject: [PATCH 206/232] flitter: unstable-2020-10-05 -> 1.0.0 --- pkgs/tools/misc/flitter/default.nix | 48 ++++++++------------------- pkgs/tools/misc/flitter/flitter.patch | 46 ------------------------- 2 files changed, 13 insertions(+), 81 deletions(-) delete mode 100644 pkgs/tools/misc/flitter/flitter.patch diff --git a/pkgs/tools/misc/flitter/default.nix b/pkgs/tools/misc/flitter/default.nix index 6b092b35be8c..9ef8b525584f 100644 --- a/pkgs/tools/misc/flitter/default.nix +++ b/pkgs/tools/misc/flitter/default.nix @@ -1,55 +1,32 @@ { lib -, ocamlPackages +, stdenv +, rustPlatform , fetchFromGitHub -, makeWrapper -, python3 +, pkg-config +, xorg }: -ocamlPackages.buildDunePackage { +rustPlatform.buildRustPackage rec { pname = "flitter"; - # request to tag releases: https://github.com/alexozer/flitter/issues/34 - version = "unstable-2020-10-05"; - - duneVersion = "3"; + version = "1.0.0"; src = fetchFromGitHub { owner = "alexozer"; repo = "flitter"; - rev = "666c5483bc93efa6d01e0b7a927461269f8e14de"; - sha256 = "1k3m7bjq5yrrq7vhnbdykni65dsqhq6knnv9wvwq3svb3n07z4w3"; + rev = "v${version}"; + sha256 = "sha256-XyHUUuENnGmIUlfYl7+NuSP115+sZfjXtd4bEIZQpf8="; }; - # compatibility with core >= 0.15 - patches = [ ./flitter.patch ]; - - # https://github.com/alexozer/flitter/issues/28 - postPatch = '' - for f in src/*.ml; do - substituteInPlace "$f" \ - --replace 'Unix.gettimeofday' 'Caml_unix.gettimeofday' \ - --replace 'Core_kernel' 'Core' \ - --replace 'sexp_option' 'option[@sexp.option]' \ - --replace 'sexp_list' 'list[@sexp.list]' - done - ''; + cargoHash = "sha256-ydYBHC/LxdYGA1+eYLTSZdkOhAgkw99J9JVT5micgdg="; nativeBuildInputs = [ - makeWrapper + pkg-config ]; - buildInputs = with ocamlPackages; [ - core_unix - lwt_ppx - sexp_pretty - color - notty + buildInputs = [ + xorg.libX11 ]; - postInstall = '' - wrapProgram $out/bin/flitter \ - --prefix PATH : "${python3.withPackages (pp: [ pp.pynput ])}/bin" - ''; - meta = with lib; { description = "Livesplit-inspired speedrunning split timer for Linux/macOS terminal"; license = licenses.mit; @@ -57,5 +34,6 @@ ocamlPackages.buildDunePackage { homepage = "https://github.com/alexozer/flitter"; platforms = platforms.unix; mainProgram = "flitter"; + broken = stdenv.isDarwin; }; } diff --git a/pkgs/tools/misc/flitter/flitter.patch b/pkgs/tools/misc/flitter/flitter.patch deleted file mode 100644 index 04cd40dc74e5..000000000000 --- a/pkgs/tools/misc/flitter/flitter.patch +++ /dev/null @@ -1,46 +0,0 @@ -diff --git a/src/big.ml b/src/big.ml -index 7cd327f..f84bc10 100644 ---- a/src/big.ml -+++ b/src/big.ml -@@ -11,7 +11,7 @@ let big_font_map = - ] in - - let uchar_of_char = -- let open Caml.Uchar in -+ let open Stdlib.Uchar in - function - | '[' -> of_int 0x258C - | ']' -> of_int 0x2590 -@@ -48,4 +48,4 @@ let image_of_string attr str = - List.map (String.to_list str) ~f:(fun ch -> - List.map (Map.find_exn big_font_map ch) ~f:(I.uchars attr) - |> I.vcat -- ) |> I.hcat -\ No newline at end of file -+ ) |> I.hcat -diff --git a/src/display.ml b/src/display.ml -index bd6f7e4..44d7f6d 100644 ---- a/src/display.ml -+++ b/src/display.ml -@@ -41,7 +41,7 @@ let splits_header timer width = - let joined = I.hcat cell_padded in - let padded = left_pad width joined in - -- let br = I.uchar Colors.label (Caml.Uchar.of_int 0x2500) width 1 in -+ let br = I.uchar Colors.label (Stdlib.Uchar.of_int 0x2500) width 1 in - I.(padded <-> br) - - type time_status = Ahead_gain | Ahead_loss | Behind_gain | Behind_loss | Gold -diff --git a/src/dune b/src/dune -index a50b09a..2b00ee2 100644 ---- a/src/dune -+++ b/src/dune -@@ -1,7 +1,7 @@ - (library - (name flitter) - (wrapped false) -- (libraries core lwt.unix notty notty.unix re color sexp_pretty) -+ (libraries core core_kernel.caml_unix lwt.unix notty notty.unix re color sexp_pretty) - (preprocess (pps lwt_ppx ppx_sexp_conv)) - ) - From ba63d913ba0bdd5512c3c7ad735f59e624019aca Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 16:35:12 +0300 Subject: [PATCH 207/232] kdePackages: Gear 24.08.0 -> 24.08.1 --- pkgs/kde/gear/akonadi-search/default.nix | 2 +- pkgs/kde/gear/angelfish/default.nix | 2 +- pkgs/kde/gear/kdepim-addons/default.nix | 2 +- pkgs/kde/generated/sources/gear.json | 1500 +++++++++++----------- 4 files changed, 753 insertions(+), 753 deletions(-) diff --git a/pkgs/kde/gear/akonadi-search/default.nix b/pkgs/kde/gear/akonadi-search/default.nix index fcc4b9d2c807..4d7ec7aafc20 100644 --- a/pkgs/kde/gear/akonadi-search/default.nix +++ b/pkgs/kde/gear/akonadi-search/default.nix @@ -7,7 +7,7 @@ cargo, rustc, # provided as callPackage input to enable easier overrides through overlays - cargoHash ? "sha256-XZ40qGBPRz7xyem3EP4+hzTliryxxDyGtvfjbNNVDQo=", + cargoHash ? "sha256-myS9icWi2ZeQCCHZRP3xEMKToAa+afc8C+s3T8y19RE=", }: mkKdeDerivation rec { pname = "akonadi-search"; diff --git a/pkgs/kde/gear/angelfish/default.nix b/pkgs/kde/gear/angelfish/default.nix index 74a05ba11455..b9883c7c2a1e 100644 --- a/pkgs/kde/gear/angelfish/default.nix +++ b/pkgs/kde/gear/angelfish/default.nix @@ -8,7 +8,7 @@ cargo, rustc, # provided as callPackage input to enable easier overrides through overlays - cargoHash ? "sha256-y7iJGN3ATK3IT8ko64puGlFXBM9OZw9u8JenrOBDuFA=", + cargoHash ? "sha256-xZkFVINKcJlJizHpBFLsMheQ45GsgWafzlDmxUydf5k=", qcoro, }: mkKdeDerivation rec { diff --git a/pkgs/kde/gear/kdepim-addons/default.nix b/pkgs/kde/gear/kdepim-addons/default.nix index d8cde9a4f896..4c59f3f5512a 100644 --- a/pkgs/kde/gear/kdepim-addons/default.nix +++ b/pkgs/kde/gear/kdepim-addons/default.nix @@ -8,7 +8,7 @@ corrosion, alpaka, # provided as callPackage input to enable easier overrides through overlays - cargoHash ? "sha256-ZKLoX6sMKc6o7cnmxPYXL0d+Lmh8+n6Ko6VR/CzfZGs=", + cargoHash ? "sha256-hIiJEuUk950g29Qkka4oS7EsZDbPvm8Q3CrqxQG40bU=", }: mkKdeDerivation rec { pname = "kdepim-addons"; diff --git a/pkgs/kde/generated/sources/gear.json b/pkgs/kde/generated/sources/gear.json index 1dd796ca9743..ccbb92449090 100644 --- a/pkgs/kde/generated/sources/gear.json +++ b/pkgs/kde/generated/sources/gear.json @@ -1,1252 +1,1252 @@ { "accessibility-inspector": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/accessibility-inspector-24.08.0.tar.xz", - "hash": "sha256-wHUmoPdpH6tNEGj9rmtKcTKQjgshGuoRAvoLXmX8mFY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/accessibility-inspector-24.08.1.tar.xz", + "hash": "sha256-c/xkVA4gvgDQxi4OHyDDE58UueXZ/cMdTyaKw1Wzl24=" }, "akonadi": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/akonadi-24.08.0.tar.xz", - "hash": "sha256-4UD2ggqllupIzmIzWL31hJQtbioIUwubQ95oCAFWiUU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/akonadi-24.08.1.tar.xz", + "hash": "sha256-1abzT2+XLT4cH2BY5AwjhswEsClINzxOEpkqA+PZlQE=" }, "akonadi-calendar": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/akonadi-calendar-24.08.0.tar.xz", - "hash": "sha256-yzVHlaaBdwyGVUT1sLJ4YEJnSzqfRCoNr/BOyRwiLZc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/akonadi-calendar-24.08.1.tar.xz", + "hash": "sha256-4GyJgKbKy//WjHpZrBgHc9xcG9wyKp697CmKk8PAsvk=" }, "akonadi-calendar-tools": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/akonadi-calendar-tools-24.08.0.tar.xz", - "hash": "sha256-RIY2J7y0TAZ/6tupNdpbNMI/G2bXUM6Y07GAAPHCM/k=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/akonadi-calendar-tools-24.08.1.tar.xz", + "hash": "sha256-mhZfaW/1qEF0uVpAs98naZWloLu8ioY7eclfiPLFmHk=" }, "akonadiconsole": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/akonadiconsole-24.08.0.tar.xz", - "hash": "sha256-gFmt6sz1jC/nGC8Pk74cpxkIQSZwyWgm0NkwLWRlu90=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/akonadiconsole-24.08.1.tar.xz", + "hash": "sha256-oF06JK+cHDZrw2ULku6UDAoheRxOojS4EAqYuIjMa6s=" }, "akonadi-contacts": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/akonadi-contacts-24.08.0.tar.xz", - "hash": "sha256-Kw+FT4KQCqIC3F8WrAHv/WhyF7LRNf9RoIeN4HqvtFE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/akonadi-contacts-24.08.1.tar.xz", + "hash": "sha256-8i9VJMpOMOi6Mrk6BHLlQu40+W+yzOLVEjCDJJQ8oXY=" }, "akonadi-import-wizard": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/akonadi-import-wizard-24.08.0.tar.xz", - "hash": "sha256-Bv6u8HFjWi5YMzBwip8lWvzp1JGJl5RqfUwgqxOBWao=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/akonadi-import-wizard-24.08.1.tar.xz", + "hash": "sha256-EONChsiO/aBvfjC3IIr+nssu5L2YymdaWdcJwAkPVIE=" }, "akonadi-mime": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/akonadi-mime-24.08.0.tar.xz", - "hash": "sha256-6wgpRm9pTa8MTOBHBzwpn9PiS+ckR730B1YYIrzxAiw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/akonadi-mime-24.08.1.tar.xz", + "hash": "sha256-hMvuG4HWxQ//Rl0U62DaUTvv2fEB8V/dQwazmrqnj9Y=" }, "akonadi-notes": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/akonadi-notes-24.08.0.tar.xz", - "hash": "sha256-EyeUSPsRhqNVP3ASkJuUP0z0dspbEeTtx+cL32lAt40=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/akonadi-notes-24.08.1.tar.xz", + "hash": "sha256-GCDN1GVQlNaKWP7fFrM+ld5D23GxrFZq2DmP3ladmBg=" }, "akonadi-search": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/akonadi-search-24.08.0.tar.xz", - "hash": "sha256-iDwA8eHAeChgbQ/yDYWBnSSxAj6cv22f7vLKseKQnrc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/akonadi-search-24.08.1.tar.xz", + "hash": "sha256-mf427ewIfrsLLJpyOsV/B/chTRa626m57mI/5kz9f8I=" }, "akregator": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/akregator-24.08.0.tar.xz", - "hash": "sha256-twNbS2RP2n6VQX7VcG5EpzMadyi9UG2ZZQuhv7IwctA=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/akregator-24.08.1.tar.xz", + "hash": "sha256-WfEfezNuj5pBMcz64iLp8b9JLve8yCNKmuDSwCxxEUA=" }, "alligator": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/alligator-24.08.0.tar.xz", - "hash": "sha256-gVKmuI/+7KNlwDjgYu145lqX3blquZiJddeE5Z3ONQ0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/alligator-24.08.1.tar.xz", + "hash": "sha256-+yeAQzQEYgTa5TU4Dt3sKQSwD7txjtWKJyeMzO4CSCU=" }, "analitza": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/analitza-24.08.0.tar.xz", - "hash": "sha256-Pu3MwkoZOOnT29MiUiX+7LKukE55mrdQgIN1P1y+wsw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/analitza-24.08.1.tar.xz", + "hash": "sha256-L0lO4m8OIbbeMtESh2jwe8/1ANKs7mVyq8IwztF9pLw=" }, "angelfish": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/angelfish-24.08.0.tar.xz", - "hash": "sha256-jOUdW43AHcB1TOFTMeiKsbNElCoZxQgqLFSoCcBo7nQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/angelfish-24.08.1.tar.xz", + "hash": "sha256-vVKyD9e2EK3FSpMPJyXd5ktIo5ly1gS1oUbOeoczUqM=" }, "arianna": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/arianna-24.08.0.tar.xz", - "hash": "sha256-DTrqfWrNSg7AdM16P4jGZQ1Y4CMGvjD6Q/CsO+7fLKs=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/arianna-24.08.1.tar.xz", + "hash": "sha256-cn1NMHtJQrEWveG2NeLLqh9vz96TM74Fn3D1lWAs5F4=" }, "ark": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ark-24.08.0.tar.xz", - "hash": "sha256-wYjDD3TIeRi5oQJHbhlFOYF23x7PnAfkt14RgyGLNK0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ark-24.08.1.tar.xz", + "hash": "sha256-CamKNE5t6/k5/yw5c9Z8d5TBXyL6/3uLuvuj0eOqXY0=" }, "artikulate": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/artikulate-24.08.0.tar.xz", - "hash": "sha256-daugK75a9OFdXFVIpW1HlnEbUZhBDAswNSMYo6SCuJE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/artikulate-24.08.1.tar.xz", + "hash": "sha256-99zL62pvlA6IlP/nLQ/fG3pFbz33Nhiw/nsxg5sYTkM=" }, "audex": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/audex-24.08.0.tar.xz", - "hash": "sha256-aTpBCH6t8ttPaZL3hsui2y4eOmXagx6g3Hi+hzlzICM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/audex-24.08.1.tar.xz", + "hash": "sha256-42AqObpwROMl+zV9mb0mADsJYy8tBeUUhLnsS6atHJY=" }, "audiocd-kio": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/audiocd-kio-24.08.0.tar.xz", - "hash": "sha256-5/LZs0l5ypXAHEylFrT4jmK2wbuRQ2/bGqH8DU8rLks=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/audiocd-kio-24.08.1.tar.xz", + "hash": "sha256-irBJyI1vHXCpj6zQINdYv6YwexgDq3zFZ51uTJykjbE=" }, "audiotube": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/audiotube-24.08.0.tar.xz", - "hash": "sha256-Bc1VI7o7MGfAXzGnY8gIH8ybRBsLEFTteJcENIvilwk=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/audiotube-24.08.1.tar.xz", + "hash": "sha256-+jhMt2q0k67wWv0togsM0jMkv6jMMxJ896cuovQfVUU=" }, "baloo-widgets": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/baloo-widgets-24.08.0.tar.xz", - "hash": "sha256-oEfZEWBavn29HHR0Q75BO5n5VjOyPoDb1bcCKVV3Mys=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/baloo-widgets-24.08.1.tar.xz", + "hash": "sha256-l5/oO2Kn9HtnN35SiLUdgDwGIpVvUFvtLbsJGaxKeWU=" }, "blinken": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/blinken-24.08.0.tar.xz", - "hash": "sha256-o9VY+esSjIAM4UdEV/FNx3A+tPN86rJpsBqjsaXbuDs=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/blinken-24.08.1.tar.xz", + "hash": "sha256-JxREVor1VacbWFVY4G3otGXqZ4pXcwgWdXQHxg/kNLg=" }, "bomber": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/bomber-24.08.0.tar.xz", - "hash": "sha256-yJdnzh0KzRqfK7AhXTcjxnPT9FANC4Xfr80j4N7ait8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/bomber-24.08.1.tar.xz", + "hash": "sha256-TgAyn/j9fr6v4YatxbT8tuX4jdc76Xm+i23Pdvz5HXg=" }, "bovo": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/bovo-24.08.0.tar.xz", - "hash": "sha256-BqC3hLKdP2TBrVivjNIQ3ilnC+p0uzVzN1yPBTugp6E=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/bovo-24.08.1.tar.xz", + "hash": "sha256-tboqMf7JIYqHGHX3UQpkBeqpdM1UIFPJEGowiwusvy4=" }, "calendarsupport": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/calendarsupport-24.08.0.tar.xz", - "hash": "sha256-SjBWE9JXDyeaKxC74N4uc3BSH87kqEd34JxeoDnnww0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/calendarsupport-24.08.1.tar.xz", + "hash": "sha256-jU6QQdvQUSV19vA9MPdDGmFNvS9EJa0HBQvWq/fb84o=" }, "calindori": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/calindori-24.08.0.tar.xz", - "hash": "sha256-RTuYVSlnPwWEc5EJk2FNJGfq7Vw6oesG/KCSj+N+yfg=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/calindori-24.08.1.tar.xz", + "hash": "sha256-KEJTQlK4OFk7edpGXrQaoPlv4HPANuDr3Df6U42eXOM=" }, "cantor": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/cantor-24.08.0.tar.xz", - "hash": "sha256-UpKXfRqW4w1iARUyqmQtMHG3UfPJZWNxQB4O6NnnCS8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/cantor-24.08.1.tar.xz", + "hash": "sha256-GOSuBBLFDgbNX2ZQcqqaMigeLoMV7tjNKs624jNM8Xo=" }, "cervisia": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/cervisia-24.08.0.tar.xz", - "hash": "sha256-qmPG+HRzGjOw+ugr3Iuv2ymCgXgY7Qa5bMso9rbR1Wc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/cervisia-24.08.1.tar.xz", + "hash": "sha256-0oTAd48sWfoUCwIaHayCzxe0PXcl+1vgW1oV4e472M8=" }, "colord-kde": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/colord-kde-24.08.0.tar.xz", - "hash": "sha256-9VW0QPIu9riqxxcDCxGhx52zgIt9HUZtyvTYOfOYJKs=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/colord-kde-24.08.1.tar.xz", + "hash": "sha256-am1yTQpiemaZjHVTzNSSf7e1TnVZ3Iq655QCtRNiDyI=" }, "dolphin": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/dolphin-24.08.0.tar.xz", - "hash": "sha256-Sp1S3NZRPSGTwMNJRLJws5kVDx2k/zfaBqD4r4f22Nc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/dolphin-24.08.1.tar.xz", + "hash": "sha256-Hbqa+2YXCAwbSTeojsAS+6dxhDJ6zIVz2eNR/u1Tdmg=" }, "dolphin-plugins": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/dolphin-plugins-24.08.0.tar.xz", - "hash": "sha256-Ppwn9mfNswt7MmRVfhqj4/BGZGFVhdAkeXwspOdOAt8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/dolphin-plugins-24.08.1.tar.xz", + "hash": "sha256-yIZimA9qW9BCc1wH1KqilHRSTfUad5GmwDd89ym/CzU=" }, "dragon": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/dragon-24.08.0.tar.xz", - "hash": "sha256-4+PLjZeemeTI6CMmOsdlLnhSVU/HoXzDG8ZeoG8LpKA=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/dragon-24.08.1.tar.xz", + "hash": "sha256-wRkXTxc8jfnoU/WikxHBqHO0uCSNBQmJuw7YCDI0/oo=" }, "elisa": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/elisa-24.08.0.tar.xz", - "hash": "sha256-fxzrmaSuV6G2Cf7k9JA7AkPzzISoVOHUHNIipCCF7oE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/elisa-24.08.1.tar.xz", + "hash": "sha256-zt9tyeHYERPmWZBB0JtS1N3wbJQWe9zcybjLHGbAoko=" }, "eventviews": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/eventviews-24.08.0.tar.xz", - "hash": "sha256-8tbz1JCqp5GiuU7Sp1ZyXnVwK5/HsCpmBLO5uV2FKGI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/eventviews-24.08.1.tar.xz", + "hash": "sha256-IUb+uHifA8DnvWVW/dHfX0qjzloCK+65omUhX6HO270=" }, "falkon": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/falkon-24.08.0.tar.xz", - "hash": "sha256-jSO00NWK+vtofDi9jiqbjdWLVpxmNc58Eov21qdcpJ0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/falkon-24.08.1.tar.xz", + "hash": "sha256-q3y3v8mevszeKqXiUqlp+HE4UAfCiaqxLh3sNoJrkxU=" }, "ffmpegthumbs": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ffmpegthumbs-24.08.0.tar.xz", - "hash": "sha256-JcZcUnK7vtzavGlhhGgHFD1DZJpOPbZiwwvlJLUUh9M=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ffmpegthumbs-24.08.1.tar.xz", + "hash": "sha256-4sagvdIW09GMObvyxyRifCB1Qj4+4WSpBm2vYP3EttQ=" }, "filelight": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/filelight-24.08.0.tar.xz", - "hash": "sha256-cFmbzAZohw6C3iAv9bMd+2U22Bmdcxu5e+CYeopWYok=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/filelight-24.08.1.tar.xz", + "hash": "sha256-i9XzR36JKKT0XaN6Pw7i1Gn8/uIPe1GXv6z/R3K7UKI=" }, "francis": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/francis-24.08.0.tar.xz", - "hash": "sha256-1maoSzfg5fhykFGGtPpuKAi5x2y6qF8hP5mboD4f2K8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/francis-24.08.1.tar.xz", + "hash": "sha256-9kkssY5dsGxmBNnTO44GBG+2ZU8JBrKcGEMx06LsNU0=" }, "ghostwriter": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ghostwriter-24.08.0.tar.xz", - "hash": "sha256-VKFqAvETmKli/RhDJ9I4wxyGypaK5/ENdQKjAcwXgrE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ghostwriter-24.08.1.tar.xz", + "hash": "sha256-0MGFISTFK04+rXoj0zomwdKdXppFGI66MTwaC8UJ6pI=" }, "granatier": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/granatier-24.08.0.tar.xz", - "hash": "sha256-DYHEXIxEdWoujT4V8gjJWQpt1+jCgIt8d9QGEHsQ41M=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/granatier-24.08.1.tar.xz", + "hash": "sha256-nCAHu6MrAZ3ZAtCv2vQhN4lXfgR/mEm9sXqtmqBvo4k=" }, "grantlee-editor": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/grantlee-editor-24.08.0.tar.xz", - "hash": "sha256-OFN/abHSQ0fvgUPlxym6GDw6Dq9V1jp5KaT0MgTcjv4=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/grantlee-editor-24.08.1.tar.xz", + "hash": "sha256-qf/5M/ZCMh/0sn8gxtB0Zfvp4tNTnHbtM/a4t4FmUxg=" }, "grantleetheme": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/grantleetheme-24.08.0.tar.xz", - "hash": "sha256-YjJmXo2igIS+GQVClO0hD4BAClqlTGxxDf3m1VjOe7E=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/grantleetheme-24.08.1.tar.xz", + "hash": "sha256-opm5Mdt1PQYLX0Sj/HyJg9u8g8MxWTUZx+/pa5Aq8XI=" }, "gwenview": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/gwenview-24.08.0.tar.xz", - "hash": "sha256-GNEO2090khBaKMsd4RQzG3zr8SnOYmuHeeH9dRmedHY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/gwenview-24.08.1.tar.xz", + "hash": "sha256-Q4DF1CF0e1HmDMfYU64IheR1W5qN9OjKNTRmzrYQbU4=" }, "incidenceeditor": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/incidenceeditor-24.08.0.tar.xz", - "hash": "sha256-p/csMc+xSA3e11r366g2uWdnXLO0MEJA8mi1iIzzSZc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/incidenceeditor-24.08.1.tar.xz", + "hash": "sha256-z92Ob/F7J16pTFojSzLilwGkBUKgRnj0pyUJhaKA0k8=" }, "isoimagewriter": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/isoimagewriter-24.08.0.tar.xz", - "hash": "sha256-PfdDbVphmTNkWm2CtJdt6pQRSzsVT1eoq4zi2MTaSJw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/isoimagewriter-24.08.1.tar.xz", + "hash": "sha256-9lApzJlRVZO2yEFdp02Aj9yU3spyOU9jIVUgDkDPW0A=" }, "itinerary": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/itinerary-24.08.0.tar.xz", - "hash": "sha256-Fmhk+wePToNzmzZyqCTvulC4fgjjZvfE7flFVfVNBDU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/itinerary-24.08.1.tar.xz", + "hash": "sha256-asCgnKBudz6FgljPyu0zOzMFijnBQRPFP2Emo+JikL4=" }, "juk": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/juk-24.08.0.tar.xz", - "hash": "sha256-Z5twwl9AFOzc7ZVaQa0O+TKR4ZBdgqFfLMJsDXrPJoQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/juk-24.08.1.tar.xz", + "hash": "sha256-11qpNpcAABo4O2PjJS+nsbsHpfkhx/Ecbk1zy75Qf5g=" }, "k3b": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/k3b-24.08.0.tar.xz", - "hash": "sha256-YQYjZIQprodLu6pfZVm73weXKeMfBYVSfZ5kjLuh4K0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/k3b-24.08.1.tar.xz", + "hash": "sha256-U5iwgVxi7M11YXOdxFVOe/sVSHk8SoOnkVWoLyP1WCM=" }, "kaccounts-integration": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kaccounts-integration-24.08.0.tar.xz", - "hash": "sha256-+yHSQ1sqqplg/tlmCpzVa3cCCAxOmfmiB+bBuo1Ss/Q=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kaccounts-integration-24.08.1.tar.xz", + "hash": "sha256-PJM8nEkbMpSrQrhAVLKyRwMq/WuTSA3xV/m9SUXau2Q=" }, "kaccounts-providers": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kaccounts-providers-24.08.0.tar.xz", - "hash": "sha256-7jZnTG6PD+H0glj/qJL3xtSUXOEzLp37iZQ8Knpx2VI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kaccounts-providers-24.08.1.tar.xz", + "hash": "sha256-HNHN5M/2a9WUqie0+UG2HcTW/9e1Ol8/oE1Dup6JZ9w=" }, "kaddressbook": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kaddressbook-24.08.0.tar.xz", - "hash": "sha256-flGfcrYtgbWI3FHTyEF+smQxNHzVUv9Ezf9xHecj9Vk=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kaddressbook-24.08.1.tar.xz", + "hash": "sha256-U1I23jS8hihW7lKrer2NRuFj+WyVbvXWMrQ4wrWJf60=" }, "kajongg": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kajongg-24.08.0.tar.xz", - "hash": "sha256-Qd2RR9fWeP82OltD1i/tZva4gTBdcgC+JfVf18J2nvY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kajongg-24.08.1.tar.xz", + "hash": "sha256-pHqsB16aKVphfELxShAyeaUMZMJGcgx9m/W+HMk1bmg=" }, "kalarm": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kalarm-24.08.0.tar.xz", - "hash": "sha256-LoQrZtyepZhq3vmwSdcLajrpDj82AWILXnct6K64KQ0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kalarm-24.08.1.tar.xz", + "hash": "sha256-bUacnOaicHR1O34LycYfWO1IQzMrCf3YF/1NhIucJ0I=" }, "kalgebra": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kalgebra-24.08.0.tar.xz", - "hash": "sha256-AxHLFTWb2WNwdi3jHDxM1oSfsVUXKzmoypW+kAtF01M=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kalgebra-24.08.1.tar.xz", + "hash": "sha256-oaI6wTw99k3ScY89qJo1WMCXr26/ycHi+6oZxs1pUic=" }, "kalk": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kalk-24.08.0.tar.xz", - "hash": "sha256-7JeEWZIgGGspSbfkoa7a7r+0Xg65s+0y3YNjQ5kL24I=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kalk-24.08.1.tar.xz", + "hash": "sha256-BRU+AM/eGJdVRgPBEL6HTpzX4KbqndV9UWm2TtAZMUE=" }, "kalm": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kalm-24.08.0.tar.xz", - "hash": "sha256-x1mB5cAVc7OhzyIItiZ4zHl+mxkhamktI1284J+HHDY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kalm-24.08.1.tar.xz", + "hash": "sha256-VMK4O1/mFv4hsyeny5B0R2AJ3lwFgDZ21ZLB+SVvEKk=" }, "kalzium": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kalzium-24.08.0.tar.xz", - "hash": "sha256-Xkwql1hSLW7SYSKnf55Fqus+glFlL3BSHWOk5ekSbDA=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kalzium-24.08.1.tar.xz", + "hash": "sha256-/ybAT+pJCwl2g+SFTvct2moryS9ObAKp/7yegHd2Dvw=" }, "kamera": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kamera-24.08.0.tar.xz", - "hash": "sha256-2BnrTYHOUdl1s1ckI15CbgyyuWqcWLeFTI8Mhrum91A=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kamera-24.08.1.tar.xz", + "hash": "sha256-Ql8s6RWcAkqS+zWlOvLPxK0+Gz4a5h4gnBfCMJL7WR8=" }, "kamoso": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kamoso-24.08.0.tar.xz", - "hash": "sha256-FL/WlMMeRgzs0jXVNXWsmMGWvefP3iJex5SFmDL9PYM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kamoso-24.08.1.tar.xz", + "hash": "sha256-MwLqpX1YLXWcptZ6DN3GTDsAS2UrzQLhk5iO9jFgq74=" }, "kanagram": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kanagram-24.08.0.tar.xz", - "hash": "sha256-44TpMTUd+a1vAy134AWjlUp4uFTNncLi0vXDduXYEl0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kanagram-24.08.1.tar.xz", + "hash": "sha256-aS4BtIJXgcgSy9vwdRR0s5cEuqVkXhlXagXm5wMJGIM=" }, "kapman": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kapman-24.08.0.tar.xz", - "hash": "sha256-Rkqxg82TQY2682vwJ9mR68eKgryvMf0bZl7phsG87Sg=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kapman-24.08.1.tar.xz", + "hash": "sha256-AmYN6yBbSazmjPUwcHgLF91d1Se5s2OWLqDCZ6lHuxk=" }, "kapptemplate": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kapptemplate-24.08.0.tar.xz", - "hash": "sha256-m+Cr7W6izseuS109xVCbqjrKLPk6KcZghXXB4XAAyCM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kapptemplate-24.08.1.tar.xz", + "hash": "sha256-5x+eNNmIaONUW+eSz2prlFZsmhjJ2VKCMSp5E4sH+r4=" }, "kasts": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kasts-24.08.0.tar.xz", - "hash": "sha256-VsXvgXH8gS1pIGASXJ7paOT0P7Dw05FedoCF++JrBsg=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kasts-24.08.1.tar.xz", + "hash": "sha256-jyeYFRT0GrQ2q21YJWPGSYfNfYHuriXZpeewjWOPW1w=" }, "kate": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kate-24.08.0.tar.xz", - "hash": "sha256-hbICFePM/bseYVEIpwZz8eZEPOyhlIKQ7uOEGgYRc+k=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kate-24.08.1.tar.xz", + "hash": "sha256-wQUYskOG8dr19kcjwls/TtfjRGpwkSq+W2yWXv2bLcY=" }, "katomic": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/katomic-24.08.0.tar.xz", - "hash": "sha256-hCs1mHINM4K4LphtnhWKSkk+Uduv+d0C32Cn9fhGupc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/katomic-24.08.1.tar.xz", + "hash": "sha256-odgFbXiCOw3vg+9A/SowiXsql/0xmr8zcBT42KEJqqI=" }, "kbackup": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kbackup-24.08.0.tar.xz", - "hash": "sha256-3NkbYY+0Pl4NQpeGhvYbSJtCRHbVp4HxSe34CRmByIY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kbackup-24.08.1.tar.xz", + "hash": "sha256-GSflfY9tJ65sM/RmA4aMemAV5TfCayPtPP2XaAhPK7g=" }, "kblackbox": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kblackbox-24.08.0.tar.xz", - "hash": "sha256-v0KYakBsZjaa7N7L9TgZr5MeLBBbafmWvpuiXp5xqZU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kblackbox-24.08.1.tar.xz", + "hash": "sha256-Oe9PSgJRe3LkPPZnCfiZo8CiFq8j8y0ZpTsupjGzThA=" }, "kblocks": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kblocks-24.08.0.tar.xz", - "hash": "sha256-pmlMQ12Yi31QKeM9Jo6vskND7saYiEChCSbAXFXyjK0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kblocks-24.08.1.tar.xz", + "hash": "sha256-CXEUA2EcKIqgImChG8nUNDIiXFrkwX1bRwH7X98Eu9o=" }, "kbounce": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kbounce-24.08.0.tar.xz", - "hash": "sha256-vuipN4rVhIi5QVRsFk+xTQic6RFJZltjjzoBVFzq/+Q=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kbounce-24.08.1.tar.xz", + "hash": "sha256-DPMpvhdXzOkZsrLYiHECSxmqQuWBhadS0JH4lO/noP4=" }, "kbreakout": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kbreakout-24.08.0.tar.xz", - "hash": "sha256-4R3r0q0SlihSye3jmYx9m+ZurJBldrrnuUV5lT6mk/U=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kbreakout-24.08.1.tar.xz", + "hash": "sha256-5Si9OKFfBlZ8g6XL4YVXrPfyGcBCvOCfQ3FeEgfhgyM=" }, "kbruch": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kbruch-24.08.0.tar.xz", - "hash": "sha256-qFfk09eHEHvg5tNxzDCGLkzyX6Nmobz4hzdpgj34my8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kbruch-24.08.1.tar.xz", + "hash": "sha256-W/n8XRqgmFJSw7TdPikGqh41RoTl3mAw4zqfTEjqzEw=" }, "kcachegrind": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kcachegrind-24.08.0.tar.xz", - "hash": "sha256-M3jufmciFyBEF2yhwPB7hQuxzs6aFWSsSOy089v6cXA=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kcachegrind-24.08.1.tar.xz", + "hash": "sha256-BPJMq1/l3IinmYSY3ntstl537xKrHrvjS8oAs7ISuyE=" }, "kcalc": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kcalc-24.08.0.tar.xz", - "hash": "sha256-7K+LK6U2n0qBCGdiUUqeaTWjQDz5gqdIL70FJbz/LTU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kcalc-24.08.1.tar.xz", + "hash": "sha256-huu5s2tfTWIJBIhCBphc7MD/0lNmbycxPse66ZsQqW4=" }, "kcalutils": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kcalutils-24.08.0.tar.xz", - "hash": "sha256-2jFk1tLOxETObXPcwhDghwsIGrgy2yeBaWb7HLMrCFY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kcalutils-24.08.1.tar.xz", + "hash": "sha256-pRrD1dx1xuWlTtrwZ+DUvfWOeucRelCIpPkocng/sJk=" }, "kcharselect": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kcharselect-24.08.0.tar.xz", - "hash": "sha256-bdbujxGwdkhalBcyDA00lRiWtY0QfKIVG2LbTBVFPF4=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kcharselect-24.08.1.tar.xz", + "hash": "sha256-ZdhYIhssUv0QY+pXkkRPdO2trb0iz6baMPTnJXFsl8g=" }, "kclock": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kclock-24.08.0.tar.xz", - "hash": "sha256-ntjb5IMjMynmYRewrkGuiBk3n4JkQjtu2CCVZye2jrk=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kclock-24.08.1.tar.xz", + "hash": "sha256-qZ1bv4ADG2wzyHi9axI9LQLLnIrJ0Gl6PmMyBtTgGYw=" }, "kcolorchooser": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kcolorchooser-24.08.0.tar.xz", - "hash": "sha256-Tuj9iemf+0eqMiuKGFidDBpcoj5OsZhRmkPlXAzQp60=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kcolorchooser-24.08.1.tar.xz", + "hash": "sha256-2EYvEtVOcAqm7ENcuK7zn8QtrUhC7m6E+27+u+QncDw=" }, "kcron": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kcron-24.08.0.tar.xz", - "hash": "sha256-UDngQRPRTLT4D5Mk4m3nIbQ2LXzfnufHNP5EFVcjjRI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kcron-24.08.1.tar.xz", + "hash": "sha256-qSy05C9ocXNLV9rs7T9o9KI37ExHwceKa1wlqv9/jCo=" }, "kdebugsettings": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdebugsettings-24.08.0.tar.xz", - "hash": "sha256-r0doqSX7EXfFE1MNCcPBDOQqEKsfVEML846rOT9Eg20=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdebugsettings-24.08.1.tar.xz", + "hash": "sha256-ibanaWiHlfgYaLyFsAAhSAdpBkvsgbIc8FwLC3qtkms=" }, "kdeconnect-kde": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdeconnect-kde-24.08.0.tar.xz", - "hash": "sha256-y9ECzzCD0sBD6HXMTvGsOjODdIT0QLLnN3vJwL0yEq4=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdeconnect-kde-24.08.1.tar.xz", + "hash": "sha256-+de1XVKujQdDKSKv2ErxnNNz3we0Xrl9OBvNLbTV0eY=" }, "kde-dev-scripts": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kde-dev-scripts-24.08.0.tar.xz", - "hash": "sha256-ygk/61k6YMoqLxa6wHHc93mzKl5C+LRIX78RyeJWk9k=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kde-dev-scripts-24.08.1.tar.xz", + "hash": "sha256-kOmjzmiB9cRlunkmDWaeZtsBvwHezfqZXD8wP+RxaHQ=" }, "kde-dev-utils": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kde-dev-utils-24.08.0.tar.xz", - "hash": "sha256-22DPG18W5juVjbaIL/hP8gQGW86wc+UtsZ9FKhTF72o=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kde-dev-utils-24.08.1.tar.xz", + "hash": "sha256-zDkPbsPxy8oBJbBy3coI859+fWsVYeuKwdHOjCx1Hak=" }, "kdeedu-data": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdeedu-data-24.08.0.tar.xz", - "hash": "sha256-zh1w45rNPDM6jmgZVzs42DqJ/NgPMpPIwxcH5gT0cEw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdeedu-data-24.08.1.tar.xz", + "hash": "sha256-8RR38NoL8kLcMJ4LxGGkP6AdlHQ6MEm9M2r1jdlZtOI=" }, "kdegraphics-mobipocket": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdegraphics-mobipocket-24.08.0.tar.xz", - "hash": "sha256-u3Lpg+/1z6TzcJ4YwseuR81CbgaPgA7k2yeqeHbwezU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdegraphics-mobipocket-24.08.1.tar.xz", + "hash": "sha256-DZQoX812kENYZwDDMrgqlylZ76Y+H3SozqIhZY/+0DI=" }, "kdegraphics-thumbnailers": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdegraphics-thumbnailers-24.08.0.tar.xz", - "hash": "sha256-DoMmhh3J2K/DeA7ytISOm7KoGU8hRLlZKOW8OZidcLI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdegraphics-thumbnailers-24.08.1.tar.xz", + "hash": "sha256-cILM8eT4+mQ74znmTLD/0axenq5hSGllw7flfr+p3XQ=" }, "kde-inotify-survey": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kde-inotify-survey-24.08.0.tar.xz", - "hash": "sha256-FQqKEdisDoSL5hBSi1Iu6jOuS42WLM4m0syF4OROr+I=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kde-inotify-survey-24.08.1.tar.xz", + "hash": "sha256-pDRnqWVvACqyspGnR/Z6U9bTFT2dLhgJvECDU26loIg=" }, "kdenetwork-filesharing": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdenetwork-filesharing-24.08.0.tar.xz", - "hash": "sha256-zoNu04Nz01lW6LX9llfIKTJVD2E8sB+0AssfCv724QY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdenetwork-filesharing-24.08.1.tar.xz", + "hash": "sha256-Db0oYRg5RQ55rr2aybfbxFuCuMHNMgbV02DVRfc/cMM=" }, "kdenlive": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdenlive-24.08.0.tar.xz", - "hash": "sha256-5DBqKqWnU1zqUK7/ST6p3otyktSZ1yBMQXgMsER1L5Y=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdenlive-24.08.1.tar.xz", + "hash": "sha256-VbQq9UUwTsJr8gtOnnnonpHWFIH7u5Ol33x06G+64UI=" }, "kdepim-addons": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdepim-addons-24.08.0.tar.xz", - "hash": "sha256-jQKVWmA7cFpsIucPmg0GaTBpPA/4ZS1IzfLyfSYfRSQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdepim-addons-24.08.1.tar.xz", + "hash": "sha256-RlftIyEsDu5T5IyHnxc25V9XFYaT+H+sUA5df5Td8t0=" }, "kdepim-runtime": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdepim-runtime-24.08.0.tar.xz", - "hash": "sha256-4gKNdItBdCbp4CgkksN+4xi1Ms1solb23PTTjnaX3Hc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdepim-runtime-24.08.1.tar.xz", + "hash": "sha256-KZHdMBhHtvdQB2nBJ8d3lVW4LwmuCFbRqevM4Zh+WSU=" }, "kdesdk-kio": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdesdk-kio-24.08.0.tar.xz", - "hash": "sha256-SOoT8tyFW3Rp8Q5UtUIZftoEHGESDc2mUQRla/0iu4U=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdesdk-kio-24.08.1.tar.xz", + "hash": "sha256-Y/9boahTKccAaUbo/zma++H2TLZmnoWN/hr4/F8RFzI=" }, "kdesdk-thumbnailers": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdesdk-thumbnailers-24.08.0.tar.xz", - "hash": "sha256-EgoH+1dVr+OpD3WTniVLImkL6bTLt5aBWTmz0poUqoY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdesdk-thumbnailers-24.08.1.tar.xz", + "hash": "sha256-ScTJaB5hQi3rDnA70zLBjRzrIvDI7xo/rUmlMgmq1Eg=" }, "kdevelop": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdevelop-24.08.0.tar.xz", - "hash": "sha256-xSAdgUuCRcpqrJF18s9QTXvvf4Xxhnnm/Kdt/Q/4WRo=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdevelop-24.08.1.tar.xz", + "hash": "sha256-urE8gll/YOcByuE91aL0BqixGL+padTE+psUeHAJ5Qg=" }, "kdev-php": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdev-php-24.08.0.tar.xz", - "hash": "sha256-OsOu6LFOcmIkVR1SSxtLaY4w1OWPUfIYfUM3emMtH80=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdev-php-24.08.1.tar.xz", + "hash": "sha256-N4Oq2zSuCSKZq0uEOWvhIXA2hl1nEsxsf5ldQcUv1jE=" }, "kdev-python": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdev-python-24.08.0.tar.xz", - "hash": "sha256-ID8iZ/nyTFfsQVSZaDiVSBdxGCMcfS2oyz8HIqCdXO4=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdev-python-24.08.1.tar.xz", + "hash": "sha256-aQvo1nRZyCg+8CLOPsesBT5V3INKEV6Rous7faISMSA=" }, "kdf": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdf-24.08.0.tar.xz", - "hash": "sha256-51Kq6FZDwuQIvodu2ky6wuj2Xzb+3AjdyIaYlbNlfTk=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdf-24.08.1.tar.xz", + "hash": "sha256-agXTh2RFk2rOPqLHy67+5r2X6F6gvnCRXH0yHPo2LRo=" }, "kdialog": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdialog-24.08.0.tar.xz", - "hash": "sha256-/nYoKZZXjxTnOwxczOybUCh0fR2WaB/aZPDPopX1CFQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdialog-24.08.1.tar.xz", + "hash": "sha256-N+gAwnAP+R1MYUMnAxaqtIolaXtlIRicQ30Z7uZUYpM=" }, "kdiamond": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kdiamond-24.08.0.tar.xz", - "hash": "sha256-xeSeUkHL1aNa0Eal+cIQM2YPmpqzDdzhWXIF54IvY7c=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kdiamond-24.08.1.tar.xz", + "hash": "sha256-JDWBGhDyl1vHLFxdPoyWrp3UGxEdRuV49zhx4aC/Ubo=" }, "keditbookmarks": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/keditbookmarks-24.08.0.tar.xz", - "hash": "sha256-rmQGM6HjhfVwm9/B7DSd5vU3sICK6nzLg3wPyLaL8V0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/keditbookmarks-24.08.1.tar.xz", + "hash": "sha256-DM5Tik2QttsXByP9n6mqMjgB0VEm4+kk1jbpe65SJJY=" }, "keysmith": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/keysmith-24.08.0.tar.xz", - "hash": "sha256-rhyQhb1Ia2v/MjXi7WGzecFtvvUxH6LEQFjKbhnx45I=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/keysmith-24.08.1.tar.xz", + "hash": "sha256-z3677BL9Yx7INiHDQePKx3kqnoWfX5kubiNklaIyMCY=" }, "kfind": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kfind-24.08.0.tar.xz", - "hash": "sha256-WN3rs3ZUWnYaZlpXOam5htLzBN0jz0c87V56h+RtWd0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kfind-24.08.1.tar.xz", + "hash": "sha256-6Hf6xQi+xojheSMwxvZW//+8vVn+FhoXSwvS1QHYA7s=" }, "kfourinline": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kfourinline-24.08.0.tar.xz", - "hash": "sha256-aF4NkJXwfwMdEs4TW07Rdb+lDEBlyQMkSvBzBvl5/Ug=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kfourinline-24.08.1.tar.xz", + "hash": "sha256-uN/mXbWUjga/RVsholNmjNLnxGSblHbC+RJ/UxzRMs4=" }, "kgeography": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kgeography-24.08.0.tar.xz", - "hash": "sha256-nvd1N4uYcs0hccyKm6ELrsXtXRHNzpeTjci0SpLvbKI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kgeography-24.08.1.tar.xz", + "hash": "sha256-iZhXtmjxeZPaax5X2OZlYg0KuIWe1uMhCEKgCpXu8tY=" }, "kget": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kget-24.08.0.tar.xz", - "hash": "sha256-1zg/Kz9dmHI8lzRdL4ndO6VcRJzOTmQq3iHyN4C/TV0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kget-24.08.1.tar.xz", + "hash": "sha256-GvgduQsNtTULqxDJZk0OMSOjY10seg71g5OXc6mmiAQ=" }, "kgoldrunner": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kgoldrunner-24.08.0.tar.xz", - "hash": "sha256-VEURZnimglPZ3X5axyUrE+mVVY5+z3l2DXUsX010QSE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kgoldrunner-24.08.1.tar.xz", + "hash": "sha256-AL5ilt3iO/2x4FGOcszSeT4zLP8+/7Zir16GOfMX68U=" }, "kgpg": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kgpg-24.08.0.tar.xz", - "hash": "sha256-58HFYxPVl+m5PFQu1Af/4UMpq5glwaar1ZUNn0GoH1c=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kgpg-24.08.1.tar.xz", + "hash": "sha256-xhNdZ4VNSyHNKlR01f2a26VEfK0ouCTor1zAAlhjZIU=" }, "kgraphviewer": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kgraphviewer-24.08.0.tar.xz", - "hash": "sha256-8u/hWRvieU326yme1qsyYpv5EgjAl6Dipf6JyM5cjNE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kgraphviewer-24.08.1.tar.xz", + "hash": "sha256-NdRqvxblLQZKJA6UaQ4HiXGcnlNi61h+pBXuQB2+w8U=" }, "khangman": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/khangman-24.08.0.tar.xz", - "hash": "sha256-/RFmhbPE1fad5v0PC1oiVRiLneHieIV/914HQXXOCpw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/khangman-24.08.1.tar.xz", + "hash": "sha256-nEY8khR9xjmOSRlP14n3ptFrkFLvgMighp+ctS7xTK0=" }, "khealthcertificate": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/khealthcertificate-24.08.0.tar.xz", - "hash": "sha256-SXXahXZNTjYa+W+1zV+g9cXFyYXF/2hmrK/4Bm9GRfY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/khealthcertificate-24.08.1.tar.xz", + "hash": "sha256-VWOHgtRpMqtEO4SchWJWSPVZEkTr12qlvhfvdEQbgTk=" }, "khelpcenter": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/khelpcenter-24.08.0.tar.xz", - "hash": "sha256-XZ+TuPWxFcK7uRT1pi228Yb9wNlKfjnF0yGPb9D5xUM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/khelpcenter-24.08.1.tar.xz", + "hash": "sha256-dg+iWle5QrpTJlpW/7EmSf+fWU3N/Gfa39m8UcEofnw=" }, "kidentitymanagement": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kidentitymanagement-24.08.0.tar.xz", - "hash": "sha256-B+rz6mVT+id8NFqarZ4ZHHLjJXY3khHXHjtcrFhuR0I=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kidentitymanagement-24.08.1.tar.xz", + "hash": "sha256-3/wCWTKvAIkIDjZ8xnCLIM5vr6GCOSHaSeQ745mmWtc=" }, "kig": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kig-24.08.0.tar.xz", - "hash": "sha256-13DKDWzVEdFlndLW1ABIEQCApxeeQIWqAK7W3Yvd4Hk=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kig-24.08.1.tar.xz", + "hash": "sha256-z4qALboiPIqEN98oyCydZHWElAN+XBD1dFIcs6MBTog=" }, "kigo": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kigo-24.08.0.tar.xz", - "hash": "sha256-1MVyIWdcRv/sNfXY2QtaeX7GbaNIg7wjTOzDBgEHfZE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kigo-24.08.1.tar.xz", + "hash": "sha256-ftJhAt4OF5GcUOFqYvMlelilVUDpCBgj9+AgQzy1Ky4=" }, "killbots": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/killbots-24.08.0.tar.xz", - "hash": "sha256-fU945cgMIat5618KHaPKNuQ6gLSsQtV7p3jKDB8UeCM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/killbots-24.08.1.tar.xz", + "hash": "sha256-N+t7AZWZ/ZtWkJgM+3wD/Sqb1kZ36EWWGBaY+5ug78c=" }, "kimagemapeditor": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kimagemapeditor-24.08.0.tar.xz", - "hash": "sha256-8jIsATQgf5cbrXjF+Tgz0W3uV36c5xbtcHx+jKfgI/k=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kimagemapeditor-24.08.1.tar.xz", + "hash": "sha256-h3vdViqMwOUQ/8u7ckxjrxFomeqVYwuh2KlDmKmQs9s=" }, "kimap": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kimap-24.08.0.tar.xz", - "hash": "sha256-Bf6UlADAjxbYog1WnVrcJ8YZzVW3jnEmG1dbsvVGFe4=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kimap-24.08.1.tar.xz", + "hash": "sha256-9hMeZ2TPptVomXlvXztkladQGBV/8Y2I2VX7EXpcfEk=" }, "kio-admin": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kio-admin-24.08.0.tar.xz", - "hash": "sha256-AwTS2EjlFdTXLS1reF3rZMRk/2bG+7WsL0OQeA/YMxc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kio-admin-24.08.1.tar.xz", + "hash": "sha256-BnJ3NrmK98JN5GFt0kTZVg2ZUXqlAw+0fBtwww9XV6I=" }, "kio-extras": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kio-extras-24.08.0.tar.xz", - "hash": "sha256-dZD0iXliOIFJwP7CXn64tpFZfaz9Su3zNDu+60uYRFw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kio-extras-24.08.1.tar.xz", + "hash": "sha256-ZAUd2i8Xo5AUJsCptcpltkQp8AtoIOd5bmBQhLDPzto=" }, "kio-gdrive": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kio-gdrive-24.08.0.tar.xz", - "hash": "sha256-H2FIcR89lazbxiV74lCuUDCe2Vw519j7zaACm0NFr74=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kio-gdrive-24.08.1.tar.xz", + "hash": "sha256-NZLVghzhXHzdD/8/j1ViHkN0UiFDvAG2MqpJ9GAABIM=" }, "kio-zeroconf": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kio-zeroconf-24.08.0.tar.xz", - "hash": "sha256-OnVSm+KvjFCoFlhtc0fRnZyL2cu/cJkudBs2paS6K7w=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kio-zeroconf-24.08.1.tar.xz", + "hash": "sha256-npc22mc/+tT9HN3kjIVMRKtv+UX9xWZa4UatxC2+nt8=" }, "kirigami-gallery": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kirigami-gallery-24.08.0.tar.xz", - "hash": "sha256-UpirQVaDP3+2X6Qh+g+fY7V4vc+Hw9OAIk6fs7EyxEo=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kirigami-gallery-24.08.1.tar.xz", + "hash": "sha256-RtnzyDmT+jJ33jpRG9yg1qYKkA6Qkr41ToJxKP6MQcM=" }, "kiriki": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kiriki-24.08.0.tar.xz", - "hash": "sha256-4K81n7TZWSvon1n+W4qjDc852KsAbgDiu9cDt6SG0jM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kiriki-24.08.1.tar.xz", + "hash": "sha256-Fd44QysYqiR1tDFkMvX0Woi9MuCRWUN9Aw32MH22y6g=" }, "kiten": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kiten-24.08.0.tar.xz", - "hash": "sha256-f5KffVA7B0eG+paT0YC5/9nC10BaM5Buka9yN+5xVLI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kiten-24.08.1.tar.xz", + "hash": "sha256-lbsIvt97/nMKYIICc3GmLVrWoE4vJV0ana8wtuXUDEM=" }, "kitinerary": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kitinerary-24.08.0.tar.xz", - "hash": "sha256-vvuV8WIODJuqgiZKq/ugzGdsnuQFg5OL4gkfElTyzaw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kitinerary-24.08.1.tar.xz", + "hash": "sha256-aeMQJL74CDbhz16vFUP+mgygfXJD1DSfnaCoJ6EjOTM=" }, "kjournald": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kjournald-24.08.0.tar.xz", - "hash": "sha256-mZPS5PxfkepzlknYXFMZfFSwuNSe4oy96437YlkAM8Y=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kjournald-24.08.1.tar.xz", + "hash": "sha256-UVgjC7F6esn9eS7T2uejnmDZTKSjTXLY2GoOuIG3G7Y=" }, "kjumpingcube": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kjumpingcube-24.08.0.tar.xz", - "hash": "sha256-88TO/fByNQohsH85CQyPswVOU2DhqEAkoDiT5ZQnoBE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kjumpingcube-24.08.1.tar.xz", + "hash": "sha256-c6gHitp0vTGpzC56uusi6m84OmEyTIepJ+2j1P0n3U0=" }, "kldap": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kldap-24.08.0.tar.xz", - "hash": "sha256-PkXm7KztC3IBi7mn/Nn2ipaCN+oMK5U2JwQL6QhkAJQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kldap-24.08.1.tar.xz", + "hash": "sha256-lLUsSNWaKgeEYefTmP3eigdG+DGTkuSdIBdF8C5G0u8=" }, "kleopatra": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kleopatra-24.08.0.tar.xz", - "hash": "sha256-1qiptQIBpBqRNQYzxs7shh+lf7DKBzAYJYV5QtReoys=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kleopatra-24.08.1.tar.xz", + "hash": "sha256-juW9kggi5PVMm11ap7dzMdKBOyW0PtipwMExygsby2w=" }, "klettres": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/klettres-24.08.0.tar.xz", - "hash": "sha256-HhXa6pJSePIoTS5QD4mnGwSMuGD6db3PqJnAevX/gbI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/klettres-24.08.1.tar.xz", + "hash": "sha256-qqD9gS5frocObmIJ+M6jAmKeQP7CJBtAKefOsxSmlxg=" }, "klickety": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/klickety-24.08.0.tar.xz", - "hash": "sha256-//ovtQu0Qwin6byVbqWDi233mjdXd+hFGPXPa3hLGU0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/klickety-24.08.1.tar.xz", + "hash": "sha256-/nUD35uFODiJC96uo+wTP0gn2qhxZkbLL6/QNpBcDYA=" }, "klines": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/klines-24.08.0.tar.xz", - "hash": "sha256-MMKL9cNmL3HuKQAlmW8PDeEYdx7L+D3Bw3TGN1vcOFg=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/klines-24.08.1.tar.xz", + "hash": "sha256-yj8R/4zLzTXdmvpk6tthFm1lcSqhenm++70YsDeGTMs=" }, "kmag": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmag-24.08.0.tar.xz", - "hash": "sha256-aftNNBPuoxufhF8fZZZ4DZKeZq/PvxNFrfqbIOxkuqc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmag-24.08.1.tar.xz", + "hash": "sha256-hbe0tq2gRm9plDLUun7VpzPhqczTxu2PG/r8+vTERu4=" }, "kmahjongg": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmahjongg-24.08.0.tar.xz", - "hash": "sha256-FlC1LdiQMAcDUHvM0UI0rsVQY7Lhgw0q7Q02BJoQtmM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmahjongg-24.08.1.tar.xz", + "hash": "sha256-2LlkBhMLPEH90LMzCRnXWMtZ/kGigZlM0Gdk5BFL7HA=" }, "kmail": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmail-24.08.0.tar.xz", - "hash": "sha256-lNyJElVy+BrCo/s4ffOyDfLglGLYr3NDhtavX8+fwdM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmail-24.08.1.tar.xz", + "hash": "sha256-q1q9BXjxmW2vOp+2dPOUkVRM4z5++zyh//Fe9vVzEHI=" }, "kmail-account-wizard": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmail-account-wizard-24.08.0.tar.xz", - "hash": "sha256-I4Qyfo0JEaxqB/WG6ZvSxqR5rt98zT0bVabW9s/g2tQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmail-account-wizard-24.08.1.tar.xz", + "hash": "sha256-0Sz6miBt3l6gHn6iS6oKpJX6Sz1V+oZMZgZP1Q38cLI=" }, "kmailtransport": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmailtransport-24.08.0.tar.xz", - "hash": "sha256-llhyO/aSXTOdybQ5K22KHPZOG9FLi5aD5q5H+RhrP58=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmailtransport-24.08.1.tar.xz", + "hash": "sha256-J/MiRRtp1EU2LPcKjnySB36O2LJUjhlJBXpNE3y6MG8=" }, "kmbox": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmbox-24.08.0.tar.xz", - "hash": "sha256-UCNBTXAREwWVeHnZZX7abHnqpr3Q9ImVu7H0iTNBAuM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmbox-24.08.1.tar.xz", + "hash": "sha256-kyjDkwOMGYvlVHx0Nsoar3zfQUZtzMMsjt+SrDPq8I8=" }, "kmime": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmime-24.08.0.tar.xz", - "hash": "sha256-nlqpDYojFLX7wBXwZpIvLh+lKdqtO3bf01FWepVDU8I=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmime-24.08.1.tar.xz", + "hash": "sha256-7EePJhRLHftvDquOjvsMHwatNJy7T1XP8jPcrPY1pIM=" }, "kmines": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmines-24.08.0.tar.xz", - "hash": "sha256-B9KVW7Z3zpHjAaahj1NfIGtU8karg01dZ8N3C/s87Ao=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmines-24.08.1.tar.xz", + "hash": "sha256-H40mz5Iiirt5DdfC7eTBmnmov8PKeEZ2h9R1WhnNM9o=" }, "kmix": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmix-24.08.0.tar.xz", - "hash": "sha256-8SG70thSZcxBeyL1wbcz0V/LkXuyZRO5DbvK3V/Zd/k=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmix-24.08.1.tar.xz", + "hash": "sha256-IXOVdWDucSwh895FvK3l/YNJgegmLooyU6NBZlYVuBw=" }, "kmousetool": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmousetool-24.08.0.tar.xz", - "hash": "sha256-Ug2uvGzeDTtzs7+VOJ2dFtK7t5Tpcamlwxx7XQQwemc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmousetool-24.08.1.tar.xz", + "hash": "sha256-GWRrYdkheqaefPmIzDTyWBXRY2T2LyBeYCmXNiVhEGw=" }, "kmouth": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmouth-24.08.0.tar.xz", - "hash": "sha256-kOK6mzqcrCFc/Ky2CSjtTgEbvUnPml/Pp+GF1lPR1Hw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmouth-24.08.1.tar.xz", + "hash": "sha256-T0Ta2Fj+LJYpgfHgh8Sppis5OVCywr2KAgotYjlQcf0=" }, "kmplot": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kmplot-24.08.0.tar.xz", - "hash": "sha256-T2ohqTUE31cS8PJ69yKM+HEpSTU2tiRQvM4e8LpfmRI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kmplot-24.08.1.tar.xz", + "hash": "sha256-eUVVrvF5lzOUQ0ePh1TUq3kdXBxLJkOdRep3BHJMHNk=" }, "knavalbattle": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/knavalbattle-24.08.0.tar.xz", - "hash": "sha256-u5yXhhOw/AoXIueX6+/AD0dkkyu7R+HTFfYqluUw8dU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/knavalbattle-24.08.1.tar.xz", + "hash": "sha256-QLLpz37dyroTfNAL00N6q40OlZFab1rO58HtpXaMI58=" }, "knetwalk": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/knetwalk-24.08.0.tar.xz", - "hash": "sha256-UKtpU7G0dv2QtnsUNLX1T+QEsPMiL+cZvgrFPXqAbn8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/knetwalk-24.08.1.tar.xz", + "hash": "sha256-TRvvJ4y70n7W1YoDU4TyVDdzzaWx+OTAL/2lTDhJvtg=" }, "knights": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/knights-24.08.0.tar.xz", - "hash": "sha256-M9sCuZsxF55CIj/b66ISJ7Rz6aXj1xT8LRc/f4N0okc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/knights-24.08.1.tar.xz", + "hash": "sha256-k8Ns4f0GTDmWVUXck21Qg8q71OdcIqynW4aXpJ+mF1Q=" }, "koko": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/koko-24.08.0.tar.xz", - "hash": "sha256-dUjbFz7b/8tC/vaT2NCWbb/E745kmoXaXADMqM9MmFU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/koko-24.08.1.tar.xz", + "hash": "sha256-PGOOXH09hfpsHxgJT9LBJDdOBEwxx+tlB2fJGsEGVRw=" }, "kolf": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kolf-24.08.0.tar.xz", - "hash": "sha256-2QmZlBSK6WDyIxd8JcG8XDneuPMVFDdPeroI0/BB/Xg=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kolf-24.08.1.tar.xz", + "hash": "sha256-ccoQ9q40xymrFoA2hDARz9IsFtKi4mhAk2yp77Qaw60=" }, "kollision": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kollision-24.08.0.tar.xz", - "hash": "sha256-VVdbCbs6HOB6EtugyyyKeYeJVnGnS4hyeETFfJRuwj4=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kollision-24.08.1.tar.xz", + "hash": "sha256-XZ9LgoiftA6kHXhSRUYW5Ky31he8njrYzkFT9SLOlF8=" }, "kolourpaint": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kolourpaint-24.08.0.tar.xz", - "hash": "sha256-DbzZL29Vv0SNVVe/bxX8pXeSWcfAXy1IRhKcbCAkbY8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kolourpaint-24.08.1.tar.xz", + "hash": "sha256-MOEZLGX50WBi+cx4sJNvBvbrzTR8VuYZn+KT19RWl3U=" }, "kompare": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kompare-24.08.0.tar.xz", - "hash": "sha256-Md7D7zjzylqVvCJRg1bnIwG/2UCYwmn6av95auuPCA0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kompare-24.08.1.tar.xz", + "hash": "sha256-wEJKFqgjilcR8Olge9+eJF0e7/f4LT2h8YSS6yvnWLU=" }, "kongress": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kongress-24.08.0.tar.xz", - "hash": "sha256-lB1kZpcA/8ixQ0tU/j+78U1tjultXQ1pr1DlZiUqNDY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kongress-24.08.1.tar.xz", + "hash": "sha256-2PY4gA9a3q1SP1ynmv0U892lUH55db6ic+eLuEcoJtg=" }, "konqueror": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/konqueror-24.08.0.tar.xz", - "hash": "sha256-0RwVPbGmPThQ4FCRNVaqiPg0uk3fcEWhpXaZ7BmLN+Q=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/konqueror-24.08.1.tar.xz", + "hash": "sha256-lpFvLR8klPKtGkVVDxz7hLDqMNnulK78AhedysW8ah0=" }, "konquest": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/konquest-24.08.0.tar.xz", - "hash": "sha256-AukocveKyFpoW4SVItpA2a3JrPZ2JgywUlsKIt94J3A=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/konquest-24.08.1.tar.xz", + "hash": "sha256-VOiobACwcPJhfRjdhZqfdqGea7Kn04BUtjlIB+fIDbY=" }, "konsole": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/konsole-24.08.0.tar.xz", - "hash": "sha256-AJXxr8TkpM02oSopJ+CQ5i+w0BbTiRS8hYr1aLdBYQE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/konsole-24.08.1.tar.xz", + "hash": "sha256-ZSGeT2r6Ceryb9PpE3nQfZOWDS9c5BJWhADotxsN1wg=" }, "kontact": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kontact-24.08.0.tar.xz", - "hash": "sha256-UUPIrP5Dd5wLtQ+nrjtYjsEepg8SPascncQt6egxtA4=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kontact-24.08.1.tar.xz", + "hash": "sha256-1XMonau/VuJIyPCxYrMtZjbiMhBxoJsXm67Ie7XCG7I=" }, "kontactinterface": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kontactinterface-24.08.0.tar.xz", - "hash": "sha256-9mOFH6UY2TXqhteBOHx5fyEpl93v8m95Il5lzYuUwrM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kontactinterface-24.08.1.tar.xz", + "hash": "sha256-/ju5yF4J/aselLEpYYtDLwY1JadaqpdVthIvpKpD8To=" }, "kontrast": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kontrast-24.08.0.tar.xz", - "hash": "sha256-0WPUA6144PQtoJa5mtu+DykJU8FwMs0MFw5tj1r910c=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kontrast-24.08.1.tar.xz", + "hash": "sha256-0CRFlgNuhhtIyYeIrtOL17mDQQOoXKKIW/aFGgCiyC8=" }, "konversation": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/konversation-24.08.0.tar.xz", - "hash": "sha256-0WWH9QzGUZvo8Idv/M0/azyRQmUgRmN6OTzYInWJB6A=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/konversation-24.08.1.tar.xz", + "hash": "sha256-Y1zbukUfov8mwzFz/+RGdBgLTJDz13ToZBj9hF5bDG0=" }, "kopeninghours": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kopeninghours-24.08.0.tar.xz", - "hash": "sha256-2cl7PG/8bHEFvB+JB4hHWobke8Anh5FtrmRZvcw2WNY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kopeninghours-24.08.1.tar.xz", + "hash": "sha256-9NZDVi8Ohy7kyOCpfzGcuUtpoB2UhJtShReMi7pZpwM=" }, "korganizer": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/korganizer-24.08.0.tar.xz", - "hash": "sha256-J9Gt4vSOidseS7uufqcaVWHmZgBGbY4Sjx6M+Vsu6yA=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/korganizer-24.08.1.tar.xz", + "hash": "sha256-AZ9o2VKqWmYAGI8gs1Fh4etbKQqww52P09lNUxBlTmM=" }, "kosmindoormap": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kosmindoormap-24.08.0.tar.xz", - "hash": "sha256-t0x46OIDj3UWXcmJmhZJjlJFgMmuaHJpo41sWlgqspk=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kosmindoormap-24.08.1.tar.xz", + "hash": "sha256-0uz2Kwl/hp2g0VjkoAoIuwYOdKCvnjS3oa8/2swVV1o=" }, "kpat": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kpat-24.08.0.tar.xz", - "hash": "sha256-18llnfgpl+NTRdSsmaY8gbVXcyzRrL9n8pSyhLvBXj0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kpat-24.08.1.tar.xz", + "hash": "sha256-wYkifGsBxoQMKEYwFMQNBcUOvjrSc+oVah8RgCRWfMo=" }, "kpimtextedit": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kpimtextedit-24.08.0.tar.xz", - "hash": "sha256-q8fVFwlnsBD6as4v92JnG1ISqd5FQvPaP8MdvnI1wKM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kpimtextedit-24.08.1.tar.xz", + "hash": "sha256-v5QdJFoGJrOzarAcGHIqpS/My5GgF8f/Owb8+ctz0t0=" }, "kpkpass": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kpkpass-24.08.0.tar.xz", - "hash": "sha256-D7bLVHoFAdT70B3UmYbpjUL/Sv4CpNzgrLt0HN/2sbs=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kpkpass-24.08.1.tar.xz", + "hash": "sha256-iSMVU9aTQ/y+NjaI+km8ngW292lYBP21ISDocSsdgW8=" }, "kpmcore": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kpmcore-24.08.0.tar.xz", - "hash": "sha256-rCX+KCl7oqMor6oDwOXYF63jcU13k6kKIE+baUsJDWc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kpmcore-24.08.1.tar.xz", + "hash": "sha256-J0VQpdyNYTuo73lH/k5XwPgjOmCVRWM1nycS4FnwmoA=" }, "kpublictransport": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kpublictransport-24.08.0.tar.xz", - "hash": "sha256-6RRF031M4Pa7mqDAOepz8nCfZXEr0Rxy86g6rbwDjJY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kpublictransport-24.08.1.tar.xz", + "hash": "sha256-y3MFz/jWBY8Xc7hPfiztgmFMl2hUwTtFX6tJcyrWVqc=" }, "kqtquickcharts": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kqtquickcharts-24.08.0.tar.xz", - "hash": "sha256-1B2Vg8ukbLNt407DVef3PPd+OAqP+yvTS/93nja+L2o=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kqtquickcharts-24.08.1.tar.xz", + "hash": "sha256-EoDXakzOtuGHMbyZs7LAeOufzawKA5PfXnoG80JjzWM=" }, "krdc": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/krdc-24.08.0.tar.xz", - "hash": "sha256-tr/aXajvUu83rA1A8ddV+CrC5onzSG05nZu5tXruMwU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/krdc-24.08.1.tar.xz", + "hash": "sha256-YOVQAFPJW+vq26Y0jWRhGJrVkBkIvP5R+E/7RwIGyDw=" }, "krecorder": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/krecorder-24.08.0.tar.xz", - "hash": "sha256-LCpD9pzXvGj1hLIV++OmBl5wXR8JQZhpEECLqwYOZa8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/krecorder-24.08.1.tar.xz", + "hash": "sha256-Y6SSwryA8N5Yq3bfudtKvPLK/TmwsD/C8tePYfYx64w=" }, "kreversi": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kreversi-24.08.0.tar.xz", - "hash": "sha256-zhrjBv8EgbSwK27vIEBzRBW+XPTMUHTpxNcdTcrvsTQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kreversi-24.08.1.tar.xz", + "hash": "sha256-hnwq00iukLRC8QQ59c8InhR5cKHgahOtYSt+jORxZe4=" }, "krfb": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/krfb-24.08.0.tar.xz", - "hash": "sha256-0IwKqlT/oFWLBFBdplVjF2mVt1rBlKFLWG2lWZEGGMQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/krfb-24.08.1.tar.xz", + "hash": "sha256-7l9Nqy0sBSrwltWHgkYTUfFQ/KGbbsZtrOh8iZVgl1o=" }, "kross-interpreters": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kross-interpreters-24.08.0.tar.xz", - "hash": "sha256-CiBDIPQQsRItXtCwuneAWN1yLeuf1NqZqdDDnmnwyMI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kross-interpreters-24.08.1.tar.xz", + "hash": "sha256-rPySduwB4DsNCB63ubj8p0kA/42h8MqtSKshJ4eCGlA=" }, "kruler": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kruler-24.08.0.tar.xz", - "hash": "sha256-d6r/L2d+7TOGzZot+IZ5/c0ZQEwy2GFVazzE2+VOkb8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kruler-24.08.1.tar.xz", + "hash": "sha256-LVlVGfQdD9UO4pXQF8TbnRFiqwV0K2Sq7JkAVRsqc7I=" }, "ksanecore": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ksanecore-24.08.0.tar.xz", - "hash": "sha256-jTe4HuWtzkNQ1s5RwEWyXf3uX+RQVv2Z6fKyHVPARy0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ksanecore-24.08.1.tar.xz", + "hash": "sha256-qe7k925CmnzbhoyQFVrZsawBNAXYVp7PpXFcISvN/Uo=" }, "kshisen": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kshisen-24.08.0.tar.xz", - "hash": "sha256-9fjZOUc4hngc+Sr3YwpK3wAKPRKFPNHQThzQ5qyV7Co=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kshisen-24.08.1.tar.xz", + "hash": "sha256-i5U7us2B34vH5nDdApt+syS/Q0Z0dx2GNwiB3/NfwZ0=" }, "ksirk": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ksirk-24.08.0.tar.xz", - "hash": "sha256-aalvqmlVkqEohmpKHhXBAYropkc7/r5U/3kzwC8IISg=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ksirk-24.08.1.tar.xz", + "hash": "sha256-ixOSCC76lYHA1cuddZB4IlL9t5ZzgWNWrntaDUZY9nk=" }, "ksmtp": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ksmtp-24.08.0.tar.xz", - "hash": "sha256-QJ/8+W5D6LZcxJwVdtmiFOf7rGOJVPqehkPUYgzrzHQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ksmtp-24.08.1.tar.xz", + "hash": "sha256-3mc85BCk+FeWxaEs5DihsNoNOnX+99L1amt3k8bf7zM=" }, "ksnakeduel": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ksnakeduel-24.08.0.tar.xz", - "hash": "sha256-NAxI0GcmRqee2WNbFwhrQ4kXZuvghbTJ4oNRP/T+bkg=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ksnakeduel-24.08.1.tar.xz", + "hash": "sha256-Rn7rvYP2MqTyUTSWgMKogWVNqxBnEgmFaIYPeMgv+24=" }, "kspaceduel": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kspaceduel-24.08.0.tar.xz", - "hash": "sha256-gXjVRIdZ7Nvr8z/WvY2eXzfi5WI/V1e1A82/O0enYzA=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kspaceduel-24.08.1.tar.xz", + "hash": "sha256-uLMh2JxwLWsGU1JQ+bGiklbvWqzJiPun7WENGgQGtwI=" }, "ksquares": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ksquares-24.08.0.tar.xz", - "hash": "sha256-q498N7qP1G+TonbahvY5+jIn08Sv9VBjCrnVdImIeLQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ksquares-24.08.1.tar.xz", + "hash": "sha256-b+A4dxS9/XtcODTo9rlIjxb3Xv4mcrTzEKeL/zBDI54=" }, "ksudoku": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ksudoku-24.08.0.tar.xz", - "hash": "sha256-o0h2qqZ1LF1hPYfT/1HSMwxMWXNmXv8DoZwIcivnUxE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ksudoku-24.08.1.tar.xz", + "hash": "sha256-UOmy4zgs78Cr9xWvKc7pp8ywmAzVMGZnls+JLPRjRq8=" }, "ksystemlog": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ksystemlog-24.08.0.tar.xz", - "hash": "sha256-0EuV0VoqXvVbtQy/azpYXvgrFkkfw8mw2oIx3BeMbFI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ksystemlog-24.08.1.tar.xz", + "hash": "sha256-pMnTIhX4PYSRGOgvNxvKazg2u1Dbtrw6/t66MQquqZ4=" }, "kteatime": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kteatime-24.08.0.tar.xz", - "hash": "sha256-EYUaSftTq3Qx194iGAppByifLNGnL2jVFWEZOVSnV1M=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kteatime-24.08.1.tar.xz", + "hash": "sha256-6C8Jhqc8hRycFZBbxMzrG4rhd1WZvc3dWiBhygggpwg=" }, "ktimer": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ktimer-24.08.0.tar.xz", - "hash": "sha256-oCxXlOyOSBeFqosFwOvN9U8JrOIY434XFRLPlSo8Fqc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ktimer-24.08.1.tar.xz", + "hash": "sha256-bUK/vpkN4+5FZwreEWTBhxFart6VCuNV1Txv4J4Ed0c=" }, "ktnef": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ktnef-24.08.0.tar.xz", - "hash": "sha256-Jero6cKN56hUEKsV11h07DK1ECrVZucZYZQRQuPVLGY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ktnef-24.08.1.tar.xz", + "hash": "sha256-wFoDST3jrgwjsr86exDO24ES1gZuh8CTtcslR2tb074=" }, "ktorrent": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ktorrent-24.08.0.tar.xz", - "hash": "sha256-wK5GiaqT9QBZIIgFjefLFuuZVuSBKtPTo7p+upCOJ0E=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ktorrent-24.08.1.tar.xz", + "hash": "sha256-aU98JBF1+vkSVRfOs2knPNq4yR6BxP6rej7D4afkvmE=" }, "ktouch": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ktouch-24.08.0.tar.xz", - "hash": "sha256-bBsZBV/ga5msdoUttTWEbU1IKkF6jbwzv0iNwXK//BQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ktouch-24.08.1.tar.xz", + "hash": "sha256-jx31T7k+i2+IyGmjvfuxWZYAETFZJcsnUFdN/d3dsg0=" }, "ktrip": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ktrip-24.08.0.tar.xz", - "hash": "sha256-Ya41l/Z/7HGteY+H7OwNqQpm1o3zK3bFUfeGyH8gQJE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ktrip-24.08.1.tar.xz", + "hash": "sha256-X997nkQqO3LJ7kSVxz8Dpy66VOuB8ALCDIZmQFe9ipc=" }, "ktuberling": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/ktuberling-24.08.0.tar.xz", - "hash": "sha256-3U3xWYoZRKdzw3YKgcSnJl0e8UA8x3zbue5oZcmMV5A=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/ktuberling-24.08.1.tar.xz", + "hash": "sha256-W4nzpWKPOsH4KqV++ml3USxMPgOQBFefrQvSp+aLLCE=" }, "kturtle": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kturtle-24.08.0.tar.xz", - "hash": "sha256-W2ehCybNjs+rJD6wzSVIV9qLXibgCYgnfO89yvJxaTQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kturtle-24.08.1.tar.xz", + "hash": "sha256-OU93eu1iaOieu2ywMaftW9DjQXWfSfxEBn3vlRSqTbw=" }, "kubrick": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kubrick-24.08.0.tar.xz", - "hash": "sha256-zmklL8jYSVTSWhUZZc6QgzPFkIYdClcPKkEuTd/Imp0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kubrick-24.08.1.tar.xz", + "hash": "sha256-gPuqpzxzlVjiDNkweMz/8RHpotN6WZelw/XeEodS9/8=" }, "kwalletmanager": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kwalletmanager-24.08.0.tar.xz", - "hash": "sha256-CPkA+e93CyvJIIeB5dzbfgxD8MekehUVsYiPJHVlQvc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kwalletmanager-24.08.1.tar.xz", + "hash": "sha256-0Aa5uz1OCjx30qc/v+FQ83s8Kj/lJkQgMazPHcG7OqU=" }, "kwave": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kwave-24.08.0.tar.xz", - "hash": "sha256-w6rlGXSpFDuzfFCcwSPABCTMUXNdwSsBVDDwg5v4RNo=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kwave-24.08.1.tar.xz", + "hash": "sha256-VcXNXSH8A19huuZvORao1/0IwhjCeT288T/cMzOxu+U=" }, "kweather": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kweather-24.08.0.tar.xz", - "hash": "sha256-arQZYb9Xv+tCtnkWfzpC4livJkuRllTnD3gLgU0eA1Q=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kweather-24.08.1.tar.xz", + "hash": "sha256-efVml7TzyJe2tgLo6Gntq+Ld0Vy8nT2VYSg5AlLS2AI=" }, "kweathercore": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kweathercore-24.08.0.tar.xz", - "hash": "sha256-raRpFE8s119wxtR0uWXj1c9JyAxPMnD602OZiJEmsbI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kweathercore-24.08.1.tar.xz", + "hash": "sha256-FudSDS/wPNxUnX+xsY+bTuUF+KpZiSZjuWa8rQKshiE=" }, "kwordquiz": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/kwordquiz-24.08.0.tar.xz", - "hash": "sha256-ebRx+Y4cuDbbxMleW33ClXOf2j9zYIc+hAVFgyTA5Bw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/kwordquiz-24.08.1.tar.xz", + "hash": "sha256-RprRKZmzQxyXEjMn1eUXaF+OMdRPjl4OWA74oqPcOmA=" }, "libgravatar": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libgravatar-24.08.0.tar.xz", - "hash": "sha256-MY5VHQ66AT1rqh1SXgbdtU0e5rmoVAX438sFf9ZbHfs=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libgravatar-24.08.1.tar.xz", + "hash": "sha256-jU0QOjWxD8gmQeSMW/pWII+9RKNsbhCqZJ1cDqzpU94=" }, "libkcddb": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkcddb-24.08.0.tar.xz", - "hash": "sha256-Ystogr/0zidLxemHFd7Mi4lk+YCReCGe9Jy9N9CRlBo=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkcddb-24.08.1.tar.xz", + "hash": "sha256-pgzebMlDJPF+XkHlCf+t3/y1f7xzQR0tFWfAnkxTB74=" }, "libkcompactdisc": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkcompactdisc-24.08.0.tar.xz", - "hash": "sha256-QL4OXtsFGqfejKfOIOdd6TXzTje2pSUbetHzCIpGazw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkcompactdisc-24.08.1.tar.xz", + "hash": "sha256-RWJLclL8vjD24QX/i8+OhEy1bBzT3iZCXBvawefJLrY=" }, "libkdcraw": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkdcraw-24.08.0.tar.xz", - "hash": "sha256-tkt/CUKWvk5on0hGyNOsgvk9wwy9ksy/YrZVluiGJcI=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkdcraw-24.08.1.tar.xz", + "hash": "sha256-3O2i6790ebojLpEI0c9Y1hPfD6dsmQEG7lnbuoycMvY=" }, "libkdegames": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkdegames-24.08.0.tar.xz", - "hash": "sha256-IvnUIHbYlqjgpVuOALN5dBgOn2uGBrARA4247m9DV8U=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkdegames-24.08.1.tar.xz", + "hash": "sha256-SLIlSmzfOHRLbvQP9H5EMLkmM7sgAwMK7Y7f1JdBT8I=" }, "libkdepim": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkdepim-24.08.0.tar.xz", - "hash": "sha256-NrdzUbmL3RLLKnA+s/TIe1akf4G84SQYxNZ0EkZey8o=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkdepim-24.08.1.tar.xz", + "hash": "sha256-y3b6t+zhTcA8sJCiymopcsy8NPaobExn7Smhj/Mwn20=" }, "libkeduvocdocument": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkeduvocdocument-24.08.0.tar.xz", - "hash": "sha256-n/lNd8Zu9XS8UfU4T6M3CoVFJKgJurEKKSzNV9cjqMU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkeduvocdocument-24.08.1.tar.xz", + "hash": "sha256-DplQDk46v04XlaOQw3KM6f55m1ZpZdWNTrJQA6EwMpE=" }, "libkexiv2": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkexiv2-24.08.0.tar.xz", - "hash": "sha256-YV+qaUmskGmDLTgcVqfIMRpCDF1CxNZ0utpiYFpVcpE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkexiv2-24.08.1.tar.xz", + "hash": "sha256-J9i2HgWGnP3uaFGDkZyzFELbeF0LRAOZyLqEYpSnvmc=" }, "libkgapi": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkgapi-24.08.0.tar.xz", - "hash": "sha256-Hbnl4rG7VQs2eA+ateVx4Vt105fFVV4OGP2ONUHdyRU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkgapi-24.08.1.tar.xz", + "hash": "sha256-wk7cdR9mtsRorB6R3z8sQRSmItk+u6kAuXjprRPbj/M=" }, "libkleo": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkleo-24.08.0.tar.xz", - "hash": "sha256-lRZX62JWhvEzBf2uHVLgxeWhCOHzugPRCAI5oMD1MfE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkleo-24.08.1.tar.xz", + "hash": "sha256-yYJYD4wbzr8aIUYl3J//iEK+YuR+iVF1X/HKflIuLRg=" }, "libkmahjongg": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkmahjongg-24.08.0.tar.xz", - "hash": "sha256-jg09iIjDgyg3+Y/+dUiz/W+WF8Ai/jxQz29A3hfp93s=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkmahjongg-24.08.1.tar.xz", + "hash": "sha256-L/oISXYIZG33aSnnCRdV7i+NsuwN/IryoyRxKmSjiog=" }, "libkomparediff2": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libkomparediff2-24.08.0.tar.xz", - "hash": "sha256-qfV+nxGzTdncFI+4XC/JBPbIqH3ZLmdsOH1bhQzQzGY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libkomparediff2-24.08.1.tar.xz", + "hash": "sha256-+6rD4LlVhlwSPF+DBtsZmytcv4pBF83xyZvwu7sI0PI=" }, "libksane": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libksane-24.08.0.tar.xz", - "hash": "sha256-S/vFYomxj8AggJ1cuJGFCUeDNwco4Ct83So4MrYJuz0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libksane-24.08.1.tar.xz", + "hash": "sha256-4+cDtO+jNrdKUwn9WJMgUrg8Kh45/x6KkLXPfLm6Mm4=" }, "libksieve": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libksieve-24.08.0.tar.xz", - "hash": "sha256-j0ISnmvWqDt1HwQ9DHsxbc6318Af1ZWpjXputlj56BQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libksieve-24.08.1.tar.xz", + "hash": "sha256-hYjjTbiC2qAW9GRh5RNcB63kO1zfZZGL5ny4itGnrx0=" }, "libktorrent": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/libktorrent-24.08.0.tar.xz", - "hash": "sha256-f16GYmQvhdbXav4A4cN98DD8Kk8z2UXWxuJ9JAGvs9E=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/libktorrent-24.08.1.tar.xz", + "hash": "sha256-cwWY05Pxvaanvg8df4vy7SckYG6SVhDyIgJ3Fkn8WwI=" }, "lokalize": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/lokalize-24.08.0.tar.xz", - "hash": "sha256-t4dEUvwUnTLv2o3ARxn3V4s/InPuqCJ7K/JXVGUKnKY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/lokalize-24.08.1.tar.xz", + "hash": "sha256-wonzvixrGfX71UwCuR+An/fPNyzty/B48cTxphRx+Fs=" }, "lskat": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/lskat-24.08.0.tar.xz", - "hash": "sha256-OvVvW569ab/H/WQSvqmyiDbTf5K4QSygJNxDKs7V35c=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/lskat-24.08.1.tar.xz", + "hash": "sha256-VwyDfV32tL4HmkIOcl+CC/NGBCaUNlpnesu1fdZsY3I=" }, "mailcommon": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/mailcommon-24.08.0.tar.xz", - "hash": "sha256-6Ud0WtcsS0uc80dC/Oz4TUVml4XQ3wgfXE5Z3gCQDhE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/mailcommon-24.08.1.tar.xz", + "hash": "sha256-LzZeswVktJu4+lT0E/TvSVhw8kSqY3vbbQm28pukM9U=" }, "mailimporter": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/mailimporter-24.08.0.tar.xz", - "hash": "sha256-ZfxxidFpgoSgN2Nfx/tsZFc3xLxhqLI21npofra7YtM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/mailimporter-24.08.1.tar.xz", + "hash": "sha256-XtHepApkb6bCqiHNcFjrXIvFPYrFJqclzvTB4JZ65IM=" }, "marble": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/marble-24.08.0.tar.xz", - "hash": "sha256-vALHCcFVGPocan2v7yxQfhRXHU9yJIb6yhv44YvpMaU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/marble-24.08.1.tar.xz", + "hash": "sha256-e+fQQNGNXLVfOzntLxb4I5wx1a0STNHSvBJK5px6THw=" }, "markdownpart": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/markdownpart-24.08.0.tar.xz", - "hash": "sha256-L4O25JE3CZUxRLhzoBp5tugcp14zvq5D/DeIu9gP/Rc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/markdownpart-24.08.1.tar.xz", + "hash": "sha256-A59jxdlixu7xvRS5PJQ3+17nEESO/JqA3YlGehnkDT0=" }, "massif-visualizer": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/massif-visualizer-24.08.0.tar.xz", - "hash": "sha256-3WBcRz9tLHfNKm66q1ZFp3hO9+QUplv/NXg26KJt9ZA=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/massif-visualizer-24.08.1.tar.xz", + "hash": "sha256-zIkB9p7LuXv5EN9wCr9eC0lEykXpEWuMQdRX+GAZQSw=" }, "mbox-importer": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/mbox-importer-24.08.0.tar.xz", - "hash": "sha256-VZoRLA28c8oVLR0jekFJ3qmM6X7LdVZvve82p+GyHDY=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/mbox-importer-24.08.1.tar.xz", + "hash": "sha256-45RaecU9MmKBnms06GbZBaN1RCKpDRuQq0QOqryWhmU=" }, "merkuro": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/merkuro-24.08.0.tar.xz", - "hash": "sha256-cmBwvvOEU+rdPe5oto+ylNwhUQe5jBqO20YbrRyfva4=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/merkuro-24.08.1.tar.xz", + "hash": "sha256-h+cTXd1UzXrO2exfxZPF4oPFwsR6gkF2M2iGN78yBqU=" }, "messagelib": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/messagelib-24.08.0.tar.xz", - "hash": "sha256-xEwMTsMFa0eTCEb0TraFR52wYoHHnurXjt9XkDuKuKU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/messagelib-24.08.1.tar.xz", + "hash": "sha256-dBSFVm1WwRnZ0atguaBPwoOVw/mDCCSbotUGvahu+5s=" }, "mimetreeparser": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/mimetreeparser-24.08.0.tar.xz", - "hash": "sha256-vAQBp9TbrksYzq19eItUvWsntGCFCymbAfB7RwadsF4=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/mimetreeparser-24.08.1.tar.xz", + "hash": "sha256-43lifAN816wxbFRXVjJuqHP6w+QwOA4yYjd77gKp7Ew=" }, "minuet": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/minuet-24.08.0.tar.xz", - "hash": "sha256-fpo9jvI7pJrKFi4XjTrGS+gxfPMoDS3v+adVS5d2RXM=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/minuet-24.08.1.tar.xz", + "hash": "sha256-jc00peuH4LYSxrudt3jQ+sx5YYy53I3ePNhyQ5dMDNQ=" }, "neochat": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/neochat-24.08.0.tar.xz", - "hash": "sha256-a3LRhkzA2QcEMYyJcLncai2s1UH8W5XEbc67XGphcF8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/neochat-24.08.1.tar.xz", + "hash": "sha256-o5TwTPGdVWdDflWAdcn3zlw3v3OUOxPEdzn/VqzeVx0=" }, "okular": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/okular-24.08.0.tar.xz", - "hash": "sha256-PeFuJilLOGMnDfF2BAOmdro9cgRzi+vOigVWLZMsMYs=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/okular-24.08.1.tar.xz", + "hash": "sha256-sFdlXBPk+lZtKIcwrrlhmK74qQy2odalX1ZvpaawLok=" }, "palapeli": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/palapeli-24.08.0.tar.xz", - "hash": "sha256-VyhEOYlURTtfjcUxa7D0uc4WCqBKCNs3OXqas6yvgGk=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/palapeli-24.08.1.tar.xz", + "hash": "sha256-7C0TN9iUk6BTA/vx6AAZDiJx7HqUgrRMx3g0yuFrw2g=" }, "parley": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/parley-24.08.0.tar.xz", - "hash": "sha256-xc2yp8U4X013GWaWpWmOjgWSrDh2X0nnUK96RuLOB7M=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/parley-24.08.1.tar.xz", + "hash": "sha256-SHHwS3OYssUKxqaoY5VHCxeHWJx0lKPoQAvw11ERib4=" }, "partitionmanager": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/partitionmanager-24.08.0.tar.xz", - "hash": "sha256-9fjcTxqqFkuXxBCGyjgH75OmjZUi+Q3RZ+bH563sZKs=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/partitionmanager-24.08.1.tar.xz", + "hash": "sha256-MuRN734ePlesgfIHRK/KpYX/Imnq+2GSJC8KsPNtXNw=" }, "picmi": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/picmi-24.08.0.tar.xz", - "hash": "sha256-eDu6M8fC+FkxHtM7iG9QuyRYDqgN5ZHFijGe11d3ooQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/picmi-24.08.1.tar.xz", + "hash": "sha256-AcFyuif12DI4NrRy3EOeM7l1IQPd1dI8AStLkzJZSbE=" }, "pimcommon": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/pimcommon-24.08.0.tar.xz", - "hash": "sha256-zo6F5Fv8TviPDAgXGfz4+tR0PJvAsQmhOpxzZi4b130=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/pimcommon-24.08.1.tar.xz", + "hash": "sha256-MV7VWJKzxU6lFDrdx+kuwIvfYVcSlkPI/ZVi3DbsWp0=" }, "pim-data-exporter": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/pim-data-exporter-24.08.0.tar.xz", - "hash": "sha256-MSWiGSKJQYwI5yVSYExxBPLo8w9MPXwYGhdJqItMsfU=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/pim-data-exporter-24.08.1.tar.xz", + "hash": "sha256-q4J4Eo9vcFe0344eThuG7q1UBnUl/upxgMV4Qg6trcU=" }, "pim-sieve-editor": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/pim-sieve-editor-24.08.0.tar.xz", - "hash": "sha256-506FaBQs9/vrkmMwE9Lzn0dTcb9jJbP66aJvV5RjGrk=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/pim-sieve-editor-24.08.1.tar.xz", + "hash": "sha256-ojtEVNvQjK7tZpksjRBZ16Z8dEqqQi38p0YpPoiZ0qI=" }, "plasmatube": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/plasmatube-24.08.0.tar.xz", - "hash": "sha256-s8D03CEkaNE9L61zO8Jnt27mnYRTf4PvcbRX7HmuDLg=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/plasmatube-24.08.1.tar.xz", + "hash": "sha256-Jmk+Wpwqhitytla0hWTrtquuLolCHNf+ex/9f5j08mQ=" }, "poxml": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/poxml-24.08.0.tar.xz", - "hash": "sha256-wHJfCs2lCrVLr8SZ/Ru17004LvbPaLvkJREUY8DbUWo=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/poxml-24.08.1.tar.xz", + "hash": "sha256-1DCqQqvsG3+k9UcKZbTutT+AtOgJ2yKp0PxcN8XMb7A=" }, "qmlkonsole": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/qmlkonsole-24.08.0.tar.xz", - "hash": "sha256-hIgG4AcE1ElGsxmkSeuibBp5CqKIE5+355owSAkKdAw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/qmlkonsole-24.08.1.tar.xz", + "hash": "sha256-n1WUGOGtT7KJwMvKO5g9yxK1Bkdv0JggNqv9OHI0WAk=" }, "rocs": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/rocs-24.08.0.tar.xz", - "hash": "sha256-dGHHkdWrOylYGruihprg+57Ayod8evJysqAXCGDa0Yw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/rocs-24.08.1.tar.xz", + "hash": "sha256-4Xs60rEjlBU/dRbQzd2N87JOsrbf71UL1MbxAoovBoo=" }, "signon-kwallet-extension": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/signon-kwallet-extension-24.08.0.tar.xz", - "hash": "sha256-1cxHu5z+RchXrOYsDYBSnugOAFuWNpV5zzYE8SLOEsE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/signon-kwallet-extension-24.08.1.tar.xz", + "hash": "sha256-thBohLLk4aS3awPOHwZKfRvOQOj7Hk2ICLKaF9fLFK8=" }, "skanlite": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/skanlite-24.08.0.tar.xz", - "hash": "sha256-NDvrGS3AGEa3WTpTD+RoUF3YOSqOJ3jJJ0aYSAW1/78=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/skanlite-24.08.1.tar.xz", + "hash": "sha256-BtJoQKifmrCj5WMYViMS8jdppb7EBxOQG6XWxuW0DxM=" }, "skanpage": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/skanpage-24.08.0.tar.xz", - "hash": "sha256-aF7Q+f021EpwuMdU+W66p8X4Z6XB8RBPdfXXoS66lIQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/skanpage-24.08.1.tar.xz", + "hash": "sha256-SI24TNKnodN7ghoyDyOhk/5Hp/tp9F6UuEh/NBlmock=" }, "skladnik": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/skladnik-24.08.0.tar.xz", - "hash": "sha256-U1Q3bJAnOyxAQyxdAlFZlqnMMZEZeU/bisxjoBxG2Yg=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/skladnik-24.08.1.tar.xz", + "hash": "sha256-o76i2B2B5vWkbp0SEZtDjJlH97nAxXdB7uzBo+ATGOk=" }, "spectacle": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/spectacle-24.08.0.tar.xz", - "hash": "sha256-jTcTXG7dYvCfXmAEvvlHMxRmzyD97XlFBQDcgC3RrYw=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/spectacle-24.08.1.tar.xz", + "hash": "sha256-6DUYuyPFYpT8eGBkNBN2YOAnPBt5QaFbuglXE1TM1Mg=" }, "step": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/step-24.08.0.tar.xz", - "hash": "sha256-bI89lq4xelB+0rRUQcUQ5+92qbm+rrz35WiCkokTblE=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/step-24.08.1.tar.xz", + "hash": "sha256-aBdO/5L6WKaq94AwvselXWjvVJNPqlJ/MsoiIbGJPvY=" }, "svgpart": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/svgpart-24.08.0.tar.xz", - "hash": "sha256-IWvu1JWcImFb1x5NStM1AdpNK8MNqgUXlLne6vp+EzQ=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/svgpart-24.08.1.tar.xz", + "hash": "sha256-OAdmUcGQoZnqU4afgaczR/3pBIdTGQ8vFzy11LUbdXQ=" }, "sweeper": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/sweeper-24.08.0.tar.xz", - "hash": "sha256-F2t9cbNEVF7av45GyfcBxKAXAfMW4HeN7U8ZgW82TN8=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/sweeper-24.08.1.tar.xz", + "hash": "sha256-hpe5ZJU9hKKVcQcCAzB4HZ9LhXeWgNst43bVcdhqdt0=" }, "telly-skout": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/telly-skout-24.08.0.tar.xz", - "hash": "sha256-oSdsoZ2+N2DdXvrp7V+D/LHV7AbU84h81QDBeaKxZ/M=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/telly-skout-24.08.1.tar.xz", + "hash": "sha256-9biRXD2n9HYtL90FHJ9JXD9DCrDm64ydyclP2qANpPk=" }, "tokodon": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/tokodon-24.08.0.tar.xz", - "hash": "sha256-JNQhc5hmCGCCd/F/VofMJfbJOWjAkjlFzKJ9oTrkB4o=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/tokodon-24.08.1.tar.xz", + "hash": "sha256-YtuG+0Cow2+IQhoJsN3/7NgmapwlIEuRg3Fd2810Mzs=" }, "umbrello": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/umbrello-24.08.0.tar.xz", - "hash": "sha256-eQnTzMyH2yOVQhrFIqNGMQgbBhsLHaHvAIEV26sBEro=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/umbrello-24.08.1.tar.xz", + "hash": "sha256-WiT4p0L4lSsDXfCSMeR58fT93TWSFrgD233+/l74isI=" }, "yakuake": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/yakuake-24.08.0.tar.xz", - "hash": "sha256-9hVhGaS+i30Hp6yb8kJ+TW2GICJafgshxd3vceRizm0=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/yakuake-24.08.1.tar.xz", + "hash": "sha256-sLajoPtOFoaFVA46Go3SpNA89Z3bpv2PwFgFnxVaxhs=" }, "zanshin": { - "version": "24.08.0", - "url": "mirror://kde/stable/release-service/24.08.0/src/zanshin-24.08.0.tar.xz", - "hash": "sha256-mi3GYJ1Okzpj6usIr0B1LMFKjsZXmn/g3V2YgRjJSLc=" + "version": "24.08.1", + "url": "mirror://kde/stable/release-service/24.08.1/src/zanshin-24.08.1.tar.xz", + "hash": "sha256-yB7hLZE8irYDA8V8ldeY3FuebePgZ4Mlgy3nCWgprU0=" } } \ No newline at end of file From 7689b6f5dd56f95ae067ee4074829efd350009f1 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 19:08:32 +0300 Subject: [PATCH 208/232] linux_testing: 6.11-rc6 -> 6.11-rc7 --- pkgs/os-specific/linux/kernel/kernels-org.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/kernels-org.json b/pkgs/os-specific/linux/kernel/kernels-org.json index 870d954fb07e..42feed6114d3 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -1,7 +1,7 @@ { "testing": { - "version": "6.11-rc6", - "hash": "sha256:15lx6da4kdsipxlv7my8wamss5i001r4cc2ab1icvw1ms207b5in" + "version": "6.11-rc7", + "hash": "sha256:17c8vwvra042mib1s60nqqai0s7qc0qkvrf0j7ziqmy2llq8cbxy" }, "6.1": { "version": "6.1.109", From 9082362fda01d868a432d2a16e11b4747a1fc825 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 19:08:35 +0300 Subject: [PATCH 209/232] linux_6_10: 6.10.9 -> 6.10.10 --- pkgs/os-specific/linux/kernel/kernels-org.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/kernels-org.json b/pkgs/os-specific/linux/kernel/kernels-org.json index 42feed6114d3..479293c83177 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -36,7 +36,7 @@ "hash": "sha256:08ngskni7d9wi93vlwcmbdg7sb2jl1drhhzn62k9nsrg1r7crrss" }, "6.10": { - "version": "6.10.9", - "hash": "sha256:0n385x7hc5pqxiiy26ampgzf56wqfvydg70va27xrhm7w1q9nj54" + "version": "6.10.10", + "hash": "sha256:1kcvh1g3p1sj4q34ylcmm43824f97z4k695lcxnzp7pbnlsyg1z6" } } From 9be115990ecc036eae0a3fadfd751df38e351f2a Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 19:08:38 +0300 Subject: [PATCH 210/232] linux_6_6: 6.6.50 -> 6.6.51 --- pkgs/os-specific/linux/kernel/kernels-org.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/kernels-org.json b/pkgs/os-specific/linux/kernel/kernels-org.json index 479293c83177..ca1c740bb4a3 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -24,8 +24,8 @@ "hash": "sha256:1n86dfv8qcm21z3inrz0n7gnwik7s51xfrabyq8ajy15b93a2fpi" }, "6.6": { - "version": "6.6.50", - "hash": "sha256:0vp8sbm9fqj09vh7fib39rw18n5cj8zfydqsr5h00898mxny6rf0" + "version": "6.6.51", + "hash": "sha256:1cq8l3n12gnk6kgms5c7v71l199ip8lc9fpx7s8w8y88cla9l30w" }, "6.8": { "version": "6.8.12", From 2f9ebbe92208924cf0a2293b7813cee598837624 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 19:08:42 +0300 Subject: [PATCH 211/232] linux_6_1: 6.1.109 -> 6.1.110 --- pkgs/os-specific/linux/kernel/kernels-org.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/kernels-org.json b/pkgs/os-specific/linux/kernel/kernels-org.json index ca1c740bb4a3..d92214e7e7e1 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -4,8 +4,8 @@ "hash": "sha256:17c8vwvra042mib1s60nqqai0s7qc0qkvrf0j7ziqmy2llq8cbxy" }, "6.1": { - "version": "6.1.109", - "hash": "sha256:1h8sq3p075wyfgs2vjg8y1dbj27dj16c4rbxpgfwahinqq5g8bvk" + "version": "6.1.110", + "hash": "sha256:0slgvwldjdyi5vzhgriamkmrj4p942yacclgcw29331gfjs39gly" }, "5.15": { "version": "5.15.166", From ab9afc141c94a520186f03a7ab59ea9d618728fc Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 19:08:45 +0300 Subject: [PATCH 212/232] linux_5_15: 5.15.166 -> 5.15.167 --- pkgs/os-specific/linux/kernel/kernels-org.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/kernels-org.json b/pkgs/os-specific/linux/kernel/kernels-org.json index d92214e7e7e1..c09700496144 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -8,8 +8,8 @@ "hash": "sha256:0slgvwldjdyi5vzhgriamkmrj4p942yacclgcw29331gfjs39gly" }, "5.15": { - "version": "5.15.166", - "hash": "sha256:1krri2sf0hvvgai0z9lp8h12gcmpigapb42qxs2pcnxqb7ialv75" + "version": "5.15.167", + "hash": "sha256:0c6s6l5sz9ibws7bymb393ww0z9i3amsk1yx0bahipz3xhc1yxdi" }, "5.10": { "version": "5.10.225", From 1677ac8d2dab890908161b57445cd2b5db7ec248 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 19:08:48 +0300 Subject: [PATCH 213/232] linux_5_10: 5.10.225 -> 5.10.226 --- pkgs/os-specific/linux/kernel/kernels-org.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/kernels-org.json b/pkgs/os-specific/linux/kernel/kernels-org.json index c09700496144..f0b2aacb5251 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -12,8 +12,8 @@ "hash": "sha256:0c6s6l5sz9ibws7bymb393ww0z9i3amsk1yx0bahipz3xhc1yxdi" }, "5.10": { - "version": "5.10.225", - "hash": "sha256:0770757ildcc0cs6alnb5cspg6ysg2wqly9z5q1vjf3mh0xbzmw5" + "version": "5.10.226", + "hash": "sha256:19hwwl5sbya65mch7fwmji2cli9b8796zjqbmkybjrarg1j9m8gn" }, "5.4": { "version": "5.4.283", From 8c909c6cf30c08e4eee0bc616fe390e6f3d3dd3c Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 19:08:50 +0300 Subject: [PATCH 214/232] linux_5_4: 5.4.283 -> 5.4.284 --- pkgs/os-specific/linux/kernel/kernels-org.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/kernels-org.json b/pkgs/os-specific/linux/kernel/kernels-org.json index f0b2aacb5251..38c63bc86ea9 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -16,8 +16,8 @@ "hash": "sha256:19hwwl5sbya65mch7fwmji2cli9b8796zjqbmkybjrarg1j9m8gn" }, "5.4": { - "version": "5.4.283", - "hash": "sha256:15zpw5vwi8c4yjap28lzrwdvj3yrynnbx6vw8aqiqamlk4qnl315" + "version": "5.4.284", + "hash": "sha256:0axkwfhvq3w2072xjqww476qa3rjglxyqmf72mlp9b5ymswil8kp" }, "4.19": { "version": "4.19.321", From a4821155b872ac32eeac19989d2b950c99e03836 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 19:08:53 +0300 Subject: [PATCH 215/232] linux_4_19: 4.19.321 -> 4.19.322 --- pkgs/os-specific/linux/kernel/kernels-org.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/kernels-org.json b/pkgs/os-specific/linux/kernel/kernels-org.json index 38c63bc86ea9..5007b5bf8ccc 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -20,8 +20,8 @@ "hash": "sha256:0axkwfhvq3w2072xjqww476qa3rjglxyqmf72mlp9b5ymswil8kp" }, "4.19": { - "version": "4.19.321", - "hash": "sha256:1n86dfv8qcm21z3inrz0n7gnwik7s51xfrabyq8ajy15b93a2fpi" + "version": "4.19.322", + "hash": "sha256:0qj106lj554y1kdqj8kwyf7pk9bvrrpgz6s8zyh7d61mk7wws9sf" }, "6.6": { "version": "6.6.51", From e05f91dc7b4953b0c205f96727ee143bdfb029b3 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 12 Sep 2024 19:09:14 +0300 Subject: [PATCH 216/232] linux_latest-libre: 19624 -> 19631 --- pkgs/os-specific/linux/kernel/linux-libre.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-libre.nix b/pkgs/os-specific/linux/kernel/linux-libre.nix index 46b412c30226..7f4f1aa29116 100644 --- a/pkgs/os-specific/linux/kernel/linux-libre.nix +++ b/pkgs/os-specific/linux/kernel/linux-libre.nix @@ -1,8 +1,8 @@ { stdenv, lib, fetchsvn, linux , scripts ? fetchsvn { url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/"; - rev = "19624"; - sha256 = "0q3kg7dqvsiar3m70mvmn6bkkm4k1zn4fbh5r8ynib753wlhf504"; + rev = "19631"; + sha256 = "0hydmrdwqrrmrnk6r583m7c2hq1k68c9c8yqjc0bd6q4x7ys32ci"; } , ... } @ args: From 95376efebc4dd2e4e89c39a38a246b2ca2b6e253 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 6 Sep 2024 08:38:27 +0200 Subject: [PATCH 217/232] ocamlPackages.piaf: add missing dependencies --- pkgs/development/ocaml-modules/piaf/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/piaf/default.nix b/pkgs/development/ocaml-modules/piaf/default.nix index cc964df9ffbd..991764336657 100644 --- a/pkgs/development/ocaml-modules/piaf/default.nix +++ b/pkgs/development/ocaml-modules/piaf/default.nix @@ -1,6 +1,7 @@ { alcotest-lwt , buildDunePackage , ocaml +, bigarray-compat , dune-site , fetchurl , gluten-lwt-unix @@ -9,6 +10,7 @@ , magic-mime , mrmime , psq +, rresult , uri }: @@ -19,8 +21,6 @@ buildDunePackage rec { pname = "piaf"; version = "0.1.0"; - duneVersion = "3"; - src = fetchurl { url = "https://github.com/anmonteiro/piaf/releases/download/${version}/piaf-${version}.tbz"; hash = "sha256-AMO+ptGox33Bi7u/H0SaeCU88XORrRU3UbLof3EwcmU="; @@ -31,10 +31,12 @@ buildDunePackage rec { ''; propagatedBuildInputs = [ + bigarray-compat logs magic-mime mrmime psq + rresult uri gluten-lwt-unix ]; From 7f69b25e326f3868af77ebd0ff2990b08ed40fd6 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 6 Sep 2024 07:16:44 +0200 Subject: [PATCH 218/232] =?UTF-8?q?ocamlPackages.mrmime:=200.5.0=20?= =?UTF-8?q?=E2=86=92=200.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ocaml-modules/mrmime/default.nix | 31 +++++++------------ 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/pkgs/development/ocaml-modules/mrmime/default.nix b/pkgs/development/ocaml-modules/mrmime/default.nix index a2d118765616..8e9a3e1049e1 100644 --- a/pkgs/development/ocaml-modules/mrmime/default.nix +++ b/pkgs/development/ocaml-modules/mrmime/default.nix @@ -2,14 +2,12 @@ , alcotest , angstrom , base64 -, bigarray-compat , bigarray-overlap , bigstringaf , buildDunePackage , cmdliner , emile -, fetchzip -, fmt +, fetchurl , fpath , hxd , ipaddr @@ -17,56 +15,49 @@ , ke , lib , mirage-crypto-rng -, ocaml , pecu , prettym , ptime , rosetta -, rresult , unstrctrd , uutf }: buildDunePackage rec { pname = "mrmime"; - version = "0.5.0"; + version = "0.6.1"; - src = fetchzip { - url = "https://github.com/mirage/mrmime/releases/download/v${version}/mrmime-v${version}.tbz"; - sha256 = "14k67v0b39b8jq3ny2ymi8g8sqx2gd81mlzsjphdzdqnlx6fk716"; + src = fetchurl { + url = "https://github.com/mirage/mrmime/releases/download/v${version}/mrmime-${version}.tbz"; + hash = "sha256-Dzsr7xPzu5RIzIdubF4OAAjHJY7CdBVnHRZxQbcCsBY="; }; - duneVersion = "3"; - - buildInputs = [ cmdliner hxd ]; - propagatedBuildInputs = [ angstrom base64 emile - fmt ipaddr ke pecu prettym ptime rosetta - rresult unstrctrd uutf - afl-persistent - bigarray-compat bigarray-overlap bigstringaf - fpath - mirage-crypto-rng ]; checkInputs = [ + afl-persistent alcotest + cmdliner + fpath + hxd jsonm + mirage-crypto-rng ]; - doCheck = lib.versionOlder ocaml.version "5.0"; + doCheck = true; meta = { description = "Parser and generator of mail in OCaml"; From 6bbe65701d19e5c3e3fc0d1ae00c5c5ea6a48168 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 17:50:03 +0100 Subject: [PATCH 219/232] swift: add LLVM patches for SWIG 4 --- .../compilers/swift/compiler/default.nix | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/pkgs/development/compilers/swift/compiler/default.nix b/pkgs/development/compilers/swift/compiler/default.nix index 31cbd298603a..e4a15321fb09 100644 --- a/pkgs/development/compilers/swift/compiler/default.nix +++ b/pkgs/development/compilers/swift/compiler/default.nix @@ -13,6 +13,7 @@ , python3Packages , git , fetchpatch +, fetchpatch2 , makeWrapper , gnumake , file @@ -302,6 +303,32 @@ in stdenv.mkDerivation { patch -p1 -d llvm-project/llvm -i ${./patches/llvm-module-cache.patch} + for lldbPatch in ${lib.escapeShellArgs [ + # Fixes for SWIG 4 + (fetchpatch2 { + url = "https://github.com/llvm/llvm-project/commit/81fc5f7909a4ef5a8d4b5da2a10f77f7cb01ba63.patch?full_index=1"; + stripLen = 1; + hash = "sha256-Znw+C0uEw7lGETQLKPBZV/Ymo2UigZS+Hv/j1mUo7p0="; + }) + (fetchpatch2 { + url = "https://github.com/llvm/llvm-project/commit/f0a25fe0b746f56295d5c02116ba28d2f965c175.patch?full_index=1"; + stripLen = 1; + hash = "sha256-QzVeZzmc99xIMiO7n//b+RNAvmxghISKQD93U2zOgFI="; + }) + (fetchpatch2 { + url = "https://github.com/llvm/llvm-project/commit/ba35c27ec9aa9807f5b4be2a0c33ca9b045accc7.patch?full_index=1"; + stripLen = 1; + hash = "sha256-LXl+WbpmWZww5xMDrle3BM2Tw56v8k9LO1f1Z1/wDTs="; + }) + (fetchpatch2 { + url = "https://github.com/llvm/llvm-project/commit/9ec115978ea2bdfc60800cd3c21264341cdc8b0a.patch?full_index=1"; + stripLen = 1; + hash = "sha256-u0zSejEjfrH3ZoMFm1j+NVv2t5AP9cE5yhsrdTS1dG4="; + }) + ]}; do + patch -p1 -d llvm-project/lldb -i $lldbPatch + done + patch -p1 -d llvm-project/clang -i ${./patches/clang-toolchain-dir.patch} patch -p1 -d llvm-project/clang -i ${./patches/clang-wrap.patch} patch -p1 -d llvm-project/clang -i ${../../llvm/12/clang/purity.patch} From b0c086e313e1f9877512cb946af8c7595bf6d365 Mon Sep 17 00:00:00 2001 From: nicoo Date: Thu, 12 Sep 2024 17:39:52 +0000 Subject: [PATCH 220/232] =?UTF-8?q?pw-viz:=200.2.0=20=E2=86=92=200.3.0,=20?= =?UTF-8?q?fix=20build=20(#340974)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/applications/misc/pw-viz/Cargo.lock | 359 +++++++++------------- pkgs/applications/misc/pw-viz/default.nix | 4 +- 2 files changed, 141 insertions(+), 222 deletions(-) diff --git a/pkgs/applications/misc/pw-viz/Cargo.lock b/pkgs/applications/misc/pw-viz/Cargo.lock index aa97cc770b7b..f4d1de269cc3 100644 --- a/pkgs/applications/misc/pw-viz/Cargo.lock +++ b/pkgs/applications/misc/pw-viz/Cargo.lock @@ -92,28 +92,20 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "once_cell", "serde", "version_check", ] [[package]] -name = "aho-corasick" -version = "0.7.20" +name = "annotate-snippets" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" +checksum = "ccaf7e9dfbb6ab22c82e473cd1a8a7bd313c19a5b7e40970f3d89ef5a5c9e81e" dependencies = [ - "memchr", -] - -[[package]] -name = "ansi_term" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" -dependencies = [ - "winapi", + "unicode-width", + "yansi-term", ] [[package]] @@ -189,25 +181,23 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "bindgen" -version = "0.59.2" +version = "0.69.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8" +checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" dependencies = [ - "bitflags", + "annotate-snippets", + "bitflags 2.5.0", "cexpr", "clang-sys", - "clap", - "env_logger", + "itertools", "lazy_static", "lazycell", - "log", - "peeking_take_while", "proc-macro2", "quote", "regex", "rustc-hash", "shlex", - "which", + "syn 2.0.66", ] [[package]] @@ -216,6 +206,12 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" + [[package]] name = "block" version = "0.1.6" @@ -264,7 +260,7 @@ checksum = "5fe233b960f12f8007e3db2d136e3cb1c291bfd7396e384ee76025fc1a3932b4" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -316,12 +312,6 @@ dependencies = [ "smallvec", ] -[[package]] -name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - [[package]] name = "cfg-if" version = "1.0.0" @@ -354,21 +344,6 @@ dependencies = [ "libloading", ] -[[package]] -name = "clap" -version = "2.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" -dependencies = [ - "ansi_term", - "atty", - "bitflags", - "strsim 0.8.0", - "textwrap", - "unicode-width", - "vec_map", -] - [[package]] name = "clipboard-win" version = "4.4.2" @@ -395,7 +370,7 @@ version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" dependencies = [ - "bitflags", + "bitflags 1.3.2", "block", "cocoa-foundation", "core-foundation", @@ -411,7 +386,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318" dependencies = [ - "bitflags", + "bitflags 1.3.2", "block", "core-foundation", "core-graphics-types", @@ -441,6 +416,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "convert_case" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" +dependencies = [ + "unicode-segmentation", +] + [[package]] name = "cookie-factory" version = "0.3.2" @@ -469,7 +453,7 @@ version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" dependencies = [ - "bitflags", + "bitflags 1.3.2", "core-foundation", "core-graphics-types", "foreign-types 0.3.2", @@ -482,7 +466,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" dependencies = [ - "bitflags", + "bitflags 1.3.2", "core-foundation", "foreign-types 0.3.2", "libc", @@ -506,7 +490,7 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] @@ -568,8 +552,8 @@ dependencies = [ "ident_case", "proc-macro2", "quote", - "strsim 0.10.0", - "syn", + "strsim", + "syn 1.0.107", ] [[package]] @@ -582,7 +566,7 @@ dependencies = [ "ident_case", "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -593,7 +577,7 @@ checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" dependencies = [ "darling_core 0.13.4", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -604,7 +588,7 @@ checksum = "7618812407e9402654622dd402b0a89dff9ba93badd6540781526117b92aab7e" dependencies = [ "darling_core 0.14.2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -615,7 +599,7 @@ checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -624,7 +608,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "dirs-sys-next", ] @@ -820,20 +804,7 @@ dependencies = [ "darling 0.14.2", "proc-macro2", "quote", - "syn", -] - -[[package]] -name = "env_logger" -version = "0.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" -dependencies = [ - "atty", - "humantime", - "log", - "regex", - "termcolor", + "syn 1.0.107", ] [[package]] @@ -853,27 +824,6 @@ dependencies = [ "serde", ] -[[package]] -name = "errno" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" -dependencies = [ - "errno-dragonfly", - "libc", - "winapi", -] - -[[package]] -name = "errno-dragonfly" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" -dependencies = [ - "cc", - "libc", -] - [[package]] name = "error-code" version = "2.3.1" @@ -937,7 +887,7 @@ checksum = "c8469d0d40519bc608ec6863f1cc88f3f1deee15913f2f3b3e573d81ed38cccc" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -967,7 +917,7 @@ version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74eadec9d0a5c28c54bb9882e54787275152a4e36ce206b45d7451384e5bf5fb" dependencies = [ - "bitflags", + "bitflags 1.3.2", "freetype-sys", "libc", ] @@ -999,7 +949,7 @@ version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", "wasi", ] @@ -1039,7 +989,7 @@ version = "0.30.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "524d807cd49a0c56a53ef9a6738cd15e7c8c4e9d37a3b7fdb3c250c1cd5bf7a3" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg_aliases", "cgl", "cocoa", @@ -1100,12 +1050,6 @@ dependencies = [ "libc", ] -[[package]] -name = "humantime" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" - [[package]] name = "ident_case" version = "1.0.1" @@ -1128,12 +1072,21 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", "wasm-bindgen", "web-sys", ] +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.5" @@ -1199,9 +1152,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.139" +version = "0.2.155" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" +checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" [[package]] name = "libloading" @@ -1209,33 +1162,35 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "winapi", ] [[package]] name = "libspa" -version = "0.5.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8bb02bbc8d550e2f0a31989c61e1ac3c883bab2edee49ffcb5d5ca18266786d" +checksum = "65f3a4b81b2a2d8c7f300643676202debd1b7c929dbf5c9bb89402ea11d19810" dependencies = [ - "bitflags", + "bitflags 2.5.0", "cc", + "convert_case", "cookie-factory", - "errno", "libc", "libspa-sys", + "nix 0.27.1", "nom", "system-deps", ] [[package]] name = "libspa-sys" -version = "0.5.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e8d2e38d6cdd10d7d78eb0cb409c127cf16da2c296d9623375551e309616d4d" +checksum = "bf0d9716420364790e85cbb9d3ac2c950bde16a7dd36f3209b7dfdfc4a24d01f" dependencies = [ "bindgen", + "cc", "system-deps", ] @@ -1255,7 +1210,7 @@ version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] @@ -1330,7 +1285,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" dependencies = [ - "bitflags", + "bitflags 1.3.2", "jni-sys", "ndk-sys", "num_enum", @@ -1370,7 +1325,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -1382,27 +1337,14 @@ dependencies = [ "jni-sys", ] -[[package]] -name = "nix" -version = "0.14.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" -dependencies = [ - "bitflags", - "cc", - "cfg-if 0.1.10", - "libc", - "void", -] - [[package]] name = "nix" version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" dependencies = [ - "bitflags", - "cfg-if 1.0.0", + "bitflags 1.3.2", + "cfg-if", "libc", "memoffset", ] @@ -1414,12 +1356,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" dependencies = [ "autocfg", - "bitflags", - "cfg-if 1.0.0", + "bitflags 1.3.2", + "cfg-if", "libc", "memoffset", ] +[[package]] +name = "nix" +version = "0.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" +dependencies = [ + "bitflags 2.5.0", + "cfg-if", + "libc", +] + [[package]] name = "nohash-hasher" version = "0.2.0" @@ -1454,7 +1407,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -1552,7 +1505,7 @@ version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ff9f3fef3968a3ec5945535ed654cb38ff72d7495a25619e2247fb15a2ed9ba" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", "redox_syscall", "smallvec", @@ -1565,12 +1518,6 @@ version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba" -[[package]] -name = "peeking_take_while" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" - [[package]] name = "percent-encoding" version = "2.2.0" @@ -1585,27 +1532,26 @@ checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" [[package]] name = "pipewire" -version = "0.5.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d80fef8219c37f479f3d62d70167f3daaa90b71a083f7fd88d69e49f05f0ecdc" +checksum = "08e645ba5c45109106d56610b3ee60eb13a6f2beb8b74f8dc8186cf261788dda" dependencies = [ "anyhow", - "bitflags", - "errno", + "bitflags 2.5.0", "libc", "libspa", "libspa-sys", + "nix 0.27.1", "once_cell", "pipewire-sys", - "signal", "thiserror", ] [[package]] name = "pipewire-sys" -version = "0.5.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f6d4262ea1fd3b01786046d1892cc49e9578d872faf8723d95dc7affc810ee4" +checksum = "849e188f90b1dda88fe2bfe1ad31fe5f158af2c98f80fb5d13726c44f3f01112" dependencies = [ "bindgen", "libspa-sys", @@ -1624,7 +1570,7 @@ version = "0.17.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638" dependencies = [ - "bitflags", + "bitflags 1.3.2", "crc32fast", "flate2", "miniz_oxide", @@ -1649,16 +1595,16 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.49" +version = "1.0.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5" +checksum = "ec96c6a92621310b51366f1e28d05ef11489516e93be030060e5fc12024a49d6" dependencies = [ "unicode-ident", ] [[package]] name = "pw-viz" -version = "0.2.0" +version = "0.3.0" dependencies = [ "eframe", "egui", @@ -1673,9 +1619,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.23" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" dependencies = [ "proc-macro2", ] @@ -1734,7 +1680,7 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ - "bitflags", + "bitflags 1.3.2", ] [[package]] @@ -1754,8 +1700,6 @@ version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" dependencies = [ - "aho-corasick", - "memchr", "regex-syntax", ] @@ -1772,7 +1716,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "300a51053b1cb55c80b7a9fde4120726ddf25ca241a1cbb926626f62fb136bff" dependencies = [ "base64", - "bitflags", + "bitflags 1.3.2", "serde", ] @@ -1841,7 +1785,7 @@ checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -1871,16 +1815,6 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" -[[package]] -name = "signal" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f6ce83b159ab6984d2419f495134972b48754d13ff2e3f8c998339942b56ed9" -dependencies = [ - "libc", - "nix 0.14.1", -] - [[package]] name = "simple_logger" version = "4.0.0" @@ -1915,7 +1849,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f307c47d32d2715eb2e0ece5589057820e0e5e70d07c247d1063e844e107f454" dependencies = [ - "bitflags", + "bitflags 1.3.2", "calloop", "dlib", "lazy_static", @@ -1944,12 +1878,6 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0" -[[package]] -name = "strsim" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" - [[package]] name = "strsim" version = "0.10.0" @@ -1967,6 +1895,17 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "syn" +version = "2.0.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "system-deps" version = "6.0.3" @@ -1980,24 +1919,6 @@ dependencies = [ "version-compare", ] -[[package]] -name = "termcolor" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" -dependencies = [ - "winapi-util", -] - -[[package]] -name = "textwrap" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" -dependencies = [ - "unicode-width", -] - [[package]] name = "thiserror" version = "1.0.38" @@ -2015,7 +1936,7 @@ checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -2056,7 +1977,7 @@ dependencies = [ "arrayref", "arrayvec 0.5.2", "bytemuck", - "cfg-if 1.0.0", + "cfg-if", "png", "safe_arch", "tiny-skia-path", @@ -2102,7 +2023,7 @@ version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "pin-project-lite", "tracing-core", ] @@ -2143,6 +2064,12 @@ dependencies = [ "tinyvec", ] +[[package]] +name = "unicode-segmentation" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" + [[package]] name = "unicode-width" version = "0.1.10" @@ -2178,12 +2105,6 @@ version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" -[[package]] -name = "void" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" - [[package]] name = "walkdir" version = "2.3.2" @@ -2207,7 +2128,7 @@ version = "0.2.83" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "wasm-bindgen-macro", ] @@ -2222,7 +2143,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn", + "syn 1.0.107", "wasm-bindgen-shared", ] @@ -2232,7 +2153,7 @@ version = "0.4.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", "wasm-bindgen", "web-sys", @@ -2256,7 +2177,7 @@ checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -2273,7 +2194,7 @@ version = "0.29.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715" dependencies = [ - "bitflags", + "bitflags 1.3.2", "downcast-rs", "libc", "nix 0.24.3", @@ -2312,7 +2233,7 @@ version = "0.29.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6" dependencies = [ - "bitflags", + "bitflags 1.3.2", "wayland-client", "wayland-commons", "wayland-scanner", @@ -2380,17 +2301,6 @@ dependencies = [ "windows 0.43.0", ] -[[package]] -name = "which" -version = "4.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" -dependencies = [ - "either", - "libc", - "once_cell", -] - [[package]] name = "winapi" version = "0.3.9" @@ -2470,7 +2380,7 @@ checksum = "9539b6bd3eadbd9de66c9666b22d802b833da7e996bc06896142e09854a61767" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -2579,7 +2489,7 @@ version = "0.27.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb796d6fbd86b2fd896c9471e6f04d39d750076ebe5680a3958f00f5ab97657c" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cocoa", "core-foundation", "core-graphics", @@ -2662,3 +2572,12 @@ name = "xml-rs" version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" + +[[package]] +name = "yansi-term" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe5c30ade05e61656247b2e334a031dfd0cc466fadef865bdcdea8d537951bf1" +dependencies = [ + "winapi", +] diff --git a/pkgs/applications/misc/pw-viz/default.nix b/pkgs/applications/misc/pw-viz/default.nix index 04dcf343e541..25a4978d9885 100644 --- a/pkgs/applications/misc/pw-viz/default.nix +++ b/pkgs/applications/misc/pw-viz/default.nix @@ -14,13 +14,13 @@ rustPlatform.buildRustPackage rec { pname = "pw-viz"; - version = "0.2.0"; + version = "0.3.0"; src = fetchFromGitHub { owner = "ax9d"; repo = pname; rev = "v${version}"; - sha256 = "sha256-lw4whdh8tNoS5XUlamQCq8f8z8K59uD90PSSo3skeyo="; + sha256 = "sha256-fB7PnWWahCMKhGREg6neLmOZjh2OWLu61Vpmfsl03wA="; }; cargoLock = { From b4bfb990484c0abda144d4f113a8287110408725 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 18:37:08 +0100 Subject: [PATCH 221/232] swift: disable `zerocallusedregs` on all AArch64 --- pkgs/development/compilers/swift/compiler/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/swift/compiler/default.nix b/pkgs/development/compilers/swift/compiler/default.nix index e4a15321fb09..d3e2017958fd 100644 --- a/pkgs/development/compilers/swift/compiler/default.nix +++ b/pkgs/development/compilers/swift/compiler/default.nix @@ -392,7 +392,7 @@ in stdenv.mkDerivation { ''; # > clang-15-unwrapped: error: unsupported option '-fzero-call-used-regs=used-gpr' for target 'arm64-apple-macosx10.9.0' - hardeningDisable = lib.optional stdenv.isDarwin "zerocallusedregs"; + hardeningDisable = lib.optional stdenv.isAarch64 "zerocallusedregs"; configurePhase = '' export SWIFT_SOURCE_ROOT="$PWD" From bfab6b0f83860193ff1873a3f15449f9427e11bf Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 11:25:58 +0100 Subject: [PATCH 222/232] swig3: drop This version is no longer used for anything in the tree. --- pkgs/development/tools/misc/swig/3.x.nix | 36 ------------------------ pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 1 - 3 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 pkgs/development/tools/misc/swig/3.x.nix diff --git a/pkgs/development/tools/misc/swig/3.x.nix b/pkgs/development/tools/misc/swig/3.x.nix deleted file mode 100644 index 4b266044ff84..000000000000 --- a/pkgs/development/tools/misc/swig/3.x.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, pcre }: - -stdenv.mkDerivation rec { - pname = "swig"; - version = "3.0.12"; - - src = fetchFromGitHub { - owner = "swig"; - repo = "swig"; - rev = "rel-${version}"; - sha256 = "1wyffskbkzj5zyhjnnpip80xzsjcr3p0q5486z3wdwabnysnhn8n"; - }; - - PCRE_CONFIG = "${pcre.dev}/bin/pcre-config"; - nativeBuildInputs = [ autoconf automake libtool bison ]; - buildInputs = [ pcre ]; - - configureFlags = [ "--without-tcl" ]; - - # Disable ccache documentation as it needs yodl - postPatch = '' - sed -i '/man1/d' CCache/Makefile.in - ''; - - preConfigure = '' - ./autogen.sh - ''; - - meta = with lib; { - description = "Interface compiler that connects C/C++ code to higher-level languages"; - homepage = "https://swig.org/"; - # Different types of licenses available: http://www.swig.org/Release/LICENSE . - license = licenses.gpl3Plus; - platforms = with platforms; linux ++ darwin; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 9c7df2a52020..c196c223b895 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1482,6 +1482,7 @@ mapAliases ({ swift-im = throw "swift-im has been removed as it is unmaintained and depends on deprecated Python 2 / Qt WebKit"; # Added 2023-01-06 swig1 = throw "swig1 has been removed as it is obsolete"; # Added 2024-08-23 swig2 = throw "swig2 has been removed as it is obsolete"; # Added 2024-08-23 + swig3 = throw "swig3 has been removed as it is obsolete"; # Added 2024-09-12 swtpm-tpm2 = swtpm; # Added 2021-02-26 Sylk = sylk; # Added 2024-06-12 symbiyosys = sby; # Added 2024-08-18 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c12c64eac07b..525e8ff5e2fe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18955,7 +18955,6 @@ with pkgs; systemfd = callPackage ../development/tools/systemfd { }; - swig3 = callPackage ../development/tools/misc/swig/3.x.nix { }; swig4 = callPackage ../development/tools/misc/swig/4.nix { }; swig = swig4; swigWithJava = swig; From 44e6a1456fc05325fa00e641fb8d0f900874098a Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 11:33:58 +0100 Subject: [PATCH 223/232] swig: move to `pkgs/by-name` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let’s see if we can’t keep only one version of this going forward. `swigWithJava` has been an alias since 2009(!), so let’s just drop it. --- .../tools/misc/swig/4.nix => by-name/sw/swig/package.nix} | 0 pkgs/top-level/aliases.nix | 2 ++ pkgs/top-level/all-packages.nix | 4 ---- 3 files changed, 2 insertions(+), 4 deletions(-) rename pkgs/{development/tools/misc/swig/4.nix => by-name/sw/swig/package.nix} (100%) diff --git a/pkgs/development/tools/misc/swig/4.nix b/pkgs/by-name/sw/swig/package.nix similarity index 100% rename from pkgs/development/tools/misc/swig/4.nix rename to pkgs/by-name/sw/swig/package.nix diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index c196c223b895..cd191e12b83d 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1483,6 +1483,8 @@ mapAliases ({ swig1 = throw "swig1 has been removed as it is obsolete"; # Added 2024-08-23 swig2 = throw "swig2 has been removed as it is obsolete"; # Added 2024-08-23 swig3 = throw "swig3 has been removed as it is obsolete"; # Added 2024-09-12 + swig4 = swig; # Added 2024-09-12 + swigWithJava = throw "swigWithJava has been removed as the main swig package has supported Java since 2009"; # Added 2024-09-12 swtpm-tpm2 = swtpm; # Added 2021-02-26 Sylk = sylk; # Added 2024-06-12 symbiyosys = sby; # Added 2024-08-18 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 525e8ff5e2fe..4ec1ff406922 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18955,10 +18955,6 @@ with pkgs; systemfd = callPackage ../development/tools/systemfd { }; - swig4 = callPackage ../development/tools/misc/swig/4.nix { }; - swig = swig4; - swigWithJava = swig; - c2ffi = callPackage ../development/tools/misc/c2ffi { }; c0 = callPackage ../development/compilers/c0 { From e3360d745c36caed0b868e0447e57fb30b1fb9d9 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 11:34:43 +0100 Subject: [PATCH 224/232] swig: format with `nixfmt-rfc-style` --- pkgs/by-name/sw/swig/package.nix | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sw/swig/package.nix b/pkgs/by-name/sw/swig/package.nix index bae53ad42f9d..1ccaf4fb13fe 100644 --- a/pkgs/by-name/sw/swig/package.nix +++ b/pkgs/by-name/sw/swig/package.nix @@ -1,4 +1,13 @@ -{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, pcre2 }: +{ + lib, + stdenv, + fetchFromGitHub, + autoconf, + automake, + libtool, + bison, + pcre2, +}: stdenv.mkDerivation (finalAttrs: { pname = "swig"; @@ -12,7 +21,12 @@ stdenv.mkDerivation (finalAttrs: { }; PCRE_CONFIG = "${pcre2.dev}/bin/pcre-config"; - nativeBuildInputs = [ autoconf automake libtool bison ]; + nativeBuildInputs = [ + autoconf + automake + libtool + bison + ]; buildInputs = [ pcre2 ]; configureFlags = [ "--without-tcl" ]; From 2181ab3e2290410c80e83ccda4496439b11d871c Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 11:37:35 +0100 Subject: [PATCH 225/232] treewide: unpin SWIG 4 --- pkgs/applications/science/electronics/kicad/base.nix | 4 ++-- pkgs/applications/science/electronics/openroad/default.nix | 4 ++-- pkgs/applications/video/obs-studio/default.nix | 4 ++-- pkgs/by-name/ba/babeltrace/package.nix | 4 ++-- pkgs/by-name/ca/casadi/package.nix | 4 ++-- pkgs/development/libraries/gdcm/default.nix | 4 ++-- pkgs/development/libraries/gpgme/default.nix | 4 ++-- .../libraries/science/math/or-tools/default.nix | 4 ++-- pkgs/development/libraries/simpleitk/default.nix | 4 ++-- pkgs/development/python-modules/lttng/default.nix | 4 ++-- pkgs/development/python-modules/pykcs11/default.nix | 4 ++-- pkgs/development/python-modules/pythonocc-core/default.nix | 4 ++-- pkgs/development/python-modules/simpleitk/default.nix | 4 ++-- pkgs/tools/security/grap/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 7 +------ 15 files changed, 29 insertions(+), 34 deletions(-) diff --git a/pkgs/applications/science/electronics/kicad/base.nix b/pkgs/applications/science/electronics/kicad/base.nix index b5f721c3d772..310f9b1c6067 100644 --- a/pkgs/applications/science/electronics/kicad/base.nix +++ b/pkgs/applications/science/electronics/kicad/base.nix @@ -39,7 +39,7 @@ , pcre2 , libdeflate -, swig4 +, swig , python , wxPython , opencascade-occt_7_6 @@ -168,7 +168,7 @@ stdenv.mkDerivation rec { curl openssl boost - swig4 + swig python unixODBC libdeflate diff --git a/pkgs/applications/science/electronics/openroad/default.nix b/pkgs/applications/science/electronics/openroad/default.nix index 0c929fe47c18..65bf094c2a2c 100644 --- a/pkgs/applications/science/electronics/openroad/default.nix +++ b/pkgs/applications/science/electronics/openroad/default.nix @@ -8,7 +8,7 @@ , flex , git , python3 -, swig4 +, swig , boost179 , cbc # for clp , cimg @@ -51,7 +51,7 @@ mkDerivation rec { flex git pkg-config - swig4 + swig ]; buildInputs = [ diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix index cff0c5560e24..5f3f68fb03f5 100644 --- a/pkgs/applications/video/obs-studio/default.nix +++ b/pkgs/applications/video/obs-studio/default.nix @@ -29,7 +29,7 @@ , wrapGAppsHook3 , scriptingSupport ? true , luajit -, swig4 +, swig , python3 , alsaSupport ? stdenv.isLinux , alsa-lib @@ -94,7 +94,7 @@ stdenv.mkDerivation (finalAttrs: { wrapGAppsHook3 wrapQtAppsHook ] - ++ optional scriptingSupport swig4; + ++ optional scriptingSupport swig; buildInputs = [ curl diff --git a/pkgs/by-name/ba/babeltrace/package.nix b/pkgs/by-name/ba/babeltrace/package.nix index 4d651d5e700e..93673789fb8f 100644 --- a/pkgs/by-name/ba/babeltrace/package.nix +++ b/pkgs/by-name/ba/babeltrace/package.nix @@ -11,7 +11,7 @@ elfutils, enablePython ? false, pythonPackages ? null, - swig4, + swig, }: stdenv.mkDerivation (finalAttrs: { @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { pkg-config ] ++ lib.optionals enablePython [ - swig4 + swig pythonPackages.setuptools ]; buildInputs = [ diff --git a/pkgs/by-name/ca/casadi/package.nix b/pkgs/by-name/ca/casadi/package.nix index 9c39449704df..dda1eed048d0 100644 --- a/pkgs/by-name/ca/casadi/package.nix +++ b/pkgs/by-name/ca/casadi/package.nix @@ -30,7 +30,7 @@ #sundials, superscs, spral, - swig4, + swig, tinyxml-2, withUnfree ? false, }: @@ -139,7 +139,7 @@ stdenv.mkDerivation (finalAttrs: { #sundials superscs spral - swig4 + swig tinyxml-2 ] ++ lib.optionals withUnfree [ diff --git a/pkgs/development/libraries/gdcm/default.nix b/pkgs/development/libraries/gdcm/default.nix index cacfb778c7bc..33afe0ea7c54 100644 --- a/pkgs/development/libraries/gdcm/default.nix +++ b/pkgs/development/libraries/gdcm/default.nix @@ -10,7 +10,7 @@ , libiconv , enablePython ? false , python ? null -, swig4 +, swig , expat , libuuid , openjpeg @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { ApplicationServices Cocoa libiconv - ] ++ lib.optionals enablePython [ swig4 python ]; + ] ++ lib.optionals enablePython [ swig python ]; disabledTests = [ # require networking: diff --git a/pkgs/development/libraries/gpgme/default.nix b/pkgs/development/libraries/gpgme/default.nix index d6c2a10edb8c..fa4bb1be6dd3 100644 --- a/pkgs/development/libraries/gpgme/default.nix +++ b/pkgs/development/libraries/gpgme/default.nix @@ -15,7 +15,7 @@ buildPackages, qtbase ? null, pythonSupport ? false, - swig4 ? null, + swig ? null, # only for passthru.tests libsForQt5, qt6Packages, @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { python3.pkgs.setuptools python3.pkgs.wheel ncurses - swig4 + swig which ]; diff --git a/pkgs/development/libraries/science/math/or-tools/default.nix b/pkgs/development/libraries/science/math/or-tools/default.nix index cb4670204d11..43ad807a9d65 100644 --- a/pkgs/development/libraries/science/math/or-tools/default.nix +++ b/pkgs/development/libraries/science/math/or-tools/default.nix @@ -14,7 +14,7 @@ , python , re2 , stdenv -, swig4 +, swig , unzip , zlib }: @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { ensureNewerSourcesForZipFilesHook pkg-config python.pythonOnBuildForHost - swig4 + swig unzip ] ++ lib.optionals stdenv.isDarwin [ DarwinTools diff --git a/pkgs/development/libraries/simpleitk/default.nix b/pkgs/development/libraries/simpleitk/default.nix index fbdfd20441d9..c17064729f96 100644 --- a/pkgs/development/libraries/simpleitk/default.nix +++ b/pkgs/development/libraries/simpleitk/default.nix @@ -2,7 +2,7 @@ , stdenv , fetchFromGitHub , cmake -, swig4 +, swig , lua , elastix , itk @@ -21,7 +21,7 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake - swig4 + swig ]; buildInputs = [ elastix diff --git a/pkgs/development/python-modules/lttng/default.nix b/pkgs/development/python-modules/lttng/default.nix index 735eb4408a32..521def0abf77 100644 --- a/pkgs/development/python-modules/lttng/default.nix +++ b/pkgs/development/python-modules/lttng/default.nix @@ -2,7 +2,7 @@ toPythonModule, python, lttng-tools, - swig4, + swig, }: toPythonModule ( @@ -15,7 +15,7 @@ toPythonModule ( { pname = "lttng"; - nativeBuildInputs = nativeBuildInputs ++ [ swig4 ]; + nativeBuildInputs = nativeBuildInputs ++ [ swig ]; configureFlags = configureFlags ++ [ "--enable-python-bindings" diff --git a/pkgs/development/python-modules/pykcs11/default.nix b/pkgs/development/python-modules/pykcs11/default.nix index 5700fd4523a6..b4fdeb938147 100644 --- a/pkgs/development/python-modules/pykcs11/default.nix +++ b/pkgs/development/python-modules/pykcs11/default.nix @@ -4,7 +4,7 @@ callPackage, fetchPypi, setuptools, - swig4, + swig, }: buildPythonPackage rec { @@ -19,7 +19,7 @@ buildPythonPackage rec { build-system = [ setuptools ]; - nativeBuildInputs = [ swig4 ]; + nativeBuildInputs = [ swig ]; pypaBuildFlags = [ "--skip-dependency-check" ]; diff --git a/pkgs/development/python-modules/pythonocc-core/default.nix b/pkgs/development/python-modules/pythonocc-core/default.nix index 1718cf91593e..f01fb4ca467e 100644 --- a/pkgs/development/python-modules/pythonocc-core/default.nix +++ b/pkgs/development/python-modules/pythonocc-core/default.nix @@ -15,7 +15,7 @@ libXmu, opencascade-occt, rapidjson, - swig4, + swig, }: stdenv.mkDerivation rec { @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake - swig4 + swig ]; buildInputs = [ python diff --git a/pkgs/development/python-modules/simpleitk/default.nix b/pkgs/development/python-modules/simpleitk/default.nix index f241cd0a2968..e15a2a7a726d 100644 --- a/pkgs/development/python-modules/simpleitk/default.nix +++ b/pkgs/development/python-modules/simpleitk/default.nix @@ -2,7 +2,7 @@ buildPythonPackage, pythonOlder, cmake, - swig4, + swig, elastix, itk, numpy, @@ -27,7 +27,7 @@ buildPythonPackage rec { nativeBuildInputs = [ cmake - swig4 + swig scikit-build ]; propagatedBuildInputs = [ diff --git a/pkgs/tools/security/grap/default.nix b/pkgs/tools/security/grap/default.nix index 4d8f347e048a..7f8d931fbb6a 100644 --- a/pkgs/tools/security/grap/default.nix +++ b/pkgs/tools/security/grap/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, boost, libseccomp, flex, swig4, bison, cmake, python3 }: +{ lib, stdenv, fetchFromGitHub, boost, libseccomp, flex, swig, bison, cmake, python3 }: stdenv.mkDerivation rec { pname = "grap"; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { cmake flex python3 - swig4 + swig ]; buildInputs = [ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4ec1ff406922..5388c601eaa9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32022,9 +32022,7 @@ with pkgs; open-policy-agent = callPackage ../development/tools/open-policy-agent { }; - openmm = callPackage ../development/libraries/science/chemistry/openmm { - swig = swig4; - }; + openmm = callPackage ../development/libraries/science/chemistry/openmm { }; openshift = callPackage ../applications/networking/cluster/openshift { }; @@ -37631,9 +37629,6 @@ with pkgs; faiss = callPackage ../development/libraries/science/math/faiss { pythonPackages = python3Packages; - # faiss wants the "-doxygen" option - # available only since swig4 - swig = swig4; }; faissWithCuda = faiss.override { From db5f130b432c501ea758f79ff1dd23cfc4a24cb0 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 11:37:35 +0100 Subject: [PATCH 226/232] gforth: adjust comment This no longer uses the `swig3` package. --- pkgs/development/compilers/gforth/swig.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/gforth/swig.nix b/pkgs/development/compilers/gforth/swig.nix index 92d4c2dcc97f..84cdaee6a36a 100644 --- a/pkgs/development/compilers/gforth/swig.nix +++ b/pkgs/development/compilers/gforth/swig.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -## for updating to swig4, see +## for updating to SWIG 4, see ## https://github.com/GeraldWodni/swig/pull/6 (swig.overrideAttrs (old: { version = "3.0.9-forth"; From 7d043503327e7f119330af5a48e4d827cd954b9e Mon Sep 17 00:00:00 2001 From: haruki7049 Date: Wed, 7 Feb 2024 21:33:12 +0900 Subject: [PATCH 227/232] peertube-viewer: init at 1.8.6 Author: haruki7049 Co-Authored-By: cab --- pkgs/by-name/pe/peertube-viewer/package.nix | 27 +++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pkgs/by-name/pe/peertube-viewer/package.nix diff --git a/pkgs/by-name/pe/peertube-viewer/package.nix b/pkgs/by-name/pe/peertube-viewer/package.nix new file mode 100644 index 000000000000..5d3583c2f73c --- /dev/null +++ b/pkgs/by-name/pe/peertube-viewer/package.nix @@ -0,0 +1,27 @@ +{ + lib, + fetchFromGitLab, + rustPlatform, + youtube-dl, +}: + +rustPlatform.buildRustPackage rec { + pname = "peertube-viewer"; + version = "1.8.6"; + + src = fetchFromGitLab { + owner = "peertube-viewer"; + repo = "peertube-viewer-rs"; + rev = "v1.8.6"; + hash = "sha256-ZzeWk01migUrKR7GndtNo0kLYSCUXCg0H0eCXgrDXaM=="; + }; + + cargoHash = "sha256-5u5240PL5cKhnHsT7sRdccrbZBAbRN+fa+FhJP1gX/4=="; + + meta = with lib; { + description = "A simple CLI browser for the peertube federated video platform"; + homepage = "https://gitlab.com/peertube-viewer/peertube-viewer-rs"; + license = licenses.agpl3Only; + maintainers = with maintainers; [ haruki7049 ]; + }; +} From 1218148c55d713b91105675e6a2192e63d90a389 Mon Sep 17 00:00:00 2001 From: Nathan Henrie Date: Thu, 12 Sep 2024 12:44:17 -0600 Subject: [PATCH 228/232] nixpkgs-manual.lib-docs: fix sandboxed build on darwin The darwin sandbox prevents this nix call from accessing `/nix/ store/.links` resulting in a build failure: ``` > error: getting status of '/nix/store/.links': Operation not permitted ``` Thanks to @emilazy for the workaround! Fixes https://github.com/NixOS/nixpkgs/issues/339808 --- doc/doc-support/lib-function-docs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/doc-support/lib-function-docs.nix b/doc/doc-support/lib-function-docs.nix index 8c9673d887bf..4306fa926278 100644 --- a/doc/doc-support/lib-function-docs.nix +++ b/doc/doc-support/lib-function-docs.nix @@ -106,6 +106,7 @@ stdenvNoCC.mkDerivation { --arg nixpkgsPath "./." \ --argstr revision ${nixpkgs.rev or "master"} \ --argstr libsetsJSON ${lib.escapeShellArg (builtins.toJSON libsets)} \ + --store $(mktemp -d) \ > locations.json function docgen { From e7bcab801cdfe48ba982b0d654cc7230a9de6b13 Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Wed, 11 Sep 2024 23:27:42 +0200 Subject: [PATCH 229/232] nixos/samba: ensure global section is always first The order of the [global] section matters as settings defined there are only applied to shares that are defines after it. --- nixos/modules/services/network-filesystems/samba.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/network-filesystems/samba.nix b/nixos/modules/services/network-filesystems/samba.nix index 2b46a14b672a..f236d44d5d0e 100644 --- a/nixos/modules/services/network-filesystems/samba.nix +++ b/nixos/modules/services/network-filesystems/samba.nix @@ -6,7 +6,11 @@ let cfg = config.services.samba; settingsFormat = pkgs.formats.ini { }; - configFile = settingsFormat.generate "smb.conf" cfg.settings; + # Ensure the global section is always first + globalConfigFile = settingsFormat.generate "smb-global.conf" { global = cfg.settings.global; }; + sharesConfigFile = settingsFormat.generate "smb-shares.conf" (lib.removeAttrs cfg.settings [ "global" ]); + + configFile = pkgs.concatText "smb.conf" [ globalConfigFile sharesConfigFile ]; in From bbf4cf5e77307117d206b58c19281e6195982697 Mon Sep 17 00:00:00 2001 From: Enrico Tassi Date: Thu, 12 Sep 2024 21:09:04 +0200 Subject: [PATCH 230/232] coqPackages.hierarchy-builder: do not pass VFILES if version >= 1.1.0 (#341171) Co-authored-by: Pierre Roux --- .../development/coq-modules/hierarchy-builder/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/coq-modules/hierarchy-builder/default.nix b/pkgs/development/coq-modules/hierarchy-builder/default.nix index aee4d65b7cfa..944ce621a08d 100644 --- a/pkgs/development/coq-modules/hierarchy-builder/default.nix +++ b/pkgs/development/coq-modules/hierarchy-builder/default.nix @@ -29,8 +29,6 @@ let hb = mkCoqDerivation { mlPlugin = true; - extraInstallFlags = [ "VFILES=structures.v" ]; - meta = with lib; { description = "High level commands to declare a hierarchy based on packed classes"; maintainers = with maintainers; [ cohencyril siraben ]; @@ -41,6 +39,8 @@ hb.overrideAttrs (o: lib.optionalAttrs (lib.versions.isGe "1.2.0" o.version || o.version == "dev") { buildPhase = "make build"; } // - lib.optionalAttrs (lib.versions.isGe "1.1.0" o.version || o.version == "dev") - { installFlags = [ "DESTDIR=$(out)" ] ++ o.installFlags; } + (if lib.versions.isGe "1.1.0" o.version || o.version == "dev" then + { installFlags = [ "DESTDIR=$(out)" ] ++ o.installFlags; } + else + { installFlags = [ "VFILES=structures.v" ] ++ o.installFlags; }) ) From 0043156d184c61a084a79972e9fb99f2622054dc Mon Sep 17 00:00:00 2001 From: bleetube Date: Thu, 12 Sep 2024 14:24:39 -0700 Subject: [PATCH 231/232] lnd: 0.18.2 -> 0.18.3 --- pkgs/applications/blockchains/lnd/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/blockchains/lnd/default.nix b/pkgs/applications/blockchains/lnd/default.nix index 87bc32bd1af5..0ff6542b9710 100644 --- a/pkgs/applications/blockchains/lnd/default.nix +++ b/pkgs/applications/blockchains/lnd/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "lnd"; - version = "0.18.2-beta"; + version = "0.18.3-beta"; src = fetchFromGitHub { owner = "lightningnetwork"; repo = "lnd"; rev = "v${version}"; - hash = "sha256-qqvLnJlFGeCizm6T9iUwvYLjWpAeZwbuzQlUUopwrjc="; + hash = "sha256-CNCMVYuLUVmNgW5YTTn3TR1+2UCLbF3/gXXZWiREj/E="; }; - vendorHash = "sha256-BxNtZzwmKJ/kZk7ndtEUC4bMGpd8LEhFFu4Z49bKydE="; + vendorHash = "sha256-dr8Ra8ywy+Zow8JF3K21XZ7lDIIdxvjRz+OD3E+348o="; subPackages = [ "cmd/lncli" "cmd/lnd" ]; From 51b8f2f4680bcd5ca37b7739f687c745c3dace6f Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 10 Sep 2024 12:20:02 +0200 Subject: [PATCH 232/232] virglrenderer: 1.0.1 -> 1.1.0 --- pkgs/development/libraries/virglrenderer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/virglrenderer/default.nix b/pkgs/development/libraries/virglrenderer/default.nix index f0e844360cca..e23285511afa 100644 --- a/pkgs/development/libraries/virglrenderer/default.nix +++ b/pkgs/development/libraries/virglrenderer/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { pname = "virglrenderer"; - version = "1.0.1"; + version = "1.1.0"; src = fetchurl { url = "https://gitlab.freedesktop.org/virgl/virglrenderer/-/archive/${version}/virglrenderer-${version}.tar.bz2"; - hash = "sha256-U8uPrdCPUmDuV4M/wkiFZUgUOLx6jjTz4RTRLMnZ25o="; + hash = "sha256-XGgKst7ENLKCUv0jU/HiEtTYe+7b9sHnSufj0PZVsb0="; }; separateDebugInfo = true;