protobufc: Add version 1.1.0 as the default

This commit is contained in:
William A. Kennington III
2015-02-06 12:53:09 -08:00
parent 673b18fdd7
commit 9f0a6d6d7f
4 changed files with 30 additions and 9 deletions
@@ -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 ];
};
}