summary refs log blame commit diff
path: root/pkgs/tools/misc/lottieconverter/default.nix
blob: e7ee6e9b74f2eaf089fdaf376d02cb32126d4ed9 (plain) (tree)
1
2
3
4
5
6
7
8
9







                 
 


                                  


                         


                                                                 

    






                                          


                      
                                                             


                       
                    

                                                              
                            
                              
                                                         
    
  
{ lib
, stdenv
, fetchFromGitHub
, cmake
, libpng
, rlottie
, giflib
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "lottieconverter";
  version = "0.2";

  src = fetchFromGitHub {
    owner = "sot-tech";
    repo = finalAttrs.pname;
    rev = "r${finalAttrs.version}";
    hash = "sha256-oCFQsOQbWzmzClaTOeuEtGo7uXoKYtaJuSLLgqAQP1M=";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ libpng rlottie giflib ];

  cmakeFlags = [
    "-DSYSTEM_RL=1"
    "-DSYSTEM_GL=1"
  ];

  installPhase = ''
    runHook preInstall
    install -Dm755 lottieconverter "$out/bin/lottieconverter"
    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://github.com/sot-tech/LottieConverter/";
    description = "Lottie converter utility";
    license = licenses.bsd3;
    platforms = platforms.all;
    maintainers = with maintainers; [ CRTified nickcao ];
  };
})