We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1684889 commit 3abdaf4Copy full SHA for 3abdaf4
pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/default.nix
@@ -20,13 +20,10 @@ stdenv.mkDerivation (finalAttrs: {
20
21
inherit unwrapped;
22
23
- nativeBuildInputs =
24
- [
25
- wrapQtAppsHook
26
- ]
27
- ++ lib.optionals withWebkit [
28
- wrapGAppsHook3
29
- ];
+ nativeBuildInputs = [
+ wrapQtAppsHook
+ wrapGAppsHook3
+ ];
30
31
buildInputs =
32
[
@@ -58,7 +55,7 @@ stdenv.mkDerivation (finalAttrs: {
58
55
runHook postInstall
59
56
'';
60
57
61
- preFixup = lib.optionalString (stdenv.hostPlatform.isLinux && withWebkit) ''
+ preFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
62
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
63
64
0 commit comments