capnproto: Add package

This commit is contained in:
Charles Strahan 2014-04-25 11:18:18 -04:00
parent 5401849e3a
commit 604a4b680c
3 changed files with 26 additions and 0 deletions

View file

@ -26,6 +26,7 @@
chaoflow = "Florian Friesdorf <flo@chaoflow.net>";
coconnor = "Corey O'Connor <coreyoconnor@gmail.com>";
coroa = "Jonas Hörsch <jonas@chaoflow.net>";
cstrahan = "Charles Strahan <charles.c.strahan@gmail.com>";
edwtjo = "Edward Tjörnhammar <ed@cflags.cc>";
eelco = "Eelco Dolstra <eelco.dolstra@logicblox.com>";
emery = "Emery Hemingawy <emery@vfemail.net>";

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "capnproto-0.4.1";
meta = with stdenv.lib; {
homepage = "http://kentonv.github.io/capnproto";
description = "Cap'n Proto cerealization protocol";
longDescription = ''
Capn 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 ];
};
src = fetchurl {
url = "https://capnproto.org/capnproto-c++-0.4.1.tar.gz";
sha256 = "8453e8d508906062f113dbdfff552f41e08083ccf7c9407778a8d107675cd468";
};
}

View file

@ -4132,6 +4132,8 @@ let
caelum = callPackage ../development/libraries/caelum { };
capnproto = callPackage ../development/libraries/capnproto { };
scmccid = callPackage ../development/libraries/scmccid { };
ccrtp = callPackage ../development/libraries/ccrtp { };