1 { lib, stdenv, fetchFromGitLab, autoreconfHook, pkg-config, glib, gtk-doc, gtk, gobject-introspection }:
3 stdenv.mkDerivation rec {
4 pname = "gtk-mac-integration";
7 src = fetchFromGitLab {
8 domain = "gitlab.gnome.org";
11 rev = "${pname}-${version}";
12 sha256 = "0sc0m3p8r5xfh5i4d7dg72kfixx9yi4f800y43bszyr88y52jkga";
15 nativeBuildInputs = [ autoreconfHook pkg-config gtk-doc gobject-introspection ];
16 buildInputs = [ glib ];
17 propagatedBuildInputs = [ gtk ];
24 description = "Provides integration for GTK applications into the Mac desktop";
25 license = licenses.lgpl21;
26 homepage = "https://wiki.gnome.org/Projects/GTK/OSX/Integration";
27 maintainers = with maintainers; [ matthewbauer ];
28 platforms = platforms.darwin;