summary refs log blame commit diff
path: root/pkgs/development/libraries/avro-c++/default.nix
blob: eaf7b135eb5b1d3c5b14ed905e71daad2e41bba8 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                           
 
                         





                                                                                
                                                                                



                 
           
         

    




                                                                                              









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

let version = "1.8.1"; in

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

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

  buildInputs = [
    cmake
    python2
    boost
  ];

  preConfigure = ''
    substituteInPlace test/SchemaTests.cc --replace "BOOST_CHECKPOINT" "BOOST_TEST_CHECKPOINT"
    substituteInPlace test/buffertest.cc --replace "BOOST_MESSAGE" "BOOST_TEST_MESSAGE"
  '';

  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;
  };
}