Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
347 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
mkKdeDerivation,
replaceVars,
ghostscript,
}:
mkKdeDerivation {
pname = "kdegraphics-thumbnailers";
patches = [
# Hardcode patches to Ghostscript so PDF thumbnails work OOTB.
# Intentionally not doing the same for dvips because TeX is big.
(replaceVars ./gs-paths.patch {
gs = "${ghostscript}/bin/gs";
})
];
}