2016-07-30 03:13:00 +01:00
|
|
|
{
|
2020-01-12 22:36:15 +00:00
|
|
|
mkDerivation, lib, fetchpatch,
|
2019-04-22 20:48:13 +01:00
|
|
|
extra-cmake-modules, karchive, kio, libkexiv2, libkdcraw
|
2016-04-21 17:00:51 +01:00
|
|
|
}:
|
|
|
|
|
2017-06-02 16:49:52 +01:00
|
|
|
mkDerivation {
|
2016-04-21 17:00:51 +01:00
|
|
|
name = "kdegraphics-thumbnailers";
|
|
|
|
meta = {
|
|
|
|
license = [ lib.licenses.lgpl21 ];
|
|
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
|
|
};
|
2020-01-12 22:36:15 +00:00
|
|
|
patches = [
|
|
|
|
# Fix a bug with thumbnail.so processes hanging:
|
|
|
|
# https://bugs.kde.org/show_bug.cgi?id=404652
|
|
|
|
(fetchpatch {
|
2020-05-12 17:33:39 +01:00
|
|
|
url = "https://github.com/KDE/kdegraphics-thumbnailers/commit/3e2ea6e924d0e2a2cdd9bb435b06965117d6d34c.patch";
|
2020-01-12 22:36:15 +00:00
|
|
|
sha256 = "0fq85zhymmrq8vl0y6vgh87qf4c6fhcq704p4kpkaq7y0isxj4h1";
|
|
|
|
})
|
|
|
|
];
|
2017-02-26 12:49:15 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
2019-04-22 20:48:13 +01:00
|
|
|
buildInputs = [ karchive kio libkexiv2 libkdcraw ];
|
2016-04-21 17:00:51 +01:00
|
|
|
}
|