tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
flatbuffers: Disable tests temporarily
Sandro Jäckel
5 years ago
00d60561
b09309b0
+7
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
flatbuffers
default.nix
+7
-6
pkgs/development/libraries/flatbuffers/default.nix
···
31
31
'';
32
32
33
33
nativeBuildInputs = [ cmake ];
34
34
-
enableParallelBuilding = true;
35
34
36
35
cmakeFlags = [ "-DFLATBUFFERS_BUILD_TESTS=${if doCheck then "ON" else "OFF"}" ];
37
36
38
38
-
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
37
37
+
# tests fail to compile
38
38
+
doCheck = false;
39
39
+
# doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
39
40
checkTarget = "test";
40
41
41
41
-
meta = {
42
42
+
meta = with stdenv.lib; {
42
43
description = "Memory Efficient Serialization Library";
43
44
longDescription = ''
44
45
FlatBuffers is an efficient cross platform serialization library for
···
46
47
access serialized data without unpacking/parsing it first, while still
47
48
having great forwards/backwards compatibility.
48
49
'';
49
49
-
maintainers = [ stdenv.lib.maintainers.teh ];
50
50
-
license = stdenv.lib.licenses.asl20;
51
51
-
platforms = stdenv.lib.platforms.unix;
50
50
+
maintainers = [ maintainers.teh ];
51
51
+
license = licenses.asl20;
52
52
+
platforms = platforms.unix;
52
53
homepage = "https://google.github.io/flatbuffers/";
53
54
};
54
55
}