mate.pluma: Patch missing dependencies for plugins
Signed-off-by: Federico Damián Schonborn <fdschonborn@gmail.com>
This commit is contained in:
parent
3a50e0e6cb
commit
9d7136ff2a
1 changed files with 11 additions and 0 deletions
|
@ -32,6 +32,7 @@ stdenv.mkDerivation rec {
|
||||||
itstool
|
itstool
|
||||||
perl
|
perl
|
||||||
pkg-config
|
pkg-config
|
||||||
|
python3.pkgs.wrapPython
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -47,6 +48,16 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
pythonPath = with python3.pkgs; [
|
||||||
|
pycairo
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
buildPythonPath "$pythonPath"
|
||||||
|
patchPythonScript $out/lib/pluma/plugins/snippets/Snippet.py
|
||||||
|
'';
|
||||||
|
|
||||||
passthru.updateScript = mateUpdateScript { inherit pname; };
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue