Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: aea8dde8b321
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b6cfdceb7f98
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 28, 2019

  1. perlPackages.Po4a: fix build

    Backport of #72170
    Related issue: #71296 (Po4a build get stuck in a loop)
    
    Term::ReadKey is an optional dependency. From upstream:
    > This module is used to retrieve the terminal's line width.
    > If it is not present, the line width can be specified with the COLUMN environment variable.
    c0bw3b committed Oct 28, 2019
    Copy the full SHA
    b6cfdce View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 pkgs/top-level/perl-packages.nix
3 changes: 2 additions & 1 deletion pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -12545,7 +12545,8 @@ let
sha256 = "5010e1b7df1115cbd475f46587fc05fefc97301f9bba0c2f15106005ca017507";
};
nativeBuildInputs = [ pkgs.docbook_xsl pkgs.docbook_xsl pkgs.docbook_xsl_ns ];
propagatedBuildInputs = [ TextWrapI18N LocaleGettext TermReadKey SGMLSpm ModuleBuild UnicodeLineBreak ModuleBuild ];
propagatedBuildInputs = [ TextWrapI18N LocaleGettext SGMLSpm ModuleBuild UnicodeLineBreak ModuleBuild ];
# TermReadKey was removed from propagatedBuildInputs to unfreeze the build
buildInputs = [ pkgs.gettext pkgs.libxslt pkgs.glibcLocales pkgs.docbook_xml_dtd_412 pkgs.docbook_sgml_dtd_41 pkgs.texlive.combined.scheme-basic pkgs.jade ];
LC_ALL="en_US.UTF-8";
SGML_CATALOG_FILES = "${pkgs.docbook_xml_dtd_412}/xml/dtd/docbook/catalog.xml";