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

30 lines
379 B
Nix
Raw Normal View History

{ kdeApp
2015-09-27 17:03:46 +02:00
, lib
, automoc4
, cmake
, perl
, pkgconfig
, kdelibs
, libkexiv2
, libkdcraw
}:
kdeApp {
2015-09-27 17:03:46 +02:00
name = "kdegraphics-thumbnailers";
nativeBuildInputs = [
automoc4
cmake
perl
pkgconfig
];
buildInputs = [
kdelibs
libkexiv2
libkdcraw
];
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}