mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
15 lines
348 B
Nix
15 lines
348 B
Nix
{ 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" ];
|
|
cmakeFlags = [
|
|
"-DBUILD_DESIGNERPLUGIN=OFF"
|
|
];
|
|
}
|