python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / gtk-mac-integration / default.nix
blobf9d41916ecd64b4fd32a9b33f50d10e0b36d3382
1 { lib, stdenv, fetchFromGitLab, autoreconfHook, pkg-config, glib, gtk-doc, gtk, gobject-introspection }:
3 stdenv.mkDerivation rec {
4   pname = "gtk-mac-integration";
5   version = "3.0.1";
7   src = fetchFromGitLab {
8     domain = "gitlab.gnome.org";
9     owner = "GNOME";
10     repo = pname;
11     rev = "${pname}-${version}";
12     sha256 = "0sc0m3p8r5xfh5i4d7dg72kfixx9yi4f800y43bszyr88y52jkga";
13   };
15   nativeBuildInputs = [ autoreconfHook pkg-config gtk-doc gobject-introspection ];
16   buildInputs = [ glib ];
17   propagatedBuildInputs = [ gtk ];
19   preAutoreconf = ''
20     gtkdocize
21   '';
23   meta = with lib; {
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;
29   };