mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
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 ];
|
|
};
|
|
}
|