···1819- The default PHP version has been updated to 8.3.
200021- `nixos-rebuild-ng`, a full rewrite of `nixos-rebuild` in Python, is available for testing. You can enable it by setting [system.rebuild.enableNg](options.html#opt-system.rebuild.enableNg) in your configuration (this will replace the old `nixos-rebuild`), or by adding `nixos-rebuild-ng` to your `environment.systemPackages` (in this case, it will live side-by-side with `nixos-rebuild` as `nixos-rebuild-ng`). It is expected that the next major version of NixOS (25.11) will enable `system.rebuild.enableNg` by default.
22- A `nixos-rebuild build-image` sub-command has been added.
23
···1819- The default PHP version has been updated to 8.3.
2021+- The default Erlang OTP version has been updated to 27.
22+23- `nixos-rebuild-ng`, a full rewrite of `nixos-rebuild` in Python, is available for testing. You can enable it by setting [system.rebuild.enableNg](options.html#opt-system.rebuild.enableNg) in your configuration (this will replace the old `nixos-rebuild`), or by adding `nixos-rebuild-ng` to your `environment.systemPackages` (in this case, it will live side-by-side with `nixos-rebuild` as `nixos-rebuild-ng`). It is expected that the next major version of NixOS (25.11) will enable `system.rebuild.enableNg` by default.
24- A `nixos-rebuild build-image` sub-command has been added.
25
···8 zlib,
9 patchelf,
10 makeWrapper,
0011}:
12let
13 virtualBoxNixGuestAdditionsBuilder = callPackage ./builder.nix { };
14-15- # Forced to 1.18; vboxvideo doesn't seem to provide any newer ABI,
16- # and nixpkgs doesn't support older ABIs anymore.
17- xserverABI = "118";
1819 # Specifies how to patch binaries to make sure that libraries loaded using
20 # dlopen are found. We grep binaries for specific library names and patch
···31 {
32 name = "libXrandr.so";
33 pkg = xorg.libXrandr;
00000000000034 }
35 ];
36in
···8 zlib,
9 patchelf,
10 makeWrapper,
11+ wayland,
12+ libX11,
13}:
14let
15 virtualBoxNixGuestAdditionsBuilder = callPackage ./builder.nix { };
00001617 # Specifies how to patch binaries to make sure that libraries loaded using
18 # dlopen are found. We grep binaries for specific library names and patch
···29 {
30 name = "libXrandr.so";
31 pkg = xorg.libXrandr;
32+ }
33+ {
34+ name = "libwayland-client.so";
35+ pkg = wayland;
36+ }
37+ {
38+ name = "libX11.so";
39+ pkg = libX11;
40+ }
41+ {
42+ name = "libXt.so";
43+ pkg = xorg.libXt;
44 }
45 ];
46in
···23 doCheck = false;
2425 meta = {
26- description = "Run the appripriate migrations for migrating the filesystem repository of Kubo (migrations not included)";
27 homepage = "https://github.com/ipfs/fs-repo-migrations";
28 license = lib.licenses.mit;
29 platforms = lib.platforms.unix;
···23 doCheck = false;
2425 meta = {
26+ description = "Run the appropriate migrations for migrating the filesystem repository of Kubo (migrations not included)";
27 homepage = "https://github.com/ipfs/fs-repo-migrations";
28 license = lib.licenses.mit;
29 platforms = lib.platforms.unix;
+1-1
pkgs/by-name/ku/kubo-migrator/package.nix
···21 '';
2223 meta = kubo-migrator-unwrapped.meta // {
24- description = "Run the appripriate migrations for migrating the filesystem repository of Kubo";
25 };
26}
···21 '';
2223 meta = kubo-migrator-unwrapped.meta // {
24+ description = "Run the appropriate migrations for migrating the filesystem repository of Kubo";
25 };
26}