1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 03:48:57 +00:00
nixpkgs/pkgs/development/libraries/avro-c++/default.nix
Frederik Rietdijk c531ff2fe8 avro-c++: use python2
python 2 print statement
2016-10-18 23:16:04 +02:00

30 lines
687 B
Nix

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