depot/third_party/nixpkgs/pkgs/development/libraries/avro-c/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

27 lines
707 B
Nix

{ lib, stdenv, cmake, fetchurl, pkg-config, jansson, snappy, xz, zlib }:
stdenv.mkDerivation rec {
pname = "avro-c";
version = "1.11.3";
src = fetchurl {
url = "mirror://apache/avro/avro-${version}/c/avro-c-${version}.tar.gz";
sha256 = "sha256-chfKrPt9XzRhF2ZHOmbC4nm8e/rxuimMfwSzsvulc2U=";
};
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;
};
}