mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
09af15654f
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
18 lines
494 B
Nix
18 lines
494 B
Nix
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
|
|
, ki18n, kiconthemes, kio, kjobwidgets, knotifications, kservice
|
|
, ktextwidgets, kwidgetsaddons, kxmlgui
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kparts";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kconfig kcoreaddons kiconthemes kjobwidgets knotifications
|
|
kservice kwidgetsaddons
|
|
];
|
|
propagatedBuildInputs = [ ki18n kio ktextwidgets kxmlgui ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|