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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user