1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "capnproto-${version}";
5 version = "0.6.0";
6
7 src = fetchurl {
8 url = "https://capnproto.org/capnproto-c++-${version}.tar.gz";
9 sha256 = "0gpp1cxsb9nfd7qkjjykzknx03y0z0n4bq5q0fmxci7w38ci22g5";
10 };
11
12 meta = with stdenv.lib; {
13 homepage = "http://kentonv.github.io/capnproto";
14 description = "Cap'n Proto cerealization protocol";
15 longDescription = ''
16 Cap’n Proto is an insanely fast data interchange format and
17 capability-based RPC system. Think JSON, except binary. Or think Protocol
18 Buffers, except faster.
19 '';
20 license = licenses.bsd2;
21 platforms = platforms.all;
22 maintainers = with maintainers; [ cstrahan ];
23 };
24}