summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/mailreaders/mailnag
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-06-22 14:49:31 +0300
committerArtturin <Artturin@artturin.com>2023-06-28 22:33:40 +0300
commit9999bf7a21105486d44b759f56fd1a05fb312d9e (patch)
tree4d0b0bed1f00ef09918079d24d1c64b797c7e268 /pkgs/applications/networking/mailreaders/mailnag
parent08285c3efb441d273ae25316c26414f8bfd01540 (diff)
treewide: gobject-introspection from buildInputs to nativeBuildInputs
gobject-introspection should be in nativeBuildInputs for cross to work properly (so propagations and hook work properly)
Diffstat (limited to 'pkgs/applications/networking/mailreaders/mailnag')
-rw-r--r--pkgs/applications/networking/mailreaders/mailnag/default.nix2
-rw-r--r--pkgs/applications/networking/mailreaders/mailnag/goa-plugin.nix5
2 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/networking/mailreaders/mailnag/default.nix b/pkgs/applications/networking/mailreaders/mailnag/default.nix
index 47c448c9b323..4f6b3015cf34 100644
--- a/pkgs/applications/networking/mailreaders/mailnag/default.nix
+++ b/pkgs/applications/networking/mailreaders/mailnag/default.nix
@@ -41,13 +41,13 @@ python3Packages.buildPythonApplication rec {
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
- gobject-introspection
libsecret
] ++ pluginsDeps;
nativeBuildInputs = [
gettext
wrapGAppsHook
+ gobject-introspection
# To later add plugins to
xorg.lndir
];
diff --git a/pkgs/applications/networking/mailreaders/mailnag/goa-plugin.nix b/pkgs/applications/networking/mailreaders/mailnag/goa-plugin.nix
index 1def97bd62d7..bb758565eb8a 100644
--- a/pkgs/applications/networking/mailreaders/mailnag/goa-plugin.nix
+++ b/pkgs/applications/networking/mailreaders/mailnag/goa-plugin.nix
@@ -16,8 +16,11 @@ python3Packages.buildPythonPackage rec {
sha256 = "0bij6cy96nhq7xzslx0fnhmiac629h0x4wgy67k4i4npwqw10680";
};
- buildInputs = [
+ nativeBuildInputs = [
gobject-introspection
+ ];
+
+ buildInputs = [
gnome-online-accounts
];