mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
f1fd3f2a5d
Upstream effectively puts "-lprotobuf -lprotoc" as linking flags, while in fact "protoc.a" depends on "protobuf.a", so flags should be in reverse order. It is simpler to append one more "-lprotobuf" than to make patch to fix order. That means that linker will scan "protobuf.a" twice, but price is neglectable.
45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, protobuf
|
|
, zlib
|
|
, buildPackages
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "protobuf-c";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "protobuf-c";
|
|
repo = "protobuf-c";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-TJCLzxozuZ8ynrBQ2lKyk03N+QA/lbOwywUjDUdTlbM=";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/protobuf-c/protobuf-c/pull/534
|
|
(fetchpatch {
|
|
url = "https://github.com/protobuf-c/protobuf-c/commit/a6c9ea5207aeac61c57b446ddf5a6b68308881d8.patch";
|
|
hash = "sha256-wTb8+YbvrCrOVpgthI5SJdG/CpQcOzCX4Bv47FPY804=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
buildInputs = [ protobuf zlib ];
|
|
|
|
PROTOC = lib.getExe buildPackages.protobuf;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/protobuf-c/protobuf-c/";
|
|
description = "C bindings for Google's Protocol Buffers";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ nickcao ];
|
|
};
|
|
}
|