aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/misc/lottieconverter/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/lottieconverter/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/misc/lottieconverter/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/misc/lottieconverter/default.nix b/nixpkgs/pkgs/tools/misc/lottieconverter/default.nix
new file mode 100644
index 00000000000..bf2a68df702
--- /dev/null
+++ b/nixpkgs/pkgs/tools/misc/lottieconverter/default.nix
@@ -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 ];
+ };
+}