forked from mirrors/nixpkgs
avro-c: include lzma and snappy dependencies
This commit is contained in:
parent
a33e2735a1
commit
e6f1de28d4
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue