2024-06-30 08:16:52 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchurl,
|
|
|
|
python3,
|
|
|
|
libxslt,
|
|
|
|
texliveBasic,
|
|
|
|
enableAllFeatures ? false,
|
|
|
|
imagemagick,
|
|
|
|
fig2dev,
|
|
|
|
inkscape,
|
|
|
|
fontconfig,
|
|
|
|
ghostscript,
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
tex ? texliveBasic.withPackages (
|
|
|
|
ps: with ps; [
|
|
|
|
# satisfy all packages that ./configure mentions
|
|
|
|
epstopdf
|
|
|
|
anysize
|
|
|
|
appendix
|
|
|
|
changebar
|
|
|
|
fancybox
|
|
|
|
fancyvrb
|
|
|
|
float
|
|
|
|
footmisc
|
|
|
|
listings
|
|
|
|
jknapltx # for mathrsfs.sty
|
|
|
|
multirow
|
|
|
|
overpic
|
|
|
|
pdfpages
|
|
|
|
pdflscape
|
|
|
|
graphics
|
|
|
|
stmaryrd
|
|
|
|
subfigure
|
|
|
|
titlesec
|
|
|
|
wasysym
|
|
|
|
# pkgs below don't seem requested by dblatex, but our manual fails without them
|
|
|
|
ec
|
|
|
|
zapfding
|
|
|
|
symbol
|
|
|
|
eepic
|
|
|
|
times
|
|
|
|
rsfs
|
|
|
|
cs
|
|
|
|
tex4ht
|
|
|
|
courier
|
|
|
|
helvetic
|
|
|
|
ly1
|
|
|
|
]
|
|
|
|
),
|
2024-05-02 00:46:19 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
# NOTE: enableAllFeatures just purifies the expression, it doesn't actually
|
|
|
|
# enable any extra features.
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "dblatex${lib.optionalString enableAllFeatures "-full"}";
|
|
|
|
version = "0.3.12";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/dblatex/${pname}3-${version}.tar.bz2";
|
|
|
|
sha256 = "0yd09nypswy3q4scri1dg7dr99d7gd6r2dwx0xm81l9f4y32gs0n";
|
|
|
|
};
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
buildInputs =
|
|
|
|
[
|
|
|
|
python3
|
|
|
|
libxslt
|
|
|
|
tex
|
|
|
|
]
|
|
|
|
++ lib.optionals enableAllFeatures [
|
|
|
|
imagemagick
|
|
|
|
fig2dev
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
# TODO: dblatex tries to execute texindy command, but nixpkgs doesn't have
|
|
|
|
# that yet. In Ubuntu, texindy is a part of the xindy package.
|
2024-06-30 08:16:52 +00:00
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
sed -i 's|self.install_layout == "deb"|False|' setup.py
|
|
|
|
''
|
|
|
|
+ lib.optionalString enableAllFeatures ''
|
|
|
|
for file in $(find -name "*.py"); do
|
|
|
|
sed -e 's|cmd = \["xsltproc|cmd = \["${libxslt.bin}/bin/xsltproc|g' \
|
|
|
|
-e 's|Popen(\["xsltproc|Popen(\["${libxslt.bin}/bin/xsltproc|g' \
|
|
|
|
-e 's|cmd = \["texindy|cmd = ["nixpkgs_is_missing_texindy|g' \
|
|
|
|
-e 's|cmd = "epstopdf|cmd = "${tex}/bin/epstopdf|g' \
|
|
|
|
-e 's|cmd = \["makeindex|cmd = ["${tex}/bin/makeindex|g' \
|
|
|
|
-e 's|doc.program = "pdflatex"|doc.program = "${tex}/bin/pdflatex"|g' \
|
|
|
|
-e 's|self.program = "latex"|self.program = "${tex}/bin/latex"|g' \
|
|
|
|
-e 's|Popen("pdflatex|Popen("${tex}/bin/pdflatex|g' \
|
|
|
|
-e 's|"fc-match"|"${fontconfig.bin}/bin/fc-match"|g' \
|
|
|
|
-e 's|"fc-list"|"${fontconfig.bin}/bin/fc-list"|g' \
|
|
|
|
-e 's|cmd = "inkscape|cmd = "${inkscape}/bin/inkscape|g' \
|
|
|
|
-e 's|cmd = "fig2dev|cmd = "${fig2dev}/bin/fig2dev|g' \
|
|
|
|
-e 's|cmd = \["ps2pdf|cmd = ["${ghostscript}/bin/ps2pdf|g' \
|
|
|
|
-e 's|cmd = "convert|cmd = "${imagemagick.out}/bin/convert|g' \
|
|
|
|
-i "$file"
|
|
|
|
done
|
|
|
|
'';
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
${python3.interpreter} ./setup.py install --prefix="$out" --use-python-path --verbose
|
|
|
|
'';
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
passthru = {
|
|
|
|
inherit tex;
|
|
|
|
};
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A program to convert DocBook to DVI, PostScript or PDF via LaTeX or ConTeXt";
|
|
|
|
mainProgram = "dblatex";
|
|
|
|
homepage = "https://dblatex.sourceforge.net/";
|
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|