summary refs log tree commit diff
path: root/pkgs/applications/kde/kdegraphics-thumbnailers.nix
blob: f0d9fea5d0e68a99c903ddeeb4bbcc392a12f9f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  mkDerivation, lib, fetchpatch,
  extra-cmake-modules, karchive, kio, libkexiv2, libkdcraw, kdegraphics-mobipocket
}:

mkDerivation {
  pname = "kdegraphics-thumbnailers";
  meta = {
    license = [ lib.licenses.lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ karchive kio libkexiv2 libkdcraw kdegraphics-mobipocket ];
}