nixpkgs/pkgs/development/libraries/avro-c++/default.nix

34 lines
902 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, boost, python2}:
2016-04-18 23:47:56 +00:00
let version = "1.8.1"; in
2016-04-18 23:47:56 +00:00
stdenv.mkDerivation {
name = "avro-c++-${version}";
src = fetchurl {
url = "mirror://apache/avro/avro-${version}/cpp/avro-cpp-${version}.tar.gz";
sha256 = "6559755ac525e908e42a2aa43444576cba91e522fe989088ee7f70c169bcc403";
2016-04-18 23:47:56 +00:00
};
buildInputs = [
cmake
python2
boost
2016-04-18 23:47:56 +00:00
];
preConfigure = ''
substituteInPlace test/SchemaTests.cc --replace "BOOST_CHECKPOINT" "BOOST_TEST_CHECKPOINT"
substituteInPlace test/buffertest.cc --replace "BOOST_MESSAGE" "BOOST_TEST_MESSAGE"
'';
2016-04-18 23:47:56 +00:00
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;
};
}