mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 03:23:17 +00:00
09af15654f
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
17 lines
326 B
Nix
17 lines
326 B
Nix
{ 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 ];
|
|
};
|
|
}
|