Add libssl-dev for apt dependencies (#8512)

hamza72x created

While building on Ubuntu (arm64). I had to manually install
`libssl-dev`.
Just added that in `script/linux`.

Change summary

script/linux | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

script/linux 🔗

@@ -12,7 +12,7 @@ if [[ -n $apt ]]; then
     libfontconfig-dev
     libwayland-dev
     libxkbcommon-x11-dev
-    openssl
+    libssl-dev
   )
   $maysudo "$apt" install -y "${deps[@]}"
   exit 0