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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
579 B
Nix
Raw Normal View History

{
mkDerivation,
extra-cmake-modules, perl,
giflib, karchive, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs,
knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons, kwindowsystem,
2017-07-21 03:10:43 +01:00
kxmlgui, phonon, qtx11extras, sonnet, gperf
2016-04-21 16:32:21 +01:00
}:
mkDerivation {
2022-02-23 17:28:27 +00:00
pname = "khtml";
nativeBuildInputs = [ extra-cmake-modules perl ];
buildInputs = [
giflib karchive kcodecs kglobalaccel ki18n kiconthemes kio knotifications
kparts ktextwidgets kwallet kwidgetsaddons kwindowsystem kxmlgui phonon
2017-07-21 03:10:43 +01:00
qtx11extras sonnet gperf
2016-04-21 16:32:21 +01:00
];
propagatedBuildInputs = [ kjs ];
2016-04-21 16:32:21 +01:00
}