LottieConverter: init at 0.1.1

This commit is contained in:
CRTified 2020-07-30 00:01:22 +02:00
parent 2053fb35a2
commit a8a7185795
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ stdenv, fetchFromGitHub, libpng, rlottie, zlib }:
stdenv.mkDerivation rec {
pname = "LottieConverter";
version = "0.1.1";
src = fetchFromGitHub {
owner = "sot-tech";
repo = pname;
rev = "r${version}";
hash = "sha256-lAGzh6B2js2zDuN+1U8CZnse09RJGZRXbtmsheGKuYU=";
};
buildInputs = [ libpng rlottie zlib ];
makeFlags = [ "CONF=Release" ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp -v dist/Release/GNU-Linux/lottieconverter $out/bin/
runHook postInstall
'';
meta = with stdenv.lib; {
homepage = "https://github.com/sot-tech/LottieConverter/";
description = "Lottie converter utility";
license = licenses.lgpl21Plus;
platforms = platforms.all;
maintainers = with maintainers; [ CRTified ];
};
}

View file

@ -4735,6 +4735,8 @@ in
lolcat = callPackage ../tools/misc/lolcat { };
lottieconverter = callPackage ../tools/misc/lottieconverter { };
lsd = callPackage ../tools/misc/lsd { };
lsdvd = callPackage ../tools/cd-dvd/lsdvd {};