8be4bd7416
- There is no such thing as KDE 5
15 lines
290 B
Nix
15 lines
290 B
Nix
{
|
|
kdeApp, lib,
|
|
ecm, kio, libkexiv2, libkdcraw
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "kdegraphics-thumbnailers";
|
|
meta = {
|
|
license = [ lib.licenses.lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ ecm ];
|
|
propagatedBuildInputs = [ kio libkexiv2 libkdcraw ];
|
|
}
|