e1aa8a713b
I am automatically a maintainer of all packages in the set, so there is not reason to mention me explicitly as the maintainer of every individual package.
19 lines
578 B
Nix
19 lines
578 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, perl,
|
|
giflib, karchive, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs,
|
|
knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons, kwindowsystem,
|
|
kxmlgui, phonon, qtx11extras, sonnet, gperf
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "khtml";
|
|
nativeBuildInputs = [ extra-cmake-modules perl ];
|
|
buildInputs = [
|
|
giflib karchive kcodecs kglobalaccel ki18n kiconthemes kio knotifications
|
|
kparts ktextwidgets kwallet kwidgetsaddons kwindowsystem kxmlgui phonon
|
|
qtx11extras sonnet gperf
|
|
];
|
|
propagatedBuildInputs = [ kjs ];
|
|
}
|