libspng: disable broken tests

https://github.com/randy408/libspng/issues/276

+7
+7
pkgs/by-name/li/libspng/package.nix
··· 21 21 sha256 = "sha256-BiRuPQEKVJYYgfUsglIuxrBoJBFiQ0ygQmAFrVvCz4Q="; 22 22 }; 23 23 24 + # disable two tests broken after libpng update 25 + # https://github.com/randy408/libspng/issues/276 26 + postPatch = '' 27 + cat tests/images/meson.build | grep -v "'ch1n3p04'" | grep -v "'ch2n3p08'" > tests/images/meson.build-patched 28 + mv tests/images/meson.build-patched tests/images/meson.build 29 + ''; 30 + 24 31 doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; 25 32 26 33 mesonBuildType = "release";