mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
avro-c++: Init at 1.7.5
This commit is contained in:
parent
05e713e7a5
commit
0ebe901035
@ -289,6 +289,7 @@
|
||||
pxc = "Patrick Callahan <patrick.callahan@latitudeengineering.com>";
|
||||
qknight = "Joachim Schiele <js@lastlog.de>";
|
||||
ragge = "Ragnar Dahlen <r.dahlen@gmail.com>";
|
||||
rasendubi = "Alexey Shmalko <rasen.dubi@gmail.com>";
|
||||
raskin = "Michael Raskin <7c6f434c@mail.ru>";
|
||||
redbaron = "Maxim Ivanov <ivanov.maxim@gmail.com>";
|
||||
refnil = "Martin Lavoie <broemartino@gmail.com>";
|
||||
|
29
pkgs/development/libraries/avro-c++/default.nix
Normal file
29
pkgs/development/libraries/avro-c++/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchurl, cmake, boost155, pythonPackages
|
||||
}:
|
||||
|
||||
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
|
||||
pythonPackages.python
|
||||
];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -523,6 +523,8 @@ in
|
||||
qt4Support = config.avahi.qt4Support or false;
|
||||
};
|
||||
|
||||
avro-cpp = callPackage ../development/libraries/avro-c++ { };
|
||||
|
||||
aws = callPackage ../tools/virtualization/aws { };
|
||||
|
||||
aws_mturk_clt = callPackage ../tools/misc/aws-mturk-clt { };
|
||||
|
Loading…
Reference in New Issue
Block a user