lol

blink: unvendor zlib; fix darwin (#398503)

authored by

Ramses and committed by
GitHub
a8d374ed 8dbbb9c0

+3
+3
pkgs/applications/emulators/blink/default.nix
··· 2 stdenv, 3 fetchFromGitHub, 4 lib, 5 }: 6 7 stdenv.mkDerivation (finalAttrs: { ··· 14 rev = finalAttrs.version; 15 hash = "sha256-4wgDftXOYm2fMP+/aTRljDi38EzbbwAJlQkuxjAMl3I="; 16 }; 17 18 # Do not include --enable-static and --disable-shared flags during static compilation 19 dontAddStaticConfigureFlags = true;
··· 2 stdenv, 3 fetchFromGitHub, 4 lib, 5 + zlib, 6 }: 7 8 stdenv.mkDerivation (finalAttrs: { ··· 15 rev = finalAttrs.version; 16 hash = "sha256-4wgDftXOYm2fMP+/aTRljDi38EzbbwAJlQkuxjAMl3I="; 17 }; 18 + 19 + buildInputs = [ zlib ]; 20 21 # Do not include --enable-static and --disable-shared flags during static compilation 22 dontAddStaticConfigureFlags = true;