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

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