From 451af963879573f946db6c0f076f56772fb9cb1e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 5 Feb 2025 07:04:13 +0000 Subject: [PATCH 01/18] emacsPackages.lsp-bridge: 0-unstable-2025-01-22 -> 0-unstable-2025-02-03 --- .../elisp-packages/manual-packages/lsp-bridge/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix index cf1c84b3fd8b..8d15e185b286 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix @@ -31,13 +31,13 @@ let in melpaBuild { pname = "lsp-bridge"; - version = "0-unstable-2025-01-22"; + version = "0-unstable-2025-02-03"; src = fetchFromGitHub { owner = "manateelazycat"; repo = "lsp-bridge"; - rev = "c87e6ac6d452b3bd94583a5c5edb16f37edadb94"; - hash = "sha256-+6qU8KGdti/pji1d+024bnT7+oFP5Ve3jToURautKzE="; + rev = "16c9054be6e40a254e096715b1acf80ca36918aa"; + hash = "sha256-u1NWrSLsc+SRiK9BZwAujrzYb7vU+lEqyT+wozbXaiY="; }; patches = [ From 37d08685e8d27542b32edb4a72433e66a41f65cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A9clairevoyant?= <848000+eclairevoyant@users.noreply.github.com> Date: Wed, 5 Feb 2025 22:50:36 -0500 Subject: [PATCH 02/18] nixos/version: validate system.stateVersion --- .../manual/release-notes/rl-2505.section.md | 2 ++ nixos/modules/misc/version.nix | 22 +++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-2505.section.md b/nixos/doc/manual/release-notes/rl-2505.section.md index 3c166bab99be..6d8cc3723bce 100644 --- a/nixos/doc/manual/release-notes/rl-2505.section.md +++ b/nixos/doc/manual/release-notes/rl-2505.section.md @@ -437,6 +437,8 @@ - Overriding Wayland compositor is possible using `enableWaylandSession` option, but you might need to take care [`xfce4-session`](https://gitlab.xfce.org/xfce/xfce4-session/-/merge_requests/49), [`dbus-update-activation-environment`](https://github.com/labwc/labwc/blob/eaf11face68ee1f1bcc7ce1498304ca8c108c8ba/src/config/session.c#L234) and [`systemctl --user import-environment`](https://github.com/labwc/labwc/blob/eaf11face68ee1f1bcc7ce1498304ca8c108c8ba/src/config/session.c#L239) on startup. - For new Xfce installations, default panel layout has [changed](https://gitlab.xfce.org/xfce/xfce4-panel/-/merge_requests/158/diffs) to not include external panel plugins by default. You can still add them yourself using the "Panel Preferences" dialog. +- [`system.stateVersion`](#opt-system.stateVersion) is now validated and must be in the `"YY.MM"` format, ideally corresponding to a prior NixOS release. + - GOverlay has been updated to 1.2, please check the [upstream changelog](https://github.com/benjamimgois/goverlay/releases) for more details. - [`services.mongodb`](#opt-services.mongodb.enable) is now compatible with the `mongodb-ce` binary package. To make use of it, set [`services.mongodb.package`](#opt-services.mongodb.package) to `pkgs.mongodb-ce`. diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix index b1a58be8ef4c..5610afc8168d 100644 --- a/nixos/modules/misc/version.nix +++ b/nixos/modules/misc/version.nix @@ -16,6 +16,7 @@ let toLower optionalString literalExpression + match mkRenamedOptionModule mkDefault mkOption @@ -263,6 +264,27 @@ in config = { + assertions = [ + { + assertion = match "[0-9]{2}\\.[0-9]{2}" config.system.stateVersion != null; + message = '' + ${config.system.stateVersion} is an invalid value for 'system.stateVersion'; it must be in the format "YY.MM", + which corresponds to a prior release of NixOS. + + If you want to switch releases or switch to unstable, you should change your channel and/or flake input URLs only. + *DO NOT* touch the 'system.stateVersion' option, as it will not help you upgrade. + Leave it exactly on the previous value, which is likely the value you had for it when you installed your system. + + If you're unsure which value to set it to, use "${ + if match "[0-9]{2}\\.[0-9]{2}" options.system.stateVersion.default != null then + options.system.stateVersion.default + else + options.system.nixos.release.default + }" as a default. + ''; + } + ]; + system.nixos = { # These defaults are set here rather than up there so that # changing them would not rebuild the manual From abf2fe76a8927cddf842782763578636ee5999c1 Mon Sep 17 00:00:00 2001 From: Mitchell Pleune Date: Sat, 8 Feb 2025 07:02:10 +0000 Subject: [PATCH 03/18] cpuinfo: disable tests The tests look to identify the host cpu, and will fail they cannot. --- pkgs/by-name/cp/cpuinfo/package.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/cp/cpuinfo/package.nix b/pkgs/by-name/cp/cpuinfo/package.nix index 357e71fa0379..455e6f3d34e9 100644 --- a/pkgs/by-name/cp/cpuinfo/package.nix +++ b/pkgs/by-name/cp/cpuinfo/package.nix @@ -37,7 +37,11 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "USE_SYSTEM_LIBS" true) ]; - doCheck = !(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); + # The tests check what CPU the host has and makes sure it can query information. + # not all build environments may have this information availaible. And, cpuinfo may + # not understand all CPUs (causing test failures such as https://github.com/pytorch/cpuinfo/issues/132) + # Instead, allow building in any environment. + doCheck = false; meta = { description = "Tools and library to detect essential for performance optimization information about host CPU"; From 064c9430f377bf566562c8825b96cfc3c3c4952b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo?= Date: Sat, 8 Feb 2025 07:08:33 -0300 Subject: [PATCH 04/18] lxqt.lxqt-config: 2.1.0 -> 2.1.1 Diff: https://github.com/lxqt/lxqt-config/compare/2.1.0...2.1.1 --- pkgs/desktops/lxqt/lxqt-config/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/lxqt/lxqt-config/default.nix b/pkgs/desktops/lxqt/lxqt-config/default.nix index 4215ce43fde5..6977648d4e06 100644 --- a/pkgs/desktops/lxqt/lxqt-config/default.nix +++ b/pkgs/desktops/lxqt/lxqt-config/default.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation rec { pname = "lxqt-config"; - version = "2.1.0"; + version = "2.1.1"; src = fetchFromGitHub { owner = "lxqt"; repo = pname; rev = version; - hash = "sha256-zAJD1p0iJUEN+pOW1nyVKrCBfew/uqVNqw9aCFq+JY4="; + hash = "sha256-Vzf+Olaxl6tn3ETEQseFIPstjo+pfdzZUgyVFqk6p3c="; }; nativeBuildInputs = [ From a79982af609fea2140fb7e310be59870240568ef Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Mon, 27 Jan 2025 11:49:18 -0800 Subject: [PATCH 05/18] python312Packages.openai: 1.59.9 -> 1.61.1 Diff: https://github.com/openai/openai-python/compare/refs/tags/v1.59.9...1.61.1 --- pkgs/development/python-modules/openai/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/openai/default.nix b/pkgs/development/python-modules/openai/default.nix index 1514a6c7eefe..5b4e5410604c 100644 --- a/pkgs/development/python-modules/openai/default.nix +++ b/pkgs/development/python-modules/openai/default.nix @@ -32,12 +32,11 @@ pytest-asyncio, pytest-mock, respx, - }: buildPythonPackage rec { pname = "openai"; - version = "1.59.9"; + version = "1.61.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -46,7 +45,7 @@ buildPythonPackage rec { owner = "openai"; repo = "openai-python"; tag = "v${version}"; - hash = "sha256-khdrpiurp/PigM5+0LJpXfSbG22e2I+2Jwsxo6MJKhQ="; + hash = "sha256-7dDsfEHHYJv6hbDPryhzZwCtdIzYUOABLOSXXQ1vau8="; }; build-system = [ From cfba4763e500efa446c28e49c72715cb29ea1c26 Mon Sep 17 00:00:00 2001 From: happysalada Date: Sat, 8 Feb 2025 06:55:54 -0500 Subject: [PATCH 06/18] python3Packages.docling-core : 2.16.1 -> 2.17.2 --- pkgs/development/python-modules/docling-core/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/docling-core/default.nix b/pkgs/development/python-modules/docling-core/default.nix index 89ca308e3299..0d44b51b7634 100644 --- a/pkgs/development/python-modules/docling-core/default.nix +++ b/pkgs/development/python-modules/docling-core/default.nix @@ -23,14 +23,14 @@ buildPythonPackage rec { pname = "docling-core"; - version = "2.16.1"; + version = "2.17.2"; pyproject = true; src = fetchFromGitHub { owner = "DS4SD"; repo = "docling-core"; tag = "v${version}"; - hash = "sha256-oW/jX9IHCpztc0FDm8/3OzDmOxM92jrkFq/JeAcI9ZA="; + hash = "sha256-JO6WI2juehO825QOO0FkD58OigEoLGOZAnPBOD4b1tI="; }; build-system = [ From a109bc749757489e88bf7e1a67b568159b7df098 Mon Sep 17 00:00:00 2001 From: happysalada Date: Sat, 8 Feb 2025 06:56:30 -0500 Subject: [PATCH 07/18] python3Packages.docling-parse: 3.1.2 -> 3.3.0 --- pkgs/development/python-modules/docling-parse/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/docling-parse/default.nix b/pkgs/development/python-modules/docling-parse/default.nix index f6cd8a403f34..b112249bd77c 100644 --- a/pkgs/development/python-modules/docling-parse/default.nix +++ b/pkgs/development/python-modules/docling-parse/default.nix @@ -23,14 +23,14 @@ buildPythonPackage rec { pname = "docling-parse"; - version = "3.1.2"; + version = "3.3.0"; pyproject = true; src = fetchFromGitHub { owner = "DS4SD"; repo = "docling-parse"; tag = "v${version}"; - hash = "sha256-SgVLk1kruUSjtzuo/5YFY4Keha8zMzovm/UeCtfGaNY="; + hash = "sha256-huJOH/5SQoJiJp1wmJV5n07KHDZseM9XI26bfPQAxrA="; }; dontUseCmakeConfigure = true; From 2e27e8ded0bfe40285f58b02742b14cf5e0e6b8c Mon Sep 17 00:00:00 2001 From: happysalada Date: Sat, 8 Feb 2025 06:58:19 -0500 Subject: [PATCH 08/18] python3Packages.docling: 2.17.0 -> 2.20.0 --- pkgs/development/python-modules/docling/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/docling/default.nix b/pkgs/development/python-modules/docling/default.nix index fee19768aedf..7dc476f7edf1 100644 --- a/pkgs/development/python-modules/docling/default.nix +++ b/pkgs/development/python-modules/docling/default.nix @@ -44,14 +44,14 @@ buildPythonPackage rec { pname = "docling"; - version = "2.17.0"; + version = "2.20.0"; pyproject = true; src = fetchFromGitHub { owner = "DS4SD"; repo = "docling"; tag = "v${version}"; - hash = "sha256-OtUFQRNqyTGT1Z41tHziwM5hqbk+tg/97bxhtPVtmN0="; + hash = "sha256-6p6/UwbI4ZB6ro1O5ELg8fENEnpH4ycpCyOk7QPX7cY="; }; build-system = [ From be1904195a9dedab27d3a3df44d7cbfe7733b2df Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 8 Feb 2025 13:34:49 +0100 Subject: [PATCH 09/18] python312Packages.transformers: 4.48.2 -> 4.48.3 Diff: https://github.com/huggingface/transformers/compare/refs/tags/v4.48.2...v4.48.3 Changelog: https://github.com/huggingface/transformers/releases/tag/v4.48.3 --- pkgs/development/python-modules/transformers/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/transformers/default.nix b/pkgs/development/python-modules/transformers/default.nix index 2711b55448bc..92027cd34943 100644 --- a/pkgs/development/python-modules/transformers/default.nix +++ b/pkgs/development/python-modules/transformers/default.nix @@ -59,14 +59,14 @@ buildPythonPackage rec { pname = "transformers"; - version = "4.48.2"; + version = "4.48.3"; pyproject = true; src = fetchFromGitHub { owner = "huggingface"; repo = "transformers"; tag = "v${version}"; - hash = "sha256-jW/yhzmxQd/5BgbDImUaJSF0oMKIpIGhFoJuMZu0tv0="; + hash = "sha256-gDPJx/kgFa8KCoX8XCMtFrSY/z2as22yDSNEW3UDm/0="; }; patches = [ From 27cf4a4e23d6e5345251c332eebe158ee7134307 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 8 Feb 2025 21:22:55 +0800 Subject: [PATCH 10/18] cinnamon-common: Patch {cancel-print-dialog,lpstat-a}.py For issue 380117. Note that lpstat-a.py does not need to be wrapped. --- pkgs/by-name/ci/cinnamon-common/package.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/by-name/ci/cinnamon-common/package.nix b/pkgs/by-name/ci/cinnamon-common/package.nix index 09ddfca9743a..2071383b3d72 100644 --- a/pkgs/by-name/ci/cinnamon-common/package.nix +++ b/pkgs/by-name/ci/cinnamon-common/package.nix @@ -171,6 +171,10 @@ stdenv.mkDerivation rec { substituteInPlace ./modules/cs_user.py --replace-fail "/usr/bin/passwd" "/run/wrappers/bin/passwd" popd + # In preFixup we make these executable. + substituteInPlace ./files/usr/share/cinnamon/applets/printers@cinnamon.org/applet.js \ + --replace-fail "Util.spawn_async(['python3'," "Util.spawn_async([" + substituteInPlace ./files/usr/bin/cinnamon-session-{cinnamon,cinnamon2d} \ --replace-fail "exec cinnamon-session" "exec ${cinnamon-session}/bin/cinnamon-session" @@ -198,6 +202,10 @@ stdenv.mkDerivation rec { # Called as `pkexec cinnamon-settings-users.py`. wrapGApp $out/share/cinnamon/cinnamon-settings-users/cinnamon-settings-users.py + + # postPatch touches both but we mainly want to wrap cancel-print-dialog. + chmod +x $out/share/cinnamon/applets/printers@cinnamon.org/{cancel-print-dialog,lpstat-a}.py + wrapGApp $out/share/cinnamon/applets/printers@cinnamon.org/cancel-print-dialog.py ''; passthru = { From bb4281dcaa318e63b0315dd2122fd60522c682a9 Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Sat, 8 Feb 2025 19:21:35 +0100 Subject: [PATCH 11/18] Revert "python3Packages.materialx: 1.38.10 -> 1.39.1" This reverts commit e4d1e54749df0eaed81325315cb381578d9d07ed. This is necessary, because 1.39 introduces breaking changes and downstream software (e.g. openUSD) needs to adapt, first. See https://github.com/NixOS/nixpkgs/pull/326466#issuecomment-2293029160 and https://github.com/NixOS/nixpkgs/issues/380230 --- pkgs/development/python-modules/materialx/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/materialx/default.nix b/pkgs/development/python-modules/materialx/default.nix index e6adc281de8e..b3ad7bbe0804 100644 --- a/pkgs/development/python-modules/materialx/default.nix +++ b/pkgs/development/python-modules/materialx/default.nix @@ -16,13 +16,13 @@ buildPythonPackage rec { pname = "materialx"; - version = "1.39.1"; + version = "1.38.10"; src = fetchFromGitHub { owner = "AcademySoftwareFoundation"; repo = "MaterialX"; - tag = "v${version}"; - hash = "sha256-WzzsY1hOWwJEqT/ZRLIoZDfKNvx1Yf6aFhA3ZcSPx+s="; + rev = "v${version}"; + hash = "sha256-/kMHmW2dptZNtjuhE5s+jvPRIdtY+FRiVtMU+tiBgQo="; }; format = "other"; @@ -65,7 +65,7 @@ buildPythonPackage rec { ''; meta = { - changelog = "https://github.com/AcademySoftwareFoundation/MaterialX/blob/${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/AcademySoftwareFoundation/MaterialX/blob/${src.rev}/CHANGELOG.md"; description = "Open standard for representing rich material and look-development content in computer graphics"; homepage = "https://materialx.org"; maintainers = [ lib.maintainers.gador ]; From 00c386ebc854ea4299b8aa6504a18552130a7652 Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Sat, 8 Feb 2025 19:26:14 +0100 Subject: [PATCH 12/18] python312Packages.materialx: do not auto-update Signed-off-by: Florian Brandes --- pkgs/development/python-modules/materialx/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/materialx/default.nix b/pkgs/development/python-modules/materialx/default.nix index b3ad7bbe0804..5d2c09dfef7f 100644 --- a/pkgs/development/python-modules/materialx/default.nix +++ b/pkgs/development/python-modules/materialx/default.nix @@ -64,6 +64,12 @@ buildPythonPackage rec { ln -s $out/python $target_dir ''; + # Update to 1.39 has major API changes and downstream software + # needs to adapt, first. So, do not include in mass updates. For reference, see + # https://github.com/NixOS/nixpkgs/pull/326466#issuecomment-2293029160 + # and https://github.com/NixOS/nixpkgs/issues/380230 + passthru.skipBulkUpdate = true; + meta = { changelog = "https://github.com/AcademySoftwareFoundation/MaterialX/blob/${src.rev}/CHANGELOG.md"; description = "Open standard for representing rich material and look-development content in computer graphics"; From 965f0461d6083f48f07251bf4226febb08dc0e84 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 8 Feb 2025 20:42:54 +0000 Subject: [PATCH 13/18] simdutf: 6.1.1 -> 6.2.0 --- pkgs/by-name/si/simdutf/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/si/simdutf/package.nix b/pkgs/by-name/si/simdutf/package.nix index 2cbe99cf9db1..0a09fe7c6753 100644 --- a/pkgs/by-name/si/simdutf/package.nix +++ b/pkgs/by-name/si/simdutf/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "simdutf"; - version = "6.1.1"; + version = "6.2.0"; src = fetchFromGitHub { owner = "simdutf"; repo = "simdutf"; rev = "v${finalAttrs.version}"; - hash = "sha256-VAIxoTXOcWA2V+vx+AsCArkjprFiZun5BJoP1l3FGk0="; + hash = "sha256-kjKwJKAmzHwna5T/8tYp3kddHa4r1y+0wVJmotvg0OQ="; }; # Fix build on darwin From c6582035714a846ef8d4904525719f2ee049cd78 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 8 Feb 2025 10:42:29 +0100 Subject: [PATCH 14/18] python312Packages.evosax: cleanup --- pkgs/development/python-modules/evosax/default.nix | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/evosax/default.nix b/pkgs/development/python-modules/evosax/default.nix index aff474455aa9..143ece34b4ab 100644 --- a/pkgs/development/python-modules/evosax/default.nix +++ b/pkgs/development/python-modules/evosax/default.nix @@ -1,7 +1,6 @@ { lib, buildPythonPackage, - pythonOlder, fetchFromGitHub, # build-system @@ -17,12 +16,13 @@ numpy, pyyaml, - # checks + # tests # brax, (unpackaged) # gymnax, (unpackaged) pytestCheckHook, torch, torchvision, + writableTmpDirAsHomeHook, }: buildPythonPackage rec { @@ -30,8 +30,6 @@ buildPythonPackage rec { version = "0.1.6"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "RobertTLange"; repo = "evosax"; @@ -54,16 +52,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "evosax" ]; - preCheck = '' - export HOME=$(mktemp -d) - ''; - nativeCheckInputs = [ # brax # gymnax pytestCheckHook torch torchvision + writableTmpDirAsHomeHook ]; disabledTests = [ @@ -77,7 +72,7 @@ buildPythonPackage rec { meta = { description = "Evolution Strategies in JAX"; homepage = "https://github.com/RobertTLange/evosax"; - changelog = "https://github.com/RobertTLange/evosax/blob/${src.rev}/CHANGELOG.md"; + changelog = "https://github.com/RobertTLange/evosax/releases/tag/v.${version}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ GaetanLepage ]; }; From 24d89f3c1094932df5d5fb0d36a57330547ab7a3 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sat, 8 Feb 2025 22:22:51 +0100 Subject: [PATCH 15/18] nushellPlugins.formats: fix hash With the version update of nushell the version of this plugin also changed, warranting a new hash value. See https://github.com/NixOS/nixpkgs/pull/379627 --- pkgs/shells/nushell/plugins/formats.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/shells/nushell/plugins/formats.nix b/pkgs/shells/nushell/plugins/formats.nix index 6e1cb241bd90..f42180d27437 100644 --- a/pkgs/shells/nushell/plugins/formats.nix +++ b/pkgs/shells/nushell/plugins/formats.nix @@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec { pname = "nushell_plugin_formats"; inherit (nushell) version src; useFetchCargoVendor = true; - cargoHash = "sha256-88qcDlIukhpaUJ1vl1v8KMzj4XaYvATxlU+BOMZu6tk="; + cargoHash = "sha256-3cmNlCTawMUpr6kSyT/YZzC717FoXkF0uTeE/D8BSFM="; nativeBuildInputs = [ pkg-config ] ++ lib.optionals stdenv.cc.isClang [ rustPlatform.bindgenHook ]; buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ From 16a10d8c4a56c24bc16e1b6acb00586448610c23 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 8 Feb 2025 23:46:00 +0000 Subject: [PATCH 16/18] home-manager: 0-unstable-2025-01-27 -> 0-unstable-2025-02-08 --- pkgs/by-name/ho/home-manager/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ho/home-manager/package.nix b/pkgs/by-name/ho/home-manager/package.nix index 94160846668f..c85ab42e6701 100644 --- a/pkgs/by-name/ho/home-manager/package.nix +++ b/pkgs/by-name/ho/home-manager/package.nix @@ -19,14 +19,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "home-manager"; - version = "0-unstable-2025-01-27"; + version = "0-unstable-2025-02-08"; src = fetchFromGitHub { name = "home-manager-source"; owner = "nix-community"; repo = "home-manager"; - rev = "e1ae908bcc30af792b0bb0a52e53b03d2577255e"; - hash = "sha256-xiPARGKwocaMtv+U/rgi+h2g56CZZEmrcl7ldRaslq8="; + rev = "5af1b9a0f193ab6138b89a8e0af8763c21bbf491"; + hash = "sha256-p1QSLO8DJnANY+ppK7fjD8GqfCrEIDjso1CSRHsXL7Y="; }; nativeBuildInputs = [ From e222872f996f1a96e9c9f427fc641b0628c1b736 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 9 Feb 2025 01:22:55 +0000 Subject: [PATCH 17/18] nemo: 6.4.3 -> 6.4.4 --- pkgs/by-name/ne/nemo/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ne/nemo/package.nix b/pkgs/by-name/ne/nemo/package.nix index a17f28145e6c..839a8074ad5c 100644 --- a/pkgs/by-name/ne/nemo/package.nix +++ b/pkgs/by-name/ne/nemo/package.nix @@ -35,13 +35,13 @@ let in stdenv.mkDerivation rec { pname = "nemo"; - version = "6.4.3"; + version = "6.4.4"; src = fetchFromGitHub { owner = "linuxmint"; repo = pname; rev = version; - hash = "sha256-3FALXfW0PzWuirX7bxP8BFkIRyQzvg3xBQCdddSpmOg="; + hash = "sha256-6U7SeqgWKFb6l5u/fHqv+gzIh+MsJurKuWpHDNGRTsg="; }; patches = [ From 51ff8aea5296f3410815e7a4a479273f69a36334 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 8 Feb 2025 21:11:37 +0000 Subject: [PATCH 18/18] warp-terminal: 0.2025.01.22.08.02.stable_05 -> 0.2025.02.05.08.02.stable_03 --- pkgs/by-name/wa/warp-terminal/versions.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/wa/warp-terminal/versions.json b/pkgs/by-name/wa/warp-terminal/versions.json index bbad3c0b8d7d..eaba5a2558ed 100644 --- a/pkgs/by-name/wa/warp-terminal/versions.json +++ b/pkgs/by-name/wa/warp-terminal/versions.json @@ -1,14 +1,14 @@ { "darwin": { - "hash": "sha256-OxBFw18XHLbR7HoJHYxVQVwkO14HvJjpjrWt8nQ+FDQ=", - "version": "0.2025.01.22.08.02.stable_05" + "hash": "sha256-Z5NCTgOs49Pld1jRyUngbSgkxuH4LPROx06bf7H0cuE=", + "version": "0.2025.02.05.08.02.stable_03" }, "linux_x86_64": { - "hash": "sha256-5Ro7nLGzmAWQGG0e2797LvvBW5nkB+OHSiw5hXw75wM=", - "version": "0.2025.01.22.08.02.stable_05" + "hash": "sha256-xvckfFXl/ECP5YS/+NZv1UJFkVpIMQ7qnbzM3ffVrmw=", + "version": "0.2025.02.05.08.02.stable_03" }, "linux_aarch64": { - "hash": "sha256-C00/LQc4AmB+8UcNENrt1Qrk6nZmPwQtHHa7SEvQ+GY=", - "version": "0.2025.01.22.08.02.stable_05" + "hash": "sha256-x1U8EyZ+AoLdmF1LdXHEWz28+El/aBhD7JOG/XNaBJY=", + "version": "0.2025.02.05.08.02.stable_03" } }