summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/knewstuff.nix
blob: 70f3cbb3c37ed8cf9d31d12ce6d6938554a1a403 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkDerivation, lib,
  extra-cmake-modules,
  attica, karchive, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes,
  kio, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui, qtbase,
  qtdeclarative,
}:

mkDerivation {
  name = "knewstuff";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    karchive kcompletion kconfig kcoreaddons ki18n kiconthemes kio kitemviews
    ktextwidgets kwidgetsaddons qtbase qtdeclarative
  ];
  propagatedBuildInputs = [ attica kservice kxmlgui ];
}