mate.pluma: Patch missing dependencies for plugins

Signed-off-by: Federico Damián Schonborn <fdschonborn@gmail.com>
This commit is contained in:
Federico Damián Schonborn 2023-12-09 01:00:48 -03:00
parent 3a50e0e6cb
commit 9d7136ff2a
No known key found for this signature in database
GPG Key ID: F0418D7648392153

View File

@ -32,6 +32,7 @@ stdenv.mkDerivation rec {
itstool
perl
pkg-config
python3.pkgs.wrapPython
wrapGAppsHook
];
@ -47,6 +48,16 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
pythonPath = with python3.pkgs; [
pycairo
six
];
postFixup = ''
buildPythonPath "$pythonPath"
patchPythonScript $out/lib/pluma/plugins/snippets/Snippet.py
'';
passthru.updateScript = mateUpdateScript { inherit pname; };
meta = with lib; {