mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
Merge pull request #179377 from mweinelt/avro-c-alias
avro-c: replace lzma with xz
This commit is contained in:
commit
ff8b619cfe
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user