1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "https://capnproto.org/capnproto-c++-${version}.tar.gz";
9 sha256 = "03f1862ljdshg7d0rg3j7jzgm3ip55kzd2y91q7p0racax3hxx6i";
13 homepage = "http://kentonv.github.io/capnproto";
14 description = "Cap'n Proto cerealization protocol";
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.
20 license = licenses.bsd2;
21 platforms = platforms.all;
22 maintainers = with maintainers; [ cstrahan ];