novnc: use installed package files as default for --web

This allows novnc to run without manually supplying the location of
`vnc.html` in the Nix store or assembled environment.
This commit is contained in:
David Warde-Farley
2022-09-30 00:26:32 +01:00
parent 60737ae4ce
commit 1dafc2cd56
2 changed files with 28 additions and 0 deletions
@@ -11,6 +11,12 @@ stdenv.mkDerivation rec {
sha256 = "sha256-Z+bks7kcwj+Z3uf/t0u25DnGOM60QhSH6uuoIi59jqU=";
};
patches = [ ./fix-paths.patch ];
postPatch = ''
substituteAllInPlace utils/novnc_proxy
'';
installPhase = ''
runHook preInstall
@@ -0,0 +1,22 @@
diff --git a/utils/novnc_proxy b/utils/novnc_proxy
index 0900f7e..a931763 100755
--- a/utils/novnc_proxy
+++ b/utils/novnc_proxy
@@ -22,7 +22,7 @@ usage() {
echo " Default: self.pem"
echo " --key KEY Path to key file, when not combined with cert"
echo " --web WEB Path to web files (e.g. vnc.html)"
- echo " Default: ./"
+ echo " Default: @out@/share/webapps/novnc"
echo " --ssl-only Disable non-https connections."
echo " "
echo " --record FILE Record traffic to FILE.session.js"
@@ -44,7 +44,7 @@ PORT="6080"
VNC_DEST="localhost:5900"
CERT=""
KEY=""
-WEB=""
+WEB="@out@/share/webapps/novnc"
proxy_pid=""
SSLONLY=""
RECORD_ARG=""