2014-04-25 15:18:18 +00:00
|
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
2015-01-12 08:24:41 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "capnproto-${version}";
|
2017-05-03 06:07:52 +00:00
|
|
|
|
version = "0.6.0";
|
2015-01-12 08:24:41 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://capnproto.org/capnproto-c++-${version}.tar.gz";
|
2017-05-03 06:07:52 +00:00
|
|
|
|
sha256 = "0gpp1cxsb9nfd7qkjjykzknx03y0z0n4bq5q0fmxci7w38ci22g5";
|
2015-01-12 08:24:41 +00:00
|
|
|
|
};
|
2014-04-25 15:18:18 +00:00
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
homepage = "http://kentonv.github.io/capnproto";
|
|
|
|
|
description = "Cap'n Proto cerealization protocol";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Cap’n Proto is an insanely fast data interchange format and
|
|
|
|
|
capability-based RPC system. Think JSON, except binary. Or think Protocol
|
|
|
|
|
Buffers, except faster.
|
|
|
|
|
'';
|
|
|
|
|
license = licenses.bsd2;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
|
|
|
};
|
|
|
|
|
}
|