nixpkgs/pkgs/desktops/plasma-5/khotkeys.nix

23 lines
656 B
Nix
Raw Normal View History

2016-07-30 14:36:52 +00:00
{ plasmaPackage, ecm, kdoctools, kcmutils
2016-04-21 16:01:22 +00:00
, kdbusaddons, kdelibs4support, kglobalaccel, ki18n, kio, kxmlgui
, plasma-framework, plasma-workspace, qtx11extras
2017-02-12 09:50:33 +00:00
, fetchpatch
2016-04-21 16:01:22 +00:00
}:
plasmaPackage {
name = "khotkeys";
2016-07-30 14:36:52 +00:00
nativeBuildInputs = [ ecm kdoctools ];
2017-02-12 09:50:33 +00:00
patches = [
# Patch is in 5.9 and up.
(fetchpatch {
url = "https://cgit.kde.org/khotkeys.git/patch/?id=f8f7eaaf41e2b95ebfa4b2e35c6ee252524a471b";
sha256 = "1wxx3qv16jd623jh728xcda8i4y1daq25skwilhv4cfvqxyzk7nn";
2017-02-12 09:50:33 +00:00
})
];
2016-04-21 16:01:22 +00:00
propagatedBuildInputs = [
2016-04-28 17:52:42 +00:00
kdelibs4support kglobalaccel ki18n kio plasma-framework plasma-workspace
qtx11extras kcmutils kdbusaddons kxmlgui
2016-04-21 16:01:22 +00:00
];
}