3
0
Fork 0
forked from mirrors/nixpkgs

rlottie: unbreak on aarch64-darwin

This commit is contained in:
Weijia Wang 2023-01-04 11:43:34 +01:00 committed by Rick van Schijndel
parent 048c1cdc20
commit 2520a38d69

View file

@ -28,13 +28,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ meson ninja pkg-config ];
NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) "-U__ARM_NEON__";
meta = with lib; {
homepage = "https://github.com/Samsung/rlottie";
description = "A platform independent standalone c++ library for rendering vector based animations and art in realtime";
license = with licenses; [ mit bsd3 mpl11 ftl ];
platforms = platforms.all;
maintainers = with maintainers; [ CRTified ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
};
}