From 861df8abd5743ba2056737fbc6dba55c6fde6475 Mon Sep 17 00:00:00 2001 From: Artem Khramov Date: Mon, 6 Apr 2020 14:04:33 +0600 Subject: [PATCH] rockbox-utility: add wrapQtAppsHook It seems like all QT apps which use dynamic plugins should be wrapped with `wrapQtAppsHook`. However, rockbox-utility is still not wrapped, therefore fails to launch. This change adds `qt5.wrapQtAppsHook` to nativeBuildInputs of rockbox-utility. --- pkgs/tools/misc/rockbox-utility/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/rockbox-utility/default.nix b/pkgs/tools/misc/rockbox-utility/default.nix index 232949b7dace..06a6c27d7c5e 100644 --- a/pkgs/tools/misc/rockbox-utility/default.nix +++ b/pkgs/tools/misc/rockbox-utility/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgconfig, libusb1 , qtbase, qttools, makeWrapper, qmake -, withEspeak ? false, espeak ? null }: +, withEspeak ? false, espeak ? null, qt5 }: let inherit (stdenv.lib) getDev; in @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { buildInputs = [ libusb1 qtbase qttools ] ++ stdenv.lib.optional withEspeak espeak; - nativeBuildInputs = [ makeWrapper pkgconfig qmake ]; + nativeBuildInputs = [ makeWrapper pkgconfig qmake qt5.wrapQtAppsHook ]; postPatch = '' sed -i rbutil/rbutilqt/rbutilqt.pro \