Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,10 @@ stdenv.mkDerivation (finalAttrs: {

inherit unwrapped;

nativeBuildInputs =
[
wrapQtAppsHook
]
++ lib.optionals withWebkit [
wrapGAppsHook3
];
nativeBuildInputs = [
wrapQtAppsHook
wrapGAppsHook3
];

buildInputs =
[
Expand Down Expand Up @@ -58,7 +55,7 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstall
'';

preFixup = lib.optionalString (stdenv.hostPlatform.isLinux && withWebkit) ''
preFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';

Expand Down