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

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