Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions nixos/doc/manual/release-notes/rl-2305.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ In addition to numerous new and upgraded packages, this release has the followin

- Calling `makeSetupHook` without passing a `name` argument is deprecated.

- Texinfo has been updated to 7.0.2

- Qt 5.12 and 5.14 have been removed, as the corresponding branches have been EOL upstream for a long time. This affected under 10 packages in nixpkgs, largely unmaintained upstream as well, however, out-of-tree package expressions may need to be updated manually.

- The [services.wordpress.sites.<name>.plugins](#opt-services.wordpress.sites._name_.plugins) and [services.wordpress.sites.<name>.themes](#opt-services.wordpress.sites._name_.themes) options have been converted from sets to attribute sets to allow for consumers to specify explicit install paths via attribute name.
Expand Down
7 changes: 7 additions & 0 deletions pkgs/development/tools/misc/texinfo/7.0.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import ./common.nix {
version = "7.0.2";
sha256 = "sha256-8hHsMmE4PhqJ5FVak7nQF/6Ae5w5kvst/0hx2ubaVK0=";
postPatch = ''
patchShebangs tp/maintain
'';
}
3 changes: 2 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18667,7 +18667,8 @@ with pkgs;
texinfo6_5 = callPackage ../development/tools/misc/texinfo/6.5.nix { }; # needed for allegro
texinfo6_7 = callPackage ../development/tools/misc/texinfo/6.7.nix { }; # needed for gpm, iksemel and fwknop
texinfo6 = callPackage ../development/tools/misc/texinfo/6.8.nix { };
texinfo = texinfo6;
texinfo7 = callPackage ../development/tools/misc/texinfo/7.0.nix { };
texinfo = texinfo7;
texinfoInteractive = texinfo.override { interactive = true; };

texi2html = callPackage ../development/tools/misc/texi2html { };
Expand Down