about summary refs log tree commit diff
path: root/pkgs/development/libraries/libappindicator
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-12-02 12:41:15 +0100
committerJan Tojnar <jtojnar@gmail.com>2018-12-02 12:42:29 +0100
commita51a99c69041d155892bde91be4993fb29bbea65 (patch)
tree76b4f1ba1ef321dd5b48abc88ba9f539bc360287 /pkgs/development/libraries/libappindicator
parent330ab9bc2b586d2523a1f9924218c67f8aafa492 (diff)
gobject-introspection: rename package
camelCase package name was a huge inconsistency in GNOME package set.
Diffstat (limited to 'pkgs/development/libraries/libappindicator')
-rw-r--r--pkgs/development/libraries/libappindicator/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libappindicator/default.nix b/pkgs/development/libraries/libappindicator/default.nix
index 8bf0e4bcb93c5..46cc30a8944f0 100644
--- a/pkgs/development/libraries/libappindicator/default.nix
+++ b/pkgs/development/libraries/libappindicator/default.nix
@@ -5,7 +5,7 @@
 , glib, dbus-glib, gtkVersion ? "3"
 , gtk2 ? null, libindicator-gtk2 ? null, libdbusmenu-gtk2 ? null
 , gtk3 ? null, libindicator-gtk3 ? null, libdbusmenu-gtk3 ? null
-, python2Packages, gobjectIntrospection, vala
+, python2Packages, gobject-introspection, vala
 , monoSupport ? false, mono ? null, gtk-sharp-2_0 ? null
  }:
 
@@ -34,7 +34,7 @@ in stdenv.mkDerivation rec {
 
   buildInputs = [
     glib dbus-glib
-    python pygobject2 pygtk gobjectIntrospection vala
+    python pygobject2 pygtk gobject-introspection vala
   ] ++ (if gtkVersion == "2"
     then [ libindicator-gtk2 ] ++ optionals monoSupport [ mono gtk-sharp-2_0 ]
     else [ libindicator-gtk3 ]);