2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-04-16 13:58:16 +00:00

Revert "bazarr: use libarchive instead of unar"

This reverts commit 0481587e35.

There's a bunch more places that just hardcode unar anyway,
and unar builds now...
This commit is contained in:
K900 2024-07-29 10:07:23 +03:00
parent a07da9722d
commit 8109e721b7

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 {