blink: unvendor zlib; fix darwin

Similar to bat (see 2ae4f94054), blink
currently uses a vendored version of zlib that doesn't build properly on
macOS/Darwin anymore.
This commit is contained in:
Rhys-T
2025-04-14 02:33:03 -04:00
parent e51f02babf
commit 2c51dbe59f
@@ -2,6 +2,7 @@
stdenv,
fetchFromGitHub,
lib,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
@@ -15,6 +16,8 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-4wgDftXOYm2fMP+/aTRljDi38EzbbwAJlQkuxjAMl3I=";
};
buildInputs = [ zlib ];
# Do not include --enable-static and --disable-shared flags during static compilation
dontAddStaticConfigureFlags = true;