45 lines
754 B
Nix
45 lines
754 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
cmake,
|
|
fetchurl,
|
|
pkg-config,
|
|
jansson,
|
|
snappy,
|
|
xz,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "avro-c";
|
|
version = "1.12.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://apache/avro/avro-${version}/c/avro-c-${version}.tar.gz";
|
|
sha256 = "sha256-dDM9QxB5w113DO9plstN4EBY0Z6BvQuaNjvP04V1A38=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
jansson
|
|
snappy
|
|
xz
|
|
zlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "C library which implements parts of the Avro Specification";
|
|
homepage = "https://avro.apache.org/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ lblasc ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|