52 lines
1,007 B
Nix
52 lines
1,007 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
wrapGAppsHook3,
|
|
glib,
|
|
gtk3,
|
|
karchive,
|
|
kcmutils,
|
|
kconfigwidgets,
|
|
ki18n,
|
|
kiconthemes,
|
|
kio,
|
|
knewstuff,
|
|
gsettings-desktop-schemas,
|
|
xsettingsd,
|
|
kdecoration,
|
|
sass,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kde-gtk-config";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
wrapGAppsHook3
|
|
];
|
|
dontWrapGApps = true; # There is nothing to wrap
|
|
buildInputs = [
|
|
ki18n
|
|
kio
|
|
glib
|
|
gtk3
|
|
karchive
|
|
kcmutils
|
|
kconfigwidgets
|
|
kiconthemes
|
|
knewstuff
|
|
gsettings-desktop-schemas
|
|
xsettingsd
|
|
kdecoration
|
|
sass
|
|
];
|
|
cmakeFlags = [
|
|
"-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-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\""
|
|
'';
|
|
}
|