build: nix: switch to non-static zstd

When we added zstd (f14e6e73bb), we used the static library
as we used some experimental APIs. However, now the dynamic
library works, so apparently the experimenal API is now standard.

Switch to the dynamic library. It doesn't improve anything, but it
aligns with how we do things.

Closes #12902
This commit is contained in:
Avi Kivity
2023-02-16 17:28:24 +02:00
committed by Botond Dénes
parent ae3489382e
commit 7fc7cbd3bf

View File

@@ -155,7 +155,7 @@ in derive ({
xorg.libpciaccess
xxHash
zlib
zstdStatic
zstd
];
JAVA8_HOME = "${pkgs.openjdk8_headless}/lib/openjdk";