summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/kcrash.nix
blob: d45d73d33e415edcc223d0f5d52539910ea1bdd0 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                  
 
              
                  
                                                        
                                              


                                                          
 
{
  mkDerivation, lib,
  extra-cmake-modules,
  kcoreaddons, kwindowsystem, qtbase, qtx11extras,
}:

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