From 6705da37dde57eca549c9ec57fd949a3d713833e Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Fri, 24 Mar 2023 15:15:11 -0700 Subject: [PATCH] stt: lzma -> xz --- pkgs/tools/audio/stt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/audio/stt/default.nix b/pkgs/tools/audio/stt/default.nix index 31256c191ecc..8697cb62f5b7 100644 --- a/pkgs/tools/audio/stt/default.nix +++ b/pkgs/tools/audio/stt/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchurl, autoPatchelfHook, bzip2, lzma }: +{ stdenv, lib, fetchurl, autoPatchelfHook, bzip2, xz }: stdenv.mkDerivation rec { pname = "stt"; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { buildInputs = [ bzip2 - lzma + xz stdenv.cc.cc.lib ];