summary refs log blame commit diff
path: root/pkgs/development/libraries/avro-c++/default.nix
blob: 6b3de6d3b62cff9ed8988f323d57d8bf7b249333 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                                            














                                                                                
           











                                                                                   
{ stdenv, fetchurl, cmake, boost155, python2
}:

let version = "1.7.5"; in

stdenv.mkDerivation {
  name = "avro-c++-${version}";

  src = fetchurl {
    url = "mirror://apache/avro/avro-${version}/cpp/avro-cpp-${version}.tar.gz";
    sha256 = "064ssbbgrc3hyalzj8rn119bsrnyk1vlpkhl8gghv96jgqbpdyb3";
  };

  buildInputs = [
    cmake
    boost155
    python2
  ];

  enableParallelBuilding = true;

  meta = {
    description = "A C++ library which implements parts of the Avro Specification";
    homepage = https://avro.apache.org/;
    license = stdenv.lib.licenses.asl20;
    maintainers = with stdenv.lib.maintainers; [ rasendubi ];
    platforms = stdenv.lib.platforms.all;
  };
}