unpaper: use ffmpeg instead of libav

This commit is contained in:
Robert Schütz 2021-01-30 20:00:43 +01:00
parent d2144f1406
commit 2769204696

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, pkg-config, libav, libxslt }:
{ lib, stdenv, fetchurl, pkg-config, ffmpeg, libxslt }:
stdenv.mkDerivation rec {
pname = "unpaper";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libav libxslt ];
buildInputs = [ ffmpeg libxslt ];
meta = with lib; {
homepage = "https://www.flameeyes.eu/projects/unpaper";