mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
c3e3111231
* Make sure that polkit actions get installed in $out. svn path=/nixpkgs/branches/kde-4.7/; revision=27737
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";
|
||
};
|
||
}
|