Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / konqueror.nix
blobf048879ea545dab4c8d3e1e3e81d342bcc95f0c3
1 { lib
2 , mkDerivation
3 , extra-cmake-modules, kdoctools
4 , kinit, kcmutils, khtml, kdesu
5 , qtwebengine, qtx11extras, qtscript, qtwayland
6 }:
8 mkDerivation {
9   pname = "konqueror";
10   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
11   buildInputs = [
12     kcmutils khtml kinit kdesu
13     qtwebengine qtx11extras qtscript qtwayland
14   ];
16   # InitialPreference values are too high and any text/html ends up
17   # opening konqueror, even if firefox or chromium are also available.
18   # Resetting to 1, which is the default.
19   postPatch = ''
20     substituteInPlace kfmclient_html.desktop \
21       --replace InitialPreference=9 InitialPreference=1
22   '';
24   meta = {
25     homepage = "https://apps.kde.org/konqueror/";
26     description = "Web browser, file manager and viewer";
27     license = with lib.licenses; [ gpl2 ];
28     maintainers = [ ];
29   };