guix-commits
[Top][All Lists]
Advanced

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

01/26: gnu: kajongg: Wrap binary with pythonpath.


From: guix-commits
Subject: 01/26: gnu: kajongg: Wrap binary with pythonpath.
Date: Wed, 30 Dec 2020 03:42:18 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 50793bd41af7c1fa787bf1b409dcddbbb5224387
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Dec 30 10:11:26 2020 +0200

    gnu: kajongg: Wrap binary with pythonpath.
    
    * gnu/packages/games.scm (kajongg)[arguments]: Add phase to wrap binary
    with PYTHONPATH.
    [propagated-inputs]: Move python-twisted, python-pyqt ...
    [inputs]: ... to here.
---
 gnu/packages/games.scm | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 54ec564..c94a1e2 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -10119,6 +10119,15 @@ This package is part of the KDE games module.")
       (sha256
        (base32 "0ql6p5zifdpdf65r7ki9ml123azpwwk9x3x8r9ij6xhjnf7p7x6w"))))
     (build-system qt-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'install 'wrap
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (wrap-program (string-append out "/bin/kajongg")
+                 `("PYTHONPATH" ":" prefix (,(getenv "PYTHONPATH"))))
+               #t))))))
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
        ;("perl" ,perl)
@@ -10130,12 +10139,10 @@ This package is part of the KDE games module.")
        ("ki18n" ,ki18n)
        ("libkmahjongg" ,libkmahjongg)
        ("python" ,python)
+       ("python-twisted" ,python-twisted)
+       ("python-pyqt" ,python-pyqt)
        ("qtbase" ,qtbase)
        ("qtsvg" ,qtsvg)))
-    (propagated-inputs
-     `(("python-twisted" ,python-twisted)
-       ("python-pyqt" ,python-pyqt)))
-    ;; FIXME: Need to wrap PYTHONPATH
     (home-page "https://games.kde.org/";)
     (synopsis "Classical Mah Jongg game for 4 players")
     (description "Kajongg is the ancient Chinese board game for 4 players.



reply via email to

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