diff options
author | Sergey Trofimov <sarg@sarg.org.ru> | 2022-12-25 23:22:59 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-01-17 16:05:21 +0100 |
commit | ecda67a577570f412b103e5dd8ed1a44193a9c11 (patch) | |
tree | 86cdbf19abfadea4a9dc0fc4f2759f7c30be1089 | |
parent | 8d4c893ab5be6ca1a6082d0c6328af93f927b506 (diff) | |
download | guix-ecda67a577570f412b103e5dd8ed1a44193a9c11.tar.gz |
gnu: openmw: Use ffmpeg-4.
I've noticed, that openmw is not playable as it hangs on clicking any menu item. It seems the issue is known and fixed upstream, but a new version is not released yet. * gnu/packages/game-development.scm (openmw)[inputs]: Replace FFMPEG with FFMEG-4. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/game-development.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index e72b7cea7f..da9c63b799 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -1773,7 +1773,7 @@ of use.") (list boost doxygen pkg-config)) (inputs (list bullet - ffmpeg + ffmpeg-4 ; https://gitlab.com/OpenMW/openmw/-/issues/6631 libxt lz4 mygui-gl ; OpenMW does not need Ogre. |