···81818282- Invidious has changed its default database username from `kemal` to `invidious`. Setups involving an externally provisioned database (i.e. `services.invidious.database.createLocally == false`) should adjust their configuration accordingly. The old `kemal` user will not be removed automatically even when the database is provisioned automatically.(https://github.com/NixOS/nixpkgs/pull/265857)
83838484+- `inetutils` now has a lower priority to avoid shadowing the commonly used `util-linux`. If one wishes to restore the default priority, simply use `lib.setPrio 5 inetutils` or override with `meta.priority = 5`.
8585+8486- `paperless`' `services.paperless.extraConfig` setting has been removed and converted to the freeform type and option named `services.paperless.settings`.
85878688- The legacy and long deprecated systemd target `network-interfaces.target` has been removed. Use `network.target` instead.
···7788buildGoModule rec {
99 pname = "kubo";
1010- version = "0.25.0"; # When updating, also check if the repo version changed and adjust repoVersion below
1010+ version = "0.26.0"; # When updating, also check if the repo version changed and adjust repoVersion below
1111 rev = "v${version}";
12121313 passthru.repoVersion = "15"; # Also update kubo-migrator when changing the repo version
···1515 # Kubo makes changes to its source tarball that don't match the git source.
1616 src = fetchurl {
1717 url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz";
1818- hash = "sha256-+Mk3rDdtjhETmdaOOSXEFdLTJ0nX9G3qUxctsu5vrSc=";
1818+ hash = "sha256-qvn5VqEPLkehFWamtPGRuDLJ06bd5bn1qZRp05jP2AY=";
1919 };
20202121 # tarball contains multiple files/directories
···5566rustPlatform.buildRustPackage rec {
77 pname = "starlark-rust";
88- version = "0.10.0";
88+ version = "0.11.0";
991010 src = fetchCrate {
1111 pname = "starlark_bin";
1212 inherit version;
1313- hash = "sha256-7AoNRTLyTYsUass9bMJMBUN+GrfUzEGM9cED5VsRESs=";
1313+ hash = "sha256-/dy9uzXLZipKzFaslOmlzeEsOD89pprwFTopYpsmHGM=";
1414 };
15151616- cargoHash = "sha256-Q00JJRiubrxnI0nFQqUTbxTTB70XV93HJycjdlvV+74=";
1616+ cargoHash = "sha256-Ict1Lh+JPZ5dmC+ul0phcQug9nYeaILLCtaHQOI6qBk=";
17171818 meta = with lib; {
1919 description = "A Rust implementation of the Starlark language";
+2-8
pkgs/development/libraries/alembic/default.nix
···11-{ lib, stdenv, fetchFromGitHub, cmake, openexr, hdf5-threadsafe, ilmbase }:
11+{ lib, stdenv, fetchFromGitHub, cmake, openexr, hdf5-threadsafe }:
2233stdenv.mkDerivation rec
44{
···20202121 nativeBuildInputs = [ cmake ];
22222323- # NOTE: Alembic also support imath instead of ilmbase, but some users of Alembic (e.g. Blender)
2424- # are incompatible with the imath version of Alembic
2525- buildInputs = [ openexr hdf5-threadsafe ilmbase ];
2626-2727- # Downstream packages trying to use Alembic via CMake need ilmbase as well
2828- # For some reason this won't be picked up correctly otherwise
2929- propagatedBuildInputs = [ ilmbase ];
2323+ buildInputs = [ openexr hdf5-threadsafe ];
30243125 # These flags along with the postPatch step ensure that all artifacts end up
3226 # in the correct output without needing to move anything
···66, help2man
77, apparmorRulesFromClosure
88, libxcrypt
99+, util-linux
910}:
10111112stdenv.mkDerivation rec {
···87888889 maintainers = with maintainers; [ matthewbauer ];
8990 platforms = platforms.unix;
9191+9292+ /**
9393+ The `logger` binary from `util-linux` is preferred over `inetutils`.
9494+ To instead prioritize this package, set a _lower_ `meta.priority`, or
9595+ use e.g. `lib.setPrio 5 inetutils`.
9696+9797+ Note that the default `meta.priority` is defined in `buildEnv` and is
9898+ currently 5.
9999+ */
100100+ priority = (util-linux.meta.priority or 5) + 1;
90101 };
91102}
···2929 meta = with lib; {
3030 homepage = "https://github.com/alpinelinux/alpine-make-vm-image";
3131 description = "Make customized Alpine Linux disk image for virtual machines";
3232- maintainers = with maintainers; [ qyliss ];
3332 license = licenses.mit;
3433 platforms = platforms.unix;
3534 mainProgram = "alpine-make-vm-image";
+4
pkgs/top-level/aliases.nix
···172172 compton = throw "'compton' has been renamed to/replaced by 'picom'"; # Converted to throw 2023-09-10
173173 concurrencykit = libck; # Added 2021-03
174174 connmanPackages = throw "'connmanPackages' was removed and their subpackages/attributes were promoted to top level."; # Added 2023-10-08
175175+ convoy = throw "'convoy' has been removed from nixpkgs, as it was archived upstream"; # Added 2023-12-27
175176 cups-kyodialog3 = cups-kyodialog; # Added 2022-11-12
176177 cvs_fast_export = cvs-fast-export; # Added 2021-06-10
177178···211212 devserver = throw "'devserver' has been removed in favor of 'miniserve' or other alternatives"; # Added 2023-01-13
212213 dhcp = throw "dhcp (ISC DHCP) has been removed from nixpkgs, because it reached its end of life"; # Added 2023-04-04
213214 dnnl = oneDNN; # Added 2020-04-22
215215+ docker-machine = throw "'docker-machine' has been removed, because the upstream project was archived"; # Added 2023-12-27
216216+ docker-machine-kvm = throw "'docker-machine-kvm' has been removed, because 'docker-machine' was archived upstream and removed"; # Added 2023-12-27
217217+ docker-machine-xhyve = throw "'docker-machine-xhyve' has been removed, because 'docker-machine' was archived upstream and removed"; # Added 2023-12-27
214218 dolphin-emu-beta = dolphin-emu; # Added 2023-02-11
215219 dolphinEmu = dolphin-emu; # Added 2021-11-10
216220 dolphinEmuMaster = dolphin-emu-beta; # Added 2021-11-10