nixpkgs/pkgs/development/libraries/avro-c/default.nix
R. RyanTM 0153edf9a4 avro-c: 1.8.2 -> 1.9.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/avro-c/versions
2019-05-20 21:18:13 -07:00

31 lines
736 B
Nix

{ stdenv, cmake, fetchurl, pkgconfig, jansson, zlib }:
let
version = "1.9.0";
in stdenv.mkDerivation rec {
name = "avro-c-${version}";
src = fetchurl {
url = "mirror://apache/avro/avro-${version}/c/avro-c-${version}.tar.gz";
sha256 = "1ch8z9jpkjxjx2zh28z0946gz3vwj1jnkrzg4vwvfa287128cml0";
};
postPatch = ''
patchShebangs .
'';
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ jansson zlib ];
enableParallelBuilding = true;
meta = with stdenv.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;
};
}