Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
570 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
mkDerivation,
extra-cmake-modules,
kbookmarks,
kcompletion,
kconfig,
kconfigwidgets,
ki18n,
kiconthemes,
kio,
knewstuff,
knotifications,
kpackage,
kwidgetsaddons,
libXcursor,
qtx11extras,
}:
mkDerivation {
pname = "frameworkintegration";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
kbookmarks
kcompletion
kconfig
ki18n
kio
knewstuff
knotifications
kpackage
kwidgetsaddons
libXcursor
qtx11extras
];
propagatedBuildInputs = [
kconfigwidgets
kiconthemes
];
}