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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
578 B
Nix
Raw Normal View History

2017-05-26 21:44:36 +01:00
{
mkDerivation,
extra-cmake-modules,
2020-02-01 01:48:14 +00:00
kconfig, kcmutils, kconfigwidgets, kdbusaddons, kglobalaccel, ki18n,
2020-04-06 22:49:47 +01:00
kwidgetsaddons, kxmlgui, libkscreen, qtdeclarative, qtgraphicaleffects, qtsensors,
2022-03-29 16:18:05 +01:00
kwindowsystem, kdeclarative, plasma-framework, qtx11extras
2016-04-21 17:01:22 +01:00
}:
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "kscreen";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
2020-02-01 01:48:14 +00:00
kconfig kcmutils kconfigwidgets kdbusaddons kglobalaccel ki18n
2020-04-06 22:49:47 +01:00
kwidgetsaddons kxmlgui libkscreen qtdeclarative qtgraphicaleffects qtsensors
2022-03-29 16:18:05 +01:00
kwindowsystem kdeclarative plasma-framework qtx11extras
2016-04-21 17:01:22 +01:00
];
}