protobufc: Add version 1.1.0 as the default
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
{ stdenv, src, version
|
||||
, autoreconfHook, pkgconfig, protobuf, zlib
|
||||
, ...
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "protobuf-c-${version}";
|
||||
|
||||
inherit src;
|
||||
|
||||
buildInputs = [ autoreconfHook pkgconfig protobuf zlib ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://github.com/protobuf-c/protobuf-c/;
|
||||
description = "C bindings for Google's Protocol Buffers";
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user