ch9344: 2.0 -> 0-unstable-2024-11-15 (#354536)
[NixPkgs.git] / pkgs / applications / kde / konqueror.nix
blobce734cb3024a31c40d2124892f0489c8b9796c2e
2   lib,
3   mkDerivation,
4   extra-cmake-modules,
5   kdoctools,
6   kinit,
7   kcmutils,
8   khtml,
9   kdesu,
10   qtwebengine,
11   qtx11extras,
12   qtscript,
13   qtwayland,
16 mkDerivation {
17   pname = "konqueror";
18   nativeBuildInputs = [
19     extra-cmake-modules
20     kdoctools
21   ];
22   buildInputs = [
23     kcmutils
24     khtml
25     kinit
26     kdesu
27     qtwebengine
28     qtx11extras
29     qtscript
30     qtwayland
31   ];
33   # InitialPreference values are too high and any text/html ends up
34   # opening konqueror, even if firefox or chromium are also available.
35   # Resetting to 1, which is the default.
36   postPatch = ''
37     substituteInPlace kfmclient_html.desktop \
38       --replace InitialPreference=9 InitialPreference=1
39   '';
41   meta = {
42     homepage = "https://apps.kde.org/konqueror/";
43     description = "Web browser, file manager and viewer";
44     license = with lib.licenses; [ gpl2 ];
45     maintainers = [ ];
46   };