mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 07:57:29 +00:00
texlive.bin.xpdfopen: init (#250388)
This commit is contained in:
parent
e134c208ae
commit
49ca8fb4ee
@ -473,6 +473,19 @@ xdvi = stdenv.mkDerivation {
|
||||
# TODO: it's suspicious that mktexpk generates fonts into ~/.texlive2014
|
||||
};
|
||||
|
||||
xpdfopen = stdenv.mkDerivation {
|
||||
pname = "texlive-xpdfopen.bin";
|
||||
inherit (lib.head texlive.xpdfopen.pkgs) version;
|
||||
|
||||
inherit (common) src;
|
||||
|
||||
buildInputs = [ libX11 ];
|
||||
|
||||
preConfigure = "cd utils/xpdfopen";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
};
|
||||
|
||||
} # un-indented
|
||||
|
||||
// lib.optionalAttrs (!clisp.meta.broken) # broken on aarch64 and darwin (#20062)
|
||||
|
@ -123,9 +123,6 @@ let
|
||||
#### adjustments to binaries
|
||||
# TODO patch the scripts from bin.* directly in bin.* instead of here
|
||||
|
||||
# TODO we do not build binaries for the following packages (yet!)
|
||||
xpdfopen.binfiles = [];
|
||||
|
||||
# mptopdf is a format link, but not generated by texlinks
|
||||
# so we add it back to binfiles to generate it from mkPkgBin
|
||||
mptopdf.binfiles = (orig.mptopdf.binfiles or []) ++ [ "mptopdf" ];
|
||||
|
Loading…
Reference in New Issue
Block a user