nixpkgs/pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix

14 lines
299 B
Nix
Raw Normal View History

2016-04-21 08:32:21 -07:00
{ kdeFramework, lib
, extra-cmake-modules
, kcoreaddons
, kwindowsystem
, qtx11extras
}:
kdeFramework {
name = "kcrash";
2016-04-28 08:50:26 -07:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-04-21 08:32:21 -07:00
nativeBuildInputs = [ extra-cmake-modules ];
2016-04-28 08:50:26 -07:00
propagatedBuildInputs = [ kcoreaddons kwindowsystem qtx11extras ];
2016-04-21 08:32:21 -07:00
}