10 stdenv.mkDerivation (finalAttrs: {
11 pname = "lottieconverter";
14 src = fetchFromGitHub {
16 repo = "lottieconverter";
17 rev = "r${finalAttrs.version}";
18 hash = "sha256-oCFQsOQbWzmzClaTOeuEtGo7uXoKYtaJuSLLgqAQP1M=";
21 nativeBuildInputs = [ cmake ];
22 buildInputs = [ libpng rlottie giflib ];
31 install -Dm755 lottieconverter "$out/bin/lottieconverter"
36 homepage = "https://github.com/sot-tech/LottieConverter/";
37 description = "Lottie converter utility";
38 license = licenses.bsd3;
39 platforms = platforms.all;
40 maintainers = with maintainers; [ CRTified nickcao ];
41 mainProgram = "lottieconverter";