Merge pull request #174608 from r-ryantm/auto-update/flatcc

flatcc: 0.6.0 -> 0.6.1
This commit is contained in:
Jonas Heinrich 2022-08-26 08:18:16 +02:00 committed by GitHub
commit cd9ceb84e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "flatcc";
version = "0.6.0";
version = "0.6.1";
src = fetchFromGitHub {
owner = "dvidelabs";
repo = "flatcc";
rev = "v${version}";
sha256 = "0cy79swgdbaf3zmsaqa6gz3b0fad2yqawwcnsipnpl9d8hn1linm";
sha256 = "sha256-0/IZ7eX6b4PTnlSSdoOH0FsORGK9hrLr1zlr/IHsJFQ=";
};
nativeBuildInputs = [ cmake ];
@ -26,9 +26,10 @@ stdenv.mkDerivation rec {
"-Wno-error=stringop-overflow"
];
meta = {
meta = with lib; {
description = "FlatBuffers Compiler and Library in C for C ";
homepage = "https://github.com/dvidelabs/flatcc";
license = [ lib.licenses.asl20 ];
license = [ licenses.asl20 ];
maintainers = with maintainers; [ onny ];
};
}