perlPackages.Po4a: make devdoc reproducible
This commit is contained in:
parent
ae1dc133ea
commit
f2772c7749
@ -1,5 +1,7 @@
|
|||||||
{ stdenv, lib, fetchurl, docbook_xsl, docbook_xsl_ns, gettext, libxslt, glibcLocales, docbook_xml_dtd_412, docbook_sgml_dtd_41, texlive, opensp
|
{ stdenv, lib, fetchurl, docbook_xsl, docbook_xsl_ns, gettext, libxslt, glibcLocales, docbook_xml_dtd_412, docbook_sgml_dtd_41, texlive, opensp
|
||||||
, perl, buildPerlPackage, ModuleBuild, TextWrapI18N, LocaleGettext, TermReadKey, SGMLSpm, UnicodeLineBreak, PodParser, YAMLTiny }:
|
, perl, buildPerlPackage, ModuleBuild, TextWrapI18N, LocaleGettext, TermReadKey, SGMLSpm, UnicodeLineBreak, PodParser, YAMLTiny
|
||||||
|
, fetchpatch
|
||||||
|
}:
|
||||||
|
|
||||||
buildPerlPackage rec {
|
buildPerlPackage rec {
|
||||||
pname = "po4a";
|
pname = "po4a";
|
||||||
@ -8,6 +10,14 @@ buildPerlPackage rec {
|
|||||||
url = "https://github.com/mquinson/po4a/releases/download/v${version}/po4a-${version}.tar.gz";
|
url = "https://github.com/mquinson/po4a/releases/download/v${version}/po4a-${version}.tar.gz";
|
||||||
sha256 = "0eb510a66f59de68cf7a205342036cc9fc08b39334b91f1456421a5f3359e68b";
|
sha256 = "0eb510a66f59de68cf7a205342036cc9fc08b39334b91f1456421a5f3359e68b";
|
||||||
};
|
};
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
# make devdoc output reproducible
|
||||||
|
# https://github.com/mquinson/po4a/pull/387
|
||||||
|
url = "https://github.com/mquinson/po4a/commit/df7433b58f6570558d44b6aac885c2a8f7862e51.patch";
|
||||||
|
sha256 = "9MVkYiItR2P3PBCUc4OhEOUHQuLqTWUYtYlZ3L8miC8=";
|
||||||
|
})
|
||||||
|
];
|
||||||
nativeBuildInputs = [ docbook_xsl docbook_xsl_ns ModuleBuild ];
|
nativeBuildInputs = [ docbook_xsl docbook_xsl_ns ModuleBuild ];
|
||||||
propagatedBuildInputs = lib.optional (!stdenv.hostPlatform.isMusl) TextWrapI18N ++ [ LocaleGettext SGMLSpm UnicodeLineBreak PodParser YAMLTiny ];
|
propagatedBuildInputs = lib.optional (!stdenv.hostPlatform.isMusl) TextWrapI18N ++ [ LocaleGettext SGMLSpm UnicodeLineBreak PodParser YAMLTiny ];
|
||||||
# TODO: TermReadKey was temporarily removed from propagatedBuildInputs to unfreeze the build
|
# TODO: TermReadKey was temporarily removed from propagatedBuildInputs to unfreeze the build
|
||||||
|
Loading…
Reference in New Issue
Block a user