summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/kbookmarks.nix
blob: 1a469ab4db6dac39ec3faaac20e9686feca5837c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ kdeFramework, lib
, extra-cmake-modules
, kcodecs
, kconfig
, kconfigwidgets
, kcoreaddons
, kiconthemes
, kxmlgui
}:

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