autoconf213: remove xz from inputs

It's a remnant of old times when `lzma` was used to unpack the sources.
But it's unused now.
This commit is contained in:
c0bw3b 2022-02-11 11:35:21 +01:00
parent 340101132a
commit f50fac7935

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, m4, perl, xz }:
{ lib, stdenv, fetchurl, m4, perl }:
stdenv.mkDerivation rec {
pname = "autoconf";
@ -9,7 +9,6 @@ stdenv.mkDerivation rec {
sha256 = "07krzl4czczdsgzrrw9fiqx35xcf32naf751khg821g5pqv12qgh";
};
nativeBuildInputs = [ xz ];
buildInputs = [ m4 perl ];
doCheck = true;