From c0d940b21b1aa7e466a86c17d0ba23b56baae6ed Mon Sep 17 00:00:00 2001 From: linsui <36977733+linsui@users.noreply.github.com> Date: Sun, 17 Nov 2024 22:26:06 +0800 Subject: [PATCH 001/118] opendht: 3.2.0 -> 3.2.0-unstable-2025-01-05 --- pkgs/development/libraries/opendht/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/opendht/default.nix b/pkgs/development/libraries/opendht/default.nix index e7408ba37e67..42cd4744db02 100644 --- a/pkgs/development/libraries/opendht/default.nix +++ b/pkgs/development/libraries/opendht/default.nix @@ -12,22 +12,22 @@ , libargon2 , jsoncpp , restinio -, http-parser +, llhttp , openssl , fmt , enableProxyServerAndClient ? false , enablePushNotifications ? false }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "opendht"; - version = "3.2.0"; + version = "3.2.0-unstable-2025-01-05"; src = fetchFromGitHub { owner = "savoirfairelinux"; repo = "opendht"; - rev = "v${version}"; - hash = "sha256-s172Sj1EvV7Lmnmd+xyKmYF2cDEa8Bot10ovggEsOFg="; + rev = "5237f0a3b3eb8965f294de706ad73596569ae1dd"; + hash = "sha256-qErVKyZQR/asJ8qr0sRDaXZ8jUV7RaSLnJka5baWa7Q="; }; nativeBuildInputs = [ @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { ] ++ lib.optionals enableProxyServerAndClient [ jsoncpp restinio - http-parser + llhttp openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security From d41c444e5b409738e133454ec56cf3e6fde4ffdd Mon Sep 17 00:00:00 2001 From: linsui <36977733+linsui@users.noreply.github.com> Date: Fri, 17 Jan 2025 15:42:40 +0800 Subject: [PATCH 002/118] opendht: format --- .../development/libraries/opendht/default.nix | 101 ++++++++++-------- 1 file changed, 58 insertions(+), 43 deletions(-) diff --git a/pkgs/development/libraries/opendht/default.nix b/pkgs/development/libraries/opendht/default.nix index 42cd4744db02..39478e3e92b2 100644 --- a/pkgs/development/libraries/opendht/default.nix +++ b/pkgs/development/libraries/opendht/default.nix @@ -1,22 +1,23 @@ -{ lib -, stdenv -, fetchFromGitHub -, Security -, cmake -, pkg-config -, asio -, nettle -, gnutls -, msgpack-cxx -, readline -, libargon2 -, jsoncpp -, restinio -, llhttp -, openssl -, fmt -, enableProxyServerAndClient ? false -, enablePushNotifications ? false +{ + lib, + stdenv, + fetchFromGitHub, + Security, + cmake, + pkg-config, + asio, + nettle, + gnutls, + msgpack-cxx, + readline, + libargon2, + jsoncpp, + restinio, + llhttp, + openssl, + fmt, + enableProxyServerAndClient ? false, + enablePushNotifications ? false, }: stdenv.mkDerivation { @@ -35,29 +36,34 @@ stdenv.mkDerivation { pkg-config ]; - buildInputs = [ - asio - fmt - nettle - gnutls - msgpack-cxx - readline - libargon2 - ] ++ lib.optionals enableProxyServerAndClient [ - jsoncpp - restinio - llhttp - openssl - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ - Security - ]; + buildInputs = + [ + asio + fmt + nettle + gnutls + msgpack-cxx + readline + libargon2 + ] + ++ lib.optionals enableProxyServerAndClient [ + jsoncpp + restinio + llhttp + openssl + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + Security + ]; - cmakeFlags = lib.optionals enableProxyServerAndClient [ - "-DOPENDHT_PROXY_SERVER=ON" - "-DOPENDHT_PROXY_CLIENT=ON" - ] ++ lib.optionals enablePushNotifications [ - "-DOPENDHT_PUSH_NOTIFICATIONS=ON" - ]; + cmakeFlags = + lib.optionals enableProxyServerAndClient [ + "-DOPENDHT_PROXY_SERVER=ON" + "-DOPENDHT_PROXY_CLIENT=ON" + ] + ++ lib.optionals enablePushNotifications [ + "-DOPENDHT_PUSH_NOTIFICATIONS=ON" + ]; # https://github.com/savoirfairelinux/opendht/issues/612 postPatch = '' @@ -66,13 +72,22 @@ stdenv.mkDerivation { --replace '\$'{prefix}/'$'{CMAKE_INSTALL_INCLUDEDIR} '$'{CMAKE_INSTALL_FULL_INCLUDEDIR} ''; - outputs = [ "out" "lib" "dev" "man" ]; + outputs = [ + "out" + "lib" + "dev" + "man" + ]; meta = with lib; { description = "C++11 Kademlia distributed hash table implementation"; homepage = "https://github.com/savoirfairelinux/opendht"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ taeer olynch thoughtpolice ]; + maintainers = with maintainers; [ + taeer + olynch + thoughtpolice + ]; platforms = platforms.unix; }; } From 930016505abdf85cf36f333909392831d80cd321 Mon Sep 17 00:00:00 2001 From: Ole Mussmann Date: Mon, 20 Jan 2025 22:22:42 +0100 Subject: [PATCH 003/118] maintainers: add olemussmann --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 8aea451f3a0a..aca952fdffe1 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -17043,6 +17043,12 @@ githubId = 72201; name = "Ole Jørgen Brønner"; }; + olemussmann = { + email = "nixpkgs-account@ole.mn"; + github = "OleMussmann"; + githubId = 14004859; + name = "Ole Mussmann"; + }; olifloof = { email = "benmoreosm@gmail.com"; github = "olifloof"; From f6d24e9f4803e6fcd0e7a85d54a00518e65bfd2c Mon Sep 17 00:00:00 2001 From: Charles Hall Date: Sun, 26 Jan 2025 22:11:13 -0800 Subject: [PATCH 004/118] serious-sans: drop --- .../manual/release-notes/rl-2505.section.md | 2 ++ pkgs/by-name/se/serious-sans/package.nix | 34 ------------------- pkgs/top-level/aliases.nix | 1 + 3 files changed, 3 insertions(+), 34 deletions(-) delete mode 100644 pkgs/by-name/se/serious-sans/package.nix diff --git a/nixos/doc/manual/release-notes/rl-2505.section.md b/nixos/doc/manual/release-notes/rl-2505.section.md index 4b888f502d00..912714512726 100644 --- a/nixos/doc/manual/release-notes/rl-2505.section.md +++ b/nixos/doc/manual/release-notes/rl-2505.section.md @@ -229,6 +229,8 @@ - `poac` has been renamed to `cabinpkg` to match the upstream name change but an alias has been added. See the [new name announcement](https://github.com/orgs/cabinpkg/discussions/1052) for more details. +- `serious-sans` has been removed because upstream changed its name to Serious Shanns, which is not currently packaged. + - `racket_7_9` has been removed, as it is insecure. It is recommended to use Racket 8 instead. - `services.mongodb.initialRootPassword` has been replaced with the more secure option [`services.mongodb.initialRootPasswordFile`](#opt-services.mongodb.initialRootPasswordFile) diff --git a/pkgs/by-name/se/serious-sans/package.nix b/pkgs/by-name/se/serious-sans/package.nix deleted file mode 100644 index 64159fc2d482..000000000000 --- a/pkgs/by-name/se/serious-sans/package.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ - stdenvNoCC, - lib, - fetchFromGitHub, -}: - -stdenvNoCC.mkDerivation { - pname = "serious-sans"; - version = "unstable-2023-09-04"; - - src = fetchFromGitHub { - owner = "kaBeech"; - repo = "serious-sans"; - rev = "a23f2b303fa3b1ec8788c5abba67b44ca5a3cc0a"; - hash = "sha256-sPb9ZVDTBaZHT0Q/I9OfP7BMYJXPBiKkebzKgUHNuZM="; - }; - - installPhase = '' - runHook preInstall - - mkdir -p $out/share/fonts/serious-sans - cp SeriousSans/*/* $out/share/fonts/serious-sans - - runHook postInstall - ''; - - meta = { - homepage = "https://github.com/kaBeech/serious-sans"; - description = "Legible monospace font for playful professionals"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ CobaltCause ]; - platforms = lib.platforms.all; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index c206664e0356..d8ddd54aa6c3 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1246,6 +1246,7 @@ mapAliases { semeru-jre-bin-16 = throw "Semeru 16 has been removed as it has reached its end of life"; # Added 2024-08-01 sensu = throw "sensu has been removed as the upstream project is deprecated. Consider using `sensu-go`"; # Added 2024-10-28 serial-unit-testing = throw "'serial-unit-testing' has been removed due to lack of upstream maintenance"; # Added 2025-01-25 + serious-sans = throw "'serious-sans' has been renamed to 'serious-shanns', which is not currently packaged"; # Added 2025-01-26 session-desktop-appimage = session-desktop; sequoia = sequoia-sq; # Added 2023-06-26 sexp = sexpp; # Added 2023-07-03 From 5c35166b71353cb32c89e344ba78c37c6d82ff0f Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Mon, 27 Jan 2025 17:26:08 +0100 Subject: [PATCH 005/118] lib/modules: improve mismatching class error mesage --- lib/modules.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/modules.nix b/lib/modules.nix index 79b8f25c2f43..4d2d8e0b08b6 100644 --- a/lib/modules.nix +++ b/lib/modules.nix @@ -367,7 +367,14 @@ let if m._class == null || m._class == class then m else - throw "The module ${m._file or m.key} was imported into ${class} instead of ${m._class}." + throw '' + The module `${m._file or m.key}` (class: ${lib.strings.escapeNixString m._class}) cannot be imported into a module evaluation that expects class ${lib.strings.escapeNixString class}. + + Help: + - Ensure that you are importing the correct module. + - Verify that the module's `_class`, ${lib.strings.escapeNixString m._class} matches the expected `class` ${lib.strings.escapeNixString class}. + - If you are using a custom class, make sure it is correctly defined and used consistently across your modules. + '' else m: m; From b3884c8b7d7f6e7bb3efb2199894b6cbdcea43c7 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Wed, 29 Jan 2025 11:50:16 +0100 Subject: [PATCH 006/118] lib/modules: tests change expected error for class mismatch --- lib/tests/modules.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tests/modules.sh b/lib/tests/modules.sh index beb191aed0c1..c86e0aeec6dc 100755 --- a/lib/tests/modules.sh +++ b/lib/tests/modules.sh @@ -538,12 +538,12 @@ checkConfigOutput '^1$' config.sub.specialisation.value ./extendModules-168767-i # Class checks, evalModules checkConfigOutput '^{}$' config.ok.config ./class-check.nix checkConfigOutput '"nixos"' config.ok.class ./class-check.nix -checkConfigError 'The module .*/module-class-is-darwin.nix was imported into nixos instead of darwin.' config.fail.config ./class-check.nix -checkConfigError 'The module foo.nix#darwinModules.default was imported into nixos instead of darwin.' config.fail-anon.config ./class-check.nix +checkConfigError 'The module `.*/module-class-is-darwin.nix`.*?expects class "nixos".' config.fail.config ./class-check.nix +checkConfigError 'The module `foo.nix#darwinModules.default`.*?expects class "nixos".' config.fail-anon.config ./class-check.nix # Class checks, submoduleWith checkConfigOutput '^{}$' config.sub.nixosOk ./class-check.nix -checkConfigError 'The module .*/module-class-is-darwin.nix was imported into nixos instead of darwin.' config.sub.nixosFail.config ./class-check.nix +checkConfigError 'The module `.*/module-class-is-darwin.nix`.*?expects class "nixos".' config.sub.nixosFail.config ./class-check.nix # submoduleWith type merge with different class checkConfigError 'A submoduleWith option is declared multiple times with conflicting class values "darwin" and "nixos".' config.sub.mergeFail.config ./class-check.nix From 9d336fde19e854b8c60cdd9d3ef2ca9c4f4cd883 Mon Sep 17 00:00:00 2001 From: Nobody_alias_N <165517462+Nobody-alias-N@users.noreply.github.com> Date: Sun, 2 Feb 2025 00:36:20 +0200 Subject: [PATCH 007/118] jupp: 40 -> 41 --- pkgs/by-name/ju/jupp/package.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/ju/jupp/package.nix b/pkgs/by-name/ju/jupp/package.nix index 7ef4c878658e..908eea9d6102 100644 --- a/pkgs/by-name/ju/jupp/package.nix +++ b/pkgs/by-name/ju/jupp/package.nix @@ -8,15 +8,15 @@ stdenv.mkDerivation rec { pname = "jupp"; - version = "40"; + version = "41"; srcName = "joe-3.1${pname}${version}"; src = fetchurl { urls = [ "https://www.mirbsd.org/MirOS/dist/jupp/${srcName}.tgz" - "https://pub.allbsd.org/MirOS/dist/jupp/${srcName}.tgz" + "https://mbsd.evolvis.org/MirOS/dist/jupp/${srcName}.tgz" ]; - sha256 = "S+1DnN5/K+KU6W5J7z6RPqkPvl6RTbiIQD46J+gDWxo="; + hash = "sha256-e7jqivUZvv7/+T7DyeMhCNfyuDIWybx7Aa71CYhhyC8="; }; preConfigure = "chmod +x ./configure"; @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { "--enable-termidx" ]; - meta = with lib; { + meta = { homepage = "http://www.mirbsd.org/jupp.htm"; downloadPage = "https://www.mirbsd.org/MirOS/dist/jupp/"; description = "Portable fork of Joe's editor"; @@ -46,8 +46,8 @@ stdenv.mkDerivation rec { and has a lot of bugs fixed. It is based upon an older version of joe because these behave better overall. ''; - license = licenses.gpl1Only; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = with platforms; unix; + license = lib.licenses.gpl1Only; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = with lib.platforms; unix; }; } From 7c22280a25e473ea12a6423c459e0eec09f07127 Mon Sep 17 00:00:00 2001 From: goldenboy Date: Sun, 2 Feb 2025 09:07:03 -0500 Subject: [PATCH 008/118] saleae-logic-2: 2.4.13 -> 2.4.22 --- pkgs/by-name/sa/saleae-logic-2/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sa/saleae-logic-2/package.nix b/pkgs/by-name/sa/saleae-logic-2/package.nix index 6a447c587660..037a299a2054 100644 --- a/pkgs/by-name/sa/saleae-logic-2/package.nix +++ b/pkgs/by-name/sa/saleae-logic-2/package.nix @@ -6,10 +6,10 @@ }: let pname = "saleae-logic-2"; - version = "2.4.13"; + version = "2.4.22"; src = fetchurl { - url = "https://downloads.saleae.com/logic2/Logic-${version}-linux-x64.AppImage"; - hash = "sha256-0GIZQKQDY3arDUlxjQKWOHDB3j76xVwkx5H+8q+d0Rc="; + url = "https://downloads2.saleae.com/logic2/Logic-${version}-linux-x64.AppImage"; + hash = "sha256-MMuuSYOVw4O/JDsXz9OneUyJMNLUUCBpAMRqCs64khk="; }; desktopItem = makeDesktopItem { name = "saleae-logic-2"; From a4f4624cc81f094782c9ab645462d8a01d96ae87 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Sun, 2 Feb 2025 17:04:43 -0300 Subject: [PATCH 009/118] nixd: 2.6.0 -> 2.6.1 --- pkgs/development/tools/language-servers/nixd/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/language-servers/nixd/default.nix b/pkgs/development/tools/language-servers/nixd/default.nix index ab873f618f22..458a1fd9eb1b 100644 --- a/pkgs/development/tools/language-servers/nixd/default.nix +++ b/pkgs/development/tools/language-servers/nixd/default.nix @@ -21,13 +21,13 @@ let common = rec { - version = "2.6.0"; + version = "2.6.1"; src = fetchFromGitHub { owner = "nix-community"; repo = "nixd"; - rev = version; - hash = "sha256-gYC7nbZsTDOA1cJIw9JRjwjgkvSzrlQonGTT21EZeWM="; + tag = version; + hash = "sha256-HbHqog4Ct8qWJegAHcEcIVNbSyzrmrFspdOk+SVUaHI="; }; nativeBuildInputs = [ From 780495a579688723dcf5e9b8074bfc163a3c7df9 Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Sun, 2 Feb 2025 13:24:10 -0800 Subject: [PATCH 010/118] uhdm: 1.84-unstable-2024-10-06 -> 1.84-unstable-2024-11-12 --- pkgs/by-name/uh/uhdm/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/uh/uhdm/package.nix b/pkgs/by-name/uh/uhdm/package.nix index 2bb3722cb266..ea59cedf155c 100644 --- a/pkgs/by-name/uh/uhdm/package.nix +++ b/pkgs/by-name/uh/uhdm/package.nix @@ -11,14 +11,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "UHDM"; # When updating this package, also consider updating science/logic/surelog - version = "1.84-unstable-2024-10-06"; + version = "1.84-unstable-2024-11-12"; src = fetchFromGitHub { owner = "chipsalliance"; repo = "UHDM"; # After we're back on a stable tag, use v${finalAttrs.version} - rev = "857f68de3ce5b6f919f3a0f489c93072751b1578"; - hash = "sha256-qHcRncsvMiSJji+JLOlfQ87+pfKg+zvlqMTXKpImvTM="; + rev = "7d90dd0e68759775d0c86885d991925096b5b496"; + hash = "sha256-msdtBAlOXwYJd0HhWmVo8oMJ6h8OUmy0ILxV1MV52PE="; fetchSubmodules = false; # we use all dependencies from nix }; From 063975120723d08af0ebf8e935a2e9b64b34f88b Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Sun, 2 Feb 2025 13:25:16 -0800 Subject: [PATCH 011/118] surelog: 1.84-unstable-2024-11-09 -> 1.84-unstable-2024-12-06 --- pkgs/by-name/su/surelog/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/su/surelog/package.nix b/pkgs/by-name/su/surelog/package.nix index 75511f68e846..f7c9cb8d8e92 100644 --- a/pkgs/by-name/su/surelog/package.nix +++ b/pkgs/by-name/su/surelog/package.nix @@ -17,14 +17,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "surelog"; - version = "1.84-unstable-2024-11-09"; + version = "1.84-unstable-2024-12-06"; src = fetchFromGitHub { owner = "chipsalliance"; repo = "surelog"; # Once we're back on a stable tag, use "v$(finalAttrs.version}" below. - rev = "da88163a02dbc16f1af3514f281b93941d371ad9"; - hash = "sha256-TIwXIMcDImZjCIiXwvT2MhukArgrWCgOf2AOvkG/55g="; + rev = "298a9cddc672cce7f25ec352f9f8f36f5b23aa4e"; + hash = "sha256-Qv4dosj2dwakNCcvu483ZMuw+LlYs4fhZTULszERLSI="; fetchSubmodules = false; # we use all dependencies from nix }; From 13b7493c0a6a15a3952d967d8e01fb298325b59a Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Sun, 2 Feb 2025 13:26:39 -0800 Subject: [PATCH 012/118] synlig: 2024-11-29 -> 2024-12-10 --- pkgs/development/compilers/yosys/plugins/synlig.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/yosys/plugins/synlig.nix b/pkgs/development/compilers/yosys/plugins/synlig.nix index 9c0f72559ff0..11070406ae86 100644 --- a/pkgs/development/compilers/yosys/plugins/synlig.nix +++ b/pkgs/development/compilers/yosys/plugins/synlig.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation (finalAttrs: { plugin = "synlig"; # The module has automatic regular releases, with date + short git hash - GIT_VERSION = "2024-11-29-10efd31"; + GIT_VERSION = "2024-12-10-2d838ed"; # Derive our package version from GIT_VERSION, remove hash, just keep date. version = builtins.concatStringsSep "-" ( From f53ceb558f77d04588ec48bc72e509d0b3b75d5e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 4 Feb 2025 02:45:57 +0000 Subject: [PATCH 013/118] dqlite: 1.18.0 -> 1.18.1 --- pkgs/by-name/dq/dqlite/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/dq/dqlite/package.nix b/pkgs/by-name/dq/dqlite/package.nix index 14d1bea4103f..127b3749fd40 100644 --- a/pkgs/by-name/dq/dqlite/package.nix +++ b/pkgs/by-name/dq/dqlite/package.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { pname = "dqlite"; - version = "1.18.0"; + version = "1.18.1"; src = fetchFromGitHub { owner = "canonical"; repo = pname; tag = "v${version}"; - hash = "sha256-sWA04CoVMR8380/PXSkMo/Ml2Gk1RNQxPC12CMVqxwE="; + hash = "sha256-7ou077ozbpH21PcvEEcprr4UYJ/X398Ph9dh5C3YyBQ="; }; nativeBuildInputs = [ autoreconfHook file pkg-config ]; From bfed661ae240648d011942236240390571aac88b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 4 Feb 2025 04:13:19 +0000 Subject: [PATCH 014/118] altair: 8.1.3 -> 8.1.4 --- pkgs/by-name/al/altair/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/al/altair/package.nix b/pkgs/by-name/al/altair/package.nix index b56f4322d0bf..f634698a4c32 100644 --- a/pkgs/by-name/al/altair/package.nix +++ b/pkgs/by-name/al/altair/package.nix @@ -7,11 +7,11 @@ let pname = "altair"; - version = "8.1.3"; + version = "8.1.4"; src = fetchurl { url = "https://github.com/imolorhe/altair/releases/download/v${version}/altair_${version}_x86_64_linux.AppImage"; - sha256 = "sha256-1NNm4HUWb6Imz9dV23fmoR77rBiJD8zI83Pm4CCvfe4="; + sha256 = "sha256-o+R3cuE+2CX1gknhISN1f+VyeKkj6y/l+c6/ivPZyBU="; }; appimageContents = appimageTools.extract { inherit pname version src; }; From 331efcd0358c5a14dd7fcef9ad7ee5380a53a2b7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 4 Feb 2025 07:40:48 +0000 Subject: [PATCH 015/118] pkgsite: 0-unstable-2025-01-21 -> 0-unstable-2025-01-31 --- pkgs/by-name/pk/pkgsite/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pk/pkgsite/package.nix b/pkgs/by-name/pk/pkgsite/package.nix index 1c3de33192a4..df8c1bb0dcc2 100644 --- a/pkgs/by-name/pk/pkgsite/package.nix +++ b/pkgs/by-name/pk/pkgsite/package.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "pkgsite"; - version = "0-unstable-2025-01-21"; + version = "0-unstable-2025-01-31"; src = fetchFromGitHub { owner = "golang"; repo = "pkgsite"; - rev = "ce52a304a0f4dccd8ae7abfdd3712c9dae7b4f34"; - hash = "sha256-6fZr9mi6SGIe7AUNv6cS6R+kBNjFbPfdamnpGclimWQ="; + rev = "50d4697cc82f2eedc49fc659871d1e81ca4c6164"; + hash = "sha256-zDUsMkhQH/KJDjUE6mw/zRF23Ad3VIfqjEIY374Y9GE="; }; vendorHash = "sha256-Z+Ji3RO2zn5vn9DXOAxyeI4OZXGOfyVdfdIsNyJHZpE="; From 1ff0d2c9e0ee67d0ec1cc81afdfd0f24860c65a9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 4 Feb 2025 11:58:52 +0000 Subject: [PATCH 016/118] python312Packages.google-cloud-pubsub: 2.27.2 -> 2.28.0 --- .../python-modules/google-cloud-pubsub/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-cloud-pubsub/default.nix b/pkgs/development/python-modules/google-cloud-pubsub/default.nix index ca7e688c01a7..02f51c149be1 100644 --- a/pkgs/development/python-modules/google-cloud-pubsub/default.nix +++ b/pkgs/development/python-modules/google-cloud-pubsub/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "google-cloud-pubsub"; - version = "2.27.2"; + version = "2.28.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -28,7 +28,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "google_cloud_pubsub"; inherit version; - hash = "sha256-2SwVbH3dDlElAI+XeJgZjXsa52YCYFZJcnG+xJCWR/4="; + hash = "sha256-kE6JS04VEhUhB3rIXJqo9Oe4UXvF+0Cd2yqsjfGgKzw="; }; build-system = [ setuptools ]; From 3c0a25d30a3e26ccf0df13cbde09539d1d3ee08a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 4 Feb 2025 12:28:53 +0000 Subject: [PATCH 017/118] alacritty-theme: 0-unstable-2025-01-21 -> 0-unstable-2025-01-27 --- pkgs/by-name/al/alacritty-theme/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/al/alacritty-theme/package.nix b/pkgs/by-name/al/alacritty-theme/package.nix index 48c698be1196..f349919d5960 100644 --- a/pkgs/by-name/al/alacritty-theme/package.nix +++ b/pkgs/by-name/al/alacritty-theme/package.nix @@ -8,13 +8,13 @@ stdenvNoCC.mkDerivation (self: { pname = "alacritty-theme"; - version = "0-unstable-2025-01-21"; + version = "0-unstable-2025-01-27"; src = fetchFromGitHub { owner = "alacritty"; repo = "alacritty-theme"; - rev = "69d07c3bc280add63906a1cebf6be326687bc9eb"; - hash = "sha256-G8sUu8GD44uqUyQ7sZrgrGxC4IOfhSn++WIc+U67zL0="; + rev = "14794c3cc2dc1b4649f8b9b79a8833d2ce5bfd60"; + hash = "sha256-Bnx72n5rRLvZcA6x+ztUA7BLscDhs2g6dkzMJr6ODzg="; sparseCheckout = [ "themes" ]; }; From f93d16662d07ab7b1f3f10d25d197282edd61d3e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 4 Feb 2025 12:30:51 +0000 Subject: [PATCH 018/118] wiremock: 3.10.0 -> 3.11.0 --- pkgs/by-name/wi/wiremock/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/wi/wiremock/package.nix b/pkgs/by-name/wi/wiremock/package.nix index e1e76c23f738..f12271f0d84d 100644 --- a/pkgs/by-name/wi/wiremock/package.nix +++ b/pkgs/by-name/wi/wiremock/package.nix @@ -10,11 +10,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "wiremock"; - version = "3.10.0"; + version = "3.11.0"; src = fetchurl { url = "mirror://maven/org/wiremock/wiremock-standalone/${finalAttrs.version}/wiremock-standalone-${finalAttrs.version}.jar"; - hash = "sha256-MnACoA2dXdV4ObCsRPIxBoxiSu5aGmw4bhjnCXQ0Ghk="; + hash = "sha256-hfR+7NVN32qidcmjzq+OIAytMNJrUppwbdVeO/OkeH4="; }; dontUnpack = true; From 9ab80f7fea3ee920afc0b2a7352bce59c3ba0ab9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 4 Feb 2025 12:52:10 +0000 Subject: [PATCH 019/118] galene: 0.96 -> 0.96.2 --- pkgs/by-name/ga/galene/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ga/galene/package.nix b/pkgs/by-name/ga/galene/package.nix index b8e5b2e4cf78..b7191239af0e 100644 --- a/pkgs/by-name/ga/galene/package.nix +++ b/pkgs/by-name/ga/galene/package.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "galene"; - version = "0.96"; + version = "0.96.2"; src = fetchFromGitHub { owner = "jech"; repo = "galene"; rev = "galene-${version}"; - hash = "sha256-E/xFh60Fzy/bRX414N1Juc7j4D8fN8CEDYPOUrNp5/4="; + hash = "sha256-Jp8kG4i1UVKIrBjPFx2FAfw/QoO6OIP3CpuzX2//if0="; }; vendorHash = "sha256-LDLKjD4qYn/Aae6GUX6gZ57+MUfKc058H+YHM0bNZV0="; From 3c316b6e6e43c1dda4cd5cea0fee9b1912b4111e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 4 Feb 2025 16:08:32 +0000 Subject: [PATCH 020/118] coroot-node-agent: 1.23.6 -> 1.23.8 --- pkgs/by-name/co/coroot-node-agent/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/co/coroot-node-agent/package.nix b/pkgs/by-name/co/coroot-node-agent/package.nix index 8c6e00ee6adc..34e6b8374718 100644 --- a/pkgs/by-name/co/coroot-node-agent/package.nix +++ b/pkgs/by-name/co/coroot-node-agent/package.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "coroot-node-agent"; - version = "1.23.6"; + version = "1.23.8"; src = fetchFromGitHub { owner = "coroot"; repo = "coroot-node-agent"; rev = "v${version}"; - hash = "sha256-o7B5PRc7HXzro9mNvX0Amc9U8RE8wFT3oiEEz9elHB0="; + hash = "sha256-fuV6YAj6LgPrJcpbAGGhREfJeDVz0FlTO9hoGlHIOQw="; }; vendorHash = "sha256-SxyIlyDHuu8Ls1+/rujWE9elZiTfSYWIrV8vP5xsqTU="; From 7eeeae929033eda631d19e5115f8ec90a570a69d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 4 Feb 2025 18:45:26 +0000 Subject: [PATCH 021/118] twilio-cli: 5.22.9 -> 5.22.10 --- pkgs/by-name/tw/twilio-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tw/twilio-cli/package.nix b/pkgs/by-name/tw/twilio-cli/package.nix index ed4c6ced0cf3..acfa7428ceba 100644 --- a/pkgs/by-name/tw/twilio-cli/package.nix +++ b/pkgs/by-name/tw/twilio-cli/package.nix @@ -8,11 +8,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "twilio-cli"; - version = "5.22.9"; + version = "5.22.10"; src = fetchzip { url = "https://twilio-cli-prod.s3.amazonaws.com/twilio-v${finalAttrs.version}/twilio-v${finalAttrs.version}.tar.gz"; - hash = "sha256-drQUlu5xc9HUlVP/OHDDWNEaSxT/90yhiKYh9bq2G4E="; + hash = "sha256-ZesjUeAoOuNWITzM1qjWsvh2DMehyy8XJDhecylx4V4="; }; buildInputs = [ nodejs-slim ]; From d9b4e920b15a21eaf43ef3c5417c22e3712b3bc2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 4 Feb 2025 20:07:04 +0000 Subject: [PATCH 022/118] python312Packages.python-docs-theme: 2024.12 -> 2025.2 --- pkgs/development/python-modules/python-docs-theme/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-docs-theme/default.nix b/pkgs/development/python-modules/python-docs-theme/default.nix index baa986db0e2b..dabe52ca149a 100644 --- a/pkgs/development/python-modules/python-docs-theme/default.nix +++ b/pkgs/development/python-modules/python-docs-theme/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "python-docs-theme"; - version = "2024.12"; + version = "2025.2"; pyproject = true; disabled = pythonOlder "3.9"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "python"; repo = "python-docs-theme"; tag = version; - hash = "sha256-LZFcKmFnALZ5ZV8XbRfT74Wv5r7he/y58mCu4uydgw8="; + hash = "sha256-+QOtlgWGPcuKZOfuE0l08GUetR0DZvMzsk8Xl8KaZcQ="; }; build-system = [ flit-core ]; From 330ca4303aea23fdc96600ba1b87f1a2a2488021 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 5 Feb 2025 02:35:21 +0000 Subject: [PATCH 023/118] byedpi: 0.16 -> 0.16.4 --- pkgs/by-name/by/byedpi/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/by/byedpi/package.nix b/pkgs/by-name/by/byedpi/package.nix index 98e789aa91f5..65dc374819fc 100644 --- a/pkgs/by-name/by/byedpi/package.nix +++ b/pkgs/by-name/by/byedpi/package.nix @@ -6,13 +6,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "byedpi"; - version = "0.16"; + version = "0.16.4"; src = fetchFromGitHub { owner = "hufrea"; repo = "byedpi"; tag = "v${finalAttrs.version}"; - hash = "sha256-/K60znoC/5NNOJ5olQI7YZkjShkGZaJDdub+LwZ/FKc="; + hash = "sha256-l9Clkdq4E8mgCQM4AsdDv6pB/3SBChp71P0yQKRtMSY="; }; installPhase = '' From cc6fb84b34283a8dbfe9834c59eb5ed3d8833700 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 5 Feb 2025 02:39:13 +0000 Subject: [PATCH 024/118] lib60870: 2.3.3 -> 2.3.4 --- pkgs/by-name/li/lib60870/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/li/lib60870/package.nix b/pkgs/by-name/li/lib60870/package.nix index 2bbb3a146063..2c9966ab1ac7 100644 --- a/pkgs/by-name/li/lib60870/package.nix +++ b/pkgs/by-name/li/lib60870/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "lib60870"; - version = "2.3.3"; + version = "2.3.4"; src = fetchFromGitHub { owner = "mz-automation"; repo = "lib60870"; rev = "v${finalAttrs.version}"; - hash = "sha256-me+EYS2XDITRdI4okMj/ZqeewUS2bKj8Opecu6/1+Cs="; + hash = "sha256-bPBDM+/1+mIj5BSLukV/nYwOGUo4riGCBC61z3YKAkQ="; }; sourceRoot = "${finalAttrs.src.name}/lib60870-C"; From 105746d258f181e763178e6a95623cf7ec0227b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20G=C3=BCntner?= Date: Wed, 29 Jan 2025 18:28:20 +0100 Subject: [PATCH 025/118] pgloader: build and install man pages (#377042) --- pkgs/by-name/pg/pgloader/package.nix | 41 ++++++++++++++++++++++------ 1 file changed, 33 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/pg/pgloader/package.nix b/pkgs/by-name/pg/pgloader/package.nix index 1eaca6a9504b..1ce03e2b5bbf 100644 --- a/pkgs/by-name/pg/pgloader/package.nix +++ b/pkgs/by-name/pg/pgloader/package.nix @@ -2,6 +2,8 @@ lib, stdenv, fetchurl, + fetchFromGitHub, + installShellFiles, makeWrapper, sbcl, sqlite, @@ -11,24 +13,39 @@ git, cacert, openssl, + sphinx, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "pgloader"; version = "3.6.9"; - src = fetchurl { - url = "https://github.com/dimitri/pgloader/releases/download/v3.6.9/pgloader-bundle-3.6.9.tgz"; - sha256 = "sha256-pdCcRmoJnrfVnkhbT0WqLrRbCtOEmRgGRsXK+3uByeA="; - }; + srcs = [ + (fetchurl { + url = "https://github.com/dimitri/pgloader/releases/download/v3.6.9/pgloader-bundle-3.6.9.tgz"; + sha256 = "sha256-pdCcRmoJnrfVnkhbT0WqLrRbCtOEmRgGRsXK+3uByeA="; + }) + # needed because bundle does not contain docs / man pages + (fetchFromGitHub { + owner = "dimitri"; + repo = "pgloader"; + rev = "v${finalAttrs.version}"; + hash = "sha256-lqvfWayaJbZ9xx4CgFfY1g0TKwFEd5IWf+RLLXQddw4="; + }) + ]; + + sourceRoot = "."; nativeBuildInputs = [ git makeWrapper + installShellFiles ]; + buildInputs = [ sbcl cacert sqlite + sphinx freetds libzip curl @@ -48,15 +65,23 @@ stdenv.mkDerivation rec { export PATH=$PATH:$out/bin export HOME=$TMPDIR + pushd pgloader-bundle-${finalAttrs.version} make pgloader + popd + + pushd source/docs + make man + popd ''; dontStrip = true; enableParallelBuilding = false; installPhase = '' - install -Dm755 bin/pgloader "$out/bin/pgloader" - wrapProgram $out/bin/pgloader --prefix LD_LIBRARY_PATH : "${LD_LIBRARY_PATH}" + install -Dm755 pgloader-bundle-${finalAttrs.version}/bin/pgloader "$out/bin/pgloader" + wrapProgram $out/bin/pgloader --prefix LD_LIBRARY_PATH : "${finalAttrs.LD_LIBRARY_PATH}" + mkdir -p $out/bin $out/man/man1 + installManPage source/docs/_build/man/*.1 ''; meta = with lib; { @@ -67,4 +92,4 @@ stdenv.mkDerivation rec { license = licenses.postgresql; platforms = platforms.all; }; -} +}) From 11a327303b37e1f000d8f11aaa05aca8658b69dd Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 5 Feb 2025 12:37:22 +0000 Subject: [PATCH 026/118] uncover: 1.0.9 -> 1.0.10 --- pkgs/by-name/un/uncover/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/un/uncover/package.nix b/pkgs/by-name/un/uncover/package.nix index 1b16fc3c8334..d672e02ee93f 100644 --- a/pkgs/by-name/un/uncover/package.nix +++ b/pkgs/by-name/un/uncover/package.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "uncover"; - version = "1.0.9"; + version = "1.0.10"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = "uncover"; tag = "v${version}"; - hash = "sha256-avGbawIeh7ZUtacRLo/tLz4D6U7JAlu9BXDYu/xvoa0="; + hash = "sha256-q8ecgTY2uDo4O+/CqK9aYnYb4oArDIvga9C/tG9IooE="; }; - vendorHash = "sha256-93iXho+WCQyhw9DoLgo9ZKiPrd88D2ibgp1M9uP7bUU="; + vendorHash = "sha256-Pm3CFHdp0VHZ5tRrjnpXXaIwQFu7EXyVgo/K9OOqHBI="; subPackages = [ "cmd/uncover" ]; From 860c0a12e716ea0880233fe10585ec144a276b5f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 5 Feb 2025 12:58:54 +0000 Subject: [PATCH 027/118] codux: 15.41.0 -> 15.42.0 --- pkgs/by-name/co/codux/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/co/codux/package.nix b/pkgs/by-name/co/codux/package.nix index 954c33cab990..516b62a470fb 100644 --- a/pkgs/by-name/co/codux/package.nix +++ b/pkgs/by-name/co/codux/package.nix @@ -6,11 +6,11 @@ let pname = "codux"; - version = "15.41.0"; + version = "15.42.0"; src = fetchurl { url = "https://github.com/wixplosives/codux-versions/releases/download/${version}/Codux-${version}.x86_64.AppImage"; - hash = "sha256-l1Z4jcbsTdzn4kFDcAGENAuewIThP2ENB/fbG7XerdY="; + hash = "sha256-rD0yXZAEUcPtxWlWuZD77gjw6JlcUvBsaDYGj+NgLss="; }; appimageContents = appimageTools.extractType2 { inherit pname version src; }; From 77936f95a03ebf45c46f1eeacc8931dffcfc32a8 Mon Sep 17 00:00:00 2001 From: misilelab Date: Wed, 5 Feb 2025 22:58:14 +0900 Subject: [PATCH 028/118] d2: 0.6.8 -> 0.6.9 Signed-off-by: misilelab --- pkgs/by-name/d2/d2/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/d2/d2/package.nix b/pkgs/by-name/d2/d2/package.nix index 9cfebc4669d4..59660722c989 100644 --- a/pkgs/by-name/d2/d2/package.nix +++ b/pkgs/by-name/d2/d2/package.nix @@ -10,16 +10,16 @@ buildGo123Module rec { pname = "d2"; - version = "0.6.8"; + version = "0.6.9"; src = fetchFromGitHub { owner = "terrastruct"; repo = pname; tag = "v${version}"; - hash = "sha256-Sd4AkXKQVRJIgQTb7BbDNb8DbULyoWX8TuFtiu+Km5Y="; + hash = "sha256-Z+RC3wXqplGxaECIpHDiV8giWItvE5KFh3N+mwVL6HU="; }; - vendorHash = "sha256-PMqN/6kzXR0d1y1PigBE0KJ8uP14n+qQziFqGai5zLE="; + vendorHash = "sha256-ujyPfQx9FyMq5GBRquBHxcQ47R72RP6g2/rqLICDdWM="; excludedPackages = [ "./e2etests" ]; From 3f4b3762170293318f3a077bf849d4a88678bb7f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 5 Feb 2025 14:15:57 +0000 Subject: [PATCH 029/118] framesh: 0.6.10 -> 0.6.11 --- pkgs/by-name/fr/framesh/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fr/framesh/package.nix b/pkgs/by-name/fr/framesh/package.nix index 262f705820d6..a9fe230b7bb8 100644 --- a/pkgs/by-name/fr/framesh/package.nix +++ b/pkgs/by-name/fr/framesh/package.nix @@ -7,10 +7,10 @@ let pname = "framesh"; - version = "0.6.10"; + version = "0.6.11"; src = fetchurl { url = "https://github.com/floating/frame/releases/download/v${version}/Frame-${version}.AppImage"; - hash = "sha256-h2Y0G7luakd5UVu7bVt9r6xhvyOh80gYMTswmEIcnnk="; + hash = "sha256-t60jsA4ojXF805OUrqIOdk8eP9PlwA/g0XxEBCahmb4="; }; appimageContents = appimageTools.extractType2 { From ef505f58029c5419d7dc446a26e6effc31fd501f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 5 Feb 2025 15:27:30 +0000 Subject: [PATCH 030/118] web-ext: 8.3.0 -> 8.4.0 --- pkgs/by-name/we/web-ext/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/we/web-ext/package.nix b/pkgs/by-name/we/web-ext/package.nix index 5123992e38c6..41e6089a8422 100644 --- a/pkgs/by-name/we/web-ext/package.nix +++ b/pkgs/by-name/we/web-ext/package.nix @@ -8,16 +8,16 @@ buildNpmPackage rec { pname = "web-ext"; - version = "8.3.0"; + version = "8.4.0"; src = fetchFromGitHub { owner = "mozilla"; repo = "web-ext"; rev = version; - hash = "sha256-Jlxfsyir1+vutfuHt6SxBkcn0PTtr9/cZzEGa6z6LU0="; + hash = "sha256-zPOXl/7v/yP1ggqSKruGli/FC8Vf7i4J3LZey4WC/Lc="; }; - npmDepsHash = "sha256-MCK1bCWZpUk2Z/+ZWsY+iUCpz+n1UEcBqkAtiBtJl0k="; + npmDepsHash = "sha256-tU/NTeMjUyw1ftXLTP3HpLQqfzTNVwgY3oKvuIZXPxw="; npmBuildFlags = [ "--production" ]; From 049cdee2fbdf030fb0a0d10c8d421484a96f6e6d Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Wed, 5 Feb 2025 17:02:57 +0100 Subject: [PATCH 031/118] saunafs: 4.6.0 -> 4.7.0 --- pkgs/by-name/sa/saunafs/package.nix | 9 ++++----- pkgs/by-name/sa/saunafs/sfstool.patch | 13 ++++++------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/sa/saunafs/package.nix b/pkgs/by-name/sa/saunafs/package.nix index 374e52b7ebcc..d9fe7402f42b 100644 --- a/pkgs/by-name/sa/saunafs/package.nix +++ b/pkgs/by-name/sa/saunafs/package.nix @@ -6,7 +6,7 @@ cmake, asciidoc, jemalloc, - boost, + boost186, fmt, fuse3, spdlog, @@ -17,18 +17,17 @@ stdenv.mkDerivation (finalAttrs: { pname = "saunafs"; - version = "4.6.0"; + version = "4.7.0"; src = fetchFromGitHub { owner = "leil-io"; repo = "saunafs"; rev = "v${finalAttrs.version}"; - hash = "sha256-uPHgyCL4/HYjoIm1Ev5p7lXAf1KlpV/OAqLVhu5Ang4="; + hash = "sha256-6WXSnItbydH3Lk04l0Iph14EKzL/Pl5vriWdhHxTF6I="; }; patches = [ ./sfstool.patch - ]; outputs = [ @@ -46,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { spdlog yaml-cpp fuse3 - boost + boost186 jemalloc isa-l judy diff --git a/pkgs/by-name/sa/saunafs/sfstool.patch b/pkgs/by-name/sa/saunafs/sfstool.patch index 90c5f840489d..b3ca9e6510d2 100644 --- a/pkgs/by-name/sa/saunafs/sfstool.patch +++ b/pkgs/by-name/sa/saunafs/sfstool.patch @@ -1,13 +1,12 @@ diff --git a/src/tools/sfstools.sh b/src/tools/sfstools.sh -index c6c41197..9a59814f 100755 +index ffd9ec22..a1cb83b6 100755 --- a/src/tools/sfstools.sh +++ b/src/tools/sfstools.sh -@@ -1,5 +1,6 @@ +@@ -1,4 +1,6 @@ #!/usr/bin/env bash --tool=$(basename $0) -+tool="$(basename $0)" + tool="$(basename $0)" +-exec saunafs "${tool#sfs}" "$@" +dir="$(dirname $0)" - --${tool/saunafs/saunafs } "$@" -+$dir/saunafs ${tool/sfs/} "$@" ++ ++exec "$dir/saunafs" "${tool#sfs}" "$@" From 042bfa88dc8ccb5e70f6a53c98194c0619490ba1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 6 Feb 2025 02:02:11 +0000 Subject: [PATCH 032/118] ledger-live-desktop: 2.96.0 -> 2.98.0 --- pkgs/by-name/le/ledger-live-desktop/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/le/ledger-live-desktop/package.nix b/pkgs/by-name/le/ledger-live-desktop/package.nix index 0896ce343a4b..9bf7ffc6a681 100644 --- a/pkgs/by-name/le/ledger-live-desktop/package.nix +++ b/pkgs/by-name/le/ledger-live-desktop/package.nix @@ -8,11 +8,11 @@ let pname = "ledger-live-desktop"; - version = "2.96.0"; + version = "2.98.0"; src = fetchurl { url = "https://download.live.ledger.com/${pname}-${version}-linux-x86_64.AppImage"; - hash = "sha256-3Buab2SDhEEOSQdXCBf7jHlSbgYUe/G1IUSNrcWTbqs="; + hash = "sha256-wYSs7PIj5eA5C/5msbZb+OkcC3Hrhi57yyYrKZ0mvCM="; }; appimageContents = appimageTools.extractType2 { From cdc2b63bdf5f5600dc40fcf34942f10989c35510 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 6 Feb 2025 05:15:17 +0000 Subject: [PATCH 033/118] rqlite: 8.36.8 -> 8.36.11 --- pkgs/by-name/rq/rqlite/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/rq/rqlite/package.nix b/pkgs/by-name/rq/rqlite/package.nix index c3f5a37c4819..cf1364581387 100644 --- a/pkgs/by-name/rq/rqlite/package.nix +++ b/pkgs/by-name/rq/rqlite/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "rqlite"; - version = "8.36.8"; + version = "8.36.11"; src = fetchFromGitHub { owner = "rqlite"; repo = pname; rev = "v${version}"; - sha256 = "sha256-fyhBKSPE9vAMe1g7IOjrk8u3+KhMgtVrwKRZA+DsGik="; + sha256 = "sha256-LL2nfRFrfDtttDexLUarFb7AyoLTFf3WeoWm4cqmBtM="; }; - vendorHash = "sha256-+otWcVUAqO2e9v+4T5QTw2DOVfDUGu6hP/1/6LO21nY="; + vendorHash = "sha256-BUZaRSDbzHVzP3A0Q4LnKfzp0lzEJ3x7Vag+7sn4MSM="; subPackages = [ "cmd/rqlite" From b59c65f7b949454a0ff25fdf26c3583f1a57296b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 6 Feb 2025 05:47:19 +0000 Subject: [PATCH 034/118] terraform-providers.ibm: 1.73.0 -> 1.75.1 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 6b8fc339e89e..654b19a4b7af 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -642,13 +642,13 @@ "vendorHash": null }, "ibm": { - "hash": "sha256-vji7Qm3qSGnaCJz7+CH6dnvXILClS1WYzw02XQrOjXg=", + "hash": "sha256-Wq8YYVDp+hUa3iZGK2umW89v5itwK1Ig1aHIb4ojXis=", "homepage": "https://registry.terraform.io/providers/IBM-Cloud/ibm", "owner": "IBM-Cloud", "repo": "terraform-provider-ibm", - "rev": "v1.73.0", + "rev": "v1.75.1", "spdx": "MPL-2.0", - "vendorHash": "sha256-QHteisy2VVE4s9DinmF9p9kQYhAOuKj/fDrF2KRyQRs=" + "vendorHash": "sha256-k1EQbBnpdkC7FdvyRTM8AAhUIAk3hY4CBD9wOVQnMIs=" }, "icinga2": { "hash": "sha256-Y/Oq0aTzP+oSKPhHiHY9Leal4HJJm7TNDpcdqkUsCmk=", From 98eef661cfc6e49a10810f4416990230760b5b40 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 6 Feb 2025 05:48:06 +0000 Subject: [PATCH 035/118] cpuinfo: 0-unstable-2025-01-10 -> 0-unstable-2025-02-03 --- pkgs/by-name/cp/cpuinfo/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/cp/cpuinfo/package.nix b/pkgs/by-name/cp/cpuinfo/package.nix index 357e71fa0379..e0e85e836f8e 100644 --- a/pkgs/by-name/cp/cpuinfo/package.nix +++ b/pkgs/by-name/cp/cpuinfo/package.nix @@ -10,13 +10,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "cpuinfo"; - version = "0-unstable-2025-01-10"; + version = "0-unstable-2025-02-03"; src = fetchFromGitHub { owner = "pytorch"; repo = "cpuinfo"; - rev = "8a1772a0c5c447df2d18edf33ec4603a8c9c04a6"; - hash = "sha256-dKmZ5YXLhvVdxaJ4PefR+SWlh+MTFHNxOMeM6Vj7Gvo="; + rev = "aaac07ee499895770c89163ce0920ef8bb41ed23"; + hash = "sha256-A86nAbKs7trVwwa1HFUNbV//6O1minvlHTpZR3vabrU="; }; passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; From 87c3183a76c69091be8d119c14f521dc6b252ef9 Mon Sep 17 00:00:00 2001 From: "Samuel Hierholzer (Adfinis AG)" Date: Thu, 6 Feb 2025 08:28:16 +0100 Subject: [PATCH 036/118] lbdbq: 0.48.1 -> 0.56 --- pkgs/by-name/lb/lbdb/package.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/by-name/lb/lbdb/package.nix b/pkgs/by-name/lb/lbdb/package.nix index c0cdd532a25f..2fafe782da50 100644 --- a/pkgs/by-name/lb/lbdb/package.nix +++ b/pkgs/by-name/lb/lbdb/package.nix @@ -29,11 +29,11 @@ let in stdenv.mkDerivation rec { pname = "lbdb"; - version = "0.48.1"; + version = "0.56"; src = fetchurl { - url = "https://www.spinnaker.de/lbdb/download/lbdb_${version}.tar.gz"; - sha256 = "1gr5l2fr9qbdccga8bhsrpvz6jxigvfkdxrln9wyf2xpps5cdjxh"; + url = "https://www.spinnaker.de/lbdb/download/lbdb-${version}.tar.gz"; + sha256 = "sha256-uqaiO2E5TXkreyIeGWHZulcQYUyTJOj1mzXBJsK0504="; }; buildInputs = @@ -55,12 +55,6 @@ stdenv.mkDerivation rec { patches = [ ./add-methods-to-rc.patch - # fix undefined exec_prefix. Remove with the next release - (fetchpatch { - url = "https://github.com/RolandRosenfeld/lbdb/commit/60b7bae255011f59212d96adfbded459d6a27129.patch"; - sha256 = "129zg086glmlalrg395jq8ljcp787dl3rxjf9v7apsd8mqfdkl2v"; - excludes = [ "debian/changelog" ]; - }) ]; meta = with lib; { From 278f6f9b59dfcd472ed1a563e185f51ffc60d8c0 Mon Sep 17 00:00:00 2001 From: Honnip Date: Thu, 6 Feb 2025 14:47:03 +0900 Subject: [PATCH 037/118] papers: 47.0 -> 47.3 https://gitlab.gnome.org/GNOME/Incubator/papers/-/compare/47.0...47.3 --- pkgs/by-name/pa/papers/package.nix | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/pkgs/by-name/pa/papers/package.nix b/pkgs/by-name/pa/papers/package.nix index aa877d8d8d5e..dfd126181208 100644 --- a/pkgs/by-name/pa/papers/package.nix +++ b/pkgs/by-name/pa/papers/package.nix @@ -2,7 +2,6 @@ lib, stdenv, fetchurl, - fetchpatch, meson, ninja, pkg-config, @@ -35,12 +34,11 @@ exempi, cargo, rustPlatform, - rustfmt, }: stdenv.mkDerivation (finalAttrs: { pname = "papers"; - version = "47.0"; + version = "47.3"; outputs = [ "out" @@ -50,18 +48,9 @@ stdenv.mkDerivation (finalAttrs: { src = fetchurl { url = "mirror://gnome/sources/papers/${lib.versions.major finalAttrs.version}/papers-${finalAttrs.version}.tar.xz"; - hash = "sha256-z2nrCjcX/jVAEWFuL2Ajg4FP9Xt6nqzzBsZ25k2PZmY="; + hash = "sha256-PlhTk+gef6D5r55U38hvYSa1w9hS6pDf3DumsHlSxKo="; }; - # FIXME: remove in next version - patches = [ - (fetchpatch { - name = "fix-crash-when-drag-and-drop"; - url = "https://gitlab.gnome.org/GNOME/Incubator/papers/-/commit/455ad2aebe5e5d5a57a2f4defc6af054927eac73.patch"; - hash = "sha256-PeWlFhvM8UzUFRaK9k/9Txwgta/EiFnMRjHwld3O+cU="; - }) - ]; - cargoRoot = "shell-rs"; cargoDeps = rustPlatform.fetchCargoVendor { @@ -87,9 +76,6 @@ stdenv.mkDerivation (finalAttrs: { yelp-tools cargo rustPlatform.cargoSetupHook - # FIXME: remove rustfmt in next version - # https://gitlab.gnome.org/GNOME/Incubator/papers/-/commit/d0093c8c9cbacfbdafd70b6024982638b30a2591 - rustfmt ]; buildInputs = @@ -130,10 +116,6 @@ stdenv.mkDerivation (finalAttrs: { "-Dnautilus=false" ]; - env.NIX_CFLAGS_COMPILE = lib.optionalString ( - stdenv.cc.isClang && lib.versionAtLeast stdenv.cc.version "16" - ) "-Wno-error=incompatible-function-pointer-types"; - postInstall = '' substituteInPlace $out/share/thumbnailers/papers.thumbnailer \ --replace-fail '=papers-thumbnailer' "=$out/bin/papers-thumbnailer" From c72a94cbed753a4b7893a33f8bf755f93d91b214 Mon Sep 17 00:00:00 2001 From: Patrick Date: Thu, 6 Feb 2025 17:25:06 +0100 Subject: [PATCH 038/118] firefly-iii: 6.1.25 -> 6.2.4 --- pkgs/by-name/fi/firefly-iii/package.nix | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/fi/firefly-iii/package.nix b/pkgs/by-name/fi/firefly-iii/package.nix index 22b3b9447dde..274e250b1540 100644 --- a/pkgs/by-name/fi/firefly-iii/package.nix +++ b/pkgs/by-name/fi/firefly-iii/package.nix @@ -5,7 +5,7 @@ nodejs, fetchNpmDeps, buildPackages, - php83, + php84, nixosTests, nix-update-script, dataDir ? "/var/lib/firefly-iii", @@ -13,23 +13,23 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "firefly-iii"; - version = "6.1.25"; + version = "6.2.4"; src = fetchFromGitHub { owner = "firefly-iii"; repo = "firefly-iii"; - rev = "v${finalAttrs.version}"; - hash = "sha256-6DZwTk67bKvgB+Zf7aPakrWWYCAjkYggrRiaFKgsMkk="; + tag = "v${finalAttrs.version}"; + hash = "sha256-IBf34RPpQUH3U0tl8ljJpL9of6QNDOTyBg7Hc1ae+W8="; }; - buildInputs = [ php83 ]; + buildInputs = [ php84 ]; nativeBuildInputs = [ nodejs nodejs.python buildPackages.npmHooks.npmConfigHook - php83.composerHooks.composerInstallHook - php83.packages.composer-local-repo-plugin + php84.composerHooks.composerInstallHook + php84.packages.composer-local-repo-plugin ]; composerNoDev = true; @@ -38,15 +38,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { composerStrictValidation = true; strictDeps = true; - vendorHash = "sha256-5uUjb5EPcoEBuFbWGb1EIC/U/VaSUsRp09S9COIx25E="; + vendorHash = "sha256-LRcgWQPDLNCMbaJhaySDrcw95fXF4yVUc03SFnrteeM="; npmDeps = fetchNpmDeps { inherit (finalAttrs) src; name = "${finalAttrs.pname}-npm-deps"; - hash = "sha256-j49iltvW7xGOCV+FIB4f+ECfQo50U+wTugyaK9JGN3A="; + hash = "sha256-K8zoX4UsD/hOpMZ5JCH3G9WBTUpJcXAertEaXaUGcys="; }; - composerRepository = php83.mkComposerRepository { + composerRepository = php84.mkComposerRepository { inherit (finalAttrs) pname src @@ -65,7 +65,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; passthru = { - phpPackage = php83; + phpPackage = php84; tests = nixosTests.firefly-iii; updateScript = nix-update-script { }; }; From 21fd8180b52e407c2e6eee4a2429ada1f7998c68 Mon Sep 17 00:00:00 2001 From: Patrick Date: Thu, 6 Feb 2025 17:36:09 +0100 Subject: [PATCH 039/118] firefly-iii-data-importer: 1.5.7 -> 1.6.0 --- .../fi/firefly-iii-data-importer/package.nix | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/fi/firefly-iii-data-importer/package.nix b/pkgs/by-name/fi/firefly-iii-data-importer/package.nix index 8917db34db95..8242ec2008ef 100644 --- a/pkgs/by-name/fi/firefly-iii-data-importer/package.nix +++ b/pkgs/by-name/fi/firefly-iii-data-importer/package.nix @@ -5,7 +5,7 @@ nodejs, fetchNpmDeps, buildPackages, - php83, + php84, nixosTests, nix-update-script, dataDir ? "/var/lib/firefly-iii-data-importer", @@ -13,23 +13,23 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "firefly-iii-data-importer"; - version = "1.5.7"; + version = "1.6.0"; src = fetchFromGitHub { owner = "firefly-iii"; repo = "data-importer"; - rev = "v${finalAttrs.version}"; - hash = "sha256-CKDAPpDTTrBXPhfSQiBl/M42hOQi2KwpWDtEnlDwpuU="; + tag = "v${finalAttrs.version}"; + hash = "sha256-f/kvSQMA4w+wwD+hM6kGduV3AQmmYe2w5u3dhnJBS9s="; }; - buildInputs = [ php83 ]; + buildInputs = [ php84 ]; nativeBuildInputs = [ nodejs nodejs.python buildPackages.npmHooks.npmConfigHook - php83.composerHooks.composerInstallHook - php83.packages.composer-local-repo-plugin + php84.composerHooks.composerInstallHook + php84.packages.composer-local-repo-plugin ]; composerNoDev = true; @@ -38,15 +38,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { composerStrictValidation = true; strictDeps = true; - vendorHash = "sha256-larFTf64oPJi+XLMK6ZuLEN4P/CkGLojUJDE/gvu8UU="; + vendorHash = "sha256-Jn0H63VxIGjgVOT6yyXEhRdMWeIInMdv6mi5JQXp68Q="; npmDeps = fetchNpmDeps { inherit (finalAttrs) src; name = "${finalAttrs.pname}-npm-deps"; - hash = "sha256-0xY9F/Bok2RQ1YWRr5fnENk3zB1WubnpT0Ldy+i618g="; + hash = "sha256-hUq5pp62K2XAnjU9QhQE+PogUSla9R1xG7beW4bgrV8="; }; - composerRepository = php83.mkComposerRepository { + composerRepository = php84.mkComposerRepository { inherit (finalAttrs) pname src @@ -64,7 +64,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; passthru = { - phpPackage = php83; + phpPackage = php84; tests = nixosTests.firefly-iii-data-importer; updateScript = nix-update-script { }; }; From a6e2023c7f6109719626c99173daa96c9bedd15f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 6 Feb 2025 21:01:46 +0000 Subject: [PATCH 040/118] migrate-to-uv: 0.2.1 -> 0.6.0 --- pkgs/by-name/mi/migrate-to-uv/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/mi/migrate-to-uv/package.nix b/pkgs/by-name/mi/migrate-to-uv/package.nix index ce07335148c4..7da29ec35546 100644 --- a/pkgs/by-name/mi/migrate-to-uv/package.nix +++ b/pkgs/by-name/mi/migrate-to-uv/package.nix @@ -11,19 +11,19 @@ python3.pkgs.buildPythonApplication rec { pname = "migrate-to-uv"; - version = "0.2.1"; + version = "0.6.0"; pyproject = true; src = fetchFromGitHub { owner = "mkniewallner"; repo = "migrate-to-uv"; tag = version; - hash = "sha256-LA2tzTD3e6IPmeYHWKFD+PIsl6hsvfpYDKhN9upttHI="; + hash = "sha256-d3whOoDzCZWs9tO5t13jNKgsZe3fV3Eas3M+CJKbHno="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit src pname version; - hash = "sha256-aiUCLRHCntJKZGCNdyfFCyRdIP+9Fr8yVzaDVct9Dv8="; + hash = "sha256-RQlShKbv3XqG2uVqRF2FIrGg3j49LPFI1YpZ6uhCWp4="; }; build-system = [ From 009b4054a60c65faa600762cf0d0a76bf231cf15 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 6 Feb 2025 21:15:26 +0000 Subject: [PATCH 041/118] etesync-dav: 0.33.6 -> 0.34.0 --- pkgs/by-name/et/etesync-dav/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/et/etesync-dav/package.nix b/pkgs/by-name/et/etesync-dav/package.nix index 6f024cdca10c..ea44a675021a 100644 --- a/pkgs/by-name/et/etesync-dav/package.nix +++ b/pkgs/by-name/et/etesync-dav/package.nix @@ -8,13 +8,13 @@ }: python3Packages.buildPythonApplication rec { pname = "etesync-dav"; - version = "0.33.6"; + version = "0.34.0"; src = fetchFromGitHub { owner = "etesync"; repo = "etesync-dav"; tag = "v${version}"; - hash = "sha256-CkdO/63IgUOf8AC2fUDKPyax0CHWVs8AkoTaperWxFk="; + hash = "sha256-+rNqyksOmDUh0OuvgEDWv6tuZQkn1gizz35Ptr6izos="; }; dependencies = with python3Packages; [ From b7c15e2cd5acebbb4f10a662c02c98804a89ad29 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 6 Feb 2025 23:24:54 +0000 Subject: [PATCH 042/118] terraform-providers.digitalocean: 2.47.0 -> 2.48.2 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 6b8fc339e89e..9e1c2457be98 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -354,11 +354,11 @@ "vendorHash": "sha256-quoFrJbB1vjz+MdV+jnr7FPACHuUe5Gx9POLubD2IaM=" }, "digitalocean": { - "hash": "sha256-JRBur7pH1niPZLN+5do6GiuoiSP18QsDZqWjlc9riek=", + "hash": "sha256-Tu73hGllUGkrzxgwfz9Eg3P8YOPYD6XiTCK//ABSUsI=", "homepage": "https://registry.terraform.io/providers/digitalocean/digitalocean", "owner": "digitalocean", "repo": "terraform-provider-digitalocean", - "rev": "v2.47.0", + "rev": "v2.48.2", "spdx": "MPL-2.0", "vendorHash": null }, From 467b41829bbf08d9de5b2f81f6286b07ba2aaab4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 6 Feb 2025 23:56:23 +0000 Subject: [PATCH 043/118] terraform-providers.snowflake: 1.0.2 -> 1.0.3 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 6b8fc339e89e..af8296180590 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1165,11 +1165,11 @@ "vendorHash": "sha256-F1AuO/dkldEDRvkwrbq2EjByxjg3K2rohZAM4DzKPUw=" }, "snowflake": { - "hash": "sha256-PzZ5vLAyJYT5UZ6C5mTzyoJTcru9JXu/Xy+cPJu4IB0=", + "hash": "sha256-s5jtG1UOAtvFVf4GZ3ruGjow1MRaKd8wpze9pxOAz6k=", "homepage": "https://registry.terraform.io/providers/Snowflake-Labs/snowflake", "owner": "Snowflake-Labs", "repo": "terraform-provider-snowflake", - "rev": "v1.0.2", + "rev": "v1.0.3", "spdx": "MIT", "vendorHash": "sha256-Nf3MBMjsGDOdxTrhHo72NxIXx2xYCU/SEmYGHO6C/3s=" }, From 48b212a2ad5208cf9decfbdd9a7538fd6d373a1e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 06:02:21 +0000 Subject: [PATCH 044/118] terraform-providers.buildkite: 1.15.5 -> 1.16.1 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 6b8fc339e89e..b03b8bbec7bc 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -207,13 +207,13 @@ "vendorHash": "sha256-RnFY5fAkEV69nuFMcivCb232r/3sqqcgdMU/WYuK+yI=" }, "buildkite": { - "hash": "sha256-xz9gYf13tNU3J7nQscuIRU41CGjYc6qMXnLltAaPQac=", + "hash": "sha256-RKZQgp7ExTIA3b54pmVFGQagzLFhtUbpSTOUraf57rE=", "homepage": "https://registry.terraform.io/providers/buildkite/buildkite", "owner": "buildkite", "repo": "terraform-provider-buildkite", - "rev": "v1.15.5", + "rev": "v1.16.1", "spdx": "MIT", - "vendorHash": "sha256-6Tmxmm/X3MZtFxlNa2H/oXGADlpoZ8oUSvTqKPAr5fA=" + "vendorHash": "sha256-5YfwKTJd9874MP5kzOqpxgwavoNlZUTptcu1sXacFJA=" }, "ccloud": { "hash": "sha256-Dpx0eugcHCJV8GNPqjxx4P9ohgJgB10DTnHr+CeN/iQ=", From 6f7b63856fa01847c19af9eb3b96b81336e28d67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Fri, 7 Feb 2025 07:37:42 +0100 Subject: [PATCH 045/118] eza: 0.20.19 -> 0.20.20 changelog: https://github.com/eza-community/eza/releases/tag/v0.20.20 --- 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 d77fd374b12a..3c81fa198d91 100644 --- a/pkgs/by-name/ez/eza/package.nix +++ b/pkgs/by-name/ez/eza/package.nix @@ -15,17 +15,17 @@ rustPlatform.buildRustPackage rec { pname = "eza"; - version = "0.20.19"; + version = "0.20.20"; src = fetchFromGitHub { owner = "eza-community"; repo = "eza"; rev = "v${version}"; - hash = "sha256-Fgb2+tKDTL7KxJhRavNc5K8AG98eZFOmDOc+sVY7rdk="; + hash = "sha256-+duTIPM1SJoCijqKDWN3H5tO8rAaqMWzMMQbJvvurcE="; }; useFetchCargoVendor = true; - cargoHash = "sha256-XF77+dC4AB79wniSybLz5E/XznzAiOrteHPyCD9laIQ="; + cargoHash = "sha256-9mHS74PgQWSwipRpazb9fmAHFXRCp35juVMcjwuD4bY="; nativeBuildInputs = [ cmake From 58551a953b98371da7e5dddbb7e250a276b30ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erin=E2=80=84Yuki=E2=80=89Schlarb?= Date: Fri, 7 Feb 2025 11:51:03 +0100 Subject: [PATCH 046/118] pythonPackages.django-ckeditor: Add known vulnerability description following its formal deprecation in Feburary 2024 --- .../django-ckeditor/default.nix | 33 ++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/django-ckeditor/default.nix b/pkgs/development/python-modules/django-ckeditor/default.nix index 5ee6e68988e3..ca3d81bc7abb 100644 --- a/pkgs/development/python-modules/django-ckeditor/default.nix +++ b/pkgs/development/python-modules/django-ckeditor/default.nix @@ -50,10 +50,41 @@ buildPythonPackage rec { pythonImportsCheck = [ "ckeditor" ]; meta = with lib; { - description = " Django admin CKEditor integration"; + description = "Django admin CKEditor integration"; homepage = "https://github.com/django-ckeditor/django-ckeditor"; changelog = "https://github.com/django-ckeditor/django-ckeditor/blob/${version}/CHANGELOG.rst"; license = licenses.bsd3; maintainers = with maintainers; [ onny ]; + knownVulnerabilities = [ + '' + django-ckeditor bundles CKEditor 4.22.1 which isn’t supported anmyore and + which does have unfixed security issues + + Existing users of django-ckeditor should consider switching to a + different editor such as CKEditor 5 (django-ckeditor-5), after verifying + that its GPL licensing terms are acceptable, or ProseMirror + (django-prose-mirror by the author of django-ckeditor). Support of the + CKEditor 4 package is provided by its upstream developers as a + non-free/commercial LTS package until December 2028. + + Note that while there are publically known vulnerabilities for the + CKEditor 4 series, the exploitability of these issues depends on how + CKEditor is used by the given Django application. + + Further information: + + * List of vulnerabilites fixed in CKEditor 4.24.0-lts: + + * GHSA-fq6h-4g8v-qqvm + * GHSA-fq6h-4g8v-qqvm + * GHSA-mw2c-vx6j-mg76 + + * The django-ckeditor deprecation notice: + + + * The non-free/commerical CKEditor 4 LTS package: + + '' + ]; }; } From 04033b84845baaabd4f8030d6400501fa2d0bbf4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 12:32:08 +0000 Subject: [PATCH 047/118] v2ray: 5.25.1 -> 5.27.0 --- pkgs/by-name/v2/v2ray/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/v2/v2ray/package.nix b/pkgs/by-name/v2/v2ray/package.nix index 880c390e012b..57852edcdf44 100644 --- a/pkgs/by-name/v2/v2ray/package.nix +++ b/pkgs/by-name/v2/v2ray/package.nix @@ -16,18 +16,18 @@ buildGoModule rec { pname = "v2ray-core"; - version = "5.25.1"; + version = "5.27.0"; src = fetchFromGitHub { owner = "v2fly"; repo = "v2ray-core"; rev = "v${version}"; - hash = "sha256-XJVWja2LGBIXGdzYL8oHMcZn15Bg01t/ro/SRI6Xi/A="; + hash = "sha256-3cwVkhWWiqnmjPE0OIlo3FPS1G809HgnzYMamd2edLA="; }; # `nix-update` doesn't support `vendorHash` yet. # https://github.com/Mic92/nix-update/pull/95 - vendorHash = "sha256-8SFQUe52zZLii1XnFg2GBMseBlDxKAE0V56VVXGDlck="; + vendorHash = "sha256-f9S6X6NVJ9ZE00UPqmOsFZZSZmVwuJvy6vbF80jSABk="; ldflags = [ "-s" From edd56d131964652358fcaefcb800ac040e6e2fb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Fri, 7 Feb 2025 13:36:10 +0100 Subject: [PATCH 048/118] python312Packages.llama-index-readers-file: fix build --- .../python-modules/llama-index-readers-file/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/llama-index-readers-file/default.nix b/pkgs/development/python-modules/llama-index-readers-file/default.nix index e02618898251..f92751824544 100644 --- a/pkgs/development/python-modules/llama-index-readers-file/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-file/default.nix @@ -27,6 +27,7 @@ buildPythonPackage rec { pythonRelaxDeps = [ "pymupdf" "pypdf" + "striprtf" ]; build-system = [ poetry-core ]; From a4d1b7dd25625b5413502c7d2be38f708f18d833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 7 Feb 2025 15:03:17 +0100 Subject: [PATCH 049/118] headscale: 0.24.2 -> 0.24.3 Diff: https://github.com/juanfont/headscale/compare/v0.24.2...v0.24.3 --- pkgs/servers/headscale/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/headscale/default.nix b/pkgs/servers/headscale/default.nix index d1a99a741e7d..d28d445120ae 100644 --- a/pkgs/servers/headscale/default.nix +++ b/pkgs/servers/headscale/default.nix @@ -8,13 +8,13 @@ }: buildGoModule rec { pname = "headscale"; - version = "0.24.2"; + version = "0.24.3"; src = fetchFromGitHub { owner = "juanfont"; repo = "headscale"; rev = "v${version}"; - hash = "sha256-LNTXXzCly0FMriS+J6VhSbvRmo7ILKOjNmfgp3h4SYo="; + hash = "sha256-G1MGu/AVFhiBOfhmhdH9+kayPybtsQsvj73omtZVfBU="; }; vendorHash = "sha256-SBfeixT8DQOrK2SWmHHSOBtzRdSZs+pwomHpw6Jd+qc="; From 5fc6559219d71ca673c731f2e130b6cbf861d16f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 14:48:23 +0000 Subject: [PATCH 050/118] leftwm: 0.5.3 -> 0.5.4 --- pkgs/by-name/le/leftwm/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/le/leftwm/package.nix b/pkgs/by-name/le/leftwm/package.nix index d847009d37f2..925242225d67 100644 --- a/pkgs/by-name/le/leftwm/package.nix +++ b/pkgs/by-name/le/leftwm/package.nix @@ -15,17 +15,17 @@ in rustPlatform.buildRustPackage rec { pname = "leftwm"; - version = "0.5.3"; + version = "0.5.4"; src = fetchFromGitHub { owner = "leftwm"; repo = "leftwm"; tag = version; - hash = "sha256-3voGKM6MKisc+ZVdZ5sCrs3XVfeRayozIk4SXNjw820="; + hash = "sha256-eH7HuGZnWlXigTaUAc4S00+uOIEVftnBOD8x03KJLaE="; }; useFetchCargoVendor = true; - cargoHash = "sha256-i0rMgV1rV9k7j25zoJc1hHXTpTPfDMSOMciJOvInO34="; + cargoHash = "sha256-nFyhpCp8xsYjRl+2bqPfWzq31pM/yYcDuxkWEjjcqwA="; buildInputs = rpathLibs; From 63ed3456a3069e3d82eec68b04bf1c673605fd07 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Fri, 7 Feb 2025 12:54:18 -0300 Subject: [PATCH 051/118] komac: 2.10.0 -> 2.10.1 --- pkgs/by-name/ko/komac/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ko/komac/package.nix b/pkgs/by-name/ko/komac/package.nix index 205be903c3d4..a6d7a759ca37 100644 --- a/pkgs/by-name/ko/komac/package.nix +++ b/pkgs/by-name/ko/komac/package.nix @@ -17,12 +17,12 @@ }: let - version = "2.10.0"; + version = "2.10.1"; src = fetchFromGitHub { owner = "russellbanks"; repo = "Komac"; tag = "v${version}"; - hash = "sha256-qlaNJ9pgQe1gjPW4gjEJys/SqgKzpO3H8SenowsUi4o="; + hash = "sha256-oqnFenSFWCe3vax5mqstvNNTFWOecLOkuhJzaxv78yE="; }; in rustPlatform.buildRustPackage { @@ -31,7 +31,7 @@ rustPlatform.buildRustPackage { pname = "komac"; useFetchCargoVendor = true; - cargoHash = "sha256-sTYR8e6RX/kXZDlRA1uMvJGpg9amDj2oEjbGEE9wh60="; + cargoHash = "sha256-g7R4Vk6bFaJ5TA4IdeXRiFzZOcj1T4JY3HsOt+Zx2mU="; nativeBuildInputs = [ From 1c224e4df7e1b18a5835f04caf7dd711d92cf2ac Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 16:19:38 +0000 Subject: [PATCH 052/118] octave: 9.3.0 -> 9.4.0 --- pkgs/development/interpreters/octave/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index f86785ac2887..68c5ec0d1712 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -98,12 +98,12 @@ let allPkgs = pkgs; in stdenv.mkDerivation (finalAttrs: { - version = "9.3.0"; + version = "9.4.0"; pname = "octave"; src = fetchurl { url = "mirror://gnu/octave/octave-${finalAttrs.version}.tar.gz"; - sha256 = "sha256-gJ+jmnrMhIFb9NxNLX5rIoznWgfzskE/MxOqjgqqMoc="; + sha256 = "sha256-2pSBIFv6cXZgt9ShZzLYstWKrc6rSZPUEkKo4oSOpsE="; }; postPatch = '' From 79197604fec8ded346a9fd469dc514965508f981 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 18:03:01 +0000 Subject: [PATCH 053/118] astal.io: 0-unstable-2025-01-23 -> 0-unstable-2025-02-06 --- pkgs/development/libraries/astal/buildAstalModule.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/astal/buildAstalModule.nix b/pkgs/development/libraries/astal/buildAstalModule.nix index b6d748b141eb..c6c86211d9a3 100644 --- a/pkgs/development/libraries/astal/buildAstalModule.nix +++ b/pkgs/development/libraries/astal/buildAstalModule.nix @@ -39,7 +39,7 @@ let cleanArgs args // { pname = "astal-${name}"; - version = "0-unstable-2025-01-23"; + version = "0-unstable-2025-02-06"; __structuredAttrs = true; strictDeps = true; @@ -47,8 +47,8 @@ let src = fetchFromGitHub { owner = "Aylur"; repo = "astal"; - rev = "127e9cdcbf173846a3c40ddc0abfbb038df48042"; - hash = "sha256-ZCxxshGN7XooabArcoGkYSNx5yVunqjKJi2aTv6cznI="; + rev = "173e35fb3b4e2e219524e1232e93683283e8fe81"; + hash = "sha256-lVxK8StUBzK7xx68/JoXBbzKrYvD/Yub4vvJ9COnbrs="; }; sourceRoot = "${finalAttrs.src.name}/${sourceRoot}"; From 0ad4c6bced20b24da5919ded0384eb95e1dc508f Mon Sep 17 00:00:00 2001 From: Gerg-L Date: Fri, 7 Feb 2025 13:10:02 -0500 Subject: [PATCH 054/118] filet: remove --- pkgs/by-name/fi/filet/package.nix | 28 ---------------------------- pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 pkgs/by-name/fi/filet/package.nix diff --git a/pkgs/by-name/fi/filet/package.nix b/pkgs/by-name/fi/filet/package.nix deleted file mode 100644 index 94d43744245c..000000000000 --- a/pkgs/by-name/fi/filet/package.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, -}: - -stdenv.mkDerivation rec { - pname = "filet"; - version = "0.1.3"; - - src = fetchFromGitHub { - owner = "buffet"; - repo = "filet"; - rev = version; - sha256 = "0hm7589ih30axafqxhhs4fg1pvfhlqzyzzmfi2ilx8haq5111fsf"; - }; - - makeFlags = [ "PREFIX=$(out)" ]; - - meta = with lib; { - description = "Fucking fucking fast file fucker (afffff)"; - homepage = "https://github.com/buffet/filet"; - license = licenses.mpl20; - platforms = platforms.all; - maintainers = [ ]; - mainProgram = "filet"; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 6157b05df0af..d8fec36a4fc4 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -400,6 +400,7 @@ mapAliases { ffmpeg_5-full = throw "ffmpeg_5-full has been removed, please use another version"; # Added 2024-07-12 FIL-plugins = fil-plugins; # Added 2024-06-12 fileschanged = throw "'fileschanged' has been removed as it is unmaintained upstream"; # Added 2024-04-19 + filet = throw "'filet' has been removed as the upstream repo has been deleted"; # Added 2025-02-07 finger_bsd = bsd-finger; fingerd_bsd = bsd-fingerd; fira-code-nerdfont = lib.warnOnInstantiate "fira-code-nerdfont is redundant. Use nerd-fonts.fira-code instead." nerd-fonts.fira-code; # Added 2024-11-10 From ed0460e075b8de5ae05834845f520be9b21d32d4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 18:34:33 +0000 Subject: [PATCH 055/118] renode-dts2repl: 0-unstable-2025-01-14 -> 0-unstable-2025-01-31 --- pkgs/by-name/re/renode-dts2repl/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/re/renode-dts2repl/package.nix b/pkgs/by-name/re/renode-dts2repl/package.nix index 01ebb6c336c7..d214b24aa106 100644 --- a/pkgs/by-name/re/renode-dts2repl/package.nix +++ b/pkgs/by-name/re/renode-dts2repl/package.nix @@ -7,14 +7,14 @@ python3.pkgs.buildPythonApplication { pname = "renode-dts2repl"; - version = "0-unstable-2025-01-14"; + version = "0-unstable-2025-01-31"; pyproject = true; src = fetchFromGitHub { owner = "antmicro"; repo = "dts2repl"; - rev = "cba1604ee130e7fa831392b315b55a142c5adc46"; - hash = "sha256-8xFixNOPFL5af+6Lbp84Z6C/ZFWsCcKPf6G4KpBbj/A="; + rev = "fb9a4a69a79701ffc40672ac85001a75c39d02f3"; + hash = "sha256-Ud6GQgPw5nMW5crHZWSRur0EWuKfWd60OvVizslWQ4U="; }; nativeBuildInputs = [ From 233b8ba17c06c3ec3bf1a55d67d1ce4773ccb68b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 18:48:23 +0000 Subject: [PATCH 056/118] terraform-providers.tencentcloud: 1.81.164 -> 1.81.165 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 6b8fc339e89e..0a54c7103df4 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1273,11 +1273,11 @@ "vendorHash": "sha256-Cqo7aq0uBISrnpQPrmJBNACSt2mAt12I4xpf8yDd0AU=" }, "tencentcloud": { - "hash": "sha256-g4UQs7GdU5GFkrC9eeFLMYGLR2Wt2UbSSX5yP1CExT0=", + "hash": "sha256-0MkjN9gQZqi7qmbnFyVIFvRD3bpRtfsUqyjARLtkLBA=", "homepage": "https://registry.terraform.io/providers/tencentcloudstack/tencentcloud", "owner": "tencentcloudstack", "repo": "terraform-provider-tencentcloud", - "rev": "v1.81.164", + "rev": "v1.81.165", "spdx": "MPL-2.0", "vendorHash": null }, From f78ea06b5b680f53ef56e712620c781f1478e4e3 Mon Sep 17 00:00:00 2001 From: DontEatOreo <57304299+DontEatOreo@users.noreply.github.com> Date: Fri, 7 Feb 2025 18:59:38 +0000 Subject: [PATCH 057/118] arc-browser: 1.79.0-57949 -> 1.79.1-58230 Changelog: https://arc.net/e/2A19CFFC-742D-45CB-92F1-0B8D9CCE1497 --- pkgs/by-name/ar/arc-browser/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ar/arc-browser/package.nix b/pkgs/by-name/ar/arc-browser/package.nix index e8fbc5afe95b..35ddef88b01f 100644 --- a/pkgs/by-name/ar/arc-browser/package.nix +++ b/pkgs/by-name/ar/arc-browser/package.nix @@ -10,11 +10,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "arc-browser"; - version = "1.79.0-57949"; + version = "1.79.1-58230"; src = fetchurl { url = "https://releases.arc.net/release/Arc-${finalAttrs.version}.dmg"; - hash = "sha256-qGcqtBLy83/5PtDxaB3aD5fCeSGQ1/63EpLCA26TDgM="; + hash = "sha256-BYlKiDcgVviKeKI++qjTALRblI+kFNq7gm5EFmaa3sM="; }; nativeBuildInputs = [ undmg ]; From d7327f74b8a49a6e9941ae8c6181cef80dbfca58 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 19:28:51 +0000 Subject: [PATCH 058/118] heptabase: 1.51.1 -> 1.52.0 --- pkgs/by-name/he/heptabase/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/he/heptabase/package.nix b/pkgs/by-name/he/heptabase/package.nix index d75879d80d9f..f3dd381b6c24 100644 --- a/pkgs/by-name/he/heptabase/package.nix +++ b/pkgs/by-name/he/heptabase/package.nix @@ -5,10 +5,10 @@ }: let pname = "heptabase"; - version = "1.51.1"; + version = "1.52.0"; src = fetchurl { url = "https://github.com/heptameta/project-meta/releases/download/v${version}/Heptabase-${version}.AppImage"; - hash = "sha256-ANVgH20I6pCy2WI3Umni8YCCWxgGrnyP154iHttlQTs="; + hash = "sha256-r0fpP50CIhEm+TOIWy9lsuM+uXZkjH7kAkfuH4RqHt0="; }; appimageContents = appimageTools.extractType2 { inherit pname version src; }; From e48baaf3730da3c3eb45a1a2a1f1e137d3b52efd Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Fri, 7 Feb 2025 20:57:29 +0100 Subject: [PATCH 059/118] fcft: 3.1.9 -> 3.1.10 https://codeberg.org/dnkl/fcft/releases/tag/3.1.10 --- pkgs/by-name/fc/fcft/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fc/fcft/package.nix b/pkgs/by-name/fc/fcft/package.nix index 5809b417aa22..2d9289a7d6df 100644 --- a/pkgs/by-name/fc/fcft/package.nix +++ b/pkgs/by-name/fc/fcft/package.nix @@ -34,14 +34,14 @@ in stdenv.mkDerivation rec { pname = "fcft"; - version = "3.1.9"; + version = "3.1.10"; src = fetchFromGitea { domain = "codeberg.org"; owner = "dnkl"; repo = "fcft"; rev = version; - hash = "sha256-D4W62IHuM7ofEeU/3sp038tv2a1+xQd0mdSKXaY7Ikg="; + hash = "sha256:0hydhpw31c28lq7v5yvknm3dzvkkls98hcmpp0z2h9m9f32nq4s9"; }; depsBuildBuild = [ pkg-config ]; From 2a9b5f46a76a59b3bf106de7b9254db0a73e91a6 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 8 Feb 2025 04:27:46 +0800 Subject: [PATCH 060/118] tmuxPlugins.resurrect: fix build --- pkgs/misc/tmux-plugins/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 48f077445220..2d9450274703 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -537,7 +537,8 @@ in rec { owner = "tmux-plugins"; repo = "tmux-resurrect"; rev = "ca6468e2deef11efadfe3a62832ae67742505432"; - hash = "sha256-dkiIbTPIn3ampK7LItndOL69cMVfuJyOIQZL4lt58jQ="; + hash = "sha256-wl9/5XvFq+AjV8CwYgIZjPOE0/kIuEYBNQqNDidjNFo="; + fetchSubmodules = true; }; meta = { homepage = "https://github.com/tmux-plugins/tmux-resurrect"; From 23ef66d70cbf6d9dd914a8d6f1b03c08b82285a5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 20:51:33 +0000 Subject: [PATCH 061/118] treesheets: 0-unstable-2025-01-16 -> 0-unstable-2025-02-05 --- pkgs/applications/office/treesheets/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/office/treesheets/default.nix b/pkgs/applications/office/treesheets/default.nix index 99c0ccfccabf..580cf2fe8745 100644 --- a/pkgs/applications/office/treesheets/default.nix +++ b/pkgs/applications/office/treesheets/default.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation rec { pname = "treesheets"; - version = "0-unstable-2025-01-16"; + version = "0-unstable-2025-02-05"; src = fetchFromGitHub { owner = "aardappel"; repo = "treesheets"; - rev = "f8edf8abe4d7f18528cec6460831d34ee30881e3"; - hash = "sha256-6EwlpdbLEBu5oUQx6IawaFMkBbmfoRb+lZMZiVLAk8k="; + rev = "474b0cd2e779e22fc8e6de225a27ad88bc5eec65"; + hash = "sha256-qJ30qjwV4ayTvf2XAZnAdn907YdYCb/XAhxaExDeHZI="; }; nativeBuildInputs = [ From dc29c94aac6ebcd5c4b6da2eeff268614a353db4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 21:28:11 +0000 Subject: [PATCH 062/118] cloudflare-utils: 1.3.4 -> 1.3.5 --- pkgs/by-name/cl/cloudflare-utils/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/cl/cloudflare-utils/package.nix b/pkgs/by-name/cl/cloudflare-utils/package.nix index 48f34dd0e08d..d1f35537098c 100644 --- a/pkgs/by-name/cl/cloudflare-utils/package.nix +++ b/pkgs/by-name/cl/cloudflare-utils/package.nix @@ -5,13 +5,13 @@ }: buildGoModule rec { pname = "cloudflare-utils"; - version = "1.3.4"; + version = "1.3.5"; src = fetchFromGitHub { owner = "Cyb3r-Jak3"; repo = "cloudflare-utils"; rev = "v${version}"; - hash = "sha256-XYOYun7PmZEQQRVCi46tBYoNZdXedmhpdUygtVlU0bE="; + hash = "sha256-LbqH48ysOp2s+e+52doHIyaxUbzzCdJqhdvLuIJ3CCc="; }; vendorHash = "sha256-fg2BJkXdCWAO83kMoxkHlEyZuVezu9rs0hEda17KObE="; From 4fdf8f6a55fa0c340c9a9c2bed4d029a80cdc306 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 21:58:15 +0000 Subject: [PATCH 063/118] marmite: 0.2.4 -> 0.2.5 --- pkgs/by-name/ma/marmite/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ma/marmite/package.nix b/pkgs/by-name/ma/marmite/package.nix index ff00e7335e87..e86839fe74a5 100644 --- a/pkgs/by-name/ma/marmite/package.nix +++ b/pkgs/by-name/ma/marmite/package.nix @@ -10,17 +10,17 @@ rustPlatform.buildRustPackage rec { pname = "marmite"; - version = "0.2.4"; + version = "0.2.5"; src = fetchFromGitHub { owner = "rochacbruno"; repo = "marmite"; tag = version; - hash = "sha256-IfmwPN2PbBXJJXHgwseC5L3sDOjaVlRE//H8uHazSNA="; + hash = "sha256-FxI+Qh3ZM6ZgE/KyZ/gU3CutBHETymgvkjNkYAJ012E="; }; useFetchCargoVendor = true; - cargoHash = "sha256-C2GGQQ4Aphi1hNQjSWGK9ZnvbwdZSWugKxsUrB5KtHU="; + cargoHash = "sha256-LMoakr7LGKFkxymOC8cNxxFbDDqw5gniqh/3ImnEbB8="; nativeBuildInputs = [ pkg-config From 7d2ad8a9b70985eb3496ef8687997d0d30c3f991 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 7 Feb 2025 22:14:03 +0000 Subject: [PATCH 064/118] pv-migrate: 2.1.0 -> 2.2.0 --- pkgs/by-name/pv/pv-migrate/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pv/pv-migrate/package.nix b/pkgs/by-name/pv/pv-migrate/package.nix index b59d4d1a31d7..0488e41ae9e6 100644 --- a/pkgs/by-name/pv/pv-migrate/package.nix +++ b/pkgs/by-name/pv/pv-migrate/package.nix @@ -7,18 +7,18 @@ buildGoModule rec { pname = "pv-migrate"; - version = "2.1.0"; + version = "2.2.0"; src = fetchFromGitHub { owner = "utkuozdemir"; repo = pname; tag = "v${version}"; - sha256 = "sha256-41yuxvGsJ+BTvw96hWhVRqqJ1UXhvqGO9Y0hU7PfjTU="; + sha256 = "sha256-yYY3UgqHdFXoGj6n4kY45J/2QujPboWucnmbbXjjhRM="; }; subPackages = [ "cmd/pv-migrate" ]; - vendorHash = "sha256-bkyANbdQIsb8XHRQvI//RogFfVr7x6wwsieru1KIppU="; + vendorHash = "sha256-wMlwfWMrjvo+9VUt8ZUcYHrsa9NOZhCj6LArdqXVCI4="; ldflags = [ "-s" From 7098d5322ac8915cb2a06cf88c78204d9dc2eee2 Mon Sep 17 00:00:00 2001 From: networkException Date: Sat, 8 Feb 2025 00:04:31 +0100 Subject: [PATCH 065/118] ungoogled-chromium: 132.0.6834.159-1 -> 133.0.6943.53-1 https://chromereleases.googleblog.com/2025/02/stable-channel-update-for-desktop.html This update includes 12 security fixes. CVEs: CVE-2025-0444 CVE-2025-0445 CVE-2025-0451 --- .../networking/browsers/chromium/info.json | 325 ++++++++++-------- 1 file changed, 175 insertions(+), 150 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/info.json b/pkgs/applications/networking/browsers/chromium/info.json index 294733def83d..ec6ffb4603a7 100644 --- a/pkgs/applications/networking/browsers/chromium/info.json +++ b/pkgs/applications/networking/browsers/chromium/info.json @@ -791,53 +791,53 @@ } }, "ungoogled-chromium": { - "version": "132.0.6834.159", + "version": "133.0.6943.53", "deps": { "depot_tools": { - "rev": "41d43a2a2290450aeab946883542f8049b155c87", - "hash": "sha256-m/6b4VZZTUQOeED1mYvZOQCx8Re+Zd4O8SKDMjJ9Djo=" + "rev": "423f1e1914ab4aa7b2bdf804e216d4c097853ba2", + "hash": "sha256-R7cGQLM6yJgFL43UO+zAGbq+9XEbKbtJVFRwdIUB1F8=" }, "gn": { - "rev": "feafd1012a32c05ec6095f69ddc3850afb621f3a", - "hash": "sha256-zZoD5Bx7wIEP2KJkHef6wHrxU3px+8Vseq29QcK32bg=" + "rev": "c97a86a72105f3328a540f5a5ab17d11989ab7dd", + "hash": "sha256-T2dcISln9WCODoI/LsE2ldkRfFdMwVOmqqjQinAmZss=" }, "ungoogled-patches": { - "rev": "132.0.6834.159-1", - "hash": "sha256-sot7YixPnt8ALPR2IIPgR1NtN/Oc14qlzyB3Vny+DAM=" + "rev": "133.0.6943.53-1", + "hash": "sha256-8n0BST0sqQRcfv0lCiEflrvyxt8Agj/kK0O2fVzWqCY=" }, - "npmHash": "sha256-H1/h3x+Cgp1x94Ze3UPPHxRVpylZDvpMXMOuS+jk2dw=" + "npmHash": "sha256-oVoTruhxTymYiGkELd2Oa1wOfjGLtChQZozP4GzOO1A=" }, "DEPS": { "src": { "url": "https://chromium.googlesource.com/chromium/src.git", - "rev": "2d77d3fc4452661469b78f115e0aed4d71269739", - "hash": "sha256-LbLIxN13fx6zzU5xzGvkTpw7tKRQBel2PYhflHLbWE8=", + "rev": "9a80935019b0925b01cc21d254da203bc3986f04", + "hash": "sha256-doJ/HygMtLxr04S73lhs5kTt8qC7SHrCxHbjAoFPv2M=", "recompress": true }, "src/third_party/clang-format/script": { "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git", - "rev": "3c0acd2d4e73dd911309d9e970ba09d58bf23a62", - "hash": "sha256-whD8isX2ZhLrFzdxHhFP1S/sZDRgyrzLFaVd7OEFqYo=" + "rev": "37f6e68a107df43b7d7e044fd36a13cbae3413f2", + "hash": "sha256-d9uweklBffiuCWEb03ti1eFLnMac2qRtvggzXY1n/RU=" }, "src/third_party/libc++/src": { "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git", - "rev": "8e31ad42561900383e10dbefc1d3e8f38cedfbe9", - "hash": "sha256-kmhTlz/qjvN0Qlra7Wz05O6X058hPPn0nVvAxFXQDC4=" + "rev": "1f7db7501cf902d5d3ad5fd9b31bea33bb8bf9da", + "hash": "sha256-d1Am+7O7KYKEfs9HpAHlw6n6nWpd219gw2Cr5RaBl7w=" }, "src/third_party/libc++abi/src": { "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git", - "rev": "cec7f478354a8c8599f264ed8bb6043b5468f72d", - "hash": "sha256-CwiK9Td8aRS08RywItHKFvibzDAUYYd0YNRKxYPLTD8=" + "rev": "83dfa1f5bfce32d5f75695542468e37ead8163b8", + "hash": "sha256-SUpg+lGtjchvh2CejKEIADAo6ozvHYj2BxzMcMZODCw=" }, "src/third_party/libunwind/src": { "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git", - "rev": "5b01ea4a6f3b666b7d190e7cb7c31db2ed4d94ce", - "hash": "sha256-uA+t5Ecc/iK3mllHR8AMVGRfU/7z1G3yrw0TamPQiOY=" + "rev": "d1e95b102f113ded38974cf06a65fe0457b6004b", + "hash": "sha256-cRqctLgtiqODZf3B8ZIA2wJWCiEsuYTH24ppFtzDh3M=" }, "src/third_party/llvm-libc/src": { "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libc.git", - "rev": "ca74a72e2b32ad804522bbef04dfe32560a10206", - "hash": "sha256-av9JdqLOQbezgRS4P8QXmvfB5l47v04WRagNJJgT5u4=" + "rev": "039fea2058d14b408637a931b36a717169617227", + "hash": "sha256-Uf9DfH62xWzcOsvaekeqXiwsIaIJMFK7kXK82ReY66Y=" }, "src/chrome/test/data/perf/canvas_bench": { "url": "https://chromium.googlesource.com/chromium/canvas_bench.git", @@ -856,18 +856,18 @@ }, "src/docs/website": { "url": "https://chromium.googlesource.com/website.git", - "rev": "be9c3dfd3781964fc0bab0d6c91d9ad117b71b02", - "hash": "sha256-CqveHvjPEcRWnzi8w13xr2OainrmABNO8uj0GzKmQqo=" + "rev": "4d214097ba7305ec2b3f2dfcf0aa4fd2104c960a", + "hash": "sha256-QvwWHVdLnDqJ6hz0Eli5AnM5gaXDya0En7BIm4vlm6c=" }, "src/media/cdm/api": { "url": "https://chromium.googlesource.com/chromium/cdm.git", - "rev": "eb21edc44e8e5a82095037be80c8b15c51624293", - "hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=" + "rev": "06395a2863cb1ebdb47617a995b73f95c14fe120", + "hash": "sha256-bx0zCgqgGPjm3wjo8Y3T5kWp14WW9uoDtvn5+QOAPw0=" }, "src/net/third_party/quiche/src": { "url": "https://quiche.googlesource.com/quiche.git", - "rev": "9616efc903b7469161996006c8cf963238e26503", - "hash": "sha256-Z2uFWfZDYcY0m4R6mFMZJLnnVHu3/hQOAkCPQ5049SQ=" + "rev": "981c424462d9e5210dc843e92b325c93d3bee4e9", + "hash": "sha256-O/3qN0pCHSzTURuqzk4schY+aRgRCHHbaTVzbQl3ur4=" }, "src/testing/libfuzzer/fuzzers/wasm_corpus": { "url": "https://chromium.googlesource.com/v8/fuzzer_wasm_corpus.git", @@ -881,8 +881,8 @@ }, "src/third_party/angle": { "url": "https://chromium.googlesource.com/angle/angle.git", - "rev": "ce13a00a2b049a1ef5e0e70a3d333ce70838ef7b", - "hash": "sha256-fMIHpa2QFsQQ19LGyhvV3Ihh6Ls8wwwhqTtpLoTEaf4=" + "rev": "8304737811a7851e2bfdcf6f667b68dbac4e962a", + "hash": "sha256-kjBkeTaZ0aCpMVyHOJLK5mbGBMB5xG1bnx7pr6d92jc=" }, "src/third_party/angle/third_party/glmark2/src": { "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2", @@ -896,8 +896,8 @@ }, "src/third_party/angle/third_party/VK-GL-CTS/src": { "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS", - "rev": "f674555ab03e6355e0981a647c115097e9fe5324", - "hash": "sha256-2ZhG4cJf85zO7x+SGG6RD2qgOxZVosxAIbuZt9GYUKs=" + "rev": "9509eb274dfec320e970d4c85e17ecf15f27ebe3", + "hash": "sha256-EZBAJP6puSn1vIO+JRPzZkp+uftneyga0zOXpf0W2os=" }, "src/third_party/anonymous_tokens/src": { "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git", @@ -911,13 +911,13 @@ }, "src/third_party/dav1d/libdav1d": { "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git", - "rev": "93f12c117a4e1c0cc2b129dcc52e84dbd9b84200", - "hash": "sha256-Q2CaWvDqOmfaPG6a+SUHG5rFHalPEf4Oq/ytT3xuSOk=" + "rev": "b129d9f2cb897cedba77a60bd5e3621c14ee5484", + "hash": "sha256-79NsUzY9fxOXlzwutAF80salew+uVHsadj2BgtEQbfo=" }, "src/third_party/dawn": { "url": "https://dawn.googlesource.com/dawn.git", - "rev": "73dbf565079c89a531e6e01c4e8fc048a8a9660b", - "hash": "sha256-6P3Mw60+xZVsFbrhG6UkTlz8xvvEOptV3Ar1sos0CsU=" + "rev": "d4321eef8c5c94107783d903355c1cbbbb8a3776", + "hash": "sha256-28I6Q/Ip6FhlZa2uFuMrW5YJFaDJrv/bc/wztpfO42g=" }, "src/third_party/dawn/third_party/glfw": { "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw", @@ -926,8 +926,8 @@ }, "src/third_party/dawn/third_party/dxc": { "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler", - "rev": "ac36a797d3470e8ee906b98457a59270d01db30d", - "hash": "sha256-rhUNPA5b0H3PBsOpXbAeRLpS0tNQkiHbjRBWmJycSAY=" + "rev": "a8a4e98a2367080af683c48feedd7f7481a31a96", + "hash": "sha256-kc3s0LLYi3rNVTPzKQiX46JqnPkqV98tbVQr7OHuRvs=" }, "src/third_party/dawn/third_party/dxheaders": { "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers", @@ -951,8 +951,8 @@ }, "src/third_party/dawn/third_party/webgpu-cts": { "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts", - "rev": "8690defa74b6975c10e85c113f121d4b2a3f2564", - "hash": "sha256-ArbHGjkHd1sko7gDPFksYz7XHKNge+e6tVy6oKPuqzg=" + "rev": "ba2bd8ab91d41b60b879b134d850d326eb86ef12", + "hash": "sha256-FOHgZOI7w7LzZZ14O72b7B/D/Gkvv/2KCf8+bZEPXNM=" }, "src/third_party/highway/src": { "url": "https://chromium.googlesource.com/external/github.com/google/highway.git", @@ -966,13 +966,13 @@ }, "src/third_party/boringssl/src": { "url": "https://boringssl.googlesource.com/boringssl.git", - "rev": "571c76e919c0c48219ced35bef83e1fc83b00eed", - "hash": "sha256-ib9wbV6S64OFc4zx0wQsQ84+5RxbETK0PS9Wm1BFQ1U=" + "rev": "d777ea2a7004ff7ef40ef983b41a5125f316f898", + "hash": "sha256-GOzeQ6BOXSqpDtgYOIyQae+jCKkqzMsU5N2WE95UR6Q=" }, "src/third_party/breakpad/breakpad": { "url": "https://chromium.googlesource.com/breakpad/breakpad.git", - "rev": "47f7823bdf4b1f39e462b2a497a674860e922e38", - "hash": "sha256-cFXUi2oO/614jF0GV7oW0ss62dXWFHDNWNT8rWHAiQc=" + "rev": "02dd5c3ffbfed2bcbc93b553ed0e90a1ac951cb4", + "hash": "sha256-1JL9QLMycOXvSrwuvqHxYjSxru6qOmrsJIKMAzPId2s=" }, "src/third_party/cast_core/public/src": { "url": "https://chromium.googlesource.com/cast_core/public", @@ -981,8 +981,8 @@ }, "src/third_party/catapult": { "url": "https://chromium.googlesource.com/catapult.git", - "rev": "b91cf840ac3255ef03b23cc93621369627422a1a", - "hash": "sha256-65cZPyqZUdSnYPJYUMYeJgx3mUC6L/qb9P2bDqd2Zkk=" + "rev": "8e5d239c953a309d4bf8aa70481bafa921834cc3", + "hash": "sha256-2sBXPPb9o/YKE9v9W+IxJ7o/6yOzP0q5GZWcWvohUM4=" }, "src/third_party/ced/src": { "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git", @@ -991,8 +991,8 @@ }, "src/third_party/chromium-variations": { "url": "https://chromium.googlesource.com/chromium-variations.git", - "rev": "c170abb48f7715c237f4c06eaed0fe6f8a4c6f8d", - "hash": "sha256-mg5mu2jcy0xyNJ650ywWUMC94keRsqhZQuPZclHmyLI=" + "rev": "0fcd7c5b11aca584c5c03b2af870c9f3af6c631c", + "hash": "sha256-K9saSXK6fCRuRBdX2PPmotO2K3tatiDwuciCDK6O1MU=" }, "src/third_party/cld_3/src": { "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git", @@ -1011,8 +1011,8 @@ }, "src/third_party/cpuinfo/src": { "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git", - "rev": "8df44962d437a0477f07ba6b8843d0b6a48646a4", - "hash": "sha256-FlvmSjY8kt5XHymDLaZdPuZ4k5xcagJk8w/U6adTkWI=" + "rev": "ca156f7bc9109c552973414a63d310f76ef0cbf8", + "hash": "sha256-hIGizsl1NSGySXPI9Xx69xCfQLAMpYviYhBXX201N4o=" }, "src/third_party/crc32c/src": { "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git", @@ -1021,23 +1021,23 @@ }, "src/third_party/cros_system_api": { "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git", - "rev": "554629b9242e6ae832ef14e3384654426f7fcc06", - "hash": "sha256-fvGypRhgl2uX9YE2cwjL7d3pYBa3Imd5p0RLhMYRgrc=" + "rev": "497b90c6e283745f976d783ed2beaafeef42b1bf", + "hash": "sha256-s8ot4NvZfpUbLz/AMNX4F9e78AquKWk/YjguErBZCYE=" }, "src/third_party/crossbench": { "url": "https://chromium.googlesource.com/crossbench.git", - "rev": "ae6f165652e0ea983d73f5d04b7470d08c869e4f", - "hash": "sha256-/K6eM9s+fd2wjCrK0g0CgFNy0zxEN9SxTvmE50hMtXw=" + "rev": "1b41ed2574ef931f2d1157ebb153c9d552f69670", + "hash": "sha256-FgI0D1neQ/jrNaQxMsj2hOM6nF14ZYfGHuqUznRK4Rc=" }, "src/third_party/depot_tools": { "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git", - "rev": "41d43a2a2290450aeab946883542f8049b155c87", - "hash": "sha256-m/6b4VZZTUQOeED1mYvZOQCx8Re+Zd4O8SKDMjJ9Djo=" + "rev": "423f1e1914ab4aa7b2bdf804e216d4c097853ba2", + "hash": "sha256-R7cGQLM6yJgFL43UO+zAGbq+9XEbKbtJVFRwdIUB1F8=" }, "src/third_party/devtools-frontend/src": { "url": "https://chromium.googlesource.com/devtools/devtools-frontend", - "rev": "f2f3682c9db8ca427f8c64f0402cc2c5152c6c24", - "hash": "sha256-mBWZdbgZfO01Pt2lZSHX/d5r+8A/+qCZA8MRtZdeTrs=" + "rev": "41deafc3d1ae776a97d8fd1cfb457a06908e3a6d", + "hash": "sha256-8ev0h+/R1L8VXQqpKJ3zVIQ+kYHKWyNJYcGhPdVhSa4=" }, "src/third_party/dom_distiller_js/dist": { "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git", @@ -1046,8 +1046,8 @@ }, "src/third_party/eigen3/src": { "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git", - "rev": "b396a6fbb2e173f52edb3360485dedf3389ef830", - "hash": "sha256-UroGjERR5TW9KbyLwR/NBpytXrW1tHfu6ZvQPngROq4=" + "rev": "24e0c2a125d2b37b35719124d1f758777c150ca8", + "hash": "sha256-c0QHya0eDKQc5YvvxIoL722fPm3XD3PagJb+pEwSAGQ=" }, "src/third_party/farmhash/src": { "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git", @@ -1061,8 +1061,8 @@ }, "src/third_party/ffmpeg": { "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git", - "rev": "591ae4b02eaff9a03e2ec863da895128b0b49910", - "hash": "sha256-wwHxNuZe2hBmGBpVg/iQJBoL350jfPYPTPqDn3RiqZE=" + "rev": "d10a0f8bf5ddcce572df95105152bc74041cae0c", + "hash": "sha256-OXumpRb9XB38dOCJmL3jDcabiJ08wAvydVlJwMgpCoQ=" }, "src/third_party/flac": { "url": "https://chromium.googlesource.com/chromium/deps/flac.git", @@ -1096,8 +1096,8 @@ }, "src/third_party/freetype/src": { "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git", - "rev": "0ae7e607370cc66218ccfacf5de4db8a35424c2f", - "hash": "sha256-+nbRZi3vAMTURhhFVUu5+59fVIv0GH3YZog2JavyVLY=" + "rev": "afc7000cacb8cc90ae61036858c5306defa1236a", + "hash": "sha256-ZaAoUxqr3GZ05Zux2jDS4YCbFaeJ4Z+dc3gZCRL09NE=" }, "src/third_party/freetype-testing/src": { "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git", @@ -1111,13 +1111,13 @@ }, "src/third_party/harfbuzz-ng/src": { "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git", - "rev": "1da053e87f0487382404656edca98b85fe51f2fd", - "hash": "sha256-iR49rfGDKxPObCff1/30hYHpP5FpZ28ROgMZhNk9eFY=" + "rev": "1c249be96e27eafd15eb86d832b67fbc3751634b", + "hash": "sha256-TStJvz3Txn4cvU1tCPPZn6RLslvM+VNUqt8l8g67JN4=" }, "src/third_party/ink/src": { "url": "https://chromium.googlesource.com/external/github.com/google/ink.git", - "rev": "4300dc7402a257b85fc5bf2559137edacb050227", - "hash": "sha256-+Ikr9E7KlXBFyf6fSDmIF3ygNUiwlXeA5bmO2CtkI7Q=" + "rev": "e5673a4ff2d82f29b22f7bec114161cbc1ff8cf8", + "hash": "sha256-/F4p2VRDWJ0bZRtSoWtgK8gnQDaOrHwoKwGvuSRq3a0=" }, "src/third_party/ink_stroke_modeler/src": { "url": "https://chromium.googlesource.com/external/github.com/google/ink-stroke-modeler.git", @@ -1126,8 +1126,8 @@ }, "src/third_party/instrumented_libs": { "url": "https://chromium.googlesource.com/chromium/third_party/instrumented_libraries.git", - "rev": "bb6dbcf2df7a9beb34c3773ef4df161800e3aed9", - "hash": "sha256-kHKGADAgzlaeckXFbpU1GhJK+zkiRd9XvdtPF6qrQFY=" + "rev": "3cc43119a29158bcde39d288a8def4b8ec49baf8", + "hash": "sha256-7w5wMcmPcKLS91buxyRdcgaQjbKGFdmrKClvYVO3iko=" }, "src/third_party/emoji-segmenter/src": { "url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git", @@ -1146,8 +1146,8 @@ }, "src/third_party/googletest/src": { "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git", - "rev": "d144031940543e15423a25ae5a8a74141044862f", - "hash": "sha256-n7tiIFAj8AiSCa9Tw+1j+ro9cSt5vagZpkbBBUUtYQY=" + "rev": "7d76a231b0e29caf86e68d1df858308cd53b2a66", + "hash": "sha256-ssYxqE/NZJGTAbuWTXg150qlvMS3QNaonEk9dK8jJWI=" }, "src/third_party/hunspell_dictionaries": { "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git", @@ -1156,8 +1156,8 @@ }, "src/third_party/icu": { "url": "https://chromium.googlesource.com/chromium/deps/icu.git", - "rev": "ba7ed88cc5ffa428a82a0f787dd61031aa5ef4ca", - "hash": "sha256-WtCoxcbEkkZayB6kXdQEhZ7/ue+ka6cguhFbpeWUBJA=" + "rev": "bbccc2f6efc1b825de5f2c903c48be685cd0cf22", + "hash": "sha256-O9qrAt8lwNBg5LCVz+SfTe48uJx8onVYwn0LRXIhUvY=" }, "src/third_party/jsoncpp/source": { "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git", @@ -1166,18 +1166,18 @@ }, "src/third_party/leveldatabase/src": { "url": "https://chromium.googlesource.com/external/leveldb.git", - "rev": "23e35d792b9154f922b8b575b12596a4d8664c65", - "hash": "sha256-y3awFXL8ih2UhEqWj8JRgkhzSxfQciLztb020JHJ350=" + "rev": "578eeb702ec0fbb6b9780f3d4147b1076630d633", + "hash": "sha256-tOSl9w9hEUnuQR+DxfZlHqEXXcpeyDlZrw2NWDUyXoY=" }, "src/third_party/libFuzzer/src": { "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git", - "rev": "a7128317fe7935a43d6c9f39df54f21113951941", - "hash": "sha256-jPS+Xi/ia0sMspxSGN38zasmVS/HslxH/qOFsV9TguE=" + "rev": "e31b99917861f891308269c36a32363b120126bb", + "hash": "sha256-Lb+HczYax0T7qvC0/Nwhc5l2szQTUYDouWRMD/Qz7sA=" }, "src/third_party/fuzztest/src": { "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git", - "rev": "0021f30508bc7f73fa5270962d022acb480d242f", - "hash": "sha256-UYmzjOX8k+CWL+xOIF3NiEL3TRUjS8JflortB2RUT4o=" + "rev": "3b4a590f7fc75a77823580c4c4e19d1c7bd6da52", + "hash": "sha256-+m6F1rqfIQcxKZbAJgQfKbokYPZSR+PrEHxMiE9IVKA=" }, "src/third_party/domato/src": { "url": "https://chromium.googlesource.com/external/github.com/googleprojectzero/domato.git", @@ -1191,23 +1191,23 @@ }, "src/third_party/libaom/source/libaom": { "url": "https://aomedia.googlesource.com/aom.git", - "rev": "be60f06ab420d6a65c477213f04c8b0f2e12ba2e", - "hash": "sha256-9VhEVOG9cReDOGoX+x5G/jJ8Y5RDoQIiLMoZtt5c9pI=" + "rev": "0c13a5d54053f82bf8500b421b5cdefb1cc1b3ed", + "hash": "sha256-uGvdLJNzvd7WxRAjTxYVaX5Y7Oc54f8fLEtpErAdCdg=" }, "src/third_party/libavif/src": { "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git", - "rev": "1cdeff7ecf456492c47cf48fc0cef6591cdc95da", - "hash": "sha256-lUuVyh2srhWMNUp4lEivyDic3MSZf5s63iAb84We80M=" + "rev": "e9a27bc6a84f01b6670c05c301c445f33a464992", + "hash": "sha256-4slyN5V7UCDbGHK/xZfC5MuOGhctVF6r/1lSnOHJB5Y=" }, "src/third_party/crabbyavif/src": { "url": "https://chromium.googlesource.com/external/github.com/webmproject/CrabbyAvif.git", - "rev": "c3548280e0a516ed7cad7ff1591b5807cef64aa4", - "hash": "sha256-hO5epHYNYI6pGwVSUv1Hp3qb7qOv8uOs4u+IdhDxd8Q=" + "rev": "879ca873d6648a01de65e4cb0b86336b581aa513", + "hash": "sha256-JF1s3rDH0u5srtzyGQt/LU8iVlx1qPqE4RBE1AR8KPQ=" }, "src/third_party/nearby/src": { "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git", - "rev": "8e87a6e51c93e7836ecdbcc0a520c7992f3ece13", - "hash": "sha256-DO3FW5Q233ctFKk4K5F8oZec9kfrVl6uxAwMn0niKz4=" + "rev": "1864b0b55506bfc1eafc3785502f085f41aa0921", + "hash": "sha256-tTJ9tJBiWbAurKvb8aPn0KLHd724CYk5wlVIVZPWB0o=" }, "src/third_party/beto-core/src": { "url": "https://beto-core.googlesource.com/beto-core.git", @@ -1219,11 +1219,26 @@ "rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84", "hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=" }, + "src/third_party/speedometer/main": { + "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git", + "rev": "67bc21f1f44567a3ba41d7a3d8d0bec0e74f4a9e", + "hash": "sha256-mx4Z/co1mZcu//nlGIg5yH+XiTWB0sdiEK8Jvbi4THU=" + }, "src/third_party/speedometer/v3.0": { "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git", "rev": "8d67f28d0281ac4330f283495b7f48286654ad7d", "hash": "sha256-qMQ4naX+4uUu3vtzzinjkhxX9/dNoTwj6vWCu4FdQmU=" }, + "src/third_party/speedometer/v2.0": { + "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git", + "rev": "732af0dfe867f8815e662ac637357e55f285dbbb", + "hash": "sha256-p7WUS8gZUaS+LOm7pNmRkwgxjx+V8R6yy7bbaEHaIs4=" + }, + "src/third_party/speedometer/v2.1": { + "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git", + "rev": "8bf7946e39e47c875c00767177197aea5727e84a", + "hash": "sha256-0z5tZlz32fYh9I1ALqfLm2WWO8HiRBwt0hcmgKQhaeM=" + }, "src/third_party/ukey2/src": { "url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git", "rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47", @@ -1231,8 +1246,8 @@ }, "src/third_party/cros-components/src": { "url": "https://chromium.googlesource.com/external/google3/cros_components.git", - "rev": "9129cf4b2a5ca775c280243257a0b4856a93c7fb", - "hash": "sha256-owXaTIj0pbhUeJkirxaRoCmgIN9DwNzY3h771kaN+Fc=" + "rev": "59dd6e3d06e111c6a3d323a92e6478b9bbf15915", + "hash": "sha256-x9udwohR5jKPL6x2Hxu2FdS2aW3T8VIGZ4mLtgNQ5io=" }, "src/third_party/libdrm/src": { "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git", @@ -1261,8 +1276,8 @@ }, "src/third_party/libphonenumber/dist": { "url": "https://chromium.googlesource.com/external/libphonenumber.git", - "rev": "140dfeb81b753388e8a672900fb7a971e9a0d362", - "hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=" + "rev": "9d46308f313f2bf8dbce1dfd4f364633ca869ca7", + "hash": "sha256-ZbuDrZEUVp/ekjUP8WO/FsjAomRjeDBptT4nQZvTVi4=" }, "src/third_party/libprotobuf-mutator/src": { "url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git", @@ -1271,18 +1286,23 @@ }, "src/third_party/libsrtp": { "url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git", - "rev": "000edd791434c8738455f10e0dd6b268a4852c0b", - "hash": "sha256-4qEZ9MD97MoqCUlZtbEhIKy+fDO1iIWqyrBsKwkjXTg=" + "rev": "a52756acb1c5e133089c798736dd171567df11f5", + "hash": "sha256-bkG1+ss+1a2rCHGwZjhvf5UaNVbPPZJt9HZSIPBKGwM=" }, "src/third_party/libsync/src": { "url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git", "rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6", "hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=" }, + "src/third_party/libva-fake-driver/src": { + "url": "https://chromium.googlesource.com/chromiumos/platform/libva-fake-driver.git", + "rev": "a9bcab9cd6b15d4e3634ca44d5e5f7652c612194", + "hash": "sha256-em/8rNqwv6szlxyji7mnYr3nObSW/x3OzEEnkiLuqpI=" + }, "src/third_party/libvpx/source/libvpx": { "url": "https://chromium.googlesource.com/webm/libvpx.git", - "rev": "727319a77ffe68e9aacb08e09ae7151b3a8f70a3", - "hash": "sha256-QGm37X4uid8zv+vRu0pVTvoQd2WcKztrj3tJkDjx82o=" + "rev": "8058a0b54991257a0e1a2fcf08d993a8b70c1d3a", + "hash": "sha256-iwUQ7WI9ThluB2+a4T7FlE7gPyBxTt9PZJnG6k5PYew=" }, "src/third_party/libwebm/source": { "url": "https://chromium.googlesource.com/webm/libwebm.git", @@ -1291,13 +1311,13 @@ }, "src/third_party/libwebp/src": { "url": "https://chromium.googlesource.com/webm/libwebp.git", - "rev": "845d5476a866141ba35ac133f856fa62f0b7445f", - "hash": "sha256-xuRpEwOnaLGZmrPvfUn3DSoJANd94CG+JXcN7Mdmk5I=" + "rev": "2af6c034ac871c967e04c8c9f8bf2dbc2e271b18", + "hash": "sha256-0sKGhXr6Rrpq0eoitAdLQ4l4fgNOzMWIEICrPyzwNz4=" }, "src/third_party/libyuv": { "url": "https://chromium.googlesource.com/libyuv/libyuv.git", - "rev": "6ac7c8f25170c85265fca69fd1fe5d31baf3344f", - "hash": "sha256-vPVq7RzqO7gBUgYuNX0Fwxqok9jtXXJZgbhVFchG5Ws=" + "rev": "47ddac2996378c34aab9318f0d218303b1d282e7", + "hash": "sha256-sB5iCuc3+Dp9uVm2mUt4XhQ3zazsueEVNNw6uTMGTuQ=" }, "src/third_party/lss": { "url": "https://chromium.googlesource.com/linux-syscall-support.git", @@ -1321,8 +1341,8 @@ }, "src/third_party/neon_2_sse/src": { "url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git", - "rev": "a15b489e1222b2087007546b4912e21293ea86ff", - "hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=" + "rev": "eb8b80b28f956275e291ea04a7beb5ed8289e872", + "hash": "sha256-AkDAHOPO5NdXXk0hETS5D67mzw0RVXwPDDKqM0XXo5g=" }, "src/third_party/openh264/src": { "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264", @@ -1331,8 +1351,8 @@ }, "src/third_party/openscreen/src": { "url": "https://chromium.googlesource.com/openscreen", - "rev": "cb6fd42532fc3a831d6863d5006217e32a67c417", - "hash": "sha256-IlGxfw6Mhc7FYvhU2+Ngt9qflqr4JMC2OcplvksGI+U=" + "rev": "991678c7c3b66807cb40619e46ebb7de1bc45a18", + "hash": "sha256-ULAd+neG99IXGMOT4Ur4tDdV+jxMucwQFid2xhHqcMY=" }, "src/third_party/openscreen/src/buildtools": { "url": "https://chromium.googlesource.com/chromium/src/buildtools", @@ -1346,13 +1366,13 @@ }, "src/third_party/pdfium": { "url": "https://pdfium.googlesource.com/pdfium.git", - "rev": "84a8011ec69d0e2de271c05be7d62979608040d9", - "hash": "sha256-d8qJECIdq01ct+sS7cHVKFulYJarwahKCEcVf762JNI=" + "rev": "c674dba647e81805158339785c0c7e3b57643f8c", + "hash": "sha256-2Z7Dg3IuxMB+xKFURo0Z7NztPQht7Fd+A1dX99gQ+A4=" }, "src/third_party/perfetto": { "url": "https://android.googlesource.com/platform/external/perfetto.git", - "rev": "ea011a2c2d3aecdc4f1674887e107a56d2905edd", - "hash": "sha256-3vervpsq/QLMrR7RcJMwwh+CdFvSEj8yAzj6s9d1XMo=" + "rev": "2473cc95bc0d2d0c3c240be49ce4c2d0dc48edd4", + "hash": "sha256-OUnQ4XStZ0Olm/IvlaLzcRdHo/EMPlQ6ekVTSrG7HW0=" }, "src/third_party/protobuf-javascript/src": { "url": "https://chromium.googlesource.com/external/github.com/protocolbuffers/protobuf-javascript", @@ -1386,23 +1406,23 @@ }, "src/third_party/ruy/src": { "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git", - "rev": "c08ec529fc91722bde519628d9449258082eb847", - "hash": "sha256-4NVvqUZn2BdwTxJINTHwPeRqbGXZrWdcd7jv1Y+eoKY=" + "rev": "95484c3e02206f73309c08ee5ee23d2304ca092b", + "hash": "sha256-BaRyNHZLpXNsJltffV7T19QrMWkTcCq37JZiWjAdSHo=" }, "src/third_party/skia": { "url": "https://skia.googlesource.com/skia.git", - "rev": "c17fe9bc158c29de3cdd655ac73d14f52c17810a", - "hash": "sha256-mRfkEm+NzEX0DkJejk1THx4G7v0sIFmRrAnt3Zl5uco=" + "rev": "ecebe831881cdf52c65df518777210071f7970dd", + "hash": "sha256-9pq0MEWRlR6bOamQW+onZkhGH82FUYRn3P1ooDUqnPY=" }, "src/third_party/smhasher/src": { "url": "https://chromium.googlesource.com/external/smhasher.git", - "rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f", + "rev": "3e1f0d1d8340cfe136d33fd27c75eb7694148214", "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=" }, "src/third_party/snappy/src": { "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git", - "rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c", - "hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=" + "rev": "32ded457c0b1fe78ceb8397632c416568d6714a0", + "hash": "sha256-jUwnjbaqXz7fgI2TPRK7SlUPQUVzcpjp4ZlFbEzwA+o=" }, "src/third_party/sqlite/src": { "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git", @@ -1411,8 +1431,8 @@ }, "src/third_party/swiftshader": { "url": "https://swiftshader.googlesource.com/SwiftShader.git", - "rev": "d5c4284774115bb1e32c012a2be1b5fbeb1ab1f9", - "hash": "sha256-h2BHyaOM0oscfX5cu8s4N1yyOkg/yQbvwD1DxF+RAQc=" + "rev": "52586b554f93e50bc67277c6031673ed23a8d903", + "hash": "sha256-WPTpjJK6qFzXJg5eYLpEb6hqGgNzAkQOlSeA5a78Vpk=" }, "src/third_party/text-fragments-polyfill/src": { "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git", @@ -1421,18 +1441,18 @@ }, "src/third_party/tflite/src": { "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git", - "rev": "658227d3b535287dc6859788bde6076c4fe3fe7c", - "hash": "sha256-gOUt/NljRK5wMFwy2aLqZ5NHwk4y/GxbQ+AZ3MxM0M8=" + "rev": "b25df276c8e912c22f57263ffcae6ca8f4c64342", + "hash": "sha256-Xl5dgjiKpkwf3Iv15Oj83AR1iJQ5qNzClCk24Y28TVw=" }, "src/third_party/vulkan-deps": { "url": "https://chromium.googlesource.com/vulkan-deps", - "rev": "0b56dd5952b25fad65139b64096fcd187048ed38", - "hash": "sha256-LVWvbMLjkMyAUM+0UpQ4oRsfcRU5F/xY60wiwxth4Ko=" + "rev": "915d114daeb26a3dbdad1622f5a72c0aa255acbb", + "hash": "sha256-K7HND6c357xoDFAczG77RY4E7lGyEvt0J4NidSkRYTE=" }, "src/third_party/glslang/src": { "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang", - "rev": "9c644fcb5b9a1a9c975c50a790fd14c5451292b0", - "hash": "sha256-twWSeJp9bNbLYFszCWv9BCztfbXUBKSWV55/U+hd2hw=" + "rev": "10fb91c403b2f5e2142c751884dd12ed3fb13952", + "hash": "sha256-MvX2ApY5EF/jVMCkSSLHkPVIyHPe+CIlKJnkURzmxLU=" }, "src/third_party/spirv-cross/src": { "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross", @@ -1441,44 +1461,49 @@ }, "src/third_party/spirv-headers/src": { "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers", - "rev": "996c728cf7dcfb29845cfa15222822318f047810", - "hash": "sha256-FrT/kVIMjcu2zv+7kDeNKM77NnOyMBb8pV0w8DBP42A=" + "rev": "36d5e2ddaa54c70d2f29081510c66f4fc98e5e53", + "hash": "sha256-8hx8/1vaY4mRnfNaBsghWqpzyzY4hkVkNFbQEFZif9g=" }, "src/third_party/spirv-tools/src": { "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools", - "rev": "9117e042b93d4ff08d2406542708170f77aaa2a3", - "hash": "sha256-m/a1i26u8lzpKuQHyAy6ktWWjbLZEaio1awz8VovTGE=" + "rev": "f3c4a5053f1bd34056282e56659659873f9d47ad", + "hash": "sha256-1qIdXDDRDXT27O8o9gFNEQHQKJVAoqN3BDepL/iu1zQ=" }, "src/third_party/vulkan-headers/src": { "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers", - "rev": "cbcad3c0587dddc768d76641ea00f5c45ab5a278", - "hash": "sha256-exXzafLgrgxyRvaF+4pCF+OLtPT2gDmcvzazQ4EQ1eA=" + "rev": "36872f9062b17b1a30b8ed1d81ca5ea6bb608a72", + "hash": "sha256-+29yOL4VBAR8QpsK/WcCiJkPQxSoReTXVSoAhzsPPKc=" }, "src/third_party/vulkan-loader/src": { "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader", - "rev": "b0177a972b8d47e823a4500cf88df88a8c27add7", - "hash": "sha256-NDp2TLeMLAHb92R+PjaPDTx8ckIlpSsS3BNx3lerB68=" + "rev": "081b529a37f43249225114c4c0dea12a29ce605f", + "hash": "sha256-QyWnBxTo5KcbEB1/Kcz2679KCsSTRDini4Ef9YRY+lw=" }, "src/third_party/vulkan-tools/src": { "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools", - "rev": "15f2de809304aba619ee327f3273425418ca83de", - "hash": "sha256-PiWKL045DAOGm+Hl/UyO6vmD4fVfuf2fSvXK6gSYbwo=" + "rev": "86d6be76350413def51e96ed98a25cc2c9d048c9", + "hash": "sha256-2LQGTmViNb4G19zcHyEpor2E0c1wD9+JDknLfeT1M2Y=" }, "src/third_party/vulkan-utility-libraries/src": { "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries", - "rev": "87ab6b39a97d084a2ef27db85e3cbaf5d2622a09", - "hash": "sha256-luDw6g/EMSK67Et2wNta74PHGQU6Y7IRpDlSpgDYV6Q=" + "rev": "b538fb5b08513aa78346cd414ad5e576a2a3e920", + "hash": "sha256-XoMQ9VhyS4eJ8TLxNKZ1YygeOJp65AsFSk2galRM7BE=" }, "src/third_party/vulkan-validation-layers/src": { "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers", - "rev": "bc2c38412f739c298d6f5c076c064e6b5696959f", - "hash": "sha256-WWV+P++0Czeqg5p2UTqIP81pY8oz7cS7E7Z/sc0km6g=" + "rev": "24ad452082bfbf3eb749d7894266666a8aae4bbb", + "hash": "sha256-OUdlPRua+Ujn2rdzmg62OLqlsgByBNh4yUnL11oM5gE=" }, "src/third_party/vulkan_memory_allocator": { "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git", "rev": "56300b29fbfcc693ee6609ddad3fdd5b7a449a21", "hash": "sha256-YzxHZagz/M8Y54UnI4h1wu5jSTuaOgv0ifC9d3fJZlQ=" }, + "src/third_party/wasm_tts_engine/src": { + "url": "https://chromium.googlesource.com/chromium/wasm-tts-engine", + "rev": "6d5bc87a28e49361dac2964015957698b04a0df8", + "hash": "sha256-uqPCMa95uoLhf+cjmc5iz3m3qGy2BNrr8oipfDbColA=" + }, "src/third_party/wayland/src": { "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git", "rev": "a156431ea66fe67d69c9fbba8a8ad34dabbab81c", @@ -1511,13 +1536,18 @@ }, "src/third_party/webgpu-cts/src": { "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git", - "rev": "b9f32fd2943dd2b3d0033bf938c9d843f4b5c9a9", - "hash": "sha256-Dd5uWNtnBIc2jiMkh9KjI5O1tJtmMvdlMA2nf+VOkQQ=" + "rev": "e99550b44ea9eedb364beb553d1a48549d0da115", + "hash": "sha256-uklVbu4Sgb9FmmKcaep8ncd5FNfdPGwdKMvzVr2qUBI=" + }, + "src/third_party/webpagereplay": { + "url": "https://chromium.googlesource.com/webpagereplay.git", + "rev": "d812e180206934eb3b7ae411d82d61bc21c22f70", + "hash": "sha256-KAkkFVxEfQxbSjD+55LO4UZYWWwmGK6B9ENFSPljNu0=" }, "src/third_party/webrtc": { "url": "https://webrtc.googlesource.com/src.git", - "rev": "afaf497805cbb502da89991c2dcd783201efdd08", - "hash": "sha256-S8kGTd3+lf5OTayCMOqqrjxH4tcbT0NLZBpKmTCysMs=" + "rev": "283b6ef9d3eabe5bb3ed7c9d6b6d211a92f9b6d0", + "hash": "sha256-KMyO88KoYiTHq+stdbc8vRYqeQbrqexDIiOeWbqytrU=" }, "src/third_party/wuffs/src": { "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git", @@ -1536,23 +1566,18 @@ }, "src/third_party/xnnpack/src": { "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git", - "rev": "d1d33679661a34f03a806af2b813f699db3004f9", - "hash": "sha256-aDPlmLxNY9M5+Qb8VtdfxphHXU/X6JwYhkUSXkLh/FE=" - }, - "src/tools/page_cycler/acid3": { - "url": "https://chromium.googlesource.com/chromium/deps/acid3.git", - "rev": "a926d0a32e02c4c03ae95bb798e6c780e0e184ba", - "hash": "sha256-s/49EaYQRsyxuLejXc1zGDYTD7uO0ddaQIJBP50Bvw0=" + "rev": "7440eee88f66c4b81d4e7d31f6ae07af66e059ea", + "hash": "sha256-qC4hSubtlNKwRikKNYtiEnvCtV0/IGvQegnhrMCTKKs=" }, "src/third_party/zstd/src": { "url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git", - "rev": "7fb5347e88f10472226c9aa1962a148e55d8c480", - "hash": "sha256-4J/F2v2W3mMdhqQ4q35gYkGaqTKlcG6OxUt3vQ8pcLs=" + "rev": "b0a179d469680276adbd4007435989a6b7fd8b4f", + "hash": "sha256-uFzzxbTxCUl69URMJdb9BL9cHkwwiuSHyXGSVo2xX6w=" }, "src/v8": { "url": "https://chromium.googlesource.com/v8/v8.git", - "rev": "210ec27ca748c70580fe374f9811761667312b41", - "hash": "sha256-pfkztEU22T15H2amf+b5bpALQ6Er1YAxZoxbbfb2YU8=" + "rev": "fe051262efbbd92479a08436f733eba9f756e008", + "hash": "sha256-l3hMgnhy2Ml6kExwGFWi+M6Oq4YFsOSIkRDCmji+syY=" } } } From 6d25c42a433063aaf688ef0bccac7556ce56043c Mon Sep 17 00:00:00 2001 From: Carlos Date: Sat, 8 Feb 2025 00:43:09 +0100 Subject: [PATCH 066/118] gphoto2: remove patch already applied upstream --- .../misc/gphoto2/add-type-casts.diff | 21 ------------------- pkgs/applications/misc/gphoto2/default.nix | 2 -- 2 files changed, 23 deletions(-) delete mode 100644 pkgs/applications/misc/gphoto2/add-type-casts.diff diff --git a/pkgs/applications/misc/gphoto2/add-type-casts.diff b/pkgs/applications/misc/gphoto2/add-type-casts.diff deleted file mode 100644 index fd0f6f88c331..000000000000 --- a/pkgs/applications/misc/gphoto2/add-type-casts.diff +++ /dev/null @@ -1,21 +0,0 @@ -diff --git a/gphoto2/main.c b/gphoto2/main.c -index 2bf5964..cd84467 100644 ---- a/gphoto2/main.c -+++ b/gphoto2/main.c -@@ -1215,14 +1215,14 @@ start_timeout_func (Camera *camera, unsigned int timeout, - - pthread_create (&tid, NULL, thread_func, td); - -- return (tid); -+ return (unsigned int)tid; - } - - static void - stop_timeout_func (Camera __unused__ *camera, unsigned int id, - void __unused__ *data) - { -- pthread_t tid = id; -+ pthread_t tid = (pthread_t)id; - - pthread_cancel (tid); - pthread_join (tid, NULL); diff --git a/pkgs/applications/misc/gphoto2/default.nix b/pkgs/applications/misc/gphoto2/default.nix index 42037008d0ef..3822b1655b1b 100644 --- a/pkgs/applications/misc/gphoto2/default.nix +++ b/pkgs/applications/misc/gphoto2/default.nix @@ -24,8 +24,6 @@ stdenv.mkDerivation rec { sha256 = "sha256-t5EnM4WaDbOTPM+rJW+hQxBgNErnnZEN9lZvxTKoDhA="; }; - patches = [ ./add-type-casts.diff ]; - nativeBuildInputs = [ autoreconfHook pkg-config From e844559f572034ac95892284cc0a481fb49a83b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 7 Feb 2025 16:02:36 -0800 Subject: [PATCH 067/118] python313Packages.flexit-bacnet: 2.2.2 -> 2.2.3 Diff: https://github.com/piotrbulinski/flexit_bacnet/compare/refs/tags/2.2.2...2.2.3 Changelog: https://github.com/piotrbulinski/flexit_bacnet/releases/tag/2.2.3 --- pkgs/development/python-modules/flexit-bacnet/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/flexit-bacnet/default.nix b/pkgs/development/python-modules/flexit-bacnet/default.nix index 7bdba2f731ab..67dfe86ff378 100644 --- a/pkgs/development/python-modules/flexit-bacnet/default.nix +++ b/pkgs/development/python-modules/flexit-bacnet/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "flexit-bacnet"; - version = "2.2.2"; + version = "2.2.3"; pyproject = true; src = fetchFromGitHub { owner = "piotrbulinski"; repo = "flexit_bacnet"; tag = version; - hash = "sha256-c5561ewnAybYcdqesWYEgfT7Y+TetOjxLZeMTJ1ToUk="; + hash = "sha256-MudBn+ki/jqeFK1iz/vAXaXkkddLThO+1T4BXFJ90lk="; }; build-system = [ setuptools ]; From b34dcf6eb1c7f50279a75c610858ff0d78fe1fbd Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Fri, 7 Feb 2025 16:02:39 -0800 Subject: [PATCH 068/118] =?UTF-8?q?gnome-shell-extensions:=2047.3=20?= =?UTF-8?q?=E2=86=92=2047.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Anders Kaseorg --- pkgs/by-name/gn/gnome-shell-extensions/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gn/gnome-shell-extensions/package.nix b/pkgs/by-name/gn/gnome-shell-extensions/package.nix index e714fefcabca..e4afb7341f61 100644 --- a/pkgs/by-name/gn/gnome-shell-extensions/package.nix +++ b/pkgs/by-name/gn/gnome-shell-extensions/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "gnome-shell-extensions"; - version = "47.3"; + version = "47.4"; src = fetchurl { url = "mirror://gnome/sources/gnome-shell-extensions/${lib.versions.major finalAttrs.version}/gnome-shell-extensions-${finalAttrs.version}.tar.xz"; - hash = "sha256-GpFCpOhdeit9xbrTfjTfnuuzjoSW9JOL4teys1iD0Tk="; + hash = "sha256-VDN57FsNBCAO5iofa6JAcWoJ11rQrd3bIFvjjOgpP1g="; }; patches = [ From a4fc9eb64e518f4b4aae9d50609229a82c9025fe Mon Sep 17 00:00:00 2001 From: Tom Herbers Date: Sat, 8 Feb 2025 01:39:34 +0100 Subject: [PATCH 069/118] batman-adv: 2024.4 -> 2025.0 Changelog: https://www.open-mesh.org/news/120 --- pkgs/os-specific/linux/batman-adv/version.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/os-specific/linux/batman-adv/version.nix b/pkgs/os-specific/linux/batman-adv/version.nix index 15b32737a6ea..7568be6d053f 100644 --- a/pkgs/os-specific/linux/batman-adv/version.nix +++ b/pkgs/os-specific/linux/batman-adv/version.nix @@ -1,16 +1,14 @@ { - version = "2024.4"; + version = "2025.0"; # To get these, run: # # ``` - # for tool in alfred batctl batman-adv; do - # nix-prefetch-url https://downloads.open-mesh.org/batman/releases/batman-adv-2024.4/$tool-2024.4.tar.gz --type sha256 | xargs nix hash to-sri --type sha256 - # done + # for tool in alfred batctl batman-adv; do nix-prefetch-url https://downloads.open-mesh.org/batman/releases/batman-adv-2025.0/$tool-2025.0.tar.gz --type sha256 | xargs nix hash convert --hash-algo sha256 --to sri; done # ``` sha256 = { - alfred = "sha256-06WtkGtygDbkc1+dZKcrlzHxb4Hz2N9Ay0eFkaO9IpQ="; - batctl = "sha256-5CvfGk7LSxiLzTrKF+EgSWpCtlR1k7kX4//PlD4/KRM="; - batman-adv = "sha256-pVTfb8erzMayQ/Vup7GESGyV6phtsRM/h6r+I32pLyE="; + alfred = "sha256-x7U5aZp0RuoKGLh9uF/Y+SCiv0mnAqkD+ACitygRI4s="; + batctl = "sha256-3V9bcd0XUOuo1p3TrfcHiXQcbPY4zyvyzLwvuE9cFo8="; + batman-adv = "sha256-uQxFRNPPOfbXzZIGEmsWL1EQ+7SYDeltRfvPUDPQhRo="; }; } From 41a70217287d4a26f407254e639386cacc8eeab4 Mon Sep 17 00:00:00 2001 From: oluceps Date: Sat, 8 Feb 2025 09:11:03 +0800 Subject: [PATCH 070/118] tuic: drop --- pkgs/by-name/tu/tuic/Cargo.lock | 1052 ------------------------------ pkgs/by-name/tu/tuic/package.nix | 43 -- 2 files changed, 1095 deletions(-) delete mode 100644 pkgs/by-name/tu/tuic/Cargo.lock delete mode 100644 pkgs/by-name/tu/tuic/package.nix diff --git a/pkgs/by-name/tu/tuic/Cargo.lock b/pkgs/by-name/tu/tuic/Cargo.lock deleted file mode 100644 index d57b2870b369..000000000000 --- a/pkgs/by-name/tu/tuic/Cargo.lock +++ /dev/null @@ -1,1052 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "async-trait" -version = "0.1.68" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "autocfg" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" - -[[package]] -name = "base64" -version = "0.21.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "bumpalo" -version = "3.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" - -[[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 = "cc" -version = "1.0.79" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "core-foundation" -version = "0.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" - -[[package]] -name = "crossbeam-utils" -version = "0.8.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "env_logger" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" -dependencies = [ - "humantime", - "log", -] - -[[package]] -name = "futures-core" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" - -[[package]] -name = "futures-io" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" - -[[package]] -name = "futures-sink" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" - -[[package]] -name = "futures-task" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" - -[[package]] -name = "futures-util" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" -dependencies = [ - "futures-core", - "futures-io", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", -] - -[[package]] -name = "getrandom" -version = "0.2.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" -dependencies = [ - "cfg-if", - "libc", - "wasi", -] - -[[package]] -name = "hermit-abi" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" -dependencies = [ - "libc", -] - -[[package]] -name = "humantime" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" - -[[package]] -name = "itoa" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" - -[[package]] -name = "js-sys" -version = "0.3.64" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" -dependencies = [ - "wasm-bindgen", -] - -[[package]] -name = "lexopt" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baff4b617f7df3d896f97fe922b64817f6cd9a756bb81d40f8883f2f66dcb401" - -[[package]] -name = "libc" -version = "0.2.146" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" - -[[package]] -name = "lock_api" -version = "0.4.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" -dependencies = [ - "autocfg", - "scopeguard", -] - -[[package]] -name = "log" -version = "0.4.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" -dependencies = [ - "serde", -] - -[[package]] -name = "memchr" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" - -[[package]] -name = "mio" -version = "0.8.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" -dependencies = [ - "libc", - "wasi", - "windows-sys 0.48.0", -] - -[[package]] -name = "num_cpus" -version = "1.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" -dependencies = [ - "hermit-abi", - "libc", -] - -[[package]] -name = "once_cell" -version = "1.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" -dependencies = [ - "parking_lot_core", -] - -[[package]] -name = "openssl-probe" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" - -[[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.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" -dependencies = [ - "cfg-if", - "libc", - "redox_syscall", - "smallvec", - "windows-targets", -] - -[[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 = "ppv-lite86" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" - -[[package]] -name = "proc-macro2" -version = "1.0.60" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "quinn" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21252f1c0fc131f1b69182db8f34837e8a69737b8251dff75636a9be0518c324" -dependencies = [ - "bytes", - "futures-io", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash", - "rustls", - "thiserror", - "tokio", - "tracing", -] - -[[package]] -name = "quinn-proto" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85af4ed6ee5a89f26a26086e9089a6643650544c025158449a3626ebf72884b3" -dependencies = [ - "bytes", - "rand", - "ring", - "rustc-hash", - "rustls", - "slab", - "thiserror", - "tinyvec", - "tracing", -] - -[[package]] -name = "quinn-udp" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6df19e284d93757a9fb91d63672f7741b129246a669db09d1c0063071debc0c0" -dependencies = [ - "bytes", - "libc", - "socket2 0.5.3", - "tracing", - "windows-sys 0.48.0", -] - -[[package]] -name = "quote" -version = "1.0.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc", - "rand_chacha", - "rand_core", -] - -[[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", -] - -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom", -] - -[[package]] -name = "redox_syscall" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" -dependencies = [ - "bitflags", -] - -[[package]] -name = "register-count" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6d8b2af7d3e6675306d6757f10b4cf0b218a9fa6a0b44d668f2132684ae4893" - -[[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", - "untrusted", - "web-sys", - "winapi", -] - -[[package]] -name = "rustc-hash" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" - -[[package]] -name = "rustls" -version = "0.21.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f" -dependencies = [ - "ring", - "rustls-webpki", - "sct", -] - -[[package]] -name = "rustls-native-certs" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" -dependencies = [ - "openssl-probe", - "rustls-pemfile", - "schannel", - "security-framework", -] - -[[package]] -name = "rustls-pemfile" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" -dependencies = [ - "base64", -] - -[[package]] -name = "rustls-webpki" -version = "0.100.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" -dependencies = [ - "ring", - "untrusted", -] - -[[package]] -name = "ryu" -version = "1.0.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" - -[[package]] -name = "schannel" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" -dependencies = [ - "windows-sys 0.42.0", -] - -[[package]] -name = "scopeguard" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" - -[[package]] -name = "sct" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" -dependencies = [ - "ring", - "untrusted", -] - -[[package]] -name = "security-framework" -version = "2.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8" -dependencies = [ - "bitflags", - "core-foundation", - "core-foundation-sys", - "libc", - "security-framework-sys", -] - -[[package]] -name = "security-framework-sys" -version = "2.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "serde" -version = "1.0.164" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_derive" -version = "1.0.164" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_json" -version = "1.0.97" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdf3bf93142acad5821c99197022e170842cdbc1c30482b98750c688c640842a" -dependencies = [ - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "slab" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" -dependencies = [ - "autocfg", -] - -[[package]] -name = "smallvec" -version = "1.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" - -[[package]] -name = "socket2" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" -dependencies = [ - "libc", - "winapi", -] - -[[package]] -name = "socket2" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" -dependencies = [ - "libc", - "windows-sys 0.48.0", -] - -[[package]] -name = "socks5-proto" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8d1cbdbbffd5e2418d31ae833045a219062f1740f5f0f34baefa8e5bb2053ff" -dependencies = [ - "byteorder", - "bytes", - "tokio", -] - -[[package]] -name = "socks5-server" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd7260a3af0411620eca9c63032069ec9f0d92ef4214e017672c864f573d6a21" -dependencies = [ - "async-trait", - "bytes", - "socks5-proto", - "tokio", -] - -[[package]] -name = "spin" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" - -[[package]] -name = "syn" -version = "2.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "thiserror" -version = "1.0.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" -dependencies = [ - "thiserror-impl", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[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.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" - -[[package]] -name = "tokio" -version = "1.28.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2" -dependencies = [ - "autocfg", - "bytes", - "libc", - "mio", - "num_cpus", - "parking_lot", - "pin-project-lite", - "socket2 0.4.9", - "tokio-macros", - "windows-sys 0.48.0", -] - -[[package]] -name = "tokio-macros" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "tokio-util" -version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" -dependencies = [ - "bytes", - "futures-core", - "futures-io", - "futures-sink", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "tracing" -version = "0.1.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" -dependencies = [ - "cfg-if", - "pin-project-lite", - "tracing-attributes", - "tracing-core", -] - -[[package]] -name = "tracing-attributes" -version = "0.1.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "tracing-core" -version = "0.1.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" -dependencies = [ - "once_cell", -] - -[[package]] -name = "tuic" -version = "5.0.0" -dependencies = [ - "bytes", - "futures-util", - "parking_lot", - "register-count", - "thiserror", - "tuic", - "uuid", -] - -[[package]] -name = "tuic-client" -version = "1.0.0" -dependencies = [ - "bytes", - "crossbeam-utils", - "env_logger", - "humantime", - "lexopt", - "log", - "once_cell", - "parking_lot", - "quinn", - "register-count", - "rustls", - "rustls-native-certs", - "rustls-pemfile", - "serde", - "serde_json", - "socket2 0.5.3", - "socks5-proto", - "socks5-server", - "thiserror", - "tokio", - "tokio-util", - "tuic", - "tuic-quinn", - "uuid", -] - -[[package]] -name = "tuic-quinn" -version = "0.1.0" -dependencies = [ - "bytes", - "futures-util", - "quinn", - "thiserror", - "tuic", - "uuid", -] - -[[package]] -name = "tuic-server" -version = "1.0.0" -dependencies = [ - "bytes", - "crossbeam-utils", - "env_logger", - "humantime", - "lexopt", - "log", - "parking_lot", - "quinn", - "register-count", - "rustls", - "rustls-pemfile", - "serde", - "serde_json", - "socket2 0.5.3", - "thiserror", - "tokio", - "tokio-util", - "tuic", - "tuic-quinn", - "uuid", -] - -[[package]] -name = "unicode-ident" -version = "1.0.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" - -[[package]] -name = "untrusted" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" - -[[package]] -name = "uuid" -version = "1.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa2982af2eec27de306107c027578ff7f423d65f7250e40ce0fea8f45248b81" -dependencies = [ - "serde", -] - -[[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.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" -dependencies = [ - "cfg-if", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" -dependencies = [ - "bumpalo", - "log", - "once_cell", - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" - -[[package]] -name = "web-sys" -version = "0.3.64" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[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-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "windows-sys" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" -dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", -] - -[[package]] -name = "windows-sys" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" -dependencies = [ - "windows-targets", -] - -[[package]] -name = "windows-targets" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" -dependencies = [ - "windows_aarch64_gnullvm 0.48.0", - "windows_aarch64_msvc 0.48.0", - "windows_i686_gnu 0.48.0", - "windows_i686_msvc 0.48.0", - "windows_x86_64_gnu 0.48.0", - "windows_x86_64_gnullvm 0.48.0", - "windows_x86_64_msvc 0.48.0", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" - -[[package]] -name = "windows_i686_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" - -[[package]] -name = "windows_i686_gnu" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" - -[[package]] -name = "windows_i686_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" - -[[package]] -name = "windows_i686_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" diff --git a/pkgs/by-name/tu/tuic/package.nix b/pkgs/by-name/tu/tuic/package.nix deleted file mode 100644 index 17fbd99fd0bf..000000000000 --- a/pkgs/by-name/tu/tuic/package.nix +++ /dev/null @@ -1,43 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - rustPlatform, - darwin, -}: - -rustPlatform.buildRustPackage rec { - pname = "tuic"; - version = "1.0.0"; - - src = fetchFromGitHub { - owner = "EAimTY"; - repo = pname; - rev = "tuic-server-${version}"; - hash = "sha256-VoNr91vDqBlt9asT/dwCeYk13UNiDexNNiKwD5DSn8k="; - }; - - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( - with darwin.apple_sdk.frameworks; - [ - Security - ] - ); - - postPatch = '' - ln -sf ${./Cargo.lock} Cargo.lock - ''; - - cargoLock.lockFile = ./Cargo.lock; - - # doc test will fail in this version - checkFlags = [ "--skip=lib" ]; - - meta = with lib; { - homepage = "https://github.com/EAimTY/tuic"; - description = "Delicately-TUICed 0-RTT proxy protocol"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = with maintainers; [ oluceps ]; - }; -} From 85f968e054340bc15a3b6fb28474a2223d689eb9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 8 Feb 2025 01:18:31 +0000 Subject: [PATCH 071/118] fast-downward: 24.06.0 -> 24.06.1 --- pkgs/by-name/fa/fast-downward/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fa/fast-downward/package.nix b/pkgs/by-name/fa/fast-downward/package.nix index e74ef6423e86..500aa339baa4 100644 --- a/pkgs/by-name/fa/fast-downward/package.nix +++ b/pkgs/by-name/fa/fast-downward/package.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { pname = "fast-downward"; - version = "24.06.0"; + version = "24.06.1"; src = fetchFromGitHub { owner = "aibasel"; repo = "downward"; rev = "release-${version}"; - sha256 = "sha256-iIBoJZCFd05bKUeftvl2YBTmSQuFvATIQAYMITDywWA="; + sha256 = "sha256-JwBdV44h6LAJeIjKHPouvb3ZleydAc55QiuaFGrFx1Y="; }; nativeBuildInputs = [ From fa1cd7ab89351153944d83fb11de25fccaf6e46c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 8 Feb 2025 01:19:10 +0000 Subject: [PATCH 072/118] pdns: 4.9.3 -> 4.9.4 --- pkgs/by-name/pd/pdns/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pd/pdns/package.nix b/pkgs/by-name/pd/pdns/package.nix index b2b0798e9570..b889ad441072 100644 --- a/pkgs/by-name/pd/pdns/package.nix +++ b/pkgs/by-name/pd/pdns/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "pdns"; - version = "4.9.3"; + version = "4.9.4"; src = fetchurl { url = "https://downloads.powerdns.com/releases/pdns-${finalAttrs.version}.tar.bz2"; - hash = "sha256-suZwRqe5WCXDXdyRGe1uLoU1N6V20MTukIC7XwrT6NU="; + hash = "sha256-ysRm18sFZDTGBjLlVL5QVDywzs2dOzO7V4XBSbWXn8E="; }; # redact configure flags from version output to reduce closure size patches = [ ./version.patch ]; From bd01ca1647f587adf67574556e95f1f65082414f Mon Sep 17 00:00:00 2001 From: Matt Moriarity Date: Fri, 7 Feb 2025 20:37:16 -0700 Subject: [PATCH 073/118] peertube: don't check for broken symlinks --- pkgs/servers/peertube/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/servers/peertube/default.nix b/pkgs/servers/peertube/default.nix index 3b52900577af..a43d959baff1 100644 --- a/pkgs/servers/peertube/default.nix +++ b/pkgs/servers/peertube/default.nix @@ -77,6 +77,9 @@ stdenv.mkDerivation rec { hash = "sha256-x5qFCprn8q0xC88HudLV7W53X1Nkbz3F52RMp2PxIu8="; }; + # There are broken symlinks in the node_modules + dontCheckForBrokenSymlinks = true; + outputs = [ "out" "cli" From 6791ba35d50610a6de7d21807945caa9d0fd11a8 Mon Sep 17 00:00:00 2001 From: oluceps Date: Sat, 8 Feb 2025 13:32:28 +0800 Subject: [PATCH 074/118] tuic: remove --- pkgs/top-level/aliases.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 4120b6f45bdd..0eec1a762dc0 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1426,6 +1426,8 @@ mapAliases { typst-fmt = typstfmt; # Added 2023-07-15 typst-lsp = throw "'typst-lsp' has been removed due to lack of upstream maintenance, consider using 'tinymist' instead"; # Added 2025-01-25 typst-preview = throw "The features of 'typst-preview' have been consolidated to 'tinymist', an all-in-one language server for typst"; # Added 2024-07-07 + tuic = throw "`tuic` has been removed due to lack of upstream maintenance, consider using other tuic implementations"; # Added 2025-02-08 + ### U ### From 6293f614787c863a88a6f0ba8d38534383dbaeb1 Mon Sep 17 00:00:00 2001 From: Isidor Zeuner Date: Tue, 2 Jan 2024 15:53:57 +0100 Subject: [PATCH 075/118] rakarrack: fix ALSA plugins load path --- pkgs/applications/audio/rakarrack/default.nix | 35 ++++++++++++++++--- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/audio/rakarrack/default.nix b/pkgs/applications/audio/rakarrack/default.nix index e78502eb23f7..a5e0ca3a1819 100644 --- a/pkgs/applications/audio/rakarrack/default.nix +++ b/pkgs/applications/audio/rakarrack/default.nix @@ -1,7 +1,21 @@ -{ lib, stdenv, fetchurl, alsa-lib, alsa-utils, fltk, libjack2, libXft, -libXpm, libjpeg, libpng, libsamplerate, libsndfile, zlib }: +{ + lib, + stdenv, + fetchurl, + alsa-lib-with-plugins, + alsa-utils, + fltk, + libjack2, + libXft, + libXpm, + libjpeg, + libpng, + libsamplerate, + libsndfile, + zlib, +}: -stdenv.mkDerivation rec { +stdenv.mkDerivation rec { pname = "rakarrack"; version = "0.6.1"; @@ -14,8 +28,19 @@ stdenv.mkDerivation rec { patches = [ ./fltk-path.patch ]; - buildInputs = [ alsa-lib alsa-utils fltk libjack2 libXft libXpm libjpeg - libpng libsamplerate libsndfile zlib ]; + buildInputs = [ + alsa-lib-with-plugins + alsa-utils + fltk + libjack2 + libXft + libXpm + libjpeg + libpng + libsamplerate + libsndfile + zlib + ]; meta = with lib; { description = "Multi-effects processor emulating a guitar effects pedalboard"; From 5c5a3e9d383b29839bc8074f73c85a0d2b3af31b Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Sat, 8 Feb 2025 10:35:47 +0100 Subject: [PATCH 076/118] signalbackup-tools: 20250202 -> 20250207 Diff: https://github.com/bepaald/signalbackup-tools/compare/20250202...20250207 --- pkgs/by-name/si/signalbackup-tools/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/si/signalbackup-tools/package.nix b/pkgs/by-name/si/signalbackup-tools/package.nix index 917e9946c1b3..4c86cc146f16 100644 --- a/pkgs/by-name/si/signalbackup-tools/package.nix +++ b/pkgs/by-name/si/signalbackup-tools/package.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "signalbackup-tools"; - version = "20250202"; + version = "20250207"; src = fetchFromGitHub { owner = "bepaald"; repo = "signalbackup-tools"; rev = version; - hash = "sha256-RYklp/jrp/bdS6tuIBHSgF1GJYnYydj4fcwsgcuZPeY="; + hash = "sha256-pFaL6BWD6Kaw8fJhrPL7b2iDKjHr99gkytP5Kosf7Gw="; }; nativeBuildInputs = [ From ff705b9dd566b0a7668c13dc271aa091b458bc2a Mon Sep 17 00:00:00 2001 From: ZHAO Jin-Xiang Date: Sat, 8 Feb 2025 15:18:48 +0800 Subject: [PATCH 077/118] windsurf: init at 1.2.6 --- pkgs/applications/editors/vscode/generic.nix | 3 +- pkgs/by-name/wi/windsurf/info.json | 20 +++++ pkgs/by-name/wi/windsurf/package.nix | 57 +++++++++++++ pkgs/by-name/wi/windsurf/update/.gitignore | 2 + pkgs/by-name/wi/windsurf/update/package.json | 12 +++ pkgs/by-name/wi/windsurf/update/tsconfig.json | 9 ++ pkgs/by-name/wi/windsurf/update/update.mts | 82 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 + 8 files changed, 188 insertions(+), 1 deletion(-) create mode 100644 pkgs/by-name/wi/windsurf/info.json create mode 100644 pkgs/by-name/wi/windsurf/package.nix create mode 100644 pkgs/by-name/wi/windsurf/update/.gitignore create mode 100644 pkgs/by-name/wi/windsurf/update/package.json create mode 100644 pkgs/by-name/wi/windsurf/update/tsconfig.json create mode 100755 pkgs/by-name/wi/windsurf/update/update.mts diff --git a/pkgs/applications/editors/vscode/generic.nix b/pkgs/applications/editors/vscode/generic.nix index 0b5f20efd165..c5f0c0b51673 100644 --- a/pkgs/applications/editors/vscode/generic.nix +++ b/pkgs/applications/editors/vscode/generic.nix @@ -33,6 +33,7 @@ # Attributes inherit from specific versions version, + vscodeVersion ? version, src, meta, sourceRoot, @@ -303,7 +304,7 @@ stdenv.mkDerivation ( let vscodeRipgrep = if stdenv.hostPlatform.isDarwin then - if lib.versionAtLeast version "1.94.0" then + if lib.versionAtLeast vscodeVersion "1.94.0" then "Contents/Resources/app/node_modules/@vscode/ripgrep/bin/rg" else "Contents/Resources/app/node_modules.asar.unpacked/@vscode/ripgrep/bin/rg" diff --git a/pkgs/by-name/wi/windsurf/info.json b/pkgs/by-name/wi/windsurf/info.json new file mode 100644 index 000000000000..83356b1e12a7 --- /dev/null +++ b/pkgs/by-name/wi/windsurf/info.json @@ -0,0 +1,20 @@ +{ + "aarch64-darwin": { + "version": "1.2.6", + "vscodeVersion": "1.94.0", + "url": "https://windsurf-stable.codeiumdata.com/darwin-arm64/stable/d08b8ea13d580d24be204c76e5dd1651d7234cd2/Windsurf-darwin-arm64-1.2.6.zip", + "sha256": "b9a63785454003f7ccb3b6adebe232e24618247244b556ef61e9e974a4b77f65" + }, + "x86_64-darwin": { + "version": "1.2.6", + "vscodeVersion": "1.94.0", + "url": "https://windsurf-stable.codeiumdata.com/darwin-x64/stable/d08b8ea13d580d24be204c76e5dd1651d7234cd2/Windsurf-darwin-x64-1.2.6.zip", + "sha256": "4a4beae35117162b484521a64fc67cac044ced17a971553ab75ba8823b3cbb75" + }, + "x86_64-linux": { + "version": "1.2.6", + "vscodeVersion": "1.94.0", + "url": "https://windsurf-stable.codeiumdata.com/linux-x64/stable/d08b8ea13d580d24be204c76e5dd1651d7234cd2/Windsurf-linux-x64-1.2.6.tar.gz", + "sha256": "ad71eb02b9302d4cf1413c0a83763f45fe455e5be74ee9e1477bea2e85a02caa" + } +} diff --git a/pkgs/by-name/wi/windsurf/package.nix b/pkgs/by-name/wi/windsurf/package.nix new file mode 100644 index 000000000000..92cb26bffc61 --- /dev/null +++ b/pkgs/by-name/wi/windsurf/package.nix @@ -0,0 +1,57 @@ +{ + lib, + stdenv, + callPackage, + vscode-generic, + fetchurl, + nixosTests, + commandLineArgs ? "", + useVSCodeRipgrep ? stdenv.hostPlatform.isDarwin, +}: +let + info = + (lib.importJSON ./info.json)."${stdenv.hostPlatform.system}" + or (throw "windsurf: unsupported system ${stdenv.hostPlatform.system}"); +in +callPackage vscode-generic rec { + inherit commandLineArgs useVSCodeRipgrep; + + inherit (info) version vscodeVersion; + pname = "windsurf"; + + executableName = "windsurf"; + longName = "Windsurf"; + shortName = "windsurf"; + + sourceRoot = if stdenv.hostPlatform.isDarwin then "Windsurf.app" else "Windsurf"; + + src = fetchurl { inherit (info) url sha256; }; + + tests = nixosTests.vscodium; + + updateScript = ./update/update.mts; + + # Editing the `codium` binary (and shell scripts) within the app bundle causes the bundle's signature + # to be invalidated, which prevents launching starting with macOS Ventura, because VSCodium is notarized. + # See https://eclecticlight.co/2022/06/17/app-security-changes-coming-in-ventura/ for more information. + dontFixup = stdenv.hostPlatform.isDarwin; + + meta = { + description = "Agentic IDE powered by AI Flow paradigm"; + longDescription = '' + The first agentic IDE, and then some. + The Windsurf Editor is where the work of developers and AI truly flow together, allowing for a coding experience that feels like literal magic. + ''; + homepage = "https://codeium.com/windsurf"; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ + xiaoxiangmoe + ]; + platforms = [ + "aarch64-darwin" + "x86_64-darwin" + "x86_64-linux" + ]; + sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; + }; +} diff --git a/pkgs/by-name/wi/windsurf/update/.gitignore b/pkgs/by-name/wi/windsurf/update/.gitignore new file mode 100644 index 000000000000..d5f19d89b308 --- /dev/null +++ b/pkgs/by-name/wi/windsurf/update/.gitignore @@ -0,0 +1,2 @@ +node_modules +package-lock.json diff --git a/pkgs/by-name/wi/windsurf/update/package.json b/pkgs/by-name/wi/windsurf/update/package.json new file mode 100644 index 000000000000..d61a0d4ec9f5 --- /dev/null +++ b/pkgs/by-name/wi/windsurf/update/package.json @@ -0,0 +1,12 @@ +{ + "name": "windsurf-scripts", + "version": "1.0.0", + "scripts": { + "update": "node update.mts" + }, + "dependencies": { + "@types/node": "^22.13.1", + "prettier": "^3.4.2", + "typescript": "^5.7.3" + } +} diff --git a/pkgs/by-name/wi/windsurf/update/tsconfig.json b/pkgs/by-name/wi/windsurf/update/tsconfig.json new file mode 100644 index 000000000000..347a07fb3e23 --- /dev/null +++ b/pkgs/by-name/wi/windsurf/update/tsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "module": "NodeNext", + "noEmit": true, + "strict": true + } +} diff --git a/pkgs/by-name/wi/windsurf/update/update.mts b/pkgs/by-name/wi/windsurf/update/update.mts new file mode 100755 index 000000000000..5db74e3b5346 --- /dev/null +++ b/pkgs/by-name/wi/windsurf/update/update.mts @@ -0,0 +1,82 @@ +#!/usr/bin/env nix-shell +/* +#!nix-shell -i node --pure --packages cacert nodejs_23 +*/ +import * as assert from "node:assert/strict"; +import * as fsPromises from "node:fs/promises"; +import * as path from "node:path"; +import * as process from "node:process"; + +const __dirname = import.meta.dirname; +const __filename = import.meta.filename; + +interface LatestInfo { + readonly url: string; + readonly sha256hash: string; + readonly windsurfVersion: string; + readonly productVersion: string; +} + +const platforms = ["aarch64-darwin", "x86_64-darwin", "x86_64-linux"] as const; +type Platform = (typeof platforms)[number]; +type InfoMap = Record< + Platform, + { + readonly version: string; + readonly vscodeVersion: string; + readonly url: string; + readonly sha256: string; + } +>; + +async function getInfo(targetSystem: "darwin-arm64" | "darwin-x64" | "linux-x64") { + const url = + `https://windsurf-stable.codeium.com/api/update/${targetSystem}/stable/latest` as const; + + const response = await fetch(url); + assert.ok(response.ok, `Failed to fetch ${url}`); + + const latestInfo: LatestInfo = JSON.parse(await response.text()); + assert.ok(latestInfo.sha256hash, "sha256hash is required"); + assert.ok(latestInfo.url, "url is required"); + assert.ok(latestInfo.windsurfVersion, "windsurfVersion is required"); + assert.ok(latestInfo.productVersion, "productVersion is required"); + return { + version: latestInfo.windsurfVersion, + vscodeVersion: latestInfo.productVersion, + url: latestInfo.url, + sha256: latestInfo.sha256hash, + }; +} + +async function main() { + const filePath = path.join(__dirname, "../info.json"); + const oldInfo = JSON.parse( + await fsPromises.readFile(filePath, { encoding: "utf-8" }), + ); + + const info: InfoMap = { + "aarch64-darwin": await getInfo("darwin-arm64"), + "x86_64-darwin": await getInfo("darwin-x64"), + "x86_64-linux": await getInfo("linux-x64"), + }; + if (JSON.stringify(oldInfo) === JSON.stringify(info)) { + console.log("[update] No updates found"); + return; + } + for (const platform of platforms) { + console.log( + `[update] Updating Windsurf ${platform} ${oldInfo[platform].version} -> ${info[platform].version}`, + ); + } + await fsPromises.writeFile( + filePath, + JSON.stringify(info, null, 2) + "\n", + "utf-8", + ); + console.log("[update] Updating Windsurf complete"); +} + +if (process.argv[1] === __filename) { + main(); +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 900b41006d34..dcacf936d9c1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15594,6 +15594,10 @@ with pkgs; vscodium-fhs = vscodium.fhs; vscodium-fhsWithPackages = vscodium.fhsWithPackages; + windsurf = callPackage ../by-name/wi/windsurf/package.nix { + vscode-generic = ../applications/editors/vscode/generic.nix; + }; + openvscode-server = callPackage ../servers/openvscode-server { nodejs = nodejs_18; inherit (darwin.apple_sdk.frameworks) AppKit Cocoa Security; From cf51b774f7c51af233c1009b47e637795f2b6348 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 12:12:42 +0100 Subject: [PATCH 078/118] dep-scan: 5.4.8 -> 5.5.0 Diff: https://github.com/owasp-dep-scan/dep-scan/compare/refs/tags/v5.4.8...v5.5.0 Changelog: https://github.com/owasp-dep-scan/dep-scan/releases/tag/v5.5.0 --- pkgs/by-name/de/dep-scan/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/de/dep-scan/package.nix b/pkgs/by-name/de/dep-scan/package.nix index bb69f4cb0f87..71c36fda3ddc 100644 --- a/pkgs/by-name/de/dep-scan/package.nix +++ b/pkgs/by-name/de/dep-scan/package.nix @@ -7,10 +7,10 @@ let appthreat-vulnerability-db = ( python3.pkgs.appthreat-vulnerability-db.overrideAttrs (oldAttrs: rec { - version = "5.7.8"; + version = "5.8.1"; src = oldAttrs.src.override { tag = "v${version}"; - hash = "sha256-R00/a9+1NctVPi+EL7K65w/e88c9oSW5xXGgno+MCXo="; + hash = "sha256-/Yo0yyDp2vd9KJhy3LGRml55eqTiaHSSuSoe2h2bSw0="; }; }) ); @@ -18,14 +18,14 @@ let in python3.pkgs.buildPythonApplication rec { pname = "dep-scan"; - version = "5.4.8"; + version = "5.5.0"; pyproject = true; src = fetchFromGitHub { owner = "owasp-dep-scan"; repo = "dep-scan"; tag = "v${version}"; - hash = "sha256-QTvxKoqBxTb/xFaIHsYe3N+7ABJ6sDd2vVcjkMbm3xI="; + hash = "sha256-lgqS8GY5JuHL3strNcb0B3mGieFkQTzGuRyV4dBp5e4="; }; pythonRelaxDeps = [ "oras" ]; From 6e49c0a89d9f4123adb83f9f0ed1e4372e42f138 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 12:20:11 +0100 Subject: [PATCH 079/118] python313Packages.python-overseerr: 0.6.0 -> 0.7.0 Diff: https://github.com/joostlek/python-overseerr/compare/refs/tags/v0.6.0...v0.7.0 Changelog: https://github.com/joostlek/python-overseerr/releases/tag/v0.7.0 --- pkgs/development/python-modules/python-overseerr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-overseerr/default.nix b/pkgs/development/python-modules/python-overseerr/default.nix index c9e9a109a977..d120dd62d571 100644 --- a/pkgs/development/python-modules/python-overseerr/default.nix +++ b/pkgs/development/python-modules/python-overseerr/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "python-overseerr"; - version = "0.6.0"; + version = "0.7.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "joostlek"; repo = "python-overseerr"; tag = "v${version}"; - hash = "sha256-XkuHy8gF8z5t1AcdVdBYWHBgOpAM9jpO41IM7DB3Wt0="; + hash = "sha256-91h8ooWzCdH2iO1PoInnlHwR6h1m1hZkdNoJE+D4NWQ="; }; build-system = [ poetry-core ]; From 980fedf92272b332738be0dac9fe29284c449b0b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 12:22:56 +0100 Subject: [PATCH 080/118] python313Packages.pytenable: 1.6.0 -> 1.7.1 Changelog: https://github.com/tenable/pyTenable/releases/tag/1.7.1 --- .../python-modules/pytenable/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pytenable/default.nix b/pkgs/development/python-modules/pytenable/default.nix index 67fcce798720..8cc45c14286d 100644 --- a/pkgs/development/python-modules/pytenable/default.nix +++ b/pkgs/development/python-modules/pytenable/default.nix @@ -7,6 +7,8 @@ gql, graphql-core, marshmallow, + pydantic-extra-types, + pydantic, pytest-cov-stub, pytest-datafiles, pytest-vcr, @@ -26,16 +28,16 @@ buildPythonPackage rec { pname = "pytenable"; - version = "1.6.0"; + version = "1.7.1"; pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "tenable"; repo = "pyTenable"; tag = version; - hash = "sha256-I6GlYPQI8qF9eyq8p4Wtkz8UEGth51ZALwA+Mu3TqhQ="; + hash = "sha256-IPhuxjUmj4g5UxuCZsthZytgDsFiplPt+dIsCHgfMdg="; }; pythonRelaxDeps = [ @@ -46,12 +48,14 @@ buildPythonPackage rec { build-system = [ setuptools ]; dependencies = [ - defusedxml - marshmallow - python-box cryptography + defusedxml gql graphql-core + marshmallow + pydantic + pydantic-extra-types + python-box python-dateutil requests requests-toolbelt From ecad688a1e681a5f6dca793d28f4cfc4169c8111 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 12:24:16 +0100 Subject: [PATCH 081/118] python313Packages.pyrisco: 0.6.5 -> 0.6.6 Diff: https://github.com/OnFreund/pyrisco/compare/refs/tags/v0.6.5...v0.6.6 Changelog: https://github.com/OnFreund/pyrisco/releases/tag/v0.6.6 --- pkgs/development/python-modules/pyrisco/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyrisco/default.nix b/pkgs/development/python-modules/pyrisco/default.nix index bc2fa44446bb..885c5edb35c6 100644 --- a/pkgs/development/python-modules/pyrisco/default.nix +++ b/pkgs/development/python-modules/pyrisco/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "pyrisco"; - version = "0.6.5"; + version = "0.6.6"; pyproject = true; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "OnFreund"; repo = "pyrisco"; tag = "v${version}"; - hash = "sha256-V+Wez9r/AoyNkR77yJTV3/9Kl0PHGw9kbQbzGauWEfc="; + hash = "sha256-iPtrpxssDEZTlxGtZ0xa1pfzN7wQu1gcQUl4zXPBhm8="; }; build-system = [ setuptools ]; From df923a97a49936a1c637302b82a5936707d34659 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Sat, 8 Feb 2025 12:41:35 +0100 Subject: [PATCH 082/118] floorp: 11.22.0 -> 11.23.0 Release notes: https://blog.ablaze.one/4674/2025-02-19/ Git changelog: https://github.com/Floorp-Projects/Floorp/compare/v11.22.0...v11.23.0 Signed-off-by: Christoph Heiss --- pkgs/applications/networking/browsers/floorp/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/browsers/floorp/default.nix b/pkgs/applications/networking/browsers/floorp/default.nix index 90ee49000ba6..0d09dc95738c 100644 --- a/pkgs/applications/networking/browsers/floorp/default.nix +++ b/pkgs/applications/networking/browsers/floorp/default.nix @@ -9,7 +9,7 @@ ( (buildMozillaMach rec { pname = "floorp"; - packageVersion = "11.22.0"; + packageVersion = "11.23.0"; applicationName = "Floorp"; binaryName = "floorp"; branding = "browser/branding/official"; @@ -17,14 +17,14 @@ allowAddonSideload = true; # Must match the contents of `browser/config/version.txt` in the source tree - version = "128.7.0"; + version = "128.8.0"; src = fetchFromGitHub { owner = "Floorp-Projects"; repo = "Floorp"; fetchSubmodules = true; rev = "v${packageVersion}"; - hash = "sha256-gPFWSCACWUk7QE85I6alT6hsjMengjiiSE4J9px0Z58="; + hash = "sha256-wH1u64Ldj9Ghzw8cXRu43mhUBmqjAH7k3MiknjW+xcw="; }; extraConfigureFlags = [ From 6348fa21ef46342dbe3382e1735a1f34f551cfc1 Mon Sep 17 00:00:00 2001 From: K900 Date: Sat, 8 Feb 2025 14:51:42 +0300 Subject: [PATCH 083/118] linux_6_13: 6.13.1 -> 6.13.2 --- 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 5488bb52e1d7..c7040d796226 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -32,7 +32,7 @@ "hash": "sha256:1zwfw3lci3ihandx2cpq3h12x7l94jzr4xkd5lzkn1ppgv8l52g9" }, "6.13": { - "version": "6.13.1", - "hash": "sha256:0smnalhyrgh5s3mw60q56r1jxj993ckfpldxvfrz27a7xb4gc4gh" + "version": "6.13.2", + "hash": "sha256:01g73bnif9ynccb772628sca01y8zkww8wzb39qfkfvbj20jkxnd" } } From 45120b4a483a8197b5ef660c85d00831bee72382 Mon Sep 17 00:00:00 2001 From: K900 Date: Sat, 8 Feb 2025 14:51:49 +0300 Subject: [PATCH 084/118] linux_6_12: 6.12.12 -> 6.12.13 --- 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 c7040d796226..34a66883ab1b 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -28,8 +28,8 @@ "hash": "sha256:1z2913y38clnlmhvwj49h7p4pic24s4d8np7nmd4lk7m2xz8w532" }, "6.12": { - "version": "6.12.12", - "hash": "sha256:1zwfw3lci3ihandx2cpq3h12x7l94jzr4xkd5lzkn1ppgv8l52g9" + "version": "6.12.13", + "hash": "sha256:1fpvfj4q2v3przxj5lkb3ra28h3g0mq9dqj4rvx4qnsmkvmdxszk" }, "6.13": { "version": "6.13.2", From 990d22ea79baed856ae50581296c15ad86efed27 Mon Sep 17 00:00:00 2001 From: K900 Date: Sat, 8 Feb 2025 14:51:56 +0300 Subject: [PATCH 085/118] linux_6_6: 6.6.75 -> 6.6.76 --- 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 34a66883ab1b..0b92473ba772 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:0mm4q8f6kbqddy4zaxjf5xyqpnla5qprvsf7v3vq01gmlzr3rivc" }, "6.6": { - "version": "6.6.75", - "hash": "sha256:1402g6qjk1242gsl6n8xlbg01m0nb19n30ac1ffi7fhnjzxb3pzp" + "version": "6.6.76", + "hash": "sha256:180kxgacwx7kr76gls8gw4zrrdrqb9xf6fjmmfi38h66y0aqn5l1" }, "6.11": { "version": "6.11.11", From d12c4194c22a78bc9d2edcf84bad6c625de9997e Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Sat, 8 Feb 2025 12:53:50 +0100 Subject: [PATCH 086/118] librenms: switch to buildComposerProject2 --- pkgs/by-name/li/librenms/package.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/li/librenms/package.nix b/pkgs/by-name/li/librenms/package.nix index 2e24cc56a5c3..d6821216c3b1 100644 --- a/pkgs/by-name/li/librenms/package.nix +++ b/pkgs/by-name/li/librenms/package.nix @@ -25,7 +25,7 @@ let phpPackage = php82.withExtensions ({ enabled, all }: enabled ++ [ all.memcached ]); in -phpPackage.buildComposerProject rec { +phpPackage.buildComposerProject2 rec { pname = "librenms"; version = "25.1.0"; @@ -36,7 +36,7 @@ phpPackage.buildComposerProject rec { sha256 = "sha256-Uo+JOgb1KSZkludoupIIGnuK88ER3LthGnGmShpkrNU="; }; - vendorHash = "sha256-QBZnsURxLf3vmeh9qxEOJtSVAi1Ipr0jEbC/EmhL4q8="; + vendorHash = "sha256-9cywwX0vWrvbi3HGARxrjsObckGiGbJPRILe0ASgrGU="; php = phpPackage; @@ -68,9 +68,8 @@ phpPackage.buildComposerProject rec { nativeBuildInputs = [ makeWrapper ]; - installPhase = '' - runHook preInstall - + postInstall = '' + chmod -R u+w $out/share mv $out/share/php/librenms/* $out rm -r $out/share @@ -117,8 +116,6 @@ phpPackage.buildComposerProject rec { ln -s ${dataDir}/rrd $out/rrd ln -s ${dataDir}/storage $out/storage ln -s ${dataDir}/cache $out/bootstrap/cache - - runHook postInstall ''; passthru = { From a84634546e02b0949ad10fd1467157b85690f216 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 12:59:11 +0100 Subject: [PATCH 087/118] python313Packages.types-beautifulsoup4: 4.12.0.20241020 -> 4.12.0.20250204 --- .../python-modules/types-beautifulsoup4/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/types-beautifulsoup4/default.nix b/pkgs/development/python-modules/types-beautifulsoup4/default.nix index 17cc87e26b01..bc14576f7a57 100644 --- a/pkgs/development/python-modules/types-beautifulsoup4/default.nix +++ b/pkgs/development/python-modules/types-beautifulsoup4/default.nix @@ -8,12 +8,13 @@ buildPythonPackage rec { pname = "types-beautifulsoup4"; - version = "4.12.0.20241020"; + version = "4.12.0.20250204"; pyproject = true; src = fetchPypi { - inherit pname version; - hash = "sha256-FYNw0I0M1Ei9EbEypQ/1J5I3pdS1g3vroHTeFSpRMFk="; + pname = "types_beautifulsoup4"; + inherit version; + hash = "sha256-8IPY7cvQEnn4w5lbVs//LQHxu4lMO1AroRjTb7vElb8="; }; build-system = [ setuptools ]; @@ -28,7 +29,7 @@ buildPythonPackage rec { meta = with lib; { description = "Typing stubs for beautifulsoup4"; homepage = "https://pypi.org/project/types-beautifulsoup4/"; - license = with licenses; [ asl20 ]; + license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; } From 86a9d3dabe21e9e04616672dc25bd72bec6db915 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:00:13 +0100 Subject: [PATCH 088/118] python313Packages.aioelectricitymaps: 1.0.0 -> 1.1.0 Diff: https://github.com/jpbede/aioelectricitymaps/compare/refs/tags/v1.0.0...v1.1.0 Changelog: https://github.com/jpbede/aioelectricitymaps/releases/tag/v1.1.0 --- .../development/python-modules/aioelectricitymaps/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aioelectricitymaps/default.nix b/pkgs/development/python-modules/aioelectricitymaps/default.nix index 322867677dda..ca8b267c2f0f 100644 --- a/pkgs/development/python-modules/aioelectricitymaps/default.nix +++ b/pkgs/development/python-modules/aioelectricitymaps/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "aioelectricitymaps"; - version = "1.0.0"; + version = "1.1.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "jpbede"; repo = "aioelectricitymaps"; tag = "v${version}"; - hash = "sha256-l6D5Cr2d89n+Ac5V5geBUY0sOiEO3sci9244K0MI+dc="; + hash = "sha256-YYoWdI+m+WiBCC7lPBm0x0jYL/+02iT/4Z5sdxBPvHY="; }; postPatch = '' From 7eba5949724b15a982b197b4b2dd316330d887ae Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Sat, 8 Feb 2025 13:01:28 +0100 Subject: [PATCH 089/118] librenms: switch from --replace to --replace-fail --- pkgs/by-name/li/librenms/package.nix | 40 ++++++++++++++-------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/pkgs/by-name/li/librenms/package.nix b/pkgs/by-name/li/librenms/package.nix index d6821216c3b1..596d40d1705c 100644 --- a/pkgs/by-name/li/librenms/package.nix +++ b/pkgs/by-name/li/librenms/package.nix @@ -78,26 +78,26 @@ phpPackage.buildComposerProject2 rec { substituteInPlace \ $out/misc/config_definitions.json \ - --replace '"default": "/bin/ping",' '"default": "/run/wrappers/bin/ping",' \ - --replace '"default": "fping",' '"default": "/run/wrappers/bin/fping",' \ - --replace '"default": "fping6",' '"default": "/run/wrappers/bin/fping6",' \ - --replace '"default": "rrdtool",' '"default": "${rrdtool}/bin/rrdtool",' \ - --replace '"default": "snmpgetnext",' '"default": "${net-snmp}/bin/snmpgetnext",' \ - --replace '"default": "traceroute",' '"default": "/run/wrappers/bin/traceroute",' \ - --replace '"default": "/usr/bin/dot",' '"default": "${graphviz}/bin/dot",' \ - --replace '"default": "/usr/bin/ipmitool",' '"default": "${ipmitool}/bin/ipmitool",' \ - --replace '"default": "/usr/bin/mtr",' '"default": "${mtr}/bin/mtr",' \ - --replace '"default": "/usr/bin/nfdump",' '"default": "${nfdump}/bin/nfdump",' \ - --replace '"default": "/usr/bin/nmap",' '"default": "${nmap}/bin/nmap",' \ - --replace '"default": "/usr/bin/sfdp",' '"default": "${graphviz}/bin/sfdp",' \ - --replace '"default": "/usr/bin/snmpbulkwalk",' '"default": "${net-snmp}/bin/snmpbulkwalk",' \ - --replace '"default": "/usr/bin/snmpget",' '"default": "${net-snmp}/bin/snmpget",' \ - --replace '"default": "/usr/bin/snmptranslate",' '"default": "${net-snmp}/bin/snmptranslate",' \ - --replace '"default": "/usr/bin/snmpwalk",' '"default": "${net-snmp}/bin/snmpwalk",' \ - --replace '"default": "/usr/bin/virsh",' '"default": "${libvirt}/bin/virsh",' \ - --replace '"default": "/usr/bin/whois",' '"default": "${whois}/bin/whois",' \ - --replace '"default": "/usr/lib/nagios/plugins",' '"default": "${monitoring-plugins}/bin",' \ - --replace '"default": "/usr/sbin/sendmail",' '"default": "${system-sendmail}/bin/sendmail",' + --replace-fail '"default": "/bin/ping",' '"default": "/run/wrappers/bin/ping",' \ + --replace-fail '"default": "fping",' '"default": "/run/wrappers/bin/fping",' \ + --replace-fail '"default": "fping6",' '"default": "/run/wrappers/bin/fping6",' \ + --replace-fail '"default": "rrdtool",' '"default": "${rrdtool}/bin/rrdtool",' \ + --replace-fail '"default": "snmpgetnext",' '"default": "${net-snmp}/bin/snmpgetnext",' \ + --replace-fail '"default": "traceroute",' '"default": "/run/wrappers/bin/traceroute",' \ + --replace-fail '"default": "/usr/bin/dot",' '"default": "${graphviz}/bin/dot",' \ + --replace-fail '"default": "/usr/bin/ipmitool",' '"default": "${ipmitool}/bin/ipmitool",' \ + --replace-fail '"default": "/usr/bin/mtr",' '"default": "${mtr}/bin/mtr",' \ + --replace-fail '"default": "/usr/bin/nfdump",' '"default": "${nfdump}/bin/nfdump",' \ + --replace-fail '"default": "/usr/bin/nmap",' '"default": "${nmap}/bin/nmap",' \ + --replace-fail '"default": "/usr/bin/sfdp",' '"default": "${graphviz}/bin/sfdp",' \ + --replace-fail '"default": "/usr/bin/snmpbulkwalk",' '"default": "${net-snmp}/bin/snmpbulkwalk",' \ + --replace-fail '"default": "/usr/bin/snmpget",' '"default": "${net-snmp}/bin/snmpget",' \ + --replace-fail '"default": "/usr/bin/snmptranslate",' '"default": "${net-snmp}/bin/snmptranslate",' \ + --replace-fail '"default": "/usr/bin/snmpwalk",' '"default": "${net-snmp}/bin/snmpwalk",' \ + --replace-fail '"default": "/usr/bin/virsh",' '"default": "${libvirt}/bin/virsh",' \ + --replace-fail '"default": "/usr/bin/whois",' '"default": "${whois}/bin/whois",' \ + --replace-fail '"default": "/usr/lib/nagios/plugins",' '"default": "${monitoring-plugins}/bin",' \ + --replace-fail '"default": "/usr/sbin/sendmail",' '"default": "${system-sendmail}/bin/sendmail",' substituteInPlace $out/LibreNMS/wrapper.py --replace-fail '/usr/bin/env php' '${phpPackage}/bin/php' substituteInPlace $out/LibreNMS/__init__.py --replace-fail '"/usr/bin/env", "php"' '"${phpPackage}/bin/php"' From 40c525168c8d6057eedb8004881d1ce6a0aa1656 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:02:11 +0100 Subject: [PATCH 090/118] python313Packages.boto3-stubs: 1.36.15 -> 1.36.16 --- pkgs/development/python-modules/boto3-stubs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/boto3-stubs/default.nix b/pkgs/development/python-modules/boto3-stubs/default.nix index 08626fed8ca8..933ab16cc294 100644 --- a/pkgs/development/python-modules/boto3-stubs/default.nix +++ b/pkgs/development/python-modules/boto3-stubs/default.nix @@ -359,7 +359,7 @@ buildPythonPackage rec { pname = "boto3-stubs"; - version = "1.36.15"; + version = "1.36.16"; pyproject = true; disabled = pythonOlder "3.7"; @@ -367,7 +367,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "boto3_stubs"; inherit version; - hash = "sha256-VXViNY9tYbL/NjhPbTkezIIRtpsvURDu0/aJRJ36gCQ="; + hash = "sha256-n+i23D1rM8zEJBvX4oHxFSWkV0OmsL9NqTVUuaR/B9E="; }; build-system = [ setuptools ]; From f1a63700aff1934d52ca011d97a545d521ea3705 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:02:14 +0100 Subject: [PATCH 091/118] python313Packages.botocore-stubs: 1.36.15 -> 1.36.16 --- pkgs/development/python-modules/botocore-stubs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/botocore-stubs/default.nix b/pkgs/development/python-modules/botocore-stubs/default.nix index 9062830e75f3..e734e7faa4bf 100644 --- a/pkgs/development/python-modules/botocore-stubs/default.nix +++ b/pkgs/development/python-modules/botocore-stubs/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "botocore-stubs"; - version = "1.36.15"; + version = "1.36.16"; pyproject = true; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "botocore_stubs"; inherit version; - hash = "sha256-1IUrr98fV3xYjwEzT7q0u/Q+Ye6AZRwhi0gv3GU00ac="; + hash = "sha256-rLSAuo5GlQ1nYLi/Lzj35zwTW9gznAt9nytcYx08rxc="; }; nativeBuildInputs = [ setuptools ]; From 4977d1de6bb16acc7fdc9e86c277ca58d10c409b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:02:40 +0100 Subject: [PATCH 092/118] python312Packages.mypy-boto3-cloudformation: 1.36.0 -> 1.36.15 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 4eae2aa62b7d..804da09b728b 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -226,8 +226,8 @@ rec { "sha256-NQnrx4nzScaOBOYsiN8UjOT3LXYrgC/MW4AIPBr1l0I="; mypy-boto3-cloudformation = - buildMypyBoto3Package "cloudformation" "1.36.0" - "sha256-rMLHrokg8RZ74Jf2FRaF/lrumb4viQB17fk+BdKY6LA="; + buildMypyBoto3Package "cloudformation" "1.36.15" + "sha256-g8YpVNduF0EAsCwheQCS2xX2yoIKuYTQ1DY/DRdwkt8="; mypy-boto3-cloudfront = buildMypyBoto3Package "cloudfront" "1.36.0" From 93416bd664bdc55aeb443c9ba880b9d4ce16ebae Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:02:49 +0100 Subject: [PATCH 093/118] python312Packages.mypy-boto3-connectcases: 1.36.0 -> 1.36.15 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 804da09b728b..a8f3aa1069e4 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -350,8 +350,8 @@ rec { "sha256-2wNQJFcUo9VO5387QSE1kGyTA8oHkFAPgdEIMdQqSo0="; mypy-boto3-connectcases = - buildMypyBoto3Package "connectcases" "1.36.0" - "sha256-QzmNIYpg/lCCxRMU8cuEM2TZEX7ZYLZPTI7pCHtyjXw="; + buildMypyBoto3Package "connectcases" "1.36.15" + "sha256-M0TsvGiiw66MBc3LCThjho+1c094x8JbUyEtWN00pyc="; mypy-boto3-connectparticipant = buildMypyBoto3Package "connectparticipant" "1.36.0" From 3ccd6f93139a4edd7075b664e167526168c83d90 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:02:58 +0100 Subject: [PATCH 094/118] python312Packages.mypy-boto3-ecr: 1.36.10 -> 1.36.16 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index a8f3aa1069e4..af5289e80bfc 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -454,8 +454,8 @@ rec { "sha256-q6u1MssNxk38vE2Gy/508A5bhdUrqxH/Mq3DeBFVfqA="; mypy-boto3-ecr = - buildMypyBoto3Package "ecr" "1.36.10" - "sha256-CRPZzCV+iTXSR/7aiqLe1+r+gAjE4kN+YhXy53iTKmg="; + buildMypyBoto3Package "ecr" "1.36.16" + "sha256-Fph1HYTByDH/zepZRzRh2l90s/EsFO2fNpEHpUCzuQY="; mypy-boto3-ecr-public = buildMypyBoto3Package "ecr-public" "1.36.10" From 8c80e941adbc53a568ae45dea5822871170e43a7 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:03:00 +0100 Subject: [PATCH 095/118] python312Packages.mypy-boto3-eks: 1.36.6 -> 1.36.16 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index af5289e80bfc..53a769ed7861 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -470,8 +470,8 @@ rec { "sha256-5xK6JX8tM+3EDHC5Ma4G6fGYSf/9Q1V7O2YS+E20HOo="; mypy-boto3-eks = - buildMypyBoto3Package "eks" "1.36.6" - "sha256-XmOg80pQ9TTSBbpIEABm/fST0yGyLYZCm4XO+1CwLcw="; + buildMypyBoto3Package "eks" "1.36.16" + "sha256-9ZSeS+cRrNWdlZBVIqBU7HQ87+B0Oyel6qWQsZAVyd4="; mypy-boto3-elastic-inference = buildMypyBoto3Package "elastic-inference" "1.36.0" From 4a761d86ed3d0c70e8e335804e12378f46797447 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:03:27 +0100 Subject: [PATCH 096/118] python312Packages.mypy-boto3-mediaconvert: 1.36.7 -> 1.36.16 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 53a769ed7861..818257bfe853 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -862,8 +862,8 @@ rec { "sha256-kNE9LvLz9ltNM6UcMhXeyGWm+uHMAK3E5V/t30QYo+0="; mypy-boto3-mediaconvert = - buildMypyBoto3Package "mediaconvert" "1.36.7" - "sha256-SuIB0cn2magEfWAeNIxCa2AiEgklovL2PO8fWdRm26A="; + buildMypyBoto3Package "mediaconvert" "1.36.16" + "sha256-Zs7r18i4H2k2XnqvRN/d+b5W+0bjfNonNL1EI1rK7aw="; mypy-boto3-medialive = buildMypyBoto3Package "medialive" "1.36.4" From cb4d0ab07ec97faa2feee76123a37e32e2ac8a0e Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Sat, 8 Feb 2025 13:03:33 +0100 Subject: [PATCH 097/118] librenms: switch to tag --- pkgs/by-name/li/librenms/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/li/librenms/package.nix b/pkgs/by-name/li/librenms/package.nix index 596d40d1705c..608cde4c8ab5 100644 --- a/pkgs/by-name/li/librenms/package.nix +++ b/pkgs/by-name/li/librenms/package.nix @@ -32,7 +32,7 @@ phpPackage.buildComposerProject2 rec { src = fetchFromGitHub { owner = "librenms"; repo = pname; - rev = "${version}"; + tag = version; sha256 = "sha256-Uo+JOgb1KSZkludoupIIGnuK88ER3LthGnGmShpkrNU="; }; From 3025d40f2589b6c31a113ff484e39249eddc57db Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:03:38 +0100 Subject: [PATCH 098/118] python312Packages.mypy-boto3-pi: 1.36.0 -> 1.36.16 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 818257bfe853..511905d58d82 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -1026,8 +1026,8 @@ rec { "sha256-4/9lvIlwuiXlkPXYcjKdC+Ewzhglg+cEgswJaYMDBWU="; mypy-boto3-pi = - buildMypyBoto3Package "pi" "1.36.0" - "sha256-adgipK2ns7/L9g5qcWussonN/SewTsNiJeIp9lJplTQ="; + buildMypyBoto3Package "pi" "1.36.16" + "sha256-Xx9QinfGubDOAV3qr2jKip3n+1vdpDSboXXJM0XWFnY="; mypy-boto3-pinpoint = buildMypyBoto3Package "pinpoint" "1.36.0" From 8cae0ef0a260015fe2d77f60d8941f339ff4a1be Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:03:43 +0100 Subject: [PATCH 099/118] python312Packages.mypy-boto3-rds: 1.36.11 -> 1.36.14 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 511905d58d82..fb7a0255d315 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -1086,8 +1086,8 @@ rec { "sha256-afWYZZR8qCp3f19RodsHltXxAfSwFmTYaoGSHMV5MvI="; mypy-boto3-rds = - buildMypyBoto3Package "rds" "1.36.11" - "sha256-b5Yd6uUChgJFf4cZEtaVnmCL0gPKIDX6EWY4qa8WPLU="; + buildMypyBoto3Package "rds" "1.36.14" + "sha256-acb3d88SnyS0lbbUOly0uiOWC7LuLsOxx3jLMxQVxRs="; mypy-boto3-rds-data = buildMypyBoto3Package "rds-data" "1.36.0" From 4fba3650e67d25aea5581f5bc1558a851996da9b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:03:48 +0100 Subject: [PATCH 100/118] python312Packages.mypy-boto3-s3: 1.36.9 -> 1.36.15 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index fb7a0255d315..91aa7f19e30a 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -1162,8 +1162,8 @@ rec { "sha256-DLbt+8tSmmMHfjifzFJGKezEmbiTxiA5KfCfcL+I/V8="; mypy-boto3-s3 = - buildMypyBoto3Package "s3" "1.36.9" - "sha256-NoyWOWntpluzqd9h6HUQ3YsyR8zln1WcLsbEPVeWvvU="; + buildMypyBoto3Package "s3" "1.36.15" + "sha256-5UAPagCPdGxCu752frSSzslqIRzrNLYDJnOu3Nh7PWI="; mypy-boto3-s3control = buildMypyBoto3Package "s3control" "1.36.7" From 0aac4266dc33fa08a5ad7d00a96e564e10697edb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:04:03 +0100 Subject: [PATCH 101/118] python312Packages.mypy-boto3-transcribe: 1.36.0 -> 1.36.16 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 91aa7f19e30a..5c45bd8e3923 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -1366,8 +1366,8 @@ rec { "sha256-4esWqRpxC9Q1AfpNY5mwZ+upTjZTQ+HqdRVwoU7Lhas="; mypy-boto3-transcribe = - buildMypyBoto3Package "transcribe" "1.36.0" - "sha256-LOMhyKiJ5K1AHzGmcV+GXLUsKyc8mX6zYguh3UZgzNM="; + buildMypyBoto3Package "transcribe" "1.36.16" + "sha256-qPrG06bvFqloggeixei6kBq1jcq/MjXN2N+95oMDqs8="; mypy-boto3-transfer = buildMypyBoto3Package "transfer" "1.36.6" From 2dd7a8ec1ba1116edbc0bf9c85bed201751835a9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:05:01 +0100 Subject: [PATCH 102/118] python313Packages.cyclopts: 3.5.0 -> 3.6.0 Diff: https://github.com/BrianPugh/cyclopts/compare/refs/tags/v3.5.0...v3.6.0 Changelog: https://github.com/BrianPugh/cyclopts/releases/tag/v3.6.0 --- pkgs/development/python-modules/cyclopts/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cyclopts/default.nix b/pkgs/development/python-modules/cyclopts/default.nix index 3b3ad81d3d24..bbe83e8c789f 100644 --- a/pkgs/development/python-modules/cyclopts/default.nix +++ b/pkgs/development/python-modules/cyclopts/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "cyclopts"; - version = "3.5.0"; + version = "3.6.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -28,7 +28,7 @@ buildPythonPackage rec { owner = "BrianPugh"; repo = "cyclopts"; tag = "v${version}"; - hash = "sha256-otMKT7GQbI1ORqVRIf9gVzC28nwx8uWYjZcfth5PS/E="; + hash = "sha256-ASIPCSGD3YY0XXUISMvEOVWXh3aEoL2mZSDnbYjFMo0="; }; build-system = [ From b17594c18a9db13a92b9129788cca5a22f818b4a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:06:06 +0100 Subject: [PATCH 103/118] python313Packages.gehomesdk: 0.5.41 -> 2025.2.2 Changelog: https://github.com/simbaja/gehome/blob/master/CHANGELOG.md --- pkgs/development/python-modules/gehomesdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/gehomesdk/default.nix b/pkgs/development/python-modules/gehomesdk/default.nix index 19709bf85961..1d735c1088e5 100644 --- a/pkgs/development/python-modules/gehomesdk/default.nix +++ b/pkgs/development/python-modules/gehomesdk/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "gehomesdk"; - version = "0.5.41"; + version = "2025.2.2"; pyproject = true; disabled = pythonOlder "3.9"; src = fetchPypi { inherit pname version; - hash = "sha256-/IIkKkxH74E1YUwZzClvFqrEhNMYiLFQquzaT6LVDQU="; + hash = "sha256-c2WrY/Db2D0x+jDszDkojBKAZmwGNQnXXfSrkoSjs3w="; }; build-system = [ setuptools ]; From 1004b767a493b32b439401d207075eb88e3baca1 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Sat, 8 Feb 2025 13:05:30 +0100 Subject: [PATCH 104/118] vscode-extensions.ms-python.mypy-type-checker: do not set default `mypy` path --- .../ms-python.mypy-type-checker/default.nix | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/ms-python.mypy-type-checker/default.nix b/pkgs/applications/editors/vscode/extensions/ms-python.mypy-type-checker/default.nix index 6119ebca6c6e..67f045c70787 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-python.mypy-type-checker/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-python.mypy-type-checker/default.nix @@ -1,9 +1,6 @@ { lib, vscode-utils, - mypy, - jq, - moreutils, }: vscode-utils.buildVscodeMarketplaceExtension { @@ -14,17 +11,6 @@ vscode-utils.buildVscodeMarketplaceExtension { hash = "sha256-boKUxLOAgQJP13zX/NMhg1MtcrPVQJt5gLbxI7gVSu4="; }; - buildInputs = [ mypy ]; - - nativeBuildInputs = [ - jq - moreutils - ]; - - postInstall = '' - jq '.contributes.configuration.properties."mypy-type-checker.path".default = "${lib.getExe mypy}"' $out/$installPrefix/package.json | sponge $out/$installPrefix/package.json - ''; - meta = { changelog = "https://github.com/microsoft/vscode-mypy/releases"; description = "VSCode extension for type checking support for Python files using Mypy"; From 727a9e8a620781baa458e10178f05d67e5b1aa5d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:19:21 +0100 Subject: [PATCH 105/118] python313Packages.aiosql: 13.0 -> 13.2 Diff: https://github.com/nackjicholson/aiosql/compare/refs/tags/13.0...13.2 Changelog: https://github.com/nackjicholson/aiosql/releases/tag/13.2 --- pkgs/development/python-modules/aiosql/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiosql/default.nix b/pkgs/development/python-modules/aiosql/default.nix index 99f55bb586ae..8ed71cdc4825 100644 --- a/pkgs/development/python-modules/aiosql/default.nix +++ b/pkgs/development/python-modules/aiosql/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "aiosql"; - version = "13.0"; + version = "13.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -28,7 +28,7 @@ buildPythonPackage rec { owner = "nackjicholson"; repo = "aiosql"; tag = version; - hash = "sha256-WvYCMImLrQjaTrMgDrkF1fOUv/pxbwFHT+SwOZkTMl0="; + hash = "sha256-GJeYh3xPKrfm2oPsNTrQXnYW75Bx8PN5/brJFslOcTw="; }; sphinxRoot = "docs/source"; From 6b342141465e2d6b949f785852282a800f2a924f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 13:32:38 +0100 Subject: [PATCH 106/118] python313Packages.bring-api: 1.0.0 -> 1.0.1 Diff: https://github.com/miaucl/bring-api/compare/refs/tags/1.0.0...1.0.1 Changelog: https://github.com/miaucl/bring-api/blob/1.0.1/CHANGELOG.md --- pkgs/development/python-modules/bring-api/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/bring-api/default.nix b/pkgs/development/python-modules/bring-api/default.nix index 35fbe563032a..ef749574df9e 100644 --- a/pkgs/development/python-modules/bring-api/default.nix +++ b/pkgs/development/python-modules/bring-api/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "bring-api"; - version = "1.0.0"; + version = "1.0.1"; pyproject = true; disabled = pythonOlder "3.11"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "miaucl"; repo = "bring-api"; tag = version; - hash = "sha256-1K8CijA2cSyofH/qanOsDRLqnQZyBTqsnrUtvZYBS2c="; + hash = "sha256-ohWemgZhnUUz5O40nIlrTN1jEUDQvGGLNvqXNbYYAaM="; }; build-system = [ setuptools ]; From abe25771cd20bacd173fdb31d172d896d2081cc8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 8 Feb 2025 12:57:27 +0000 Subject: [PATCH 107/118] scid-vs-pc: 4.25 -> 4.26 --- pkgs/by-name/sc/scid-vs-pc/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sc/scid-vs-pc/package.nix b/pkgs/by-name/sc/scid-vs-pc/package.nix index e1cf8503ae68..13853d0f09a6 100644 --- a/pkgs/by-name/sc/scid-vs-pc/package.nix +++ b/pkgs/by-name/sc/scid-vs-pc/package.nix @@ -12,11 +12,11 @@ tcl.mkTclDerivation rec { pname = "scid-vs-pc"; - version = "4.25"; + version = "4.26"; src = fetchurl { url = "mirror://sourceforge/scidvspc/scid_vs_pc-${version}.tgz"; - hash = "sha256-YZsBwIp5ouGk75wsAywuYyNSeNjCAx0iWgiA7YmUmnk="; + hash = "sha256-iK4h7YS8+W2nr3Bbmai4Ervt0YWYKgkQaZ5IH7Q9HkE="; }; postPatch = '' From cd243f58741708f9499e63a0820f24e4d8cb9b0f Mon Sep 17 00:00:00 2001 From: Ole Mussmann Date: Wed, 22 Jan 2025 19:37:13 +0100 Subject: [PATCH 108/118] nps: init at 0.2.9 --- pkgs/by-name/np/nps/package.nix | 45 +++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 pkgs/by-name/np/nps/package.nix diff --git a/pkgs/by-name/np/nps/package.nix b/pkgs/by-name/np/nps/package.nix new file mode 100644 index 000000000000..4f167d1ac4f0 --- /dev/null +++ b/pkgs/by-name/np/nps/package.nix @@ -0,0 +1,45 @@ +{ + lib, + nix, + fetchFromGitHub, + rustPlatform, +}: + +rustPlatform.buildRustPackage rec { + pname = "nps"; + version = "0.2.9"; + + src = fetchFromGitHub { + owner = "OleMussmann"; + repo = "nps"; + tag = "v${version}"; + hash = "sha256-q/PkigsNAI7MCmeDFBMGuZJFXVL95pQCNOVhNvBH9dc="; + }; + + useFetchCargoVendor = true; + cargoHash = "sha256-MThyvhzZXRM4l0K8csLDldMVKiDxKZ5EIFATGVpGpVc="; + + nativeCheckInputs = [ nix ]; + + meta = { + description = "Cache the nix package list, query and sort results by relevance"; + longDescription = '' + Find SEARCH_TERM in available nix packages and sort results by relevance. + + List up to three columns, the latter two being optional: + PACKAGE_NAME + + Matches are sorted by type. Show 'indirect' matches first, then 'direct' matches, and finally 'exact' matches. + + indirect fooSEARCH_TERMbar (SEARCH_TERM appears in any column) + direct SEARCH_TERMbar (PACKAGE_NAME starts with SEARCH_TERM) + exact SEARCH_TERM (PACKAGE_NAME is exactly SEARCH_TERM) + ''; + changelog = "https://github.com/OleMussmann/nps/releases/tag/v${version}"; + homepage = "https://github.com/OleMussmann/nps"; + license = lib.licenses.mit; + mainProgram = "nps"; + maintainers = with lib.maintainers; [ olemussmann ]; + platforms = lib.platforms.all; + }; +} From d9fb579a17aae3bb53c18630cb9d4a096b0598eb Mon Sep 17 00:00:00 2001 From: misilelab Date: Sat, 8 Feb 2025 22:16:17 +0900 Subject: [PATCH 109/118] basedpyright: 1.23.1 -> 1.26.0 Signed-off-by: misilelab --- pkgs/by-name/ba/basedpyright/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ba/basedpyright/package.nix b/pkgs/by-name/ba/basedpyright/package.nix index 14a33ba23daf..c3c2f6e43be7 100644 --- a/pkgs/by-name/ba/basedpyright/package.nix +++ b/pkgs/by-name/ba/basedpyright/package.nix @@ -16,16 +16,16 @@ buildNpmPackage rec { pname = "basedpyright"; - version = "1.23.1"; + version = "1.26.0"; src = fetchFromGitHub { owner = "detachhead"; repo = "basedpyright"; tag = "v${version}"; - hash = "sha256-w3QcvAHwEM1kdRY/780yr2kQQ2tCEvNeLHBm9bgAjMI="; + hash = "sha256-USGndOqosE6+gkCow7UeqEd37R4gYo5om1QEV7iz77g="; }; - npmDepsHash = "sha256-cEpBeEjOdArnLekS5uUk9OrsACZrvY63i8pYYvDSnbI="; + npmDepsHash = "sha256-lpAsDMa3yRtbORmycDh3nGpozmzHej4WORvEml/+buE="; npmWorkspace = "packages/pyright"; preBuild = '' @@ -44,6 +44,8 @@ buildNpmPackage rec { postInstall = '' mv "$out/bin/pyright" "$out/bin/basedpyright" mv "$out/bin/pyright-langserver" "$out/bin/basedpyright-langserver" + # Remove dangling symlinks created during installation (remove -delete to just see the files, or -print '%l\n' to see the target + find -L $out -type l -print -delete ''; nativeInstallCheckInputs = [ versionCheckHook ]; From 96a2377553b0649509e632dd6684681853d40e9e Mon Sep 17 00:00:00 2001 From: misilelab Date: Sat, 8 Feb 2025 22:16:37 +0900 Subject: [PATCH 110/118] basedpyright: add misilelab to maintainers Signed-off-by: misilelab --- pkgs/by-name/ba/basedpyright/package.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ba/basedpyright/package.nix b/pkgs/by-name/ba/basedpyright/package.nix index c3c2f6e43be7..a7e46c9c54c0 100644 --- a/pkgs/by-name/ba/basedpyright/package.nix +++ b/pkgs/by-name/ba/basedpyright/package.nix @@ -101,6 +101,9 @@ buildNpmPackage rec { homepage = "https://github.com/detachhead/basedpyright"; license = lib.licenses.mit; mainProgram = "basedpyright"; - maintainers = with lib.maintainers; [ kiike ]; + maintainers = with lib.maintainers; [ + kiike + misilelab + ]; }; } From 4952640fce85326fd2f0aee91f1155f9fef8331a Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Sat, 8 Feb 2025 14:17:01 +0100 Subject: [PATCH 111/118] php84Packages.psalm: 6.0.0 -> 6.5.0 --- pkgs/development/php-packages/psalm/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/development/php-packages/psalm/default.nix b/pkgs/development/php-packages/psalm/default.nix index fe9669bd44d9..5ebc7414fece 100644 --- a/pkgs/development/php-packages/psalm/default.nix +++ b/pkgs/development/php-packages/psalm/default.nix @@ -2,11 +2,12 @@ lib, fetchFromGitHub, php, + versionCheckHook, }: php.buildComposerProject2 (finalAttrs: { pname = "psalm"; - version = "6.0.0"; + version = "6.5.0"; src = fetchFromGitHub { owner = "vimeo"; @@ -18,7 +19,13 @@ php.buildComposerProject2 (finalAttrs: { # Missing `composer.lock` from the repository. # Issue open at https://github.com/vimeo/psalm/issues/10446 composerLock = ./composer.lock; - vendorHash = "sha256-WdWlG4tX/wLB2nj4iiqkIhEe2coYfG3q+0JoXescWbM="; + vendorHash = "sha256-6eGj0gTXktm1zGHjHKKsMnudb9RfmAFgwcmDV/QMV5Y="; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + versionCheckProgramArg = [ "--version" ]; + doInstallCheck = true; meta = { changelog = "https://github.com/vimeo/psalm/releases/tag/${finalAttrs.version}"; From ce5d31e5106fa2e84b7f9493e1cbf2d3dece574d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Feb 2025 15:08:37 +0100 Subject: [PATCH 112/118] uncover: 1.0.9 -> 1.0.10 Diff: https://github.com/projectdiscovery/uncover/compare/refs/tags/v1.0.9...v1.0.10 Changelog: https://github.com/projectdiscovery/uncover/releases/tag/v1.0.10 --- pkgs/by-name/un/uncover/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/un/uncover/package.nix b/pkgs/by-name/un/uncover/package.nix index 1b16fc3c8334..d672e02ee93f 100644 --- a/pkgs/by-name/un/uncover/package.nix +++ b/pkgs/by-name/un/uncover/package.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "uncover"; - version = "1.0.9"; + version = "1.0.10"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = "uncover"; tag = "v${version}"; - hash = "sha256-avGbawIeh7ZUtacRLo/tLz4D6U7JAlu9BXDYu/xvoa0="; + hash = "sha256-q8ecgTY2uDo4O+/CqK9aYnYb4oArDIvga9C/tG9IooE="; }; - vendorHash = "sha256-93iXho+WCQyhw9DoLgo9ZKiPrd88D2ibgp1M9uP7bUU="; + vendorHash = "sha256-Pm3CFHdp0VHZ5tRrjnpXXaIwQFu7EXyVgo/K9OOqHBI="; subPackages = [ "cmd/uncover" ]; From 4e2e89e516a06cae10513569d3a544b45bebac5a Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 8 Feb 2025 22:22:32 +0800 Subject: [PATCH 113/118] pcloud: fix build --- pkgs/by-name/pc/pcloud/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/pc/pcloud/package.nix b/pkgs/by-name/pc/pcloud/package.nix index d185ade66a48..a418ac534d51 100644 --- a/pkgs/by-name/pc/pcloud/package.nix +++ b/pkgs/by-name/pc/pcloud/package.nix @@ -114,6 +114,8 @@ stdenv.mkDerivation { EOF chmod +x bin/pcloud + + ln -snf $out/share/icons/hicolor/512x512/apps/pcloud.png $out/app/pcloud.png ''; meta = with lib; { From 21382d8a87c459b4a2f4715db186f855f75d840c Mon Sep 17 00:00:00 2001 From: Mauricio Collares Date: Sat, 8 Feb 2025 15:48:24 +0100 Subject: [PATCH 114/118] fplll: 5.4.5 -> 5.5.0 --- pkgs/development/libraries/fplll/default.nix | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/pkgs/development/libraries/fplll/default.nix b/pkgs/development/libraries/fplll/default.nix index aa27ad68e4f2..b00ba47bbe29 100644 --- a/pkgs/development/libraries/fplll/default.nix +++ b/pkgs/development/libraries/fplll/default.nix @@ -2,7 +2,6 @@ lib, stdenv, fetchFromGitHub, - fetchpatch, pkg-config, gettext, autoreconfHook, @@ -12,22 +11,15 @@ stdenv.mkDerivation rec { pname = "fplll"; - version = "5.4.5"; + version = "5.5.0"; src = fetchFromGitHub { owner = "fplll"; repo = "fplll"; rev = version; - sha256 = "sha256-taSS7jpVyjVfNe6kSuUDXMD2PgKmtG64V5MjZyQzorI="; + sha256 = "sha256-WvjXaCnUMioSmLlWmLV673mhRjnF+8DU9MqgUmBgaFQ="; }; - patches = [ - (fetchpatch { - url = "https://github.com/fplll/fplll/commit/317cf70893eebfb2625da12e5377189908c36240.diff"; - sha256 = "sha256-GbYSolBgv/he4QzjuRFdg93wHJABVHvA9x3PjpJTSRE="; - }) - ]; - nativeBuildInputs = [ pkg-config gettext From e686fefbe05a951b068ccbe11c56416e2b487a87 Mon Sep 17 00:00:00 2001 From: Mauricio Collares Date: Sat, 8 Feb 2025 15:48:37 +0100 Subject: [PATCH 115/118] python312Packages.fpylll: remove obsolete patches --- pkgs/development/python-modules/fpylll/default.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pkgs/development/python-modules/fpylll/default.nix b/pkgs/development/python-modules/fpylll/default.nix index b23a1ce96c2f..30c8db5b0ebc 100644 --- a/pkgs/development/python-modules/fpylll/default.nix +++ b/pkgs/development/python-modules/fpylll/default.nix @@ -2,7 +2,6 @@ lib, fetchFromGitHub, buildPythonPackage, - fetchpatch, # build-system cysignals, @@ -35,17 +34,6 @@ buildPythonPackage rec { hash = "sha256-3+DXfCUuHQG+VSzJGEPa8qP6oxC+nngMa44XyFCJAVY="; }; - patches = [ - (fetchpatch { - url = "https://github.com/fplll/fpylll/commit/fc432b21fa7e4b9891f5b761b3539989eb958f2b.diff"; - hash = "sha256-+UidQ5xnlmjeVeVvR4J2zDzAuXP5LUPXCh4RP4o9oGA="; - }) - (fetchpatch { - url = "https://github.com/fplll/fpylll/commit/cece9c9b182dc3ac2c9121549cb427ccf4c4a9fe.diff"; - hash = "sha256-epJb8gorQ7gEEylZ2yZFdM9+EZ4ys9mUUUPiJ2D0VOM="; - }) - ]; - nativeBuildInputs = [ cython cysignals From 7aa159d169c7238a072b85b95d0b053ff8648996 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Sat, 8 Feb 2025 19:03:28 +0400 Subject: [PATCH 116/118] =?UTF-8?q?h3:=204.1.0=20=E2=86=92=204.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/misc/h3/default.nix | 30 ++++++++++++++-------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/development/misc/h3/default.nix b/pkgs/development/misc/h3/default.nix index 4f3b2041d666..8f73097b3085 100644 --- a/pkgs/development/misc/h3/default.nix +++ b/pkgs/development/misc/h3/default.nix @@ -9,14 +9,14 @@ let generic = { version, hash }: - stdenv.mkDerivation rec { + stdenv.mkDerivation { inherit version; pname = "h3"; src = fetchFromGitHub { owner = "uber"; repo = "h3"; - rev = "v${version}"; + tag = "v${version}"; inherit hash; }; @@ -28,23 +28,23 @@ let nativeBuildInputs = [ cmake ]; cmakeFlags = [ - "-DBUILD_SHARED_LIBS=ON" - "-DBUILD_BENCHMARKS=OFF" - "-DBUILD_FUZZERS=OFF" - "-DBUILD_GENERATORS=OFF" - "-DENABLE_COVERAGE=OFF" - "-DENABLE_FORMAT=OFF" - "-DENABLE_LINTING=OFF" + (lib.cmakeBool "BUILD_SHARED_LIBS" true) + (lib.cmakeBool "BUILD_BENCHMARKS" false) + (lib.cmakeBool "BUILD_FUZZERS" false) + (lib.cmakeBool "BUILD_GENERATORS" false) + (lib.cmakeBool "ENABLE_COVERAGE" false) + (lib.cmakeBool "ENABLE_FORMAT" false) + (lib.cmakeBool "ENABLE_LINTING" false) (lib.cmakeBool "BUILD_FILTERS" withFilters) ]; - meta = with lib; { + meta = { homepage = "https://h3geo.org/"; description = "Hexagonal hierarchical geospatial indexing system"; - license = licenses.asl20; + license = lib.licenses.asl20; changelog = "https://github.com/uber/h3/raw/v${version}/CHANGELOG.md"; - platforms = platforms.all; - maintainers = with maintainers; [ kalbasit ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ kalbasit ]; }; }; in @@ -55,7 +55,7 @@ in }; h3_4 = generic { - version = "4.1.0"; - hash = "sha256-7qyN73T8XDwZLgMZld7wwShUwoLEi/2gN2oiZX8n5nQ="; + version = "4.2.0"; + hash = "sha256-SzuxoYjsXCLhlAhQS7JoKvH8C3vquXttf58d4LnkeVM="; }; } From 4fea9b89ed2445cff4107def8980f008bf287713 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Sat, 8 Feb 2025 18:56:22 +0400 Subject: [PATCH 117/118] =?UTF-8?q?python312Packages.h3:=204.1.2=20?= =?UTF-8?q?=E2=86=92=204.2.1,=20fix=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../development/python-modules/h3/default.nix | 32 ++++++++++++------- pkgs/top-level/python-packages.nix | 2 +- 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/h3/default.nix b/pkgs/development/python-modules/h3/default.nix index 4db7e9dda9e6..078c2ee8c55d 100644 --- a/pkgs/development/python-modules/h3/default.nix +++ b/pkgs/development/python-modules/h3/default.nix @@ -6,34 +6,40 @@ fetchFromGitHub, h3, lib, + ninja, numpy, pytestCheckHook, - scikit-build, + pytest-cov-stub, + scikit-build-core, stdenv, }: buildPythonPackage rec { pname = "h3"; - version = "4.1.2"; - format = "setuptools"; + version = "4.2.1"; + pyproject = true; # pypi version does not include tests src = fetchFromGitHub { owner = "uber"; repo = "h3-py"; tag = "v${version}"; - hash = "sha256-dsF6VJwwIDapHtLiNEWbKW6A28zEOWqEPDRznf0eOcA="; + hash = "sha256-YFGKF/WV0nlmtR7MacOBoor6PQwPPFqdK1C1eIciXwI="; }; dontConfigure = true; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + pytestCheckHook + pytest-cov-stub + ]; - nativeBuildInputs = + build-system = [ - scikit-build + scikit-build-core cmake cython + ninja ] ++ lib.optionals stdenv.hostPlatform.isLinux [ # On Linux the .so files ends up referring to libh3.so instead of the full @@ -46,7 +52,7 @@ buildPythonPackage rec { # correctly. See the note above ^^ buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ h3 ]; - propagatedBuildInputs = [ numpy ]; + dependencies = [ numpy ]; # The following prePatch replaces the h3lib compilation with using the h3 packaged in nixpkgs. # @@ -61,16 +67,18 @@ buildPythonPackage rec { in '' rm -r src/h3lib - substituteInPlace CMakeLists.txt --replace "add_subdirectory(src/h3lib)" "${cmakeCommands}" + substituteInPlace CMakeLists.txt \ + --replace-fail "add_subdirectory(src/h3lib)" "${cmakeCommands}" \ + --replace-fail "\''${CMAKE_CURRENT_BINARY_DIR}/src/h3lib/src/h3lib/include/h3api.h" "${lib.getDev h3}/include/h3/h3api.h" ''; # Extra check to make sure we can import it from Python pythonImportsCheck = [ "h3" ]; - meta = with lib; { + meta = { homepage = "https://github.com/uber/h3-py"; description = "Hierarchical hexagonal geospatial indexing system"; - license = licenses.asl20; - maintainers = [ maintainers.kalbasit ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.kalbasit ]; }; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7c3c4089b8c3..8fa9970c21b2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5791,7 +5791,7 @@ self: super: with self; { h2 = callPackage ../development/python-modules/h2 { }; h3 = callPackage ../development/python-modules/h3 { - inherit (pkgs) h3; + h3 = pkgs.h3_4; }; h5io = callPackage ../development/python-modules/h5io { }; From aa5b1e6ac3ae5fe9ba2c26a4af637a04f1222c4c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 8 Feb 2025 17:12:30 +0000 Subject: [PATCH 118/118] plasma-panel-colorizer: 2.1.0 -> 2.3.0 --- pkgs/by-name/pl/plasma-panel-colorizer/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pl/plasma-panel-colorizer/package.nix b/pkgs/by-name/pl/plasma-panel-colorizer/package.nix index 97410aeaa8e1..98278cbe8e60 100644 --- a/pkgs/by-name/pl/plasma-panel-colorizer/package.nix +++ b/pkgs/by-name/pl/plasma-panel-colorizer/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "plasma-panel-colorizer"; - version = "2.1.0"; + version = "2.3.0"; src = fetchFromGitHub { owner = "luisbocanegra"; repo = "plasma-panel-colorizer"; tag = "v${finalAttrs.version}"; - hash = "sha256-Xv1yGIGIWqfxukJub0X2sH0XwtRTr13p+vDi+Wdgnkg="; + hash = "sha256-Q7qSky/wY5l72EVhTGnwQ8lI3Uu3TnZpgqXaClCxWZQ="; }; nativeBuildInputs = [