about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kdewebkit.nix
blob: b6d548cabfcd1ea3c5b54c345353367c0d95d4bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ mkDerivation, extra-cmake-modules
, kconfig, kcoreaddons, kio, kparts, qtwebkit
}:

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