nixpkgs/pkgs/development/libraries/capnproto/default.nix

25 lines
727 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2014-04-25 16:18:18 +01:00
2015-01-12 08:24:41 +00:00
stdenv.mkDerivation rec {
pname = "capnproto";
2020-05-04 18:35:50 +01:00
version = "0.8.0";
2015-01-12 08:24:41 +00:00
src = fetchurl {
url = "https://capnproto.org/capnproto-c++-${version}.tar.gz";
2020-05-04 18:35:50 +01:00
sha256 = "03f1862ljdshg7d0rg3j7jzgm3ip55kzd2y91q7p0racax3hxx6i";
2015-01-12 08:24:41 +00:00
};
2014-04-25 16:18:18 +01:00
meta = with lib; {
2014-04-25 16:18:18 +01:00
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 ];
};
}