1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

gshogi: fix double wrapping (#349425)

This commit is contained in:
Aleksana 2024-10-21 11:21:15 +08:00 committed by GitHub
commit 467c797b15
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,6 +30,12 @@ python3.pkgs.buildPythonApplication rec {
pycairo
];
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
meta = with lib; {
homepage = "http://johncheetham.com/projects/gshogi/";
description = "Graphical implementation of the Shogi board game, also known as Japanese Chess";