nixpkgs/pkgs/development/libraries/flatbuffers/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

2020-01-04 14:23:47 +00:00
{ stdenv, fetchFromGitHub, fetchpatch, cmake }:
2016-10-20 14:36:59 +01:00
2020-07-14 20:41:09 +01:00
stdenv.mkDerivation rec {
pname = "flatbuffers";
2020-07-14 20:41:09 +01:00
version = "1.12.0";
2016-10-20 14:36:59 +01:00
src = fetchFromGitHub {
owner = "google";
repo = "flatbuffers";
rev = "v${version}";
2020-07-14 20:41:09 +01:00
sha256 = "0f7xd66vc1lzjbn7jzd5kyqrgxpsfxi4zc7iymhb5xrwyxipjl1g";
2016-10-20 14:36:59 +01:00
};
preConfigure = stdenv.lib.optional stdenv.buildPlatform.isDarwin ''
rm BUILD
'';
nativeBuildInputs = [ cmake ];
2016-10-20 14:36:59 +01:00
enableParallelBuilding = true;
cmakeFlags = [ "-DFLATBUFFERS_BUILD_TESTS=${if doCheck then "ON" else "OFF"}" ];
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
checkTarget = "test";
2016-10-20 14:36:59 +01:00
meta = {
description = "Memory Efficient Serialization Library.";
longDescription = ''
FlatBuffers is an efficient cross platform serialization library for
games and other memory constrained apps. It allows you to directly
access serialized data without unpacking/parsing it first, while still
having great forwards/backwards compatibility.
'';
maintainers = [ stdenv.lib.maintainers.teh ];
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.unix;
homepage = "https://google.github.io/flatbuffers/";
2016-10-20 14:36:59 +01:00
};
2020-07-14 20:41:09 +01:00
}