···227227228228- `pkgs.nextcloud28` has been removed since it's out of support upstream.
229229230230+- `services.cloudflare-dyndns.apiTokenFile` now must be just your Cloudflare api token. Previously it was supposed to be a file of the form `CLOUDFLARE_API_TOKEN=...`.
231231+230232- Emacs lisp build helpers, such as `emacs.pkgs.melpaBuild`, now enables `__structuredAttrs` by default.
231233 Environment variables have to be passed via the `env` attribute.
232234
···21212222stdenv.mkDerivation rec {
2323 pname = "iozone";
2424- version = "3.506";
2424+ version = "3.507";
25252626 src = fetchurl {
2727 url = "http://www.iozone.org/src/current/iozone${lib.replaceStrings [ "." ] [ "_" ] version}.tar";
2828- hash = "sha256-EUzlwHGHO5ose6bnPQXV735mVkOSrL/NwLMmHbEPy+c=";
2828+ hash = "sha256-HoCHraBW9dgBjuC8dmhtQW/CJR7QMDgFXb0K940eXOM=";
2929 };
30303131 license = fetchurl {
···38383939 buildFlags = target;
40404141- enableParallelBuilding = true;
4141+ # The makefile doesn't define a rule for e.g. libbif.o
4242+ # Make will try to evaluate implicit built-in rules for these outputs if building in parallel
4343+ # Build in serial so that the main rule builds everything before the implicit ones are attempted
4444+ enableParallelBuilding = false;
42454346 installPhase = ''
4447 mkdir -p $out/{bin,share/doc,libexec,share/man/man1}
+2-2
pkgs/by-name/ir/irpf/package.nix
···13131414stdenvNoCC.mkDerivation (finalAttrs: {
1515 pname = "irpf";
1616- version = "2024-1.6";
1616+ version = "2025-1.0";
17171818 # https://www.gov.br/receitafederal/pt-br/centrais-de-conteudo/download/pgd/dirpf
1919 # Para outros sistemas operacionais -> Multi
···2323 in
2424 fetchzip {
2525 url = "https://downloadirpf.receita.fazenda.gov.br/irpf/${year}/irpf/arquivos/IRPF${finalAttrs.version}.zip";
2626- hash = "sha256-wYSfU6tkYuSns+RnSy2c3yRR05t/8iXLhRMqPQR+oO0=";
2626+ hash = "sha256-gDGDOthUbRmj68CHmHhaYlGs4tiQTNVlEmuyLZ5e0zY=";
2727 };
28282929 passthru.updateScript = writeScript "update-irpf" ''
···77777878 postPatch = ''
7979 patchShebangs --build dat/outfits/bioship/generate.py utils/build/*.py utils/*.py
8080+8181+ # Add a missing include to fix the build against luajit-2.1.1741730670.
8282+ # Otherwise the build fails as:
8383+ # src/lutf8lib.c:421:22: error: 'INT_MAX' undeclared (first use in this function)
8484+ # TODO: drop after 0.12.3 release
8585+ sed -i '1i#include <limits.h>' src/lutf8lib.c
8086 '';
81878288 meta = {