1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 11:10:03 +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 {