avro-c: replace lzma with xz

The former is an alias for the latter. This should unbreak the build
without aliases.
This commit is contained in:
Martin Weinelt 2022-06-27 22:38:28 +02:00
parent e6e2cd200f
commit 0582290a2f
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

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