lol

Merge pull request #305972 from viraptor/imagelol-darwin

imagelol: fix darwin build

authored by

Stanisław Pitucha and committed by
GitHub
19196d6f 750c44ec

+1 -2
+1 -2
pkgs/tools/compression/imagelol/default.nix
··· 30 }) 31 ]; 32 33 - 34 # fix for case-sensitive filesystems 35 # https://github.com/MCredstoner2004/ImageLOL/issues/1 36 postPatch = '' ··· 46 cp ./ImageLOL $out/bin 47 ''; 48 49 - cmakeFlags = lib.optional (stdenv.isDarwin && stdenv.isAarch64) "-DPNG_ARM_NEON=off"; 50 51 meta = with lib; { 52 homepage = "https://github.com/MCredstoner2004/ImageLOL";
··· 30 }) 31 ]; 32 33 # fix for case-sensitive filesystems 34 # https://github.com/MCredstoner2004/ImageLOL/issues/1 35 postPatch = '' ··· 45 cp ./ImageLOL $out/bin 46 ''; 47 48 + cmakeFlags = [ (lib.cmakeFeature "CMAKE_C_FLAGS" "-std=gnu90") ] ++ lib.optional (stdenv.isDarwin && stdenv.isAarch64) "-DPNG_ARM_NEON=off"; 49 50 meta = with lib; { 51 homepage = "https://github.com/MCredstoner2004/ImageLOL";