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