28 lines
1004 B
Nix
28 lines
1004 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, wrapGAppsHook,
|
|
glib, gtk2, gtk3, karchive, kcmutils, kconfigwidgets, ki18n, kiconthemes, kio,
|
|
knewstuff, gsettings-desktop-schemas, xsettingsd, kdecoration, sass
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kde-gtk-config";
|
|
nativeBuildInputs = [ extra-cmake-modules wrapGAppsHook ];
|
|
dontWrapGApps = true; # There is nothing to wrap
|
|
buildInputs = [
|
|
ki18n kio glib gtk2 gtk3 karchive kcmutils kconfigwidgets kiconthemes
|
|
knewstuff gsettings-desktop-schemas xsettingsd kdecoration sass
|
|
];
|
|
cmakeFlags = [
|
|
"-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include"
|
|
"-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include"
|
|
"-DGLIB_SCHEMAS_DIR=${gsettings-desktop-schemas.out}/"
|
|
];
|
|
# The gtkconfig KDED module will crash the daemon if the GSettings schemas
|
|
# aren't found.
|
|
patches = [ ./0001-gsettings-schemas-path.patch ];
|
|
preConfigure = ''
|
|
NIX_CFLAGS_COMPILE+=" -DGSETTINGS_SCHEMAS_PATH=\"$GSETTINGS_SCHEMAS_PATH\""
|
|
'';
|
|
}
|