linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / capnproto / default.nix
blobda6aae64db52204cab22b23dc9ec7562094aed44
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "capnproto";
5   version = "0.8.0";
7   src = fetchurl {
8     url = "https://capnproto.org/capnproto-c++-${version}.tar.gz";
9     sha256 = "03f1862ljdshg7d0rg3j7jzgm3ip55kzd2y91q7p0racax3hxx6i";
10   };
12   meta = with 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   };