Commit 8109e721 authored by K900's avatar K900
Browse files

Revert "bazarr: use libarchive instead of unar"

This reverts commit 0481587e.

There's a bunch more places that just hardcode unar anyway,
and unar builds now...
parent a07da972
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ 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 {