about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/kcrash.nix
blob: b919c7ad222818b1a4c259d592c2d78648f1fe1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ kdeFramework, lib
, extra-cmake-modules
, kcoreaddons
, kwindowsystem
, qtx11extras
}:

kdeFramework {
  name = "kcrash";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kcoreaddons kwindowsystem qtx11extras ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}