Add missing linux dependencies (#10814)

Max Linke and Max Linke created

At least one of the dependencies requires cmake to configure the build
process.

On ubuntu libgit2-dev was missing. Debian and derivates do not install
development headers by default.



Release Notes:

- Improved Linux development setup scripts.

Co-authored-by: Max Linke <max.linke88@gmail.com>

Change summary

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

Detailed changes

script/linux 🔗

@@ -20,6 +20,7 @@ if [[ -n $apt ]]; then
     libssl-dev
     libzstd-dev
     libvulkan1
+    libgit2-dev
   )
   $maysudo "$apt" install -y "${deps[@]}"
   exit 0