From cb6e79b3a45f66765b6c788b061ea4f329932553 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 13 Feb 2026 12:30:10 +0000 Subject: [PATCH 01/13] monkeys-audio: 12.09 -> 12.13 --- pkgs/by-name/mo/monkeys-audio/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/mo/monkeys-audio/package.nix b/pkgs/by-name/mo/monkeys-audio/package.nix index 6b88b7914e26..00cdb721ca62 100644 --- a/pkgs/by-name/mo/monkeys-audio/package.nix +++ b/pkgs/by-name/mo/monkeys-audio/package.nix @@ -6,12 +6,12 @@ }: stdenv.mkDerivation (finalAttrs: { - version = "12.09"; + version = "12.13"; pname = "monkeys-audio"; src = fetchzip { url = "https://monkeysaudio.com/files/MAC_${builtins.concatStringsSep "" (lib.strings.splitString "." finalAttrs.version)}_SDK.zip"; - hash = "sha256-ACygfj+VV3cUvrnoU4cjvMFsTWnKOpzzfj+oMJbF5+I="; + hash = "sha256-S9YZ2MdblIm/Der6RS9ryGNijUZJOmQRARKG6x/Zu3s="; stripRoot = false; }; From 7baef5f326de71a0f825b2893296328982e41414 Mon Sep 17 00:00:00 2001 From: "Adam C. Stephens" Date: Fri, 13 Feb 2026 21:44:59 -0500 Subject: [PATCH 02/13] miniflux: 2.2.16 -> 2.2.17 Changelog: https://miniflux.app/releases/2.2.17.html --- pkgs/by-name/mi/miniflux/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/mi/miniflux/package.nix b/pkgs/by-name/mi/miniflux/package.nix index c4170aab833c..8b082e746322 100644 --- a/pkgs/by-name/mi/miniflux/package.nix +++ b/pkgs/by-name/mi/miniflux/package.nix @@ -9,16 +9,16 @@ buildGoModule (finalAttrs: { pname = "miniflux"; - version = "2.2.16"; + version = "2.2.17"; src = fetchFromGitHub { owner = "miniflux"; repo = "v2"; tag = finalAttrs.version; - hash = "sha256-mJ0FgoTm/SzS/T6xcLk232Xs3TgaDQahib4BeWzNfAk="; + hash = "sha256-Ru9yhI7EhLEdxmB3umOyub/SjmRY+tYxGsh2tEdZGCQ="; }; - vendorHash = "sha256-XrTmXAUABlTQaA3Z0vU0HQW5Q1e/Yg6yq690oZH8M+A="; + vendorHash = "sha256-BRgS58D8G6TGo7+jGjlmHrNUvVLgBE5Mm7/A/PekoI8="; nativeBuildInputs = [ installShellFiles ]; From 533498ea0a3814ad7efbf1f5a1f299a33866faaa Mon Sep 17 00:00:00 2001 From: "Adam C. Stephens" Date: Fri, 13 Feb 2026 21:51:03 -0500 Subject: [PATCH 03/13] nixosTests.miniflux: remove apparmor --- nixos/tests/miniflux.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/nixos/tests/miniflux.nix b/nixos/tests/miniflux.nix index 549dd4966439..3bdf4480e7e2 100644 --- a/nixos/tests/miniflux.nix +++ b/nixos/tests/miniflux.nix @@ -29,7 +29,6 @@ in default = { ... }: { - security.apparmor.enable = true; services.miniflux = { enable = true; inherit adminCredentialsFile; @@ -39,7 +38,6 @@ in withoutSudo = { ... }: { - security.apparmor.enable = true; services.miniflux = { enable = true; inherit adminCredentialsFile; @@ -50,7 +48,6 @@ in customized = { ... }: { - security.apparmor.enable = true; services.miniflux = { enable = true; config = { @@ -85,7 +82,6 @@ in externalDb = { ... }: { - security.apparmor.enable = true; services.miniflux = { enable = true; createDatabaseLocally = false; @@ -109,7 +105,6 @@ in machine.succeed( f"curl 'http://localhost:{port}/v1/me' -u '{user}' -H Content-Type:application/json | grep '\"is_admin\":true'" ) - machine.fail('journalctl -b --no-pager --grep "^audit: .*apparmor=\\"DENIED\\""') default.start() withoutSudo.start() From 785872b38ebd5b45056d9d9a6995d2c798a84ff0 Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Mon, 22 Dec 2025 22:08:08 +0100 Subject: [PATCH 04/13] python3Packages.graphemeu: init at 0.10.0 https://github.com/timendum/grapheme --- .../python-modules/alive-progress/default.nix | 4 +- .../python-modules/graphemeu/default.nix | 38 +++++++++++++++++++ .../python-modules/mastodon-py/default.nix | 4 +- pkgs/top-level/python-packages.nix | 2 +- 4 files changed, 43 insertions(+), 5 deletions(-) create mode 100644 pkgs/development/python-modules/graphemeu/default.nix diff --git a/pkgs/development/python-modules/alive-progress/default.nix b/pkgs/development/python-modules/alive-progress/default.nix index be8637bdd46d..4455ad39e5f5 100644 --- a/pkgs/development/python-modules/alive-progress/default.nix +++ b/pkgs/development/python-modules/alive-progress/default.nix @@ -4,7 +4,7 @@ buildPythonPackage, click, fetchFromGitHub, - grapheme, + graphemeu, pytestCheckHook, python, setuptools, @@ -31,7 +31,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ about-time - grapheme + graphemeu ]; pythonRelaxDeps = [ "about_time" ]; diff --git a/pkgs/development/python-modules/graphemeu/default.nix b/pkgs/development/python-modules/graphemeu/default.nix new file mode 100644 index 000000000000..060aae37b12e --- /dev/null +++ b/pkgs/development/python-modules/graphemeu/default.nix @@ -0,0 +1,38 @@ +{ + lib, + buildPythonPackage, + fetchFromGitHub, + hatchling, + pytestCheckHook, + pytest-cov-stub, +}: + +buildPythonPackage rec { + pname = "graphemeu"; + version = "0.10.0"; + pyproject = true; + + src = fetchFromGitHub { + owner = "timendum"; + repo = "grapheme"; + tag = "v${version}"; + hash = "sha256-qDspbeOmlfQ4VLPdKEuxNPYilKjwUcAJiEOMfx9fFlI="; + }; + + build-system = [ hatchling ]; + + nativeCheckInputs = [ + pytest-cov-stub + pytestCheckHook + ]; + + pythonImportsCheck = [ "grapheme" ]; + + meta = { + description = "Python package for grapheme aware string handling"; + homepage = "https://github.com/timendum/grapheme"; + changelog = "https://github.com/timendum/grapheme/blob/v${version}/CHANGELOG.md"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ anthonyroussel ]; + }; +} diff --git a/pkgs/development/python-modules/mastodon-py/default.nix b/pkgs/development/python-modules/mastodon-py/default.nix index fa7c29b4452c..6444f9e521f3 100644 --- a/pkgs/development/python-modules/mastodon-py/default.nix +++ b/pkgs/development/python-modules/mastodon-py/default.nix @@ -5,7 +5,7 @@ blurhash, cryptography, decorator, - grapheme, + graphemeu, http-ece, python-dateutil, python-magic, @@ -42,7 +42,7 @@ buildPythonPackage rec { optional-dependencies = { blurhash = [ blurhash ]; - grapheme = [ grapheme ]; + grapheme = [ graphemeu ]; webpush = [ http-ece cryptography diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ad438a98e6fc..0959537c9935 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6550,7 +6550,7 @@ self: super: with self; { graph-tool = callPackage ../development/python-modules/graph-tool { inherit (pkgs) cgal graphviz; }; - grapheme = callPackage ../development/python-modules/grapheme { }; + graphemeu = callPackage ../development/python-modules/graphemeu { }; graphene = callPackage ../development/python-modules/graphene { }; From dc9694db3e607828dbd0fe8e2d99eef3101e7fba Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Mon, 22 Dec 2025 22:09:19 +0100 Subject: [PATCH 05/13] python3Packages.grapheme: remove Replaced by `python3Packages.graphemeu` as grapheme is unmaintained upstream. --- .../python-modules/grapheme/default.nix | 29 ------------------- pkgs/top-level/python-aliases.nix | 1 + 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 pkgs/development/python-modules/grapheme/default.nix diff --git a/pkgs/development/python-modules/grapheme/default.nix b/pkgs/development/python-modules/grapheme/default.nix deleted file mode 100644 index db031939ce2e..000000000000 --- a/pkgs/development/python-modules/grapheme/default.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, -}: - -buildPythonPackage rec { - pname = "grapheme"; - version = "0.6.0"; - format = "setuptools"; - - src = fetchPypi { - inherit pname version; - sha256 = "1jiwc3w05c8kh22s3zk7a8km8na3plqc5zimb2qcyxxy3grbkhj4"; - }; - - # Tests are no available on PyPI - # https://github.com/alvinlindstam/grapheme/issues/18 - doCheck = false; - - pythonImportsCheck = [ "grapheme" ]; - - meta = { - description = "Python package for grapheme aware string handling"; - homepage = "https://github.com/alvinlindstam/grapheme"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ creator54 ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index ce29d1a49961..75982d6ec036 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -203,6 +203,7 @@ mapAliases { gplaycli = throw "'gplaycli' has been removed as it was broken and lacked maintenance"; # Added 2025-11-09 gpy = throw "'gpy' has been removed as it is based on 'paramz', which was removed"; # added 2025-11-10 gradient_statsd = throw "'gradient_statsd' has been renamed to/replaced by 'gradient-statsd'"; # Converted to throw 2025-10-29 + grapheme = throw "'grapheme' has been removed as it is unmaintained upstream. Consider using 'graphemeu' instead."; # Converted to throw 2025-12-22 grappelli_safe = throw "'grappelli_safe' has been renamed to/replaced by 'grappelli-safe'"; # Converted to throw 2025-10-29 groestlcoin_hash = throw "'groestlcoin_hash' has been renamed to/replaced by 'groestlcoin-hash'"; # Converted to throw 2025-10-29 grpc_google_iam_v1 = throw "'grpc_google_iam_v1' has been renamed to/replaced by 'grpc-google-iam-v1'"; # Converted to throw 2025-10-29 From fb9b77ca61e5dfffeb62403a01784fd9c25700e1 Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Mon, 22 Dec 2025 22:19:11 +0100 Subject: [PATCH 06/13] python3Packages.alive-progress: 3.1.5 -> 3.3.0 Diff: https://github.com/rsalmei/alive-progress/compare/v3.1.5...v3.3.0 Changelog: https://github.com/rsalmei/alive-progress/blob/v3.3.0/CHANGELOG.md --- .../python-modules/alive-progress/default.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/alive-progress/default.nix b/pkgs/development/python-modules/alive-progress/default.nix index 4455ad39e5f5..5138b45ac842 100644 --- a/pkgs/development/python-modules/alive-progress/default.nix +++ b/pkgs/development/python-modules/alive-progress/default.nix @@ -12,14 +12,19 @@ buildPythonPackage rec { pname = "alive-progress"; - version = "3.1.5"; + version = "3.3.0"; pyproject = true; src = fetchFromGitHub { owner = "rsalmei"; repo = "alive-progress"; tag = "v${version}"; - hash = "sha256-yJhl0QrMHET9ISDc/D5AEQ7dTJkmcV2SWqy/xmG18uY="; + hash = "sha256-2ymLdmaV7mO6tp5bjmbL/67xLP7Srfpt5m8YhOHGmWQ="; + # Avoid downloading heavy images in img directory + sparseCheckout = [ + "alive_progress" + "tests" + ]; }; postInstall = '' @@ -34,7 +39,10 @@ buildPythonPackage rec { graphemeu ]; - pythonRelaxDeps = [ "about_time" ]; + pythonRelaxDeps = [ + "about_time" + "graphemeu" + ]; nativeCheckInputs = [ click From 462faa51af7eb904a441134b09d70adb147b5c7a Mon Sep 17 00:00:00 2001 From: codgician <15964984+codgician@users.noreply.github.com> Date: Sat, 14 Feb 2026 22:47:08 +0800 Subject: [PATCH 07/13] open-webui: 0.7.2-> 0.8.1 Diff: https://github.com/open-webui/open-webui/compare/v0.7.2...v0.8.1 Changelog: https://github.com/open-webui/open-webui/blob/v0.8.1/CHANGELOG.md --- pkgs/by-name/op/open-webui/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/op/open-webui/package.nix b/pkgs/by-name/op/open-webui/package.nix index 9860c99c89a3..d7737bc0d174 100644 --- a/pkgs/by-name/op/open-webui/package.nix +++ b/pkgs/by-name/op/open-webui/package.nix @@ -9,13 +9,13 @@ }: let pname = "open-webui"; - version = "0.7.2"; + version = "0.8.1"; src = fetchFromGitHub { owner = "open-webui"; repo = "open-webui"; tag = "v${version}"; - hash = "sha256-BS/EB64y/ytHqfKdAmTV0ahT6HQPo96cs+O1CYwd8Rs="; + hash = "sha256-eUkP5fLXzcoVz8HPnPr0qQOXN2iTYS/ZJ73c9PgjCiU="; }; frontend = buildNpmPackage rec { @@ -32,7 +32,7 @@ let url = "https://github.com/pyodide/pyodide/releases/download/${pyodideVersion}/pyodide-${pyodideVersion}.tar.bz2"; }; - npmDepsHash = "sha256-OH0TuHN324Ef7ZX2JpWVi5q0ycgf1E+UXJj2b3ubMd4="; + npmDepsHash = "sha256-FifLj2Aj0cfUmGHm39N7HIpAUmTBgGH2cjwTH+ChlgA="; # See https://github.com/open-webui/open-webui/issues/15880 npmFlags = [ @@ -106,6 +106,7 @@ python3Packages.buildPythonApplication rec { beautifulsoup4 black boto3 + brotli chardet chromadb cryptography @@ -174,6 +175,7 @@ python3Packages.buildPythonApplication rec { python-pptx python-socketio pytube + pytz pyxlsb rank-bm25 rapidocr-onnxruntime From 173feeae2e16bde0c40c709eea2e79f85210a829 Mon Sep 17 00:00:00 2001 From: "Adam C. Stephens" Date: Sat, 14 Feb 2026 09:52:21 -0500 Subject: [PATCH 08/13] walker: 2.14.1 -> 2.14.2 Changelog: https://github.com/abenz1267/walker/releases/tag/v2.14.2 --- pkgs/by-name/wa/walker/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/wa/walker/package.nix b/pkgs/by-name/wa/walker/package.nix index b7e40a8fba55..70e52b8f14cd 100644 --- a/pkgs/by-name/wa/walker/package.nix +++ b/pkgs/by-name/wa/walker/package.nix @@ -20,16 +20,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "walker"; - version = "2.14.1"; + version = "2.14.2"; src = fetchFromGitHub { owner = "abenz1267"; repo = "walker"; rev = "v${finalAttrs.version}"; - hash = "sha256-ccwJ1ADGNFd5LDF2JWdfP7+f1Hs2EvJ+2o6sUOdYi7w="; + hash = "sha256-y1jBFFO0u+V21y3YldHZozrDwVJVrdC+o3c4M8/rasU="; }; - cargoHash = "sha256-2amur4gkjtYV+CyArBCbMVy9p+2MLl2afQ/diR/4GDo="; + cargoHash = "sha256-7QQdHbkwjVcZCd2FaBxLL5BUSoWjTsH1GuDhzh7DuRY="; nativeBuildInputs = [ gobject-introspection From 6fd9ff7442f38b5185d0b3f00cf2a3f0649bb41c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Aug 2025 12:58:51 +0200 Subject: [PATCH 09/13] python313Packages.azure-storage-file-datalake: 12.17.0 -> 12.21.0 Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-file-datalake_12.21.0/sdk/storage/azure-storage-file-datalake/CHANGELOG.md --- .../azure-storage-file-datalake/default.nix | 25 ++++++++----------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/pkgs/development/python-modules/azure-storage-file-datalake/default.nix b/pkgs/development/python-modules/azure-storage-file-datalake/default.nix index 8ddc795d9180..97b1688542c8 100644 --- a/pkgs/development/python-modules/azure-storage-file-datalake/default.nix +++ b/pkgs/development/python-modules/azure-storage-file-datalake/default.nix @@ -1,28 +1,25 @@ { lib, - buildPythonPackage, - fetchFromGitHub, - setuptools, azure-core, azure-storage-blob, + buildPythonPackage, + fetchPypi, isodate, + setuptools, typing-extensions, }: buildPythonPackage rec { pname = "azure-storage-file-datalake"; - version = "12.17.0"; + version = "12.21.0"; pyproject = true; - src = fetchFromGitHub { - owner = "Azure"; - repo = "azure-sdk-for-python"; - tag = "azure-storage-file-datalake_${version}"; - hash = "sha256-FT51a7yuSMLJSnMFK9N09Rc8p/uaoYCcj9WliSvY6UA="; + src = fetchPypi { + pname = "azure_storage_file_datalake"; + inherit version; + hash = "sha256-tJzSFW6jJfb0So9mdNc8WUnprEjWSA+vkBspOYVfzdM="; }; - sourceRoot = "${src.name}/sdk/storage/azure-storage-file-datalake"; - build-system = [ setuptools ]; dependencies = [ @@ -38,15 +35,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.storage.filedatalake" ]; - # require devtools_testutils which is a internal package for azure-sdk + # Tests are only available in mono repo doCheck = false; - # multiple packages in a singel repo, and the updater picks the wrong tag - passthru.skipBulkUpdate = true; - meta = { description = "Microsoft Azure File DataLake Storage Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-file-datalake"; + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-file-datalake_${version}/sdk/storage/azure-storage-file-datalake/CHANGELOG.md"; license = lib.licenses.mit; maintainers = [ ]; }; From 2840c09c1cdc744e5dbac591a2bc8940a4cb6731 Mon Sep 17 00:00:00 2001 From: networkException Date: Sat, 14 Feb 2026 17:20:12 +0100 Subject: [PATCH 10/13] ungoogled-chromium: 145.0.7632.45-1 -> 145.0.7632.75-1 https://chromereleases.googleblog.com/2026/02/stable-channel-update-for-desktop_12.html Contains a hotfix for https://issues.chromium.org/issues/483672730 https://chromereleases.googleblog.com/2026/02/stable-channel-update-for-desktop_13.html This update includes 1 security fix. Google is aware that an exploit for CVE-2026-2441 exists in the wild. CVEs: CVE-2026-2441 --- .../networking/browsers/chromium/info.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/info.json b/pkgs/applications/networking/browsers/chromium/info.json index fb7ca82f7736..5ab66bd9ab4c 100644 --- a/pkgs/applications/networking/browsers/chromium/info.json +++ b/pkgs/applications/networking/browsers/chromium/info.json @@ -823,7 +823,7 @@ } }, "ungoogled-chromium": { - "version": "145.0.7632.45", + "version": "145.0.7632.75", "deps": { "depot_tools": { "rev": "fb0b652edba70f5c4ac867f3beca9e535f905b4c", @@ -835,16 +835,16 @@ "hash": "sha256-SoXVnpCuNee80N4YdsTEHQd3jZNoHOwKVP6O8a67Ym0=" }, "ungoogled-patches": { - "rev": "145.0.7632.45-1", - "hash": "sha256-U4ZUCwaokeMW3D+7xmilZu2OJiuLdwgZqyTdb+XabKs=" + "rev": "145.0.7632.75-1", + "hash": "sha256-DlHNbochbPLRdD3wn1lW9S7x4OLzI+1cAMqjeTYNlA4=" }, "npmHash": "sha256-13sgV/5BD7QvDLBAEmoLN5vongw+S5v5znvZcctxhWc=" }, "DEPS": { "src": { "url": "https://chromium.googlesource.com/chromium/src.git", - "rev": "7ad2aeb6be38786b2bf653d667d3df01e68d3c40", - "hash": "sha256-l/gxUE0itdUQXLRAR2cp72hu21dgecZvWLC5Br0SPuo=", + "rev": "ab0b95409566de9da1ed76e690022f774aec7793", + "hash": "sha256-VvHDqNTXOFeV+QY3K2O9fTFxDzrkz6qKl9hP8nVDMAw=", "recompress": true }, "src/third_party/clang-format/script": { From a105086d5f95d26341d60e51d3acb6938bfd00dc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 14 Feb 2026 16:34:44 +0000 Subject: [PATCH 11/13] slidev-cli: 52.11.5 -> 52.12.0 --- pkgs/by-name/sl/slidev-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sl/slidev-cli/package.nix b/pkgs/by-name/sl/slidev-cli/package.nix index 498b0cadd8e2..5855e4543a70 100644 --- a/pkgs/by-name/sl/slidev-cli/package.nix +++ b/pkgs/by-name/sl/slidev-cli/package.nix @@ -10,13 +10,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "slidev-cli"; - version = "52.11.5"; + version = "52.12.0"; src = fetchFromGitHub { owner = "slidevjs"; repo = "slidev"; tag = "v${finalAttrs.version}"; - hash = "sha256-m8h5bFanJsi85B5DJuAK+YbY+GY/DDvLqpnB/U3XtG4="; + hash = "sha256-VYeDQ1Ieam0vJB3P1RvVbatAsZ0HtzX3ZP4Ws9aXO5Y="; }; pnpmWorkspaces = [ "@slidev/cli..." ]; From 1f45aafbae0e2b7d23745e7a15466fb6f97e17c0 Mon Sep 17 00:00:00 2001 From: Diego Date: Wed, 11 Feb 2026 15:23:21 +0100 Subject: [PATCH 12/13] ldmud: fix build, remove Python310 --- pkgs/by-name/ld/ldmud/package.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ld/ldmud/package.nix b/pkgs/by-name/ld/ldmud/package.nix index 18c778ff1340..e93f77462a5d 100644 --- a/pkgs/by-name/ld/ldmud/package.nix +++ b/pkgs/by-name/ld/ldmud/package.nix @@ -23,7 +23,7 @@ tlsSupport ? false, openssl, pythonSupport ? false, - python310, + python3, }: stdenv.mkDerivation (finalAttrs: { @@ -61,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optional postgresSupport libpq ++ lib.optional sqliteSupport sqlite ++ lib.optional tlsSupport openssl - ++ lib.optional pythonSupport python310 + ++ lib.optional pythonSupport python3 ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ]; # To support systems without autoconf LD puts its configure.ac in a non-default @@ -94,6 +94,10 @@ stdenv.mkDerivation (finalAttrs: { export LDFLAGS="$LDFLAGS -L${libiconv}/lib -liconv" ''; + env.NIX_CFLAGS_COMPILE = + # Required for legacy C code in source + "-std=gnu99"; + installTargets = [ "install-driver" "install-utils" From ffb9c77a549ad0db92daaff580328fc2c12d2da2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 14 Feb 2026 17:46:24 +0000 Subject: [PATCH 13/13] home-assistant-custom-components.polaris-mqtt: 1.1.0 -> 1.1.1 --- .../home-assistant/custom-components/polaris-mqtt/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/custom-components/polaris-mqtt/package.nix b/pkgs/servers/home-assistant/custom-components/polaris-mqtt/package.nix index 6d47953cce60..cc051b9c592b 100644 --- a/pkgs/servers/home-assistant/custom-components/polaris-mqtt/package.nix +++ b/pkgs/servers/home-assistant/custom-components/polaris-mqtt/package.nix @@ -7,13 +7,13 @@ buildHomeAssistantComponent rec { owner = "samoswall"; domain = "polaris"; - version = "1.1.0"; + version = "1.1.1"; src = fetchFromGitHub { owner = "samoswall"; repo = "polaris-mqtt"; tag = "v${version}"; - hash = "sha256-nT7sLN61XOakYL2kZXQc6qrEAIaf0jEfm4wxZ0viK8c="; + hash = "sha256-/HMR+BZuwAoqFfELkjhT3k5NKMc2ahE/I3DTR1lQ5L0="; }; meta = {