From a3d19bfcb025e41bcf7e7efd0ae366c14bb22f83 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 10 Nov 2025 07:31:29 +0000 Subject: [PATCH 01/37] kubectl-explore: 0.14.0 -> 0.14.1 --- pkgs/by-name/ku/kubectl-explore/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ku/kubectl-explore/package.nix b/pkgs/by-name/ku/kubectl-explore/package.nix index 9f980706dcd5..5008e98ae61a 100644 --- a/pkgs/by-name/ku/kubectl-explore/package.nix +++ b/pkgs/by-name/ku/kubectl-explore/package.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "kubectl-explore"; - version = "0.14.0"; + version = "0.14.1"; src = fetchFromGitHub { owner = "keisku"; repo = "kubectl-explore"; rev = "v${version}"; - hash = "sha256-URpoIK+5MgBvCtXyZrqwU7cVubCICkAsmfS9w/8Jgks="; + hash = "sha256-sWVNDXbGaqVEWkHnZbHy9W4lFH8N/aULIzBJLGSXCjs="; }; vendorHash = "sha256-TgC8IgB9E83FBP9qrgcqPesnOyOTA5u3AsXn32kaMnU="; From bc311b4c29240929ef2051772ab00cf1e08f04ed Mon Sep 17 00:00:00 2001 From: Heitor Augusto <44377258+HeitorAugustoLN@users.noreply.github.com> Date: Mon, 24 Nov 2025 15:26:58 -0300 Subject: [PATCH 02/37] ghatm: init at 0.3.7 --- pkgs/by-name/gh/ghatm/package.nix | 54 +++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 pkgs/by-name/gh/ghatm/package.nix diff --git a/pkgs/by-name/gh/ghatm/package.nix b/pkgs/by-name/gh/ghatm/package.nix new file mode 100644 index 000000000000..ef5c780c0fab --- /dev/null +++ b/pkgs/by-name/gh/ghatm/package.nix @@ -0,0 +1,54 @@ +{ + lib, + stdenv, + buildGoModule, + fetchFromGitHub, + installShellFiles, + versionCheckHook, + nix-update-script, +}: +buildGoModule (finalAttrs: { + pname = "ghatm"; + version = "0.3.7"; + + src = fetchFromGitHub { + owner = "suzuki-shunsuke"; + repo = "ghatm"; + tag = "v${finalAttrs.version}"; + hash = "sha256-t8DjUHsbU1ovBaB2bINEG7gpm1MFQCnoanunfrrTKWU="; + }; + + vendorHash = "sha256-M0FOwsyXgNr05uofTZN6XcoWU/xaGVPE4ncyzddTKEI="; + + ldflags = [ + "-s" + "-w" + "-X main.version=${finalAttrs.version}" + "-X main.commit=v${finalAttrs.version}" + ]; + + nativeBuildInputs = [ installShellFiles ]; + + postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' + installShellCompletion --cmd ghatm \ + --bash <($out/bin/ghatm completion bash) \ + --zsh <($out/bin/ghatm completion zsh) \ + --fish <($out/bin/ghatm completion fish) + ''; + + nativeInstallCheckInputs = [ versionCheckHook ]; + doInstallCheck = true; + versionCheckProgramArg = "version"; + + passthru.updateScript = nix-update-script { }; + + meta = { + changelog = "https://github.com/suzuki-shunsuke/ghatm/releases/tag/v${finalAttrs.version}"; + description = "Set timeout-minutes to all GitHub Actions jobs"; + homepage = "https://github.com/suzuki-shunsuke/ghatm"; + license = lib.licenses.mit; + mainProgram = "ghatm"; + maintainers = with lib.maintainers; [ HeitorAugustoLN ]; + platforms = lib.platforms.all; + }; +}) From d6d8fb8573cd3e5e8d42378fe9de21f3a3293dd7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 10 Dec 2025 06:32:23 +0000 Subject: [PATCH 03/37] atlantis: 0.37.1 -> 0.38.0 --- pkgs/by-name/at/atlantis/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/at/atlantis/package.nix b/pkgs/by-name/at/atlantis/package.nix index 639001e31b3c..d236fba2c43d 100644 --- a/pkgs/by-name/at/atlantis/package.nix +++ b/pkgs/by-name/at/atlantis/package.nix @@ -7,13 +7,13 @@ buildGoModule (finalAttrs: { pname = "atlantis"; - version = "0.37.1"; + version = "0.38.0"; src = fetchFromGitHub { owner = "runatlantis"; repo = "atlantis"; tag = "v${finalAttrs.version}"; - hash = "sha256-Dv9vf4Ye5LEwJ19RW7wJUgAAPLDtRIAoZt0xTsxODYg="; + hash = "sha256-5V+2MgVcxq3DtMkBeA64mUaSL3zYG/+c1SbChaRbQ98="; }; ldflags = [ @@ -21,7 +21,7 @@ buildGoModule (finalAttrs: { "-X=main.date=1970-01-01T00:00:00Z" ]; - vendorHash = "sha256-ZJF+Q5SFn92mUMm7HhK5WyRYTvJEYThnSbv1FPeI4hk="; + vendorHash = "sha256-bdZn2cNSpmV1nngQWBFkf2G0uxlJF1UX50oMZYU7+i0="; subPackages = [ "." ]; From 24727cf26ab0f40a9044f2cf5b68da112a28b0bd Mon Sep 17 00:00:00 2001 From: Hythera <87016780+Hythera@users.noreply.github.com> Date: Tue, 16 Dec 2025 08:16:20 +0100 Subject: [PATCH 04/37] goverlay: 1.6.2 -> 1.6.4 --- pkgs/by-name/go/goverlay/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/go/goverlay/package.nix b/pkgs/by-name/go/goverlay/package.nix index 9b8ce6dc2680..8c01796a05d2 100644 --- a/pkgs/by-name/go/goverlay/package.nix +++ b/pkgs/by-name/go/goverlay/package.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "goverlay"; - version = "1.6.2"; + version = "1.6.4"; src = fetchFromGitHub { owner = "benjamimgois"; repo = "goverlay"; tag = finalAttrs.version; - hash = "sha256-x9/M2yhnPaXIGrQqZRvhgB++TyxHD3sFkK+6H5v+jqE="; + hash = "sha256-e1eqCoIyfn8fn0m5e8VWc0qzSz5wqSGEnsfAAgmYoxE="; }; outputs = [ From 309639c3f636788a19fb00c4291d0721124c4679 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 16 Dec 2025 13:50:35 +0000 Subject: [PATCH 05/37] gdlv: 1.12.0 -> 1.15.0 --- pkgs/by-name/gd/gdlv/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gd/gdlv/package.nix b/pkgs/by-name/gd/gdlv/package.nix index 47b52c5f5f6c..aaa70d65a1e5 100644 --- a/pkgs/by-name/gd/gdlv/package.nix +++ b/pkgs/by-name/gd/gdlv/package.nix @@ -5,13 +5,13 @@ }: buildGoModule rec { pname = "gdlv"; - version = "1.12.0"; + version = "1.15.0"; src = fetchFromGitHub { owner = "aarzilli"; repo = "gdlv"; rev = "v${version}"; - hash = "sha256-6NU7bhURdXM4EjVnsXVf9XFOUgHyVEI0kr15q9OnUTQ="; + hash = "sha256-YHv/PfkQh0detM3p62oDWhEG8PWCupaBhwbxz8rHRdI="; }; vendorHash = null; From 7c8d284485fa6f7a0012378dae76dec5a9655531 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 16 Dec 2025 14:46:47 +0000 Subject: [PATCH 06/37] biome: 2.3.8 -> 2.3.9 --- pkgs/by-name/bi/biome/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/bi/biome/package.nix b/pkgs/by-name/bi/biome/package.nix index 0f0dd4f800bf..b6e450ca832a 100644 --- a/pkgs/by-name/bi/biome/package.nix +++ b/pkgs/by-name/bi/biome/package.nix @@ -10,16 +10,16 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "biome"; - version = "2.3.8"; + version = "2.3.9"; src = fetchFromGitHub { owner = "biomejs"; repo = "biome"; rev = "@biomejs/biome@${finalAttrs.version}"; - hash = "sha256-pNWwFrI0EWY8HB8aCZdZ/Y+LJl3MS4vl0HhpYFEGUbY="; + hash = "sha256-2eW60IoEeh3pnnsnZLdS6paw0f6vf+2LBM95WyOKDwc="; }; - cargoHash = "sha256-gafj1Gm3YUVpLgZXN5lMRvEFo6GEHbmWbNDm+0OTi8w="; + cargoHash = "sha256-WSl/OObiOXx4MJcnGQtvGVfM2i5k8lLIQoPy9s+GT/U="; nativeBuildInputs = [ pkg-config ]; From db88301a81dd383664133dcc5fe49b4e7a62bb38 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 16 Dec 2025 21:41:42 +0100 Subject: [PATCH 07/37] python315: 3.15.0a2 -> 3.15.0a3 https://docs.python.org/3.15/whatsnew/changelog.html#python-3-15-0-alpha-3 --- pkgs/development/interpreters/python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index 2bc80e5df118..d1ac795c472f 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -104,9 +104,9 @@ major = "3"; minor = "15"; patch = "0"; - suffix = "a2"; + suffix = "a3"; }; - hash = "sha256-2KCi9Kfz1wkM8ZXoGBTv6V9wVUlVVX9A4UnYaUpmJ1E="; + hash = "sha256-arAs2sJFBXeYd7sdkYlDLWfpDd8qm4t7Nz6tVKwHtgc="; inherit passthruFun; }; From d6615d3cdbc0d7470c0683b975413e3aedee837e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 17 Dec 2025 05:12:59 +0000 Subject: [PATCH 08/37] cherry-studio: 1.7.2 -> 1.7.4 --- pkgs/by-name/ch/cherry-studio/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ch/cherry-studio/package.nix b/pkgs/by-name/ch/cherry-studio/package.nix index f757bf2f5188..238f6cbc4283 100644 --- a/pkgs/by-name/ch/cherry-studio/package.nix +++ b/pkgs/by-name/ch/cherry-studio/package.nix @@ -19,13 +19,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "cherry-studio"; - version = "1.7.2"; + version = "1.7.4"; src = fetchFromGitHub { owner = "CherryHQ"; repo = "cherry-studio"; tag = "v${finalAttrs.version}"; - hash = "sha256-Y60SW97584LTZXD4tJbr3Sv/6etKtTjr+3xfYBvKDWY="; + hash = "sha256-qoPDQks1OkiWrl6f0zG+BQf7r/DzbyoadlRIsqMuzbo="; }; postPatch = '' @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { offlineCache = yarn-berry.fetchYarnBerryDeps { inherit (finalAttrs) src missingHashes; - hash = "sha256-KggPuCeezgXhfMctR6NndTwvsNq9StQNAXVEOWLMt50="; + hash = "sha256-86+bVj77Uo2IaDcKM3igd2rrNEQxpUYfwKDOwLnqceg="; }; nativeBuildInputs = [ From 7c39ebb255c8171dfcf616302fd3ed425b62e3d0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 17 Dec 2025 13:21:34 +0000 Subject: [PATCH 09/37] libretro.ppsspp: 0-unstable-2025-12-10 -> 0-unstable-2025-12-16 --- pkgs/applications/emulators/libretro/cores/ppsspp.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/ppsspp.nix b/pkgs/applications/emulators/libretro/cores/ppsspp.nix index b4af820079e0..b2f9a6c8783d 100644 --- a/pkgs/applications/emulators/libretro/cores/ppsspp.nix +++ b/pkgs/applications/emulators/libretro/cores/ppsspp.nix @@ -13,13 +13,13 @@ }: mkLibretroCore { core = "ppsspp"; - version = "0-unstable-2025-12-10"; + version = "0-unstable-2025-12-16"; src = fetchFromGitHub { owner = "hrydgard"; repo = "ppsspp"; - rev = "5a67eb5cc5e3b3248de513e95741ca47b87bedb4"; - hash = "sha256-FH7Wp8CBKt/5G/sXZ7hSbCFRMopBoID0ho/XtS13400="; + rev = "dd112491db181114723fed270a1c45ffc1355539"; + hash = "sha256-NMUpmJySZPcyo/niIohxbXG5MfkyKCdeEF9O8ZPKe8g="; fetchSubmodules = true; }; From b67e9df1f0c15a54d2de2ddf4f01a812569cc649 Mon Sep 17 00:00:00 2001 From: Thierry Delafontaine Date: Wed, 17 Dec 2025 19:44:55 +0000 Subject: [PATCH 10/37] bun: 1.3.4 -> 1.3.5 --- pkgs/by-name/bu/bun/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/bu/bun/package.nix b/pkgs/by-name/bu/bun/package.nix index 924e309a48c7..9c4b3b9ff9bc 100644 --- a/pkgs/by-name/bu/bun/package.nix +++ b/pkgs/by-name/bu/bun/package.nix @@ -17,7 +17,7 @@ }: stdenvNoCC.mkDerivation rec { - version = "1.3.4"; + version = "1.3.5"; pname = "bun"; src = @@ -87,19 +87,19 @@ stdenvNoCC.mkDerivation rec { sources = { "aarch64-darwin" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip"; - hash = "sha256-iAN3TkxsVcilF0ZMUI8Cgh5ttX+Uyhu1zCo59NIyalE="; + hash = "sha256-2xdYikrqiASFaCXUvq0/BeHzcnbKYG8342m09y810/s="; }; "aarch64-linux" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip"; - hash = "sha256-xG6EH+2FNHUhkVsbOQTW0XXY4v2RXhjgHBETGCGRFaQ="; + hash = "sha256-7QEAD4W9l3hSKK0oRdySoYYLgFSFaCbXMXaQrI+O50s="; }; "x86_64-darwin" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64-baseline.zip"; - hash = "sha256-D3lW1Rr+1BTIJaOk+OzJvGE/9k5IkBZ3XoUU21E3s18="; + hash = "sha256-NLmla4UQWNr6G8nWEjPyw4OqmWiJu6MLMYD1zMLP8bI="; }; "x86_64-linux" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip"; - hash = "sha256-M8aZYEno036LgVlZsUsF5bb0lhITUr8RuufQRxk8KL8="; + hash = "sha256-cFHYapJK7+o+C5YhO1/Y95wHk/nK5lNCM+Yn5cPbRmk="; }; }; updateScript = writeShellScript "update-bun" '' From 79269111ec1ca22ea23da70d4b33695ecba9f76a Mon Sep 17 00:00:00 2001 From: Shelvacu Date: Wed, 17 Dec 2025 16:12:41 -0800 Subject: [PATCH 11/37] pkgsStatic.libblake3: disable oneTBB feature oneTBB does not support static builds --- pkgs/by-name/li/libblake3/package.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/li/libblake3/package.nix b/pkgs/by-name/li/libblake3/package.nix index e9aa97718628..a55c166df6a0 100644 --- a/pkgs/by-name/li/libblake3/package.nix +++ b/pkgs/by-name/li/libblake3/package.nix @@ -6,7 +6,8 @@ fetchpatch, onetbb, - useTBB ? true, + # TBB doesn't support being built static + useTBB ? !stdenv.hostPlatform.isStatic, }: stdenv.mkDerivation (finalAttrs: { From 71dc2e7df310d90a3c738e423fdfc13b710a8d67 Mon Sep 17 00:00:00 2001 From: Shelvacu Date: Wed, 17 Dec 2025 16:17:42 -0800 Subject: [PATCH 12/37] pkgsStatic.onetbb: mark unsupported --- pkgs/by-name/on/onetbb/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/on/onetbb/package.nix b/pkgs/by-name/on/onetbb/package.nix index f820dc7a80ac..927489863a7d 100644 --- a/pkgs/by-name/on/onetbb/package.nix +++ b/pkgs/by-name/on/onetbb/package.nix @@ -100,6 +100,10 @@ stdenv.mkDerivation (finalAttrs: { performance of multi-core processors. ''; platforms = lib.platforms.all; + # oneTBB does not support static builds + # "You are building oneTBB as a static library. This is highly discouraged and such configuration is not supported. Consider building a dynamic library to avoid unforeseen issues." + # https://github.com/uxlfoundation/oneTBB/blob/db7891a246cafbb90719c3dee497d96889ca692b/CMakeLists.txt#L160 + badPlatforms = [ lib.systems.inspect.platformPatterns.isStatic ]; maintainers = with lib.maintainers; [ silvanshade thoughtpolice From 412af5f4735a9baf6bc549bc2f9bb0ea712c1c8d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 01:25:05 +0000 Subject: [PATCH 13/37] ispc: 1.28.2 -> 1.29.0 --- pkgs/by-name/is/ispc/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/is/ispc/package.nix b/pkgs/by-name/is/ispc/package.nix index d9de7eed40a6..c7312abea807 100644 --- a/pkgs/by-name/is/ispc/package.nix +++ b/pkgs/by-name/is/ispc/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "ispc"; - version = "1.28.2"; + version = "1.29.0"; src = fetchFromGitHub { owner = "ispc"; repo = "ispc"; tag = "v${finalAttrs.version}"; - hash = "sha256-dmpOvJ5dVhjGKpJ9xw/lXbvk2FgLv2vjzmUExUfLRmo="; + hash = "sha256-VAg1rCMXGyCs497qB+gCHjcjwvqmFT6QMxdXgOzD1+E="; }; nativeBuildInputs = [ From 0207a539a92505c0dfab8867c6381df8ee0dfb4b Mon Sep 17 00:00:00 2001 From: flakeuser <2792697+Jdogzz@users.noreply.github.com> Date: Wed, 17 Dec 2025 13:39:37 -0800 Subject: [PATCH 14/37] unoconv: remove compatibility for very old LO OO --- ...mpatibility-fixes-for-very-old-LO-OO.patch | 48 +++++++++++++++++++ pkgs/by-name/un/unoconv/package.nix | 2 + 2 files changed, 50 insertions(+) create mode 100644 pkgs/by-name/un/unoconv/0001-Remove-compatibility-fixes-for-very-old-LO-OO.patch diff --git a/pkgs/by-name/un/unoconv/0001-Remove-compatibility-fixes-for-very-old-LO-OO.patch b/pkgs/by-name/un/unoconv/0001-Remove-compatibility-fixes-for-very-old-LO-OO.patch new file mode 100644 index 000000000000..25eaf0ab5f93 --- /dev/null +++ b/pkgs/by-name/un/unoconv/0001-Remove-compatibility-fixes-for-very-old-LO-OO.patch @@ -0,0 +1,48 @@ +From 363d17cec4d097a8160926467db33978da4001cf Mon Sep 17 00:00:00 2001 +From: flakeuser <2792697+Jdogzz@users.noreply.github.com> +Date: Wed, 17 Dec 2025 17:44:21 -0800 +Subject: [PATCH] Remove compatibility fixes for very old LO/OO. + +--- + unoconv | 11 ++--------- + 1 file changed, 2 insertions(+), 9 deletions(-) + +diff --git a/unoconv b/unoconv +index 6aa1bfa..ae2159f 100755 +--- a/unoconv ++++ b/unoconv +@@ -16,7 +16,6 @@ + + from __future__ import print_function + +-from distutils.version import LooseVersion + import getopt + import glob + import os +@@ -857,10 +856,7 @@ class Convertor: + info(3, "Launching our own listener using %s." % office.binary) + try: + product = self.svcmgr.createInstance("com.sun.star.configuration.ConfigurationProvider").createInstanceWithArguments("com.sun.star.configuration.ConfigurationAccess", UnoProps(nodepath="/org.openoffice.Setup/Product")) +- if product.ooName not in ('LibreOffice', 'LOdev') or LooseVersion(product.ooSetupVersion) <= LooseVersion('3.3'): +- args = [office.binary, "-headless", "-invisible", "-nocrashreport", "-nodefault", "-nofirststartwizard", "-nologo", "-norestore", "-accept=%s" % op.connection] +- else: +- args = [office.binary, "--headless", "--invisible", "--nocrashreport", "--nodefault", "--nofirststartwizard", "--nologo", "--norestore", "--accept=%s" % op.connection] ++ args = [office.binary, "--headless", "--invisible", "--nocrashreport", "--nodefault", "--nofirststartwizard", "--nologo", "--norestore", "--accept=%s" % op.connection] + if op.userProfile: + args.append("-env:UserInstallation=file://" + realpath(op.userProfile)) + info(2, '%s listener arguments are %s.' % (product.ooName, args)) +@@ -1287,10 +1283,7 @@ def die(ret, msg=None): + if convertor.desktop.getCurrentFrame(): + info(2, 'Trying to stop %s GUI listener.' % product.ooName) + try: +- if product.ooName != "LibreOffice" or product.ooSetupVersion <= 3.3: +- subprocess.Popen([office.binary, "-headless", "-invisible", "-nocrashreport", "-nodefault", "-nofirststartwizard", "-nologo", "-norestore", "-unaccept=%s" % op.connection], env=os.environ) +- else: +- subprocess.Popen([office.binary, "--headless", "--invisible", "--nocrashreport", "--nodefault", "--nofirststartwizard", "--nologo", "--norestore", "--unaccept=%s" % op.connection], env=os.environ) ++ subprocess.Popen([office.binary, "--headless", "--invisible", "--nocrashreport", "--nodefault", "--nofirststartwizard", "--nologo", "--norestore", "--unaccept=%s" % op.connection], env=os.environ) + ooproc.wait() + info(2, '%s listener successfully disabled.' % product.ooName) + except Exception as e: +-- +2.51.2 + diff --git a/pkgs/by-name/un/unoconv/package.nix b/pkgs/by-name/un/unoconv/package.nix index fe979220cee4..b40f15cdc03e 100644 --- a/pkgs/by-name/un/unoconv/package.nix +++ b/pkgs/by-name/un/unoconv/package.nix @@ -20,6 +20,8 @@ stdenv.mkDerivation rec { sha256 = "1akx64686in8j8arl6vsgp2n3bv770q48pfv283c6fz6wf9p8fvr"; }; + patches = [ ./0001-Remove-compatibility-fixes-for-very-old-LO-OO.patch ]; + nativeBuildInputs = [ asciidoc makeWrapper From 1e23ab7bc3f887942dc82536ee558b29afea5ef4 Mon Sep 17 00:00:00 2001 From: Sizhe Zhao Date: Thu, 18 Dec 2025 11:28:52 +0800 Subject: [PATCH 15/37] tewi-font: drop Reference: https://github.com/lucy/tewi-font Reference: https://github.com/NixOS/nixpkgs/issues/471645 --- pkgs/by-name/te/tewi-font/package.nix | 67 --------------------------- pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 67 deletions(-) delete mode 100644 pkgs/by-name/te/tewi-font/package.nix diff --git a/pkgs/by-name/te/tewi-font/package.nix b/pkgs/by-name/te/tewi-font/package.nix deleted file mode 100644 index 62fe79d4b7fe..000000000000 --- a/pkgs/by-name/te/tewi-font/package.nix +++ /dev/null @@ -1,67 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - python3, - bdftopcf, - xorg, - libfaketime, -}: - -stdenv.mkDerivation rec { - pname = "tewi-font"; - version = "2.0.2"; - - src = fetchFromGitHub { - owner = "lucy"; - repo = "tewi-font"; - rev = version; - sha256 = "1axv9bv10xlcmgfyjh3z5kn5fkg3m6n1kskcs5hvlmyb6m1zk91j"; - }; - - nativeBuildInputs = [ - python3 - bdftopcf - xorg.mkfontscale - libfaketime - xorg.fonttosfnt - ]; - - postPatch = '' - # make gzip deterministic - sed 's/gzip -9/gzip -9 -n/g' -i Makefile - - # fix python not found - patchShebangs scripts/merge - ''; - - postBuild = '' - # convert bdf fonts to otb - for i in *.bdf; do - name=$(basename "$i" .bdf) - faketime -f "1970-01-01 00:00:01" \ - fonttosfnt -v -o "$name.otb" "$i" - done - ''; - - installPhase = '' - fontDir="$out/share/fonts/misc" - install -m 644 -D *.otb out/* -t "$fontDir" - mkfontdir "$fontDir" - ''; - - meta = { - description = "Nice bitmap font, readable even at small sizes"; - longDescription = '' - Tewi is a bitmap font, readable even at very small font sizes. This is - particularily useful while programming, to fit a lot of code on your - screen. - ''; - homepage = "https://github.com/lucy/tewi-font"; - license = { - fullName = "GNU General Public License with a font exception"; - url = "https://www.gnu.org/licenses/gpl-faq.html#FontException"; - }; - maintainers = [ lib.maintainers.fro_ozen ]; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 6a29a1e02b88..3c90c8ed4031 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1585,6 +1585,7 @@ mapAliases { terminus-nerdfont = throw "'terminus-nerdfont' has been renamed to/replaced by 'nerd-fonts.terminess-ttf'"; # Converted to throw 2025-10-27 testVersion = throw "'testVersion' has been renamed to/replaced by 'testers.testVersion'"; # Converted to throw 2025-10-27 tet = throw "'tet' has been removed for lack of maintenance"; # Added 2025-10-12 + tewi-font = throw "'tewi-font' has been removed because it was removed from upstream"; # Added 2025-12-18 texinfo4 = throw "'texinfo4' has been removed in favor of the latest version"; # Added 2025-06-08 textual-paint = throw "'textual-paint' has been removed as it is broken"; # Added 2025-09-10 tezos-rust-libs = throw "ligo has been removed from nixpkgs for lack of maintenance"; # Added 2025-06-03 From aeb854934c2aaf5b2512d1df5a949683790d077b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 04:45:20 +0000 Subject: [PATCH 16/37] circle-flags: 2.7.0 -> 2.8.0 --- pkgs/by-name/ci/circle-flags/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ci/circle-flags/package.nix b/pkgs/by-name/ci/circle-flags/package.nix index 97411b6e3a01..12f560897a86 100644 --- a/pkgs/by-name/ci/circle-flags/package.nix +++ b/pkgs/by-name/ci/circle-flags/package.nix @@ -7,13 +7,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "circle-flags"; - version = "2.7.0"; + version = "2.8.0"; src = fetchFromGitHub { owner = "HatScripts"; repo = "circle-flags"; rev = "v${finalAttrs.version}"; - hash = "sha256-/+f5MDRW+tRH+jMtl3XuVPBShgy2PlD3NY+74mJa2Qk="; + hash = "sha256-Wa59G8ov/S89BABtpey/ueplztiYIUXrSDg72wG74jQ="; }; installPhase = '' From e3504872fdc9220e6b5df3e0a60503b894182701 Mon Sep 17 00:00:00 2001 From: Sizhe Zhao Date: Thu, 18 Dec 2025 13:43:58 +0800 Subject: [PATCH 17/37] rpPPPoE: update src Reference: https://repology.org/project/rp-pppoe/information Reference: https://github.com/NixOS/nixpkgs/issues/471645 --- pkgs/by-name/rp/rpPPPoE/package.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/rp/rpPPPoE/package.nix b/pkgs/by-name/rp/rpPPPoE/package.nix index 926a19acb160..04be5ad93585 100644 --- a/pkgs/by-name/rp/rpPPPoE/package.nix +++ b/pkgs/by-name/rp/rpPPPoE/package.nix @@ -1,19 +1,18 @@ { lib, stdenv, - fetchFromGitHub, + fetchFromGitea, ppp, }: -let -in -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "rp-pppoe"; version = "4.0"; - src = fetchFromGitHub { - owner = "dfskoll"; + src = fetchFromGitea { + domain = "codeberg.org"; + owner = "dskoll"; repo = "rp-pppoe"; - rev = version; + tag = finalAttrs.version; hash = "sha256-2y26FVxVn8sU9/E2yJeJmbhAeOB0Go7EUPMU9H58H6U="; }; @@ -45,4 +44,4 @@ stdenv.mkDerivation rec { license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ DictXiong ]; }; -} +}) From 7e104b6841cdccff15af7d469ab348459016d655 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 06:47:48 +0000 Subject: [PATCH 18/37] lefthook: 2.0.7 -> 2.0.12 --- pkgs/by-name/le/lefthook/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/le/lefthook/package.nix b/pkgs/by-name/le/lefthook/package.nix index a5493eafe927..351f17e06ea8 100644 --- a/pkgs/by-name/le/lefthook/package.nix +++ b/pkgs/by-name/le/lefthook/package.nix @@ -8,7 +8,7 @@ let pname = "lefthook"; - version = "2.0.7"; + version = "2.0.12"; in buildGoModule { inherit pname version; @@ -17,10 +17,10 @@ buildGoModule { owner = "evilmartians"; repo = "lefthook"; rev = "v${version}"; - hash = "sha256-i+3D5nepZDfFQ1zl1ykefRFA0V5tiUEiqLO9BF+UyFc="; + hash = "sha256-Th3a5zUBrWbWHiKnoEwTA0TyZrhIQNnA/xgUrXandn8="; }; - vendorHash = "sha256-IUq2Qa26p7OP7Y78Cio3EvhMWD2VAN50wlBbk7AxZyo="; + vendorHash = "sha256-4xCee6g7NowAIskatPtJQi6UnlIfQlg43Q26TryhqcE="; nativeBuildInputs = [ installShellFiles ]; From f654f425d8bd6b22e166889e32d746e69ac27953 Mon Sep 17 00:00:00 2001 From: Jost Alemann Date: Thu, 18 Dec 2025 10:04:55 +0100 Subject: [PATCH 19/37] ty: 0.0.2 -> 0.0.3 Changelog: https://github.com/astral-sh/ty/releases/tag/0.0.3 Diff: https://github.com/astral-sh/ty/compare/0.0.2...0.0.3 --- pkgs/by-name/ty/ty/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ty/ty/package.nix b/pkgs/by-name/ty/ty/package.nix index d8329901eff8..48b7bb54128c 100644 --- a/pkgs/by-name/ty/ty/package.nix +++ b/pkgs/by-name/ty/ty/package.nix @@ -14,14 +14,14 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "ty"; - version = "0.0.2"; + version = "0.0.3"; src = fetchFromGitHub { owner = "astral-sh"; repo = "ty"; tag = finalAttrs.version; fetchSubmodules = true; - hash = "sha256-4Kv3UUn2QbOOOaQ/uzJB2KOUx++Gb+cKpZg4kGx99Q0="; + hash = "sha256-Vox6ex1kU4h3HWKcF58dzywIjqBHxMzJPYpT/9tuzBE="; }; # For Darwin platforms, remove the integration test for file notifications, From cdc8020b2b327be5338edef9935b01a21ca76de2 Mon Sep 17 00:00:00 2001 From: liberodark Date: Thu, 18 Dec 2025 11:38:02 +0100 Subject: [PATCH 20/37] rundeck: 5.17.0 -> 5.18.0 --- pkgs/by-name/ru/rundeck/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ru/rundeck/package.nix b/pkgs/by-name/ru/rundeck/package.nix index ff338d4480df..01a0ab82591d 100644 --- a/pkgs/by-name/ru/rundeck/package.nix +++ b/pkgs/by-name/ru/rundeck/package.nix @@ -12,11 +12,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "rundeck"; - version = "5.17.0-20251103"; + version = "5.18.0-20251216"; src = fetchurl { url = "https://packagecloud.io/pagerduty/rundeck/packages/java/org.rundeck/rundeck-${finalAttrs.version}.war/artifacts/rundeck-${finalAttrs.version}.war/download?distro_version_id=167"; - hash = "sha256-Bw/aLsJ65BSr1NDmOWanOm6lsClaYpKdmeGpYiO0KNc="; + hash = "sha256-VCxOD54gMgMSDhEgkDI1FDaK8RDGxKwtUwXrfK4JmpM="; }; nativeBuildInputs = [ makeWrapper ]; From 96b408c71bf84ab168a98525db0c7ba22a04f211 Mon Sep 17 00:00:00 2001 From: Haonan Chen Date: Sat, 13 Dec 2025 15:54:18 +0800 Subject: [PATCH 21/37] nixos/slurm: fix wrapper and refactor --- .../services/computing/slurm/slurm.nix | 44 +++++++++---------- 1 file changed, 20 insertions(+), 24 deletions(-) diff --git a/nixos/modules/services/computing/slurm/slurm.nix b/nixos/modules/services/computing/slurm/slurm.nix index 4d01d4533f67..822e455ea50b 100644 --- a/nixos/modules/services/computing/slurm/slurm.nix +++ b/nixos/modules/services/computing/slurm/slurm.nix @@ -336,31 +336,27 @@ in config = let - wrappedSlurm = pkgs.stdenv.mkDerivation { - name = "wrappedSlurm"; + wrappedSlurm = pkgs.runCommand "wrappedSlurm" { } '' + mkdir -p $out/bin + find ${lib.getBin cfg.package}/bin -type f -executable | while read EXE + do + exename="$(basename $EXE)" + wrappername="$out/bin/$exename" + cat > "$wrappername" < "$wrappername" < Date: Thu, 18 Dec 2025 11:22:42 +0000 Subject: [PATCH 22/37] super-productivity: 16.5.5 -> 16.6.1 --- pkgs/by-name/su/super-productivity/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/su/super-productivity/package.nix b/pkgs/by-name/su/super-productivity/package.nix index b4d163e4626f..c0415c7fa169 100644 --- a/pkgs/by-name/su/super-productivity/package.nix +++ b/pkgs/by-name/su/super-productivity/package.nix @@ -16,13 +16,13 @@ let in buildNpmPackage rec { pname = "super-productivity"; - version = "16.5.5"; + version = "16.6.1"; src = fetchFromGitHub { owner = "johannesjo"; repo = "super-productivity"; tag = "v${version}"; - hash = "sha256-0V68wkkuyOFcv4Wl2Kqk4Soa/nOB7CizelYyI0TKU+8="; + hash = "sha256-8FTgwyZOc/klAis+h5GG0lb1Rk/tvZpMeLuqWhAL4gI="; postFetch = '' find $out -name package-lock.json -exec ${lib.getExe npm-lockfile-fix} -r {} \; @@ -65,7 +65,7 @@ buildNpmPackage rec { dontInstall = true; outputHashMode = "recursive"; - hash = "sha256-gsGzwwzt54Ww9CyHaHVAM4v1mHM2vQePw5vM8x1EGao="; + hash = "sha256-BM1l3V1vDIbm0GGc5pc66Nsx3fqhqZLE9xI+LuI5KWA="; } ); From 414438fa47bee02bf92ce38000fb3a4de5457c76 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 13:30:34 +0000 Subject: [PATCH 23/37] tree-sitter-grammars.tree-sitter-templ: 0-unstable-2025-09-14 -> 1.0.0-unstable-2025-12-03 --- .../tools/parsing/tree-sitter/grammars/grammar-sources.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix index 5adf5f2b26a4..b29fe280574a 100644 --- a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix +++ b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix @@ -664,9 +664,9 @@ }; templ = { - version = "0-unstable-2025-09-14"; - url = "github:vrischmann/tree-sitter-templ/27a1fc62c8dd4c49669e03629491f66449c6c435"; - hash = "sha256-2h1NPQtutTmdVKjydq/ZRvBCJ3YEiT+ZVcL72fb2m9M="; + version = "1.0.0-unstable-2025-12-03"; + url = "github:vrischmann/tree-sitter-templ/3057cd485f7f23a8ad24107c6adc604f8c5ce3db"; + hash = "sha256-iv5Egh0CcBEsD86IGESI5Bn0NcGji3wruD8UR1JNlk0="; }; tera = { From 69965e6680a61f45b7fb0319722bc591a7a00621 Mon Sep 17 00:00:00 2001 From: Moraxyc Date: Thu, 18 Dec 2025 21:59:27 +0800 Subject: [PATCH 24/37] fluffychat-web: remove reference to rust sysroot Before: /nix/store/wapf19anb56v5g0nmrl5mim0ljv6cq8n-fluffychat-web-2.3.1 1.6 GiB After: /nix/store/wy98llxy71avdb7aars1778z0fjpyg7n-fluffychat-web-2.3.1 42.9 MiB --- pkgs/by-name/fl/fluffychat/vodozemac-wasm.nix | 29 ++++++++++++------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/fl/fluffychat/vodozemac-wasm.nix b/pkgs/by-name/fl/fluffychat/vodozemac-wasm.nix index b063497368e7..9110a7ba26c3 100644 --- a/pkgs/by-name/fl/fluffychat/vodozemac-wasm.nix +++ b/pkgs/by-name/fl/fluffychat/vodozemac-wasm.nix @@ -15,24 +15,24 @@ binaryen, writableTmpDirAsHomeHook, runCommand, + removeReferencesTo, }: let pubSources = fluffychat-web.pubspecLock.dependencySources; # wasm-pack doesn't take 'RUST_SRC_PATH' into consideration - rustcWithLibSrc = buildPackages.rustc.override { - sysroot = symlinkJoin { - name = "rustc_unwrapped_with_libsrc"; - paths = [ - buildPackages.rustc.unwrapped - ]; - postBuild = '' - mkdir -p $out/lib/rustlib/src/rust - ln -s ${rustPlatform.rustLibSrc} $out/lib/rustlib/src/rust/library - ''; - }; + sysroot = symlinkJoin { + name = "rustc_unwrapped_with_libsrc"; + paths = [ + buildPackages.rustc.unwrapped + ]; + postBuild = '' + mkdir -p $out/lib/rustlib/src/rust + ln -s ${rustPlatform.rustLibSrc} $out/lib/rustlib/src/rust/library + ''; }; + rustcWithLibSrc = buildPackages.rustc.override { inherit sysroot; }; in # https://github.com/krille-chan/fluffychat/blob/main/scripts/prepare-web.sh @@ -80,6 +80,7 @@ stdenv.mkDerivation { wasm-bindgen-cli_0_2_100 binaryen writableTmpDirAsHomeHook + removeReferencesTo ]; buildPhase = '' @@ -103,6 +104,12 @@ stdenv.mkDerivation { runHook postInstall ''; + # fix rustc leaking into closure + # fluffychat-web should not reference build-time dependencies + preFixup = '' + find $out -name "*.wasm" -exec remove-references-to -t ${sysroot} {} + + ''; + env = { # Build a pub cache from fluffychat, as dart-vodozemac should be a subset # This is required because dart-vodozemac, as a pub, doesn't have a pubspec.lock From 44d07d2cd83a996ebb3c82f5ba5f18718aa14e00 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 14:27:15 +0000 Subject: [PATCH 25/37] tree-sitter-grammars.tree-sitter-tiger: 0-unstable-2025-03-13 -> 0.3.0-unstable-2025-03-13 --- .../tools/parsing/tree-sitter/grammars/grammar-sources.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix index 5adf5f2b26a4..ab607a95147c 100644 --- a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix +++ b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix @@ -676,7 +676,7 @@ }; tiger = { - version = "0-unstable-2025-03-13"; + version = "0.3.0-unstable-2025-03-13"; url = "github:ambroisie/tree-sitter-tiger/4a77b2d7a004587646bddc4e854779044b6db459"; hash = "sha256-jLdJ3nLShoBxVCcUbnaswYG5d4UU8aaE1xexb2LnmTQ="; }; From b92017ff8a706de7aceda26f2e0eebc01765cee6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 14:41:11 +0000 Subject: [PATCH 26/37] tree-sitter-grammars.tree-sitter-elisp: 1.3.0 -> 1.6.1 --- .../tools/parsing/tree-sitter/grammars/grammar-sources.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix index 5adf5f2b26a4..ecee59788c3b 100644 --- a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix +++ b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix @@ -132,9 +132,9 @@ }; elisp = rec { - version = "1.3.0"; + version = "1.6.1"; url = "github:wilfred/tree-sitter-elisp?ref=${version}"; - hash = "sha256-hmPJtB0pEBqc9rbnQ5YZzs9kHCqXWfbjRWN6WoFZ1NQ="; + hash = "sha256-ixZKsQtRk5ykR6miQ5JicI3xn/Bp9t4WGAIoNTC/gbY="; }; elixir = { From 9e075fd4fd65106ba85726f73dcc8e376d7f11f3 Mon Sep 17 00:00:00 2001 From: kb Date: Fri, 19 Dec 2025 00:32:32 +1000 Subject: [PATCH 27/37] tree-sitter-grammers: update urls for transferred grammar sources Updates the source URL for grammars that have been transferred to new ownership. Github redirects currently handle this silently but this make it a little more explicit. --- .../tree-sitter/grammars/grammar-sources.nix | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix index 5adf5f2b26a4..67c5c2b5b362 100644 --- a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix +++ b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix @@ -19,7 +19,7 @@ bitbake = { version = "1.1.0"; - url = "github:amaanq/tree-sitter-bitbake"; + url = "github:tree-sitter-grammars/tree-sitter-bitbake"; hash = "sha256-PSI1XVDGwDk5GjHjvCJfmBDfYM2Gmm1KR4h5KxBR1d0="; }; @@ -61,7 +61,7 @@ commonlisp = { version = "0.4.1"; - url = "github:thehamsta/tree-sitter-commonlisp"; + url = "github:tree-sitter-grammars/tree-sitter-commonlisp"; hash = "sha256-wHVdRiorBgxQ+gG+m/duv9nt5COxz6XK0AcKQ5FX43U="; }; @@ -85,7 +85,7 @@ cuda = { version = "0.21.1"; - url = "github:thehamsta/tree-sitter-cuda"; + url = "github:tree-sitter-grammars/tree-sitter-cuda"; hash = "sha256-sX9AOe8dJJsRbzGq20qakWBnLiwYQ90mQspAuYxQzoQ="; }; @@ -205,13 +205,13 @@ glimmer = { version = "1.4.0"; - url = "github:alexlafroscia/tree-sitter-glimmer?ref=v1.4.0-tree-sitter-glimmer"; + url = "github:ember-tooling/tree-sitter-glimmer?ref=v1.4.0-tree-sitter-glimmer"; hash = "sha256-4kEOvObNnZtt2aaf0Df+R/Wvyk/JlFnsvbasDIJxt4w="; }; glsl = { version = "0.2.0"; - url = "github:thehamsta/tree-sitter-glsl"; + url = "github:tree-sitter-grammars/tree-sitter-glsl"; hash = "sha256-S0Yr/RQE4uLpazphTKLUoHgPEOUbOBDGCkkRXemsHjQ="; }; @@ -260,13 +260,13 @@ hcl = { version = "1.1.0"; - url = "github:MichaHoffmann/tree-sitter-hcl"; + url = "github:tree-sitter-grammars/tree-sitter-hcl"; hash = "sha256-saVKSYUJY7OuIuNm9EpQnhFO/vQGKxCXuv3EKYOJzfs="; }; heex = { version = "0.8.0"; - url = "github:connorlay/tree-sitter-heex"; + url = "github:phoenixframework/tree-sitter-heex"; hash = "sha256-rifYGyIpB14VfcEZrmRwYSz+ZcajQcB4mCjXnXuVFDQ="; }; @@ -284,7 +284,7 @@ http = { version = "3.0.0"; - url = "github:ntbbloodbath/tree-sitter-http?ref=v3.0"; + url = "github:rest-nvim/tree-sitter-http?ref=v3.0"; hash = "sha256-pg7QmnfhuCmyuq6HupCJl4H/rcxDeUn563LoL+Wd2Uw="; }; @@ -399,7 +399,7 @@ markdown = { version = "0.3.2"; - url = "github:MDeiml/tree-sitter-markdown"; + url = "github:tree-sitter-grammars/tree-sitter-markdown"; hash = "sha256-OlVuHz9/5lxsGVT+1WhKx+7XtQiezMW1odiHGinzro8="; location = "tree-sitter-markdown"; }; @@ -407,7 +407,7 @@ markdown-inline = { language = "markdown_inline"; version = "0.3.2"; - url = "github:MDeiml/tree-sitter-markdown"; + url = "github:tree-sitter-grammars/tree-sitter-markdown"; hash = "sha256-OlVuHz9/5lxsGVT+1WhKx+7XtQiezMW1odiHGinzro8="; location = "tree-sitter-markdown-inline"; }; @@ -463,7 +463,7 @@ org-nvim = { version = "0-unstable-2023-06-19"; - url = "github:milisims/tree-sitter-org/64cfbc213f5a83da17632c95382a5a0a2f3357c1"; + url = "github:emiasims/tree-sitter-org/64cfbc213f5a83da17632c95382a5a0a2f3357c1"; hash = "sha256-/03eZBbv23W5s/GbDgPgaJV5TyK+/lrWUVeINRS5wtA="; }; @@ -529,7 +529,7 @@ query = { version = "0.8.0"; - url = "github:nvim-treesitter/tree-sitter-query"; + url = "github:tree-sitter-grammars/tree-sitter-query"; hash = "sha256-0y8TbbZKMstjIVFEtq+9Fz44ueRup0ngNcJPJEQB/NQ="; }; @@ -628,7 +628,7 @@ sparql = { version = "0-unstable-2024-06-26"; - url = "github:bonabeavis/tree-sitter-sparql/d853661ca680d8ff7f8d800182d5782b61d0dd58"; + url = "github:GordianDziwis/tree-sitter-sparql/d853661ca680d8ff7f8d800182d5782b61d0dd58"; hash = "sha256-0BV0y8IyeIPpuxTixlJL1PsDCuhXbGaImu8JU8WFoPU="; }; @@ -716,7 +716,7 @@ turtle = { version = "0-unstable-2024-07-02"; - url = "github:bonabeavis/tree-sitter-turtle/7f789ea7ef765080f71a298fc96b7c957fa24422"; + url = "github:GordianDziwis/tree-sitter-turtle/7f789ea7ef765080f71a298fc96b7c957fa24422"; hash = "sha256-z6f73euFAG9du5owz7V9WLbWK81Jg0DwxN1metKPbTA="; }; From 934e0aabcc1c4a3637db98dfe41a00b55c6f2e87 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 14:48:05 +0000 Subject: [PATCH 28/37] tree-sitter-grammars.tree-sitter-earthfile: 0-unstable-2025-05-13 -> 0.6.0-unstable-2025-10-27 --- .../tools/parsing/tree-sitter/grammars/grammar-sources.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix index 5adf5f2b26a4..36df989c8740 100644 --- a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix +++ b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix @@ -120,9 +120,9 @@ }; earthfile = { - version = "0-unstable-2025-05-13"; - url = "github:glehmann/tree-sitter-earthfile/a37c5ee95ce401ca311c0ae1369d9cfb953e151d"; - hash = "sha256-lYoS3RtHPYRrkfgo/qqAnT918FXeXnDUhG4l1TMXjb4="; + version = "0.6.0-unstable-2025-10-27"; + url = "github:glehmann/tree-sitter-earthfile/5baef88717ad0156fd29a8b12d0d8245bb1096a8"; + hash = "sha256-eeXzc+thSPey7r59QkJd5jgchZRhSwT5isSljYLBQ8k="; }; eex = { From 85bcfe58a90c106fbf165d3f25ef7b5bc8a4f2a6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 15:01:31 +0000 Subject: [PATCH 29/37] uhhyou-plugins: 0.67.0 -> 0.68.0 --- pkgs/by-name/uh/uhhyou-plugins/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/uh/uhhyou-plugins/package.nix b/pkgs/by-name/uh/uhhyou-plugins/package.nix index b6f8ad14779d..4c6e0eeb43b5 100644 --- a/pkgs/by-name/uh/uhhyou-plugins/package.nix +++ b/pkgs/by-name/uh/uhhyou-plugins/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation (finalAttrs: { pname = "uhhyou-plugins"; - version = "0.67.0"; + version = "0.68.0"; src = fetchFromGitHub { owner = "ryukau"; repo = "VSTPlugins"; rev = "UhhyouPlugins${finalAttrs.version}"; - hash = "sha256-8YGfcnWkOQwwq6m3510GPpZu6UbDmVi3K/dOGLrAnhM="; + hash = "sha256-UscyoBj0wPWlRyLI2q7iWHZNqS3+2I8MxWuIR4CfSyQ="; fetchSubmodules = true; }; From ecea6cf49fe450f5cd1ac3ac691f076cbf8124b2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 15:07:11 +0000 Subject: [PATCH 30/37] tree-sitter-grammars.tree-sitter-dot: 0-unstable-2022-08-25 -> 0-unstable-2025-10-21 --- .../tools/parsing/tree-sitter/grammars/grammar-sources.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix index 5adf5f2b26a4..c68352438af4 100644 --- a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix +++ b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix @@ -114,9 +114,9 @@ }; dot = { - version = "0-unstable-2022-08-25"; - url = "github:rydesun/tree-sitter-dot/9ab85550c896d8b294d9b9ca1e30698736f08cea"; - hash = "sha256-w4DInIT7mkTvQ6Hmi8yaAww6ktyNgRz0tPfBLGnOawQ="; + version = "0-unstable-2025-10-21"; + url = "github:rydesun/tree-sitter-dot/80327abbba6f47530edeb0df9f11bd5d5c93c14d"; + hash = "sha256-sepmaKnpbj/bgMBa06ksQFOMPtcCqGaINiJqFBJN/0Y="; }; earthfile = { From 269c2bdd2c7cc8fc8856495fe6fccaecbd1510d4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 15:10:25 +0000 Subject: [PATCH 31/37] tree-sitter-grammars.tree-sitter-tsq: 0-unstable-2024-02-24 -> 0.19.0-unstable-2024-02-24 --- .../tools/parsing/tree-sitter/grammars/grammar-sources.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix index 5adf5f2b26a4..278e730401ba 100644 --- a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix +++ b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix @@ -703,7 +703,7 @@ }; tsq = { - version = "0-unstable-2024-02-24"; + version = "0.19.0-unstable-2024-02-24"; url = "github:tree-sitter/tree-sitter-tsq/49da6de661be6a07cb51018880ebe680324e7b82"; hash = "sha256-md4xynJx9F/l6N+JZYU8CLXmz50fV13L8xGJVUqk6do="; }; From 8d3d3ea2b8e15f5fb90cf2d776b79ce9b416cd04 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 15:15:17 +0000 Subject: [PATCH 32/37] tree-sitter-grammars.tree-sitter-fortran: 0.4.0 -> 0.5.1 --- .../tools/parsing/tree-sitter/grammars/grammar-sources.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix index 5adf5f2b26a4..953d94c780bf 100644 --- a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix +++ b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix @@ -180,9 +180,9 @@ }; fortran = { - version = "0.4.0"; + version = "0.5.1"; url = "github:stadelmanma/tree-sitter-fortran"; - hash = "sha256-STRbEv7kBtkrokXgaN9g1JNwWmSV+7gkyklhYKJszNY="; + hash = "sha256-6l+cfLVbs8geKIYhnfuZDac8uzmNHOZf2rFANdl4tDs="; }; gdscript = { From ba30f7785a56037eea9cbff690bca6cf9a742009 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 15:10:27 +0000 Subject: [PATCH 33/37] mint-artwork: 1.9.2 -> 1.9.3 gsettings overrides: Add ctrl-alt-backspace xkb option to Cinnamon's new schema. --- pkgs/by-name/mi/mint-artwork/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/mi/mint-artwork/package.nix b/pkgs/by-name/mi/mint-artwork/package.nix index dbe95d3e06ae..45271ebfbdcf 100644 --- a/pkgs/by-name/mi/mint-artwork/package.nix +++ b/pkgs/by-name/mi/mint-artwork/package.nix @@ -8,14 +8,14 @@ stdenv.mkDerivation rec { pname = "mint-artwork"; - version = "1.9.2"; + version = "1.9.3"; src = fetchurl { urls = [ "http://packages.linuxmint.com/pool/main/m/mint-artwork/mint-artwork_${version}.tar.xz" - "https://web.archive.org/web/20250807131013/http://packages.linuxmint.com/pool/main/m/mint-artwork/mint-artwork_${version}.tar.xz" + "https://web.archive.org/web/20251218152602/http://packages.linuxmint.com/pool/main/m/mint-artwork/mint-artwork_${version}.tar.xz" ]; - hash = "sha256-zmVpy7T1AyVE5nwD0aZ//9kIFK2IYjl3rSq+9bcHPDE="; + hash = "sha256-XH3RZq9ls0e9mM7cZhCSkNMUwMJyBeFTdfn006PaqNg="; }; nativeBuildInputs = [ From 4fb2e855536872bb46b5cd16d897c9204e6453e6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 15:31:19 +0000 Subject: [PATCH 34/37] tree-sitter-grammars.tree-sitter-solidity: 1.2.3 -> 1.2.13 --- .../tools/parsing/tree-sitter/grammars/grammar-sources.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix index 5adf5f2b26a4..56023d8384f8 100644 --- a/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix +++ b/pkgs/development/tools/parsing/tree-sitter/grammars/grammar-sources.nix @@ -621,9 +621,9 @@ }; solidity = { - version = "1.2.3"; + version = "1.2.13"; url = "github:JoranHonig/tree-sitter-solidity"; - hash = "sha256-BN3a/gEZxOgRWm/H3CEFk4eTKhoZrBAFlUnZiLs9RUE="; + hash = "sha256-b+DHy7BkkMg88kLhirtCzjF3dHlCFkXea65aGC18fW0="; }; sparql = { From 9838b5a044789032beadea213639f0893f2e1047 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 15:40:46 +0000 Subject: [PATCH 35/37] survex: 1.4.18 -> 1.4.19 --- pkgs/by-name/su/survex/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/su/survex/package.nix b/pkgs/by-name/su/survex/package.nix index b084606b1f3f..f4e1fd3f3765 100644 --- a/pkgs/by-name/su/survex/package.nix +++ b/pkgs/by-name/su/survex/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { pname = "survex"; - version = "1.4.18"; + version = "1.4.19"; src = fetchurl { url = "https://survex.com/software/${version}/${pname}-${version}.tar.gz"; - hash = "sha256-oKCEd3G67+2tE6+UB5NKbW/xEWMvbmRkb/YzsgM6zmU="; + hash = "sha256-X8FZCZTJ7DkZeYnrzaLCukRhs/kTHwre9F1TTRlK2ro="; }; nativeBuildInputs = [ From 9f9481506856a9c079592cbce74a7beeee04c164 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 16:01:34 +0000 Subject: [PATCH 36/37] pdk-ciel: 2.3.1 -> 2.4.0 --- pkgs/by-name/pd/pdk-ciel/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pd/pdk-ciel/package.nix b/pkgs/by-name/pd/pdk-ciel/package.nix index 648d3c10b556..cf859edb247a 100644 --- a/pkgs/by-name/pd/pdk-ciel/package.nix +++ b/pkgs/by-name/pd/pdk-ciel/package.nix @@ -6,14 +6,14 @@ python3Packages.buildPythonApplication rec { pname = "ciel"; - version = "2.3.1"; + version = "2.4.0"; pyproject = true; src = fetchFromGitHub { owner = "fossi-foundation"; repo = "ciel"; tag = version; - hash = "sha256-/B4s0X+/2rTkR81zK5fwFKmMAgfFYH2n/6etH7WYyik="; + hash = "sha256-AWbkHL0zO3tD0mE3dZIcj8mVND7o3imTxOpEfOtlRDI="; }; build-system = [ python3Packages.poetry-core ]; From 3aad436a7462a9a0c87b1fc76c4c65ed3977058c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Dec 2025 17:11:44 +0000 Subject: [PATCH 37/37] fastfetchMinimal: 2.56.0 -> 2.56.1 --- pkgs/by-name/fa/fastfetch/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fa/fastfetch/package.nix b/pkgs/by-name/fa/fastfetch/package.nix index f7cce76e7c7c..7a8691096274 100644 --- a/pkgs/by-name/fa/fastfetch/package.nix +++ b/pkgs/by-name/fa/fastfetch/package.nix @@ -59,13 +59,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "fastfetch"; - version = "2.56.0"; + version = "2.56.1"; src = fetchFromGitHub { owner = "fastfetch-cli"; repo = "fastfetch"; tag = finalAttrs.version; - hash = "sha256-kOI0PUEKmI5hZowEl/VRinjRMDXOP4K12eoFHuIDqOo="; + hash = "sha256-loTEadHPhE0b7VYCq2Lh+FKKnqzc4kzWFkHLnTjFsBg="; }; outputs = [