Merge pull request #167342 from aanderse/avro-c

avro-c: include lzma and snappy dependencies
This commit is contained in:
Aaron Andersen 2022-04-05 16:11:13 +02:00 committed by GitHub
commit 4264901e47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, cmake, fetchurl, pkg-config, jansson, zlib }:
{ lib, stdenv, cmake, fetchurl, pkg-config, jansson, lzma, snappy, zlib }:
stdenv.mkDerivation rec {
pname = "avro-c";
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config cmake ];
buildInputs = [ jansson zlib ];
buildInputs = [ jansson lzma snappy zlib ];
meta = with lib; {
description = "A C library which implements parts of the Avro Specification";