aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libnotify
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-21 20:09:56 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-28 12:16:45 -0400
commitf1562a4c04feb7c5afe660faafe7b657fc97e5ff (patch)
tree56f14cbbefb9df91ede160b4a3b89e544a40db47 /pkgs/development/libraries/libnotify
parent139b4cd0e3f9ea4c7e1ea56e97faa18f537697b3 (diff)
libnotify: gobject-introspection should be a buid-time dep
Diffstat (limited to 'pkgs/development/libraries/libnotify')
-rw-r--r--pkgs/development/libraries/libnotify/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libnotify/default.nix b/pkgs/development/libraries/libnotify/default.nix
index 41a9cf518e4c..fbde49a54d08 100644
--- a/pkgs/development/libraries/libnotify/default.nix
+++ b/pkgs/development/libraries/libnotify/default.nix
@@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
# disable tests as we don't need to depend on gtk+(2/3)
configureFlags = [ "--disable-tests" ];
- nativeBuildInputs = [ pkgconfig autoreconfHook ];
- buildInputs = [ glib gdk_pixbuf gobjectIntrospection ];
+ nativeBuildInputs = [ pkgconfig autoreconfHook gobjectIntrospection ];
+ buildInputs = [ glib gdk_pixbuf ];
meta = {
homepage = https://developer.gnome.org/notification-spec/;