blob: 4d74627ee3c9310bc2937b3c1d056059b0ee2c29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{ lib, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "flatcc";
version = "0.6.1";
src = fetchFromGitHub {
owner = "dvidelabs";
repo = "flatcc";
rev = "v${version}";
sha256 = "sha256-0/IZ7eX6b4PTnlSSdoOH0FsORGK9hrLr1zlr/IHsJFQ=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DFLATCC_INSTALL=on"
];
env.NIX_CFLAGS_COMPILE = toString [
"-Wno-error=misleading-indentation"
"-Wno-error=stringop-overflow"
];
meta = with lib; {
description = "FlatBuffers Compiler and Library in C for C ";
mainProgram = "flatcc";
homepage = "https://github.com/dvidelabs/flatcc";
license = [ licenses.asl20 ];
maintainers = with maintainers; [ onny ];
};
}
|