rttr: init at 0.9.6
This commit is contained in:
parent
5ac417126e
commit
dd80af4756
31
pkgs/development/libraries/rttr/default.nix
Normal file
31
pkgs/development/libraries/rttr/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, ninja }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rttr";
|
||||
version = "0.9.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "${pname}org";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1yxad8sj40wi75hny8w6imrsx8wjasjmsipnlq559n4b6kl84ijp";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
ninja
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DBUILD_EXAMPLES=OFF"
|
||||
"-DBUILD_UNIT_TESTS=OFF"
|
||||
"-DBUILD_PACKAGE=OFF"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "C++ Reflection Library";
|
||||
homepage = https://www.rttr.org;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -12932,6 +12932,8 @@ in
|
||||
|
||||
rshell = python3.pkgs.callPackage ../development/tools/rshell { };
|
||||
|
||||
rttr = callPackage ../development/libraries/rttr { };
|
||||
|
||||
rubberband = callPackage ../development/libraries/rubberband {
|
||||
inherit (vamp) vampSDK;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user