Commit 0481587e authored by K900's avatar K900
Browse files

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.
parent 86be73ea
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ 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 {