3
0
Fork 0
forked from mirrors/nixpkgs

avro-c: include lzma and snappy dependencies

This commit is contained in:
Aaron Andersen 2022-04-05 08:25:54 -04:00
parent a33e2735a1
commit e6f1de28d4

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";