rlottie: init at 0.1

This commit is contained in:
CRTified 2020-07-29 23:59:46 +02:00
parent 1526f4534d
commit 2053fb35a2
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config }:
stdenv.mkDerivation rec {
pname = "rlottie";
version = "0.1";
src = fetchFromGitHub {
owner = "Samsung";
repo = pname;
rev = "v${version}";
hash = "sha256-8KQ0ZnVg5rTb44IYnn02WBSe2SA5UGUOSLEdmmscUDs=";
};
nativeBuildInputs = [ meson ninja pkg-config ];
meta = with stdenv.lib; {
homepage = "https://github.com/Samsung/rlottie";
description = "A platform independent standalone c++ library for rendering vector based animations and art in realtime.";
license = licenses.unfree; # Mixed, see https://github.com/Samsung/rlottie/blob/master/COPYING
platforms = platforms.all;
maintainers = with maintainers; [ CRTified ];
};
}

View File

@ -14757,6 +14757,8 @@ in
rlog = callPackage ../development/libraries/rlog { };
rlottie = callPackage ../development/libraries/rlottie { };
rocksdb = callPackage ../development/libraries/rocksdb { };
rocksdb_lite = rocksdb.override { enableLite = true; };