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