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

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