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

25 lines
741 B
Nix
Raw Normal View History

2014-04-25 15:18:18 +00:00
{ stdenv, fetchurl }:
2015-01-12 08:24:41 +00:00
stdenv.mkDerivation rec {
name = "capnproto-${version}";
2015-05-30 17:18:54 +00:00
version = "0.5.1.2";
2015-01-12 08:24:41 +00:00
src = fetchurl {
url = "https://capnproto.org/capnproto-c++-${version}.tar.gz";
2015-05-30 17:18:54 +00:00
sha256 = "0a89v6sigsyj9vii0d5kqs2fdv73r71f8czzhdvqdvk3p0mlcgx2";
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 = ''
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 ];
};
}