Merge pull request #330800 from K900/revert-bazarr-libarchive

Revert "bazarr: use libarchive instead of unar"
This commit is contained in:
K900 2024-07-29 10:08:57 +03:00 committed by GitHub
commit fd0507486e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,9 +1,9 @@
{ stdenv, lib, fetchurl, makeWrapper, unzip, python3, libarchive, ffmpeg, nixosTests }:
{ stdenv, lib, fetchurl, makeWrapper, unzip, python3, unar, ffmpeg, nixosTests }:
let
runtimeProgDeps = [
ffmpeg
libarchive
unar
];
in
stdenv.mkDerivation rec {