about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-02-15 10:08:27 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-02-17 14:40:54 +0100
commitd2c3fd5af0022c612ce2cd4f274e09ab58ccc6fe (patch)
treefb42d34132de1274474bdb0661c1bbba8cbf1e0a /pkgs/applications/networking/mailreaders
parent7397fa2a2775269aad995a620b23e500168e36d5 (diff)
Python: fix outfall after setting `strictDeps = true;`
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/mailnag/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/mailreaders/mailnag/default.nix b/pkgs/applications/networking/mailreaders/mailnag/default.nix
index 56a676178cca3..6c39dc78e57a5 100644
--- a/pkgs/applications/networking/mailreaders/mailnag/default.nix
+++ b/pkgs/applications/networking/mailreaders/mailnag/default.nix
@@ -18,13 +18,14 @@ in pythonPackages.buildPythonApplication rec {
   };
 
   buildInputs = [
-    gettext gtk3 gdk_pixbuf libnotify gst_all_1.gstreamer
+    gtk3 gdk_pixbuf libnotify gst_all_1.gstreamer
     gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
     gst_all_1.gst-plugins-bad
     gnome3.adwaita-icon-theme
   ] ++ stdenv.lib.optional withGnomeKeyring libgnome-keyring3;
 
   nativeBuildInputs = [
+    gettext
     wrapGAppsHook
   ];