From 5478467f967c1d5e633cb87efcf4c8511e742469 Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Fri, 2 Dec 2022 21:33:22 +0800 Subject: [PATCH] rosenthal: qbittorrent-enhanced-edition-nox: Fix build issue. * rosenthal/packages/bittorrent.scm (qbittorrent-enhanced-edition-nox) [arguments]<#:phases>: Delete `wrap-qt` phase. --- rosenthal/packages/bittorrent.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rosenthal/packages/bittorrent.scm b/rosenthal/packages/bittorrent.scm index 40ee95b..95d93d8 100644 --- a/rosenthal/packages/bittorrent.scm +++ b/rosenthal/packages/bittorrent.scm @@ -48,7 +48,10 @@ the following features: (substitute-keyword-arguments (package-arguments base) ((#:configure-flags configure-flags) #~(append #$configure-flags - (list "--disable-gui"))))) + (list "--disable-gui"))) + ((#:phases phases) + #~(modify-phases #$phases + (delete 'wrap-qt))))) (inputs (modify-inputs (package-inputs base) (delete "qtsvg-5"))))))