diff options
author | Zhu Zihao <all_but_last@163.com> | 2022-08-24 19:23:31 +0800 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-07 22:02:41 +0200 |
commit | a69581f17c04b90e7c25fb1ca1cabdf447df5da3 (patch) | |
tree | 5f89867b2d2fccb3b920ee498e5157b9c113ed08 /gnu | |
parent | f1bbdefd9e9140d955cee4e73a1c7a9c03755926 (diff) | |
download | guix-a69581f17c04b90e7c25fb1ca1cabdf447df5da3.tar guix-a69581f17c04b90e7c25fb1ca1cabdf447df5da3.tar.gz |
gnu: Add python-shiboken-6
* gnu/packages/qt.scm (python-shiboken-6): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/qt.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index c7aa91f264..80e2a26693 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -3810,6 +3810,40 @@ color-related widgets.") license:lgpl3 license:bsd-3)))) +(define-public python-shiboken-6 + (package + (inherit python-shiboken-2) + (name "python-shiboken-6") + (version "6.3.1") + (source (origin + (method url-fetch) + (uri (string-append "https://download.qt.io/official_releases" + "/QtForPython/pyside6/PySide6-" version + "-src/pyside-setup-opensource-src-" + version ".tar.xz")) + (sha256 + (base32 + "0xwri69nnbhn6fajm7l045r0s0qv8nlq6qj8wcj87srli3b5xa75")))) + (build-system cmake-build-system) + (inputs + (modify-inputs (package-inputs python-shiboken-2) + (replace "qtbase" qtbase) + (delete "qtxmlpatterns"))) + (arguments + (substitute-keyword-arguments (package-arguments python-shiboken-2) + ((#:phases p) + #~(modify-phases #$p + (replace 'use-shiboken-dir-only + (lambda _ (chdir "sources/shiboken6") #t)))) + ((#:configure-flags flags) + #~(cons* + ;; The RUNPATH of shibokenmodule contains the entry in build + ;; directory instead of install directory. + "-DCMAKE_SKIP_RPATH=TRUE" + (string-append "-DCMAKE_MODULE_LINKER_FLAGS=-Wl,-rpath=" + #$output "/lib") + #$flags)))))) + (define-public python-pyside-2 (package (name "python-pyside-2") |