bazarr: use libarchive instead of unar

unar is ObjC, doesn't build currently and is largely dead.
Bazarr only uses it to unpack RAR archives, so just give it
libarchive bsdtar instead, which can handle any reasonable archive,
is not unfree and is not dead.
This commit is contained in:
K900
2024-07-26 09:34:25 +03:00
parent 86be73ea85
commit 0481587e35

View File

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