3
0
Fork 0
forked from mirrors/nixpkgs

rapid-photo-downloader: add vmtouch to wrapped PATH

without this, the analyze-pv-structure executable complains:
"To run this program, you need to install vmtouch."
This commit is contained in:
Robert Scott 2019-05-04 16:48:25 +01:00
parent 01c27d6faf
commit de467e740e

View file

@ -1,7 +1,7 @@
{ stdenv, fetchurl, python3Packages
, file, intltool, gobject-introspection, libgudev
, udisks, gexiv2, gst_all_1, libnotify
, exiftool, gdk_pixbuf, libmediainfo
, exiftool, gdk_pixbuf, libmediainfo, vmtouch
}:
python3Packages.buildPythonApplication rec {
@ -69,7 +69,7 @@ python3Packages.buildPythonApplication rec {
makeWrapperArgs = [
"--set GI_TYPELIB_PATH \"$GI_TYPELIB_PATH\""
"--set PYTHONPATH \"$PYTHONPATH\""
"--prefix PATH : ${stdenv.lib.makeBinPath [ exiftool ]}"
"--prefix PATH : ${stdenv.lib.makeBinPath [ exiftool vmtouch ]}"
"--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ libmediainfo ]}"
"--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : \"$GST_PLUGIN_SYSTEM_PATH_1_0\""
];