about summary refs log tree commit diff
path: root/pkgs/applications/graphics/rapid-photo-downloader/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-07-26 20:53:32 +0200
committerVladimír Čunát <v@cunat.cz>2023-07-26 20:53:32 +0200
commit1c0d654684ac1e98fbfa2a77c7f769b8b52a4ecf (patch)
tree7c34a14bff63bd04863ca04abace06861531b68c /pkgs/applications/graphics/rapid-photo-downloader/default.nix
parente8f8e5829f9a25c2caee147cd74fb47222897314 (diff)
parent9999bf7a21105486d44b759f56fd1a05fb312d9e (diff)
downloadnixlib-1c0d654684ac1e98fbfa2a77c7f769b8b52a4ecf.tar
nixlib-1c0d654684ac1e98fbfa2a77c7f769b8b52a4ecf.tar.gz
nixlib-1c0d654684ac1e98fbfa2a77c7f769b8b52a4ecf.tar.bz2
nixlib-1c0d654684ac1e98fbfa2a77c7f769b8b52a4ecf.tar.lz
nixlib-1c0d654684ac1e98fbfa2a77c7f769b8b52a4ecf.tar.xz
nixlib-1c0d654684ac1e98fbfa2a77c7f769b8b52a4ecf.tar.zst
nixlib-1c0d654684ac1e98fbfa2a77c7f769b8b52a4ecf.zip
Merge #239191: treewide: gobject-introspection from buildInputs to nativeBuildInputs
...into staging
Diffstat (limited to 'pkgs/applications/graphics/rapid-photo-downloader/default.nix')
-rw-r--r--pkgs/applications/graphics/rapid-photo-downloader/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/graphics/rapid-photo-downloader/default.nix b/pkgs/applications/graphics/rapid-photo-downloader/default.nix
index b283a6d4083f..490a89b30b86 100644
--- a/pkgs/applications/graphics/rapid-photo-downloader/default.nix
+++ b/pkgs/applications/graphics/rapid-photo-downloader/default.nix
@@ -26,6 +26,7 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
   nativeBuildInputs = [
     file
     intltool
+    gobject-introspection
   ];
 
   # Package has no generally usable unit tests.
@@ -37,13 +38,9 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
     $out/bin/rapid-photo-downloader --detailed-version
   '';
 
-  # NOTE: Without gobject-introspection in buildInputs and strictDeps = false,
-  #       launching fails with:
-  #       "Namespace [Notify / GExiv2 / GUdev] not available"
   buildInputs = [
     gdk-pixbuf
     gexiv2
-    gobject-introspection
     gst_all_1.gst-libav
     gst_all_1.gst-plugins-base
     gst_all_1.gst-plugins-good
@@ -54,6 +51,10 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
     udisks
   ];
 
+  # NOTE: Check if strictDeps can be renabled
+  # at the time of writing this the dependency easygui fails to build
+  #       launching fails with:
+  #       "Namespace [Notify / GExiv2 / GUdev] not available"
   strictDeps = false;
 
   propagatedBuildInputs = with python3Packages; [