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

14 lines
299 B
Nix
Raw Normal View History

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