unpaper: pin ffmpeg to 4.x

This commit is contained in:
Jonathan Ringer 2022-02-07 11:26:55 -08:00
parent a52db119e1
commit 03f8de4775
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

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