faf0d3e91d
- Reduce environment pollution with a separate $bin output containing programs, plugins, and shared data. Libraries remain in $out and are not installed into the environment. - Only propagate build inputs as required.
28 lines
547 B
Nix
28 lines
547 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, glib
|
|
, gtk2
|
|
, gtk3
|
|
, karchive
|
|
, kcmutils
|
|
, kconfigwidgets
|
|
, ki18n
|
|
, kiconthemes
|
|
, kio
|
|
, knewstuff
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kde-gtk-config";
|
|
patches = [ ./0001-follow-symlinks.patch ];
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
ki18n kio glib gtk2 gtk3 karchive kcmutils kconfigwidgets kiconthemes
|
|
knewstuff
|
|
];
|
|
cmakeFlags = [
|
|
"-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include"
|
|
"-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include"
|
|
];
|
|
}
|