Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / rlottie / default.nix
blob3d4e8a5a66411c1d64d51e0f60b431f7723be688
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , fetchpatch
5 , meson
6 , ninja
7 , pkg-config
8 }:
10 stdenv.mkDerivation rec {
11   pname = "rlottie";
12   version = "0.2";
14   src = fetchFromGitHub {
15     owner = "Samsung";
16     repo = pname;
17     rev = "v${version}";
18     sha256 = "10bxr1zf9wxl55d4cw2j02r6sgqln7mbxplhhfvhw0z92fi40kr3";
19   };
21   patches = [
22     # Fixed build with GCC 11
23     (fetchpatch {
24        url = "https://github.com/Samsung/rlottie/commit/2d7b1fa2b005bba3d4b45e8ebfa632060e8a157a.patch";
25        hash = "sha256-2JPsj0WiBMMu0N3NUYDrHumvPN2YS8nPq5Zwagx6UWE=";
26     })
27   ];
29   nativeBuildInputs = [ meson ninja pkg-config ];
31   env.NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) "-U__ARM_NEON__";
33   meta = with lib; {
34     homepage = "https://github.com/Samsung/rlottie";
35     description = "A platform independent standalone c++ library for rendering vector based animations and art in realtime";
36     license = with licenses; [ mit bsd3 mpl11 ftl ];
37     platforms = platforms.all;
38     maintainers = with maintainers; [ CRTified ];
39   };