summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/kdewebkit.nix
blob: b7dcfb7fe64cdeaea1e18d4bbc7f54a0187d4663 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                   
{ mkDerivation, extra-cmake-modules
, kconfig, kcoreaddons, kio, kparts, qtwebkit
}:

mkDerivation {
  name = "kdewebkit";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kconfig kcoreaddons kio kparts ];
  propagatedBuildInputs = [ qtwebkit ];
  outputs = [ "out" "dev" ];
}