ffmpegthumbnailer: fix path in pkg-config file
This commit is contained in:
parent
5b12efa3f2
commit
ca049040de
1 changed files with 6 additions and 0 deletions
|
@ -16,6 +16,12 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ ffmpeg libpng libjpeg ];
|
buildInputs = [ ffmpeg libpng libjpeg ];
|
||||||
cmakeFlags = [ "-DENABLE_THUMBNAILER=ON" ];
|
cmakeFlags = [ "-DENABLE_THUMBNAILER=ON" ];
|
||||||
|
|
||||||
|
# https://github.com/dirkvdb/ffmpegthumbnailer/issues/215
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace libffmpegthumbnailer.pc.in \
|
||||||
|
--replace '$'{exec_prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/dirkvdb/ffmpegthumbnailer";
|
homepage = "https://github.com/dirkvdb/ffmpegthumbnailer";
|
||||||
description = "A lightweight video thumbnailer";
|
description = "A lightweight video thumbnailer";
|
||||||
|
|
Loading…
Reference in a new issue