diff options
author | Simon South <simon@simonsouth.net> | 2024-01-04 15:33:55 -0500 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-01-14 10:01:59 +0100 |
commit | e7823dbe8c32482ef02c53e688433fdc4a453aea (patch) | |
tree | 088d8a0ecb4f0f1474f6653f908b5debb248b05c /gnu/packages/games.scm | |
parent | 18393fcdddf5c3d834fa89ebf5f3925fc5b166ed (diff) | |
download | guix-e7823dbe8c32482ef02c53e688433fdc4a453aea.tar.gz |
gnu: fifengine: Fix runtime error when using Python 3.9 or newer.
* gnu/packages/patches/fifengine-python-3.9-compat.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/games.scm (fifengine)[source]: Apply it. Change-Id: I61001d6b87db00c71f1e2e6ca3bac8581e941451 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index cd20c64dc4..f0f9061717 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -4118,7 +4118,8 @@ Widgets, and allows users to create more.") "fifengine/tar.gz/" version)) (file-name (string-append name "-" version ".tar.gz")) (patches (search-patches "fifengine-swig-compat.patch" - "fifengine-boost-compat.patch")) + "fifengine-boost-compat.patch" + "fifengine-python-3.9-compat.patch")) (sha256 (base32 "1y4grw25cq5iqlg05rnbyxw1njl11ypidnlsm3qy4sm3xxdvb0p8")))) |