diff options
author | Chris Rendle-Short | 2019-08-08 21:34:51 +1000 |
---|---|---|
committer | worldofpeace | 2019-08-10 07:59:48 -0400 |
commit | 2f1b92ddf87761d8e2cf2b3a1c8e22b4f138f369 (patch) | |
tree | 55ea056fb944cef8df89826995f01107f072de75 /pkgs/applications/graphics/rapid-photo-downloader/default.nix | |
parent | 2c1b24dff9daa7f26a330c421462f07114958a5e (diff) |
rapid-photo-downloader: fix QT wrapping
See #65399
Diffstat (limited to 'pkgs/applications/graphics/rapid-photo-downloader/default.nix')
-rw-r--r-- | pkgs/applications/graphics/rapid-photo-downloader/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/rapid-photo-downloader/default.nix b/pkgs/applications/graphics/rapid-photo-downloader/default.nix index 5991a3351ee1..d5c68654843a 100644 --- a/pkgs/applications/graphics/rapid-photo-downloader/default.nix +++ b/pkgs/applications/graphics/rapid-photo-downloader/default.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchurl, python3Packages +{ stdenv, mkDerivationWith, fetchurl, python3Packages , file, intltool, gobject-introspection, libgudev , udisks, gexiv2, gst_all_1, libnotify , exiftool, gdk-pixbuf, libmediainfo, vmtouch }: -python3Packages.buildPythonApplication rec { +mkDerivationWith python3Packages.buildPythonApplication rec { pname = "rapid-photo-downloader"; version = "0.9.14"; @@ -72,6 +72,7 @@ python3Packages.buildPythonApplication rec { "--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\"" + "\${qtWrapperArgs[@]}" ]; meta = with stdenv.lib; { |