mpdris2: make use of buildPythonApplication's wrapping

originally the executable was wrapped twice
This commit is contained in:
Acid Bong
2025-09-02 11:23:43 +03:00
parent 84b2033f04
commit ac46d7278e
+7
View File
@@ -47,6 +47,13 @@ python3.pkgs.buildPythonApplication rec {
pygobject3
];
# Python builder already uses makeWrapper, so we disable the hook
# and add its args to the existing ones for Python:
# https://nixos.org/manual/nixpkgs/stable/#ssec-gnome-common-issues-double-wrapped
dontWrapGApps = true;
makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ];
patches = [ ./fix-gettext-0.25.patch ];
meta = with lib; {