nixpkgs/pkgs/development/libraries/kde-frameworks-5.16/kcrash.nix

17 lines
326 B
Nix
Raw Normal View History

2015-11-21 17:24:13 +00:00
{ 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 ];
};
}