nixpkgs/pkgs/development/libraries/protobufc/generic.nix
Jörg Thalheim b5c1deca8a
treewide: remove wkennington as maintainer
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.
2019-01-26 10:05:32 +00:00

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;
};
}