2017-05-15 10:05:35 -07:00
|
|
|
{
|
2021-01-27 12:53:47 -08:00
|
|
|
mkDerivation, lib, fetchpatch,
|
2017-05-15 10:05:35 -07:00
|
|
|
extra-cmake-modules,
|
|
|
|
kconfig, kwidgetsaddons, qtbase, qttools
|
|
|
|
}:
|
2016-04-21 08:32:21 -07:00
|
|
|
|
2017-05-15 10:05:35 -07:00
|
|
|
mkDerivation {
|
2016-04-21 08:32:21 -07:00
|
|
|
name = "kcompletion";
|
2016-04-28 08:49:38 -07:00
|
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
2021-01-27 12:53:47 -08:00
|
|
|
patches = [
|
|
|
|
# https://mail.kde.org/pipermail/distributions/2021-January/000928.html
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://invent.kde.org/frameworks/kcompletion/commit/7acda936f06193e9fc85ae5cf9ccc8d65971f657.patch";
|
|
|
|
sha256 = "150ff506rhr5pin5363ks222vhv8qd77y5s5nyylcbdjry3ljd3n";
|
|
|
|
})
|
|
|
|
];
|
2017-05-22 11:49:07 -07:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [ kconfig kwidgetsaddons qttools ];
|
|
|
|
propagatedBuildInputs = [ qtbase ];
|
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-21 08:32:21 -07:00
|
|
|
}
|