diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-04-19 23:21:46 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-04-19 23:21:46 +0200 |
commit | 0e2e7c7554ca5dc6b4f547e61d97e2d5b07f7799 (patch) | |
tree | 5ac56b81e420aa61751ea47f430ba0bba81eb390 /gnu/packages/qt.scm | |
parent | 3d1b93db65423eb51e37c81d4bcc1243251ce3ae (diff) | |
download | guix-0e2e7c7554ca5dc6b4f547e61d97e2d5b07f7799.tar.gz |
gnu: python-shiboken-2: Fix compilation with Python 3.10.
* gnu/packages/patches/python-shiboken-2-compat.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/qt.scm (python-shiboken-2): Use it.
Diffstat (limited to 'gnu/packages/qt.scm')
-rw-r--r-- | gnu/packages/qt.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 205cacc580..61a81a12df 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2014, 2015, 2023 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com> -;;; Copyright © 2015, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2015, 2018, 2019, 2020, 2021, 2023 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2017 Nikita <nikita@n0.is> ;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be> @@ -3921,7 +3921,8 @@ color-related widgets.") version ".tar.xz")) (sha256 (base32 - "0pbbdypwkn3vrgy8ww207fl8pqq4jv80bck9qz5v9dfyr0166hr3")))) + "0pbbdypwkn3vrgy8ww207fl8pqq4jv80bck9qz5v9dfyr0166hr3")) + (patches (search-patches "python-shiboken-2-compat.patch")))) (build-system cmake-build-system) (inputs (list clang-toolchain |