xpra-html5: hooks in installPhase

Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
lucasew
2025-03-25 14:54:56 -03:00
parent 6cac98e3d3
commit 2c7ec001e7
+5 -1
View File
@@ -22,7 +22,11 @@ stdenvNoCC.mkDerivation (finalAttrs: {
uglify-js
];
installPhase = "python $src/setup.py install $out /share/xpra/www /share/xpra/www";
installPhase = ''
runHook preInstall
python $src/setup.py install $out /share/xpra/www /share/xpra/www
runHook postInstall
'';
passthru.updateScript = gitUpdater { rev-prefix = "v"; };