nixpkgs/pkgs/development/libraries/avro-c/default.nix
2021-07-17 22:39:35 +02:00

28 lines
687 B
Nix

{ lib, stdenv, cmake, fetchurl, pkg-config, jansson, zlib }:
stdenv.mkDerivation rec {
pname = "avro-c";
version = "1.10.2";
src = fetchurl {
url = "mirror://apache/avro/avro-${version}/c/avro-c-${version}.tar.gz";
sha256 = "sha256-rj+zK+xKBon1Rn4JIBGS7cbo80ITTvBq1FLKhw9Wt+I=";
};
postPatch = ''
patchShebangs .
'';
nativeBuildInputs = [ pkg-config cmake ];
buildInputs = [ jansson zlib ];
meta = with lib; {
description = "A C library which implements parts of the Avro Specification";
homepage = "https://avro.apache.org/";
license = licenses.asl20;
maintainers = with maintainers; [ lblasc ];
platforms = platforms.all;
};
}