mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
21 lines
457 B
Nix
21 lines
457 B
Nix
{ stdenv, src, version
|
|
, autoreconfHook, pkgconfig, protobuf, zlib
|
|
, ...
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "protobuf-c-${version}";
|
|
|
|
inherit src;
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ protobuf zlib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/protobuf-c/protobuf-c/;
|
|
description = "C bindings for Google's Protocol Buffers";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|