Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

texlive.bin.xpdfopen: init (#250388)

authored by Vincenzo Mantova and committed by GitHub 49ca8fb4 e134c208

+13 -3
+13
pkgs/tools/typesetting/tex/texlive/bin.nix
··· 473 473 # TODO: it's suspicious that mktexpk generates fonts into ~/.texlive2014 474 474 }; 475 475 476 + xpdfopen = stdenv.mkDerivation { 477 + pname = "texlive-xpdfopen.bin"; 478 + inherit (lib.head texlive.xpdfopen.pkgs) version; 479 + 480 + inherit (common) src; 481 + 482 + buildInputs = [ libX11 ]; 483 + 484 + preConfigure = "cd utils/xpdfopen"; 485 + 486 + enableParallelBuilding = true; 487 + }; 488 + 476 489 } # un-indented 477 490 478 491 // lib.optionalAttrs (!clisp.meta.broken) # broken on aarch64 and darwin (#20062)
-3
pkgs/tools/typesetting/tex/texlive/default.nix
··· 123 123 #### adjustments to binaries 124 124 # TODO patch the scripts from bin.* directly in bin.* instead of here 125 125 126 - # TODO we do not build binaries for the following packages (yet!) 127 - xpdfopen.binfiles = []; 128 - 129 126 # mptopdf is a format link, but not generated by texlinks 130 127 # so we add it back to binfiles to generate it from mkPkgBin 131 128 mptopdf.binfiles = (orig.mptopdf.binfiles or []) ++ [ "mptopdf" ];