mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 11:02:05 +00:00
25 lines
760 B
Nix
25 lines
760 B
Nix
|
{ automoc4, cmake, kde, kdelibs, qt4, strigi, qimageblitz, libdbusmenu_qt
|
|||
|
, xorg, soprano, shared_desktop_ontologies, lm_sensors, pciutils, libraw1394
|
|||
|
, libusb, libxklavier, perl, python
|
|||
|
}:
|
|||
|
|
|||
|
kde.package {
|
|||
|
|
|||
|
buildInputs =
|
|||
|
[ cmake kdelibs qt4 automoc4 strigi qimageblitz libdbusmenu_qt
|
|||
|
xorg.libxkbfile xorg.libXcomposite xorg.libXScrnSaver xorg.libXtst
|
|||
|
xorg.libXcomposite xorg.libXdamage xorg.libXau
|
|||
|
soprano shared_desktop_ontologies lm_sensors pciutils libraw1394
|
|||
|
libusb python
|
|||
|
];
|
|||
|
|
|||
|
# Workaround for ‘undefined reference to `dlsym'’ in kwinglutils_funcs.cpp.
|
|||
|
NIX_LDFLAGS = "-ldl";
|
|||
|
|
|||
|
meta = {
|
|||
|
description = "KDE desktop environment workspace components";
|
|||
|
license = "GPLv2";
|
|||
|
kde.name = "kde-workspace";
|
|||
|
};
|
|||
|
}
|