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

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