guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: qbittorrent: Fix icons not showing in GUI.


From: guix-commits
Subject: branch master updated: gnu: qbittorrent: Fix icons not showing in GUI.
Date: Sun, 22 Mar 2020 12:12:18 -0400

This is an automated email from the git hooks/post-receive script.

glv pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new aaa8893  gnu: qbittorrent: Fix icons not showing in GUI.
aaa8893 is described below

commit aaa8893715cd97aa8fdecab2180dac1fd0894070
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Sun Mar 22 17:06:36 2020 +0100

    gnu: qbittorrent: Fix icons not showing in GUI.
    
    * gnu/packages/bittorrent.scm (qbittorrent)[arguments]: Add a wrap-qt phase.
---
 gnu/packages/bittorrent.scm | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index fa63c49..0f63c3d 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -434,7 +434,18 @@ desktops.")
                             (assoc-ref %build-inputs "boost")
                             "/lib")
              "--enable-debug"
-             "QMAKE_LRELEASE=lrelease")))
+             "QMAKE_LRELEASE=lrelease")
+       #:modules ((guix build gnu-build-system)
+                  (guix build qt-utils)
+                  (guix build utils))
+       #:imported-modules (,@%gnu-build-system-modules
+                           (guix build qt-utils))
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'install 'wrap-qt
+           (lambda* (#:key outputs #:allow-other-keys)
+             (wrap-qt-program (assoc-ref outputs "out") "qbittorrent")
+             #t)))))
     (native-inputs
      `(("pkg-config" ,pkg-config)
        ("qttools" ,qttools)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]