nixpkgs/pkgs/applications/kde-apps-15.12/kdegraphics-thumbnailers.nix

24 lines
333 B
Nix
Raw Normal View History

2015-11-21 20:08:42 +00:00
{ kdeApp
, lib
, extra-cmake-modules
, kio
, libkexiv2
, libkdcraw
}:
kdeApp {
name = "kdegraphics-thumbnailers";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kio
libkexiv2
libkdcraw
];
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}