From a9058179242ce36a8ef20a09c02624f0d9f553b4 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Mon, 13 Oct 2025 07:18:39 +0100 Subject: [PATCH 01/19] whois: 5.6.4 -> 5.6.5 Changes: https://github.com/rfc1036/whois/compare/v5.6.4...v5.6.5 --- pkgs/by-name/wh/whois/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/wh/whois/package.nix b/pkgs/by-name/wh/whois/package.nix index 44d87d25a7b6..f5b434fc5b8a 100644 --- a/pkgs/by-name/wh/whois/package.nix +++ b/pkgs/by-name/wh/whois/package.nix @@ -11,14 +11,14 @@ }: stdenv.mkDerivation rec { - version = "5.6.4"; + version = "5.6.5"; pname = "whois"; src = fetchFromGitHub { owner = "rfc1036"; repo = "whois"; rev = "v${version}"; - hash = "sha256-9c67LrpJu3cW/j1hfNhatB4nkCxMTCfHpszawGtU7ko="; + hash = "sha256-zCaM3fMittoEzuMRELqc1ES8QPgZRXVjyHUfMsS5tJA="; }; patches = [ From e68505d8ba6ef91c65384b6b7065b4c73c5c3b84 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Wed, 15 Oct 2025 13:27:41 +0300 Subject: [PATCH 02/19] libressl: no with lib; in meta --- pkgs/development/libraries/libressl/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/default.nix index fe8731c0a38f..29be2facc0e8 100644 --- a/pkgs/development/libraries/libressl/default.nix +++ b/pkgs/development/libraries/libressl/default.nix @@ -86,10 +86,10 @@ let moveToOutput "share/man/man1/nc.1.gz" "$nc" ''; - meta = with lib; { + meta = { description = "Free TLS/SSL implementation"; homepage = "https://www.libressl.org"; - license = with licenses; [ + license = with lib.licenses; [ publicDomain bsdOriginal bsd0 @@ -98,8 +98,8 @@ let isc openssl ]; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice fpletz ]; From 7d0242f2dba3062e11c2d0c5513c50c003a406f7 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Wed, 15 Oct 2025 13:26:55 +0300 Subject: [PATCH 03/19] libressl: 4.1.0 -> 4.2.0 --- pkgs/development/libraries/libressl/default.nix | 5 +++++ pkgs/top-level/all-packages.nix | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/default.nix index 29be2facc0e8..7528e89a33d6 100644 --- a/pkgs/development/libraries/libressl/default.nix +++ b/pkgs/development/libraries/libressl/default.nix @@ -167,4 +167,9 @@ in } include/arch/loongarch64/opensslconf.h ''; }; + + libressl_4_2 = generic { + version = "4.2.0"; + hash = "sha256-D326RNfLjfjVPyz78ZVSVLwSjgCJWV8aui+s+u6ECLI="; + }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a2c59749b7bc..15788f08675b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8324,9 +8324,10 @@ with pkgs; libressl_3_9 libressl_4_0 libressl_4_1 + libressl_4_2 ; - libressl = libressl_4_1; + libressl = libressl_4_2; openssl = openssl_3_5; From e88a19be009e6306bc09d71409820c9a4b244b74 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Wed, 15 Oct 2025 13:49:44 +0300 Subject: [PATCH 04/19] libressl: move to by-name --- .../libraries => by-name/li}/libressl/default.nix | 0 pkgs/by-name/li/libressl/package.nix | 5 +++++ pkgs/top-level/all-packages.nix | 4 +--- 3 files changed, 6 insertions(+), 3 deletions(-) rename pkgs/{development/libraries => by-name/li}/libressl/default.nix (100%) create mode 100644 pkgs/by-name/li/libressl/package.nix diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/by-name/li/libressl/default.nix similarity index 100% rename from pkgs/development/libraries/libressl/default.nix rename to pkgs/by-name/li/libressl/default.nix diff --git a/pkgs/by-name/li/libressl/package.nix b/pkgs/by-name/li/libressl/package.nix new file mode 100644 index 000000000000..f9b05eb9555b --- /dev/null +++ b/pkgs/by-name/li/libressl/package.nix @@ -0,0 +1,5 @@ +{ + libressl_4_2, +}: + +libressl_4_2 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 15788f08675b..da496fc6e12c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8320,15 +8320,13 @@ with pkgs; watcherclient = with python313Packages; toPythonApplication python-watcherclient; zunclient = with python313Packages; toPythonApplication python-zunclient; - inherit (callPackages ../development/libraries/libressl { }) + inherit (callPackages ../by-name/li/libressl { }) libressl_3_9 libressl_4_0 libressl_4_1 libressl_4_2 ; - libressl = libressl_4_2; - openssl = openssl_3_5; openssl_legacy = openssl.override { From 74a66882e93973c59cb52c06ec6484155d0ceb67 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Wed, 15 Oct 2025 14:11:18 +0300 Subject: [PATCH 05/19] libressl_{3_9,4_0,4_1,4_2}: use a patch for cmake pkgconfig paths --- .../cmake-install-full-dirs.3.9.patch | 17 +++++++++++++++ pkgs/by-name/li/libressl/default.nix | 21 +++++++++++++------ 2 files changed, 32 insertions(+), 6 deletions(-) create mode 100644 pkgs/by-name/li/libressl/cmake-install-full-dirs.3.9.patch diff --git a/pkgs/by-name/li/libressl/cmake-install-full-dirs.3.9.patch b/pkgs/by-name/li/libressl/cmake-install-full-dirs.3.9.patch new file mode 100644 index 000000000000..69a4b102be64 --- /dev/null +++ b/pkgs/by-name/li/libressl/cmake-install-full-dirs.3.9.patch @@ -0,0 +1,17 @@ +diff --git c/CMakeLists.txt w/CMakeLists.txt +index 01a42fb..1a9a505 100644 +--- c/CMakeLists.txt ++++ w/CMakeLists.txt +@@ -515,9 +515,9 @@ if(ENABLE_LIBRESSL_INSTALL) + if(NOT MSVC) + # Create pkgconfig files. + set(prefix ${CMAKE_INSTALL_PREFIX}) +- set(exec_prefix \${prefix}) +- set(libdir \${exec_prefix}/${CMAKE_INSTALL_LIBDIR}) +- set(includedir \${prefix}/include) ++ set(exec_prefix ${CMAKE_INSTALL_FULL_BINDIR}) ++ set(libdir ${CMAKE_INSTALL_FULL_LIBDIR}) ++ set(includedir ${CMAKE_INSTALL_FULL_INCLUDEDIR}) + if(PLATFORM_LIBS) + string(REGEX REPLACE ";" " -l" PLATFORM_LDADD ";${PLATFORM_LIBS}") + endif() diff --git a/pkgs/by-name/li/libressl/default.nix b/pkgs/by-name/li/libressl/default.nix index 7528e89a33d6..f4cbfbc673df 100644 --- a/pkgs/by-name/li/libressl/default.nix +++ b/pkgs/by-name/li/libressl/default.nix @@ -37,9 +37,6 @@ let # .note.GNU-stack section, and if that section is missing from any object, # the linker will make the stack executable. "-DCMAKE_C_FLAGS=-DHAVE_GNU_STACK" - # libressl will append this to the regular prefix for libdir - "-DCMAKE_INSTALL_LIBDIR=lib" - "-DTLS_DEFAULT_CA_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt" ] ++ lib.optional buildShared "-DBUILD_SHARED_LIBS=ON"; @@ -50,9 +47,6 @@ let # removing ./configure pre-config. preConfigure = '' rm configure - substituteInPlace CMakeLists.txt \ - --replace-fail 'exec_prefix \''${prefix}' "exec_prefix ${placeholder "bin"}" \ - --replace-fail 'libdir \''${exec_prefix}' 'libdir \''${prefix}' ''; inherit patches; @@ -116,6 +110,11 @@ let ]; }; }; + # https://github.com/libressl/portable/pull/1206 + common-cmake-install-full-dirs-patch = fetchpatch { + url = "https://github.com/libressl/portable/commit/a15ea0710398eaeed3be53cf643e80a1e80c981d.patch"; + hash = "sha256-Mlf4SrGCCqALQicbGtmVGdkdfcE8DEGYkOuVyG2CozM="; + }; in { libressl_3_9 = generic { @@ -129,6 +128,9 @@ in url = "https://github.com/libressl/portable/commit/e6c7de3f03c51fbdcf5ad88bf12fe9e128521f0d.patch"; hash = "sha256-LJy3fjbnc9h5DG3/+8bLECwJeBpPxy3hU8sPuhovmcw="; }) + # common-cmake-install-full-dirs-patch doesn't apply for this version, so + # this is a manual backport + ./cmake-install-full-dirs.3.9.patch ]; }; @@ -149,6 +151,7 @@ in ''; hash = "sha256-dEdtmHHiR7twAqgebXv1Owle/KYCak71NhDCp0PdseU="; }) + common-cmake-install-full-dirs-patch ]; }; @@ -166,10 +169,16 @@ in } } include/arch/loongarch64/opensslconf.h ''; + patches = [ + common-cmake-install-full-dirs-patch + ]; }; libressl_4_2 = generic { version = "4.2.0"; hash = "sha256-D326RNfLjfjVPyz78ZVSVLwSjgCJWV8aui+s+u6ECLI="; + patches = [ + common-cmake-install-full-dirs-patch + ]; }; } From e825675658f96e22d437ce53bfc60fa7f2d1081d Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Sun, 12 Oct 2025 17:32:59 -0400 Subject: [PATCH 06/19] linux/common-config: Disable bcachefs --- nixos/doc/manual/release-notes/rl-2511.section.md | 2 +- nixos/modules/tasks/filesystems/bcachefs.nix | 12 +----------- pkgs/os-specific/linux/kernel/common-config.nix | 4 ++-- 3 files changed, 4 insertions(+), 14 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-2511.section.md b/nixos/doc/manual/release-notes/rl-2511.section.md index 555f22a151a9..e4ae71d843ee 100644 --- a/nixos/doc/manual/release-notes/rl-2511.section.md +++ b/nixos/doc/manual/release-notes/rl-2511.section.md @@ -340,7 +340,7 @@ - Due to [deprecation of gnome-session X11 support](https://blogs.gnome.org/alatiera/2025/06/08/the-x11-session-removal/), `services.desktopManager.pantheon` now defaults to pantheon-wayland session. The X11 session has been removed, see [this issue](https://github.com/elementary/session-settings/issues/91) for details. -- `bcachefs` file systems will now use the out-of-tree module for supported kernels. The in-tree module is unmaintained and users are strongly recommended to switch to kernels that support the out-of-tree module. +- `bcachefs` file systems will now use the out-of-tree module for supported kernels. The in-tree module has been removed, and users will need to switch to kernels that support the out-of-tree module. - `services.gitea` supports sending notifications with sendmail again. To do this, activate the parameter `services.gitea.mailerUseSendmail` and configure SMTP server. diff --git a/nixos/modules/tasks/filesystems/bcachefs.nix b/nixos/modules/tasks/filesystems/bcachefs.nix index bbd9b40ad8e5..362f6ff32b10 100644 --- a/nixos/modules/tasks/filesystems/bcachefs.nix +++ b/nixos/modules/tasks/filesystems/bcachefs.nix @@ -242,14 +242,6 @@ in } ]; - warnings = lib.mkIf cfg.modulePackage.meta.broken [ - '' - Using unmaintained in-tree bcachefs kernel module. This - will be removed in 26.05. Please use a kernel supported - by the out-of-tree module package. - '' - ]; - # Bcachefs upstream recommends using the latest kernel boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; @@ -257,9 +249,7 @@ in system.fsPackages = [ cfg.package ]; services.udev.packages = [ cfg.package ]; - boot.extraModulePackages = lib.optionals (!cfg.modulePackage.meta.broken) [ - cfg.modulePackage - ]; + boot.extraModulePackages = [ cfg.modulePackage ]; systemd = { packages = [ cfg.package ]; diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index fdb300836d80..9fe615ccf5e4 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -714,8 +714,8 @@ let BTRFS_FS_POSIX_ACL = yes; - BCACHEFS_QUOTA = whenBetween "6.7" "6.18" (option yes); - BCACHEFS_POSIX_ACL = whenBetween "6.7" "6.18" (option yes); + # Provided by external module + BCACHEFS_FS = whenBetween "6.7" "6.18" no; UBIFS_FS_ADVANCED_COMPR = option yes; From 1b68466acfb1f616a2b09c59f1afb276c8f176d0 Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Sun, 12 Oct 2025 17:32:38 -0400 Subject: [PATCH 07/19] nixos/installer: Include bcachefs in latest kernel boot option. --- nixos/modules/installer/cd-dvd/latest-kernel.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/installer/cd-dvd/latest-kernel.nix b/nixos/modules/installer/cd-dvd/latest-kernel.nix index 53b9af38ba0b..20190ebd2531 100644 --- a/nixos/modules/installer/cd-dvd/latest-kernel.nix +++ b/nixos/modules/installer/cd-dvd/latest-kernel.nix @@ -2,6 +2,7 @@ { boot.kernelPackages = pkgs.linuxPackages_latest; boot.supportedFilesystems.zfs = false; + boot.supportedFilesystems.bcachefs = true; environment.etc."nixos-generate-config.conf".text = '' [Defaults] Kernel=latest From 60f48b74c12b4fe4269a3796d71fcd95d5d2958c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 16 Oct 2025 20:38:47 +0000 Subject: [PATCH 08/19] ruff: 0.14.0 -> 0.14.1 Diff: https://github.com/astral-sh/ruff/compare/0.14.0...0.14.1 Changelog: https://github.com/astral-sh/ruff/releases/tag/0.14.1 --- pkgs/by-name/ru/ruff/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ru/ruff/package.nix b/pkgs/by-name/ru/ruff/package.nix index 91f01c964b9b..7411af78662d 100644 --- a/pkgs/by-name/ru/ruff/package.nix +++ b/pkgs/by-name/ru/ruff/package.nix @@ -16,18 +16,18 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "ruff"; - version = "0.14.0"; + version = "0.14.1"; src = fetchFromGitHub { owner = "astral-sh"; repo = "ruff"; tag = finalAttrs.version; - hash = "sha256-Vueccz5lkUTdgqqZl/+PB0kVYezvPKIVxee8EJYcz4g="; + hash = "sha256-jBhlaLWoWp+sNsLBrHoT3J5dtdU1sZzuuhugw9UVw+c="; }; cargoBuildFlags = [ "--package=ruff" ]; - cargoHash = "sha256-bnSTiQzlZrS2tqQiRHr6gNDq40Naqxrxcyc8zcVlt7A="; + cargoHash = "sha256-shDP5j3mGpnFV0cuFmsWfPoOzJB/wSTUEjNUO+CIadg="; nativeBuildInputs = [ installShellFiles ]; From 78d9efbbe8197273945f0b5345876366f552ea3c Mon Sep 17 00:00:00 2001 From: matthewcroughan Date: Mon, 29 Sep 2025 13:31:48 +0100 Subject: [PATCH 09/19] time: fix build on non-glibc --- pkgs/by-name/ti/time/package.nix | 6 ++-- ...1.9-fix-sighandler-prototype-for-c23.patch | 30 +++++++++++++++++++ 2 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 pkgs/by-name/ti/time/time-1.9-fix-sighandler-prototype-for-c23.patch diff --git a/pkgs/by-name/ti/time/package.nix b/pkgs/by-name/ti/time/package.nix index af26954c2c57..cd49f0f89850 100644 --- a/pkgs/by-name/ti/time/package.nix +++ b/pkgs/by-name/ti/time/package.nix @@ -17,11 +17,9 @@ stdenv.mkDerivation (finalAttrs: { patches = [ # fixes cross-compilation to riscv64-linux ./time-1.9-implicit-func-decl-clang.patch + # https://lists.gnu.org/archive/html/bug-time/2025-10/msg00000.html # fix compilation with gcc15 - (fetchpatch { - url = "https://src.fedoraproject.org/rpms/time/raw/191440912c2e9a63af87802e507ca3ccb923e805/f/time-1.9-Fix-compiling-with-GCC15.patch"; - hash = "sha256-4Qp3mV8XuCmz518GPtrW52gyaPOb+97RE6FDPKNCyJw="; - }) + ./time-1.9-fix-sighandler-prototype-for-c23.patch ]; meta = { diff --git a/pkgs/by-name/ti/time/time-1.9-fix-sighandler-prototype-for-c23.patch b/pkgs/by-name/ti/time/time-1.9-fix-sighandler-prototype-for-c23.patch new file mode 100644 index 000000000000..d092fa39ef2f --- /dev/null +++ b/pkgs/by-name/ti/time/time-1.9-fix-sighandler-prototype-for-c23.patch @@ -0,0 +1,30 @@ +In C23 functions with empty argument list in the prototype are treated +as taking no arguments. This means that the `int` argument of the +sighandler must be specified explicitly or the code will fail to +compile due to mismatched function type. + +Signed-off-by: Marcin Serwin +--- +This fixes the same issue as + and + but does not +rely on `sighandler_t` which is a GNU extension. + + src/time.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/time.c b/src/time.c +index 7b401bc..88287dd 100644 +--- a/src/time.c ++++ b/src/time.c +@@ -77,7 +77,7 @@ enum + + + /* A Pointer to a signal handler. */ +-typedef RETSIGTYPE (*sighandler) (); ++typedef RETSIGTYPE (*sighandler) (int); + + /* msec = milliseconds = 1/1,000 (1*10e-3) second. + usec = microseconds = 1/1,000,000 (1*10e-6) second. */ +-- +2.51.0 From 44cb0800c8694c6a74a1a73fb0d9b716bac012f8 Mon Sep 17 00:00:00 2001 From: Thore Sommer Date: Fri, 17 Oct 2025 16:45:09 +0200 Subject: [PATCH 10/19] linux/common-config: enable CDEV and NOIOMMU for VFIO --- pkgs/os-specific/linux/kernel/common-config.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 9fe615ccf5e4..15914d94400d 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -988,6 +988,11 @@ let # Enable device detection on virtio-mmio hypervisors VIRTIO_MMIO_CMDLINE_DEVICES = yes; + + # Enable CDEV and NOIOMMU support for VFIO, which is useful for + # passthrough. + VFIO_DEVICE_CDEV = yes; + VFIO_NOIOMMU = yes; }; media = { From 2a3b2148b3c51a514d001f67429ac6fde13ca31c Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Thu, 9 Oct 2025 02:44:24 -0400 Subject: [PATCH 11/19] toml11: only build tests when they're enabled --- pkgs/by-name/to/toml11/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/to/toml11/package.nix b/pkgs/by-name/to/toml11/package.nix index 8bf21b712a05..48d01e379b0f 100644 --- a/pkgs/by-name/to/toml11/package.nix +++ b/pkgs/by-name/to/toml11/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; cmakeFlags = [ - (lib.cmakeBool "TOML11_BUILD_TOML_TESTS" true) + (lib.cmakeBool "TOML11_BUILD_TOML_TESTS" finalAttrs.finalPackage.doCheck) ]; doCheck = true; From e463f5829797978e60e6ae95dfa832a319adad52 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Thu, 9 Oct 2025 02:46:11 -0400 Subject: [PATCH 12/19] toml11: use system `doctest` & `nlohmann_json` --- pkgs/by-name/to/toml11/package.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/to/toml11/package.nix b/pkgs/by-name/to/toml11/package.nix index 48d01e379b0f..dd5924edd489 100644 --- a/pkgs/by-name/to/toml11/package.nix +++ b/pkgs/by-name/to/toml11/package.nix @@ -3,7 +3,9 @@ stdenv, fetchFromGitHub, cmake, + doctest, fetchpatch, + nlohmann_json, }: stdenv.mkDerivation (finalAttrs: { @@ -14,8 +16,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "ToruNiina"; repo = "toml11"; tag = "v${finalAttrs.version}"; - hash = "sha256-NnM+I43UVcd72Y9h+ysAAc7s5gZ78mjVwIMReTJ7G5M="; - fetchSubmodules = true; + hash = "sha256-sgWKYxNT22nw376ttGsTdg0AMzOwp8QH3E8mx0BZJTQ="; }; patches = [ @@ -26,12 +27,22 @@ stdenv.mkDerivation (finalAttrs: { }) ]; + # Required to use the system `doctest` over upstream's submodule + postPatch = lib.optionalString finalAttrs.finalPackage.doCheck '' + substituteInPlace tests/*.{c,h}pp \ + --replace-warn '"doctest.h"' '"doctest/doctest.h"' + ''; + nativeBuildInputs = [ cmake ]; cmakeFlags = [ (lib.cmakeBool "TOML11_BUILD_TOML_TESTS" finalAttrs.finalPackage.doCheck) ]; + checkInputs = [ + doctest + nlohmann_json + ]; doCheck = true; meta = { From c775bd5d2930a892727bced231be594869aa8f29 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sun, 19 Oct 2025 17:10:25 +0200 Subject: [PATCH 13/19] Revert "nix/libgit2: Unpatch irrelevant fix for quick delivery" This reverts commit f7b37bf885e475d0ceab580ee9e5b5c7f3c84f14. That commit was a workaround to avoid rebuilding Nix and the NixOS tests, which was a safe thing to do. This commit targets the staging-nixos cycle, so that we can make Nix use the normal libgit2 package again. --- pkgs/tools/package-management/nix/dependencies.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkgs/tools/package-management/nix/dependencies.nix b/pkgs/tools/package-management/nix/dependencies.nix index 7f3b5780607a..ed5a63ce3ecf 100644 --- a/pkgs/tools/package-management/nix/dependencies.nix +++ b/pkgs/tools/package-management/nix/dependencies.nix @@ -34,12 +34,5 @@ regular@{ # only a stripped down version is built which takes a lot less resources to build requiredSystemFeatures = [ ]; }; - - libgit2 = pkgs.libgit2.overrideAttrs (old: { - # Drop the SSH buffer overflow patch to avoid rebuilding Nix - patches = lib.filter (p: !lib.hasSuffix "fix-ssh-custom-heap-buffer-overflow.patch" (toString p)) ( - old.patches or [ ] - ); - }); }; } From 7349aa1a5f6aa77c7ab13eb888463a894c448291 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sun, 19 Oct 2025 22:17:39 +0000 Subject: [PATCH 14/19] linux_6_17: 6.17.3 -> 6.17.4 --- 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 e40d19fac90b..d33fa70a16e2 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -40,8 +40,8 @@ "lts": false }, "6.17": { - "version": "6.17.3", - "hash": "sha256:16cld01iwn6hhayxh6f0z71rph0z3p3m4bsd49szddd5v0cqdk1y", + "version": "6.17.4", + "hash": "sha256:1nwi0hzikziwkxm9xzf819wb3lsz93i1ns1nzybpbfkgdqli42h1", "lts": false } } From 10731831fa8479ca89bc84c5bd214e3d9aa3442c Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sun, 19 Oct 2025 22:17:41 +0000 Subject: [PATCH 15/19] linux_6_12: 6.12.53 -> 6.12.54 --- 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 d33fa70a16e2..2858d9aae990 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -30,8 +30,8 @@ "lts": true }, "6.12": { - "version": "6.12.53", - "hash": "sha256:1df0sahirxsby2imsbi04vcn2bimskl4l2r19v7sywz6ran0fdb6", + "version": "6.12.54", + "hash": "sha256:0qny8c4r9rf55bvchs5vjplfldngmydn0j47a97c9vpgj0rws38v", "lts": true }, "6.16": { From ec87e0f31b3ac57233a125e950828563113792b1 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sun, 19 Oct 2025 22:17:43 +0000 Subject: [PATCH 16/19] linux_6_6: 6.6.112 -> 6.6.113 --- 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 2858d9aae990..10916d76d114 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -25,8 +25,8 @@ "lts": true }, "6.6": { - "version": "6.6.112", - "hash": "sha256:08la2f8w5w2x0l9nmvzsmbwa951xyshhvdhwwhfyjmka66zr4zbc", + "version": "6.6.113", + "hash": "sha256:07n494cblmlfmn8l3kjalwlnb1f9xxxf8c31kkfr5lb1wk9cz58z", "lts": true }, "6.12": { From e343a4ce09c4de0df7646e4f9ae3e4dca1011cf7 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sun, 19 Oct 2025 22:17:45 +0000 Subject: [PATCH 17/19] linux_6_1: 6.1.156 -> 6.1.157 --- 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 10916d76d114..54c8d50e7f76 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -5,8 +5,8 @@ "lts": false }, "6.1": { - "version": "6.1.156", - "hash": "sha256:13i2l04pmba7dksz2p5kwxgr5bydc5lp7284d4wfsnjf425i9fyl", + "version": "6.1.157", + "hash": "sha256:0vpnjrk5kjc03sk5m66i9bv677xfy9mfrjvzx3jcrbr10bhq98d0", "lts": true }, "5.15": { From 69b2cadc63982e98183300570262bcb40315b998 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sun, 19 Oct 2025 22:17:47 +0000 Subject: [PATCH 18/19] linux_5_15: 5.15.194 -> 5.15.195 --- 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 54c8d50e7f76..f085cbe780d2 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -10,8 +10,8 @@ "lts": true }, "5.15": { - "version": "5.15.194", - "hash": "sha256:0zi6ihvjmaf940arnc7jjvdqrjf3cvkc9mqc8n24dz85vam6z39l", + "version": "5.15.195", + "hash": "sha256:0hd4p76qv29zlr0iik4j9y9qynyqisk6bgfiqcwkk7gr6bf81l13", "lts": true }, "5.10": { From f1a1bda8d15cca63e7ecfdbb30f9c661a5d71ef1 Mon Sep 17 00:00:00 2001 From: K900 Date: Mon, 20 Oct 2025 09:42:24 +0300 Subject: [PATCH 19/19] linux_testing: 6.18-rc1 -> 6.18-rc2 --- 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 f085cbe780d2..144d74916ee7 100644 --- a/pkgs/os-specific/linux/kernel/kernels-org.json +++ b/pkgs/os-specific/linux/kernel/kernels-org.json @@ -1,7 +1,7 @@ { "testing": { - "version": "6.18-rc1", - "hash": "sha256:1warfcvr86as1rcls3g5f9i4az6xqabjwmf6jxlx9dk2l523sl1l", + "version": "6.18-rc2", + "hash": "sha256:1qnn47hz4q8z1613p4d641qmj71g631zwv7x7nglp9ixg2r4lxzv", "lts": false }, "6.1": {