From d4efbac2420deeee77325faff1532646c672664d Mon Sep 17 00:00:00 2001 From: xeals Date: Sat, 20 Feb 2021 21:24:06 +1100 Subject: [PATCH] radeon-profile-daemon: add wrapQtAppsHook Required as part of the latest staging-next commit set to Nixpkgs [1]. Note that this breaks builds on all current non-unstable Nixpkgs branches (but as the repository notes, they are not supported anyway). [1]: https://github.com/NixOS/nixpkgs/blob/02924cf9514f1bb4cf8d82f80fba64c830afe54d/doc/languages-frameworks/qt.section.md --- pkgs/tools/misc/radeon-profile-daemon/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/radeon-profile-daemon/default.nix b/pkgs/tools/misc/radeon-profile-daemon/default.nix index 5abb6c6..6fff60a 100644 --- a/pkgs/tools/misc/radeon-profile-daemon/default.nix +++ b/pkgs/tools/misc/radeon-profile-daemon/default.nix @@ -4,14 +4,15 @@ , qtbase , qmake +, wrapQtAppsHook }: stdenv.mkDerivation rec { pname = "radeon-profile-daemon"; version = "20190603.g06qxq2h"; - nativeBuildInputs = [ qmake ]; buildInputs = [ qtbase ]; + nativeBuildInputs = [ qmake wrapQtAppsHook ]; src = ( fetchFromGitHub {