anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / kde / kdegraphics-thumbnailers / default.nix
blob6686f582d6d2b72d900914cd303d48b7e1c47013
2   mkDerivation, lib, ghostscript, substituteAll,
3   extra-cmake-modules, karchive, kio, libkexiv2, libkdcraw, kdegraphics-mobipocket
4 }:
6 mkDerivation {
7   pname = "kdegraphics-thumbnailers";
8   meta = {
9     license = [ lib.licenses.lgpl21 ];
10     maintainers = [ lib.maintainers.ttuegel ];
11   };
12   nativeBuildInputs = [ extra-cmake-modules ];
13   buildInputs = [ karchive kio libkexiv2 libkdcraw kdegraphics-mobipocket ];
15   patches = [
16     # Hardcode patches to Ghostscript so PDF thumbnails work OOTB.
17     # Intentionally not doing the same for dvips because TeX is big.
18     (substituteAll {
19       gs = "${ghostscript}/bin/gs";
20       src = ./gs-paths.patch;
21     })
22   ];