From 2c51dbe59f295d15de19ce05e81f024fd6c2c1f2 Mon Sep 17 00:00:00 2001 From: Rhys-T <108157737+Rhys-T@users.noreply.github.com> Date: Sun, 13 Apr 2025 21:23:54 -0400 Subject: [PATCH] blink: unvendor zlib; fix darwin Similar to bat (see 2ae4f94054dd18d61e01beb2dade7d1631fd99a6), blink currently uses a vendored version of zlib that doesn't build properly on macOS/Darwin anymore. --- pkgs/applications/emulators/blink/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/emulators/blink/default.nix b/pkgs/applications/emulators/blink/default.nix index a65ebf5886b3..1474675e21bb 100644 --- a/pkgs/applications/emulators/blink/default.nix +++ b/pkgs/applications/emulators/blink/default.nix @@ -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;