lol

gtk-mac-integration: fix gtk3 version

Include a Gtk3 version of gtk-mac-integration.
Add gobjectIntrospection to gtk-mac-integration.
Use propagatedBuildInputs for gtk.

+8 -3
+4 -3
pkgs/development/libraries/gtk-mac-integration/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, glib, gtk_doc, gtk }: 1 + { stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, glib, gtk_doc, gtk, gobjectIntrospection }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "gtk-mac-integration-2.0.8"; ··· 10 10 sha256 = "1fbhnvj0rqc3089ypvgnpkp6ad2rr37v5qk38008dgamb9h7f3qs"; 11 11 }; 12 12 13 - nativeBuildInputs = [ autoreconfHook pkgconfig gtk_doc ]; 14 - buildInputs = [ glib gtk ]; 13 + nativeBuildInputs = [ autoreconfHook pkgconfig gtk_doc gobjectIntrospection ]; 14 + buildInputs = [ glib ]; 15 + propagatedBuildInputs = [ gtk ]; 15 16 16 17 preAutoreconf = '' 17 18 gtkdocize
+4
pkgs/top-level/all-packages.nix
··· 7846 7846 gtk = gtk2; 7847 7847 }; 7848 7848 7849 + gtk-mac-integration-gtk3 = callPackage ../development/libraries/gtk-mac-integration { 7850 + gtk = gtk3; 7851 + }; 7852 + 7849 7853 gtk-mac-bundler = callPackage ../development/tools/gtk-mac-bundler {}; 7850 7854 7851 7855 gtkspell2 = callPackage ../development/libraries/gtkspell { };