gajim: fix missing metadata (#350663)

This commit is contained in:
7c6f434c
2024-10-23 16:21:59 +00:00
committed by GitHub
@@ -47,6 +47,14 @@ python3.pkgs.buildPythonApplication rec {
dontWrapGApps = true;
preBuild = ''
python make.py build --dist unix
'';
postInstall = ''
python make.py install --dist unix --prefix=$out
'';
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';