mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
44 lines
673 B
Nix
44 lines
673 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, kconfig
|
|
, kcmutils
|
|
, kconfigwidgets
|
|
, kdbusaddons
|
|
, kglobalaccel
|
|
, ki18n
|
|
, kwidgetsaddons
|
|
, kxmlgui
|
|
, libkscreen
|
|
, qtdeclarative
|
|
, qtgraphicaleffects
|
|
, qtsensors
|
|
, kwindowsystem
|
|
, kdeclarative
|
|
, plasma-framework
|
|
, qtx11extras
|
|
, layer-shell-qt
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kscreen";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kconfig
|
|
kcmutils
|
|
kconfigwidgets
|
|
kdbusaddons
|
|
kglobalaccel
|
|
ki18n
|
|
kwidgetsaddons
|
|
kxmlgui
|
|
libkscreen
|
|
qtdeclarative
|
|
qtgraphicaleffects
|
|
qtsensors
|
|
kwindowsystem
|
|
kdeclarative
|
|
plasma-framework
|
|
qtx11extras
|
|
layer-shell-qt
|
|
];
|
|
}
|