summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kbookmarks.nix
blob: 36ea740584292c1fb5b59b76212fe82384e14784 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  kdeFramework, lib, extra-cmake-modules,
  kcodecs, kconfig, kconfigwidgets, kcoreaddons, kiconthemes, kxmlgui
}:

kdeFramework {
  name = "kbookmarks";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [
    kcodecs kconfig kconfigwidgets kcoreaddons kiconthemes kxmlgui
  ];
}