vcpkg-tool: add missing runtime deps

This commit is contained in:
h7x4 2024-07-01 20:11:46 +02:00
parent c91ba428da
commit d801c41d12
No known key found for this signature in database
GPG Key ID: 9F2F7D8250F35146

View File

@ -5,6 +5,7 @@
, cacert
, cmake
, cmakerc
, curl
, fmt
, git
, gzip
@ -12,6 +13,7 @@
, ninja
, openssh
, python3
, unzip
, zip
, zstd
, extraRuntimeDeps ? []
@ -55,12 +57,14 @@ stdenv.mkDerivation (finalAttrs: {
runtimeDeps = [
cacert
cmake
curl
git
gzip
meson
ninja
openssh
python3
unzip
zip
zstd
] ++ extraRuntimeDeps;