mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
20 lines
480 B
Nix
20 lines
480 B
Nix
{ plasmaPackage, extra-cmake-modules, kconfig, kconfigwidgets
|
|
, kdbusaddons, kglobalaccel, ki18n, kwidgetsaddons, kxmlgui
|
|
, libkscreen, qtdeclarative
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "kscreen";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
kconfig kconfigwidgets kdbusaddons ki18n kwidgetsaddons kxmlgui
|
|
libkscreen
|
|
];
|
|
propagatedBuildInputs = [ kglobalaccel qtdeclarative ];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/kscreen-console"
|
|
'';
|
|
}
|