mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 02:24:27 +00:00
09af15654f
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
22 lines
632 B
Nix
22 lines
632 B
Nix
{ kdeFramework, lib, extra-cmake-modules, giflib, karchive
|
|
, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs
|
|
, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons
|
|
, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "khtml";
|
|
nativeBuildInputs = [ extra-cmake-modules perl ];
|
|
buildInputs = [
|
|
giflib karchive kiconthemes knotifications kwallet kwidgetsaddons
|
|
kxmlgui phonon
|
|
];
|
|
propagatedBuildInputs = [
|
|
kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets
|
|
kwindowsystem qtx11extras sonnet
|
|
];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|