kdewebkit: remove

kdewebkit doesn't seem to be used anymore
and doesn't have any nixpkgs package maintainers.

I'm not sure whether the entry at
6164b7bb61/pkgs/development/libraries/kde-frameworks/srcs.nix (L230-L237)
is also part of this, but that file has a DO NOT EDIT comment,
so I'm leaving it as-is.
This commit is contained in:
Raphael Borun Das Gupta 2022-11-19 19:56:25 +01:00
parent 89739b5f6a
commit 8d9eab433a
2 changed files with 0 additions and 15 deletions

View file

@ -159,7 +159,6 @@ let
kded = callPackage ./kded.nix {};
kdesignerplugin = callPackage ./kdesignerplugin.nix {};
kdesu = callPackage ./kdesu {};
kdewebkit = callPackage ./kdewebkit.nix {};
kemoticons = callPackage ./kemoticons.nix {};
kglobalaccel = callPackage ./kglobalaccel.nix {};
kiconthemes = callPackage ./kiconthemes {};

View file

@ -1,14 +0,0 @@
{ 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"
];
}