summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kcrash.nix
blob: c8e674c88c5c96577629b118acbd946a40d92a64 (plain) (blame)
1
2
3
4
5
6
7
8
{ mkDerivation, lib, extra-cmake-modules, kcoreaddons, kwindowsystem, qtx11extras }:

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