rlottie: init at 0.1
This commit is contained in:
parent
1526f4534d
commit
2053fb35a2
23
pkgs/development/libraries/rlottie/default.nix
Normal file
23
pkgs/development/libraries/rlottie/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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; };
|
||||
|
Loading…
x
Reference in New Issue
Block a user