From 7fc7cbd3bf7b3950732e00a34e04468925eece14 Mon Sep 17 00:00:00 2001 From: Avi Kivity Date: Thu, 16 Feb 2023 17:28:24 +0200 Subject: [PATCH] build: nix: switch to non-static zstd When we added zstd (f14e6e73bb5), 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 --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 783d511cf8..48aa5103b1 100644 --- a/default.nix +++ b/default.nix @@ -155,7 +155,7 @@ in derive ({ xorg.libpciaccess xxHash zlib - zstdStatic + zstd ]; JAVA8_HOME = "${pkgs.openjdk8_headless}/lib/openjdk";