unpaper: use ffmpeg instead of libav
This commit is contained in:
parent
d2144f1406
commit
2769204696
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl, pkg-config, libav, libxslt }:
|
{ lib, stdenv, fetchurl, pkg-config, ffmpeg, libxslt }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "unpaper";
|
pname = "unpaper";
|
||||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ libav libxslt ];
|
buildInputs = [ ffmpeg libxslt ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://www.flameeyes.eu/projects/unpaper";
|
homepage = "https://www.flameeyes.eu/projects/unpaper";
|
||||||
|
|
Loading…
Reference in New Issue