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

30 lines
864 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, boost, python2}:
2016-04-18 23:47:56 +00:00
2017-09-05 11:46:51 +00:00
let version = "1.8.2"; in
2016-04-18 23:47:56 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "avro-c++";
inherit version;
2016-04-18 23:47:56 +00:00
src = fetchurl {
url = "mirror://apache/avro/avro-${version}/cpp/avro-cpp-${version}.tar.gz";
2017-09-05 11:46:51 +00:00
sha256 = "1ars58bfw83s8f1iqbhnqp4n9wc9cxsph0gs2a8k7r9fi09vja2k";
2016-04-18 23:47:56 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ 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
meta = {
description = "A C++ library which implements parts of the Avro Specification";
homepage = "https://avro.apache.org/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ rasendubi ];
platforms = lib.platforms.all;
2016-04-18 23:47:56 +00:00
};
}